lantiq_dsl.sh: properly detect vdsl_cpe_control and add missing quotes
[openwrt/openwrt.git] / target / Config.in
1 source "tmp/.config-target.in"
2
3 # Kernel/Hardware features
4
5 config HAS_SPE_FPU
6 depends on powerpc
7 select HAS_FPU
8 bool
9
10 config HAS_FPU
11 bool
12
13 config AUDIO_SUPPORT
14 bool
15
16 config GPIO_SUPPORT
17 bool
18
19 config PCI_SUPPORT
20 select AUDIO_SUPPORT
21 bool
22
23 config PCIE_SUPPORT
24 bool
25
26 config PCMCIA_SUPPORT
27 bool
28
29 config USB_SUPPORT
30 select AUDIO_SUPPORT
31 bool
32
33 config USB_GADGET_SUPPORT
34 bool
35
36 config RTC_SUPPORT
37 bool
38
39 config BIG_ENDIAN
40 bool
41
42 config USES_DEVICETREE
43 bool
44
45 config USES_INITRAMFS
46 bool
47
48 config USES_SQUASHFS
49 bool
50
51 config USES_JFFS2
52 bool
53
54 config USES_JFFS2_NAND
55 bool
56
57 config USES_EXT4
58 bool
59
60 config USES_TARGZ
61 bool
62
63 config USES_CPIOGZ
64 bool
65
66 config USES_UBIFS
67 bool
68 select NAND_SUPPORT
69
70 config PROFILE_KCONFIG
71 bool
72
73 config LOW_MEMORY_FOOTPRINT
74 bool
75
76 config NOMMU
77 bool
78
79 config HAS_MIPS16
80 depends on (mips || mipsel || mips64 || mips64el)
81 bool
82
83 config RFKILL_SUPPORT
84 bool
85
86 config NAND_SUPPORT
87 bool
88
89 config ARCH_64BIT
90 bool
91
92 # Architecture selection
93
94 config arm
95 bool
96
97 config armeb
98 select BIG_ENDIAN
99 bool
100
101 config arm_v4
102 bool
103
104 config arm_v5
105 bool
106
107 config arm_v6
108 bool
109
110 config arm_v7
111 bool
112
113 config avr32
114 select BIG_ENDIAN
115 bool
116
117 config cris
118 bool
119
120 config i386
121 bool
122
123 config i686
124 bool
125
126 config m68k
127 bool
128
129 config mips
130 select BIG_ENDIAN
131 bool
132
133 config mipsel
134 bool
135
136 config mips64
137 select BIG_ENDIAN
138 select ARCH_64BIT
139 bool
140
141 config mips64el
142 select ARCH_64BIT
143 bool
144
145 config powerpc
146 select BIG_ENDIAN
147 bool
148
149 config powerpc64
150 select BIG_ENDIAN
151 select ARCH_64BIT
152 bool
153
154 config sh3
155 bool
156
157 config sh3eb
158 select BIG_ENDIAN
159 bool
160
161 config sh4
162 bool
163
164 config sh4eb
165 select BIG_ENDIAN
166 bool
167
168 config sparc
169 select BIG_ENDIAN
170 bool
171
172 config x86_64
173 select ARCH_64BIT
174 bool
175
176 config ARCH
177 string
178 default "arm" if arm
179 default "armeb" if armeb
180 default "avr32" if avr32
181 default "cris" if cris
182 default "i386" if i386
183 default "i686" if i686
184 default "m68k" if m68k
185 default "mips" if mips
186 default "mipsel" if mipsel
187 default "mips64" if mips64
188 default "mips64el" if mips64el
189 default "powerpc" if powerpc
190 default "sh3" if sh3
191 default "sh3eb" if sh3eb
192 default "sh4" if sh4
193 default "sh4eb" if sh4eb
194 default "sparc" if sparc
195 default "x86_64" if x86_64
196