imx6: use more common name for ubi(fs) images
[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_INITRAMFS
43         bool
44
45 config USES_SQUASHFS
46         bool
47
48 config USES_JFFS2
49         bool
50
51 config USES_JFFS2_NAND
52         bool
53
54 config USES_EXT4
55         bool
56
57 config USES_TARGZ
58         bool
59
60 config USES_CPIOGZ
61         bool
62
63 config USES_UBIFS
64         bool
65
66 config PROFILE_KCONFIG
67         bool
68
69 config NOMMU
70         bool
71
72 config HAS_MIPS16
73         depends on (mips || mipsel || mips64 || mips64el)
74         bool
75
76 config RFKILL_SUPPORT
77         bool
78
79 config ARCH_64BIT
80         bool
81
82 # Architecture selection
83
84 config arm
85         bool
86
87 config armeb
88         select BIG_ENDIAN
89         bool
90
91 config arm_v4
92         bool
93
94 config arm_v5
95         bool
96
97 config arm_v6
98         bool
99
100 config arm_v7
101         bool
102
103 config avr32
104         select BIG_ENDIAN
105         bool
106
107 config cris
108         bool
109
110 config i386
111         bool
112
113 config i686
114         bool 
115
116 config m68k
117         bool
118
119 config mips
120         select BIG_ENDIAN
121         bool
122
123 config mipsel
124         bool
125
126 config mips64
127         select BIG_ENDIAN
128         select ARCH_64BIT
129         bool
130
131 config mips64el
132         select ARCH_64BIT
133         bool
134
135 config powerpc
136         select BIG_ENDIAN
137         bool
138
139 config powerpc64
140         select BIG_ENDIAN
141         select ARCH_64BIT
142         bool
143
144 config sh3
145         bool
146
147 config sh3eb
148         select BIG_ENDIAN
149         bool
150
151 config sh4
152         bool
153
154 config sh4eb
155         select BIG_ENDIAN
156         bool
157
158 config sparc
159         select BIG_ENDIAN
160         bool
161
162 config x86_64
163         select ARCH_64BIT
164         bool
165
166 config ARCH
167         string
168         default "arm"       if arm
169         default "armeb"     if armeb
170         default "avr32"     if avr32
171         default "cris"      if cris
172         default "i386"      if i386
173         default "i686"      if i686
174         default "m68k"      if m68k
175         default "mips"      if mips
176         default "mipsel"    if mipsel
177         default "mips64"    if mips64
178         default "mips64el"  if mips64el
179         default "powerpc"   if powerpc
180         default "sh3"       if sh3
181         default "sh3eb"     if sh3eb
182         default "sh4"       if sh4
183         default "sh4eb"     if sh4eb
184         default "sparc"     if sparc
185         default "x86_64"    if x86_64
186