summaryrefslogtreecommitdiffstats
path: root/package/util-linux/Config.in
blob: b59a31ab22f52a7def282d2df0918a88b45708b8 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
config BR2_PACKAGE_UTIL_LINUX
	bool "util-linux"
	depends on BR2_LARGEFILE
	depends on BR2_USE_WCHAR
	depends on BR2_PROGRAM_INVOCATION
	help
	  Various useful/essential Linux utilities.

	  Things like mkfs, mkswap, swapon, fdisk, mount, dmesg, etc...

	  http://www.kernel.org/pub/linux/utils/util-linux/

if BR2_PACKAGE_UTIL_LINUX

############################################
# default enabled and should be disabled by
#  --disable-foo
#

config BR2_PACKAGE_UTIL_LINUX_MOUNT
	bool "build mount utilties"
	default y

config BR2_PACKAGE_UTIL_LINUX_FSCK
	bool "build \"fsck\""
	default y

config BR2_PACKAGE_UTIL_LINUX_LIBUUID
	bool "build libuuid and uuid utilities"
	default y

config BR2_PACKAGE_UTIL_LINUX_UUIDD
	bool "build \"uuidd\""
	default y

config BR2_PACKAGE_UTIL_LINUX_LIBBLKID
	bool "build libblkid and blkid utilities"
	default y

config BR2_PACKAGE_UTIL_LINUX_AGETTY
	bool "build \"agetty\""
	default y

config BR2_PACKAGE_UTIL_LINUX_CRAMFS
	bool "build \"fsck.cramfs, mkfs.cramfs\""
	default y

config BR2_PACKAGE_UTIL_LINUX_SWITCH_ROOT
	bool "build \"switch_root\""
	default y

config BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT
	bool "build \"pivot_root\""
	default y

config BR2_PACKAGE_UTIL_LINUX_FALLOCATE
	bool "build \"fallocate\""
	default y

config BR2_PACKAGE_UTIL_LINUX_UNSHARE
	bool "build \"unshare\""
	default y

config BR2_PACKAGE_UTIL_LINUX_RENAME
	bool "build \"rename\""
	default y

config BR2_PACKAGE_UTIL_LINUX_SCHEDUTILS
	bool "build \"chrt, ionice, teskset\""
	default y

config BR2_PACKAGE_UTIL_LINUX_WALL
	bool "build \"wall\""
	default y

############################################
# default disabled and should be enabled by
#  --enable-foo
#
config BR2_PACKAGE_UTIL_LINUX_ARCH
	bool "build \"arch\""
	default n

config BR2_PACKAGE_UTIL_LINUX_INIT
	bool "build \"simpleinit, shutdown, initctl\""
	default n

config BR2_PACKAGE_UTIL_LINUX_KILL
	bool "build \"kill\""
	default n

config BR2_PACKAGE_UTIL_LINUX_LAST
	bool "build \"last\""
	default n

config BR2_PACKAGE_UTIL_LINUX_MESG
	bool "build \"kill\""
	default n

config BR2_PACKAGE_UTIL_LINUX_PARTX
	bool "build \"addpart, delpart, partx\""
	default n

config BR2_PACKAGE_UTIL_LINUX_RAW
	bool "build \"raw\""
	default n

config BR2_PACKAGE_UTIL_LINUX_RESET
	bool "build \"reset\""
	default n

config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
	bool "build \"chfn, chsh, login, newgrp, vipw\""
	default n

config BR2_PACKAGE_UTIL_LINUX_WRITE
	bool "build \"addpart, delpart, partx\""
	default n

endif

comment "util-linux requires a toolchain with LARGEFILE/WCHAR/PROGRAM_INVOCATION support"
	depends on !(BR2_LARGEFILE && BR2_USE_WCHAR && BR2_PROGRAM_INVOCATION)