diff options
author | Bernhard Reutner-Fischer | 2006-03-31 18:43:55 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2006-03-31 18:43:55 +0000 |
commit | 81901a096c67b079fced2e63af4e15a2ca50465e (patch) | |
tree | 4e20f68dfb7373e902f2fb8430c02209d6eb78e8 /Config.in | |
parent | 2766eedde85f092153a2affb2d3da491e2670982 (diff) | |
download | busybox-81901a096c67b079fced2e63af4e15a2ca50465e.zip busybox-81901a096c67b079fced2e63af4e15a2ca50465e.tar.gz |
- add option to suppress the terse usage messages. Saves 6.8k for defconfig:
text data bss dec hex filename
861791 11264 1039140 1912195 1d2d83 busybox.have-terse-usage
854799 11264 1039140 1905203 1d1233 busybox.no-terse
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -37,9 +37,19 @@ config CONFIG_FEATURE_BUFFERS_GO_IN_BSS endchoice +config CONFIG_SHOW_USAGE + bool "Show terse applet usage messages" + default y + help + All BusyBox applets will show help messages when invoked with + wrong arguments. You can turn off printing these terse usage + messages if you say no here. + This will save you up to 7k. + config CONFIG_FEATURE_VERBOSE_USAGE bool "Show verbose applet usage messages" default n + select CONFIG_SHOW_USAGE help All BusyBox applets will show more verbose help messages when busybox is invoked with --help. This will add a lot of text to the |