ar71xx: drop procd_init console hack
[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 ARCH_64BIT
77         bool
78
79 # Architecture selection
80
81 config arm
82         bool
83
84 config armeb
85         select BIG_ENDIAN
86         bool
87
88 config arm_v4
89         bool
90
91 config arm_v5
92         bool
93
94 config arm_v6
95         bool
96
97 config arm_v7
98         bool
99
100 config avr32
101         select BIG_ENDIAN
102         bool
103
104 config cris
105         bool
106
107 config i386
108         bool
109
110 config i686
111         bool 
112
113 config m68k
114         bool
115
116 config mips
117         select BIG_ENDIAN
118         bool
119
120 config mipsel
121         bool
122
123 config mips64
124         select BIG_ENDIAN
125         select ARCH_64BIT
126         bool
127
128 config mips64el
129         select ARCH_64BIT
130         bool
131
132 config powerpc
133         select BIG_ENDIAN
134         bool
135
136 config powerpc64
137         select BIG_ENDIAN
138         select ARCH_64BIT
139         bool
140
141 config sh3
142         bool
143
144 config sh3eb
145         select BIG_ENDIAN
146         bool
147
148 config sh4
149         bool
150
151 config sh4eb
152         select BIG_ENDIAN
153         bool
154
155 config sparc
156         select BIG_ENDIAN
157         bool
158
159 config x86_64
160         select ARCH_64BIT
161         bool
162
163 config ARCH
164         string
165         default "arm"       if arm
166         default "armeb"     if armeb
167         default "avr32"     if avr32
168         default "cris"      if cris
169         default "i386"      if i386
170         default "i686"      if i686
171         default "m68k"      if m68k
172         default "mips"      if mips
173         default "mipsel"    if mipsel
174         default "mips64"    if mips64
175         default "mips64el"  if mips64el
176         default "powerpc"   if powerpc
177         default "sh3"       if sh3
178         default "sh3eb"     if sh3eb
179         default "sh4"       if sh4
180         default "sh4eb"     if sh4eb
181         default "sparc"     if sparc
182         default "x86_64"    if x86_64
183