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