summaryrefslogtreecommitdiffstats
path: root/rules/findutils.in
blob: 54f50e1af1117896d9e16e07245b69cd7d3abacf (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
38
39
40
41
## SECTION=shell_and_console
menuconfig 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 !BB_CONFIG_FIND
	prompt "find"
	help
	  Searches given directory trees for files matching the specified criteria

comment "busy box' find is selected!"
	depends on BB_CONFIG_FIND

config FINDUTILS_XARGS
   bool
	depends on !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 BB_CONFIG_XARGS

config FINDUTILS_DATABASE
	bool
	depends on !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