add a gpio feature for devices supporting the generic GPIO interface
[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 DISPLAY_SUPPORT
12 bool
13
14 config GPIO_SUPPORT
15 bool
16
17 config PCI_SUPPORT
18 bool
19
20 config PCMCIA_SUPPORT
21 bool
22
23 config USB_SUPPORT
24 bool
25
26 config BIG_ENDIAN
27 bool
28
29 config USES_SQUASHFS
30 bool
31
32 config USES_JFFS2
33 bool
34
35 config USES_EXT2
36 bool
37
38 config USES_TGZ
39 bool
40
41 config USES_CPIOGZ
42 bool
43
44 config PROFILE_KCONFIG
45 bool
46
47 # Architecture selection
48
49 config i386
50 bool
51
52 config i686
53 bool
54
55 config mips
56 select BIG_ENDIAN
57 bool
58
59 config mipsel
60 bool
61
62 config arm
63 bool
64
65 config armeb
66 select BIG_ENDIAN
67 bool
68
69 config avr32
70 select BIG_ENDIAN
71 bool
72
73 config cris
74 bool
75
76 config m68k
77 bool
78
79 config powerpc
80 select BIG_ENDIAN
81 bool
82
83 config sh3
84 bool
85
86 config sh3eb
87 select BIG_ENDIAN
88 bool
89
90 config sh4
91 bool
92
93 config sh4eb
94 select BIG_ENDIAN
95 bool
96
97 config sparc
98 select BIG_ENDIAN
99 bool
100
101 config x86_64
102 bool
103
104 config ARCH
105 string
106 default "arm" if arm
107 default "armeb" if armeb
108 default "avr32" if avr32
109 default "cris" if cris
110 default "i386" if i386
111 default "i686" if i686
112 default "m68k" if m68k
113 default "mips" if mips
114 default "mipsel" if mipsel
115 default "powerpc" if powerpc
116 default "sh3" if sh3
117 default "sh3eb" if sh3eb
118 default "sh4" if sh4
119 default "sh4eb" if sh4eb
120 default "sparc" if sparc
121 default "x86_64" if x86_64
122