OpenWrt – Blame information for rev 1

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 config USES_ROOTFS_PART
100 bool
101  
102 config USES_BOOT_PART
103 bool
104  
105 # Architecture selection
106  
107 config aarch64
108 select ARCH_64BIT
109 bool
110  
111 config aarch64_be
112 select ARCH_64BIT
113 select BIG_ENDIAN
114 bool
115  
116 config arc
117 bool
118  
119 config arceb
120 select BIG_ENDIAN
121 bool
122  
123 config arm
124 bool
125  
126 config armeb
127 select BIG_ENDIAN
128 bool
129  
130 config arm_v6
131 bool
132  
133 config arm_v7
134 bool
135  
136 config i386
137 bool
138  
139 config i686
140 bool
141  
142 config m68k
143 bool
144  
145 config mips
146 select BIG_ENDIAN
147 bool
148  
149 config mipsel
150 bool
151  
152 config mips64
153 select BIG_ENDIAN
154 select ARCH_64BIT
155 bool
156  
157 config mips64el
158 select ARCH_64BIT
159 bool
160  
161 config powerpc
162 select BIG_ENDIAN
163 bool
164  
165 config powerpc64
166 select BIG_ENDIAN
167 select ARCH_64BIT
168 bool
169  
170 config sh3
171 bool
172  
173 config sh3eb
174 select BIG_ENDIAN
175 bool
176  
177 config sh4
178 bool
179  
180 config sh4eb
181 select BIG_ENDIAN
182 bool
183  
184 config sparc
185 select BIG_ENDIAN
186 bool
187  
188 config x86_64
189 select ARCH_64BIT
190 bool
191  
192 config ARCH
193 string
194 default "aarch64" if aarch64
195 default "aarch64_be" if aarch64_be
196 default "arc" if arc
197 default "arceb" if arceb
198 default "arm" if arm
199 default "armeb" if armeb
200 default "i386" if i386
201 default "i686" if i686
202 default "m68k" if m68k
203 default "mips" if mips
204 default "mipsel" if mipsel
205 default "mips64" if mips64
206 default "mips64el" if mips64el
207 default "powerpc" if powerpc
208 default "powerpc64" if powerpc64
209 default "sh3" if sh3
210 default "sh3eb" if sh3eb
211 default "sh4" if sh4
212 default "sh4eb" if sh4eb
213 default "sparc" if sparc
214 default "x86_64" if x86_64
215