Add usb gadget feature flag
[openwrt/svn-archive/archive.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 AUDIO_SUPPORT
15 bool
16
17 config DISPLAY_SUPPORT
18 bool
19
20 config GPIO_SUPPORT
21 bool
22
23 config PCI_SUPPORT
24 select AUDIO_SUPPORT
25 bool
26
27 config PCIE_SUPPORT
28 bool
29
30 config PCMCIA_SUPPORT
31 bool
32
33 config USB_SUPPORT
34 select AUDIO_SUPPORT
35 bool
36
37 config USB_GADGET_SUPPORT
38 bool
39
40 config BIG_ENDIAN
41 bool
42
43 config USES_INITRAMFS
44 bool
45
46 config USES_SQUASHFS
47 bool
48
49 config USES_JFFS2
50 bool
51
52 config USES_EXT2
53 bool
54
55 config USES_TARGZ
56 bool
57
58 config USES_CPIOGZ
59 bool
60
61 config USES_UBIFS
62 bool
63
64 config PROFILE_KCONFIG
65 bool
66
67 config NOMMU
68 bool
69
70 # Architecture selection
71
72 config arm
73 bool
74
75 config armeb
76 select BIG_ENDIAN
77 bool
78
79 config avr32
80 select BIG_ENDIAN
81 bool
82
83 config cris
84 bool
85
86 config i386
87 bool
88
89 config i686
90 bool
91
92 config m68k
93 bool
94
95 config mips
96 select BIG_ENDIAN
97 bool
98
99 config mipsel
100 bool
101
102 config mips64
103 select BIG_ENDIAN
104 bool
105
106 config mips64el
107 bool
108
109 config powerpc
110 select BIG_ENDIAN
111 bool
112
113 config powerpc64
114 select BIG_ENDIAN
115 bool
116
117 config sh3
118 bool
119
120 config sh3eb
121 select BIG_ENDIAN
122 bool
123
124 config sh4
125 bool
126
127 config sh4eb
128 select BIG_ENDIAN
129 bool
130
131 config sparc
132 select BIG_ENDIAN
133 bool
134
135 config ubicom32
136 select BIG_ENDIAN
137 bool
138
139 config x86_64
140 bool
141
142 config ARCH
143 string
144 default "arm" if arm
145 default "armeb" if armeb
146 default "avr32" if avr32
147 default "cris" if cris
148 default "i386" if i386
149 default "i686" if i686
150 default "m68k" if m68k
151 default "mips" if mips
152 default "mipsel" if mipsel
153 default "mips64" if mips64
154 default "mips64el" if mips64el
155 default "powerpc" if powerpc
156 default "sh3" if sh3
157 default "sh3eb" if sh3eb
158 default "sh4" if sh4
159 default "sh4eb" if sh4eb
160 default "sparc" if sparc
161 default "ubicom32" if ubicom32
162 default "x86_64" if x86_64
163