blob: e675ca47aaf3704d2e22110eef65900f5e8e89db (
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
config ADK_COMPILE_BUSYBOX
tristate
depends on ADK_PACKAGE_BUSYBOX
default n
config ADK_PACKAGE_BUSYBOX
prompt "busybox.............. core utilities for embedded systems"
boolean
select ADK_COMPILE_BUSYBOX
default y if !ADK_TOOLCHAIN_ONLY
help
Core utilities for embedded Linux systems
WWW: http://www.busybox.net
menu "Busybox Configuration"
depends on ADK_PACKAGE_BUSYBOX
source "package/busybox/config/Config.in"
endmenu
config ADK_PACKAGE_UDHCPD
boolean
default BUSYBOX_APP_UDHCPD
# disable busybox applets, when full programs are choosen
config BUSYBOX_DISABLE_MOUNT
boolean
default y if ADK_PACKAGE_MOUNT
depends on ADK_PACKAGE_MOUNT
default n
config BUSYBOX_DISABLE_UMOUNT
boolean
default y if ADK_PACKAGE_MOUNT
depends on ADK_PACKAGE_MOUNT
default n
config BUSYBOX_DISABLE_TAR
boolean
default y if ADK_PACKAGE_TAR
depends on ADK_PACKAGE_TAR
default n
config BUSYBOX_DISABLE_RPM
boolean
default y if ADK_PACKAGE_RPM
depends on ADK_PACKAGE_RPM
default n
config BUSYBOX_DISABLE_BZIP2
boolean
default y if ADK_PACKAGE_BZIP2
depends on ADK_PACKAGE_BZIP2
default n
config BUSYBOX_DISABLE_IP
boolean
default y if ADK_PACKAGE_IP
depends on ADK_PACKAGE_IP
default n
config BUSYBOX_DISABLE_PATCH
boolean
default y if ADK_PACKAGE_PATCH
depends on ADK_PACKAGE_PATCH
default n
config BUSYBOX_DISABLE_DIFF
boolean
default y if ADK_PACKAGE_DIFFUTILS
depends on ADK_PACKAGE_DIFFUTILS
default n
config BUSYBOX_DISABLE_ED
boolean
default y if ADK_PACKAGE_ED
depends on ADK_PACKAGE_ED
default n
config BUSYBOX_DISABLE_SED
boolean
default y if ADK_PACKAGE_SED
depends on ADK_PACKAGE_SED
default n
config BUSYBOX_DISABLE_LESS
boolean
default y if ADK_PACKAGE_LESS
depends on ADK_PACKAGE_LESS
default n
config BUSYBOX_DISABLE_HDPARM
boolean
default y if ADK_PACKAGE_HDPARM
depends on ADK_PACKAGE_HDPARM
default n
config BUSYBOX_DISABLE_WATCHDOG
boolean
default y if ADK_PACKAGE_WATCHDOG
depends on ADK_PACKAGE_WATCHDOG
default n
config BUSYBOX_DISABLE_PAM
boolean
default y if ADK_PACKAGE_PAM
depends on ADK_PACKAGE_PAM
default n
config BUSYBOX_DISABLE_BRCTL
boolean
default y if ADK_PACKAGE_BRIDGE_UTILS
depends on ADK_PACKAGE_BRIDGE_UTILS
default n
config BUSYBOX_DISABLE_ETHER_WAKE
boolean
default y if ADK_PACKAGE_ETHER_WAKE
depends on ADK_PACKAGE_ETHER_WAKE
default n
config BUSYBOX_DISABLE_NTPD
boolean
default y if ADK_PACKAGE_OPENNTPD
depends on ADK_PACKAGE_OPENNTPD
default n
config BUSYBOX_DISABLE_WGET
boolean
default y if ADK_PACKAGE_WGET
depends on ADK_PACKAGE_WGET
default n
config BUSYBOX_DISABLE_AR
boolean
default y if ADK_PACKAGE_BINUTILS
depends on ADK_PACKAGE_BINUTILS
default n
config BUSYBOX_DISABLE_CPIO
boolean
default y if ADK_PACKAGE_CPIO
depends on ADK_PACKAGE_CPIO
default n
config BUSYBOX_DISABLE_XZ
boolean
default y if ADK_PACKAGE_XZ
depends on ADK_PACKAGE_XZ
default n
config BUSYBOX_DISABLE_UNXZ
boolean
default y if ADK_PACKAGE_XZ
depends on ADK_PACKAGE_XZ
default n
config BUSYBOX_DISABLE_UNZIP
boolean
default y if ADK_PACKAGE_UNZIP
depends on ADK_PACKAGE_UNZIP
default n
config BUSYBOX_DISABLE_FBSET
boolean
default y if ADK_PACKAGE_FBSET
depends on ADK_PACKAGE_FBSET
default n
config BUSYBOX_DISABLE_LSPCI
boolean
default y if ADK_PACKAGE_PCIUTILS
depends on ADK_PACKAGE_PCIUTILS
default n
config BUSYBOX_DISABLE_LSUSB
boolean
default y if ADK_PACKAGE_LSUSB
depends on ADK_PACKAGE_LSUSB
default n
config BUSYBOX_DISABLE_GREP
boolean
default y if ADK_PACKAGE_GREP
depends on ADK_PACKAGE_GREP
default n
config BUSYBOX_DISABLE_FIND
boolean
default y if ADK_PACKAGE_FINDUTILS
depends on ADK_PACKAGE_FINDUTILS
default n
|