diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-15 10:15:47 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-15 10:18:51 +0200 |
commit | 524b203588b82ad16221d8397678bf90ca6ad2f9 (patch) | |
tree | 00ee4b5ffc0d986c93bb8ff0e7fccadfe21dc821 /package/busybox | |
parent | f72f3fd30e6ad3c8edc5963636231e339f5824a0 (diff) | |
download | buildroot-novena-524b203588b82ad16221d8397678bf90ca6ad2f9.tar.gz buildroot-novena-524b203588b82ad16221d8397678bf90ca6ad2f9.zip |
busybox: invert hide option
Invert the BR2_PACKAGE_BUSYBOX_HIDE_OTHERS option to use positive logic,
renaming it to _SHOW_OTHERS.
Positive logic is simpler to understand, and it makes all{,package}config
do the right thing.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/Config.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/package/busybox/Config.in b/package/busybox/Config.in index 4961a8d51..ca7264f52 100644 --- a/package/busybox/Config.in +++ b/package/busybox/Config.in @@ -70,12 +70,11 @@ config BR2_PACKAGE_BUSYBOX_CONFIG Most people will just use the default BusyBox configuration file. -config BR2_PACKAGE_BUSYBOX_HIDE_OTHERS - bool "Hide applications that are provided by busybox" +config BR2_PACKAGE_BUSYBOX_SHOW_OTHERS + bool "Show packages that are also provided by busybox" depends on BR2_PACKAGE_BUSYBOX - default y help - Do not show packages in menuconfig that are potentially provided + Show packages in menuconfig that are potentially also provided by busybox. config BR2_PACKAGE_BUSYBOX_SKELETON |