summaryrefslogtreecommitdiffstats
path: root/rules/findutils.in
diff options
context:
space:
mode:
authorMichael Grzeschik <m.grzeschik@pengutronix.de>2008-06-04 12:58:56 +0000
committerMichael Grzeschik <m.grzeschik@pengutronix.de>2008-06-04 12:58:56 +0000
commite77d46edfa498ea6b9e482eed2f9a4783fb8d66d (patch)
tree6d19776b1d492e8cad206e01f524b1cf3ef5b704 /rules/findutils.in
parent596f6514f2ee5cc295a2892704b66c6709478061 (diff)
downloadptxdist-e77d46edfa498ea6b9e482eed2f9a4783fb8d66d.tar.gz
ptxdist-e77d46edfa498ea6b9e482eed2f9a4783fb8d66d.tar.xz
* : d-g.in tristate changes
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8311 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/findutils.in')
-rw-r--r--rules/findutils.in17
1 files changed, 10 insertions, 7 deletions
diff --git a/rules/findutils.in b/rules/findutils.in
index 65a597f66..3923d6260 100644
--- a/rules/findutils.in
+++ b/rules/findutils.in
@@ -1,37 +1,40 @@
menuconfig FINDUTILS
- bool
- prompt "findutils "
+ tristate
+ prompt "findutils "
help
The Findutils package contains programs to find files. These programs are provided to
recursively search through a directory tree and to create, maintain, and search a
database.
+if FINDUTILS
+
config FINDUTILS_FIND
bool
- depends on FINDUTILS && !BB_CONFIG_FIND
+ depends !BB_CONFIG_FIND
prompt "find"
help
Searches given directory trees for files matching the specified criteria
comment "busy box' find is selected!"
- depends on FINDUTILS && BB_CONFIG_FIND
+ depends BB_CONFIG_FIND
config FINDUTILS_XARGS
bool
- depends on FINDUTILS && !BB_CONFIG_XARGS
+ depends !BB_CONFIG_XARGS
prompt "xargs"
help
Can be used to apply a given command to a list of files
comment "busy box' xargs is selected!"
- depends on FINDUTILS && BB_CONFIG_XARGS
+ depends BB_CONFIG_XARGS
config FINDUTILS_DATABASE
bool
- depends on FINDUTILS && !BB_CONFIG_FIND && !BB_CONFIG_XARGS
+ depends !BB_CONFIG_FIND && !BB_CONFIG_XARGS
select FINDUTILS_FIND
select FINDUTILS_XARGS
prompt "database support"
help
Uses a database to speed up finding files. See manpages of locate and updatedb
+endif