xref: /OK3568_Linux_fs/buildroot/package/coreutils/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_COREUTILS
2*4882a593Smuzhiyun	bool "coreutils"
3*4882a593Smuzhiyun	depends on BR2_USE_WCHAR
4*4882a593Smuzhiyun	depends on BR2_USE_MMU # fork()
5*4882a593Smuzhiyun	depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
6*4882a593Smuzhiyun	help
7*4882a593Smuzhiyun	  All of the basic file/text/shell utilities. These are the
8*4882a593Smuzhiyun	  core utilities which are expected to exist on every system.
9*4882a593Smuzhiyun	  BusyBox implements many of the most common.
10*4882a593Smuzhiyun
11*4882a593Smuzhiyun	  Things like:
12*4882a593Smuzhiyun	  - chmod, cp, dd, dir, ls, etc...
13*4882a593Smuzhiyun	  - sort, tr, head, tail, wc, etc...
14*4882a593Smuzhiyun	  - whoami, who, etc...
15*4882a593Smuzhiyun
16*4882a593Smuzhiyun	  http://www.gnu.org/software/coreutils/
17*4882a593Smuzhiyun
18*4882a593Smuzhiyunif BR2_PACKAGE_COREUTILS
19*4882a593Smuzhiyun
20*4882a593Smuzhiyunconfig BR2_PACKAGE_COREUTILS_UNICODE_BYPASS
21*4882a593Smuzhiyun	bool "Bypass unicode when printing"
22*4882a593Smuzhiyun	default y
23*4882a593Smuzhiyun
24*4882a593Smuzhiyunconfig BR2_PACKAGE_COREUTILS_INDIVIDUAL_BINARIES
25*4882a593Smuzhiyun	bool "Individual binaries"
26*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS
27*4882a593Smuzhiyun	help
28*4882a593Smuzhiyun	  By default (i.e. with this option disabled), coreutils is
29*4882a593Smuzhiyun	  installed as a single binary (Busybox style) called
30*4882a593Smuzhiyun	  /usr/bin/coreutils, and all core utilities are symbolic
31*4882a593Smuzhiyun	  links to this binary.
32*4882a593Smuzhiyun
33*4882a593Smuzhiyun	  With this option enabled, each utility is a separate binary.
34*4882a593Smuzhiyun
35*4882a593Smuzhiyuncomment "coreutils individual binaries need a toolchain w/ dynamic library"
36*4882a593Smuzhiyun	depends on BR2_STATIC_LIBS
37*4882a593Smuzhiyun
38*4882a593Smuzhiyunendif
39*4882a593Smuzhiyun
40*4882a593Smuzhiyuncomment "coreutils needs a toolchain w/ wchar"
41*4882a593Smuzhiyun	depends on BR2_USE_MMU
42*4882a593Smuzhiyun	depends on !BR2_USE_WCHAR
43*4882a593Smuzhiyun	depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
44