diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-01-31 13:50:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-01-31 13:50:16 +0000 |
commit | cc7b3e2465f57c92879e39690021b3276d4c61aa (patch) | |
tree | 441b554f3f955f9051e08a14220d799fd635d303 /package/utils/busybox/config/printutils | |
parent | c85705ce8dee363f2ff5c4b0e8f82416a8c4416f (diff) | |
download | upstream-cc7b3e2465f57c92879e39690021b3276d4c61aa.tar.gz upstream-cc7b3e2465f57c92879e39690021b3276d4c61aa.tar.bz2 upstream-cc7b3e2465f57c92879e39690021b3276d4c61aa.zip |
busybox: add a reworked implementation of menuconfig support, this time with a guard option that keeps all symbols at default values until an extra option is activated
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39435
Diffstat (limited to 'package/utils/busybox/config/printutils')
-rw-r--r-- | package/utils/busybox/config/printutils/Config.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/package/utils/busybox/config/printutils/Config.in b/package/utils/busybox/config/printutils/Config.in new file mode 100644 index 0000000000..d22e4e9a49 --- /dev/null +++ b/package/utils/busybox/config/printutils/Config.in @@ -0,0 +1,29 @@ +# DO NOT EDIT. This file is generated from Config.src +# +# For a description of the syntax of this configuration file, +# see scripts/kbuild/config-language.txt. +# + +menu "Print Utilities" + + + +config BUSYBOX_CONFIG_LPD + bool "lpd" + default BUSYBOX_DEFAULT_LPD + help + lpd is a print spooling daemon. + +config BUSYBOX_CONFIG_LPR + bool "lpr" + default BUSYBOX_DEFAULT_LPR + help + lpr sends files (or standard input) to a print spooling daemon. + +config BUSYBOX_CONFIG_LPQ + bool "lpq" + default BUSYBOX_DEFAULT_LPQ + help + lpq is a print spool queue examination and manipulation program. + +endmenu |