lineedit: do not hang on error, but return error indicator.
[oweals/busybox.git] / libbb / Config.src
index 55367b21bf468a990eec122af1565e85e4e98d13..9b01757c6b9b39bed56cccac674e40f9d2ee650f 100644 (file)
@@ -5,6 +5,8 @@
 
 menu "Busybox Library Tuning"
 
+INSERT
+
 config PASSWORD_MINLEN
        int "Minimum password length"
        default 6
@@ -28,7 +30,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 +45,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 +70,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.
@@ -96,7 +98,7 @@ config FEATURE_USERNAME_COMPLETION
 
 config FEATURE_EDITING_FANCY_PROMPT
        bool "Fancy shell prompts"
-       default n
+       default y
        depends on FEATURE_EDITING
        help
          Setting this option allows for prompts to use things like \w and
@@ -150,7 +152,8 @@ config FEATURE_COPYBUF_KB
 
 config MONOTONIC_SYSCALL
        bool "Use clock_gettime(CLOCK_MONOTONIC) syscall"
-       default y
+       default n
+       depends on PLATFORM_LINUX
        help
          Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring
          time intervals (time, ping, traceroute etc need this).