Move device selection first in menuconfig (#18)
[openwrt/svn-archive/archive.git] / openwrt / target / Config.in
1 choice
2 prompt "Target System"
3
4 config BR2_LINUX_2_4_AR531X
5 bool "Atheros AR531x [2.4]"
6 default n
7 depends BR2_mips
8 help
9 Build firmware images for Atheros AR531x based boards
10 (e.g. Netgear WGT624, Linksys WRT55AG)
11
12 config BR2_LINUX_2_4_BRCM
13 bool "Broadcom BCM47xx/53xx [2.4]"
14 default y
15 depends BR2_mipsel
16 select BR2_LINUX_PCMCIA_SUPPORT
17 help
18 Build firmware images for Broadcom based routers
19 (e.g. Linksys WRT54G(S), Asus WL-500g, Motorola WR850G)
20
21 This one builds the generic .trx images, activate one of the
22 options below for creating device specific files for use
23 with TFTP client too.
24
25 config BR2_LINUX_2_6_BRCM
26 bool "Broadcom BCM47xx/53xx [2.6]"
27 default n
28 depends BR2_mipsel
29 select BR2_LINUX_PCMCIA_SUPPORT
30 help
31 Build firmware images for Broadcom based routers
32 (e.g. Netgear WGT634u)
33
34 config BR2_LINUX_2_4_AR7
35 bool "TI AR7 [2.4]"
36 default n
37 depends BR2_mipsel
38 help
39 Build firmware images for TI AR7 based routers (w.g. Linksys WAG54G v2)
40
41 config BR2_LINUX_2_4_X86
42 bool "x86 [2.4]"
43 default n
44 depends BR2_i386
45 select BR2_LINUX_PCMCIA_SUPPORT
46 help
47 Build firmware images for x86 based boards
48 (e.g. Soekris net4521 and net4801, PC Engines WRAP...)
49
50 config BR2_LINUX_2_6_X86
51 bool "x86 [2.6]"
52 default n
53 depends BR2_i386
54 select BR2_LINUX_PCMCIA_SUPPORT
55 help
56 Build firmware images for x86 based boards
57 (e.g. Soekris net4521 and net4801, PC Engines WRAP...)
58
59 endchoice
60
61 config BR2_LINUX_PCMCIA_SUPPORT
62 bool
63 default n
64 depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_4_BRCM || BR2_LINUX_2_6_X86 || BR2_LINUX_2_6_BRCM
65