OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 source "tmp/.config-target.in"
2  
3 # Kernel/Hardware features
4  
5 config HAS_SPE_FPU
6 depends on powerpc
7 select HAS_FPU
8 bool
9  
10 config HAS_FPU
11 bool
12  
13 config AUDIO_SUPPORT
14 bool
15  
16 config GPIO_SUPPORT
17 bool
18  
19 config PCI_SUPPORT
20 select AUDIO_SUPPORT
21 bool
22  
23 config PCIE_SUPPORT
24 bool
25  
26 config PCMCIA_SUPPORT
27 bool
28  
29 config USB_SUPPORT
30 select AUDIO_SUPPORT
31 bool
32  
33 config USB_GADGET_SUPPORT
34 bool
35  
36 config RTC_SUPPORT
37 tristate
38 depends on m
39  
40 config BIG_ENDIAN
41 bool
42  
43 config USES_DEVICETREE
44 bool
45  
46 config USES_INITRAMFS
47 bool
48  
49 config USES_SQUASHFS
50 bool
51  
52 config USES_JFFS2
53 bool
54  
55 config USES_JFFS2_NAND
56 bool
57  
58 config USES_EXT4
59 bool
60  
61 config USES_TARGZ
62 bool
63  
64 config USES_CPIOGZ
65 bool
66  
67 config USES_MINOR
68 bool
69  
70 config USES_UBIFS
71 bool
72 select NAND_SUPPORT
73  
74 config LOW_MEMORY_FOOTPRINT
75 bool
76  
77 config SMALL_FLASH
78 bool
79  
80 config NOMMU
81 bool
82  
83 config HAS_MIPS16
84 depends on (mips || mipsel || mips64 || mips64el)
85 bool
86  
87 config RFKILL_SUPPORT
88 bool
89  
90 config NAND_SUPPORT
91 bool
92  
93 config ARCH_64BIT
94 bool
95  
96 config VIRTIO_SUPPORT
97 bool
98  
99 # Architecture selection
100  
101 config aarch64
102 select ARCH_64BIT
103 bool
104  
105 config aarch64_be
106 select ARCH_64BIT
107 select BIG_ENDIAN
108 bool
109  
110 config arc
111 bool
112  
113 config arceb
114 select BIG_ENDIAN
115 bool
116  
117 config arm
118 bool
119  
120 config armeb
121 select BIG_ENDIAN
122 bool
123  
124 config arm_v6
125 bool
126  
127 config arm_v7
128 bool
129  
130 config i386
131 bool
132  
133 config i686
134 bool
135  
136 config m68k
137 bool
138  
139 config mips
140 select BIG_ENDIAN
141 bool
142  
143 config mipsel
144 bool
145  
146 config mips64
147 select BIG_ENDIAN
148 select ARCH_64BIT
149 bool
150  
151 config mips64el
152 select ARCH_64BIT
153 bool
154  
155 config powerpc
156 select BIG_ENDIAN
157 bool
158  
159 config powerpc64
160 select BIG_ENDIAN
161 select ARCH_64BIT
162 bool
163  
164 config sh3
165 bool
166  
167 config sh3eb
168 select BIG_ENDIAN
169 bool
170  
171 config sh4
172 bool
173  
174 config sh4eb
175 select BIG_ENDIAN
176 bool
177  
178 config sparc
179 select BIG_ENDIAN
180 bool
181  
182 config x86_64
183 select ARCH_64BIT
184 bool
185  
186 config ARCH
187 string
188 default "aarch64" if aarch64
189 default "aarch64_be" if aarch64_be
190 default "arc" if arc
191 default "arceb" if arceb
192 default "arm" if arm
193 default "armeb" if armeb
194 default "i386" if i386
195 default "i686" if i686
196 default "m68k" if m68k
197 default "mips" if mips
198 default "mipsel" if mipsel
199 default "mips64" if mips64
200 default "mips64el" if mips64el
201 default "powerpc" if powerpc
202 default "powerpc64" if powerpc64
203 default "sh3" if sh3
204 default "sh3eb" if sh3eb
205 default "sh4" if sh4
206 default "sh4eb" if sh4eb
207 default "sparc" if sparc
208 default "x86_64" if x86_64
209