summaryrefslogtreecommitdiff
path: root/target/Config.in
blob: a70ab95750acc8a8b2d6e06f682ed0b5a0fde1c1 (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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

config ADK_DEVICE_NO_FPU
	bool

config ADK_NATIVE
	tristate

config ADK_alix1c
	tristate

config ADK_qemu_x86
	tristate

config ADK_qemu_mips
	tristate

config ADK_qemu_mipsel
	tristate

config ADK_qemu_mips64
	tristate

config ADK_qemu_mips64el
	tristate

config ADK_qemu_cris
	tristate

config ADK_rb532
	tristate

config ADK_rb411
	tristate

config ADK_rb433
	tristate

config ADK_zaurus
	tristate

config ADK_foxboard
	tristate

config ADK_lemote
	tristate

config ADK_rescue_x86
	tristate

config ADK_rescue_x86_64
	tristate

config ADK_rescue_mips
	tristate

config ADK_rescue_mipsel
	tristate

config ADK_DEVICE
	string
	default "alix1c"  if ADK_alix1c
	default "qemu-x86"  if ADK_qemu_x86
	default "qemu-mips"  if ADK_qemu_mips
	default "qemu-mipsel"  if ADK_qemu_mipsel
	default "qemu-mips64"  if ADK_qemu_mips64
	default "qemu-mips64el"  if ADK_qemu_mips64el
	default "qemu-cris"  if ADK_qemu_cris
	default "foxboard"  if ADK_foxboard
	default "native"  if ADK_NATIVE
	default "rb532"  if ADK_rb532
	default "rb411"  if ADK_rb411
	default "rb433"  if ADK_rb433
	default "zaurus"  if ADK_arm
	default "lemote"  if ADK_lemote
	default "rescue-x86"  if ADK_rescue_x86
	default "rescue-x86_64"  if ADK_rescue_x86_64
	default "rescue-mips"  if ADK_rescue_mips
	default "rescue-mipsel"  if ADK_rescue_mipsel

config ADK_LINUX_MIPS64
	bool
	default n	

menu "Target system"

choice
prompt "Embedded Device"
default ADK_LINUX_NATIVE

config ADK_LINUX_NATIVE
	bool "Native platform"
	select ADK_NATIVE
	help
	  Make a native build. Use host tools.
	  No toolchain will be created.

config ADK_LINUX_X86_ALIX1C
	bool "PC Engines Alix1C"
	select ADK_alix1c
	select ADK_KERNEL_SCSI
	select ADK_KERNEL_EXT2_FS
	select ADK_KERNEL_NET_PCI
	select ADK_KERNEL_NETDEVICES
	select ADK_KERNEL_NET_ETHERNET
	select ADK_KERNEL_MII
	select BUSYBOX_HWCLOCK
	help
	  http://www.pcengines.ch/

config ADK_LINUX_CRIS_FOXBOARD
	bool "Foxboard (ETRAX LX100)"
	select ADK_foxboard
	select ADK_PACKAGE_KMOD_USB_CONTROLLER
	help
	  Foxboard support

config ADK_LINUX_MIPS64_LEMOTE
	bool "Lemote Subnotebook"
	select ADK_lemote
	select ADK_LINUX_MIPS64
	help
	  Lemote Subnotebook

config ADK_LINUX_MIPS_RB411
	bool "Mikrotik Routerboard 411"
	select ADK_rb411
	select ADK_KERNEL_NET_PCI
	select ADK_KERNEL_NETDEV_1000
	select ADK_KERNEL_NET_ETHERNET
	help
	 Support for Mikrotik RB411.

config ADK_LINUX_MIPS_RB433
	bool "Mikrotik Routerboard 433"
	select ADK_rb433
	select ADK_KERNEL_NET_PCI
	select ADK_KERNEL_NETDEV_1000
	select ADK_KERNEL_NET_ETHERNET
	help
	 Support for Mikrotik RB433.

config ADK_LINUX_MIPS_RB532
	bool "Mikrotik Routerboard 532"
	select ADK_rb532
	select ADK_KERNEL_NET_PCI
	select ADK_KERNEL_NET_ETHERNET
	select ADK_KERNEL_MII
	help
	 Support for Mikrotik RB532.

config ADK_LINUX_XSCALE_ZAURUS
	bool "Zaurus SL-C3200"
	select ADK_zaurus
	select ADK_DEVICE_NO_FPU
	help
	 Support for Sharp Zaurus SL-C3200 (aka Terrier)

config ADK_LINUX_RESCUE
	bool "Minimal Linux Rescuesystem"
	help
	 Rescuesystem with can be used to Boot from Disk or USB stick.

config ADK_LINUX_QEMU
	bool "Qemu Emulator"
	help
	 Support for Qemu Emulator

endchoice

choice
prompt "Architecture"
depends on ADK_LINUX_RESCUE

config ADK_LINUX_X86_64_RESCUE
	bool "x86_64"
	select ADK_rescue_x86_64
	help
	 X86 architecture.

config ADK_LINUX_X86_RESCUE
	bool "x86"
	select ADK_rescue_x86
	help
	 X86 architecture.

config ADK_LINUX_MIPSEL_RESCUE
	bool "mips (little endian)"
	select ADK_rescue_mipsel
	help
	 MIPS LE architecture.

config ADK_LINUX_MIPS_RESCUE
	bool "mips (big endian)"
	select ADK_rescue_mips
	help
	 MIPS BE architecture.

endchoice

choice
prompt "Architecture"
depends on ADK_LINUX_QEMU

config ADK_LINUX_X86_QEMU
	bool "x86"
	select ADK_qemu_x86
	select ADK_KPACKAGE_KMOD_NE2K_PCI
	help
	 Qemu support for x86 architecture.

config ADK_LINUX_MIPS_QEMU
	bool "mips (big endian)"
	select ADK_qemu_mips
	help
	 Qemu support for MIPS BE architecture.

config ADK_LINUX_MIPSEL_QEMU
	bool "mipsel (little endian)"
	select ADK_qemu_mipsel
	help
	 Qemu support for MIPS LE architecture.

config ADK_LINUX_MIPS64_QEMU
	bool "mips64 (big endian)"
	select ADK_qemu_mips64
	select ADK_LINUX_MIPS64
	help
	 Qemu support for MIPS64 BE architecture.

config ADK_LINUX_MIPS64EL_QEMU
	bool "mips64 (little endian)"
	select ADK_qemu_mips64el
	select ADK_LINUX_MIPS64
	help
	 Qemu support for MIPS64 LE architecture.

config ADK_LINUX_CRIS_QEMU
	bool "cris"
	select ADK_qemu_cris
	help
	 Qemu support for CRISv32 architecture.

endchoice

choice
prompt "Device model"
default ADK_LINUX_CRIS_FOXBOARD_CLASSIC
depends on ADK_LINUX_CRIS_FOXBOARD

config ADK_LINUX_CRIS_FOXBOARD_CLASSIC
	bool "Foxboard classic (4x16)"
	help
	  Foxboard classic with red board.
	  (4 MB flash size and 16 MB RAM)

config ADK_LINUX_CRIS_FOXBOARD_LX
	bool "Foxboard LX (8x32)"
	help
	  Latest Foxboard with green board.
	  (8 MB flash size and 32 MB RAM)

endchoice

source "target/linux/config/Config.in.kernel"

choice 
prompt "Target C library"
depends ! ADK_NATIVE
config ADK_TARGET_LIB_UCLIBC
	bool "uClibc embedded C library"
	help
 	 http://uclibc.org

config ADK_TARGET_LIB_GLIBC
	bool "GNU C library"
	depends on ADK_LINUX_X86_QEMU || \
		ADK_LINUX_MIPS_QEMU || \
		ADK_LINUX_MIPS64_QEMU || \
		ADK_LINUX_MIPSEL_QEMU || \
		ADK_LINUX_MIPS64EL_QEMU || \
		ADK_LINUX_X86_ALIX1C || \
		ADK_LINUX_MIPS_RB411 || \
		ADK_LINUX_MIPS_RB532 || \
		ADK_LINUX_RESCUE || \
		ADK_LINUX_MIPS64_LEMOTE
	help
	 http://www.gnu.org/libc
endchoice

choice
prompt "Target Firmware type"
	default ADK_TARGET_ROOTFS_EXT2_CF

config ADK_TARGET_ROOTFS_INITRAMFS
	bool "initramfs filesystem"
	depends on ADK_LINUX_X86_QEMU || \
		ADK_LINUX_CRIS_QEMU || \
		ADK_LINUX_MIPS_QEMU || \
		ADK_LINUX_MIPSEL_QEMU || \
		ADK_LINUX_MIPS64_QEMU || \
		ADK_LINUX_MIPS64EL_QEMU || \
		ADK_LINUX_RESCUE || \
		ADK_LINUX_MIPS64_LEMOTE
	help
	  create an read-only initramfs system.

config ADK_TARGET_ROOTFS_SQUASHFS
	bool "squashfs read-only root filesystem"
	depends on ADK_LINUX_CRIS_FOXBOARD
	help
	  highly compressed read-only filesystem for flash.

config ADK_TARGET_ROOTFS_YAFFS
	bool "YAFFS2 rootfilesystem (NAND)"
	depends on ADK_LINUX_MIPS_RB532 || \
		ADK_LINUX_MIPS_RB433 || \
		ADK_LINUX_MIPS_RB411
	help
	  Root filesystem on NAND.

config ADK_TARGET_ROOTFS_NFSROOT
	bool "NFS root"
	depends on ADK_LINUX_CRIS_FOXBOARD || \
		ADK_LINUX_X86_ALIX1C || \
		ADK_LINUX_MIPS_RB532 || \
		ADK_LINUX_MIPS_RB433 || \
		ADK_LINUX_MIPS_RB411 || \
		ADK_LINUX_MIPS64_LEMOTE
	select ADK_KERNEL_NFS_FS
	select ADK_KERNEL_NFS_V3
	select ADK_KERNEL_ROOT_NFS
	select ADK_KERNEL_NFS_COMMON
	select ADK_KERNEL_IP_PNP
	select ADK_KERNEL_IP_PNP_DHCP
	help
	  Root filesystem mounted via NFS. (DHCP)

config ADK_TARGET_ROOTFS_EXT2_CF
	bool "read-write filesystem for compact flash (ext2)"
	depends on ADK_LINUX_X86_ALIX1C || ADK_LINUX_MIPS_RB532
	select ADK_KERNEL_EXT2_FS
	help
	  Use this option if you have a compact flash
	  inside your hardware and want to boot from it.

config ADK_TARGET_ROOTFS_EXT2
	bool "read-write filesystem for qemu emulator"
	depends on ADK_LINUX_QEMU || \
		ADK_LINUX_XSCALE_ZAURUS
	select ADK_KERNEL_EXT2_FS
	help
	  Use this option if you compile for qemu.
endchoice

config ADK_SSP
	bool "Enable Stack Smashing Protection"
	default n
	depends on ADK_LINUX_X86_ALIX1C || \
		ADK_LINUX_CRIS_FOXBOARD
	help
	  Enable Stack Smashing Protection

config ADK_CXX
	bool "Enable C++ support"
	default n
	help
	  Enable C++ Compiler and Libraries

config ADK_DEBUG
	bool "Enable debug support"
	default n
	help
	  All packages and libc will be compiled and packaged with debug information.
	  Mostly useful for NFS root or big USB/CF disk setups.

config ADK_IPV6
	bool "Enable IPv6 support"
	default n
	select ADK_KPACKAGE_KMOD_IPV6
	select BUSYBOX_FEATURE_IPV6
	select BUSYBOX_FEATURE_IFUPDOWN_IPV6
	select BUSYBOX_PING6
	help
	  Enable basic IPv6 support (kmod-ipv6) and
	  make the IPv6 support options in packages visible.

config ADK_X11
	bool "Enable X.org/X11 support"
	default n
	help
	  Enable Xorg/X11 server and applications in menu.
	  Try to compile other packages with X11 support. 
	  (f.e. mplayer)

endmenu