summaryrefslogtreecommitdiffstats
path: root/rules/findutils.in
diff options
context:
space:
mode:
authorJuergen Beisert <j.beisert@pengutronix.de>2006-06-02 14:53:48 +0000
committerJuergen Beisert <j.beisert@pengutronix.de>2006-06-02 14:53:48 +0000
commit267c7e00851f2b1c571e36999c56f4a1427da36e (patch)
treee49741711129289cc8b8613e966fbe24551e0b29 /rules/findutils.in
parentd4407fa08ebfb4da498504ba491541a6bc0dc243 (diff)
downloadptxdist-267c7e00851f2b1c571e36999c56f4a1427da36e.tar.gz
ptxdist-267c7e00851f2b1c571e36999c56f4a1427da36e.tar.xz
findutils port from 0.9
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.10-trunk@5626 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/findutils.in')
-rw-r--r--rules/findutils.in37
1 files changed, 37 insertions, 0 deletions
diff --git a/rules/findutils.in b/rules/findutils.in
new file mode 100644
index 000000000..2494b2721
--- /dev/null
+++ b/rules/findutils.in
@@ -0,0 +1,37 @@
+menuconfig FINDUTILS
+ bool
+ 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.
+
+config FINDUTILS_FIND
+ bool
+ depends on FINDUTILS && !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
+
+config FINDUTILS_XARGS
+ bool
+ depends on FINDUTILS && !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
+
+config FINDUTILS_DATABASE
+ bool
+ depends on FINDUTILS && !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
+