diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-25 20:36:03 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-25 20:36:03 +0100 |
commit | db700330d8951d96ea70102797041730c925eeeb (patch) | |
tree | c721e86bec9fa312cdb17470be8cbf54de866c04 /libbb | |
parent | 0269789537c0c16de948e100ea331fdba54008e4 (diff) | |
download | busybox-w32-db700330d8951d96ea70102797041730c925eeeb.tar.gz busybox-w32-db700330d8951d96ea70102797041730c925eeeb.tar.bz2 busybox-w32-db700330d8951d96ea70102797041730c925eeeb.zip |
tweak defconfig
MONOTONIC_SYSCALL=y by default
FEATURE_LAST_SMALL is gone: now FEATURE_LAST_FANCY is a "bool", not a "choice".
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Config.src | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libbb/Config.src b/libbb/Config.src index 19021fed1..b02ea14b0 100644 --- a/libbb/Config.src +++ b/libbb/Config.src | |||
@@ -16,7 +16,7 @@ config PASSWORD_MINLEN | |||
16 | 16 | ||
17 | config MD5_SMALL | 17 | config MD5_SMALL |
18 | int "MD5: Trade bytes for speed (0:fast, 3:slow)" | 18 | int "MD5: Trade bytes for speed (0:fast, 3:slow)" |
19 | default 1 | 19 | default 1 # all "fast or small" options default to small |
20 | range 0 3 | 20 | range 0 3 |
21 | help | 21 | help |
22 | Trade binary size versus speed for the md5sum algorithm. | 22 | Trade binary size versus speed for the md5sum algorithm. |
@@ -30,7 +30,7 @@ config MD5_SMALL | |||
30 | 30 | ||
31 | config SHA3_SMALL | 31 | config SHA3_SMALL |
32 | int "SHA3: Trade bytes for speed (0:fast, 1:slow)" | 32 | int "SHA3: Trade bytes for speed (0:fast, 1:slow)" |
33 | default 1 | 33 | default 1 # all "fast or small" options default to small |
34 | range 0 1 | 34 | range 0 1 |
35 | help | 35 | help |
36 | Trade binary size versus speed for the sha3sum algorithm. | 36 | Trade binary size versus speed for the sha3sum algorithm. |
@@ -40,7 +40,7 @@ config SHA3_SMALL | |||
40 | 40 | ||
41 | config FEATURE_FAST_TOP | 41 | config FEATURE_FAST_TOP |
42 | bool "Faster /proc scanning code (+100 bytes)" | 42 | bool "Faster /proc scanning code (+100 bytes)" |
43 | default y | 43 | default n # all "fast or small" options default to small |
44 | help | 44 | help |
45 | This option makes top (and ps) ~20% faster (or 20% less CPU hungry), | 45 | This option makes top (and ps) ~20% faster (or 20% less CPU hungry), |
46 | but code size is slightly bigger. | 46 | but code size is slightly bigger. |
@@ -208,7 +208,7 @@ config FEATURE_SKIP_ROOTFS | |||
208 | 208 | ||
209 | config MONOTONIC_SYSCALL | 209 | config MONOTONIC_SYSCALL |
210 | bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" | 210 | bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" |
211 | default n | 211 | default y |
212 | select PLATFORM_LINUX | 212 | select PLATFORM_LINUX |
213 | help | 213 | help |
214 | Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring | 214 | Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring |