summaryrefslogtreecommitdiffstats
path: root/rules/klibc.in
blob: 302cea1e976121e2d3fd06e89c96f2ea61af3b5e (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#
# rules/klibc.in
#

##############################################################################
menu "klibc               "
	depends on BUILD_USERLAND
##############################################################################

config KLIBC
	depends on KERNEL_2_6 && COMPILE_KERNEL
	bool
	prompt "build klibc"
	default n

config KLIBC_KINIT
	depends on KLIBC
	bool
	prompt "Install kinit program into initramfs"
	default y

config KLIBC_SH
	depends on KLIBC
	bool
	prompt "Install sh into initramfs"
	default no

config KLIBC_INIT
	depends on KLIBC
	string
	prompt "create a link from /init to the specified program"
	default "/kinit"

config KLIBC_CAT
	depends on KLIBC
	bool
	prompt "Install cat into initramfs"
	default no

config KLIBC_INSMOD
	depends on KLIBC
	bool
	prompt "Install insmod into initramfs"
	default no

config KLIBC_MOUNT
	depends on KLIBC
	bool
	prompt "Install mount into initramfs"
	default no

config KLIBC_DD
	depends on KLIBC
	bool
	prompt "Install dd into initramfs"
	default no

config KLIBC_CHROOT
	depends on KLIBC
	bool
	prompt "Install chroot into initramfs"
	default no

config KLIBC_FALSE
	depends on KLIBC
	bool
	prompt "Install false into initramfs"
	default no

config KLIBC_FSTYPE
	depends on KLIBC
	bool
	prompt "Install fstype into initramfs"
	default no

config KLIBC_LN
	depends on KLIBC
	bool
	prompt "Install ln into initramfs"
	default no

config KLIBC_MINIPS
	depends on KLIBC
	bool
	prompt "Install minips into initramfs"
	default no

config KLIBC_MKDIR
	depends on KLIBC
	bool
	prompt "Install mkdir into initramfs"
	default no

config KLIBC_MKFIFO
	depends on KLIBC
	bool
	prompt "Install mkfifo into initramfs"
	default no

config KLIBC_NUKE
	depends on KLIBC
	bool
	prompt "Install nuke into initramfs"
	default no

config KLIBC_PIVOT_ROOT
	depends on KLIBC
	bool
	prompt "Install pivot-root into initramfs"
	default no

config KLIBC_PRINTF
	depends on KLIBC
	bool
	prompt "Install printf into initramfs"
	default no

config KLIBC_RUN_INIT
	depends on KLIBC
	bool
	prompt "Install run-init into initramfs"
	default no

config KLIBC_SLEEP
	depends on KLIBC
	bool
	prompt "Install sleep into initramfs"
	default no

config KLIBC_TRUE
	depends on KLIBC
	bool
	prompt "Install true into initramfs"
	default no

config KLIBC_UMOUNT
	depends on KLIBC
	bool
	prompt "Install umount into initramfs"
	default no

config KLIBC_UNAME
	depends on KLIBC
	bool
	prompt "Install uname into initramfs"
	default no

config KLIBC_NFSMOUNT
	depends on KLIBC
	bool
	prompt "Install nfsmount into initramfs"
	default no

config KLIBC_USER_SPEC
	depends on KLIBC
	bool
	prompt "parse project specific initramfs_spec"
	help
	  parse the spec file which is expected to live in $(PROJECTDIR)/initramfs_spec.
	  The format is the same as described in the kernelsource under
	  Documentation/early-userspace/README. Files described in this file can
	  either have an absolute or a relative path (relative to $(PROJECTDIR))
	
endmenu