summaryrefslogtreecommitdiffstats
path: root/rules/findutils.in
blob: 35f7dc599c08c5d7f3d2c99dddb6b71d1bed94d0 (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
42
## SECTION=shell_and_console
menuconfig FINDUTILS
	tristate
	prompt "findutils                     "
	select GCCLIBS_GCC_S if FINDUTILS_FIND
	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 !BUSYBOX_FIND || ALLYES
	prompt "find"
	help
	  Searches given directory trees for files matching the specified criteria

comment "BusyBox' find is selected!"
	depends on BUSYBOX_FIND

config FINDUTILS_XARGS
   bool
	depends on !BUSYBOX_XARGS || ALLYES
	prompt "xargs"
	help
	  Can be used to apply a given command to a list of files

comment "BusyBox' xargs is selected!"
   depends on BUSYBOX_XARGS

config FINDUTILS_DATABASE
	bool
	depends on !BUSYBOX_FIND && !BUSYBOX_XARGS || ALLYES
	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