aboutsummaryrefslogtreecommitdiff
path: root/libbb/Config.src
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2015-10-25 20:36:03 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2015-10-25 20:36:03 +0100
commitdb700330d8951d96ea70102797041730c925eeeb (patch)
treec721e86bec9fa312cdb17470be8cbf54de866c04 /libbb/Config.src
parent0269789537c0c16de948e100ea331fdba54008e4 (diff)
downloadbusybox-db700330d8951d96ea70102797041730c925eeeb.tar.gz
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/Config.src')
-rw-r--r--libbb/Config.src8
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
config MD5_SMALL
int "MD5: Trade bytes for speed (0:fast, 3:slow)"
- default 1
+ default 1 # all "fast or small" options default to small
range 0 3
help
Trade binary size versus speed for the md5sum algorithm.
@@ -30,7 +30,7 @@ config MD5_SMALL
config SHA3_SMALL
int "SHA3: Trade bytes for speed (0:fast, 1:slow)"
- default 1
+ default 1 # all "fast or small" options default to small
range 0 1
help
Trade binary size versus speed for the sha3sum algorithm.
@@ -40,7 +40,7 @@ config SHA3_SMALL
config FEATURE_FAST_TOP
bool "Faster /proc scanning code (+100 bytes)"
- default y
+ default n # all "fast or small" options default to small
help
This option makes top (and ps) ~20% faster (or 20% less CPU hungry),
but code size is slightly bigger.
@@ -208,7 +208,7 @@ config FEATURE_SKIP_ROOTFS
config MONOTONIC_SYSCALL
bool "Use clock_gettime(CLOCK_MONOTONIC) syscall"
- default n
+ default y
select PLATFORM_LINUX
help
Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring