summaryrefslogtreecommitdiffstats
path: root/rules/coreutils.in
blob: c1e87017a705bc12234ea6b9e00916a21b710adb (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
## SECTION=shell_and_console
menuconfig COREUTILS
	tristate
	prompt "gnu coreutils                 "
	help
	  This package contains some of the The GNU Core Utilities

if COREUTILS

config COREUTILS_CP
	bool
	prompt "cp"
	depends on !BB_CONFIG_CP
	help
	  copy files and directories

comment "busy box' cp is selected!"
	depends on BB_CONFIG_CP

config COREUTILS_DD
	bool
	prompt "dd"
	depends on !BB_CONFIG_DD
	help
	  convert and copy a file

comment "busy box' dd is selected!"
	depends on COREUTILS && BB_CONFIG_DD

config COREUTILS_MD5SUM
	bool
	prompt "md5sum"
	depends on !BB_CONFIG_MD5SUM
	help
	  compute and check MD5 message digest

comment "busy box' md5sum is selected!"
	depends on BB_CONFIG_MD5SUM

config COREUTILS_READLINK
	bool
	prompt "readlink"
	depends on !BB_CONFIG_READLINK
	help
	  the readlink tool

config COREUTILS_SEQ
	bool
	prompt "seq"
	depends on !BB_CONFIG_SEQ
	help
	  print a sequence of numbers

comment "busy box' seq is selected!"
	depends on BB_CONFIG_SEQ

endif