diff options
author | Eric Andersen | 2002-12-05 08:41:41 +0000 |
---|---|---|
committer | Eric Andersen | 2002-12-05 08:41:41 +0000 |
commit | c9f20d9fb93c6c316518483fd103f3afab5cf1af (patch) | |
tree | 72904548bb54dcaf78017d3b35296765437e0bd5 /sysdeps/linux/config.in | |
parent | deca106b6dad70ad0a1312a82d762aa8d8ad52ba (diff) | |
download | busybox-c9f20d9fb93c6c316518483fd103f3afab5cf1af.zip busybox-c9f20d9fb93c6c316518483fd103f3afab5cf1af.tar.gz |
Yet another major rework of the BusyBox config system, using the considerably
modified Kbuild system I put into uClibc. With this, there should be no more
need to modify Rules.mak since I've moved all the interesting options into the
config system. I think I've got everything updated, but you never know, I may
have made some mistakes, so watch closely.
-Erik
Diffstat (limited to 'sysdeps/linux/config.in')
-rw-r--r-- | sysdeps/linux/config.in | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/sysdeps/linux/config.in b/sysdeps/linux/config.in deleted file mode 100644 index d33a982..0000000 --- a/sysdeps/linux/config.in +++ /dev/null @@ -1,49 +0,0 @@ -# -# For a description of the syntax of this configuration file, -# see scripts/kbuild/config-language.txt. -# -mainmenu_name "BusyBox Configuration" - -mainmenu_option next_comment -comment 'BusyBox general settings' -choice 'Buffer allocation policy' \ - "use_malloc CONFIG_FEATURE_BUFFERS_USE_MALLOC \ - on_stack CONFIG_FEATURE_BUFFERS_GO_ON_STACK \ - in_bss CONFIG_FEATURE_BUFFERS_GO_IN_BSS" use_malloc -bool 'Show verbose applet usage messages' CONFIG_FEATURE_VERBOSE_USAGE -bool 'Support --install [-s] to install applet links at runtime' CONFIG_FEATURE_INSTALLER -bool 'Enable locale support (system needs locale for this to work)' CONFIG_LOCALE_SUPPORT -bool 'Support for devfs' CONFIG_FEATURE_DEVFS -if [ "$CONFIG_FEATURE_DEVFS" = "y" ]; then - define_bool CONFIG_FEATURE_DEVPTS y -else - bool ' Support for Unix98 PTY filesystem' CONFIG_FEATURE_DEVPTS -fi -bool 'Clean up all memory before exiting (usually not needed)' CONFIG_FEATURE_CLEAN_UP -bool 'Support for SUID/SGID handling' CONFIG_FEATURE_SUID -if [ "$CONFIG_FEATURE_SUID" = "y" ]; then - bool ' Runtime configuration via /etc/busybox.conf' CONFIG_FEATURE_SUID_CONFIG -fi -if [ "$CONFIG_FEATURE_SUID_CONFIG" = "y" ]; then - bool ' Suppress message if config file is not readable' CONFIG_FEATURE_SUID_CONFIG_QUIET -fi -endmenu - -source archival/config.in -source console-tools/config.in -source debianutils/config.in -source editors/config.in -source fileutils/config.in -source findutils/config.in -source init/config.in -source loginutils/config.in -source miscutils/config.in -source modutils/config.in -source networking/config.in -source procps/config.in -source shell/config.in -source shellutils/config.in -source sysklogd/config.in -source textutils/config.in -source util-linux/config.in - |