diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-06 04:14:28 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-06 04:14:28 +0200 |
commit | 2f32bf8be63f70125049402ba43101d8c6083d46 (patch) | |
tree | 8d01d287b58308bbb0bc6748c27357fae0a7aa12 /libbb | |
parent | f0f94700610eba964441ce4a112134e03c76eb89 (diff) | |
download | busybox-2f32bf8be63f70125049402ba43101d8c6083d46.tar.gz |
remove defconfig. Now "make defconfig" simply uses defaults from Config.in
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Config.src | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libbb/Config.src b/libbb/Config.src index 55367b21b..a0aeb3683 100644 --- a/libbb/Config.src +++ b/libbb/Config.src @@ -28,7 +28,7 @@ config MD5_SIZE_VS_SPEED config FEATURE_FAST_TOP bool "Faster /proc scanning code (+100 bytes)" - default n + default y help This option makes top (and ps) ~20% faster (or 20% less CPU hungry), but code size is slightly bigger. @@ -43,7 +43,7 @@ config FEATURE_ETC_NETWORKS config FEATURE_EDITING bool "Command line editing" - default n + default y help Enable line editing (mainly for shell command line). @@ -68,21 +68,21 @@ config FEATURE_EDITING_VI config FEATURE_EDITING_HISTORY int "History size" range 0 99999 - default 15 + default 255 depends on FEATURE_EDITING help Specify command history size. config FEATURE_EDITING_SAVEHISTORY bool "History saving" - default n + default y depends on ASH && FEATURE_EDITING help Enable history saving in ash shell. config FEATURE_TAB_COMPLETION bool "Tab completion" - default n + default y depends on FEATURE_EDITING help Enable tab completion. @@ -150,7 +150,7 @@ config FEATURE_COPYBUF_KB config MONOTONIC_SYSCALL bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" - default y + default n help Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring time intervals (time, ping, traceroute etc need this). |