43b17b1cd0
Kconfig-language.txt was deleted in commit 4fa499a17b
back in 2006.
Move to docs/ as suggested by Xabier Oneca:
http://lists.busybox.net/pipermail/busybox/2014-May/080914.html
Also update references to it everywhere.
Signed-off-by: Kartik Agaram <akkartik@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
19 lines
347 B
Plaintext
19 lines
347 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see docs/Kconfig-language.txt.
|
|
#
|
|
|
|
menu "Editors"
|
|
|
|
INSERT
|
|
|
|
config FEATURE_ALLOW_EXEC
|
|
bool "Allow vi and awk to execute shell commands"
|
|
default y
|
|
depends on VI || AWK
|
|
help
|
|
Enables vi and awk features which allow user to execute
|
|
shell commands (using system() C call).
|
|
|
|
endmenu
|