1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-06 00:00:42 +03:00

busybox: adjust hush default configuration

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18712 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2009-12-09 13:36:28 +00:00
parent 5aefad6b53
commit d253bed345

View File

@ -175,14 +175,14 @@ config BUSYBOX_CONFIG_HUSH_BASH_COMPAT
config BUSYBOX_CONFIG_HUSH_HELP config BUSYBOX_CONFIG_HUSH_HELP
bool "help builtin" bool "help builtin"
default n default y
depends on BUSYBOX_CONFIG_HUSH depends on BUSYBOX_CONFIG_HUSH
help help
Enable help builtin in hush. Code size + ~1 kbyte. Enable help builtin in hush. Code size + ~1 kbyte.
config BUSYBOX_CONFIG_HUSH_INTERACTIVE config BUSYBOX_CONFIG_HUSH_INTERACTIVE
bool "Interactive mode" bool "Interactive mode"
default n default y
depends on BUSYBOX_CONFIG_HUSH depends on BUSYBOX_CONFIG_HUSH
help help
Enable interactive mode (prompt and command editing). Enable interactive mode (prompt and command editing).
@ -192,7 +192,7 @@ config BUSYBOX_CONFIG_HUSH_INTERACTIVE
config BUSYBOX_CONFIG_HUSH_JOB config BUSYBOX_CONFIG_HUSH_JOB
bool "Job control" bool "Job control"
default n default y
depends on BUSYBOX_CONFIG_HUSH_INTERACTIVE depends on BUSYBOX_CONFIG_HUSH_INTERACTIVE
help help
Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
@ -203,49 +203,49 @@ config BUSYBOX_CONFIG_HUSH_JOB
config BUSYBOX_CONFIG_HUSH_TICK config BUSYBOX_CONFIG_HUSH_TICK
bool "Process substitution" bool "Process substitution"
default n default y
depends on BUSYBOX_CONFIG_HUSH depends on BUSYBOX_CONFIG_HUSH
help help
Enable process substitution `command` and $(command) in hush. Enable process substitution `command` and $(command) in hush.
config BUSYBOX_CONFIG_HUSH_IF config BUSYBOX_CONFIG_HUSH_IF
bool "Support if/then/elif/else/fi" bool "Support if/then/elif/else/fi"
default n default y
depends on BUSYBOX_CONFIG_HUSH depends on BUSYBOX_CONFIG_HUSH
help help
Enable if/then/elif/else/fi in hush. Enable if/then/elif/else/fi in hush.
config BUSYBOX_CONFIG_HUSH_LOOPS config BUSYBOX_CONFIG_HUSH_LOOPS
bool "Support for, while and until loops" bool "Support for, while and until loops"
default n default y
depends on BUSYBOX_CONFIG_HUSH depends on BUSYBOX_CONFIG_HUSH
help help
Enable for, while and until loops in hush. Enable for, while and until loops in hush.
config BUSYBOX_CONFIG_HUSH_CASE config BUSYBOX_CONFIG_HUSH_CASE
bool "Support case ... esac statement" bool "Support case ... esac statement"
default n default y
depends on BUSYBOX_CONFIG_HUSH depends on BUSYBOX_CONFIG_HUSH
help help
Enable case ... esac statement in hush. +400 bytes. Enable case ... esac statement in hush. +400 bytes.
config BUSYBOX_CONFIG_HUSH_FUNCTIONS config BUSYBOX_CONFIG_HUSH_FUNCTIONS
bool "Support funcname() { commands; } syntax" bool "Support funcname() { commands; } syntax"
default n default y
depends on BUSYBOX_CONFIG_HUSH depends on BUSYBOX_CONFIG_HUSH
help help
Enable support for shell functions in hush. +800 bytes. Enable support for shell functions in hush. +800 bytes.
config BUSYBOX_CONFIG_HUSH_LOCAL config BUSYBOX_CONFIG_HUSH_LOCAL
bool "Support local builtin" bool "Support local builtin"
default n default y
depends on BUSYBOX_CONFIG_HUSH_FUNCTIONS depends on BUSYBOX_CONFIG_HUSH_FUNCTIONS
help help
Enable support for local variables in functions. Enable support for local variables in functions.
config BUSYBOX_CONFIG_HUSH_EXPORT_N config BUSYBOX_CONFIG_HUSH_EXPORT_N
bool "Support export '-n' option" bool "Support export '-n' option"
default n default y
depends on BUSYBOX_CONFIG_HUSH depends on BUSYBOX_CONFIG_HUSH
help help
Enable support for export '-n' option in hush. It is a bash extension. Enable support for export '-n' option in hush. It is a bash extension.