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