Skip to content

Commit

Permalink
Merge pull request #602 from stilor/uclibc-verbosity
Browse files Browse the repository at this point in the history
Refine previous fix to uClibc verbosity setting
  • Loading branch information
stilor committed Feb 17, 2017
2 parents 2d1b469 + 4caece0 commit f45093a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions config/libc/uClibc.in
Expand Up @@ -151,22 +151,28 @@ config LIBC_UCLIBC_VERBOSITY_0

config LIBC_UCLIBC_VERBOSITY_1
bool
prompt "Very verbose build"
prompt "Brief build (show defines, ld flags)"
help
Print simplified command lines.

config LIBC_UCLIBC_VERBOSITY_2
bool
prompt "Brief build (show defines, ld flags)"
prompt "Very verbose build"
help
Print full command lines.

endchoice

# uClibc-ng has reverted the meaning of V=1 and V=2 compared to its
# ancestor, uClibc, in order to match kernel's Kbuild settings.
# Hence, for uClibc-ng supply V=2 if "brief build" is selected,
# and so forth.
config LIBC_UCLIBC_VERBOSITY
string
default "" if LIBC_UCLIBC_VERBOSITY_0
default "V=2" if LIBC_UCLIBC_VERBOSITY_1 && LIBC_UCLIBC_NG
default "V=1" if LIBC_UCLIBC_VERBOSITY_1
default "V=1" if LIBC_UCLIBC_VERBOSITY_2 && LIBC_UCLIBC_NG
default "V=2" if LIBC_UCLIBC_VERBOSITY_2

choice
Expand Down

0 comments on commit f45093a

Please sign in to comment.