ash: [EVAL] Fix use-after-free in dotrap/evalstring
[oweals/busybox.git] / Config.in
index 11371c783d1a706848dcaec65d26115defd8cbf0..3d187096668b0acd1fbcd349df0ffa2cf13c5e9d 100644 (file)
--- a/Config.in
+++ b/Config.in
@@ -116,9 +116,21 @@ config FEATURE_COMPRESS_USAGE
          and have very little memory, this might not be a win. Otherwise,
          you probably want this.
 
+config BUSYBOX
+       bool "Include busybox applet"
+       default y
+       help
+         The busybox applet provides general help regarding busybox and
+         allows the included applets to be listed.  It's also required
+         if applet links are to be installed at runtime.
+
+         If you can live without these features disabling this will save
+         some space.
+
 config FEATURE_INSTALLER
        bool "Support --install [-s] to install applet links at runtime"
        default y
+       depends on BUSYBOX
        help
          Enable 'busybox --install [-s]' support. This will allow you to use
          busybox at runtime to create hard links or symlinks for all the
@@ -514,14 +526,6 @@ config PIE
 
          Most people will leave this set to 'N'.
 
-config LINK_WITH_PTHREAD
-       bool "Link with pthread library"
-       default n
-       help
-         On some systems, some libraries (such as crypt) also require pthread.
-
-         Select this only if your build otherwise fails.
-
 config NOMMU
        bool "Force NOMMU build"
        default n
@@ -696,6 +700,16 @@ config DEBUG_PESSIMIZE
          in a much bigger executable that more closely matches the source
          code.
 
+config DEBUG_SANITIZE
+       bool "Enable runtime sanitizers (ASAN/LSAN/USAN/etc...)"
+       default n
+       help
+         Say Y here if you want to enable runtime sanitizers. These help
+         catch bad memory accesses (e.g. buffer overflows), but will make
+         the executable larger and slow down runtime a bit.
+
+         If you aren't developing/testing busybox, say N here.
+
 config UNIT_TEST
        bool "Build unit tests"
        default n