udhcpc6: add ELAPSED_TIME option to outgoing packets
[oweals/busybox.git] / Config.in
index 51ff01ef4a933d1b9342e44d56a97e2b1e7c7b0c..14f54aacca1765d98acb55eca42715a9202d786a 100644 (file)
--- a/Config.in
+++ b/Config.in
@@ -1,6 +1,6 @@
 #
 # For a description of the syntax of this configuration file,
-# see scripts/kbuild/config-language.txt.
+# see docs/Kconfig-language.txt.
 #
 
 mainmenu "Configuration"
@@ -12,7 +12,7 @@ config HAVE_DOT_CONFIG
 menu "Settings"
 
 config DESKTOP
-       bool "Enable compatibility for full-blown desktop systems"
+       bool "Enable compatibility for full-blown desktop systems (8kb)"
        default y
        help
        Enable applet options and features which are not essential.
@@ -178,6 +178,11 @@ config BUSYBOX
 
        Running "busybox APPLET [ARGS...]" will still work, of course.
 
+config FEATURE_SHOW_SCRIPT
+       bool "Support --show SCRIPT"
+       default y
+       depends on BUSYBOX
+
 config FEATURE_INSTALLER
        bool "Support --install [-s] to install applet links at runtime"
        default y
@@ -334,6 +339,15 @@ config FEATURE_CLEAN_UP
        Don't enable this unless you have a really good reason to clean
        things up manually.
 
+config FEATURE_SYSLOG_INFO
+       bool "Support LOG_INFO level syslog messages"
+       default y
+       depends on FEATURE_SYSLOG
+       help
+       Applets which send their output to syslog use either LOG_INFO or
+       LOG_ERR log levels, but by disabling this option all messages will
+       be logged at the LOG_ERR level, saving just under 200 bytes.
+
 # These are auto-selected by other options
 
 config FEATURE_SYSLOG
@@ -647,6 +661,19 @@ config WERROR
 
        Most people should answer N.
 
+config WARN_SIMPLE_MSG
+       bool "Warn about single parameter bb_xx_msg calls"
+       default n
+       help
+       This will cause warnings to be shown for any instances of
+       bb_error_msg(), bb_error_msg_and_die(), bb_perror_msg(),
+       bb_perror_msg_and_die(), bb_herror_msg() or bb_herror_msg_and_die()
+       being called with a single parameter. In these cases the equivalent
+       bb_simple_xx_msg function should be used instead.
+       Note that use of STRERROR_FMT may give false positives.
+
+       If you aren't developing busybox, say N here.
+
 choice
        prompt "Additional debugging library"
        default NO_DEBUG_LIB