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