diff -r 08da017ba46b -r a8b11d75e253 config/libc/uClibc.in --- a/config/libc/uClibc.in Thu Apr 17 21:04:23 2008 +0000 +++ b/config/libc/uClibc.in Wed May 14 17:52:53 2008 +0000 @@ -59,6 +59,29 @@ choice bool + prompt "uClibc verbosity:" + +config LIBC_UCLIBC_VERBOSITY_0 + bool + prompt "Simplified" + help + Print simplified command lines. + +config LIBC_UCLIBC_VERBOSITY_1 + bool + prompt "Full commands" + help + Print full command lines. + +endchoice + +config LIBC_UCLIBC_VERBOSITY + string + default "" if LIBC_UCLIBC_VERBOSITY_0 + default "V=1" if LIBC_UCLIBC_VERBOSITY_1 + +choice + bool prompt "Debug level" default LIBC_UCLIBC_DEBUG_LEVEL_0