Root/target/Config.in

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

Archive Download this file



interactive