summaryrefslogtreecommitdiffstats
path: root/rules/findutils.in
blob: 2494b27213b4a09d6994a4012bbdc116a6e5e0f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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