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