Root/target/Config.in

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

Archive Download this file



interactive