fix another build error
[openwrt/openwrt.git] / target / Config.in
1 choice
2 prompt "Target System"
3 default LINUX_2_4_BRCM
4
5 source "tmp/.config-target.in"
6
7 if DEVEL
8
9 config LINUX_2_6_ARM
10 bool "UNSUPPORTED little-endian arm platform"
11 depends BROKEN
12 select LINUX_2_6
13 select arm
14
15 config LINUX_2_6_CRIS
16 bool "UNSUPPORTED cris platform"
17 depends BROKEN
18 select LINUX_2_6
19 select cris
20
21 config LINUX_2_6_M68K
22 bool "UNSUPPORTED m68k platform"
23 depends BROKEN
24 select LINUX_2_6
25 select m68k
26
27 config LINUX_2_6_SH3
28 bool "UNSUPPORTED little-endian sh3 platform"
29 depends BROKEN
30 select LINUX_2_6
31 select sh3
32
33 config LINUX_2_6_SH3EB
34 bool "UNSUPPORTED big-endian sh3 platform"
35 depends BROKEN
36 select LINUX_2_6
37 select sh3eb
38
39 config LINUX_2_6_SH4
40 bool "UNSUPPORTED little-endian sh4 platform"
41 depends BROKEN
42 select LINUX_2_6
43 select sh4
44
45 config LINUX_2_6_SH4EB
46 bool "UNSUPPORTED big-endian sh4 platform"
47 depends BROKEN
48 select LINUX_2_6
49 select sh4eb
50
51 config LINUX_2_6_SPARC
52 bool "UNSUPPORTED sparc platform"
53 depends BROKEN
54 select LINUX_2_6
55 select sparc
56
57 endif
58
59 endchoice
60
61
62 # Kernel/Hardware features
63
64 config LINUX_2_4
65 bool
66
67 config LINUX_2_6
68 bool
69
70 config PCI_SUPPORT
71 bool
72
73 config PCMCIA_SUPPORT
74 bool
75
76 config USB_SUPPORT
77 bool
78
79 config ATM_SUPPORT
80 bool
81
82 config BIG_ENDIAN
83 bool
84
85 config USES_SQUASHFS
86 bool
87
88 config USES_JFFS2
89 bool
90
91 config USES_EXT2
92 bool
93
94 # Architecture selection
95
96 config i386
97 bool
98
99 config mips
100 select BIG_ENDIAN
101 bool
102
103 config mipsel
104 bool
105
106 config arm
107 bool
108
109 config armeb
110 select BIG_ENDIAN
111 bool
112
113 config cris
114 bool
115
116 config m68k
117 bool
118
119 config powerpc
120 select BIG_ENDIAN
121 bool
122
123 config sh3
124 bool
125
126 config sh3eb
127 select BIG_ENDIAN
128 bool
129
130 config sh4
131 bool
132
133 config sh4eb
134 select BIG_ENDIAN
135 bool
136
137 config sparc
138 select BIG_ENDIAN
139 bool
140
141 config ARCH
142 string
143 default "arm" if arm
144 default "armeb" if armeb
145 default "cris" if cris
146 default "i386" if i386
147 default "m68k" if m68k
148 default "mips" if mips
149 default "mipsel" if mipsel
150 default "powerpc" if powerpc
151 default "sh3" if sh3
152 default "sh3eb" if sh3eb
153 default "sh4" if sh4
154 default "sh4eb" if sh4eb
155 default "sparc" if sparc
156