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-w32-2f32bf8be63f70125049402ba43101d8c6083d46.tar.gz busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.tar.bz2 busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.zip |
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 | |||
28 | 28 | ||
29 | config FEATURE_FAST_TOP | 29 | config FEATURE_FAST_TOP |
30 | bool "Faster /proc scanning code (+100 bytes)" | 30 | bool "Faster /proc scanning code (+100 bytes)" |
31 | default n | 31 | default y |
32 | help | 32 | help |
33 | This option makes top (and ps) ~20% faster (or 20% less CPU hungry), | 33 | This option makes top (and ps) ~20% faster (or 20% less CPU hungry), |
34 | but code size is slightly bigger. | 34 | but code size is slightly bigger. |
@@ -43,7 +43,7 @@ config FEATURE_ETC_NETWORKS | |||
43 | 43 | ||
44 | config FEATURE_EDITING | 44 | config FEATURE_EDITING |
45 | bool "Command line editing" | 45 | bool "Command line editing" |
46 | default n | 46 | default y |
47 | help | 47 | help |
48 | Enable line editing (mainly for shell command line). | 48 | Enable line editing (mainly for shell command line). |
49 | 49 | ||
@@ -68,21 +68,21 @@ config FEATURE_EDITING_VI | |||
68 | config FEATURE_EDITING_HISTORY | 68 | config FEATURE_EDITING_HISTORY |
69 | int "History size" | 69 | int "History size" |
70 | range 0 99999 | 70 | range 0 99999 |
71 | default 15 | 71 | default 255 |
72 | depends on FEATURE_EDITING | 72 | depends on FEATURE_EDITING |
73 | help | 73 | help |
74 | Specify command history size. | 74 | Specify command history size. |
75 | 75 | ||
76 | config FEATURE_EDITING_SAVEHISTORY | 76 | config FEATURE_EDITING_SAVEHISTORY |
77 | bool "History saving" | 77 | bool "History saving" |
78 | default n | 78 | default y |
79 | depends on ASH && FEATURE_EDITING | 79 | depends on ASH && FEATURE_EDITING |
80 | help | 80 | help |
81 | Enable history saving in ash shell. | 81 | Enable history saving in ash shell. |
82 | 82 | ||
83 | config FEATURE_TAB_COMPLETION | 83 | config FEATURE_TAB_COMPLETION |
84 | bool "Tab completion" | 84 | bool "Tab completion" |
85 | default n | 85 | default y |
86 | depends on FEATURE_EDITING | 86 | depends on FEATURE_EDITING |
87 | help | 87 | help |
88 | Enable tab completion. | 88 | Enable tab completion. |
@@ -150,7 +150,7 @@ config FEATURE_COPYBUF_KB | |||
150 | 150 | ||
151 | config MONOTONIC_SYSCALL | 151 | config MONOTONIC_SYSCALL |
152 | bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" | 152 | bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" |
153 | default y | 153 | default n |
154 | help | 154 | help |
155 | Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring | 155 | Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring |
156 | time intervals (time, ping, traceroute etc need this). | 156 | time intervals (time, ping, traceroute etc need this). |