gpiodev should be in drivers/char, not in drivers/gpio..
[openwrt.git] / target / linux / generic-2.6 / patches-2.6.25 / 700-powerpc_git.patch
1 Index: linux-2.6.25.4/Documentation/kernel-parameters.txt
2 ===================================================================
3 --- linux-2.6.25.4.orig/Documentation/kernel-parameters.txt
4 +++ linux-2.6.25.4/Documentation/kernel-parameters.txt
5 @@ -930,6 +930,8 @@ and is between 256 and 4096 characters.
6
7 l2cr= [PPC]
8
9 + l3cr= [PPC]
10 +
11 lapic [X86-32,APIC] Enable the local APIC even if BIOS
12 disabled it.
13
14 Index: linux-2.6.25.4/Documentation/powerpc/booting-without-of.txt
15 ===================================================================
16 --- linux-2.6.25.4.orig/Documentation/powerpc/booting-without-of.txt
17 +++ linux-2.6.25.4/Documentation/powerpc/booting-without-of.txt
18 @@ -59,12 +59,39 @@ Table of Contents
19 p) Freescale Synchronous Serial Interface
20 q) USB EHCI controllers
21
22 - VII - Specifying interrupt information for devices
23 + VII - Marvell Discovery mv64[345]6x System Controller chips
24 + 1) The /system-controller node
25 + 2) Child nodes of /system-controller
26 + a) Marvell Discovery MDIO bus
27 + b) Marvell Discovery ethernet controller
28 + c) Marvell Discovery PHY nodes
29 + d) Marvell Discovery SDMA nodes
30 + e) Marvell Discovery BRG nodes
31 + f) Marvell Discovery CUNIT nodes
32 + g) Marvell Discovery MPSCROUTING nodes
33 + h) Marvell Discovery MPSCINTR nodes
34 + i) Marvell Discovery MPSC nodes
35 + j) Marvell Discovery Watch Dog Timer nodes
36 + k) Marvell Discovery I2C nodes
37 + l) Marvell Discovery PIC (Programmable Interrupt Controller) nodes
38 + m) Marvell Discovery MPP (Multipurpose Pins) multiplexing nodes
39 + n) Marvell Discovery GPP (General Purpose Pins) nodes
40 + o) Marvell Discovery PCI host bridge node
41 + p) Marvell Discovery CPU Error nodes
42 + q) Marvell Discovery SRAM Controller nodes
43 + r) Marvell Discovery PCI Error Handler nodes
44 + s) Marvell Discovery Memory Controller nodes
45 +
46 + VIII - Specifying interrupt information for devices
47 1) interrupts property
48 2) interrupt-parent property
49 3) OpenPIC Interrupt Controllers
50 4) ISA Interrupt Controllers
51
52 + VIII - Specifying GPIO information for devices
53 + 1) gpios property
54 + 2) gpio-controller nodes
55 +
56 Appendix A - Sample SOC node for MPC8540
57
58
59 @@ -1269,10 +1296,6 @@ platforms are moved over to use the flat
60
61 Recommended properties:
62
63 - - linux,network-index : This is the intended "index" of this
64 - network device. This is used by the bootwrapper to interpret
65 - MAC addresses passed by the firmware when no information other
66 - than indices is available to associate an address with a device.
67 - phy-connection-type : a string naming the controller/PHY interface type,
68 i.e., "mii" (default), "rmii", "gmii", "rgmii", "rgmii-id", "sgmii",
69 "tbi", or "rtbi". This property is only really needed if the connection
70 @@ -1622,8 +1645,7 @@ platforms are moved over to use the flat
71 - device_type : should be "network", "hldc", "uart", "transparent"
72 "bisync", "atm", or "serial".
73 - compatible : could be "ucc_geth" or "fsl_atm" and so on.
74 - - model : should be "UCC".
75 - - device-id : the ucc number(1-8), corresponding to UCCx in UM.
76 + - cell-index : the ucc number(1-8), corresponding to UCCx in UM.
77 - reg : Offset and length of the register set for the device
78 - interrupts : <a b> where a is the interrupt number and b is a
79 field that represents an encoding of the sense and level
80 @@ -1667,10 +1689,6 @@ platforms are moved over to use the flat
81 - phy-handle : The phandle for the PHY connected to this controller.
82
83 Recommended properties:
84 - - linux,network-index : This is the intended "index" of this
85 - network device. This is used by the bootwrapper to interpret
86 - MAC addresses passed by the firmware when no information other
87 - than indices is available to associate an address with a device.
88 - phy-connection-type : a string naming the controller/PHY interface type,
89 i.e., "mii" (default), "rmii", "gmii", "rgmii", "rgmii-id" (Internal
90 Delay), "rgmii-txid" (delay on TX only), "rgmii-rxid" (delay on RX only),
91 @@ -1680,8 +1698,7 @@ platforms are moved over to use the flat
92 ucc@2000 {
93 device_type = "network";
94 compatible = "ucc_geth";
95 - model = "UCC";
96 - device-id = <1>;
97 + cell-index = <1>;
98 reg = <2000 200>;
99 interrupts = <a0 0>;
100 interrupt-parent = <700>;
101 @@ -1995,7 +2012,6 @@ platforms are moved over to use the flat
102 interrupts = <20 8>;
103 interrupt-parent = <&PIC>;
104 phy-handle = <&PHY0>;
105 - linux,network-index = <0>;
106 fsl,cpm-command = <12000300>;
107 };
108
109 @@ -2217,12 +2233,6 @@ platforms are moved over to use the flat
110 EMAC, that is the content of the current (bogus) "phy-port"
111 property.
112
113 - Recommended properties:
114 - - linux,network-index : This is the intended "index" of this
115 - network device. This is used by the bootwrapper to interpret
116 - MAC addresses passed by the firmware when no information other
117 - than indices is available to associate an address with a device.
118 -
119 Optional properties:
120 - phy-address : 1 cell, optional, MDIO address of the PHY. If absent,
121 a search is performed.
122 @@ -2246,7 +2256,6 @@ platforms are moved over to use the flat
123 Example:
124
125 EMAC0: ethernet@40000800 {
126 - linux,network-index = <0>;
127 device_type = "network";
128 compatible = "ibm,emac-440gp", "ibm,emac";
129 interrupt-parent = <&UIC1>;
130 @@ -2817,9 +2826,528 @@ platforms are moved over to use the flat
131 };
132
133
134 - More devices will be defined as this spec matures.
135 +VII - Marvell Discovery mv64[345]6x System Controller chips
136 +===========================================================
137 +
138 +The Marvell mv64[345]60 series of system controller chips contain
139 +many of the peripherals needed to implement a complete computer
140 +system. In this section, we define device tree nodes to describe
141 +the system controller chip itself and each of the peripherals
142 +which it contains. Compatible string values for each node are
143 +prefixed with the string "marvell,", for Marvell Technology Group Ltd.
144 +
145 +1) The /system-controller node
146 +
147 + This node is used to represent the system-controller and must be
148 + present when the system uses a system contller chip. The top-level
149 + system-controller node contains information that is global to all
150 + devices within the system controller chip. The node name begins
151 + with "system-controller" followed by the unit address, which is
152 + the base address of the memory-mapped register set for the system
153 + controller chip.
154 +
155 + Required properties:
156 +
157 + - ranges : Describes the translation of system controller addresses
158 + for memory mapped registers.
159 + - clock-frequency: Contains the main clock frequency for the system
160 + controller chip.
161 + - reg : This property defines the address and size of the
162 + memory-mapped registers contained within the system controller
163 + chip. The address specified in the "reg" property should match
164 + the unit address of the system-controller node.
165 + - #address-cells : Address representation for system controller
166 + devices. This field represents the number of cells needed to
167 + represent the address of the memory-mapped registers of devices
168 + within the system controller chip.
169 + - #size-cells : Size representation for for the memory-mapped
170 + registers within the system controller chip.
171 + - #interrupt-cells : Defines the width of cells used to represent
172 + interrupts.
173 +
174 + Optional properties:
175 +
176 + - model : The specific model of the system controller chip. Such
177 + as, "mv64360", "mv64460", or "mv64560".
178 + - compatible : A string identifying the compatibility identifiers
179 + of the system controller chip.
180 +
181 + The system-controller node contains child nodes for each system
182 + controller device that the platform uses. Nodes should not be created
183 + for devices which exist on the system controller chip but are not used
184 +
185 + Example Marvell Discovery mv64360 system-controller node:
186 +
187 + system-controller@f1000000 { /* Marvell Discovery mv64360 */
188 + #address-cells = <1>;
189 + #size-cells = <1>;
190 + model = "mv64360"; /* Default */
191 + compatible = "marvell,mv64360";
192 + clock-frequency = <133333333>;
193 + reg = <0xf1000000 0x10000>;
194 + virtual-reg = <0xf1000000>;
195 + ranges = <0x88000000 0x88000000 0x1000000 /* PCI 0 I/O Space */
196 + 0x80000000 0x80000000 0x8000000 /* PCI 0 MEM Space */
197 + 0xa0000000 0xa0000000 0x4000000 /* User FLASH */
198 + 0x00000000 0xf1000000 0x0010000 /* Bridge's regs */
199 + 0xf2000000 0xf2000000 0x0040000>;/* Integrated SRAM */
200 +
201 + [ child node definitions... ]
202 + }
203 +
204 +2) Child nodes of /system-controller
205 +
206 + a) Marvell Discovery MDIO bus
207 +
208 + The MDIO is a bus to which the PHY devices are connected. For each
209 + device that exists on this bus, a child node should be created. See
210 + the definition of the PHY node below for an example of how to define
211 + a PHY.
212 +
213 + Required properties:
214 + - #address-cells : Should be <1>
215 + - #size-cells : Should be <0>
216 + - device_type : Should be "mdio"
217 + - compatible : Should be "marvell,mv64360-mdio"
218 +
219 + Example:
220 +
221 + mdio {
222 + #address-cells = <1>;
223 + #size-cells = <0>;
224 + device_type = "mdio";
225 + compatible = "marvell,mv64360-mdio";
226 +
227 + ethernet-phy@0 {
228 + ......
229 + };
230 + };
231 +
232 +
233 + b) Marvell Discovery ethernet controller
234 +
235 + The Discover ethernet controller is described with two levels
236 + of nodes. The first level describes an ethernet silicon block
237 + and the second level describes up to 3 ethernet nodes within
238 + that block. The reason for the multiple levels is that the
239 + registers for the node are interleaved within a single set
240 + of registers. The "ethernet-block" level describes the
241 + shared register set, and the "ethernet" nodes describe ethernet
242 + port-specific properties.
243 +
244 + Ethernet block node
245 +
246 + Required properties:
247 + - #address-cells : <1>
248 + - #size-cells : <0>
249 + - compatible : "marvell,mv64360-eth-block"
250 + - reg : Offset and length of the register set for this block
251 +
252 + Example Discovery Ethernet block node:
253 + ethernet-block@2000 {
254 + #address-cells = <1>;
255 + #size-cells = <0>;
256 + compatible = "marvell,mv64360-eth-block";
257 + reg = <0x2000 0x2000>;
258 + ethernet@0 {
259 + .......
260 + };
261 + };
262 +
263 + Ethernet port node
264 +
265 + Required properties:
266 + - device_type : Should be "network".
267 + - compatible : Should be "marvell,mv64360-eth".
268 + - reg : Should be <0>, <1>, or <2>, according to which registers
269 + within the silicon block the device uses.
270 + - interrupts : <a> where a is the interrupt number for the port.
271 + - interrupt-parent : the phandle for the interrupt controller
272 + that services interrupts for this device.
273 + - phy : the phandle for the PHY connected to this ethernet
274 + controller.
275 + - local-mac-address : 6 bytes, MAC address
276 +
277 + Example Discovery Ethernet port node:
278 + ethernet@0 {
279 + device_type = "network";
280 + compatible = "marvell,mv64360-eth";
281 + reg = <0>;
282 + interrupts = <32>;
283 + interrupt-parent = <&PIC>;
284 + phy = <&PHY0>;
285 + local-mac-address = [ 00 00 00 00 00 00 ];
286 + };
287 +
288 +
289 +
290 + c) Marvell Discovery PHY nodes
291 +
292 + Required properties:
293 + - device_type : Should be "ethernet-phy"
294 + - interrupts : <a> where a is the interrupt number for this phy.
295 + - interrupt-parent : the phandle for the interrupt controller that
296 + services interrupts for this device.
297 + - reg : The ID number for the phy, usually a small integer
298 +
299 + Example Discovery PHY node:
300 + ethernet-phy@1 {
301 + device_type = "ethernet-phy";
302 + compatible = "broadcom,bcm5421";
303 + interrupts = <76>; /* GPP 12 */
304 + interrupt-parent = <&PIC>;
305 + reg = <1>;
306 + };
307 +
308 +
309 + d) Marvell Discovery SDMA nodes
310 +
311 + Represent DMA hardware associated with the MPSC (multiprotocol
312 + serial controllers).
313 +
314 + Required properties:
315 + - compatible : "marvell,mv64360-sdma"
316 + - reg : Offset and length of the register set for this device
317 + - interrupts : <a> where a is the interrupt number for the DMA
318 + device.
319 + - interrupt-parent : the phandle for the interrupt controller
320 + that services interrupts for this device.
321 +
322 + Example Discovery SDMA node:
323 + sdma@4000 {
324 + compatible = "marvell,mv64360-sdma";
325 + reg = <0x4000 0xc18>;
326 + virtual-reg = <0xf1004000>;
327 + interrupts = <36>;
328 + interrupt-parent = <&PIC>;
329 + };
330 +
331 +
332 + e) Marvell Discovery BRG nodes
333 +
334 + Represent baud rate generator hardware associated with the MPSC
335 + (multiprotocol serial controllers).
336 +
337 + Required properties:
338 + - compatible : "marvell,mv64360-brg"
339 + - reg : Offset and length of the register set for this device
340 + - clock-src : A value from 0 to 15 which selects the clock
341 + source for the baud rate generator. This value corresponds
342 + to the CLKS value in the BRGx configuration register. See
343 + the mv64x60 User's Manual.
344 + - clock-frequence : The frequency (in Hz) of the baud rate
345 + generator's input clock.
346 + - current-speed : The current speed setting (presumably by
347 + firmware) of the baud rate generator.
348 +
349 + Example Discovery BRG node:
350 + brg@b200 {
351 + compatible = "marvell,mv64360-brg";
352 + reg = <0xb200 0x8>;
353 + clock-src = <8>;
354 + clock-frequency = <133333333>;
355 + current-speed = <9600>;
356 + };
357 +
358 +
359 + f) Marvell Discovery CUNIT nodes
360 +
361 + Represent the Serial Communications Unit device hardware.
362 +
363 + Required properties:
364 + - reg : Offset and length of the register set for this device
365 +
366 + Example Discovery CUNIT node:
367 + cunit@f200 {
368 + reg = <0xf200 0x200>;
369 + };
370 +
371 +
372 + g) Marvell Discovery MPSCROUTING nodes
373 +
374 + Represent the Discovery's MPSC routing hardware
375 +
376 + Required properties:
377 + - reg : Offset and length of the register set for this device
378 +
379 + Example Discovery CUNIT node:
380 + mpscrouting@b500 {
381 + reg = <0xb400 0xc>;
382 + };
383 +
384 +
385 + h) Marvell Discovery MPSCINTR nodes
386 +
387 + Represent the Discovery's MPSC DMA interrupt hardware registers
388 + (SDMA cause and mask registers).
389 +
390 + Required properties:
391 + - reg : Offset and length of the register set for this device
392 +
393 + Example Discovery MPSCINTR node:
394 + mpsintr@b800 {
395 + reg = <0xb800 0x100>;
396 + };
397 +
398 +
399 + i) Marvell Discovery MPSC nodes
400 +
401 + Represent the Discovery's MPSC (Multiprotocol Serial Controller)
402 + serial port.
403 +
404 + Required properties:
405 + - device_type : "serial"
406 + - compatible : "marvell,mv64360-mpsc"
407 + - reg : Offset and length of the register set for this device
408 + - sdma : the phandle for the SDMA node used by this port
409 + - brg : the phandle for the BRG node used by this port
410 + - cunit : the phandle for the CUNIT node used by this port
411 + - mpscrouting : the phandle for the MPSCROUTING node used by this port
412 + - mpscintr : the phandle for the MPSCINTR node used by this port
413 + - cell-index : the hardware index of this cell in the MPSC core
414 + - max_idle : value needed for MPSC CHR3 (Maximum Frame Length)
415 + register
416 + - interrupts : <a> where a is the interrupt number for the MPSC.
417 + - interrupt-parent : the phandle for the interrupt controller
418 + that services interrupts for this device.
419 +
420 + Example Discovery MPSCINTR node:
421 + mpsc@8000 {
422 + device_type = "serial";
423 + compatible = "marvell,mv64360-mpsc";
424 + reg = <0x8000 0x38>;
425 + virtual-reg = <0xf1008000>;
426 + sdma = <&SDMA0>;
427 + brg = <&BRG0>;
428 + cunit = <&CUNIT>;
429 + mpscrouting = <&MPSCROUTING>;
430 + mpscintr = <&MPSCINTR>;
431 + cell-index = <0>;
432 + max_idle = <40>;
433 + interrupts = <40>;
434 + interrupt-parent = <&PIC>;
435 + };
436 +
437
438 -VII - Specifying interrupt information for devices
439 + j) Marvell Discovery Watch Dog Timer nodes
440 +
441 + Represent the Discovery's watchdog timer hardware
442 +
443 + Required properties:
444 + - compatible : "marvell,mv64360-wdt"
445 + - reg : Offset and length of the register set for this device
446 +
447 + Example Discovery Watch Dog Timer node:
448 + wdt@b410 {
449 + compatible = "marvell,mv64360-wdt";
450 + reg = <0xb410 0x8>;
451 + };
452 +
453 +
454 + k) Marvell Discovery I2C nodes
455 +
456 + Represent the Discovery's I2C hardware
457 +
458 + Required properties:
459 + - device_type : "i2c"
460 + - compatible : "marvell,mv64360-i2c"
461 + - reg : Offset and length of the register set for this device
462 + - interrupts : <a> where a is the interrupt number for the I2C.
463 + - interrupt-parent : the phandle for the interrupt controller
464 + that services interrupts for this device.
465 +
466 + Example Discovery I2C node:
467 + compatible = "marvell,mv64360-i2c";
468 + reg = <0xc000 0x20>;
469 + virtual-reg = <0xf100c000>;
470 + interrupts = <37>;
471 + interrupt-parent = <&PIC>;
472 + };
473 +
474 +
475 + l) Marvell Discovery PIC (Programmable Interrupt Controller) nodes
476 +
477 + Represent the Discovery's PIC hardware
478 +
479 + Required properties:
480 + - #interrupt-cells : <1>
481 + - #address-cells : <0>
482 + - compatible : "marvell,mv64360-pic"
483 + - reg : Offset and length of the register set for this device
484 + - interrupt-controller
485 +
486 + Example Discovery PIC node:
487 + pic {
488 + #interrupt-cells = <1>;
489 + #address-cells = <0>;
490 + compatible = "marvell,mv64360-pic";
491 + reg = <0x0 0x88>;
492 + interrupt-controller;
493 + };
494 +
495 +
496 + m) Marvell Discovery MPP (Multipurpose Pins) multiplexing nodes
497 +
498 + Represent the Discovery's MPP hardware
499 +
500 + Required properties:
501 + - compatible : "marvell,mv64360-mpp"
502 + - reg : Offset and length of the register set for this device
503 +
504 + Example Discovery MPP node:
505 + mpp@f000 {
506 + compatible = "marvell,mv64360-mpp";
507 + reg = <0xf000 0x10>;
508 + };
509 +
510 +
511 + n) Marvell Discovery GPP (General Purpose Pins) nodes
512 +
513 + Represent the Discovery's GPP hardware
514 +
515 + Required properties:
516 + - compatible : "marvell,mv64360-gpp"
517 + - reg : Offset and length of the register set for this device
518 +
519 + Example Discovery GPP node:
520 + gpp@f000 {
521 + compatible = "marvell,mv64360-gpp";
522 + reg = <0xf100 0x20>;
523 + };
524 +
525 +
526 + o) Marvell Discovery PCI host bridge node
527 +
528 + Represents the Discovery's PCI host bridge device. The properties
529 + for this node conform to Rev 2.1 of the PCI Bus Binding to IEEE
530 + 1275-1994. A typical value for the compatible property is
531 + "marvell,mv64360-pci".
532 +
533 + Example Discovery PCI host bridge node
534 + pci@80000000 {
535 + #address-cells = <3>;
536 + #size-cells = <2>;
537 + #interrupt-cells = <1>;
538 + device_type = "pci";
539 + compatible = "marvell,mv64360-pci";
540 + reg = <0xcf8 0x8>;
541 + ranges = <0x01000000 0x0 0x0
542 + 0x88000000 0x0 0x01000000
543 + 0x02000000 0x0 0x80000000
544 + 0x80000000 0x0 0x08000000>;
545 + bus-range = <0 255>;
546 + clock-frequency = <66000000>;
547 + interrupt-parent = <&PIC>;
548 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
549 + interrupt-map = <
550 + /* IDSEL 0x0a */
551 + 0x5000 0 0 1 &PIC 80
552 + 0x5000 0 0 2 &PIC 81
553 + 0x5000 0 0 3 &PIC 91
554 + 0x5000 0 0 4 &PIC 93
555 +
556 + /* IDSEL 0x0b */
557 + 0x5800 0 0 1 &PIC 91
558 + 0x5800 0 0 2 &PIC 93
559 + 0x5800 0 0 3 &PIC 80
560 + 0x5800 0 0 4 &PIC 81
561 +
562 + /* IDSEL 0x0c */
563 + 0x6000 0 0 1 &PIC 91
564 + 0x6000 0 0 2 &PIC 93
565 + 0x6000 0 0 3 &PIC 80
566 + 0x6000 0 0 4 &PIC 81
567 +
568 + /* IDSEL 0x0d */
569 + 0x6800 0 0 1 &PIC 93
570 + 0x6800 0 0 2 &PIC 80
571 + 0x6800 0 0 3 &PIC 81
572 + 0x6800 0 0 4 &PIC 91
573 + >;
574 + };
575 +
576 +
577 + p) Marvell Discovery CPU Error nodes
578 +
579 + Represent the Discovery's CPU error handler device.
580 +
581 + Required properties:
582 + - compatible : "marvell,mv64360-cpu-error"
583 + - reg : Offset and length of the register set for this device
584 + - interrupts : the interrupt number for this device
585 + - interrupt-parent : the phandle for the interrupt controller
586 + that services interrupts for this device.
587 +
588 + Example Discovery CPU Error node:
589 + cpu-error@0070 {
590 + compatible = "marvell,mv64360-cpu-error";
591 + reg = <0x70 0x10 0x128 0x28>;
592 + interrupts = <3>;
593 + interrupt-parent = <&PIC>;
594 + };
595 +
596 +
597 + q) Marvell Discovery SRAM Controller nodes
598 +
599 + Represent the Discovery's SRAM controller device.
600 +
601 + Required properties:
602 + - compatible : "marvell,mv64360-sram-ctrl"
603 + - reg : Offset and length of the register set for this device
604 + - interrupts : the interrupt number for this device
605 + - interrupt-parent : the phandle for the interrupt controller
606 + that services interrupts for this device.
607 +
608 + Example Discovery SRAM Controller node:
609 + sram-ctrl@0380 {
610 + compatible = "marvell,mv64360-sram-ctrl";
611 + reg = <0x380 0x80>;
612 + interrupts = <13>;
613 + interrupt-parent = <&PIC>;
614 + };
615 +
616 +
617 + r) Marvell Discovery PCI Error Handler nodes
618 +
619 + Represent the Discovery's PCI error handler device.
620 +
621 + Required properties:
622 + - compatible : "marvell,mv64360-pci-error"
623 + - reg : Offset and length of the register set for this device
624 + - interrupts : the interrupt number for this device
625 + - interrupt-parent : the phandle for the interrupt controller
626 + that services interrupts for this device.
627 +
628 + Example Discovery PCI Error Handler node:
629 + pci-error@1d40 {
630 + compatible = "marvell,mv64360-pci-error";
631 + reg = <0x1d40 0x40 0xc28 0x4>;
632 + interrupts = <12>;
633 + interrupt-parent = <&PIC>;
634 + };
635 +
636 +
637 + s) Marvell Discovery Memory Controller nodes
638 +
639 + Represent the Discovery's memory controller device.
640 +
641 + Required properties:
642 + - compatible : "marvell,mv64360-mem-ctrl"
643 + - reg : Offset and length of the register set for this device
644 + - interrupts : the interrupt number for this device
645 + - interrupt-parent : the phandle for the interrupt controller
646 + that services interrupts for this device.
647 +
648 + Example Discovery Memory Controller node:
649 + mem-ctrl@1400 {
650 + compatible = "marvell,mv64360-mem-ctrl";
651 + reg = <0x1400 0x60>;
652 + interrupts = <17>;
653 + interrupt-parent = <&PIC>;
654 + };
655 +
656 +
657 +VIII - Specifying interrupt information for devices
658 ===================================================
659
660 The device tree represents the busses and devices of a hardware
661 @@ -2905,6 +3433,54 @@ encodings listed below:
662 2 = high to low edge sensitive type enabled
663 3 = low to high edge sensitive type enabled
664
665 +VIII - Specifying GPIO information for devices
666 +==============================================
667 +
668 +1) gpios property
669 +-----------------
670 +
671 +Nodes that makes use of GPIOs should define them using `gpios' property,
672 +format of which is: <&gpio-controller1-phandle gpio1-specifier
673 + &gpio-controller2-phandle gpio2-specifier
674 + 0 /* holes are permitted, means no GPIO 3 */
675 + &gpio-controller4-phandle gpio4-specifier
676 + ...>;
677 +
678 +Note that gpio-specifier length is controller dependent.
679 +
680 +gpio-specifier may encode: bank, pin position inside the bank,
681 +whether pin is open-drain and whether pin is logically inverted.
682 +
683 +Example of the node using GPIOs:
684 +
685 + node {
686 + gpios = <&qe_pio_e 18 0>;
687 + };
688 +
689 +In this example gpio-specifier is "18 0" and encodes GPIO pin number,
690 +and empty GPIO flags as accepted by the "qe_pio_e" gpio-controller.
691 +
692 +2) gpio-controller nodes
693 +------------------------
694 +
695 +Every GPIO controller node must have #gpio-cells property defined,
696 +this information will be used to translate gpio-specifiers.
697 +
698 +Example of two SOC GPIO banks defined as gpio-controller nodes:
699 +
700 + qe_pio_a: gpio-controller@1400 {
701 + #gpio-cells = <2>;
702 + compatible = "fsl,qe-pario-bank-a", "fsl,qe-pario-bank";
703 + reg = <0x1400 0x18>;
704 + gpio-controller;
705 + };
706 +
707 + qe_pio_e: gpio-controller@1460 {
708 + #gpio-cells = <2>;
709 + compatible = "fsl,qe-pario-bank-e", "fsl,qe-pario-bank";
710 + reg = <0x1460 0x18>;
711 + gpio-controller;
712 + };
713
714 Appendix A - Sample SOC node for MPC8540
715 ========================================
716 Index: linux-2.6.25.4/Documentation/powerpc/phyp-assisted-dump.txt
717 ===================================================================
718 --- /dev/null
719 +++ linux-2.6.25.4/Documentation/powerpc/phyp-assisted-dump.txt
720 @@ -0,0 +1,127 @@
721 +
722 + Hypervisor-Assisted Dump
723 + ------------------------
724 + November 2007
725 +
726 +The goal of hypervisor-assisted dump is to enable the dump of
727 +a crashed system, and to do so from a fully-reset system, and
728 +to minimize the total elapsed time until the system is back
729 +in production use.
730 +
731 +As compared to kdump or other strategies, hypervisor-assisted
732 +dump offers several strong, practical advantages:
733 +
734 +-- Unlike kdump, the system has been reset, and loaded
735 + with a fresh copy of the kernel. In particular,
736 + PCI and I/O devices have been reinitialized and are
737 + in a clean, consistent state.
738 +-- As the dump is performed, the dumped memory becomes
739 + immediately available to the system for normal use.
740 +-- After the dump is completed, no further reboots are
741 + required; the system will be fully usable, and running
742 + in it's normal, production mode on it normal kernel.
743 +
744 +The above can only be accomplished by coordination with,
745 +and assistance from the hypervisor. The procedure is
746 +as follows:
747 +
748 +-- When a system crashes, the hypervisor will save
749 + the low 256MB of RAM to a previously registered
750 + save region. It will also save system state, system
751 + registers, and hardware PTE's.
752 +
753 +-- After the low 256MB area has been saved, the
754 + hypervisor will reset PCI and other hardware state.
755 + It will *not* clear RAM. It will then launch the
756 + bootloader, as normal.
757 +
758 +-- The freshly booted kernel will notice that there
759 + is a new node (ibm,dump-kernel) in the device tree,
760 + indicating that there is crash data available from
761 + a previous boot. It will boot into only 256MB of RAM,
762 + reserving the rest of system memory.
763 +
764 +-- Userspace tools will parse /sys/kernel/release_region
765 + and read /proc/vmcore to obtain the contents of memory,
766 + which holds the previous crashed kernel. The userspace
767 + tools may copy this info to disk, or network, nas, san,
768 + iscsi, etc. as desired.
769 +
770 + For Example: the values in /sys/kernel/release-region
771 + would look something like this (address-range pairs).
772 + CPU:0x177fee000-0x10000: HPTE:0x177ffe020-0x1000: /
773 + DUMP:0x177fff020-0x10000000, 0x10000000-0x16F1D370A
774 +
775 +-- As the userspace tools complete saving a portion of
776 + dump, they echo an offset and size to
777 + /sys/kernel/release_region to release the reserved
778 + memory back to general use.
779 +
780 + An example of this is:
781 + "echo 0x40000000 0x10000000 > /sys/kernel/release_region"
782 + which will release 256MB at the 1GB boundary.
783 +
784 +Please note that the hypervisor-assisted dump feature
785 +is only available on Power6-based systems with recent
786 +firmware versions.
787 +
788 +Implementation details:
789 +----------------------
790 +
791 +During boot, a check is made to see if firmware supports
792 +this feature on this particular machine. If it does, then
793 +we check to see if a active dump is waiting for us. If yes
794 +then everything but 256 MB of RAM is reserved during early
795 +boot. This area is released once we collect a dump from user
796 +land scripts that are run. If there is dump data, then
797 +the /sys/kernel/release_region file is created, and
798 +the reserved memory is held.
799 +
800 +If there is no waiting dump data, then only the highest
801 +256MB of the ram is reserved as a scratch area. This area
802 +is *not* released: this region will be kept permanently
803 +reserved, so that it can act as a receptacle for a copy
804 +of the low 256MB in the case a crash does occur. See,
805 +however, "open issues" below, as to whether
806 +such a reserved region is really needed.
807 +
808 +Currently the dump will be copied from /proc/vmcore to a
809 +a new file upon user intervention. The starting address
810 +to be read and the range for each data point in provided
811 +in /sys/kernel/release_region.
812 +
813 +The tools to examine the dump will be same as the ones
814 +used for kdump.
815 +
816 +General notes:
817 +--------------
818 +Security: please note that there are potential security issues
819 +with any sort of dump mechanism. In particular, plaintext
820 +(unencrypted) data, and possibly passwords, may be present in
821 +the dump data. Userspace tools must take adequate precautions to
822 +preserve security.
823 +
824 +Open issues/ToDo:
825 +------------
826 + o The various code paths that tell the hypervisor that a crash
827 + occurred, vs. it simply being a normal reboot, should be
828 + reviewed, and possibly clarified/fixed.
829 +
830 + o Instead of using /sys/kernel, should there be a /sys/dump
831 + instead? There is a dump_subsys being created by the s390 code,
832 + perhaps the pseries code should use a similar layout as well.
833 +
834 + o Is reserving a 256MB region really required? The goal of
835 + reserving a 256MB scratch area is to make sure that no
836 + important crash data is clobbered when the hypervisor
837 + save low mem to the scratch area. But, if one could assure
838 + that nothing important is located in some 256MB area, then
839 + it would not need to be reserved. Something that can be
840 + improved in subsequent versions.
841 +
842 + o Still working the kdump team to integrate this with kdump,
843 + some work remains but this would not affect the current
844 + patches.
845 +
846 + o Still need to write a shell script, to copy the dump away.
847 + Currently I am parsing it manually.
848 Index: linux-2.6.25.4/arch/powerpc/Kconfig
849 ===================================================================
850 --- linux-2.6.25.4.orig/arch/powerpc/Kconfig
851 +++ linux-2.6.25.4/arch/powerpc/Kconfig
852 @@ -49,6 +49,19 @@ config IRQ_PER_CPU
853 bool
854 default y
855
856 +config STACKTRACE_SUPPORT
857 + bool
858 + default y
859 +
860 +config TRACE_IRQFLAGS_SUPPORT
861 + bool
862 + depends on PPC64
863 + default y
864 +
865 +config LOCKDEP_SUPPORT
866 + bool
867 + default y
868 +
869 config RWSEM_GENERIC_SPINLOCK
870 bool
871
872 @@ -81,6 +94,11 @@ config GENERIC_FIND_NEXT_BIT
873 bool
874 default y
875
876 +config GENERIC_GPIO
877 + bool
878 + help
879 + Generic GPIO API support
880 +
881 config ARCH_NO_VIRT_TO_BUS
882 def_bool PPC64
883
884 @@ -91,6 +109,7 @@ config PPC
885 select HAVE_OPROFILE
886 select HAVE_KPROBES
887 select HAVE_KRETPROBES
888 + select HAVE_LMB
889
890 config EARLY_PRINTK
891 bool
892 @@ -210,15 +229,6 @@ source kernel/Kconfig.hz
893 source kernel/Kconfig.preempt
894 source "fs/Kconfig.binfmt"
895
896 -# We optimistically allocate largepages from the VM, so make the limit
897 -# large enough (16MB). This badly named config option is actually
898 -# max order + 1
899 -config FORCE_MAX_ZONEORDER
900 - int
901 - depends on PPC64
902 - default "9" if PPC_64K_PAGES
903 - default "13"
904 -
905 config HUGETLB_PAGE_SIZE_VARIABLE
906 bool
907 depends on HUGETLB_PAGE
908 @@ -307,6 +317,16 @@ config CRASH_DUMP
909
910 Don't change this unless you know what you are doing.
911
912 +config PHYP_DUMP
913 + bool "Hypervisor-assisted dump (EXPERIMENTAL)"
914 + depends on PPC_PSERIES && EXPERIMENTAL
915 + help
916 + Hypervisor-assisted dump is meant to be a kdump replacement
917 + offering robustness and speed not possible without system
918 + hypervisor assistence.
919 +
920 + If unsure, say "N"
921 +
922 config PPCBUG_NVRAM
923 bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
924 default y if PPC_PREP
925 @@ -381,6 +401,26 @@ config PPC_64K_PAGES
926 while on hardware with such support, it will be used to map
927 normal application pages.
928
929 +config FORCE_MAX_ZONEORDER
930 + int "Maximum zone order"
931 + default "9" if PPC_64K_PAGES
932 + default "13" if PPC64 && !PPC_64K_PAGES
933 + default "11"
934 + help
935 + The kernel memory allocator divides physically contiguous memory
936 + blocks into "zones", where each zone is a power of two number of
937 + pages. This option selects the largest power of two that the kernel
938 + keeps in the memory allocator. If you need to allocate very large
939 + blocks of physically contiguous memory, then you may need to
940 + increase this value.
941 +
942 + This config option is actually maximum order plus one. For example,
943 + a value of 11 means that the largest free memory block is 2^10 pages.
944 +
945 + The page size is not necessarily 4KB. For example, on 64-bit
946 + systems, 64KB pages can be enabled via CONFIG_PPC_64K_PAGES. Keep
947 + this in mind when choosing a value for this option.
948 +
949 config PPC_SUBPAGE_PROT
950 bool "Support setting protections for 4k subpages"
951 depends on PPC_64K_PAGES
952 @@ -490,6 +530,14 @@ config FSL_PCI
953 bool
954 select PPC_INDIRECT_PCI
955
956 +config 4xx_SOC
957 + bool
958 +
959 +config FSL_LBC
960 + bool
961 + help
962 + Freescale Localbus support
963 +
964 # Yes MCA RS/6000s exist but Linux-PPC does not currently support any
965 config MCA
966 bool
967 @@ -663,22 +711,6 @@ config CONSISTENT_SIZE
968 hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
969 default "0x00200000" if NOT_COHERENT_CACHE
970
971 -config BOOT_LOAD_BOOL
972 - bool "Set the boot link/load address"
973 - depends on ADVANCED_OPTIONS && !PPC_MULTIPLATFORM
974 - help
975 - This option allows you to set the initial load address of the zImage
976 - or zImage.initrd file. This can be useful if you are on a board
977 - which has a small amount of memory.
978 -
979 - Say N here unless you know what you are doing.
980 -
981 -config BOOT_LOAD
982 - hex "Link/load address for booting" if BOOT_LOAD_BOOL
983 - default "0x00400000" if 40x || 8xx || 8260
984 - default "0x01000000" if 44x
985 - default "0x00800000"
986 -
987 config PIN_TLB
988 bool "Pinned Kernel TLBs (860 ONLY)"
989 depends on ADVANCED_OPTIONS && 8xx
990 Index: linux-2.6.25.4/arch/powerpc/Kconfig.debug
991 ===================================================================
992 --- linux-2.6.25.4.orig/arch/powerpc/Kconfig.debug
993 +++ linux-2.6.25.4/arch/powerpc/Kconfig.debug
994 @@ -269,7 +269,7 @@ config PPC_EARLY_DEBUG_CPM_ADDR
995 hex "CPM UART early debug transmit descriptor address"
996 depends on PPC_EARLY_DEBUG_CPM
997 default "0xfa202008" if PPC_EP88XC
998 - default "0xf0000008" if CPM2
999 + default "0xf0001ff8" if CPM2
1000 default "0xff002008" if CPM1
1001 help
1002 This specifies the address of the transmit descriptor
1003 Index: linux-2.6.25.4/arch/powerpc/Makefile
1004 ===================================================================
1005 --- linux-2.6.25.4.orig/arch/powerpc/Makefile
1006 +++ linux-2.6.25.4/arch/powerpc/Makefile
1007 @@ -71,13 +71,11 @@ endif
1008
1009 LDFLAGS_vmlinux := -Bstatic
1010
1011 -CPPFLAGS-$(CONFIG_PPC32) := -Iarch/$(ARCH)
1012 -AFLAGS-$(CONFIG_PPC32) := -Iarch/$(ARCH)
1013 CFLAGS-$(CONFIG_PPC64) := -mminimal-toc -mtraceback=none -mcall-aixdesc
1014 -CFLAGS-$(CONFIG_PPC32) := -Iarch/$(ARCH) -ffixed-r2 -mmultiple
1015 -KBUILD_CPPFLAGS += $(CPPFLAGS-y)
1016 -KBUILD_AFLAGS += $(AFLAGS-y)
1017 -KBUILD_CFLAGS += -msoft-float -pipe $(CFLAGS-y)
1018 +CFLAGS-$(CONFIG_PPC32) := -ffixed-r2 -mmultiple
1019 +KBUILD_CPPFLAGS += -Iarch/$(ARCH)
1020 +KBUILD_AFLAGS += -Iarch/$(ARCH)
1021 +KBUILD_CFLAGS += -msoft-float -pipe -Iarch/$(ARCH) $(CFLAGS-y)
1022 CPP = $(CC) -E $(KBUILD_CFLAGS)
1023
1024 CHECKFLAGS += -m$(CONFIG_WORD_SIZE) -D__powerpc__ -D__powerpc$(CONFIG_WORD_SIZE)__
1025 @@ -164,7 +162,7 @@ boot := arch/$(ARCH)/boot
1026 $(BOOT_TARGETS): vmlinux
1027 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
1028
1029 -bootwrapper_install:
1030 +bootwrapper_install %.dtb:
1031 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
1032
1033 define archhelp
1034 Index: linux-2.6.25.4/arch/powerpc/boot/Makefile
1035 ===================================================================
1036 --- linux-2.6.25.4.orig/arch/powerpc/boot/Makefile
1037 +++ linux-2.6.25.4/arch/powerpc/boot/Makefile
1038 @@ -40,6 +40,7 @@ $(obj)/ebony.o: BOOTCFLAGS += -mcpu=405
1039 $(obj)/cuboot-taishan.o: BOOTCFLAGS += -mcpu=405
1040 $(obj)/cuboot-katmai.o: BOOTCFLAGS += -mcpu=405
1041 $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405
1042 +$(obj)/virtex405-head.o: BOOTCFLAGS += -mcpu=405
1043
1044
1045 zlib := inffast.c inflate.c inftrees.c
1046 @@ -64,7 +65,8 @@ src-plat := of.c cuboot-52xx.c cuboot-82
1047 cuboot-bamboo.c cuboot-mpc7448hpc2.c cuboot-taishan.c \
1048 fixed-head.S ep88xc.c ep405.c \
1049 cuboot-katmai.c cuboot-rainier.c redboot-8xx.c ep8248e.c \
1050 - cuboot-warp.c cuboot-85xx-cpm2.c
1051 + cuboot-warp.c cuboot-85xx-cpm2.c cuboot-yosemite.c simpleboot.c \
1052 + virtex405-head.S
1053 src-boot := $(src-wlib) $(src-plat) empty.c
1054
1055 src-boot := $(addprefix $(obj)/, $(src-boot))
1056 @@ -192,7 +194,7 @@ image-$(CONFIG_PPC_CHRP) += zImage.chrp
1057 image-$(CONFIG_PPC_EFIKA) += zImage.chrp
1058 image-$(CONFIG_PPC_PMAC) += zImage.pmac
1059 image-$(CONFIG_PPC_HOLLY) += zImage.holly
1060 -image-$(CONFIG_PPC_PRPMC2800) += zImage.prpmc2800
1061 +image-$(CONFIG_PPC_PRPMC2800) += dtbImage.prpmc2800
1062 image-$(CONFIG_PPC_ISERIES) += zImage.iseries
1063 image-$(CONFIG_DEFAULT_UIMAGE) += uImage
1064
1065 @@ -216,6 +218,7 @@ image-$(CONFIG_RAINIER) += cuImage.rai
1066 image-$(CONFIG_TAISHAN) += cuImage.taishan
1067 image-$(CONFIG_KATMAI) += cuImage.katmai
1068 image-$(CONFIG_WARP) += cuImage.warp
1069 +image-$(CONFIG_YOSEMITE) += cuImage.yosemite
1070
1071 # Board ports in arch/powerpc/platform/8xx/Kconfig
1072 image-$(CONFIG_PPC_MPC86XADS) += cuImage.mpc866ads
1073 @@ -255,6 +258,7 @@ image-$(CONFIG_TQM8555) += cuImage.tqm
1074 image-$(CONFIG_TQM8560) += cuImage.tqm8560
1075 image-$(CONFIG_SBC8548) += cuImage.sbc8548
1076 image-$(CONFIG_SBC8560) += cuImage.sbc8560
1077 +image-$(CONFIG_KSI8560) += cuImage.ksi8560
1078
1079 # Board ports in arch/powerpc/platform/embedded6xx/Kconfig
1080 image-$(CONFIG_STORCENTER) += cuImage.storcenter
1081 @@ -285,11 +289,11 @@ $(obj)/zImage.%: vmlinux $(wrapperbits)
1082 $(call if_changed,wrap,$*)
1083
1084 # dtbImage% - a dtbImage is a zImage with an embedded device tree blob
1085 -$(obj)/dtbImage.initrd.%: vmlinux $(wrapperbits) $(dtstree)/%.dts
1086 - $(call if_changed,wrap,$*,$(dtstree)/$*.dts,,$(obj)/ramdisk.image.gz)
1087 +$(obj)/dtbImage.initrd.%: vmlinux $(wrapperbits) $(obj)/%.dtb
1088 + $(call if_changed,wrap,$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz)
1089
1090 -$(obj)/dtbImage.%: vmlinux $(wrapperbits) $(dtstree)/%.dts
1091 - $(call if_changed,wrap,$*,$(dtstree)/$*.dts)
1092 +$(obj)/dtbImage.%: vmlinux $(wrapperbits) $(obj)/%.dtb
1093 + $(call if_changed,wrap,$*,,$(obj)/$*.dtb)
1094
1095 # This cannot be in the root of $(src) as the zImage rule always adds a $(obj)
1096 # prefix
1097 @@ -302,14 +306,24 @@ $(obj)/zImage.iseries: vmlinux
1098 $(obj)/uImage: vmlinux $(wrapperbits)
1099 $(call if_changed,wrap,uboot)
1100
1101 -$(obj)/cuImage.%: vmlinux $(dtstree)/%.dts $(wrapperbits)
1102 - $(call if_changed,wrap,cuboot-$*,$(dtstree)/$*.dts)
1103 +$(obj)/cuImage.%: vmlinux $(obj)/%.dtb $(wrapperbits)
1104 + $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb)
1105
1106 -$(obj)/treeImage.initrd.%: vmlinux $(dtstree)/%.dts $(wrapperbits)
1107 - $(call if_changed,wrap,treeboot-$*,$(dtstree)/$*.dts,,$(obj)/ramdisk.image.gz)
1108 +$(obj)/simpleImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits)
1109 + $(call if_changed,wrap,simpleboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz)
1110
1111 -$(obj)/treeImage.%: vmlinux $(dtstree)/%.dts $(wrapperbits)
1112 - $(call if_changed,wrap,treeboot-$*,$(dtstree)/$*.dts)
1113 +$(obj)/simpleImage.%: vmlinux $(obj)/%.dtb $(wrapperbits)
1114 + $(call if_changed,wrap,simpleboot-$*,,$(obj)/$*.dtb)
1115 +
1116 +$(obj)/treeImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits)
1117 + $(call if_changed,wrap,treeboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz)
1118 +
1119 +$(obj)/treeImage.%: vmlinux $(obj)/%.dtb $(wrapperbits)
1120 + $(call if_changed,wrap,treeboot-$*,,$(obj)/$*.dtb)
1121 +
1122 +# Rule to build device tree blobs
1123 +$(obj)/%.dtb: $(dtstree)/%.dts $(obj)/dtc
1124 + $(obj)/dtc -O dtb -o $(obj)/$*.dtb -b 0 $(DTS_FLAGS) $(dtstree)/$*.dts
1125
1126 # If there isn't a platform selected then just strip the vmlinux.
1127 ifeq (,$(image-y))
1128 @@ -326,7 +340,7 @@ install: $(CONFIGURE) $(addprefix $(obj)
1129
1130 # anything not in $(targets)
1131 clean-files += $(image-) $(initrd-) zImage zImage.initrd cuImage.* treeImage.* \
1132 - otheros.bld
1133 + otheros.bld *.dtb
1134
1135 # clean up files cached by wrapper
1136 clean-kernel := vmlinux.strip vmlinux.bin
1137 Index: linux-2.6.25.4/arch/powerpc/boot/bamboo.c
1138 ===================================================================
1139 --- linux-2.6.25.4.orig/arch/powerpc/boot/bamboo.c
1140 +++ linux-2.6.25.4/arch/powerpc/boot/bamboo.c
1141 @@ -33,7 +33,8 @@ static void bamboo_fixups(void)
1142 ibm440ep_fixup_clocks(sysclk, 11059200, 25000000);
1143 ibm4xx_sdram_fixup_memsize();
1144 ibm4xx_quiesce_eth((u32 *)0xef600e00, (u32 *)0xef600f00);
1145 - dt_fixup_mac_addresses(bamboo_mac0, bamboo_mac1);
1146 + dt_fixup_mac_address_by_alias("ethernet0", bamboo_mac0);
1147 + dt_fixup_mac_address_by_alias("ethernet1", bamboo_mac1);
1148 }
1149
1150 void bamboo_init(void *mac0, void *mac1)
1151 Index: linux-2.6.25.4/arch/powerpc/boot/cpm-serial.c
1152 ===================================================================
1153 --- linux-2.6.25.4.orig/arch/powerpc/boot/cpm-serial.c
1154 +++ linux-2.6.25.4/arch/powerpc/boot/cpm-serial.c
1155 @@ -11,6 +11,7 @@
1156 #include "types.h"
1157 #include "io.h"
1158 #include "ops.h"
1159 +#include "page.h"
1160
1161 struct cpm_scc {
1162 u32 gsmrl;
1163 @@ -42,6 +43,22 @@ struct cpm_param {
1164 u16 tbase;
1165 u8 rfcr;
1166 u8 tfcr;
1167 + u16 mrblr;
1168 + u32 rstate;
1169 + u8 res1[4];
1170 + u16 rbptr;
1171 + u8 res2[6];
1172 + u32 tstate;
1173 + u8 res3[4];
1174 + u16 tbptr;
1175 + u8 res4[6];
1176 + u16 maxidl;
1177 + u16 idlc;
1178 + u16 brkln;
1179 + u16 brkec;
1180 + u16 brkcr;
1181 + u16 rmask;
1182 + u8 res5[4];
1183 };
1184
1185 struct cpm_bd {
1186 @@ -54,10 +71,10 @@ static void *cpcr;
1187 static struct cpm_param *param;
1188 static struct cpm_smc *smc;
1189 static struct cpm_scc *scc;
1190 -struct cpm_bd *tbdf, *rbdf;
1191 +static struct cpm_bd *tbdf, *rbdf;
1192 static u32 cpm_cmd;
1193 -static u8 *muram_start;
1194 -static u32 muram_offset;
1195 +static void *cbd_addr;
1196 +static u32 cbd_offset;
1197
1198 static void (*do_cmd)(int op);
1199 static void (*enable_port)(void);
1200 @@ -119,20 +136,25 @@ static int cpm_serial_open(void)
1201
1202 out_8(&param->rfcr, 0x10);
1203 out_8(&param->tfcr, 0x10);
1204 + out_be16(&param->mrblr, 1);
1205 + out_be16(&param->maxidl, 0);
1206 + out_be16(&param->brkec, 0);
1207 + out_be16(&param->brkln, 0);
1208 + out_be16(&param->brkcr, 0);
1209
1210 - rbdf = (struct cpm_bd *)muram_start;
1211 - rbdf->addr = (u8 *)(rbdf + 2);
1212 + rbdf = cbd_addr;
1213 + rbdf->addr = (u8 *)rbdf - 1;
1214 rbdf->sc = 0xa000;
1215 rbdf->len = 1;
1216
1217 tbdf = rbdf + 1;
1218 - tbdf->addr = (u8 *)(rbdf + 2) + 1;
1219 + tbdf->addr = (u8 *)rbdf - 2;
1220 tbdf->sc = 0x2000;
1221 tbdf->len = 1;
1222
1223 sync();
1224 - out_be16(&param->rbase, muram_offset);
1225 - out_be16(&param->tbase, muram_offset + sizeof(struct cpm_bd));
1226 + out_be16(&param->rbase, cbd_offset);
1227 + out_be16(&param->tbase, cbd_offset + sizeof(struct cpm_bd));
1228
1229 do_cmd(CPM_CMD_INIT_RX_TX);
1230
1231 @@ -175,10 +197,12 @@ static unsigned char cpm_serial_getc(voi
1232
1233 int cpm_console_init(void *devp, struct serial_console_data *scdp)
1234 {
1235 - void *reg_virt[2];
1236 - int is_smc = 0, is_cpm2 = 0, n;
1237 - unsigned long reg_phys;
1238 + void *vreg[2];
1239 + u32 reg[2];
1240 + int is_smc = 0, is_cpm2 = 0;
1241 void *parent, *muram;
1242 + void *muram_addr;
1243 + unsigned long muram_offset, muram_size;
1244
1245 if (dt_is_compatible(devp, "fsl,cpm1-smc-uart")) {
1246 is_smc = 1;
1247 @@ -202,63 +226,64 @@ int cpm_console_init(void *devp, struct
1248 else
1249 do_cmd = cpm1_cmd;
1250
1251 - n = getprop(devp, "fsl,cpm-command", &cpm_cmd, 4);
1252 - if (n < 4)
1253 + if (getprop(devp, "fsl,cpm-command", &cpm_cmd, 4) < 4)
1254 return -1;
1255
1256 - n = getprop(devp, "virtual-reg", reg_virt, sizeof(reg_virt));
1257 - if (n < (int)sizeof(reg_virt)) {
1258 - for (n = 0; n < 2; n++) {
1259 - if (!dt_xlate_reg(devp, n, &reg_phys, NULL))
1260 - return -1;
1261 -
1262 - reg_virt[n] = (void *)reg_phys;
1263 - }
1264 - }
1265 + if (dt_get_virtual_reg(devp, vreg, 2) < 2)
1266 + return -1;
1267
1268 if (is_smc)
1269 - smc = reg_virt[0];
1270 + smc = vreg[0];
1271 else
1272 - scc = reg_virt[0];
1273 + scc = vreg[0];
1274
1275 - param = reg_virt[1];
1276 + param = vreg[1];
1277
1278 parent = get_parent(devp);
1279 if (!parent)
1280 return -1;
1281
1282 - n = getprop(parent, "virtual-reg", reg_virt, sizeof(reg_virt));
1283 - if (n < (int)sizeof(reg_virt)) {
1284 - if (!dt_xlate_reg(parent, 0, &reg_phys, NULL))
1285 - return -1;
1286 -
1287 - reg_virt[0] = (void *)reg_phys;
1288 - }
1289 -
1290 - cpcr = reg_virt[0];
1291 + if (dt_get_virtual_reg(parent, &cpcr, 1) < 1)
1292 + return -1;
1293
1294 muram = finddevice("/soc/cpm/muram/data");
1295 if (!muram)
1296 return -1;
1297
1298 /* For bootwrapper-compatible device trees, we assume that the first
1299 - * entry has at least 18 bytes, and that #address-cells/#data-cells
1300 + * entry has at least 128 bytes, and that #address-cells/#data-cells
1301 * is one for both parent and child.
1302 */
1303
1304 - n = getprop(muram, "virtual-reg", reg_virt, sizeof(reg_virt));
1305 - if (n < (int)sizeof(reg_virt)) {
1306 - if (!dt_xlate_reg(muram, 0, &reg_phys, NULL))
1307 - return -1;
1308 + if (dt_get_virtual_reg(muram, &muram_addr, 1) < 1)
1309 + return -1;
1310 +
1311 + if (getprop(muram, "reg", reg, 8) < 8)
1312 + return -1;
1313 +
1314 + muram_offset = reg[0];
1315 + muram_size = reg[1];
1316 +
1317 + /* Store the buffer descriptors at the end of the first muram chunk.
1318 + * For SMC ports on CPM2-based platforms, relocate the parameter RAM
1319 + * just before the buffer descriptors.
1320 + */
1321 +
1322 + cbd_offset = muram_offset + muram_size - 2 * sizeof(struct cpm_bd);
1323
1324 - reg_virt[0] = (void *)reg_phys;
1325 + if (is_cpm2 && is_smc) {
1326 + u16 *smc_base = (u16 *)param;
1327 + u16 pram_offset;
1328 +
1329 + pram_offset = cbd_offset - 64;
1330 + pram_offset = _ALIGN_DOWN(pram_offset, 64);
1331 +
1332 + disable_port();
1333 + out_be16(smc_base, pram_offset);
1334 + param = muram_addr - muram_offset + pram_offset;
1335 }
1336
1337 - muram_start = reg_virt[0];
1338 -
1339 - n = getprop(muram, "reg", &muram_offset, 4);
1340 - if (n < 4)
1341 - return -1;
1342 + cbd_addr = muram_addr - muram_offset + cbd_offset;
1343
1344 scdp->open = cpm_serial_open;
1345 scdp->putc = cpm_serial_putc;
1346 Index: linux-2.6.25.4/arch/powerpc/boot/cuboot-pq2.c
1347 ===================================================================
1348 --- linux-2.6.25.4.orig/arch/powerpc/boot/cuboot-pq2.c
1349 +++ linux-2.6.25.4/arch/powerpc/boot/cuboot-pq2.c
1350 @@ -128,7 +128,7 @@ static void fixup_pci(void)
1351 u8 *soc_regs;
1352 int i, len;
1353 void *node, *parent_node;
1354 - u32 naddr, nsize, mem_log2;
1355 + u32 naddr, nsize, mem_pow2, mem_mask;
1356
1357 node = finddevice("/pci");
1358 if (!node || !dt_is_compatible(node, "fsl,pq2-pci"))
1359 @@ -141,7 +141,7 @@ static void fixup_pci(void)
1360
1361 soc_regs = (u8 *)fsl_get_immr();
1362 if (!soc_regs)
1363 - goto err;
1364 + goto unhandled;
1365
1366 dt_get_reg_format(node, &naddr, &nsize);
1367 if (naddr != 3 || nsize != 2)
1368 @@ -153,7 +153,7 @@ static void fixup_pci(void)
1369
1370 dt_get_reg_format(parent_node, &naddr, &nsize);
1371 if (naddr != 1 || nsize != 1)
1372 - goto err;
1373 + goto unhandled;
1374
1375 len = getprop(node, "ranges", pci_ranges_buf,
1376 sizeof(pci_ranges_buf));
1377 @@ -170,14 +170,20 @@ static void fixup_pci(void)
1378 }
1379
1380 if (!mem || !mmio || !io)
1381 - goto err;
1382 + goto unhandled;
1383 + if (mem->size[1] != mmio->size[1])
1384 + goto unhandled;
1385 + if (mem->size[1] & (mem->size[1] - 1))
1386 + goto unhandled;
1387 + if (io->size[1] & (io->size[1] - 1))
1388 + goto unhandled;
1389
1390 if (mem->phys_addr + mem->size[1] == mmio->phys_addr)
1391 mem_base = mem;
1392 else if (mmio->phys_addr + mmio->size[1] == mem->phys_addr)
1393 mem_base = mmio;
1394 else
1395 - goto err;
1396 + goto unhandled;
1397
1398 out_be32(&pci_regs[1][0], mem_base->phys_addr | 1);
1399 out_be32(&pci_regs[2][0], ~(mem->size[1] + mmio->size[1] - 1));
1400 @@ -201,8 +207,9 @@ static void fixup_pci(void)
1401 out_le32(&pci_regs[0][58], 0);
1402 out_le32(&pci_regs[0][60], 0);
1403
1404 - mem_log2 = 1 << (__ilog2_u32(bd.bi_memsize - 1) + 1);
1405 - out_le32(&pci_regs[0][62], 0xa0000000 | ~((1 << (mem_log2 - 12)) - 1));
1406 + mem_pow2 = 1 << (__ilog2_u32(bd.bi_memsize - 1) + 1);
1407 + mem_mask = ~(mem_pow2 - 1) >> 12;
1408 + out_le32(&pci_regs[0][62], 0xa0000000 | mem_mask);
1409
1410 /* If PCI is disabled, drive RST high to enable. */
1411 if (!(in_le32(&pci_regs[0][32]) & 1)) {
1412 @@ -228,7 +235,11 @@ static void fixup_pci(void)
1413 return;
1414
1415 err:
1416 - printf("Bad PCI node\r\n");
1417 + printf("Bad PCI node -- using existing firmware setup.\r\n");
1418 + return;
1419 +
1420 +unhandled:
1421 + printf("Unsupported PCI node -- using existing firmware setup.\r\n");
1422 }
1423
1424 static void pq2_platform_fixups(void)
1425 Index: linux-2.6.25.4/arch/powerpc/boot/cuboot-rainier.c
1426 ===================================================================
1427 --- linux-2.6.25.4.orig/arch/powerpc/boot/cuboot-rainier.c
1428 +++ linux-2.6.25.4/arch/powerpc/boot/cuboot-rainier.c
1429 @@ -42,7 +42,8 @@ static void rainier_fixups(void)
1430 ibm440ep_fixup_clocks(sysclk, 11059200, 50000000);
1431 ibm4xx_fixup_ebc_ranges("/plb/opb/ebc");
1432 ibm4xx_denali_fixup_memsize();
1433 - dt_fixup_mac_addresses(&bd.bi_enetaddr, &bd.bi_enet1addr);
1434 + dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr);
1435 + dt_fixup_mac_address_by_alias("ethernet1", bd.bi_enet1addr);
1436 }
1437
1438 void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
1439 Index: linux-2.6.25.4/arch/powerpc/boot/cuboot-sequoia.c
1440 ===================================================================
1441 --- linux-2.6.25.4.orig/arch/powerpc/boot/cuboot-sequoia.c
1442 +++ linux-2.6.25.4/arch/powerpc/boot/cuboot-sequoia.c
1443 @@ -42,7 +42,8 @@ static void sequoia_fixups(void)
1444 ibm440ep_fixup_clocks(sysclk, 11059200, 50000000);
1445 ibm4xx_fixup_ebc_ranges("/plb/opb/ebc");
1446 ibm4xx_denali_fixup_memsize();
1447 - dt_fixup_mac_addresses(&bd.bi_enetaddr, &bd.bi_enet1addr);
1448 + dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr);
1449 + dt_fixup_mac_address_by_alias("ethernet1", bd.bi_enet1addr);
1450 }
1451
1452 void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
1453 Index: linux-2.6.25.4/arch/powerpc/boot/cuboot-taishan.c
1454 ===================================================================
1455 --- linux-2.6.25.4.orig/arch/powerpc/boot/cuboot-taishan.c
1456 +++ linux-2.6.25.4/arch/powerpc/boot/cuboot-taishan.c
1457 @@ -40,7 +40,8 @@ static void taishan_fixups(void)
1458
1459 ibm4xx_sdram_fixup_memsize();
1460
1461 - dt_fixup_mac_addresses(bd.bi_enetaddr, bd.bi_enet1addr);
1462 + dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr);
1463 + dt_fixup_mac_address_by_alias("ethernet1", bd.bi_enet1addr);
1464
1465 ibm4xx_fixup_ebc_ranges("/plb/opb/ebc");
1466 }
1467 Index: linux-2.6.25.4/arch/powerpc/boot/cuboot-warp.c
1468 ===================================================================
1469 --- linux-2.6.25.4.orig/arch/powerpc/boot/cuboot-warp.c
1470 +++ linux-2.6.25.4/arch/powerpc/boot/cuboot-warp.c
1471 @@ -24,7 +24,7 @@ static void warp_fixups(void)
1472 ibm440ep_fixup_clocks(sysclk, 11059200, 50000000);
1473 ibm4xx_sdram_fixup_memsize();
1474 ibm4xx_fixup_ebc_ranges("/plb/opb/ebc");
1475 - dt_fixup_mac_addresses(&bd.bi_enetaddr);
1476 + dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr);
1477 }
1478
1479
1480 Index: linux-2.6.25.4/arch/powerpc/boot/cuboot-yosemite.c
1481 ===================================================================
1482 --- /dev/null
1483 +++ linux-2.6.25.4/arch/powerpc/boot/cuboot-yosemite.c
1484 @@ -0,0 +1,44 @@
1485 +/*
1486 + * Old U-boot compatibility for Yosemite
1487 + *
1488 + * Author: Josh Boyer <jwboyer@linux.vnet.ibm.com>
1489 + *
1490 + * Copyright 2008 IBM Corporation
1491 + *
1492 + * This program is free software; you can redistribute it and/or modify it
1493 + * under the terms of the GNU General Public License version 2 as published
1494 + * by the Free Software Foundation.
1495 + */
1496 +
1497 +#include "ops.h"
1498 +#include "stdio.h"
1499 +#include "4xx.h"
1500 +#include "44x.h"
1501 +#include "cuboot.h"
1502 +
1503 +#define TARGET_4xx
1504 +#define TARGET_44x
1505 +#include "ppcboot.h"
1506 +
1507 +static bd_t bd;
1508 +
1509 +static void yosemite_fixups(void)
1510 +{
1511 + unsigned long sysclk = 66666666;
1512 +
1513 + ibm440ep_fixup_clocks(sysclk, 11059200, 50000000);
1514 + ibm4xx_sdram_fixup_memsize();
1515 + ibm4xx_quiesce_eth((u32 *)0xef600e00, (u32 *)0xef600f00);
1516 + dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr);
1517 + dt_fixup_mac_address_by_alias("ethernet1", bd.bi_enet1addr);
1518 +}
1519 +
1520 +void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
1521 + unsigned long r6, unsigned long r7)
1522 +{
1523 + CUBOOT_INIT();
1524 + platform_ops.fixups = yosemite_fixups;
1525 + platform_ops.exit = ibm44x_dbcr_reset;
1526 + fdt_init(_dtb_start);
1527 + serial_console_init();
1528 +}
1529 Index: linux-2.6.25.4/arch/powerpc/boot/devtree.c
1530 ===================================================================
1531 --- linux-2.6.25.4.orig/arch/powerpc/boot/devtree.c
1532 +++ linux-2.6.25.4/arch/powerpc/boot/devtree.c
1533 @@ -350,3 +350,23 @@ int dt_is_compatible(void *node, const c
1534
1535 return 0;
1536 }
1537 +
1538 +int dt_get_virtual_reg(void *node, void **addr, int nres)
1539 +{
1540 + unsigned long xaddr;
1541 + int n;
1542 +
1543 + n = getprop(node, "virtual-reg", addr, nres * 4);
1544 + if (n > 0)
1545 + return n / 4;
1546 +
1547 + for (n = 0; n < nres; n++) {
1548 + if (!dt_xlate_reg(node, n, &xaddr, NULL))
1549 + break;
1550 +
1551 + addr[n] = (void *)xaddr;
1552 + }
1553 +
1554 + return n;
1555 +}
1556 +
1557 Index: linux-2.6.25.4/arch/powerpc/boot/dts/bamboo.dts
1558 ===================================================================
1559 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/bamboo.dts
1560 +++ linux-2.6.25.4/arch/powerpc/boot/dts/bamboo.dts
1561 @@ -204,7 +204,6 @@
1562 };
1563
1564 EMAC0: ethernet@ef600e00 {
1565 - linux,network-index = <0>;
1566 device_type = "network";
1567 compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac";
1568 interrupt-parent = <&UIC1>;
1569 @@ -225,7 +224,6 @@
1570 };
1571
1572 EMAC1: ethernet@ef600f00 {
1573 - linux,network-index = <1>;
1574 device_type = "network";
1575 compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac";
1576 interrupt-parent = <&UIC1>;
1577 Index: linux-2.6.25.4/arch/powerpc/boot/dts/canyonlands.dts
1578 ===================================================================
1579 --- /dev/null
1580 +++ linux-2.6.25.4/arch/powerpc/boot/dts/canyonlands.dts
1581 @@ -0,0 +1,402 @@
1582 +/*
1583 + * Device Tree Source for AMCC Canyonlands (460EX)
1584 + *
1585 + * Copyright 2008 DENX Software Engineering, Stefan Roese <sr@denx.de>
1586 + *
1587 + * This file is licensed under the terms of the GNU General Public
1588 + * License version 2. This program is licensed "as is" without
1589 + * any warranty of any kind, whether express or implied.
1590 + */
1591 +
1592 +/ {
1593 + #address-cells = <2>;
1594 + #size-cells = <1>;
1595 + model = "amcc,canyonlands";
1596 + compatible = "amcc,canyonlands";
1597 + dcr-parent = <&/cpus/cpu@0>;
1598 +
1599 + aliases {
1600 + ethernet0 = &EMAC0;
1601 + ethernet1 = &EMAC1;
1602 + serial0 = &UART0;
1603 + serial1 = &UART1;
1604 + };
1605 +
1606 + cpus {
1607 + #address-cells = <1>;
1608 + #size-cells = <0>;
1609 +
1610 + cpu@0 {
1611 + device_type = "cpu";
1612 + model = "PowerPC,460EX";
1613 + reg = <0>;
1614 + clock-frequency = <0>; /* Filled in by U-Boot */
1615 + timebase-frequency = <0>; /* Filled in by U-Boot */
1616 + i-cache-line-size = <20>;
1617 + d-cache-line-size = <20>;
1618 + i-cache-size = <8000>;
1619 + d-cache-size = <8000>;
1620 + dcr-controller;
1621 + dcr-access-method = "native";
1622 + };
1623 + };
1624 +
1625 + memory {
1626 + device_type = "memory";
1627 + reg = <0 0 0>; /* Filled in by U-Boot */
1628 + };
1629 +
1630 + UIC0: interrupt-controller0 {
1631 + compatible = "ibm,uic-460ex","ibm,uic";
1632 + interrupt-controller;
1633 + cell-index = <0>;
1634 + dcr-reg = <0c0 009>;
1635 + #address-cells = <0>;
1636 + #size-cells = <0>;
1637 + #interrupt-cells = <2>;
1638 + };
1639 +
1640 + UIC1: interrupt-controller1 {
1641 + compatible = "ibm,uic-460ex","ibm,uic";
1642 + interrupt-controller;
1643 + cell-index = <1>;
1644 + dcr-reg = <0d0 009>;
1645 + #address-cells = <0>;
1646 + #size-cells = <0>;
1647 + #interrupt-cells = <2>;
1648 + interrupts = <1e 4 1f 4>; /* cascade */
1649 + interrupt-parent = <&UIC0>;
1650 + };
1651 +
1652 + UIC2: interrupt-controller2 {
1653 + compatible = "ibm,uic-460ex","ibm,uic";
1654 + interrupt-controller;
1655 + cell-index = <2>;
1656 + dcr-reg = <0e0 009>;
1657 + #address-cells = <0>;
1658 + #size-cells = <0>;
1659 + #interrupt-cells = <2>;
1660 + interrupts = <a 4 b 4>; /* cascade */
1661 + interrupt-parent = <&UIC0>;
1662 + };
1663 +
1664 + UIC3: interrupt-controller3 {
1665 + compatible = "ibm,uic-460ex","ibm,uic";
1666 + interrupt-controller;
1667 + cell-index = <3>;
1668 + dcr-reg = <0f0 009>;
1669 + #address-cells = <0>;
1670 + #size-cells = <0>;
1671 + #interrupt-cells = <2>;
1672 + interrupts = <10 4 11 4>; /* cascade */
1673 + interrupt-parent = <&UIC0>;
1674 + };
1675 +
1676 + SDR0: sdr {
1677 + compatible = "ibm,sdr-460ex";
1678 + dcr-reg = <00e 002>;
1679 + };
1680 +
1681 + CPR0: cpr {
1682 + compatible = "ibm,cpr-460ex";
1683 + dcr-reg = <00c 002>;
1684 + };
1685 +
1686 + plb {
1687 + compatible = "ibm,plb-460ex", "ibm,plb4";
1688 + #address-cells = <2>;
1689 + #size-cells = <1>;
1690 + ranges;
1691 + clock-frequency = <0>; /* Filled in by U-Boot */
1692 +
1693 + SDRAM0: sdram {
1694 + compatible = "ibm,sdram-460ex", "ibm,sdram-405gp";
1695 + dcr-reg = <010 2>;
1696 + };
1697 +
1698 + MAL0: mcmal {
1699 + compatible = "ibm,mcmal-460ex", "ibm,mcmal2";
1700 + dcr-reg = <180 62>;
1701 + num-tx-chans = <2>;
1702 + num-rx-chans = <10>;
1703 + #address-cells = <0>;
1704 + #size-cells = <0>;
1705 + interrupt-parent = <&UIC2>;
1706 + interrupts = < /*TXEOB*/ 6 4
1707 + /*RXEOB*/ 7 4
1708 + /*SERR*/ 3 4
1709 + /*TXDE*/ 4 4
1710 + /*RXDE*/ 5 4>;
1711 + };
1712 +
1713 + POB0: opb {
1714 + compatible = "ibm,opb-460ex", "ibm,opb";
1715 + #address-cells = <1>;
1716 + #size-cells = <1>;
1717 + ranges = <b0000000 4 b0000000 50000000>;
1718 + clock-frequency = <0>; /* Filled in by U-Boot */
1719 +
1720 + EBC0: ebc {
1721 + compatible = "ibm,ebc-460ex", "ibm,ebc";
1722 + dcr-reg = <012 2>;
1723 + #address-cells = <2>;
1724 + #size-cells = <1>;
1725 + clock-frequency = <0>; /* Filled in by U-Boot */
1726 + interrupts = <6 4>;
1727 + interrupt-parent = <&UIC1>;
1728 + };
1729 +
1730 + UART0: serial@ef600300 {
1731 + device_type = "serial";
1732 + compatible = "ns16550";
1733 + reg = <ef600300 8>;
1734 + virtual-reg = <ef600300>;
1735 + clock-frequency = <0>; /* Filled in by U-Boot */
1736 + current-speed = <0>; /* Filled in by U-Boot */
1737 + interrupt-parent = <&UIC1>;
1738 + interrupts = <1 4>;
1739 + };
1740 +
1741 + UART1: serial@ef600400 {
1742 + device_type = "serial";
1743 + compatible = "ns16550";
1744 + reg = <ef600400 8>;
1745 + virtual-reg = <ef600400>;
1746 + clock-frequency = <0>; /* Filled in by U-Boot */
1747 + current-speed = <0>; /* Filled in by U-Boot */
1748 + interrupt-parent = <&UIC0>;
1749 + interrupts = <1 4>;
1750 + };
1751 +
1752 + UART2: serial@ef600500 {
1753 + device_type = "serial";
1754 + compatible = "ns16550";
1755 + reg = <ef600500 8>;
1756 + virtual-reg = <ef600500>;
1757 + clock-frequency = <0>; /* Filled in by U-Boot */
1758 + current-speed = <0>; /* Filled in by U-Boot */
1759 + interrupt-parent = <&UIC1>;
1760 + interrupts = <1d 4>;
1761 + };
1762 +
1763 + UART3: serial@ef600600 {
1764 + device_type = "serial";
1765 + compatible = "ns16550";
1766 + reg = <ef600600 8>;
1767 + virtual-reg = <ef600600>;
1768 + clock-frequency = <0>; /* Filled in by U-Boot */
1769 + current-speed = <0>; /* Filled in by U-Boot */
1770 + interrupt-parent = <&UIC1>;
1771 + interrupts = <1e 4>;
1772 + };
1773 +
1774 + IIC0: i2c@ef600700 {
1775 + compatible = "ibm,iic-460ex", "ibm,iic";
1776 + reg = <ef600700 14>;
1777 + interrupt-parent = <&UIC0>;
1778 + interrupts = <2 4>;
1779 + };
1780 +
1781 + IIC1: i2c@ef600800 {
1782 + compatible = "ibm,iic-460ex", "ibm,iic";
1783 + reg = <ef600800 14>;
1784 + interrupt-parent = <&UIC0>;
1785 + interrupts = <3 4>;
1786 + };
1787 +
1788 + ZMII0: emac-zmii@ef600d00 {
1789 + compatible = "ibm,zmii-460ex", "ibm,zmii";
1790 + reg = <ef600d00 c>;
1791 + };
1792 +
1793 + RGMII0: emac-rgmii@ef601500 {
1794 + compatible = "ibm,rgmii-460ex", "ibm,rgmii";
1795 + reg = <ef601500 8>;
1796 + has-mdio;
1797 + };
1798 +
1799 + TAH0: emac-tah@ef601350 {
1800 + compatible = "ibm,tah-460ex", "ibm,tah";
1801 + reg = <ef601350 30>;
1802 + };
1803 +
1804 + TAH1: emac-tah@ef601450 {
1805 + compatible = "ibm,tah-460ex", "ibm,tah";
1806 + reg = <ef601450 30>;
1807 + };
1808 +
1809 + EMAC0: ethernet@ef600e00 {
1810 + device_type = "network";
1811 + compatible = "ibm,emac-460ex", "ibm,emac4";
1812 + interrupt-parent = <&EMAC0>;
1813 + interrupts = <0 1>;
1814 + #interrupt-cells = <1>;
1815 + #address-cells = <0>;
1816 + #size-cells = <0>;
1817 + interrupt-map = </*Status*/ 0 &UIC2 10 4
1818 + /*Wake*/ 1 &UIC2 14 4>;
1819 + reg = <ef600e00 70>;
1820 + local-mac-address = [000000000000]; /* Filled in by U-Boot */
1821 + mal-device = <&MAL0>;
1822 + mal-tx-channel = <0>;
1823 + mal-rx-channel = <0>;
1824 + cell-index = <0>;
1825 + max-frame-size = <2328>;
1826 + rx-fifo-size = <1000>;
1827 + tx-fifo-size = <800>;
1828 + phy-mode = "rgmii";
1829 + phy-map = <00000000>;
1830 + rgmii-device = <&RGMII0>;
1831 + rgmii-channel = <0>;
1832 + tah-device = <&TAH0>;
1833 + tah-channel = <0>;
1834 + has-inverted-stacr-oc;
1835 + has-new-stacr-staopc;
1836 + };
1837 +
1838 + EMAC1: ethernet@ef600f00 {
1839 + device_type = "network";
1840 + compatible = "ibm,emac-460ex", "ibm,emac4";
1841 + interrupt-parent = <&EMAC1>;
1842 + interrupts = <0 1>;
1843 + #interrupt-cells = <1>;
1844 + #address-cells = <0>;
1845 + #size-cells = <0>;
1846 + interrupt-map = </*Status*/ 0 &UIC2 11 4
1847 + /*Wake*/ 1 &UIC2 15 4>;
1848 + reg = <ef600f00 70>;
1849 + local-mac-address = [000000000000]; /* Filled in by U-Boot */
1850 + mal-device = <&MAL0>;
1851 + mal-tx-channel = <1>;
1852 + mal-rx-channel = <8>;
1853 + cell-index = <1>;
1854 + max-frame-size = <2328>;
1855 + rx-fifo-size = <1000>;
1856 + tx-fifo-size = <800>;
1857 + phy-mode = "rgmii";
1858 + phy-map = <00000000>;
1859 + rgmii-device = <&RGMII0>;
1860 + rgmii-channel = <1>;
1861 + tah-device = <&TAH1>;
1862 + tah-channel = <1>;
1863 + has-inverted-stacr-oc;
1864 + has-new-stacr-staopc;
1865 + mdio-device = <&EMAC0>;
1866 + };
1867 + };
1868 +
1869 + PCIX0: pci@c0ec00000 {
1870 + device_type = "pci";
1871 + #interrupt-cells = <1>;
1872 + #size-cells = <2>;
1873 + #address-cells = <3>;
1874 + compatible = "ibm,plb-pcix-460ex", "ibm,plb-pcix";
1875 + primary;
1876 + large-inbound-windows;
1877 + enable-msi-hole;
1878 + reg = <c 0ec00000 8 /* Config space access */
1879 + 0 0 0 /* no IACK cycles */
1880 + c 0ed00000 4 /* Special cycles */
1881 + c 0ec80000 100 /* Internal registers */
1882 + c 0ec80100 fc>; /* Internal messaging registers */
1883 +
1884 + /* Outbound ranges, one memory and one IO,
1885 + * later cannot be changed
1886 + */
1887 + ranges = <02000000 0 80000000 0000000d 80000000 0 80000000
1888 + 01000000 0 00000000 0000000c 08000000 0 00010000>;
1889 +
1890 + /* Inbound 2GB range starting at 0 */
1891 + dma-ranges = <42000000 0 0 0 0 0 80000000>;
1892 +
1893 + /* This drives busses 0 to 0x3f */
1894 + bus-range = <0 3f>;
1895 +
1896 + /* All PCI interrupts are routed to ext IRQ 2 -> UIC1-0 */
1897 + interrupt-map-mask = <0000 0 0 0>;
1898 + interrupt-map = < 0000 0 0 0 &UIC1 0 8 >;
1899 + };
1900 +
1901 + PCIE0: pciex@d00000000 {
1902 + device_type = "pci";
1903 + #interrupt-cells = <1>;
1904 + #size-cells = <2>;
1905 + #address-cells = <3>;
1906 + compatible = "ibm,plb-pciex-460ex", "ibm,plb-pciex";
1907 + primary;
1908 + port = <0>; /* port number */
1909 + reg = <d 00000000 20000000 /* Config space access */
1910 + c 08010000 00001000>; /* Registers */
1911 + dcr-reg = <100 020>;
1912 + sdr-base = <300>;
1913 +
1914 + /* Outbound ranges, one memory and one IO,
1915 + * later cannot be changed
1916 + */
1917 + ranges = <02000000 0 80000000 0000000e 00000000 0 80000000
1918 + 01000000 0 00000000 0000000f 80000000 0 00010000>;
1919 +
1920 + /* Inbound 2GB range starting at 0 */
1921 + dma-ranges = <42000000 0 0 0 0 0 80000000>;
1922 +
1923 + /* This drives busses 40 to 0x7f */
1924 + bus-range = <40 7f>;
1925 +
1926 + /* Legacy interrupts (note the weird polarity, the bridge seems
1927 + * to invert PCIe legacy interrupts).
1928 + * We are de-swizzling here because the numbers are actually for
1929 + * port of the root complex virtual P2P bridge. But I want
1930 + * to avoid putting a node for it in the tree, so the numbers
1931 + * below are basically de-swizzled numbers.
1932 + * The real slot is on idsel 0, so the swizzling is 1:1
1933 + */
1934 + interrupt-map-mask = <0000 0 0 7>;
1935 + interrupt-map = <
1936 + 0000 0 0 1 &UIC3 c 4 /* swizzled int A */
1937 + 0000 0 0 2 &UIC3 d 4 /* swizzled int B */
1938 + 0000 0 0 3 &UIC3 e 4 /* swizzled int C */
1939 + 0000 0 0 4 &UIC3 f 4 /* swizzled int D */>;
1940 + };
1941 +
1942 + PCIE1: pciex@d20000000 {
1943 + device_type = "pci";
1944 + #interrupt-cells = <1>;
1945 + #size-cells = <2>;
1946 + #address-cells = <3>;
1947 + compatible = "ibm,plb-pciex-460ex", "ibm,plb-pciex";
1948 + primary;
1949 + port = <1>; /* port number */
1950 + reg = <d 20000000 20000000 /* Config space access */
1951 + c 08011000 00001000>; /* Registers */
1952 + dcr-reg = <120 020>;
1953 + sdr-base = <340>;
1954 +
1955 + /* Outbound ranges, one memory and one IO,
1956 + * later cannot be changed
1957 + */
1958 + ranges = <02000000 0 80000000 0000000e 80000000 0 80000000
1959 + 01000000 0 00000000 0000000f 80010000 0 00010000>;
1960 +
1961 + /* Inbound 2GB range starting at 0 */
1962 + dma-ranges = <42000000 0 0 0 0 0 80000000>;
1963 +
1964 + /* This drives busses 80 to 0xbf */
1965 + bus-range = <80 bf>;
1966 +
1967 + /* Legacy interrupts (note the weird polarity, the bridge seems
1968 + * to invert PCIe legacy interrupts).
1969 + * We are de-swizzling here because the numbers are actually for
1970 + * port of the root complex virtual P2P bridge. But I want
1971 + * to avoid putting a node for it in the tree, so the numbers
1972 + * below are basically de-swizzled numbers.
1973 + * The real slot is on idsel 0, so the swizzling is 1:1
1974 + */
1975 + interrupt-map-mask = <0000 0 0 7>;
1976 + interrupt-map = <
1977 + 0000 0 0 1 &UIC3 10 4 /* swizzled int A */
1978 + 0000 0 0 2 &UIC3 11 4 /* swizzled int B */
1979 + 0000 0 0 3 &UIC3 12 4 /* swizzled int C */
1980 + 0000 0 0 4 &UIC3 13 4 /* swizzled int D */>;
1981 + };
1982 + };
1983 +};
1984 Index: linux-2.6.25.4/arch/powerpc/boot/dts/ebony.dts
1985 ===================================================================
1986 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/ebony.dts
1987 +++ linux-2.6.25.4/arch/powerpc/boot/dts/ebony.dts
1988 @@ -241,7 +241,6 @@
1989 };
1990
1991 EMAC0: ethernet@40000800 {
1992 - linux,network-index = <0>;
1993 device_type = "network";
1994 compatible = "ibm,emac-440gp", "ibm,emac";
1995 interrupt-parent = <&UIC1>;
1996 @@ -261,7 +260,6 @@
1997 zmii-channel = <0>;
1998 };
1999 EMAC1: ethernet@40000900 {
2000 - linux,network-index = <1>;
2001 device_type = "network";
2002 compatible = "ibm,emac-440gp", "ibm,emac";
2003 interrupt-parent = <&UIC1>;
2004 Index: linux-2.6.25.4/arch/powerpc/boot/dts/ep8248e.dts
2005 ===================================================================
2006 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/ep8248e.dts
2007 +++ linux-2.6.25.4/arch/powerpc/boot/dts/ep8248e.dts
2008 @@ -121,8 +121,7 @@
2009
2010 data@0 {
2011 compatible = "fsl,cpm-muram-data";
2012 - reg = <0 0x1100 0x1140
2013 - 0xec0 0x9800 0x800>;
2014 + reg = <0 0x2000 0x9800 0x800>;
2015 };
2016 };
2017
2018 @@ -138,7 +137,7 @@
2019 device_type = "serial";
2020 compatible = "fsl,mpc8248-smc-uart",
2021 "fsl,cpm2-smc-uart";
2022 - reg = <0x11a80 0x20 0x1100 0x40>;
2023 + reg = <0x11a80 0x20 0x87fc 2>;
2024 interrupts = <4 8>;
2025 interrupt-parent = <&PIC>;
2026 fsl,cpm-brg = <7>;
2027 Index: linux-2.6.25.4/arch/powerpc/boot/dts/ep88xc.dts
2028 ===================================================================
2029 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/ep88xc.dts
2030 +++ linux-2.6.25.4/arch/powerpc/boot/dts/ep88xc.dts
2031 @@ -2,7 +2,7 @@
2032 * EP88xC Device Tree Source
2033 *
2034 * Copyright 2006 MontaVista Software, Inc.
2035 - * Copyright 2007 Freescale Semiconductor, Inc.
2036 + * Copyright 2007,2008 Freescale Semiconductor, Inc.
2037 *
2038 * This program is free software; you can redistribute it and/or modify it
2039 * under the terms of the GNU General Public License as published by the
2040 @@ -10,6 +10,7 @@
2041 * option) any later version.
2042 */
2043
2044 +/dts-v1/;
2045
2046 / {
2047 model = "EP88xC";
2048 @@ -23,44 +24,44 @@
2049
2050 PowerPC,885@0 {
2051 device_type = "cpu";
2052 - reg = <0>;
2053 - d-cache-line-size = <d#16>;
2054 - i-cache-line-size = <d#16>;
2055 - d-cache-size = <d#8192>;
2056 - i-cache-size = <d#8192>;
2057 + reg = <0x0>;
2058 + d-cache-line-size = <16>;
2059 + i-cache-line-size = <16>;
2060 + d-cache-size = <8192>;
2061 + i-cache-size = <8192>;
2062 timebase-frequency = <0>;
2063 bus-frequency = <0>;
2064 clock-frequency = <0>;
2065 - interrupts = <f 2>; // decrementer interrupt
2066 + interrupts = <15 2>; // decrementer interrupt
2067 interrupt-parent = <&PIC>;
2068 };
2069 };
2070
2071 memory {
2072 device_type = "memory";
2073 - reg = <0 0>;
2074 + reg = <0x0 0x0>;
2075 };
2076
2077 localbus@fa200100 {
2078 compatible = "fsl,mpc885-localbus", "fsl,pq1-localbus";
2079 #address-cells = <2>;
2080 #size-cells = <1>;
2081 - reg = <fa200100 40>;
2082 + reg = <0xfa200100 0x40>;
2083
2084 ranges = <
2085 - 0 0 fc000000 04000000
2086 - 3 0 fa000000 01000000
2087 + 0x0 0x0 0xfc000000 0x4000000
2088 + 0x3 0x0 0xfa000000 0x1000000
2089 >;
2090
2091 flash@0,2000000 {
2092 compatible = "cfi-flash";
2093 - reg = <0 2000000 2000000>;
2094 + reg = <0x0 0x2000000 0x2000000>;
2095 bank-width = <4>;
2096 device-width = <2>;
2097 };
2098
2099 board-control@3,400000 {
2100 - reg = <3 400000 10>;
2101 + reg = <0x3 0x400000 0x10>;
2102 compatible = "fsl,ep88xc-bcsr";
2103 };
2104 };
2105 @@ -70,25 +71,25 @@
2106 #address-cells = <1>;
2107 #size-cells = <1>;
2108 device_type = "soc";
2109 - ranges = <0 fa200000 00004000>;
2110 + ranges = <0x0 0xfa200000 0x4000>;
2111 bus-frequency = <0>;
2112
2113 // Temporary -- will go away once kernel uses ranges for get_immrbase().
2114 - reg = <fa200000 4000>;
2115 + reg = <0xfa200000 0x4000>;
2116
2117 mdio@e00 {
2118 compatible = "fsl,mpc885-fec-mdio", "fsl,pq1-fec-mdio";
2119 - reg = <e00 188>;
2120 + reg = <0xe00 0x188>;
2121 #address-cells = <1>;
2122 #size-cells = <0>;
2123
2124 PHY0: ethernet-phy@0 {
2125 - reg = <0>;
2126 + reg = <0x0>;
2127 device_type = "ethernet-phy";
2128 };
2129
2130 PHY1: ethernet-phy@1 {
2131 - reg = <1>;
2132 + reg = <0x1>;
2133 device_type = "ethernet-phy";
2134 };
2135 };
2136 @@ -97,7 +98,7 @@
2137 device_type = "network";
2138 compatible = "fsl,mpc885-fec-enet",
2139 "fsl,pq1-fec-enet";
2140 - reg = <e00 188>;
2141 + reg = <0xe00 0x188>;
2142 local-mac-address = [ 00 00 00 00 00 00 ];
2143 interrupts = <3 1>;
2144 interrupt-parent = <&PIC>;
2145 @@ -109,7 +110,7 @@
2146 device_type = "network";
2147 compatible = "fsl,mpc885-fec-enet",
2148 "fsl,pq1-fec-enet";
2149 - reg = <1e00 188>;
2150 + reg = <0x1e00 0x188>;
2151 local-mac-address = [ 00 00 00 00 00 00 ];
2152 interrupts = <7 1>;
2153 interrupt-parent = <&PIC>;
2154 @@ -120,7 +121,7 @@
2155 PIC: interrupt-controller@0 {
2156 interrupt-controller;
2157 #interrupt-cells = <2>;
2158 - reg = <0 24>;
2159 + reg = <0x0 0x24>;
2160 compatible = "fsl,mpc885-pic", "fsl,pq1-pic";
2161 };
2162
2163 @@ -130,29 +131,29 @@
2164 #size-cells = <2>;
2165 compatible = "fsl,pq-pcmcia";
2166 device_type = "pcmcia";
2167 - reg = <80 80>;
2168 + reg = <0x80 0x80>;
2169 interrupt-parent = <&PIC>;
2170 - interrupts = <d 1>;
2171 + interrupts = <13 1>;
2172 };
2173
2174 cpm@9c0 {
2175 #address-cells = <1>;
2176 #size-cells = <1>;
2177 compatible = "fsl,mpc885-cpm", "fsl,cpm1";
2178 - command-proc = <9c0>;
2179 + command-proc = <0x9c0>;
2180 interrupts = <0>; // cpm error interrupt
2181 interrupt-parent = <&CPM_PIC>;
2182 - reg = <9c0 40>;
2183 + reg = <0x9c0 0x40>;
2184 ranges;
2185
2186 muram@2000 {
2187 #address-cells = <1>;
2188 #size-cells = <1>;
2189 - ranges = <0 2000 2000>;
2190 + ranges = <0x0 0x2000 0x2000>;
2191
2192 data@0 {
2193 compatible = "fsl,cpm-muram-data";
2194 - reg = <0 1c00>;
2195 + reg = <0x0 0x1c00>;
2196 };
2197 };
2198
2199 @@ -160,7 +161,7 @@
2200 compatible = "fsl,mpc885-brg",
2201 "fsl,cpm1-brg",
2202 "fsl,cpm-brg";
2203 - reg = <9f0 10>;
2204 + reg = <0x9f0 0x10>;
2205 };
2206
2207 CPM_PIC: interrupt-controller@930 {
2208 @@ -168,7 +169,7 @@
2209 #interrupt-cells = <1>;
2210 interrupts = <5 2 0 2>;
2211 interrupt-parent = <&PIC>;
2212 - reg = <930 20>;
2213 + reg = <0x930 0x20>;
2214 compatible = "fsl,mpc885-cpm-pic",
2215 "fsl,cpm1-pic";
2216 };
2217 @@ -178,11 +179,11 @@
2218 device_type = "serial";
2219 compatible = "fsl,mpc885-smc-uart",
2220 "fsl,cpm1-smc-uart";
2221 - reg = <a80 10 3e80 40>;
2222 + reg = <0xa80 0x10 0x3e80 0x40>;
2223 interrupts = <4>;
2224 interrupt-parent = <&CPM_PIC>;
2225 fsl,cpm-brg = <1>;
2226 - fsl,cpm-command = <0090>;
2227 + fsl,cpm-command = <0x90>;
2228 linux,planetcore-label = "SMC1";
2229 };
2230
2231 @@ -191,11 +192,11 @@
2232 device_type = "serial";
2233 compatible = "fsl,mpc885-scc-uart",
2234 "fsl,cpm1-scc-uart";
2235 - reg = <a20 20 3d00 80>;
2236 - interrupts = <1d>;
2237 + reg = <0xa20 0x20 0x3d00 0x80>;
2238 + interrupts = <29>;
2239 interrupt-parent = <&CPM_PIC>;
2240 fsl,cpm-brg = <2>;
2241 - fsl,cpm-command = <0040>;
2242 + fsl,cpm-command = <0x40>;
2243 linux,planetcore-label = "SCC2";
2244 };
2245
2246 @@ -204,9 +205,9 @@
2247 #size-cells = <0>;
2248 compatible = "fsl,mpc885-usb",
2249 "fsl,cpm1-usb";
2250 - reg = <a00 18 1c00 80>;
2251 + reg = <0xa00 0x18 0x1c00 0x80>;
2252 interrupt-parent = <&CPM_PIC>;
2253 - interrupts = <1e>;
2254 + interrupts = <30>;
2255 fsl,cpm-command = <0000>;
2256 };
2257 };
2258 Index: linux-2.6.25.4/arch/powerpc/boot/dts/glacier.dts
2259 ===================================================================
2260 --- /dev/null
2261 +++ linux-2.6.25.4/arch/powerpc/boot/dts/glacier.dts
2262 @@ -0,0 +1,467 @@
2263 +/*
2264 + * Device Tree Source for AMCC Glacier (460GT)
2265 + *
2266 + * Copyright 2008 DENX Software Engineering, Stefan Roese <sr@denx.de>
2267 + *
2268 + * This file is licensed under the terms of the GNU General Public
2269 + * License version 2. This program is licensed "as is" without
2270 + * any warranty of any kind, whether express or implied.
2271 + */
2272 +
2273 +/ {
2274 + #address-cells = <2>;
2275 + #size-cells = <1>;
2276 + model = "amcc,glacier";
2277 + compatible = "amcc,glacier", "amcc,canyonlands";
2278 + dcr-parent = <&/cpus/cpu@0>;
2279 +
2280 + aliases {
2281 + ethernet0 = &EMAC0;
2282 + ethernet1 = &EMAC1;
2283 + ethernet2 = &EMAC2;
2284 + ethernet3 = &EMAC3;
2285 + serial0 = &UART0;
2286 + serial1 = &UART1;
2287 + };
2288 +
2289 + cpus {
2290 + #address-cells = <1>;
2291 + #size-cells = <0>;
2292 +
2293 + cpu@0 {
2294 + device_type = "cpu";
2295 + model = "PowerPC,460GT";
2296 + reg = <0>;
2297 + clock-frequency = <0>; /* Filled in by U-Boot */
2298 + timebase-frequency = <0>; /* Filled in by U-Boot */
2299 + i-cache-line-size = <20>;
2300 + d-cache-line-size = <20>;
2301 + i-cache-size = <8000>;
2302 + d-cache-size = <8000>;
2303 + dcr-controller;
2304 + dcr-access-method = "native";
2305 + };
2306 + };
2307 +
2308 + memory {
2309 + device_type = "memory";
2310 + reg = <0 0 0>; /* Filled in by U-Boot */
2311 + };
2312 +
2313 + UIC0: interrupt-controller0 {
2314 + compatible = "ibm,uic-460gt","ibm,uic";
2315 + interrupt-controller;
2316 + cell-index = <0>;
2317 + dcr-reg = <0c0 009>;
2318 + #address-cells = <0>;
2319 + #size-cells = <0>;
2320 + #interrupt-cells = <2>;
2321 + };
2322 +
2323 + UIC1: interrupt-controller1 {
2324 + compatible = "ibm,uic-460gt","ibm,uic";
2325 + interrupt-controller;
2326 + cell-index = <1>;
2327 + dcr-reg = <0d0 009>;
2328 + #address-cells = <0>;
2329 + #size-cells = <0>;
2330 + #interrupt-cells = <2>;
2331 + interrupts = <1e 4 1f 4>; /* cascade */
2332 + interrupt-parent = <&UIC0>;
2333 + };
2334 +
2335 + UIC2: interrupt-controller2 {
2336 + compatible = "ibm,uic-460gt","ibm,uic";
2337 + interrupt-controller;
2338 + cell-index = <2>;
2339 + dcr-reg = <0e0 009>;
2340 + #address-cells = <0>;
2341 + #size-cells = <0>;
2342 + #interrupt-cells = <2>;
2343 + interrupts = <a 4 b 4>; /* cascade */
2344 + interrupt-parent = <&UIC0>;
2345 + };
2346 +
2347 + UIC3: interrupt-controller3 {
2348 + compatible = "ibm,uic-460gt","ibm,uic";
2349 + interrupt-controller;
2350 + cell-index = <3>;
2351 + dcr-reg = <0f0 009>;
2352 + #address-cells = <0>;
2353 + #size-cells = <0>;
2354 + #interrupt-cells = <2>;
2355 + interrupts = <10 4 11 4>; /* cascade */
2356 + interrupt-parent = <&UIC0>;
2357 + };
2358 +
2359 + SDR0: sdr {
2360 + compatible = "ibm,sdr-460gt";
2361 + dcr-reg = <00e 002>;
2362 + };
2363 +
2364 + CPR0: cpr {
2365 + compatible = "ibm,cpr-460gt";
2366 + dcr-reg = <00c 002>;
2367 + };
2368 +
2369 + plb {
2370 + compatible = "ibm,plb-460gt", "ibm,plb4";
2371 + #address-cells = <2>;
2372 + #size-cells = <1>;
2373 + ranges;
2374 + clock-frequency = <0>; /* Filled in by U-Boot */
2375 +
2376 + SDRAM0: sdram {
2377 + compatible = "ibm,sdram-460gt", "ibm,sdram-405gp";
2378 + dcr-reg = <010 2>;
2379 + };
2380 +
2381 + MAL0: mcmal {
2382 + compatible = "ibm,mcmal-460gt", "ibm,mcmal2";
2383 + dcr-reg = <180 62>;
2384 + num-tx-chans = <4>;
2385 + num-rx-chans = <20>;
2386 + #address-cells = <0>;
2387 + #size-cells = <0>;
2388 + interrupt-parent = <&UIC2>;
2389 + interrupts = < /*TXEOB*/ 6 4
2390 + /*RXEOB*/ 7 4
2391 + /*SERR*/ 3 4
2392 + /*TXDE*/ 4 4
2393 + /*RXDE*/ 5 4>;
2394 + desc-base-addr-high = <8>;
2395 + };
2396 +
2397 + POB0: opb {
2398 + compatible = "ibm,opb-460gt", "ibm,opb";
2399 + #address-cells = <1>;
2400 + #size-cells = <1>;
2401 + ranges = <b0000000 4 b0000000 50000000>;
2402 + clock-frequency = <0>; /* Filled in by U-Boot */
2403 +
2404 + EBC0: ebc {
2405 + compatible = "ibm,ebc-460gt", "ibm,ebc";
2406 + dcr-reg = <012 2>;
2407 + #address-cells = <2>;
2408 + #size-cells = <1>;
2409 + clock-frequency = <0>; /* Filled in by U-Boot */
2410 + interrupts = <6 4>;
2411 + interrupt-parent = <&UIC1>;
2412 + };
2413 +
2414 + UART0: serial@ef600300 {
2415 + device_type = "serial";
2416 + compatible = "ns16550";
2417 + reg = <ef600300 8>;
2418 + virtual-reg = <ef600300>;
2419 + clock-frequency = <0>; /* Filled in by U-Boot */
2420 + current-speed = <0>; /* Filled in by U-Boot */
2421 + interrupt-parent = <&UIC1>;
2422 + interrupts = <1 4>;
2423 + };
2424 +
2425 + UART1: serial@ef600400 {
2426 + device_type = "serial";
2427 + compatible = "ns16550";
2428 + reg = <ef600400 8>;
2429 + virtual-reg = <ef600400>;
2430 + clock-frequency = <0>; /* Filled in by U-Boot */
2431 + current-speed = <0>; /* Filled in by U-Boot */
2432 + interrupt-parent = <&UIC0>;
2433 + interrupts = <1 4>;
2434 + };
2435 +
2436 + UART2: serial@ef600500 {
2437 + device_type = "serial";
2438 + compatible = "ns16550";
2439 + reg = <ef600500 8>;
2440 + virtual-reg = <ef600500>;
2441 + clock-frequency = <0>; /* Filled in by U-Boot */
2442 + current-speed = <0>; /* Filled in by U-Boot */
2443 + interrupt-parent = <&UIC1>;
2444 + interrupts = <1d 4>;
2445 + };
2446 +
2447 + UART3: serial@ef600600 {
2448 + device_type = "serial";
2449 + compatible = "ns16550";
2450 + reg = <ef600600 8>;
2451 + virtual-reg = <ef600600>;
2452 + clock-frequency = <0>; /* Filled in by U-Boot */
2453 + current-speed = <0>; /* Filled in by U-Boot */
2454 + interrupt-parent = <&UIC1>;
2455 + interrupts = <1e 4>;
2456 + };
2457 +
2458 + IIC0: i2c@ef600700 {
2459 + compatible = "ibm,iic-460gt", "ibm,iic";
2460 + reg = <ef600700 14>;
2461 + interrupt-parent = <&UIC0>;
2462 + interrupts = <2 4>;
2463 + };
2464 +
2465 + IIC1: i2c@ef600800 {
2466 + compatible = "ibm,iic-460gt", "ibm,iic";
2467 + reg = <ef600800 14>;
2468 + interrupt-parent = <&UIC0>;
2469 + interrupts = <3 4>;
2470 + };
2471 +
2472 + ZMII0: emac-zmii@ef600d00 {
2473 + compatible = "ibm,zmii-460gt", "ibm,zmii";
2474 + reg = <ef600d00 c>;
2475 + };
2476 +
2477 + RGMII0: emac-rgmii@ef601500 {
2478 + compatible = "ibm,rgmii-460gt", "ibm,rgmii";
2479 + reg = <ef601500 8>;
2480 + has-mdio;
2481 + };
2482 +
2483 + RGMII1: emac-rgmii@ef601600 {
2484 + compatible = "ibm,rgmii-460gt", "ibm,rgmii";
2485 + reg = <ef601600 8>;
2486 + has-mdio;
2487 + };
2488 +
2489 + TAH0: emac-tah@ef601350 {
2490 + compatible = "ibm,tah-460gt", "ibm,tah";
2491 + reg = <ef601350 30>;
2492 + };
2493 +
2494 + TAH1: emac-tah@ef601450 {
2495 + compatible = "ibm,tah-460gt", "ibm,tah";
2496 + reg = <ef601450 30>;
2497 + };
2498 +
2499 + EMAC0: ethernet@ef600e00 {
2500 + device_type = "network";
2501 + compatible = "ibm,emac-460gt", "ibm,emac4";
2502 + interrupt-parent = <&EMAC0>;
2503 + interrupts = <0 1>;
2504 + #interrupt-cells = <1>;
2505 + #address-cells = <0>;
2506 + #size-cells = <0>;
2507 + interrupt-map = </*Status*/ 0 &UIC2 10 4
2508 + /*Wake*/ 1 &UIC2 14 4>;
2509 + reg = <ef600e00 70>;
2510 + local-mac-address = [000000000000]; /* Filled in by U-Boot */
2511 + mal-device = <&MAL0>;
2512 + mal-tx-channel = <0>;
2513 + mal-rx-channel = <0>;
2514 + cell-index = <0>;
2515 + max-frame-size = <2328>;
2516 + rx-fifo-size = <1000>;
2517 + tx-fifo-size = <800>;
2518 + phy-mode = "rgmii";
2519 + phy-map = <00000000>;
2520 + rgmii-device = <&RGMII0>;
2521 + rgmii-channel = <0>;
2522 + tah-device = <&TAH0>;
2523 + tah-channel = <0>;
2524 + has-inverted-stacr-oc;
2525 + has-new-stacr-staopc;
2526 + };
2527 +
2528 + EMAC1: ethernet@ef600f00 {
2529 + device_type = "network";
2530 + compatible = "ibm,emac-460gt", "ibm,emac4";
2531 + interrupt-parent = <&EMAC1>;
2532 + interrupts = <0 1>;
2533 + #interrupt-cells = <1>;
2534 + #address-cells = <0>;
2535 + #size-cells = <0>;
2536 + interrupt-map = </*Status*/ 0 &UIC2 11 4
2537 + /*Wake*/ 1 &UIC2 15 4>;
2538 + reg = <ef600f00 70>;
2539 + local-mac-address = [000000000000]; /* Filled in by U-Boot */
2540 + mal-device = <&MAL0>;
2541 + mal-tx-channel = <1>;
2542 + mal-rx-channel = <8>;
2543 + cell-index = <1>;
2544 + max-frame-size = <2328>;
2545 + rx-fifo-size = <1000>;
2546 + tx-fifo-size = <800>;
2547 + phy-mode = "rgmii";
2548 + phy-map = <00000000>;
2549 + rgmii-device = <&RGMII0>;
2550 + rgmii-channel = <1>;
2551 + tah-device = <&TAH1>;
2552 + tah-channel = <1>;
2553 + has-inverted-stacr-oc;
2554 + has-new-stacr-staopc;
2555 + mdio-device = <&EMAC0>;
2556 + };
2557 +
2558 + EMAC2: ethernet@ef601100 {
2559 + device_type = "network";
2560 + compatible = "ibm,emac-460gt", "ibm,emac4";
2561 + interrupt-parent = <&EMAC2>;
2562 + interrupts = <0 1>;
2563 + #interrupt-cells = <1>;
2564 + #address-cells = <0>;
2565 + #size-cells = <0>;
2566 + interrupt-map = </*Status*/ 0 &UIC2 12 4
2567 + /*Wake*/ 1 &UIC2 16 4>;
2568 + reg = <ef601100 70>;
2569 + local-mac-address = [000000000000]; /* Filled in by U-Boot */
2570 + mal-device = <&MAL0>;
2571 + mal-tx-channel = <2>;
2572 + mal-rx-channel = <10>;
2573 + cell-index = <2>;
2574 + max-frame-size = <2328>;
2575 + rx-fifo-size = <1000>;
2576 + tx-fifo-size = <800>;
2577 + phy-mode = "rgmii";
2578 + phy-map = <00000000>;
2579 + rgmii-device = <&RGMII1>;
2580 + rgmii-channel = <0>;
2581 + has-inverted-stacr-oc;
2582 + has-new-stacr-staopc;
2583 + mdio-device = <&EMAC0>;
2584 + };
2585 +
2586 + EMAC3: ethernet@ef601200 {
2587 + device_type = "network";
2588 + compatible = "ibm,emac-460gt", "ibm,emac4";
2589 + interrupt-parent = <&EMAC3>;
2590 + interrupts = <0 1>;
2591 + #interrupt-cells = <1>;
2592 + #address-cells = <0>;
2593 + #size-cells = <0>;
2594 + interrupt-map = </*Status*/ 0 &UIC2 13 4
2595 + /*Wake*/ 1 &UIC2 17 4>;
2596 + reg = <ef601200 70>;
2597 + local-mac-address = [000000000000]; /* Filled in by U-Boot */
2598 + mal-device = <&MAL0>;
2599 + mal-tx-channel = <3>;
2600 + mal-rx-channel = <18>;
2601 + cell-index = <3>;
2602 + max-frame-size = <2328>;
2603 + rx-fifo-size = <1000>;
2604 + tx-fifo-size = <800>;
2605 + phy-mode = "rgmii";
2606 + phy-map = <00000000>;
2607 + rgmii-device = <&RGMII1>;
2608 + rgmii-channel = <1>;
2609 + has-inverted-stacr-oc;
2610 + has-new-stacr-staopc;
2611 + mdio-device = <&EMAC0>;
2612 + };
2613 + };
2614 +
2615 + PCIX0: pci@c0ec00000 {
2616 + device_type = "pci";
2617 + #interrupt-cells = <1>;
2618 + #size-cells = <2>;
2619 + #address-cells = <3>;
2620 + compatible = "ibm,plb-pcix-460gt", "ibm,plb-pcix";
2621 + primary;
2622 + large-inbound-windows;
2623 + enable-msi-hole;
2624 + reg = <c 0ec00000 8 /* Config space access */
2625 + 0 0 0 /* no IACK cycles */
2626 + c 0ed00000 4 /* Special cycles */
2627 + c 0ec80000 100 /* Internal registers */
2628 + c 0ec80100 fc>; /* Internal messaging registers */
2629 +
2630 + /* Outbound ranges, one memory and one IO,
2631 + * later cannot be changed
2632 + */
2633 + ranges = <02000000 0 80000000 0000000d 80000000 0 80000000
2634 + 01000000 0 00000000 0000000c 08000000 0 00010000>;
2635 +
2636 + /* Inbound 2GB range starting at 0 */
2637 + dma-ranges = <42000000 0 0 0 0 0 80000000>;
2638 +
2639 + /* This drives busses 0 to 0x3f */
2640 + bus-range = <0 3f>;
2641 +
2642 + /* All PCI interrupts are routed to ext IRQ 2 -> UIC1-0 */
2643 + interrupt-map-mask = <0000 0 0 0>;
2644 + interrupt-map = < 0000 0 0 0 &UIC1 0 8 >;
2645 + };
2646 +
2647 + PCIE0: pciex@d00000000 {
2648 + device_type = "pci";
2649 + #interrupt-cells = <1>;
2650 + #size-cells = <2>;
2651 + #address-cells = <3>;
2652 + compatible = "ibm,plb-pciex-460ex", "ibm,plb-pciex";
2653 + primary;
2654 + port = <0>; /* port number */
2655 + reg = <d 00000000 20000000 /* Config space access */
2656 + c 08010000 00001000>; /* Registers */
2657 + dcr-reg = <100 020>;
2658 + sdr-base = <300>;
2659 +
2660 + /* Outbound ranges, one memory and one IO,
2661 + * later cannot be changed
2662 + */
2663 + ranges = <02000000 0 80000000 0000000e 00000000 0 80000000
2664 + 01000000 0 00000000 0000000f 80000000 0 00010000>;
2665 +
2666 + /* Inbound 2GB range starting at 0 */
2667 + dma-ranges = <42000000 0 0 0 0 0 80000000>;
2668 +
2669 + /* This drives busses 40 to 0x7f */
2670 + bus-range = <40 7f>;
2671 +
2672 + /* Legacy interrupts (note the weird polarity, the bridge seems
2673 + * to invert PCIe legacy interrupts).
2674 + * We are de-swizzling here because the numbers are actually for
2675 + * port of the root complex virtual P2P bridge. But I want
2676 + * to avoid putting a node for it in the tree, so the numbers
2677 + * below are basically de-swizzled numbers.
2678 + * The real slot is on idsel 0, so the swizzling is 1:1
2679 + */
2680 + interrupt-map-mask = <0000 0 0 7>;
2681 + interrupt-map = <
2682 + 0000 0 0 1 &UIC3 c 4 /* swizzled int A */
2683 + 0000 0 0 2 &UIC3 d 4 /* swizzled int B */
2684 + 0000 0 0 3 &UIC3 e 4 /* swizzled int C */
2685 + 0000 0 0 4 &UIC3 f 4 /* swizzled int D */>;
2686 + };
2687 +
2688 + PCIE1: pciex@d20000000 {
2689 + device_type = "pci";
2690 + #interrupt-cells = <1>;
2691 + #size-cells = <2>;
2692 + #address-cells = <3>;
2693 + compatible = "ibm,plb-pciex-460ex", "ibm,plb-pciex";
2694 + primary;
2695 + port = <1>; /* port number */
2696 + reg = <d 20000000 20000000 /* Config space access */
2697 + c 08011000 00001000>; /* Registers */
2698 + dcr-reg = <120 020>;
2699 + sdr-base = <340>;
2700 +
2701 + /* Outbound ranges, one memory and one IO,
2702 + * later cannot be changed
2703 + */
2704 + ranges = <02000000 0 80000000 0000000e 80000000 0 80000000
2705 + 01000000 0 00000000 0000000f 80010000 0 00010000>;
2706 +
2707 + /* Inbound 2GB range starting at 0 */
2708 + dma-ranges = <42000000 0 0 0 0 0 80000000>;
2709 +
2710 + /* This drives busses 80 to 0xbf */
2711 + bus-range = <80 bf>;
2712 +
2713 + /* Legacy interrupts (note the weird polarity, the bridge seems
2714 + * to invert PCIe legacy interrupts).
2715 + * We are de-swizzling here because the numbers are actually for
2716 + * port of the root complex virtual P2P bridge. But I want
2717 + * to avoid putting a node for it in the tree, so the numbers
2718 + * below are basically de-swizzled numbers.
2719 + * The real slot is on idsel 0, so the swizzling is 1:1
2720 + */
2721 + interrupt-map-mask = <0000 0 0 7>;
2722 + interrupt-map = <
2723 + 0000 0 0 1 &UIC3 10 4 /* swizzled int A */
2724 + 0000 0 0 2 &UIC3 11 4 /* swizzled int B */
2725 + 0000 0 0 3 &UIC3 12 4 /* swizzled int C */
2726 + 0000 0 0 4 &UIC3 13 4 /* swizzled int D */>;
2727 + };
2728 + };
2729 +};
2730 Index: linux-2.6.25.4/arch/powerpc/boot/dts/haleakala.dts
2731 ===================================================================
2732 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/haleakala.dts
2733 +++ linux-2.6.25.4/arch/powerpc/boot/dts/haleakala.dts
2734 @@ -12,7 +12,7 @@
2735 #address-cells = <1>;
2736 #size-cells = <1>;
2737 model = "amcc,haleakala";
2738 - compatible = "amcc,kilauea";
2739 + compatible = "amcc,haleakala", "amcc,kilauea";
2740 dcr-parent = <&/cpus/cpu@0>;
2741
2742 aliases {
2743 @@ -218,7 +218,7 @@
2744 mal-tx-channel = <0>;
2745 mal-rx-channel = <0>;
2746 cell-index = <0>;
2747 - max-frame-size = <5dc>;
2748 + max-frame-size = <2328>;
2749 rx-fifo-size = <1000>;
2750 tx-fifo-size = <800>;
2751 phy-mode = "rgmii";
2752 Index: linux-2.6.25.4/arch/powerpc/boot/dts/katmai.dts
2753 ===================================================================
2754 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/katmai.dts
2755 +++ linux-2.6.25.4/arch/powerpc/boot/dts/katmai.dts
2756 @@ -212,7 +212,7 @@
2757 mal-tx-channel = <0>;
2758 mal-rx-channel = <0>;
2759 cell-index = <0>;
2760 - max-frame-size = <5dc>;
2761 + max-frame-size = <2328>;
2762 rx-fifo-size = <1000>;
2763 tx-fifo-size = <800>;
2764 phy-mode = "gmii";
2765 Index: linux-2.6.25.4/arch/powerpc/boot/dts/kilauea.dts
2766 ===================================================================
2767 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/kilauea.dts
2768 +++ linux-2.6.25.4/arch/powerpc/boot/dts/kilauea.dts
2769 @@ -219,7 +219,7 @@
2770 mal-tx-channel = <0>;
2771 mal-rx-channel = <0>;
2772 cell-index = <0>;
2773 - max-frame-size = <5dc>;
2774 + max-frame-size = <2328>;
2775 rx-fifo-size = <1000>;
2776 tx-fifo-size = <800>;
2777 phy-mode = "rgmii";
2778 @@ -247,7 +247,7 @@
2779 mal-tx-channel = <1>;
2780 mal-rx-channel = <1>;
2781 cell-index = <1>;
2782 - max-frame-size = <5dc>;
2783 + max-frame-size = <2328>;
2784 rx-fifo-size = <1000>;
2785 tx-fifo-size = <800>;
2786 phy-mode = "rgmii";
2787 Index: linux-2.6.25.4/arch/powerpc/boot/dts/ksi8560.dts
2788 ===================================================================
2789 --- /dev/null
2790 +++ linux-2.6.25.4/arch/powerpc/boot/dts/ksi8560.dts
2791 @@ -0,0 +1,267 @@
2792 +/*
2793 + * Device Tree Source for Emerson KSI8560
2794 + *
2795 + * Author: Alexandr Smirnov <asmirnov@ru.mvista.com>
2796 + *
2797 + * Based on mpc8560ads.dts
2798 + *
2799 + * 2008 (c) MontaVista, Software, Inc. This file is licensed under
2800 + * the terms of the GNU General Public License version 2. This program
2801 + * is licensed "as is" without any warranty of any kind, whether express
2802 + * or implied.
2803 + *
2804 + */
2805 +
2806 +/dts-v1/;
2807 +
2808 +/ {
2809 + model = "KSI8560";
2810 + compatible = "emerson,KSI8560";
2811 + #address-cells = <1>;
2812 + #size-cells = <1>;
2813 +
2814 + aliases {
2815 + ethernet0 = &enet0;
2816 + ethernet1 = &enet1;
2817 + ethernet2 = &enet2;
2818 + };
2819 +
2820 + cpus {
2821 + #address-cells = <1>;
2822 + #size-cells = <0>;
2823 +
2824 + PowerPC,8560@0 {
2825 + device_type = "cpu";
2826 + reg = <0>;
2827 + d-cache-line-size = <32>;
2828 + i-cache-line-size = <32>;
2829 + d-cache-size = <0x8000>; /* L1, 32K */
2830 + i-cache-size = <0x8000>; /* L1, 32K */
2831 + timebase-frequency = <0>; /* From U-boot */
2832 + bus-frequency = <0>; /* From U-boot */
2833 + clock-frequency = <0>; /* From U-boot */
2834 + };
2835 + };
2836 +
2837 + memory {
2838 + device_type = "memory";
2839 + reg = <0x00000000 0x10000000>; /* Fixed by bootwrapper */
2840 + };
2841 +
2842 + soc@fdf00000 {
2843 + #address-cells = <1>;
2844 + #size-cells = <1>;
2845 + device_type = "soc";
2846 + ranges = <0x00000000 0xfdf00000 0x00100000>;
2847 + bus-frequency = <0>; /* Fixed by bootwrapper */
2848 +
2849 + memory-controller@2000 {
2850 + compatible = "fsl,8540-memory-controller";
2851 + reg = <0x2000 0x1000>;
2852 + interrupt-parent = <&MPIC>;
2853 + interrupts = <0x12 0x2>;
2854 + };
2855 +
2856 + l2-cache-controller@20000 {
2857 + compatible = "fsl,8540-l2-cache-controller";
2858 + reg = <0x20000 0x1000>;
2859 + cache-line-size = <0x20>; /* 32 bytes */
2860 + cache-size = <0x40000>; /* L2, 256K */
2861 + interrupt-parent = <&MPIC>;
2862 + interrupts = <0x10 0x2>;
2863 + };
2864 +
2865 + i2c@3000 {
2866 + #address-cells = <1>;
2867 + #size-cells = <0>;
2868 + cell-index = <0>;
2869 + compatible = "fsl-i2c";
2870 + reg = <0x3000 0x100>;
2871 + interrupts = <0x2b 0x2>;
2872 + interrupt-parent = <&MPIC>;
2873 + dfsrr;
2874 + };
2875 +
2876 + mdio@24520 { /* For TSECs */
2877 + #address-cells = <1>;
2878 + #size-cells = <0>;
2879 + compatible = "fsl,gianfar-mdio";
2880 + reg = <0x24520 0x20>;
2881 +
2882 + PHY1: ethernet-phy@1 {
2883 + interrupt-parent = <&MPIC>;
2884 + reg = <0x1>;
2885 + device_type = "ethernet-phy";
2886 + };
2887 +
2888 + PHY2: ethernet-phy@2 {
2889 + interrupt-parent = <&MPIC>;
2890 + reg = <0x2>;
2891 + device_type = "ethernet-phy";
2892 + };
2893 + };
2894 +
2895 + enet0: ethernet@24000 {
2896 + device_type = "network";
2897 + model = "TSEC";
2898 + compatible = "gianfar";
2899 + reg = <0x24000 0x1000>;
2900 + /* Mac address filled in by bootwrapper */
2901 + local-mac-address = [ 00 00 00 00 00 00 ];
2902 + interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>;
2903 + interrupt-parent = <&MPIC>;
2904 + phy-handle = <&PHY1>;
2905 + };
2906 +
2907 + enet1: ethernet@25000 {
2908 + device_type = "network";
2909 + model = "TSEC";
2910 + compatible = "gianfar";
2911 + reg = <0x25000 0x1000>;
2912 + /* Mac address filled in by bootwrapper */
2913 + local-mac-address = [ 00 00 00 00 00 00 ];
2914 + interrupts = <0x23 0x2 0x24 0x2 0x28 0x2>;
2915 + interrupt-parent = <&MPIC>;
2916 + phy-handle = <&PHY2>;
2917 + };
2918 +
2919 + MPIC: pic@40000 {
2920 + #address-cells = <0>;
2921 + #interrupt-cells = <2>;
2922 + interrupt-controller;
2923 + reg = <0x40000 0x40000>;
2924 + device_type = "open-pic";
2925 + };
2926 +
2927 + cpm@919c0 {
2928 + #address-cells = <1>;
2929 + #size-cells = <1>;
2930 + compatible = "fsl,mpc8560-cpm", "fsl,cpm2";
2931 + reg = <0x919c0 0x30>;
2932 + ranges;
2933 +
2934 + muram@80000 {
2935 + #address-cells = <1>;
2936 + #size-cells = <1>;
2937 + ranges = <0x0 0x80000 0x10000>;
2938 +
2939 + data@0 {
2940 + compatible = "fsl,cpm-muram-data";
2941 + reg = <0x0 0x4000 0x9000 0x2000>;
2942 + };
2943 + };
2944 +
2945 + brg@919f0 {
2946 + compatible = "fsl,mpc8560-brg",
2947 + "fsl,cpm2-brg",
2948 + "fsl,cpm-brg";
2949 + reg = <0x919f0 0x10 0x915f0 0x10>;
2950 + clock-frequency = <165000000>; /* 166MHz */
2951 + };
2952 +
2953 + CPMPIC: pic@90c00 {
2954 + #address-cells = <0>;
2955 + #interrupt-cells = <2>;
2956 + interrupt-controller;
2957 + interrupts = <0x2e 0x2>;
2958 + interrupt-parent = <&MPIC>;
2959 + reg = <0x90c00 0x80>;
2960 + compatible = "fsl,mpc8560-cpm-pic", "fsl,cpm2-pic";
2961 + };
2962 +
2963 + serial@91a00 {
2964 + device_type = "serial";
2965 + compatible = "fsl,mpc8560-scc-uart",
2966 + "fsl,cpm2-scc-uart";
2967 + reg = <0x91a00 0x20 0x88000 0x100>;
2968 + fsl,cpm-brg = <1>;
2969 + fsl,cpm-command = <0x800000>;
2970 + current-speed = <0x1c200>;
2971 + interrupts = <0x28 0x8>;
2972 + interrupt-parent = <&CPMPIC>;
2973 + };
2974 +
2975 + serial@91a20 {
2976 + device_type = "serial";
2977 + compatible = "fsl,mpc8560-scc-uart",
2978 + "fsl,cpm2-scc-uart";
2979 + reg = <0x91a20 0x20 0x88100 0x100>;
2980 + fsl,cpm-brg = <2>;
2981 + fsl,cpm-command = <0x4a00000>;
2982 + current-speed = <0x1c200>;
2983 + interrupts = <0x29 0x8>;
2984 + interrupt-parent = <&CPMPIC>;
2985 + };
2986 +
2987 + mdio@90d00 { /* For FCCs */
2988 + #address-cells = <1>;
2989 + #size-cells = <0>;
2990 + compatible = "fsl,cpm2-mdio-bitbang";
2991 + reg = <0x90d00 0x14>;
2992 + fsl,mdio-pin = <24>;
2993 + fsl,mdc-pin = <25>;
2994 +
2995 + PHY0: ethernet-phy@0 {
2996 + interrupt-parent = <&MPIC>;
2997 + reg = <0x0>;
2998 + device_type = "ethernet-phy";
2999 + };
3000 + };
3001 +
3002 + enet2: ethernet@91300 {
3003 + device_type = "network";
3004 + compatible = "fsl,mpc8560-fcc-enet",
3005 + "fsl,cpm2-fcc-enet";
3006 + reg = <0x91300 0x20 0x88400 0x100 0x91390 0x1>;
3007 + /* Mac address filled in by bootwrapper */
3008 + local-mac-address = [ 00 00 00 00 00 00 ];
3009 + fsl,cpm-command = <0x12000300>;
3010 + interrupts = <0x20 0x8>;
3011 + interrupt-parent = <&CPMPIC>;
3012 + phy-handle = <&PHY0>;
3013 + };
3014 + };
3015 + };
3016 +
3017 + localbus@fdf05000 {
3018 + #address-cells = <2>;
3019 + #size-cells = <1>;
3020 + compatible = "fsl,mpc8560-localbus";
3021 + reg = <0xfdf05000 0x68>;
3022 +
3023 + ranges = <0x0 0x0 0xe0000000 0x00800000
3024 + 0x4 0x0 0xe8080000 0x00080000>;
3025 +
3026 + flash@0,0 {
3027 + #address-cells = <1>;
3028 + #size-cells = <1>;
3029 + compatible = "jedec-flash";
3030 + reg = <0x0 0x0 0x800000>;
3031 + bank-width = <0x2>;
3032 +
3033 + partition@0 {
3034 + label = "Primary Kernel";
3035 + reg = <0x0 0x180000>;
3036 + };
3037 + partition@180000 {
3038 + label = "Primary Filesystem";
3039 + reg = <0x180000 0x580000>;
3040 + };
3041 + partition@700000 {
3042 + label = "Monitor";
3043 + reg = <0x300000 0x100000>;
3044 + read-only;
3045 + };
3046 + };
3047 +
3048 + cpld@4,0 {
3049 + compatible = "emerson,KSI8560-cpld";
3050 + reg = <0x4 0x0 0x80000>;
3051 + };
3052 + };
3053 +
3054 +
3055 + chosen {
3056 + linux,stdout-path = "/soc/cpm/serial@91a00";
3057 + };
3058 +};
3059 Index: linux-2.6.25.4/arch/powerpc/boot/dts/kuroboxHD.dts
3060 ===================================================================
3061 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/kuroboxHD.dts
3062 +++ linux-2.6.25.4/arch/powerpc/boot/dts/kuroboxHD.dts
3063 @@ -7,6 +7,7 @@
3064 * Based on sandpoint.dts
3065 *
3066 * 2006 (c) G. Liakhovetski <g.liakhovetski@gmx.de>
3067 + * Copyright 2008 Freescale Semiconductor, Inc.
3068 *
3069 * This file is licensed under
3070 * the terms of the GNU General Public License version 2. This program
3071 @@ -17,6 +18,8 @@ XXXX add flash parts, rtc, ??
3072
3073 */
3074
3075 +/dts-v1/;
3076 +
3077 / {
3078 model = "KuroboxHD";
3079 compatible = "linkstation";
3080 @@ -35,19 +38,19 @@ XXXX add flash parts, rtc, ??
3081
3082 PowerPC,603e { /* Really 8241 */
3083 device_type = "cpu";
3084 - reg = <0>;
3085 - clock-frequency = <bebc200>; /* Fixed by bootloader */
3086 - timebase-frequency = <1743000>; /* Fixed by bootloader */
3087 + reg = <0x0>;
3088 + clock-frequency = <200000000>; /* Fixed by bootloader */
3089 + timebase-frequency = <24391680>; /* Fixed by bootloader */
3090 bus-frequency = <0>; /* Fixed by bootloader */
3091 /* Following required by dtc but not used */
3092 - i-cache-size = <4000>;
3093 - d-cache-size = <4000>;
3094 + i-cache-size = <0x4000>;
3095 + d-cache-size = <0x4000>;
3096 };
3097 };
3098
3099 memory {
3100 device_type = "memory";
3101 - reg = <00000000 04000000>;
3102 + reg = <0x0 0x4000000>;
3103 };
3104
3105 soc10x { /* AFAICT need to make soc for 8245's uarts to be defined */
3106 @@ -56,26 +59,26 @@ XXXX add flash parts, rtc, ??
3107 device_type = "soc";
3108 compatible = "mpc10x";
3109 store-gathering = <0>; /* 0 == off, !0 == on */
3110 - reg = <80000000 00100000>;
3111 - ranges = <80000000 80000000 70000000 /* pci mem space */
3112 - fc000000 fc000000 00100000 /* EUMB */
3113 - fe000000 fe000000 00c00000 /* pci i/o space */
3114 - fec00000 fec00000 00300000 /* pci cfg regs */
3115 - fef00000 fef00000 00100000>; /* pci iack */
3116 + reg = <0x80000000 0x100000>;
3117 + ranges = <0x80000000 0x80000000 0x70000000 /* pci mem space */
3118 + 0xfc000000 0xfc000000 0x100000 /* EUMB */
3119 + 0xfe000000 0xfe000000 0xc00000 /* pci i/o space */
3120 + 0xfec00000 0xfec00000 0x300000 /* pci cfg regs */
3121 + 0xfef00000 0xfef00000 0x100000>; /* pci iack */
3122
3123 i2c@80003000 {
3124 #address-cells = <1>;
3125 #size-cells = <0>;
3126 cell-index = <0>;
3127 compatible = "fsl-i2c";
3128 - reg = <80003000 1000>;
3129 + reg = <0x80003000 0x1000>;
3130 interrupts = <5 2>;
3131 interrupt-parent = <&mpic>;
3132
3133 rtc@32 {
3134 device_type = "rtc";
3135 compatible = "ricoh,rs5c372a";
3136 - reg = <32>;
3137 + reg = <0x32>;
3138 };
3139 };
3140
3141 @@ -83,9 +86,9 @@ XXXX add flash parts, rtc, ??
3142 cell-index = <0>;
3143 device_type = "serial";
3144 compatible = "ns16550";
3145 - reg = <80004500 8>;
3146 - clock-frequency = <5d08d88>;
3147 - current-speed = <2580>;
3148 + reg = <0x80004500 0x8>;
3149 + clock-frequency = <97553800>;
3150 + current-speed = <9600>;
3151 interrupts = <9 0>;
3152 interrupt-parent = <&mpic>;
3153 };
3154 @@ -94,10 +97,10 @@ XXXX add flash parts, rtc, ??
3155 cell-index = <1>;
3156 device_type = "serial";
3157 compatible = "ns16550";
3158 - reg = <80004600 8>;
3159 - clock-frequency = <5d08d88>;
3160 - current-speed = <e100>;
3161 - interrupts = <a 0>;
3162 + reg = <0x80004600 0x8>;
3163 + clock-frequency = <97553800>;
3164 + current-speed = <57600>;
3165 + interrupts = <10 0>;
3166 interrupt-parent = <&mpic>;
3167 };
3168
3169 @@ -107,7 +110,7 @@ XXXX add flash parts, rtc, ??
3170 device_type = "open-pic";
3171 compatible = "chrp,open-pic";
3172 interrupt-controller;
3173 - reg = <80040000 40000>;
3174 + reg = <0x80040000 0x40000>;
3175 };
3176
3177 pci0: pci@fec00000 {
3178 @@ -116,29 +119,29 @@ XXXX add flash parts, rtc, ??
3179 #interrupt-cells = <1>;
3180 device_type = "pci";
3181 compatible = "mpc10x-pci";
3182 - reg = <fec00000 400000>;
3183 - ranges = <01000000 0 0 fe000000 0 00c00000
3184 - 02000000 0 80000000 80000000 0 70000000>;
3185 - bus-range = <0 ff>;
3186 - clock-frequency = <7f28155>;
3187 + reg = <0xfec00000 0x400000>;
3188 + ranges = <0x1000000 0x0 0x0 0xfe000000 0x0 0xc00000
3189 + 0x2000000 0x0 0x80000000 0x80000000 0x0 0x70000000>;
3190 + bus-range = <0 255>;
3191 + clock-frequency = <133333333>;
3192 interrupt-parent = <&mpic>;
3193 - interrupt-map-mask = <f800 0 0 7>;
3194 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
3195 interrupt-map = <
3196 /* IDSEL 11 - IRQ0 ETH */
3197 - 5800 0 0 1 &mpic 0 1
3198 - 5800 0 0 2 &mpic 1 1
3199 - 5800 0 0 3 &mpic 2 1
3200 - 5800 0 0 4 &mpic 3 1
3201 + 0x5800 0x0 0x0 0x1 &mpic 0x0 0x1
3202 + 0x5800 0x0 0x0 0x2 &mpic 0x1 0x1
3203 + 0x5800 0x0 0x0 0x3 &mpic 0x2 0x1
3204 + 0x5800 0x0 0x0 0x4 &mpic 0x3 0x1
3205 /* IDSEL 12 - IRQ1 IDE0 */
3206 - 6000 0 0 1 &mpic 1 1
3207 - 6000 0 0 2 &mpic 2 1
3208 - 6000 0 0 3 &mpic 3 1
3209 - 6000 0 0 4 &mpic 0 1
3210 + 0x6000 0x0 0x0 0x1 &mpic 0x1 0x1
3211 + 0x6000 0x0 0x0 0x2 &mpic 0x2 0x1
3212 + 0x6000 0x0 0x0 0x3 &mpic 0x3 0x1
3213 + 0x6000 0x0 0x0 0x4 &mpic 0x0 0x1
3214 /* IDSEL 14 - IRQ3 USB2.0 */
3215 - 7000 0 0 1 &mpic 3 1
3216 - 7000 0 0 2 &mpic 3 1
3217 - 7000 0 0 3 &mpic 3 1
3218 - 7000 0 0 4 &mpic 3 1
3219 + 0x7000 0x0 0x0 0x1 &mpic 0x3 0x1
3220 + 0x7000 0x0 0x0 0x2 &mpic 0x3 0x1
3221 + 0x7000 0x0 0x0 0x3 &mpic 0x3 0x1
3222 + 0x7000 0x0 0x0 0x4 &mpic 0x3 0x1
3223 >;
3224 };
3225 };
3226 Index: linux-2.6.25.4/arch/powerpc/boot/dts/kuroboxHG.dts
3227 ===================================================================
3228 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/kuroboxHG.dts
3229 +++ linux-2.6.25.4/arch/powerpc/boot/dts/kuroboxHG.dts
3230 @@ -7,6 +7,7 @@
3231 * Based on sandpoint.dts
3232 *
3233 * 2006 (c) G. Liakhovetski <g.liakhovetski@gmx.de>
3234 + * Copyright 2008 Freescale Semiconductor, Inc.
3235 *
3236 * This file is licensed under
3237 * the terms of the GNU General Public License version 2. This program
3238 @@ -17,6 +18,8 @@ XXXX add flash parts, rtc, ??
3239
3240 */
3241
3242 +/dts-v1/;
3243 +
3244 / {
3245 model = "KuroboxHG";
3246 compatible = "linkstation";
3247 @@ -35,19 +38,19 @@ XXXX add flash parts, rtc, ??
3248
3249 PowerPC,603e { /* Really 8241 */
3250 device_type = "cpu";
3251 - reg = <0>;
3252 - clock-frequency = <fdad680>; /* Fixed by bootloader */
3253 - timebase-frequency = <1F04000>; /* Fixed by bootloader */
3254 + reg = <0x0>;
3255 + clock-frequency = <266000000>; /* Fixed by bootloader */
3256 + timebase-frequency = <32522240>; /* Fixed by bootloader */
3257 bus-frequency = <0>; /* Fixed by bootloader */
3258 /* Following required by dtc but not used */
3259 - i-cache-size = <4000>;
3260 - d-cache-size = <4000>;
3261 + i-cache-size = <0x4000>;
3262 + d-cache-size = <0x4000>;
3263 };
3264 };
3265
3266 memory {
3267 device_type = "memory";
3268 - reg = <00000000 08000000>;
3269 + reg = <0x0 0x8000000>;
3270 };
3271
3272 soc10x { /* AFAICT need to make soc for 8245's uarts to be defined */
3273 @@ -56,26 +59,26 @@ XXXX add flash parts, rtc, ??
3274 device_type = "soc";
3275 compatible = "mpc10x";
3276 store-gathering = <0>; /* 0 == off, !0 == on */
3277 - reg = <80000000 00100000>;
3278 - ranges = <80000000 80000000 70000000 /* pci mem space */
3279 - fc000000 fc000000 00100000 /* EUMB */
3280 - fe000000 fe000000 00c00000 /* pci i/o space */
3281 - fec00000 fec00000 00300000 /* pci cfg regs */
3282 - fef00000 fef00000 00100000>; /* pci iack */
3283 + reg = <0x80000000 0x100000>;
3284 + ranges = <0x80000000 0x80000000 0x70000000 /* pci mem space */
3285 + 0xfc000000 0xfc000000 0x100000 /* EUMB */
3286 + 0xfe000000 0xfe000000 0xc00000 /* pci i/o space */
3287 + 0xfec00000 0xfec00000 0x300000 /* pci cfg regs */
3288 + 0xfef00000 0xfef00000 0x100000>; /* pci iack */
3289
3290 i2c@80003000 {
3291 #address-cells = <1>;
3292 #size-cells = <0>;
3293 cell-index = <0>;
3294 compatible = "fsl-i2c";
3295 - reg = <80003000 1000>;
3296 + reg = <0x80003000 0x1000>;
3297 interrupts = <5 2>;
3298 interrupt-parent = <&mpic>;
3299
3300 rtc@32 {
3301 device_type = "rtc";
3302 compatible = "ricoh,rs5c372a";
3303 - reg = <32>;
3304 + reg = <0x32>;
3305 };
3306 };
3307
3308 @@ -83,9 +86,9 @@ XXXX add flash parts, rtc, ??
3309 cell-index = <0>;
3310 device_type = "serial";
3311 compatible = "ns16550";
3312 - reg = <80004500 8>;
3313 - clock-frequency = <7c044a8>;
3314 - current-speed = <2580>;
3315 + reg = <0x80004500 0x8>;
3316 + clock-frequency = <130041000>;
3317 + current-speed = <9600>;
3318 interrupts = <9 0>;
3319 interrupt-parent = <&mpic>;
3320 };
3321 @@ -94,10 +97,10 @@ XXXX add flash parts, rtc, ??
3322 cell-index = <1>;
3323 device_type = "serial";
3324 compatible = "ns16550";
3325 - reg = <80004600 8>;
3326 - clock-frequency = <7c044a8>;
3327 - current-speed = <e100>;
3328 - interrupts = <a 0>;
3329 + reg = <0x80004600 0x8>;
3330 + clock-frequency = <130041000>;
3331 + current-speed = <57600>;
3332 + interrupts = <10 0>;
3333 interrupt-parent = <&mpic>;
3334 };
3335
3336 @@ -107,7 +110,7 @@ XXXX add flash parts, rtc, ??
3337 device_type = "open-pic";
3338 compatible = "chrp,open-pic";
3339 interrupt-controller;
3340 - reg = <80040000 40000>;
3341 + reg = <0x80040000 0x40000>;
3342 };
3343
3344 pci0: pci@fec00000 {
3345 @@ -116,29 +119,29 @@ XXXX add flash parts, rtc, ??
3346 #interrupt-cells = <1>;
3347 device_type = "pci";
3348 compatible = "mpc10x-pci";
3349 - reg = <fec00000 400000>;
3350 - ranges = <01000000 0 0 fe000000 0 00c00000
3351 - 02000000 0 80000000 80000000 0 70000000>;
3352 - bus-range = <0 ff>;
3353 - clock-frequency = <7f28155>;
3354 + reg = <0xfec00000 0x400000>;
3355 + ranges = <0x1000000 0x0 0x0 0xfe000000 0x0 0xc00000
3356 + 0x2000000 0x0 0x80000000 0x80000000 0x0 0x70000000>;
3357 + bus-range = <0 255>;
3358 + clock-frequency = <133333333>;
3359 interrupt-parent = <&mpic>;
3360 - interrupt-map-mask = <f800 0 0 7>;
3361 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
3362 interrupt-map = <
3363 /* IDSEL 11 - IRQ0 ETH */
3364 - 5800 0 0 1 &mpic 0 1
3365 - 5800 0 0 2 &mpic 1 1
3366 - 5800 0 0 3 &mpic 2 1
3367 - 5800 0 0 4 &mpic 3 1
3368 + 0x5800 0x0 0x0 0x1 &mpic 0x0 0x1
3369 + 0x5800 0x0 0x0 0x2 &mpic 0x1 0x1
3370 + 0x5800 0x0 0x0 0x3 &mpic 0x2 0x1
3371 + 0x5800 0x0 0x0 0x4 &mpic 0x3 0x1
3372 /* IDSEL 12 - IRQ1 IDE0 */
3373 - 6000 0 0 1 &mpic 1 1
3374 - 6000 0 0 2 &mpic 2 1
3375 - 6000 0 0 3 &mpic 3 1
3376 - 6000 0 0 4 &mpic 0 1
3377 + 0x6000 0x0 0x0 0x1 &mpic 0x1 0x1
3378 + 0x6000 0x0 0x0 0x2 &mpic 0x2 0x1
3379 + 0x6000 0x0 0x0 0x3 &mpic 0x3 0x1
3380 + 0x6000 0x0 0x0 0x4 &mpic 0x0 0x1
3381 /* IDSEL 14 - IRQ3 USB2.0 */
3382 - 7000 0 0 1 &mpic 3 1
3383 - 7000 0 0 2 &mpic 3 1
3384 - 7000 0 0 3 &mpic 3 1
3385 - 7000 0 0 4 &mpic 3 1
3386 + 0x7000 0x0 0x0 0x1 &mpic 0x3 0x1
3387 + 0x7000 0x0 0x0 0x2 &mpic 0x3 0x1
3388 + 0x7000 0x0 0x0 0x3 &mpic 0x3 0x1
3389 + 0x7000 0x0 0x0 0x4 &mpic 0x3 0x1
3390 >;
3391 };
3392 };
3393 Index: linux-2.6.25.4/arch/powerpc/boot/dts/makalu.dts
3394 ===================================================================
3395 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/makalu.dts
3396 +++ linux-2.6.25.4/arch/powerpc/boot/dts/makalu.dts
3397 @@ -219,7 +219,7 @@
3398 mal-tx-channel = <0>;
3399 mal-rx-channel = <0>;
3400 cell-index = <0>;
3401 - max-frame-size = <5dc>;
3402 + max-frame-size = <2328>;
3403 rx-fifo-size = <1000>;
3404 tx-fifo-size = <800>;
3405 phy-mode = "rgmii";
3406 @@ -247,7 +247,7 @@
3407 mal-tx-channel = <1>;
3408 mal-rx-channel = <1>;
3409 cell-index = <1>;
3410 - max-frame-size = <5dc>;
3411 + max-frame-size = <2328>;
3412 rx-fifo-size = <1000>;
3413 tx-fifo-size = <800>;
3414 phy-mode = "rgmii";
3415 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc7448hpc2.dts
3416 ===================================================================
3417 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc7448hpc2.dts
3418 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc7448hpc2.dts
3419 @@ -1,7 +1,7 @@
3420 /*
3421 * MPC7448HPC2 (Taiga) board Device Tree Source
3422 *
3423 - * Copyright 2006 Freescale Semiconductor Inc.
3424 + * Copyright 2006, 2008 Freescale Semiconductor Inc.
3425 * 2006 Roy Zang <Roy Zang at freescale.com>.
3426 *
3427 * This program is free software; you can redistribute it and/or modify it
3428 @@ -10,6 +10,7 @@
3429 * option) any later version.
3430 */
3431
3432 +/dts-v1/;
3433
3434 / {
3435 model = "mpc7448hpc2";
3436 @@ -23,11 +24,11 @@
3437
3438 PowerPC,7448@0 {
3439 device_type = "cpu";
3440 - reg = <0>;
3441 - d-cache-line-size = <20>; // 32 bytes
3442 - i-cache-line-size = <20>; // 32 bytes
3443 - d-cache-size = <8000>; // L1, 32K bytes
3444 - i-cache-size = <8000>; // L1, 32K bytes
3445 + reg = <0x0>;
3446 + d-cache-line-size = <32>; // 32 bytes
3447 + i-cache-line-size = <32>; // 32 bytes
3448 + d-cache-size = <0x8000>; // L1, 32K bytes
3449 + i-cache-size = <0x8000>; // L1, 32K bytes
3450 timebase-frequency = <0>; // 33 MHz, from uboot
3451 clock-frequency = <0>; // From U-Boot
3452 bus-frequency = <0>; // From U-Boot
3453 @@ -36,7 +37,7 @@
3454
3455 memory {
3456 device_type = "memory";
3457 - reg = <00000000 20000000 // DDR2 512M at 0
3458 + reg = <0x0 0x20000000 // DDR2 512M at 0
3459 >;
3460 };
3461
3462 @@ -44,14 +45,14 @@
3463 #address-cells = <1>;
3464 #size-cells = <1>;
3465 device_type = "tsi-bridge";
3466 - ranges = <00000000 c0000000 00010000>;
3467 - reg = <c0000000 00010000>;
3468 + ranges = <0x0 0xc0000000 0x10000>;
3469 + reg = <0xc0000000 0x10000>;
3470 bus-frequency = <0>;
3471
3472 i2c@7000 {
3473 interrupt-parent = <&mpic>;
3474 - interrupts = <E 0>;
3475 - reg = <7000 400>;
3476 + interrupts = <14 0>;
3477 + reg = <0x7000 0x400>;
3478 device_type = "i2c";
3479 compatible = "tsi108-i2c";
3480 };
3481 @@ -59,20 +60,20 @@
3482 MDIO: mdio@6000 {
3483 device_type = "mdio";
3484 compatible = "tsi108-mdio";
3485 - reg = <6000 50>;
3486 + reg = <0x6000 0x50>;
3487 #address-cells = <1>;
3488 #size-cells = <0>;
3489
3490 phy8: ethernet-phy@8 {
3491 interrupt-parent = <&mpic>;
3492 interrupts = <2 1>;
3493 - reg = <8>;
3494 + reg = <0x8>;
3495 };
3496
3497 phy9: ethernet-phy@9 {
3498 interrupt-parent = <&mpic>;
3499 interrupts = <2 1>;
3500 - reg = <9>;
3501 + reg = <0x9>;
3502 };
3503
3504 };
3505 @@ -82,9 +83,9 @@
3506 #size-cells = <0>;
3507 device_type = "network";
3508 compatible = "tsi108-ethernet";
3509 - reg = <6000 200>;
3510 + reg = <0x6000 0x200>;
3511 address = [ 00 06 D2 00 00 01 ];
3512 - interrupts = <10 2>;
3513 + interrupts = <16 2>;
3514 interrupt-parent = <&mpic>;
3515 mdio-handle = <&MDIO>;
3516 phy-handle = <&phy8>;
3517 @@ -96,9 +97,9 @@
3518 #size-cells = <0>;
3519 device_type = "network";
3520 compatible = "tsi108-ethernet";
3521 - reg = <6400 200>;
3522 + reg = <0x6400 0x200>;
3523 address = [ 00 06 D2 00 00 02 ];
3524 - interrupts = <11 2>;
3525 + interrupts = <17 2>;
3526 interrupt-parent = <&mpic>;
3527 mdio-handle = <&MDIO>;
3528 phy-handle = <&phy9>;
3529 @@ -107,18 +108,18 @@
3530 serial@7808 {
3531 device_type = "serial";
3532 compatible = "ns16550";
3533 - reg = <7808 200>;
3534 - clock-frequency = <3f6b5a00>;
3535 - interrupts = <c 0>;
3536 + reg = <0x7808 0x200>;
3537 + clock-frequency = <1064000000>;
3538 + interrupts = <12 0>;
3539 interrupt-parent = <&mpic>;
3540 };
3541
3542 serial@7c08 {
3543 device_type = "serial";
3544 compatible = "ns16550";
3545 - reg = <7c08 200>;
3546 - clock-frequency = <3f6b5a00>;
3547 - interrupts = <d 0>;
3548 + reg = <0x7c08 0x200>;
3549 + clock-frequency = <1064000000>;
3550 + interrupts = <13 0>;
3551 interrupt-parent = <&mpic>;
3552 };
3553
3554 @@ -127,7 +128,7 @@
3555 interrupt-controller;
3556 #address-cells = <0>;
3557 #interrupt-cells = <2>;
3558 - reg = <7400 400>;
3559 + reg = <0x7400 0x400>;
3560 compatible = "chrp,open-pic";
3561 device_type = "open-pic";
3562 big-endian;
3563 @@ -138,39 +139,39 @@
3564 #interrupt-cells = <1>;
3565 #size-cells = <2>;
3566 #address-cells = <3>;
3567 - reg = <1000 1000>;
3568 + reg = <0x1000 0x1000>;
3569 bus-range = <0 0>;
3570 - ranges = <02000000 0 e0000000 e0000000 0 1A000000
3571 - 01000000 0 00000000 fa000000 0 00010000>;
3572 - clock-frequency = <7f28154>;
3573 + ranges = <0x2000000 0x0 0xe0000000 0xe0000000 0x0 0x1a000000
3574 + 0x1000000 0x0 0x0 0xfa000000 0x0 0x10000>;
3575 + clock-frequency = <133333332>;
3576 interrupt-parent = <&mpic>;
3577 - interrupts = <17 2>;
3578 - interrupt-map-mask = <f800 0 0 7>;
3579 + interrupts = <23 2>;
3580 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
3581 interrupt-map = <
3582
3583 /* IDSEL 0x11 */
3584 - 0800 0 0 1 &RT0 24 0
3585 - 0800 0 0 2 &RT0 25 0
3586 - 0800 0 0 3 &RT0 26 0
3587 - 0800 0 0 4 &RT0 27 0
3588 + 0x800 0x0 0x0 0x1 &RT0 0x24 0x0
3589 + 0x800 0x0 0x0 0x2 &RT0 0x25 0x0
3590 + 0x800 0x0 0x0 0x3 &RT0 0x26 0x0
3591 + 0x800 0x0 0x0 0x4 &RT0 0x27 0x0
3592
3593 /* IDSEL 0x12 */
3594 - 1000 0 0 1 &RT0 25 0
3595 - 1000 0 0 2 &RT0 26 0
3596 - 1000 0 0 3 &RT0 27 0
3597 - 1000 0 0 4 &RT0 24 0
3598 + 0x1000 0x0 0x0 0x1 &RT0 0x25 0x0
3599 + 0x1000 0x0 0x0 0x2 &RT0 0x26 0x0
3600 + 0x1000 0x0 0x0 0x3 &RT0 0x27 0x0
3601 + 0x1000 0x0 0x0 0x4 &RT0 0x24 0x0
3602
3603 /* IDSEL 0x13 */
3604 - 1800 0 0 1 &RT0 26 0
3605 - 1800 0 0 2 &RT0 27 0
3606 - 1800 0 0 3 &RT0 24 0
3607 - 1800 0 0 4 &RT0 25 0
3608 + 0x1800 0x0 0x0 0x1 &RT0 0x26 0x0
3609 + 0x1800 0x0 0x0 0x2 &RT0 0x27 0x0
3610 + 0x1800 0x0 0x0 0x3 &RT0 0x24 0x0
3611 + 0x1800 0x0 0x0 0x4 &RT0 0x25 0x0
3612
3613 /* IDSEL 0x14 */
3614 - 2000 0 0 1 &RT0 27 0
3615 - 2000 0 0 2 &RT0 24 0
3616 - 2000 0 0 3 &RT0 25 0
3617 - 2000 0 0 4 &RT0 26 0
3618 + 0x2000 0x0 0x0 0x1 &RT0 0x27 0x0
3619 + 0x2000 0x0 0x0 0x2 &RT0 0x24 0x0
3620 + 0x2000 0x0 0x0 0x3 &RT0 0x25 0x0
3621 + 0x2000 0x0 0x0 0x4 &RT0 0x26 0x0
3622 >;
3623
3624 RT0: router@1180 {
3625 @@ -180,7 +181,7 @@
3626 #address-cells = <0>;
3627 #interrupt-cells = <2>;
3628 big-endian;
3629 - interrupts = <17 2>;
3630 + interrupts = <23 2>;
3631 interrupt-parent = <&mpic>;
3632 };
3633 };
3634 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8272ads.dts
3635 ===================================================================
3636 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8272ads.dts
3637 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8272ads.dts
3638 @@ -1,7 +1,7 @@
3639 /*
3640 * MPC8272 ADS Device Tree Source
3641 *
3642 - * Copyright 2005 Freescale Semiconductor Inc.
3643 + * Copyright 2005,2008 Freescale Semiconductor Inc.
3644 *
3645 * This program is free software; you can redistribute it and/or modify it
3646 * under the terms of the GNU General Public License as published by the
3647 @@ -9,6 +9,8 @@
3648 * option) any later version.
3649 */
3650
3651 +/dts-v1/;
3652 +
3653 / {
3654 model = "MPC8272ADS";
3655 compatible = "fsl,mpc8272ads";
3656 @@ -21,11 +23,11 @@
3657
3658 PowerPC,8272@0 {
3659 device_type = "cpu";
3660 - reg = <0>;
3661 - d-cache-line-size = <d#32>;
3662 - i-cache-line-size = <d#32>;
3663 - d-cache-size = <d#16384>;
3664 - i-cache-size = <d#16384>;
3665 + reg = <0x0>;
3666 + d-cache-line-size = <32>;
3667 + i-cache-line-size = <32>;
3668 + d-cache-size = <16384>;
3669 + i-cache-size = <16384>;
3670 timebase-frequency = <0>;
3671 bus-frequency = <0>;
3672 clock-frequency = <0>;
3673 @@ -34,7 +36,7 @@
3674
3675 memory {
3676 device_type = "memory";
3677 - reg = <0 0>;
3678 + reg = <0x0 0x0>;
3679 };
3680
3681 localbus@f0010100 {
3682 @@ -42,21 +44,21 @@
3683 "fsl,pq2-localbus";
3684 #address-cells = <2>;
3685 #size-cells = <1>;
3686 - reg = <f0010100 40>;
3687 + reg = <0xf0010100 0x40>;
3688
3689 - ranges = <0 0 fe000000 02000000
3690 - 1 0 f4500000 00008000
3691 - 3 0 f8200000 00008000>;
3692 + ranges = <0x0 0x0 0xfe000000 0x2000000
3693 + 0x1 0x0 0xf4500000 0x8000
3694 + 0x3 0x0 0xf8200000 0x8000>;
3695
3696 flash@0,0 {
3697 compatible = "jedec-flash";
3698 - reg = <0 0 2000000>;
3699 + reg = <0x0 0x0 0x2000000>;
3700 bank-width = <4>;
3701 device-width = <1>;
3702 };
3703
3704 board-control@1,0 {
3705 - reg = <1 0 20>;
3706 + reg = <0x1 0x0 0x20>;
3707 compatible = "fsl,mpc8272ads-bcsr";
3708 };
3709
3710 @@ -65,46 +67,46 @@
3711 "fsl,pq2ads-pci-pic";
3712 #interrupt-cells = <1>;
3713 interrupt-controller;
3714 - reg = <3 0 8>;
3715 + reg = <0x3 0x0 0x8>;
3716 interrupt-parent = <&PIC>;
3717 - interrupts = <14 8>;
3718 + interrupts = <20 8>;
3719 };
3720 };
3721
3722
3723 pci@f0010800 {
3724 device_type = "pci";
3725 - reg = <f0010800 10c f00101ac 8 f00101c4 8>;
3726 + reg = <0xf0010800 0x10c 0xf00101ac 0x8 0xf00101c4 0x8>;
3727 compatible = "fsl,mpc8272-pci", "fsl,pq2-pci";
3728 #interrupt-cells = <1>;
3729 #size-cells = <2>;
3730 #address-cells = <3>;
3731 - clock-frequency = <d#66666666>;
3732 - interrupt-map-mask = <f800 0 0 7>;
3733 + clock-frequency = <66666666>;
3734 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
3735 interrupt-map = <
3736 /* IDSEL 0x16 */
3737 - b000 0 0 1 &PCI_PIC 0
3738 - b000 0 0 2 &PCI_PIC 1
3739 - b000 0 0 3 &PCI_PIC 2
3740 - b000 0 0 4 &PCI_PIC 3
3741 + 0xb000 0x0 0x0 0x1 &PCI_PIC 0
3742 + 0xb000 0x0 0x0 0x2 &PCI_PIC 1
3743 + 0xb000 0x0 0x0 0x3 &PCI_PIC 2
3744 + 0xb000 0x0 0x0 0x4 &PCI_PIC 3
3745
3746 /* IDSEL 0x17 */
3747 - b800 0 0 1 &PCI_PIC 4
3748 - b800 0 0 2 &PCI_PIC 5
3749 - b800 0 0 3 &PCI_PIC 6
3750 - b800 0 0 4 &PCI_PIC 7
3751 + 0xb800 0x0 0x0 0x1 &PCI_PIC 4
3752 + 0xb800 0x0 0x0 0x2 &PCI_PIC 5
3753 + 0xb800 0x0 0x0 0x3 &PCI_PIC 6
3754 + 0xb800 0x0 0x0 0x4 &PCI_PIC 7
3755
3756 /* IDSEL 0x18 */
3757 - c000 0 0 1 &PCI_PIC 8
3758 - c000 0 0 2 &PCI_PIC 9
3759 - c000 0 0 3 &PCI_PIC a
3760 - c000 0 0 4 &PCI_PIC b>;
3761 + 0xc000 0x0 0x0 0x1 &PCI_PIC 8
3762 + 0xc000 0x0 0x0 0x2 &PCI_PIC 9
3763 + 0xc000 0x0 0x0 0x3 &PCI_PIC 10
3764 + 0xc000 0x0 0x0 0x4 &PCI_PIC 11>;
3765
3766 interrupt-parent = <&PIC>;
3767 - interrupts = <12 8>;
3768 - ranges = <42000000 0 80000000 80000000 0 20000000
3769 - 02000000 0 a0000000 a0000000 0 20000000
3770 - 01000000 0 00000000 f6000000 0 02000000>;
3771 + interrupts = <18 8>;
3772 + ranges = <0x42000000 0x0 0x80000000 0x80000000 0x0 0x20000000
3773 + 0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
3774 + 0x1000000 0x0 0x0 0xf6000000 0x0 0x2000000>;
3775 };
3776
3777 soc@f0000000 {
3778 @@ -112,26 +114,26 @@
3779 #size-cells = <1>;
3780 device_type = "soc";
3781 compatible = "fsl,mpc8272", "fsl,pq2-soc";
3782 - ranges = <00000000 f0000000 00053000>;
3783 + ranges = <0x0 0xf0000000 0x53000>;
3784
3785 // Temporary -- will go away once kernel uses ranges for get_immrbase().
3786 - reg = <f0000000 00053000>;
3787 + reg = <0xf0000000 0x53000>;
3788
3789 cpm@119c0 {
3790 #address-cells = <1>;
3791 #size-cells = <1>;
3792 compatible = "fsl,mpc8272-cpm", "fsl,cpm2";
3793 - reg = <119c0 30>;
3794 + reg = <0x119c0 0x30>;
3795 ranges;
3796
3797 muram@0 {
3798 #address-cells = <1>;
3799 #size-cells = <1>;
3800 - ranges = <0 0 10000>;
3801 + ranges = <0x0 0x0 0x10000>;
3802
3803 data@0 {
3804 compatible = "fsl,cpm-muram-data";
3805 - reg = <0 2000 9800 800>;
3806 + reg = <0x0 0x2000 0x9800 0x800>;
3807 };
3808 };
3809
3810 @@ -139,29 +141,29 @@
3811 compatible = "fsl,mpc8272-brg",
3812 "fsl,cpm2-brg",
3813 "fsl,cpm-brg";
3814 - reg = <119f0 10 115f0 10>;
3815 + reg = <0x119f0 0x10 0x115f0 0x10>;
3816 };
3817
3818 serial@11a00 {
3819 device_type = "serial";
3820 compatible = "fsl,mpc8272-scc-uart",
3821 "fsl,cpm2-scc-uart";
3822 - reg = <11a00 20 8000 100>;
3823 - interrupts = <28 8>;
3824 + reg = <0x11a00 0x20 0x8000 0x100>;
3825 + interrupts = <40 8>;
3826 interrupt-parent = <&PIC>;
3827 fsl,cpm-brg = <1>;
3828 - fsl,cpm-command = <00800000>;
3829 + fsl,cpm-command = <0x800000>;
3830 };
3831
3832 serial@11a60 {
3833 device_type = "serial";
3834 compatible = "fsl,mpc8272-scc-uart",
3835 "fsl,cpm2-scc-uart";
3836 - reg = <11a60 20 8300 100>;
3837 - interrupts = <2b 8>;
3838 + reg = <0x11a60 0x20 0x8300 0x100>;
3839 + interrupts = <43 8>;
3840 interrupt-parent = <&PIC>;
3841 fsl,cpm-brg = <4>;
3842 - fsl,cpm-command = <0ce00000>;
3843 + fsl,cpm-command = <0xce00000>;
3844 };
3845
3846 mdio@10d40 {
3847 @@ -169,23 +171,23 @@
3848 compatible = "fsl,mpc8272ads-mdio-bitbang",
3849 "fsl,mpc8272-mdio-bitbang",
3850 "fsl,cpm2-mdio-bitbang";
3851 - reg = <10d40 14>;
3852 + reg = <0x10d40 0x14>;
3853 #address-cells = <1>;
3854 #size-cells = <0>;
3855 - fsl,mdio-pin = <12>;
3856 - fsl,mdc-pin = <13>;
3857 + fsl,mdio-pin = <18>;
3858 + fsl,mdc-pin = <19>;
3859
3860 PHY0: ethernet-phy@0 {
3861 interrupt-parent = <&PIC>;
3862 - interrupts = <17 8>;
3863 - reg = <0>;
3864 + interrupts = <23 8>;
3865 + reg = <0x0>;
3866 device_type = "ethernet-phy";
3867 };
3868
3869 PHY1: ethernet-phy@1 {
3870 interrupt-parent = <&PIC>;
3871 - interrupts = <17 8>;
3872 - reg = <3>;
3873 + interrupts = <23 8>;
3874 + reg = <0x3>;
3875 device_type = "ethernet-phy";
3876 };
3877 };
3878 @@ -194,33 +196,33 @@
3879 device_type = "network";
3880 compatible = "fsl,mpc8272-fcc-enet",
3881 "fsl,cpm2-fcc-enet";
3882 - reg = <11300 20 8400 100 11390 1>;
3883 + reg = <0x11300 0x20 0x8400 0x100 0x11390 0x1>;
3884 local-mac-address = [ 00 00 00 00 00 00 ];
3885 - interrupts = <20 8>;
3886 + interrupts = <32 8>;
3887 interrupt-parent = <&PIC>;
3888 phy-handle = <&PHY0>;
3889 linux,network-index = <0>;
3890 - fsl,cpm-command = <12000300>;
3891 + fsl,cpm-command = <0x12000300>;
3892 };
3893
3894 ethernet@11320 {
3895 device_type = "network";
3896 compatible = "fsl,mpc8272-fcc-enet",
3897 "fsl,cpm2-fcc-enet";
3898 - reg = <11320 20 8500 100 113b0 1>;
3899 + reg = <0x11320 0x20 0x8500 0x100 0x113b0 0x1>;
3900 local-mac-address = [ 00 00 00 00 00 00 ];
3901 - interrupts = <21 8>;
3902 + interrupts = <33 8>;
3903 interrupt-parent = <&PIC>;
3904 phy-handle = <&PHY1>;
3905 linux,network-index = <1>;
3906 - fsl,cpm-command = <16200300>;
3907 + fsl,cpm-command = <0x16200300>;
3908 };
3909 };
3910
3911 PIC: interrupt-controller@10c00 {
3912 #interrupt-cells = <2>;
3913 interrupt-controller;
3914 - reg = <10c00 80>;
3915 + reg = <0x10c00 0x80>;
3916 compatible = "fsl,mpc8272-pic", "fsl,cpm2-pic";
3917 };
3918
3919 @@ -232,14 +234,14 @@
3920 "fsl,talitos-sec2",
3921 "fsl,talitos",
3922 "talitos";
3923 - reg = <30000 10000>;
3924 - interrupts = <b 8>;
3925 + reg = <0x30000 0x10000>;
3926 + interrupts = <11 8>;
3927 interrupt-parent = <&PIC>;
3928 num-channels = <4>;
3929 - channel-fifo-len = <18>;
3930 - exec-units-mask = <0000007e>;
3931 + channel-fifo-len = <24>;
3932 + exec-units-mask = <0x7e>;
3933 /* desc mask is for rev1.x, we need runtime fixup for >=2.x */
3934 - descriptor-types-mask = <01010ebf>;
3935 + descriptor-types-mask = <0x1010ebf>;
3936 };
3937 };
3938
3939 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc832x_mds.dts
3940 ===================================================================
3941 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc832x_mds.dts
3942 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc832x_mds.dts
3943 @@ -255,9 +255,7 @@
3944 enet0: ucc@2200 {
3945 device_type = "network";
3946 compatible = "ucc_geth";
3947 - model = "UCC";
3948 cell-index = <3>;
3949 - device-id = <3>;
3950 reg = <0x2200 0x200>;
3951 interrupts = <34>;
3952 interrupt-parent = <&qeic>;
3953 @@ -271,9 +269,7 @@
3954 enet1: ucc@3200 {
3955 device_type = "network";
3956 compatible = "ucc_geth";
3957 - model = "UCC";
3958 cell-index = <4>;
3959 - device-id = <4>;
3960 reg = <0x3200 0x200>;
3961 interrupts = <35>;
3962 interrupt-parent = <&qeic>;
3963 @@ -287,8 +283,7 @@
3964 ucc@2400 {
3965 device_type = "serial";
3966 compatible = "ucc_uart";
3967 - model = "UCC";
3968 - device-id = <5>; /* The UCC number, 1-7*/
3969 + cell-index = <5>; /* The UCC number, 1-7*/
3970 port-number = <0>; /* Which ttyQEx device */
3971 soft-uart; /* We need Soft-UART */
3972 reg = <0x2400 0x200>;
3973 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc832x_rdb.dts
3974 ===================================================================
3975 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc832x_rdb.dts
3976 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc832x_rdb.dts
3977 @@ -208,9 +208,7 @@
3978 enet0: ucc@3000 {
3979 device_type = "network";
3980 compatible = "ucc_geth";
3981 - model = "UCC";
3982 cell-index = <2>;
3983 - device-id = <2>;
3984 reg = <0x3000 0x200>;
3985 interrupts = <33>;
3986 interrupt-parent = <&qeic>;
3987 @@ -224,9 +222,7 @@
3988 enet1: ucc@2200 {
3989 device_type = "network";
3990 compatible = "ucc_geth";
3991 - model = "UCC";
3992 cell-index = <3>;
3993 - device-id = <3>;
3994 reg = <0x2200 0x200>;
3995 interrupts = <34>;
3996 interrupt-parent = <&qeic>;
3997 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc836x_mds.dts
3998 ===================================================================
3999 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc836x_mds.dts
4000 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc836x_mds.dts
4001 @@ -257,9 +257,7 @@
4002 enet0: ucc@2000 {
4003 device_type = "network";
4004 compatible = "ucc_geth";
4005 - model = "UCC";
4006 cell-index = <1>;
4007 - device-id = <1>;
4008 reg = <0x2000 0x200>;
4009 interrupts = <32>;
4010 interrupt-parent = <&qeic>;
4011 @@ -274,9 +272,7 @@
4012 enet1: ucc@3000 {
4013 device_type = "network";
4014 compatible = "ucc_geth";
4015 - model = "UCC";
4016 cell-index = <2>;
4017 - device-id = <2>;
4018 reg = <0x3000 0x200>;
4019 interrupts = <33>;
4020 interrupt-parent = <&qeic>;
4021 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8540ads.dts
4022 ===================================================================
4023 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8540ads.dts
4024 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8540ads.dts
4025 @@ -1,7 +1,7 @@
4026 /*
4027 * MPC8540 ADS Device Tree Source
4028 *
4029 - * Copyright 2006 Freescale Semiconductor Inc.
4030 + * Copyright 2006, 2008 Freescale Semiconductor Inc.
4031 *
4032 * This program is free software; you can redistribute it and/or modify it
4033 * under the terms of the GNU General Public License as published by the
4034 @@ -9,6 +9,7 @@
4035 * option) any later version.
4036 */
4037
4038 +/dts-v1/;
4039
4040 / {
4041 model = "MPC8540ADS";
4042 @@ -31,11 +32,11 @@
4043
4044 PowerPC,8540@0 {
4045 device_type = "cpu";
4046 - reg = <0>;
4047 - d-cache-line-size = <20>; // 32 bytes
4048 - i-cache-line-size = <20>; // 32 bytes
4049 - d-cache-size = <8000>; // L1, 32K
4050 - i-cache-size = <8000>; // L1, 32K
4051 + reg = <0x0>;
4052 + d-cache-line-size = <32>; // 32 bytes
4053 + i-cache-line-size = <32>; // 32 bytes
4054 + d-cache-size = <0x8000>; // L1, 32K
4055 + i-cache-size = <0x8000>; // L1, 32K
4056 timebase-frequency = <0>; // 33 MHz, from uboot
4057 bus-frequency = <0>; // 166 MHz
4058 clock-frequency = <0>; // 825 MHz, from uboot
4059 @@ -44,31 +45,31 @@
4060
4061 memory {
4062 device_type = "memory";
4063 - reg = <00000000 08000000>; // 128M at 0x0
4064 + reg = <0x0 0x8000000>; // 128M at 0x0
4065 };
4066
4067 soc8540@e0000000 {
4068 #address-cells = <1>;
4069 #size-cells = <1>;
4070 device_type = "soc";
4071 - ranges = <0 e0000000 00100000>;
4072 - reg = <e0000000 00100000>; // CCSRBAR 1M
4073 + ranges = <0x0 0xe0000000 0x100000>;
4074 + reg = <0xe0000000 0x100000>; // CCSRBAR 1M
4075 bus-frequency = <0>;
4076
4077 memory-controller@2000 {
4078 compatible = "fsl,8540-memory-controller";
4079 - reg = <2000 1000>;
4080 + reg = <0x2000 0x1000>;
4081 interrupt-parent = <&mpic>;
4082 - interrupts = <12 2>;
4083 + interrupts = <18 2>;
4084 };
4085
4086 l2-cache-controller@20000 {
4087 compatible = "fsl,8540-l2-cache-controller";
4088 - reg = <20000 1000>;
4089 - cache-line-size = <20>; // 32 bytes
4090 - cache-size = <40000>; // L2, 256K
4091 + reg = <0x20000 0x1000>;
4092 + cache-line-size = <32>; // 32 bytes
4093 + cache-size = <0x40000>; // L2, 256K
4094 interrupt-parent = <&mpic>;
4095 - interrupts = <10 2>;
4096 + interrupts = <16 2>;
4097 };
4098
4099 i2c@3000 {
4100 @@ -76,8 +77,8 @@
4101 #size-cells = <0>;
4102 cell-index = <0>;
4103 compatible = "fsl-i2c";
4104 - reg = <3000 100>;
4105 - interrupts = <2b 2>;
4106 + reg = <0x3000 0x100>;
4107 + interrupts = <43 2>;
4108 interrupt-parent = <&mpic>;
4109 dfsrr;
4110 };
4111 @@ -86,24 +87,24 @@
4112 #address-cells = <1>;
4113 #size-cells = <0>;
4114 compatible = "fsl,gianfar-mdio";
4115 - reg = <24520 20>;
4116 + reg = <0x24520 0x20>;
4117
4118 phy0: ethernet-phy@0 {
4119 interrupt-parent = <&mpic>;
4120 interrupts = <5 1>;
4121 - reg = <0>;
4122 + reg = <0x0>;
4123 device_type = "ethernet-phy";
4124 };
4125 phy1: ethernet-phy@1 {
4126 interrupt-parent = <&mpic>;
4127 interrupts = <5 1>;
4128 - reg = <1>;
4129 + reg = <0x1>;
4130 device_type = "ethernet-phy";
4131 };
4132 phy3: ethernet-phy@3 {
4133 interrupt-parent = <&mpic>;
4134 interrupts = <7 1>;
4135 - reg = <3>;
4136 + reg = <0x3>;
4137 device_type = "ethernet-phy";
4138 };
4139 };
4140 @@ -113,9 +114,9 @@
4141 device_type = "network";
4142 model = "TSEC";
4143 compatible = "gianfar";
4144 - reg = <24000 1000>;
4145 + reg = <0x24000 0x1000>;
4146 local-mac-address = [ 00 00 00 00 00 00 ];
4147 - interrupts = <1d 2 1e 2 22 2>;
4148 + interrupts = <29 2 30 2 34 2>;
4149 interrupt-parent = <&mpic>;
4150 phy-handle = <&phy0>;
4151 };
4152 @@ -125,9 +126,9 @@
4153 device_type = "network";
4154 model = "TSEC";
4155 compatible = "gianfar";
4156 - reg = <25000 1000>;
4157 + reg = <0x25000 0x1000>;
4158 local-mac-address = [ 00 00 00 00 00 00 ];
4159 - interrupts = <23 2 24 2 28 2>;
4160 + interrupts = <35 2 36 2 40 2>;
4161 interrupt-parent = <&mpic>;
4162 phy-handle = <&phy1>;
4163 };
4164 @@ -137,9 +138,9 @@
4165 device_type = "network";
4166 model = "FEC";
4167 compatible = "gianfar";
4168 - reg = <26000 1000>;
4169 + reg = <0x26000 0x1000>;
4170 local-mac-address = [ 00 00 00 00 00 00 ];
4171 - interrupts = <29 2>;
4172 + interrupts = <41 2>;
4173 interrupt-parent = <&mpic>;
4174 phy-handle = <&phy3>;
4175 };
4176 @@ -148,9 +149,9 @@
4177 cell-index = <0>;
4178 device_type = "serial";
4179 compatible = "ns16550";
4180 - reg = <4500 100>; // reg base, size
4181 + reg = <0x4500 0x100>; // reg base, size
4182 clock-frequency = <0>; // should we fill in in uboot?
4183 - interrupts = <2a 2>;
4184 + interrupts = <42 2>;
4185 interrupt-parent = <&mpic>;
4186 };
4187
4188 @@ -158,9 +159,9 @@
4189 cell-index = <1>;
4190 device_type = "serial";
4191 compatible = "ns16550";
4192 - reg = <4600 100>; // reg base, size
4193 + reg = <0x4600 0x100>; // reg base, size
4194 clock-frequency = <0>; // should we fill in in uboot?
4195 - interrupts = <2a 2>;
4196 + interrupts = <42 2>;
4197 interrupt-parent = <&mpic>;
4198 };
4199 mpic: pic@40000 {
4200 @@ -168,7 +169,7 @@
4201 interrupt-controller;
4202 #address-cells = <0>;
4203 #interrupt-cells = <2>;
4204 - reg = <40000 40000>;
4205 + reg = <0x40000 0x40000>;
4206 compatible = "chrp,open-pic";
4207 device_type = "open-pic";
4208 big-endian;
4209 @@ -177,90 +178,90 @@
4210
4211 pci0: pci@e0008000 {
4212 cell-index = <0>;
4213 - interrupt-map-mask = <f800 0 0 7>;
4214 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
4215 interrupt-map = <
4216
4217 /* IDSEL 0x02 */
4218 - 1000 0 0 1 &mpic 1 1
4219 - 1000 0 0 2 &mpic 2 1
4220 - 1000 0 0 3 &mpic 3 1
4221 - 1000 0 0 4 &mpic 4 1
4222 + 0x1000 0x0 0x0 0x1 &mpic 0x1 0x1
4223 + 0x1000 0x0 0x0 0x2 &mpic 0x2 0x1
4224 + 0x1000 0x0 0x0 0x3 &mpic 0x3 0x1
4225 + 0x1000 0x0 0x0 0x4 &mpic 0x4 0x1
4226
4227 /* IDSEL 0x03 */
4228 - 1800 0 0 1 &mpic 4 1
4229 - 1800 0 0 2 &mpic 1 1
4230 - 1800 0 0 3 &mpic 2 1
4231 - 1800 0 0 4 &mpic 3 1
4232 + 0x1800 0x0 0x0 0x1 &mpic 0x4 0x1
4233 + 0x1800 0x0 0x0 0x2 &mpic 0x1 0x1
4234 + 0x1800 0x0 0x0 0x3 &mpic 0x2 0x1
4235 + 0x1800 0x0 0x0 0x4 &mpic 0x3 0x1
4236
4237 /* IDSEL 0x04 */
4238 - 2000 0 0 1 &mpic 3 1
4239 - 2000 0 0 2 &mpic 4 1
4240 - 2000 0 0 3 &mpic 1 1
4241 - 2000 0 0 4 &mpic 2 1
4242 + 0x2000 0x0 0x0 0x1 &mpic 0x3 0x1
4243 + 0x2000 0x0 0x0 0x2 &mpic 0x4 0x1
4244 + 0x2000 0x0 0x0 0x3 &mpic 0x1 0x1
4245 + 0x2000 0x0 0x0 0x4 &mpic 0x2 0x1
4246
4247 /* IDSEL 0x05 */
4248 - 2800 0 0 1 &mpic 2 1
4249 - 2800 0 0 2 &mpic 3 1
4250 - 2800 0 0 3 &mpic 4 1
4251 - 2800 0 0 4 &mpic 1 1
4252 + 0x2800 0x0 0x0 0x1 &mpic 0x2 0x1
4253 + 0x2800 0x0 0x0 0x2 &mpic 0x3 0x1
4254 + 0x2800 0x0 0x0 0x3 &mpic 0x4 0x1
4255 + 0x2800 0x0 0x0 0x4 &mpic 0x1 0x1
4256
4257 /* IDSEL 0x0c */
4258 - 6000 0 0 1 &mpic 1 1
4259 - 6000 0 0 2 &mpic 2 1
4260 - 6000 0 0 3 &mpic 3 1
4261 - 6000 0 0 4 &mpic 4 1
4262 + 0x6000 0x0 0x0 0x1 &mpic 0x1 0x1
4263 + 0x6000 0x0 0x0 0x2 &mpic 0x2 0x1
4264 + 0x6000 0x0 0x0 0x3 &mpic 0x3 0x1
4265 + 0x6000 0x0 0x0 0x4 &mpic 0x4 0x1
4266
4267 /* IDSEL 0x0d */
4268 - 6800 0 0 1 &mpic 4 1
4269 - 6800 0 0 2 &mpic 1 1
4270 - 6800 0 0 3 &mpic 2 1
4271 - 6800 0 0 4 &mpic 3 1
4272 + 0x6800 0x0 0x0 0x1 &mpic 0x4 0x1
4273 + 0x6800 0x0 0x0 0x2 &mpic 0x1 0x1
4274 + 0x6800 0x0 0x0 0x3 &mpic 0x2 0x1
4275 + 0x6800 0x0 0x0 0x4 &mpic 0x3 0x1
4276
4277 /* IDSEL 0x0e */
4278 - 7000 0 0 1 &mpic 3 1
4279 - 7000 0 0 2 &mpic 4 1
4280 - 7000 0 0 3 &mpic 1 1
4281 - 7000 0 0 4 &mpic 2 1
4282 + 0x7000 0x0 0x0 0x1 &mpic 0x3 0x1
4283 + 0x7000 0x0 0x0 0x2 &mpic 0x4 0x1
4284 + 0x7000 0x0 0x0 0x3 &mpic 0x1 0x1
4285 + 0x7000 0x0 0x0 0x4 &mpic 0x2 0x1
4286
4287 /* IDSEL 0x0f */
4288 - 7800 0 0 1 &mpic 2 1
4289 - 7800 0 0 2 &mpic 3 1
4290 - 7800 0 0 3 &mpic 4 1
4291 - 7800 0 0 4 &mpic 1 1
4292 + 0x7800 0x0 0x0 0x1 &mpic 0x2 0x1
4293 + 0x7800 0x0 0x0 0x2 &mpic 0x3 0x1
4294 + 0x7800 0x0 0x0 0x3 &mpic 0x4 0x1
4295 + 0x7800 0x0 0x0 0x4 &mpic 0x1 0x1
4296
4297 /* IDSEL 0x12 */
4298 - 9000 0 0 1 &mpic 1 1
4299 - 9000 0 0 2 &mpic 2 1
4300 - 9000 0 0 3 &mpic 3 1
4301 - 9000 0 0 4 &mpic 4 1
4302 + 0x9000 0x0 0x0 0x1 &mpic 0x1 0x1
4303 + 0x9000 0x0 0x0 0x2 &mpic 0x2 0x1
4304 + 0x9000 0x0 0x0 0x3 &mpic 0x3 0x1
4305 + 0x9000 0x0 0x0 0x4 &mpic 0x4 0x1
4306
4307 /* IDSEL 0x13 */
4308 - 9800 0 0 1 &mpic 4 1
4309 - 9800 0 0 2 &mpic 1 1
4310 - 9800 0 0 3 &mpic 2 1
4311 - 9800 0 0 4 &mpic 3 1
4312 + 0x9800 0x0 0x0 0x1 &mpic 0x4 0x1
4313 + 0x9800 0x0 0x0 0x2 &mpic 0x1 0x1
4314 + 0x9800 0x0 0x0 0x3 &mpic 0x2 0x1
4315 + 0x9800 0x0 0x0 0x4 &mpic 0x3 0x1
4316
4317 /* IDSEL 0x14 */
4318 - a000 0 0 1 &mpic 3 1
4319 - a000 0 0 2 &mpic 4 1
4320 - a000 0 0 3 &mpic 1 1
4321 - a000 0 0 4 &mpic 2 1
4322 + 0xa000 0x0 0x0 0x1 &mpic 0x3 0x1
4323 + 0xa000 0x0 0x0 0x2 &mpic 0x4 0x1
4324 + 0xa000 0x0 0x0 0x3 &mpic 0x1 0x1
4325 + 0xa000 0x0 0x0 0x4 &mpic 0x2 0x1
4326
4327 /* IDSEL 0x15 */
4328 - a800 0 0 1 &mpic 2 1
4329 - a800 0 0 2 &mpic 3 1
4330 - a800 0 0 3 &mpic 4 1
4331 - a800 0 0 4 &mpic 1 1>;
4332 + 0xa800 0x0 0x0 0x1 &mpic 0x2 0x1
4333 + 0xa800 0x0 0x0 0x2 &mpic 0x3 0x1
4334 + 0xa800 0x0 0x0 0x3 &mpic 0x4 0x1
4335 + 0xa800 0x0 0x0 0x4 &mpic 0x1 0x1>;
4336 interrupt-parent = <&mpic>;
4337 - interrupts = <18 2>;
4338 + interrupts = <24 2>;
4339 bus-range = <0 0>;
4340 - ranges = <02000000 0 80000000 80000000 0 20000000
4341 - 01000000 0 00000000 e2000000 0 00100000>;
4342 - clock-frequency = <3f940aa>;
4343 + ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
4344 + 0x1000000 0x0 0x0 0xe2000000 0x0 0x100000>;
4345 + clock-frequency = <66666666>;
4346 #interrupt-cells = <1>;
4347 #size-cells = <2>;
4348 #address-cells = <3>;
4349 - reg = <e0008000 1000>;
4350 + reg = <0xe0008000 0x1000>;
4351 compatible = "fsl,mpc8540-pcix", "fsl,mpc8540-pci";
4352 device_type = "pci";
4353 };
4354 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8541cds.dts
4355 ===================================================================
4356 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8541cds.dts
4357 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8541cds.dts
4358 @@ -1,7 +1,7 @@
4359 /*
4360 * MPC8541 CDS Device Tree Source
4361 *
4362 - * Copyright 2006 Freescale Semiconductor Inc.
4363 + * Copyright 2006, 2008 Freescale Semiconductor Inc.
4364 *
4365 * This program is free software; you can redistribute it and/or modify it
4366 * under the terms of the GNU General Public License as published by the
4367 @@ -9,6 +9,7 @@
4368 * option) any later version.
4369 */
4370
4371 +/dts-v1/;
4372
4373 / {
4374 model = "MPC8541CDS";
4375 @@ -31,11 +32,11 @@
4376
4377 PowerPC,8541@0 {
4378 device_type = "cpu";
4379 - reg = <0>;
4380 - d-cache-line-size = <20>; // 32 bytes
4381 - i-cache-line-size = <20>; // 32 bytes
4382 - d-cache-size = <8000>; // L1, 32K
4383 - i-cache-size = <8000>; // L1, 32K
4384 + reg = <0x0>;
4385 + d-cache-line-size = <32>; // 32 bytes
4386 + i-cache-line-size = <32>; // 32 bytes
4387 + d-cache-size = <0x8000>; // L1, 32K
4388 + i-cache-size = <0x8000>; // L1, 32K
4389 timebase-frequency = <0>; // 33 MHz, from uboot
4390 bus-frequency = <0>; // 166 MHz
4391 clock-frequency = <0>; // 825 MHz, from uboot
4392 @@ -44,31 +45,31 @@
4393
4394 memory {
4395 device_type = "memory";
4396 - reg = <00000000 08000000>; // 128M at 0x0
4397 + reg = <0x0 0x8000000>; // 128M at 0x0
4398 };
4399
4400 soc8541@e0000000 {
4401 #address-cells = <1>;
4402 #size-cells = <1>;
4403 device_type = "soc";
4404 - ranges = <0 e0000000 00100000>;
4405 - reg = <e0000000 00001000>; // CCSRBAR 1M
4406 + ranges = <0x0 0xe0000000 0x100000>;
4407 + reg = <0xe0000000 0x1000>; // CCSRBAR 1M
4408 bus-frequency = <0>;
4409
4410 memory-controller@2000 {
4411 compatible = "fsl,8541-memory-controller";
4412 - reg = <2000 1000>;
4413 + reg = <0x2000 0x1000>;
4414 interrupt-parent = <&mpic>;
4415 - interrupts = <12 2>;
4416 + interrupts = <18 2>;
4417 };
4418
4419 l2-cache-controller@20000 {
4420 compatible = "fsl,8541-l2-cache-controller";
4421 - reg = <20000 1000>;
4422 - cache-line-size = <20>; // 32 bytes
4423 - cache-size = <40000>; // L2, 256K
4424 + reg = <0x20000 0x1000>;
4425 + cache-line-size = <32>; // 32 bytes
4426 + cache-size = <0x40000>; // L2, 256K
4427 interrupt-parent = <&mpic>;
4428 - interrupts = <10 2>;
4429 + interrupts = <16 2>;
4430 };
4431
4432 i2c@3000 {
4433 @@ -76,8 +77,8 @@
4434 #size-cells = <0>;
4435 cell-index = <0>;
4436 compatible = "fsl-i2c";
4437 - reg = <3000 100>;
4438 - interrupts = <2b 2>;
4439 + reg = <0x3000 0x100>;
4440 + interrupts = <43 2>;
4441 interrupt-parent = <&mpic>;
4442 dfsrr;
4443 };
4444 @@ -86,18 +87,18 @@
4445 #address-cells = <1>;
4446 #size-cells = <0>;
4447 compatible = "fsl,gianfar-mdio";
4448 - reg = <24520 20>;
4449 + reg = <0x24520 0x20>;
4450
4451 phy0: ethernet-phy@0 {
4452 interrupt-parent = <&mpic>;
4453 interrupts = <5 1>;
4454 - reg = <0>;
4455 + reg = <0x0>;
4456 device_type = "ethernet-phy";
4457 };
4458 phy1: ethernet-phy@1 {
4459 interrupt-parent = <&mpic>;
4460 interrupts = <5 1>;
4461 - reg = <1>;
4462 + reg = <0x1>;
4463 device_type = "ethernet-phy";
4464 };
4465 };
4466 @@ -107,9 +108,9 @@
4467 device_type = "network";
4468 model = "TSEC";
4469 compatible = "gianfar";
4470 - reg = <24000 1000>;
4471 + reg = <0x24000 0x1000>;
4472 local-mac-address = [ 00 00 00 00 00 00 ];
4473 - interrupts = <1d 2 1e 2 22 2>;
4474 + interrupts = <29 2 30 2 34 2>;
4475 interrupt-parent = <&mpic>;
4476 phy-handle = <&phy0>;
4477 };
4478 @@ -119,9 +120,9 @@
4479 device_type = "network";
4480 model = "TSEC";
4481 compatible = "gianfar";
4482 - reg = <25000 1000>;
4483 + reg = <0x25000 0x1000>;
4484 local-mac-address = [ 00 00 00 00 00 00 ];
4485 - interrupts = <23 2 24 2 28 2>;
4486 + interrupts = <35 2 36 2 40 2>;
4487 interrupt-parent = <&mpic>;
4488 phy-handle = <&phy1>;
4489 };
4490 @@ -130,9 +131,9 @@
4491 cell-index = <0>;
4492 device_type = "serial";
4493 compatible = "ns16550";
4494 - reg = <4500 100>; // reg base, size
4495 + reg = <0x4500 0x100>; // reg base, size
4496 clock-frequency = <0>; // should we fill in in uboot?
4497 - interrupts = <2a 2>;
4498 + interrupts = <42 2>;
4499 interrupt-parent = <&mpic>;
4500 };
4501
4502 @@ -140,9 +141,9 @@
4503 cell-index = <1>;
4504 device_type = "serial";
4505 compatible = "ns16550";
4506 - reg = <4600 100>; // reg base, size
4507 + reg = <0x4600 0x100>; // reg base, size
4508 clock-frequency = <0>; // should we fill in in uboot?
4509 - interrupts = <2a 2>;
4510 + interrupts = <42 2>;
4511 interrupt-parent = <&mpic>;
4512 };
4513
4514 @@ -151,7 +152,7 @@
4515 interrupt-controller;
4516 #address-cells = <0>;
4517 #interrupt-cells = <2>;
4518 - reg = <40000 40000>;
4519 + reg = <0x40000 0x40000>;
4520 compatible = "chrp,open-pic";
4521 device_type = "open-pic";
4522 big-endian;
4523 @@ -161,17 +162,17 @@
4524 #address-cells = <1>;
4525 #size-cells = <1>;
4526 compatible = "fsl,mpc8541-cpm", "fsl,cpm2";
4527 - reg = <919c0 30>;
4528 + reg = <0x919c0 0x30>;
4529 ranges;
4530
4531 muram@80000 {
4532 #address-cells = <1>;
4533 #size-cells = <1>;
4534 - ranges = <0 80000 10000>;
4535 + ranges = <0x0 0x80000 0x10000>;
4536
4537 data@0 {
4538 compatible = "fsl,cpm-muram-data";
4539 - reg = <0 2000 9000 1000>;
4540 + reg = <0x0 0x2000 0x9000 0x1000>;
4541 };
4542 };
4543
4544 @@ -179,16 +180,16 @@
4545 compatible = "fsl,mpc8541-brg",
4546 "fsl,cpm2-brg",
4547 "fsl,cpm-brg";
4548 - reg = <919f0 10 915f0 10>;
4549 + reg = <0x919f0 0x10 0x915f0 0x10>;
4550 };
4551
4552 cpmpic: pic@90c00 {
4553 interrupt-controller;
4554 #address-cells = <0>;
4555 #interrupt-cells = <2>;
4556 - interrupts = <2e 2>;
4557 + interrupts = <46 2>;
4558 interrupt-parent = <&mpic>;
4559 - reg = <90c00 80>;
4560 + reg = <0x90c00 0x80>;
4561 compatible = "fsl,mpc8541-cpm-pic", "fsl,cpm2-pic";
4562 };
4563 };
4564 @@ -196,68 +197,68 @@
4565
4566 pci0: pci@e0008000 {
4567 cell-index = <0>;
4568 - interrupt-map-mask = <1f800 0 0 7>;
4569 + interrupt-map-mask = <0x1f800 0x0 0x0 0x7>;
4570 interrupt-map = <
4571
4572 /* IDSEL 0x10 */
4573 - 08000 0 0 1 &mpic 0 1
4574 - 08000 0 0 2 &mpic 1 1
4575 - 08000 0 0 3 &mpic 2 1
4576 - 08000 0 0 4 &mpic 3 1
4577 + 0x8000 0x0 0x0 0x1 &mpic 0x0 0x1
4578 + 0x8000 0x0 0x0 0x2 &mpic 0x1 0x1
4579 + 0x8000 0x0 0x0 0x3 &mpic 0x2 0x1
4580 + 0x8000 0x0 0x0 0x4 &mpic 0x3 0x1
4581
4582 /* IDSEL 0x11 */
4583 - 08800 0 0 1 &mpic 0 1
4584 - 08800 0 0 2 &mpic 1 1
4585 - 08800 0 0 3 &mpic 2 1
4586 - 08800 0 0 4 &mpic 3 1
4587 + 0x8800 0x0 0x0 0x1 &mpic 0x0 0x1
4588 + 0x8800 0x0 0x0 0x2 &mpic 0x1 0x1
4589 + 0x8800 0x0 0x0 0x3 &mpic 0x2 0x1
4590 + 0x8800 0x0 0x0 0x4 &mpic 0x3 0x1
4591
4592 /* IDSEL 0x12 (Slot 1) */
4593 - 09000 0 0 1 &mpic 0 1
4594 - 09000 0 0 2 &mpic 1 1
4595 - 09000 0 0 3 &mpic 2 1
4596 - 09000 0 0 4 &mpic 3 1
4597 + 0x9000 0x0 0x0 0x1 &mpic 0x0 0x1
4598 + 0x9000 0x0 0x0 0x2 &mpic 0x1 0x1
4599 + 0x9000 0x0 0x0 0x3 &mpic 0x2 0x1
4600 + 0x9000 0x0 0x0 0x4 &mpic 0x3 0x1
4601
4602 /* IDSEL 0x13 (Slot 2) */
4603 - 09800 0 0 1 &mpic 1 1
4604 - 09800 0 0 2 &mpic 2 1
4605 - 09800 0 0 3 &mpic 3 1
4606 - 09800 0 0 4 &mpic 0 1
4607 + 0x9800 0x0 0x0 0x1 &mpic 0x1 0x1
4608 + 0x9800 0x0 0x0 0x2 &mpic 0x2 0x1
4609 + 0x9800 0x0 0x0 0x3 &mpic 0x3 0x1
4610 + 0x9800 0x0 0x0 0x4 &mpic 0x0 0x1
4611
4612 /* IDSEL 0x14 (Slot 3) */
4613 - 0a000 0 0 1 &mpic 2 1
4614 - 0a000 0 0 2 &mpic 3 1
4615 - 0a000 0 0 3 &mpic 0 1
4616 - 0a000 0 0 4 &mpic 1 1
4617 + 0xa000 0x0 0x0 0x1 &mpic 0x2 0x1
4618 + 0xa000 0x0 0x0 0x2 &mpic 0x3 0x1
4619 + 0xa000 0x0 0x0 0x3 &mpic 0x0 0x1
4620 + 0xa000 0x0 0x0 0x4 &mpic 0x1 0x1
4621
4622 /* IDSEL 0x15 (Slot 4) */
4623 - 0a800 0 0 1 &mpic 3 1
4624 - 0a800 0 0 2 &mpic 0 1
4625 - 0a800 0 0 3 &mpic 1 1
4626 - 0a800 0 0 4 &mpic 2 1
4627 + 0xa800 0x0 0x0 0x1 &mpic 0x3 0x1
4628 + 0xa800 0x0 0x0 0x2 &mpic 0x0 0x1
4629 + 0xa800 0x0 0x0 0x3 &mpic 0x1 0x1
4630 + 0xa800 0x0 0x0 0x4 &mpic 0x2 0x1
4631
4632 /* Bus 1 (Tundra Bridge) */
4633 /* IDSEL 0x12 (ISA bridge) */
4634 - 19000 0 0 1 &mpic 0 1
4635 - 19000 0 0 2 &mpic 1 1
4636 - 19000 0 0 3 &mpic 2 1
4637 - 19000 0 0 4 &mpic 3 1>;
4638 + 0x19000 0x0 0x0 0x1 &mpic 0x0 0x1
4639 + 0x19000 0x0 0x0 0x2 &mpic 0x1 0x1
4640 + 0x19000 0x0 0x0 0x3 &mpic 0x2 0x1
4641 + 0x19000 0x0 0x0 0x4 &mpic 0x3 0x1>;
4642 interrupt-parent = <&mpic>;
4643 - interrupts = <18 2>;
4644 + interrupts = <24 2>;
4645 bus-range = <0 0>;
4646 - ranges = <02000000 0 80000000 80000000 0 20000000
4647 - 01000000 0 00000000 e2000000 0 00100000>;
4648 - clock-frequency = <3f940aa>;
4649 + ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
4650 + 0x1000000 0x0 0x0 0xe2000000 0x0 0x100000>;
4651 + clock-frequency = <66666666>;
4652 #interrupt-cells = <1>;
4653 #size-cells = <2>;
4654 #address-cells = <3>;
4655 - reg = <e0008000 1000>;
4656 + reg = <0xe0008000 0x1000>;
4657 compatible = "fsl,mpc8540-pci";
4658 device_type = "pci";
4659
4660 i8259@19000 {
4661 interrupt-controller;
4662 device_type = "interrupt-controller";
4663 - reg = <19000 0 0 0 1>;
4664 + reg = <0x19000 0x0 0x0 0x0 0x1>;
4665 #address-cells = <0>;
4666 #interrupt-cells = <2>;
4667 compatible = "chrp,iic";
4668 @@ -268,24 +269,24 @@
4669
4670 pci1: pci@e0009000 {
4671 cell-index = <1>;
4672 - interrupt-map-mask = <f800 0 0 7>;
4673 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
4674 interrupt-map = <
4675
4676 /* IDSEL 0x15 */
4677 - a800 0 0 1 &mpic b 1
4678 - a800 0 0 2 &mpic b 1
4679 - a800 0 0 3 &mpic b 1
4680 - a800 0 0 4 &mpic b 1>;
4681 + 0xa800 0x0 0x0 0x1 &mpic 0xb 0x1
4682 + 0xa800 0x0 0x0 0x2 &mpic 0xb 0x1
4683 + 0xa800 0x0 0x0 0x3 &mpic 0xb 0x1
4684 + 0xa800 0x0 0x0 0x4 &mpic 0xb 0x1>;
4685 interrupt-parent = <&mpic>;
4686 - interrupts = <19 2>;
4687 + interrupts = <25 2>;
4688 bus-range = <0 0>;
4689 - ranges = <02000000 0 a0000000 a0000000 0 20000000
4690 - 01000000 0 00000000 e3000000 0 00100000>;
4691 - clock-frequency = <3f940aa>;
4692 + ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
4693 + 0x1000000 0x0 0x0 0xe3000000 0x0 0x100000>;
4694 + clock-frequency = <66666666>;
4695 #interrupt-cells = <1>;
4696 #size-cells = <2>;
4697 #address-cells = <3>;
4698 - reg = <e0009000 1000>;
4699 + reg = <0xe0009000 0x1000>;
4700 compatible = "fsl,mpc8540-pci";
4701 device_type = "pci";
4702 };
4703 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8544ds.dts
4704 ===================================================================
4705 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8544ds.dts
4706 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8544ds.dts
4707 @@ -1,7 +1,7 @@
4708 /*
4709 * MPC8544 DS Device Tree Source
4710 *
4711 - * Copyright 2007 Freescale Semiconductor Inc.
4712 + * Copyright 2007, 2008 Freescale Semiconductor Inc.
4713 *
4714 * This program is free software; you can redistribute it and/or modify it
4715 * under the terms of the GNU General Public License as published by the
4716 @@ -9,6 +9,7 @@
4717 * option) any later version.
4718 */
4719
4720 +/dts-v1/;
4721 / {
4722 model = "MPC8544DS";
4723 compatible = "MPC8544DS", "MPC85xxDS";
4724 @@ -27,17 +28,16 @@
4725 };
4726
4727 cpus {
4728 - #cpus = <1>;
4729 #address-cells = <1>;
4730 #size-cells = <0>;
4731
4732 PowerPC,8544@0 {
4733 device_type = "cpu";
4734 - reg = <0>;
4735 - d-cache-line-size = <20>; // 32 bytes
4736 - i-cache-line-size = <20>; // 32 bytes
4737 - d-cache-size = <8000>; // L1, 32K
4738 - i-cache-size = <8000>; // L1, 32K
4739 + reg = <0x0>;
4740 + d-cache-line-size = <32>; // 32 bytes
4741 + i-cache-line-size = <32>; // 32 bytes
4742 + d-cache-size = <0x8000>; // L1, 32K
4743 + i-cache-size = <0x8000>; // L1, 32K
4744 timebase-frequency = <0>;
4745 bus-frequency = <0>;
4746 clock-frequency = <0>;
4747 @@ -46,7 +46,7 @@
4748
4749 memory {
4750 device_type = "memory";
4751 - reg = <00000000 00000000>; // Filled by U-Boot
4752 + reg = <0x0 0x0>; // Filled by U-Boot
4753 };
4754
4755 soc8544@e0000000 {
4756 @@ -54,24 +54,24 @@
4757 #size-cells = <1>;
4758 device_type = "soc";
4759
4760 - ranges = <00000000 e0000000 00100000>;
4761 - reg = <e0000000 00001000>; // CCSRBAR 1M
4762 + ranges = <0x0 0xe0000000 0x100000>;
4763 + reg = <0xe0000000 0x1000>; // CCSRBAR 1M
4764 bus-frequency = <0>; // Filled out by uboot.
4765
4766 memory-controller@2000 {
4767 compatible = "fsl,8544-memory-controller";
4768 - reg = <2000 1000>;
4769 + reg = <0x2000 0x1000>;
4770 interrupt-parent = <&mpic>;
4771 - interrupts = <12 2>;
4772 + interrupts = <18 2>;
4773 };
4774
4775 l2-cache-controller@20000 {
4776 compatible = "fsl,8544-l2-cache-controller";
4777 - reg = <20000 1000>;
4778 - cache-line-size = <20>; // 32 bytes
4779 - cache-size = <40000>; // L2, 256K
4780 + reg = <0x20000 0x1000>;
4781 + cache-line-size = <32>; // 32 bytes
4782 + cache-size = <0x40000>; // L2, 256K
4783 interrupt-parent = <&mpic>;
4784 - interrupts = <10 2>;
4785 + interrupts = <16 2>;
4786 };
4787
4788 i2c@3000 {
4789 @@ -79,8 +79,8 @@
4790 #size-cells = <0>;
4791 cell-index = <0>;
4792 compatible = "fsl-i2c";
4793 - reg = <3000 100>;
4794 - interrupts = <2b 2>;
4795 + reg = <0x3000 0x100>;
4796 + interrupts = <43 2>;
4797 interrupt-parent = <&mpic>;
4798 dfsrr;
4799 };
4800 @@ -90,8 +90,8 @@
4801 #size-cells = <0>;
4802 cell-index = <1>;
4803 compatible = "fsl-i2c";
4804 - reg = <3100 100>;
4805 - interrupts = <2b 2>;
4806 + reg = <0x3100 0x100>;
4807 + interrupts = <43 2>;
4808 interrupt-parent = <&mpic>;
4809 dfsrr;
4810 };
4811 @@ -100,30 +100,71 @@
4812 #address-cells = <1>;
4813 #size-cells = <0>;
4814 compatible = "fsl,gianfar-mdio";
4815 - reg = <24520 20>;
4816 + reg = <0x24520 0x20>;
4817
4818 phy0: ethernet-phy@0 {
4819 interrupt-parent = <&mpic>;
4820 - interrupts = <a 1>;
4821 - reg = <0>;
4822 + interrupts = <10 1>;
4823 + reg = <0x0>;
4824 device_type = "ethernet-phy";
4825 };
4826 phy1: ethernet-phy@1 {
4827 interrupt-parent = <&mpic>;
4828 - interrupts = <a 1>;
4829 - reg = <1>;
4830 + interrupts = <10 1>;
4831 + reg = <0x1>;
4832 device_type = "ethernet-phy";
4833 };
4834 };
4835
4836 + dma@21300 {
4837 + #address-cells = <1>;
4838 + #size-cells = <1>;
4839 + compatible = "fsl,mpc8544-dma", "fsl,eloplus-dma";
4840 + reg = <0x21300 0x4>;
4841 + ranges = <0x0 0x21100 0x200>;
4842 + cell-index = <0>;
4843 + dma-channel@0 {
4844 + compatible = "fsl,mpc8544-dma-channel",
4845 + "fsl,eloplus-dma-channel";
4846 + reg = <0x0 0x80>;
4847 + cell-index = <0>;
4848 + interrupt-parent = <&mpic>;
4849 + interrupts = <20 2>;
4850 + };
4851 + dma-channel@80 {
4852 + compatible = "fsl,mpc8544-dma-channel",
4853 + "fsl,eloplus-dma-channel";
4854 + reg = <0x80 0x80>;
4855 + cell-index = <1>;
4856 + interrupt-parent = <&mpic>;
4857 + interrupts = <21 2>;
4858 + };
4859 + dma-channel@100 {
4860 + compatible = "fsl,mpc8544-dma-channel",
4861 + "fsl,eloplus-dma-channel";
4862 + reg = <0x100 0x80>;
4863 + cell-index = <2>;
4864 + interrupt-parent = <&mpic>;
4865 + interrupts = <22 2>;
4866 + };
4867 + dma-channel@180 {
4868 + compatible = "fsl,mpc8544-dma-channel",
4869 + "fsl,eloplus-dma-channel";
4870 + reg = <0x180 0x80>;
4871 + cell-index = <3>;
4872 + interrupt-parent = <&mpic>;
4873 + interrupts = <23 2>;
4874 + };
4875 + };
4876 +
4877 enet0: ethernet@24000 {
4878 cell-index = <0>;
4879 device_type = "network";
4880 model = "TSEC";
4881 compatible = "gianfar";
4882 - reg = <24000 1000>;
4883 + reg = <0x24000 0x1000>;
4884 local-mac-address = [ 00 00 00 00 00 00 ];
4885 - interrupts = <1d 2 1e 2 22 2>;
4886 + interrupts = <29 2 30 2 34 2>;
4887 interrupt-parent = <&mpic>;
4888 phy-handle = <&phy0>;
4889 phy-connection-type = "rgmii-id";
4890 @@ -134,9 +175,9 @@
4891 device_type = "network";
4892 model = "TSEC";
4893 compatible = "gianfar";
4894 - reg = <26000 1000>;
4895 + reg = <0x26000 0x1000>;
4896 local-mac-address = [ 00 00 00 00 00 00 ];
4897 - interrupts = <1f 2 20 2 21 2>;
4898 + interrupts = <31 2 32 2 33 2>;
4899 interrupt-parent = <&mpic>;
4900 phy-handle = <&phy1>;
4901 phy-connection-type = "rgmii-id";
4902 @@ -146,9 +187,9 @@
4903 cell-index = <0>;
4904 device_type = "serial";
4905 compatible = "ns16550";
4906 - reg = <4500 100>;
4907 + reg = <0x4500 0x100>;
4908 clock-frequency = <0>;
4909 - interrupts = <2a 2>;
4910 + interrupts = <42 2>;
4911 interrupt-parent = <&mpic>;
4912 };
4913
4914 @@ -156,15 +197,15 @@
4915 cell-index = <1>;
4916 device_type = "serial";
4917 compatible = "ns16550";
4918 - reg = <4600 100>;
4919 + reg = <0x4600 0x100>;
4920 clock-frequency = <0>;
4921 - interrupts = <2a 2>;
4922 + interrupts = <42 2>;
4923 interrupt-parent = <&mpic>;
4924 };
4925
4926 global-utilities@e0000 { //global utilities block
4927 compatible = "fsl,mpc8548-guts";
4928 - reg = <e0000 1000>;
4929 + reg = <0xe0000 0x1000>;
4930 fsl,has-rstcr;
4931 };
4932
4933 @@ -173,7 +214,7 @@
4934 interrupt-controller;
4935 #address-cells = <0>;
4936 #interrupt-cells = <2>;
4937 - reg = <40000 40000>;
4938 + reg = <0x40000 0x40000>;
4939 compatible = "chrp,open-pic";
4940 device_type = "open-pic";
4941 big-endian;
4942 @@ -184,32 +225,32 @@
4943 cell-index = <0>;
4944 compatible = "fsl,mpc8540-pci";
4945 device_type = "pci";
4946 - interrupt-map-mask = <f800 0 0 7>;
4947 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
4948 interrupt-map = <
4949
4950 /* IDSEL 0x11 J17 Slot 1 */
4951 - 8800 0 0 1 &mpic 2 1
4952 - 8800 0 0 2 &mpic 3 1
4953 - 8800 0 0 3 &mpic 4 1
4954 - 8800 0 0 4 &mpic 1 1
4955 + 0x8800 0x0 0x0 0x1 &mpic 0x2 0x1
4956 + 0x8800 0x0 0x0 0x2 &mpic 0x3 0x1
4957 + 0x8800 0x0 0x0 0x3 &mpic 0x4 0x1
4958 + 0x8800 0x0 0x0 0x4 &mpic 0x1 0x1
4959
4960 /* IDSEL 0x12 J16 Slot 2 */
4961
4962 - 9000 0 0 1 &mpic 3 1
4963 - 9000 0 0 2 &mpic 4 1
4964 - 9000 0 0 3 &mpic 2 1
4965 - 9000 0 0 4 &mpic 1 1>;
4966 + 0x9000 0x0 0x0 0x1 &mpic 0x3 0x1
4967 + 0x9000 0x0 0x0 0x2 &mpic 0x4 0x1
4968 + 0x9000 0x0 0x0 0x3 &mpic 0x2 0x1
4969 + 0x9000 0x0 0x0 0x4 &mpic 0x1 0x1>;
4970
4971 interrupt-parent = <&mpic>;
4972 - interrupts = <18 2>;
4973 - bus-range = <0 ff>;
4974 - ranges = <02000000 0 c0000000 c0000000 0 20000000
4975 - 01000000 0 00000000 e1000000 0 00010000>;
4976 - clock-frequency = <3f940aa>;
4977 + interrupts = <24 2>;
4978 + bus-range = <0 255>;
4979 + ranges = <0x2000000 0x0 0xc0000000 0xc0000000 0x0 0x20000000
4980 + 0x1000000 0x0 0x0 0xe1000000 0x0 0x10000>;
4981 + clock-frequency = <66666666>;
4982 #interrupt-cells = <1>;
4983 #size-cells = <2>;
4984 #address-cells = <3>;
4985 - reg = <e0008000 1000>;
4986 + reg = <0xe0008000 0x1000>;
4987 };
4988
4989 pci1: pcie@e0009000 {
4990 @@ -219,33 +260,33 @@
4991 #interrupt-cells = <1>;
4992 #size-cells = <2>;
4993 #address-cells = <3>;
4994 - reg = <e0009000 1000>;
4995 - bus-range = <0 ff>;
4996 - ranges = <02000000 0 80000000 80000000 0 20000000
4997 - 01000000 0 00000000 e1010000 0 00010000>;
4998 - clock-frequency = <1fca055>;
4999 + reg = <0xe0009000 0x1000>;
5000 + bus-range = <0 255>;
5001 + ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
5002 + 0x1000000 0x0 0x0 0xe1010000 0x0 0x10000>;
5003 + clock-frequency = <33333333>;
5004 interrupt-parent = <&mpic>;
5005 - interrupts = <1a 2>;
5006 - interrupt-map-mask = <f800 0 0 7>;
5007 + interrupts = <26 2>;
5008 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
5009 interrupt-map = <
5010 /* IDSEL 0x0 */
5011 - 0000 0 0 1 &mpic 4 1
5012 - 0000 0 0 2 &mpic 5 1
5013 - 0000 0 0 3 &mpic 6 1
5014 - 0000 0 0 4 &mpic 7 1
5015 + 0000 0x0 0x0 0x1 &mpic 0x4 0x1
5016 + 0000 0x0 0x0 0x2 &mpic 0x5 0x1
5017 + 0000 0x0 0x0 0x3 &mpic 0x6 0x1
5018 + 0000 0x0 0x0 0x4 &mpic 0x7 0x1
5019 >;
5020 pcie@0 {
5021 - reg = <0 0 0 0 0>;
5022 + reg = <0x0 0x0 0x0 0x0 0x0>;
5023 #size-cells = <2>;
5024 #address-cells = <3>;
5025 device_type = "pci";
5026 - ranges = <02000000 0 80000000
5027 - 02000000 0 80000000
5028 - 0 20000000
5029 -
5030 - 01000000 0 00000000
5031 - 01000000 0 00000000
5032 - 0 00010000>;
5033 + ranges = <0x2000000 0x0 0x80000000
5034 + 0x2000000 0x0 0x80000000
5035 + 0x0 0x20000000
5036 +
5037 + 0x1000000 0x0 0x0
5038 + 0x1000000 0x0 0x0
5039 + 0x0 0x10000>;
5040 };
5041 };
5042
5043 @@ -256,33 +297,33 @@
5044 #interrupt-cells = <1>;
5045 #size-cells = <2>;
5046 #address-cells = <3>;
5047 - reg = <e000a000 1000>;
5048 - bus-range = <0 ff>;
5049 - ranges = <02000000 0 a0000000 a0000000 0 10000000
5050 - 01000000 0 00000000 e1020000 0 00010000>;
5051 - clock-frequency = <1fca055>;
5052 + reg = <0xe000a000 0x1000>;
5053 + bus-range = <0 255>;
5054 + ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x10000000
5055 + 0x1000000 0x0 0x0 0xe1020000 0x0 0x10000>;
5056 + clock-frequency = <33333333>;
5057 interrupt-parent = <&mpic>;
5058 - interrupts = <19 2>;
5059 - interrupt-map-mask = <f800 0 0 7>;
5060 + interrupts = <25 2>;
5061 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
5062 interrupt-map = <
5063 /* IDSEL 0x0 */
5064 - 0000 0 0 1 &mpic 0 1
5065 - 0000 0 0 2 &mpic 1 1
5066 - 0000 0 0 3 &mpic 2 1
5067 - 0000 0 0 4 &mpic 3 1
5068 + 0000 0x0 0x0 0x1 &mpic 0x0 0x1
5069 + 0000 0x0 0x0 0x2 &mpic 0x1 0x1
5070 + 0000 0x0 0x0 0x3 &mpic 0x2 0x1
5071 + 0000 0x0 0x0 0x4 &mpic 0x3 0x1
5072 >;
5073 pcie@0 {
5074 - reg = <0 0 0 0 0>;
5075 + reg = <0x0 0x0 0x0 0x0 0x0>;
5076 #size-cells = <2>;
5077 #address-cells = <3>;
5078 device_type = "pci";
5079 - ranges = <02000000 0 a0000000
5080 - 02000000 0 a0000000
5081 - 0 10000000
5082 -
5083 - 01000000 0 00000000
5084 - 01000000 0 00000000
5085 - 0 00010000>;
5086 + ranges = <0x2000000 0x0 0xa0000000
5087 + 0x2000000 0x0 0xa0000000
5088 + 0x0 0x10000000
5089 +
5090 + 0x1000000 0x0 0x0
5091 + 0x1000000 0x0 0x0
5092 + 0x0 0x10000>;
5093 };
5094 };
5095
5096 @@ -293,72 +334,72 @@
5097 #interrupt-cells = <1>;
5098 #size-cells = <2>;
5099 #address-cells = <3>;
5100 - reg = <e000b000 1000>;
5101 - bus-range = <0 ff>;
5102 - ranges = <02000000 0 b0000000 b0000000 0 00100000
5103 - 01000000 0 00000000 b0100000 0 00100000>;
5104 - clock-frequency = <1fca055>;
5105 + reg = <0xe000b000 0x1000>;
5106 + bus-range = <0 255>;
5107 + ranges = <0x2000000 0x0 0xb0000000 0xb0000000 0x0 0x100000
5108 + 0x1000000 0x0 0x0 0xb0100000 0x0 0x100000>;
5109 + clock-frequency = <33333333>;
5110 interrupt-parent = <&mpic>;
5111 - interrupts = <1b 2>;
5112 - interrupt-map-mask = <ff00 0 0 1>;
5113 + interrupts = <27 2>;
5114 + interrupt-map-mask = <0xff00 0x0 0x0 0x1>;
5115 interrupt-map = <
5116 // IDSEL 0x1c USB
5117 - e000 0 0 1 &i8259 c 2
5118 - e100 0 0 2 &i8259 9 2
5119 - e200 0 0 3 &i8259 a 2
5120 - e300 0 0 4 &i8259 b 2
5121 + 0xe000 0x0 0x0 0x1 &i8259 0xc 0x2
5122 + 0xe100 0x0 0x0 0x2 &i8259 0x9 0x2
5123 + 0xe200 0x0 0x0 0x3 &i8259 0xa 0x2
5124 + 0xe300 0x0 0x0 0x4 &i8259 0xb 0x2
5125
5126 // IDSEL 0x1d Audio
5127 - e800 0 0 1 &i8259 6 2
5128 + 0xe800 0x0 0x0 0x1 &i8259 0x6 0x2
5129
5130 // IDSEL 0x1e Legacy
5131 - f000 0 0 1 &i8259 7 2
5132 - f100 0 0 1 &i8259 7 2
5133 + 0xf000 0x0 0x0 0x1 &i8259 0x7 0x2
5134 + 0xf100 0x0 0x0 0x1 &i8259 0x7 0x2
5135
5136 // IDSEL 0x1f IDE/SATA
5137 - f800 0 0 1 &i8259 e 2
5138 - f900 0 0 1 &i8259 5 2
5139 + 0xf800 0x0 0x0 0x1 &i8259 0xe 0x2
5140 + 0xf900 0x0 0x0 0x1 &i8259 0x5 0x2
5141 >;
5142
5143 pcie@0 {
5144 - reg = <0 0 0 0 0>;
5145 + reg = <0x0 0x0 0x0 0x0 0x0>;
5146 #size-cells = <2>;
5147 #address-cells = <3>;
5148 device_type = "pci";
5149 - ranges = <02000000 0 b0000000
5150 - 02000000 0 b0000000
5151 - 0 00100000
5152 -
5153 - 01000000 0 00000000
5154 - 01000000 0 00000000
5155 - 0 00100000>;
5156 + ranges = <0x2000000 0x0 0xb0000000
5157 + 0x2000000 0x0 0xb0000000
5158 + 0x0 0x100000
5159 +
5160 + 0x1000000 0x0 0x0
5161 + 0x1000000 0x0 0x0
5162 + 0x0 0x100000>;
5163
5164 uli1575@0 {
5165 - reg = <0 0 0 0 0>;
5166 + reg = <0x0 0x0 0x0 0x0 0x0>;
5167 #size-cells = <2>;
5168 #address-cells = <3>;
5169 - ranges = <02000000 0 b0000000
5170 - 02000000 0 b0000000
5171 - 0 00100000
5172 -
5173 - 01000000 0 00000000
5174 - 01000000 0 00000000
5175 - 0 00100000>;
5176 + ranges = <0x2000000 0x0 0xb0000000
5177 + 0x2000000 0x0 0xb0000000
5178 + 0x0 0x100000
5179 +
5180 + 0x1000000 0x0 0x0
5181 + 0x1000000 0x0 0x0
5182 + 0x0 0x100000>;
5183 isa@1e {
5184 device_type = "isa";
5185 #interrupt-cells = <2>;
5186 #size-cells = <1>;
5187 #address-cells = <2>;
5188 - reg = <f000 0 0 0 0>;
5189 - ranges = <1 0
5190 - 01000000 0 0
5191 - 00001000>;
5192 + reg = <0xf000 0x0 0x0 0x0 0x0>;
5193 + ranges = <0x1 0x0
5194 + 0x1000000 0x0 0x0
5195 + 0x1000>;
5196 interrupt-parent = <&i8259>;
5197
5198 i8259: interrupt-controller@20 {
5199 - reg = <1 20 2
5200 - 1 a0 2
5201 - 1 4d0 2>;
5202 + reg = <0x1 0x20 0x2
5203 + 0x1 0xa0 0x2
5204 + 0x1 0x4d0 0x2>;
5205 interrupt-controller;
5206 device_type = "interrupt-controller";
5207 #address-cells = <0>;
5208 @@ -371,28 +412,28 @@
5209 i8042@60 {
5210 #size-cells = <0>;
5211 #address-cells = <1>;
5212 - reg = <1 60 1 1 64 1>;
5213 - interrupts = <1 3 c 3>;
5214 + reg = <0x1 0x60 0x1 0x1 0x64 0x1>;
5215 + interrupts = <1 3 12 3>;
5216 interrupt-parent = <&i8259>;
5217
5218 keyboard@0 {
5219 - reg = <0>;
5220 + reg = <0x0>;
5221 compatible = "pnpPNP,303";
5222 };
5223
5224 mouse@1 {
5225 - reg = <1>;
5226 + reg = <0x1>;
5227 compatible = "pnpPNP,f03";
5228 };
5229 };
5230
5231 rtc@70 {
5232 compatible = "pnpPNP,b00";
5233 - reg = <1 70 2>;
5234 + reg = <0x1 0x70 0x2>;
5235 };
5236
5237 gpio@400 {
5238 - reg = <1 400 80>;
5239 + reg = <0x1 0x400 0x80>;
5240 };
5241 };
5242 };
5243 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8548cds.dts
5244 ===================================================================
5245 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8548cds.dts
5246 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8548cds.dts
5247 @@ -1,7 +1,7 @@
5248 /*
5249 * MPC8548 CDS Device Tree Source
5250 *
5251 - * Copyright 2006 Freescale Semiconductor Inc.
5252 + * Copyright 2006, 2008 Freescale Semiconductor Inc.
5253 *
5254 * This program is free software; you can redistribute it and/or modify it
5255 * under the terms of the GNU General Public License as published by the
5256 @@ -9,6 +9,7 @@
5257 * option) any later version.
5258 */
5259
5260 +/dts-v1/;
5261
5262 / {
5263 model = "MPC8548CDS";
5264 @@ -36,11 +37,11 @@
5265
5266 PowerPC,8548@0 {
5267 device_type = "cpu";
5268 - reg = <0>;
5269 - d-cache-line-size = <20>; // 32 bytes
5270 - i-cache-line-size = <20>; // 32 bytes
5271 - d-cache-size = <8000>; // L1, 32K
5272 - i-cache-size = <8000>; // L1, 32K
5273 + reg = <0x0>;
5274 + d-cache-line-size = <32>; // 32 bytes
5275 + i-cache-line-size = <32>; // 32 bytes
5276 + d-cache-size = <0x8000>; // L1, 32K
5277 + i-cache-size = <0x8000>; // L1, 32K
5278 timebase-frequency = <0>; // 33 MHz, from uboot
5279 bus-frequency = <0>; // 166 MHz
5280 clock-frequency = <0>; // 825 MHz, from uboot
5281 @@ -49,31 +50,31 @@
5282
5283 memory {
5284 device_type = "memory";
5285 - reg = <00000000 08000000>; // 128M at 0x0
5286 + reg = <0x0 0x8000000>; // 128M at 0x0
5287 };
5288
5289 soc8548@e0000000 {
5290 #address-cells = <1>;
5291 #size-cells = <1>;
5292 device_type = "soc";
5293 - ranges = <00000000 e0000000 00100000>;
5294 - reg = <e0000000 00001000>; // CCSRBAR
5295 + ranges = <0x0 0xe0000000 0x100000>;
5296 + reg = <0xe0000000 0x1000>; // CCSRBAR
5297 bus-frequency = <0>;
5298
5299 memory-controller@2000 {
5300 compatible = "fsl,8548-memory-controller";
5301 - reg = <2000 1000>;
5302 + reg = <0x2000 0x1000>;
5303 interrupt-parent = <&mpic>;
5304 - interrupts = <12 2>;
5305 + interrupts = <18 2>;
5306 };
5307
5308 l2-cache-controller@20000 {
5309 compatible = "fsl,8548-l2-cache-controller";
5310 - reg = <20000 1000>;
5311 - cache-line-size = <20>; // 32 bytes
5312 - cache-size = <80000>; // L2, 512K
5313 + reg = <0x20000 0x1000>;
5314 + cache-line-size = <32>; // 32 bytes
5315 + cache-size = <0x80000>; // L2, 512K
5316 interrupt-parent = <&mpic>;
5317 - interrupts = <10 2>;
5318 + interrupts = <16 2>;
5319 };
5320
5321 i2c@3000 {
5322 @@ -81,8 +82,8 @@
5323 #size-cells = <0>;
5324 cell-index = <0>;
5325 compatible = "fsl-i2c";
5326 - reg = <3000 100>;
5327 - interrupts = <2b 2>;
5328 + reg = <0x3000 0x100>;
5329 + interrupts = <43 2>;
5330 interrupt-parent = <&mpic>;
5331 dfsrr;
5332 };
5333 @@ -92,8 +93,8 @@
5334 #size-cells = <0>;
5335 cell-index = <1>;
5336 compatible = "fsl-i2c";
5337 - reg = <3100 100>;
5338 - interrupts = <2b 2>;
5339 + reg = <0x3100 0x100>;
5340 + interrupts = <43 2>;
5341 interrupt-parent = <&mpic>;
5342 dfsrr;
5343 };
5344 @@ -102,30 +103,30 @@
5345 #address-cells = <1>;
5346 #size-cells = <0>;
5347 compatible = "fsl,gianfar-mdio";
5348 - reg = <24520 20>;
5349 + reg = <0x24520 0x20>;
5350
5351 phy0: ethernet-phy@0 {
5352 interrupt-parent = <&mpic>;
5353 interrupts = <5 1>;
5354 - reg = <0>;
5355 + reg = <0x0>;
5356 device_type = "ethernet-phy";
5357 };
5358 phy1: ethernet-phy@1 {
5359 interrupt-parent = <&mpic>;
5360 interrupts = <5 1>;
5361 - reg = <1>;
5362 + reg = <0x1>;
5363 device_type = "ethernet-phy";
5364 };
5365 phy2: ethernet-phy@2 {
5366 interrupt-parent = <&mpic>;
5367 interrupts = <5 1>;
5368 - reg = <2>;
5369 + reg = <0x2>;
5370 device_type = "ethernet-phy";
5371 };
5372 phy3: ethernet-phy@3 {
5373 interrupt-parent = <&mpic>;
5374 interrupts = <5 1>;
5375 - reg = <3>;
5376 + reg = <0x3>;
5377 device_type = "ethernet-phy";
5378 };
5379 };
5380 @@ -135,9 +136,9 @@
5381 device_type = "network";
5382 model = "eTSEC";
5383 compatible = "gianfar";
5384 - reg = <24000 1000>;
5385 + reg = <0x24000 0x1000>;
5386 local-mac-address = [ 00 00 00 00 00 00 ];
5387 - interrupts = <1d 2 1e 2 22 2>;
5388 + interrupts = <29 2 30 2 34 2>;
5389 interrupt-parent = <&mpic>;
5390 phy-handle = <&phy0>;
5391 };
5392 @@ -147,9 +148,9 @@
5393 device_type = "network";
5394 model = "eTSEC";
5395 compatible = "gianfar";
5396 - reg = <25000 1000>;
5397 + reg = <0x25000 0x1000>;
5398 local-mac-address = [ 00 00 00 00 00 00 ];
5399 - interrupts = <23 2 24 2 28 2>;
5400 + interrupts = <35 2 36 2 40 2>;
5401 interrupt-parent = <&mpic>;
5402 phy-handle = <&phy1>;
5403 };
5404 @@ -160,9 +161,9 @@
5405 device_type = "network";
5406 model = "eTSEC";
5407 compatible = "gianfar";
5408 - reg = <26000 1000>;
5409 + reg = <0x26000 0x1000>;
5410 local-mac-address = [ 00 00 00 00 00 00 ];
5411 - interrupts = <1f 2 20 2 21 2>;
5412 + interrupts = <31 2 32 2 33 2>;
5413 interrupt-parent = <&mpic>;
5414 phy-handle = <&phy2>;
5415 };
5416 @@ -172,9 +173,9 @@
5417 device_type = "network";
5418 model = "eTSEC";
5419 compatible = "gianfar";
5420 - reg = <27000 1000>;
5421 + reg = <0x27000 0x1000>;
5422 local-mac-address = [ 00 00 00 00 00 00 ];
5423 - interrupts = <25 2 26 2 27 2>;
5424 + interrupts = <37 2 38 2 39 2>;
5425 interrupt-parent = <&mpic>;
5426 phy-handle = <&phy3>;
5427 };
5428 @@ -184,9 +185,9 @@
5429 cell-index = <0>;
5430 device_type = "serial";
5431 compatible = "ns16550";
5432 - reg = <4500 100>; // reg base, size
5433 + reg = <0x4500 0x100>; // reg base, size
5434 clock-frequency = <0>; // should we fill in in uboot?
5435 - interrupts = <2a 2>;
5436 + interrupts = <42 2>;
5437 interrupt-parent = <&mpic>;
5438 };
5439
5440 @@ -194,15 +195,15 @@
5441 cell-index = <1>;
5442 device_type = "serial";
5443 compatible = "ns16550";
5444 - reg = <4600 100>; // reg base, size
5445 + reg = <0x4600 0x100>; // reg base, size
5446 clock-frequency = <0>; // should we fill in in uboot?
5447 - interrupts = <2a 2>;
5448 + interrupts = <42 2>;
5449 interrupt-parent = <&mpic>;
5450 };
5451
5452 global-utilities@e0000 { //global utilities reg
5453 compatible = "fsl,mpc8548-guts";
5454 - reg = <e0000 1000>;
5455 + reg = <0xe0000 0x1000>;
5456 fsl,has-rstcr;
5457 };
5458
5459 @@ -211,7 +212,7 @@
5460 interrupt-controller;
5461 #address-cells = <0>;
5462 #interrupt-cells = <2>;
5463 - reg = <40000 40000>;
5464 + reg = <0x40000 0x40000>;
5465 compatible = "chrp,open-pic";
5466 device_type = "open-pic";
5467 big-endian;
5468 @@ -220,139 +221,139 @@
5469
5470 pci0: pci@e0008000 {
5471 cell-index = <0>;
5472 - interrupt-map-mask = <f800 0 0 7>;
5473 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
5474 interrupt-map = <
5475 /* IDSEL 0x4 (PCIX Slot 2) */
5476 - 02000 0 0 1 &mpic 0 1
5477 - 02000 0 0 2 &mpic 1 1
5478 - 02000 0 0 3 &mpic 2 1
5479 - 02000 0 0 4 &mpic 3 1
5480 + 0x2000 0x0 0x0 0x1 &mpic 0x0 0x1
5481 + 0x2000 0x0 0x0 0x2 &mpic 0x1 0x1
5482 + 0x2000 0x0 0x0 0x3 &mpic 0x2 0x1
5483 + 0x2000 0x0 0x0 0x4 &mpic 0x3 0x1
5484
5485 /* IDSEL 0x5 (PCIX Slot 3) */
5486 - 02800 0 0 1 &mpic 1 1
5487 - 02800 0 0 2 &mpic 2 1
5488 - 02800 0 0 3 &mpic 3 1
5489 - 02800 0 0 4 &mpic 0 1
5490 + 0x2800 0x0 0x0 0x1 &mpic 0x1 0x1
5491 + 0x2800 0x0 0x0 0x2 &mpic 0x2 0x1
5492 + 0x2800 0x0 0x0 0x3 &mpic 0x3 0x1
5493 + 0x2800 0x0 0x0 0x4 &mpic 0x0 0x1
5494
5495 /* IDSEL 0x6 (PCIX Slot 4) */
5496 - 03000 0 0 1 &mpic 2 1
5497 - 03000 0 0 2 &mpic 3 1
5498 - 03000 0 0 3 &mpic 0 1
5499 - 03000 0 0 4 &mpic 1 1
5500 + 0x3000 0x0 0x0 0x1 &mpic 0x2 0x1
5501 + 0x3000 0x0 0x0 0x2 &mpic 0x3 0x1
5502 + 0x3000 0x0 0x0 0x3 &mpic 0x0 0x1
5503 + 0x3000 0x0 0x0 0x4 &mpic 0x1 0x1
5504
5505 /* IDSEL 0x8 (PCIX Slot 5) */
5506 - 04000 0 0 1 &mpic 0 1
5507 - 04000 0 0 2 &mpic 1 1
5508 - 04000 0 0 3 &mpic 2 1
5509 - 04000 0 0 4 &mpic 3 1
5510 + 0x4000 0x0 0x0 0x1 &mpic 0x0 0x1
5511 + 0x4000 0x0 0x0 0x2 &mpic 0x1 0x1
5512 + 0x4000 0x0 0x0 0x3 &mpic 0x2 0x1
5513 + 0x4000 0x0 0x0 0x4 &mpic 0x3 0x1
5514
5515 /* IDSEL 0xC (Tsi310 bridge) */
5516 - 06000 0 0 1 &mpic 0 1
5517 - 06000 0 0 2 &mpic 1 1
5518 - 06000 0 0 3 &mpic 2 1
5519 - 06000 0 0 4 &mpic 3 1
5520 + 0x6000 0x0 0x0 0x1 &mpic 0x0 0x1
5521 + 0x6000 0x0 0x0 0x2 &mpic 0x1 0x1
5522 + 0x6000 0x0 0x0 0x3 &mpic 0x2 0x1
5523 + 0x6000 0x0 0x0 0x4 &mpic 0x3 0x1
5524
5525 /* IDSEL 0x14 (Slot 2) */
5526 - 0a000 0 0 1 &mpic 0 1
5527 - 0a000 0 0 2 &mpic 1 1
5528 - 0a000 0 0 3 &mpic 2 1
5529 - 0a000 0 0 4 &mpic 3 1
5530 + 0xa000 0x0 0x0 0x1 &mpic 0x0 0x1
5531 + 0xa000 0x0 0x0 0x2 &mpic 0x1 0x1
5532 + 0xa000 0x0 0x0 0x3 &mpic 0x2 0x1
5533 + 0xa000 0x0 0x0 0x4 &mpic 0x3 0x1
5534
5535 /* IDSEL 0x15 (Slot 3) */
5536 - 0a800 0 0 1 &mpic 1 1
5537 - 0a800 0 0 2 &mpic 2 1
5538 - 0a800 0 0 3 &mpic 3 1
5539 - 0a800 0 0 4 &mpic 0 1
5540 + 0xa800 0x0 0x0 0x1 &mpic 0x1 0x1
5541 + 0xa800 0x0 0x0 0x2 &mpic 0x2 0x1
5542 + 0xa800 0x0 0x0 0x3 &mpic 0x3 0x1
5543 + 0xa800 0x0 0x0 0x4 &mpic 0x0 0x1
5544
5545 /* IDSEL 0x16 (Slot 4) */
5546 - 0b000 0 0 1 &mpic 2 1
5547 - 0b000 0 0 2 &mpic 3 1
5548 - 0b000 0 0 3 &mpic 0 1
5549 - 0b000 0 0 4 &mpic 1 1
5550 + 0xb000 0x0 0x0 0x1 &mpic 0x2 0x1
5551 + 0xb000 0x0 0x0 0x2 &mpic 0x3 0x1
5552 + 0xb000 0x0 0x0 0x3 &mpic 0x0 0x1
5553 + 0xb000 0x0 0x0 0x4 &mpic 0x1 0x1
5554
5555 /* IDSEL 0x18 (Slot 5) */
5556 - 0c000 0 0 1 &mpic 0 1
5557 - 0c000 0 0 2 &mpic 1 1
5558 - 0c000 0 0 3 &mpic 2 1
5559 - 0c000 0 0 4 &mpic 3 1
5560 + 0xc000 0x0 0x0 0x1 &mpic 0x0 0x1
5561 + 0xc000 0x0 0x0 0x2 &mpic 0x1 0x1
5562 + 0xc000 0x0 0x0 0x3 &mpic 0x2 0x1
5563 + 0xc000 0x0 0x0 0x4 &mpic 0x3 0x1
5564
5565 /* IDSEL 0x1C (Tsi310 bridge PCI primary) */
5566 - 0E000 0 0 1 &mpic 0 1
5567 - 0E000 0 0 2 &mpic 1 1
5568 - 0E000 0 0 3 &mpic 2 1
5569 - 0E000 0 0 4 &mpic 3 1>;
5570 + 0xe000 0x0 0x0 0x1 &mpic 0x0 0x1
5571 + 0xe000 0x0 0x0 0x2 &mpic 0x1 0x1
5572 + 0xe000 0x0 0x0 0x3 &mpic 0x2 0x1
5573 + 0xe000 0x0 0x0 0x4 &mpic 0x3 0x1>;
5574
5575 interrupt-parent = <&mpic>;
5576 - interrupts = <18 2>;
5577 + interrupts = <24 2>;
5578 bus-range = <0 0>;
5579 - ranges = <02000000 0 80000000 80000000 0 10000000
5580 - 01000000 0 00000000 e2000000 0 00800000>;
5581 - clock-frequency = <3f940aa>;
5582 + ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x10000000
5583 + 0x1000000 0x0 0x0 0xe2000000 0x0 0x800000>;
5584 + clock-frequency = <66666666>;
5585 #interrupt-cells = <1>;
5586 #size-cells = <2>;
5587 #address-cells = <3>;
5588 - reg = <e0008000 1000>;
5589 + reg = <0xe0008000 0x1000>;
5590 compatible = "fsl,mpc8540-pcix", "fsl,mpc8540-pci";
5591 device_type = "pci";
5592
5593 pci_bridge@1c {
5594 - interrupt-map-mask = <f800 0 0 7>;
5595 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
5596 interrupt-map = <
5597
5598 /* IDSEL 0x00 (PrPMC Site) */
5599 - 0000 0 0 1 &mpic 0 1
5600 - 0000 0 0 2 &mpic 1 1
5601 - 0000 0 0 3 &mpic 2 1
5602 - 0000 0 0 4 &mpic 3 1
5603 + 0000 0x0 0x0 0x1 &mpic 0x0 0x1
5604 + 0000 0x0 0x0 0x2 &mpic 0x1 0x1
5605 + 0000 0x0 0x0 0x3 &mpic 0x2 0x1
5606 + 0000 0x0 0x0 0x4 &mpic 0x3 0x1
5607
5608 /* IDSEL 0x04 (VIA chip) */
5609 - 2000 0 0 1 &mpic 0 1
5610 - 2000 0 0 2 &mpic 1 1
5611 - 2000 0 0 3 &mpic 2 1
5612 - 2000 0 0 4 &mpic 3 1
5613 + 0x2000 0x0 0x0 0x1 &mpic 0x0 0x1
5614 + 0x2000 0x0 0x0 0x2 &mpic 0x1 0x1
5615 + 0x2000 0x0 0x0 0x3 &mpic 0x2 0x1
5616 + 0x2000 0x0 0x0 0x4 &mpic 0x3 0x1
5617
5618 /* IDSEL 0x05 (8139) */
5619 - 2800 0 0 1 &mpic 1 1
5620 + 0x2800 0x0 0x0 0x1 &mpic 0x1 0x1
5621
5622 /* IDSEL 0x06 (Slot 6) */
5623 - 3000 0 0 1 &mpic 2 1
5624 - 3000 0 0 2 &mpic 3 1
5625 - 3000 0 0 3 &mpic 0 1
5626 - 3000 0 0 4 &mpic 1 1
5627 + 0x3000 0x0 0x0 0x1 &mpic 0x2 0x1
5628 + 0x3000 0x0 0x0 0x2 &mpic 0x3 0x1
5629 + 0x3000 0x0 0x0 0x3 &mpic 0x0 0x1
5630 + 0x3000 0x0 0x0 0x4 &mpic 0x1 0x1
5631
5632 /* IDESL 0x07 (Slot 7) */
5633 - 3800 0 0 1 &mpic 3 1
5634 - 3800 0 0 2 &mpic 0 1
5635 - 3800 0 0 3 &mpic 1 1
5636 - 3800 0 0 4 &mpic 2 1>;
5637 + 0x3800 0x0 0x0 0x1 &mpic 0x3 0x1
5638 + 0x3800 0x0 0x0 0x2 &mpic 0x0 0x1
5639 + 0x3800 0x0 0x0 0x3 &mpic 0x1 0x1
5640 + 0x3800 0x0 0x0 0x4 &mpic 0x2 0x1>;
5641
5642 - reg = <e000 0 0 0 0>;
5643 + reg = <0xe000 0x0 0x0 0x0 0x0>;
5644 #interrupt-cells = <1>;
5645 #size-cells = <2>;
5646 #address-cells = <3>;
5647 - ranges = <02000000 0 80000000
5648 - 02000000 0 80000000
5649 - 0 20000000
5650 - 01000000 0 00000000
5651 - 01000000 0 00000000
5652 - 0 00080000>;
5653 - clock-frequency = <1fca055>;
5654 + ranges = <0x2000000 0x0 0x80000000
5655 + 0x2000000 0x0 0x80000000
5656 + 0x0 0x20000000
5657 + 0x1000000 0x0 0x0
5658 + 0x1000000 0x0 0x0
5659 + 0x0 0x80000>;
5660 + clock-frequency = <33333333>;
5661
5662 isa@4 {
5663 device_type = "isa";
5664 #interrupt-cells = <2>;
5665 #size-cells = <1>;
5666 #address-cells = <2>;
5667 - reg = <2000 0 0 0 0>;
5668 - ranges = <1 0 01000000 0 0 00001000>;
5669 + reg = <0x2000 0x0 0x0 0x0 0x0>;
5670 + ranges = <0x1 0x0 0x1000000 0x0 0x0 0x1000>;
5671 interrupt-parent = <&i8259>;
5672
5673 i8259: interrupt-controller@20 {
5674 interrupt-controller;
5675 device_type = "interrupt-controller";
5676 - reg = <1 20 2
5677 - 1 a0 2
5678 - 1 4d0 2>;
5679 + reg = <0x1 0x20 0x2
5680 + 0x1 0xa0 0x2
5681 + 0x1 0x4d0 0x2>;
5682 #address-cells = <0>;
5683 #interrupt-cells = <2>;
5684 compatible = "chrp,iic";
5685 @@ -362,7 +363,7 @@
5686
5687 rtc@70 {
5688 compatible = "pnpPNP,b00";
5689 - reg = <1 70 2>;
5690 + reg = <0x1 0x70 0x2>;
5691 };
5692 };
5693 };
5694 @@ -370,64 +371,64 @@
5695
5696 pci1: pci@e0009000 {
5697 cell-index = <1>;
5698 - interrupt-map-mask = <f800 0 0 7>;
5699 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
5700 interrupt-map = <
5701
5702 /* IDSEL 0x15 */
5703 - a800 0 0 1 &mpic b 1
5704 - a800 0 0 2 &mpic 1 1
5705 - a800 0 0 3 &mpic 2 1
5706 - a800 0 0 4 &mpic 3 1>;
5707 + 0xa800 0x0 0x0 0x1 &mpic 0xb 0x1
5708 + 0xa800 0x0 0x0 0x2 &mpic 0x1 0x1
5709 + 0xa800 0x0 0x0 0x3 &mpic 0x2 0x1
5710 + 0xa800 0x0 0x0 0x4 &mpic 0x3 0x1>;
5711
5712 interrupt-parent = <&mpic>;
5713 - interrupts = <19 2>;
5714 + interrupts = <25 2>;
5715 bus-range = <0 0>;
5716 - ranges = <02000000 0 90000000 90000000 0 10000000
5717 - 01000000 0 00000000 e2800000 0 00800000>;
5718 - clock-frequency = <3f940aa>;
5719 + ranges = <0x2000000 0x0 0x90000000 0x90000000 0x0 0x10000000
5720 + 0x1000000 0x0 0x0 0xe2800000 0x0 0x800000>;
5721 + clock-frequency = <66666666>;
5722 #interrupt-cells = <1>;
5723 #size-cells = <2>;
5724 #address-cells = <3>;
5725 - reg = <e0009000 1000>;
5726 + reg = <0xe0009000 0x1000>;
5727 compatible = "fsl,mpc8540-pci";
5728 device_type = "pci";
5729 };
5730
5731 pci2: pcie@e000a000 {
5732 cell-index = <2>;
5733 - interrupt-map-mask = <f800 0 0 7>;
5734 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
5735 interrupt-map = <
5736
5737 /* IDSEL 0x0 (PEX) */
5738 - 00000 0 0 1 &mpic 0 1
5739 - 00000 0 0 2 &mpic 1 1
5740 - 00000 0 0 3 &mpic 2 1
5741 - 00000 0 0 4 &mpic 3 1>;
5742 + 00000 0x0 0x0 0x1 &mpic 0x0 0x1
5743 + 00000 0x0 0x0 0x2 &mpic 0x1 0x1
5744 + 00000 0x0 0x0 0x3 &mpic 0x2 0x1
5745 + 00000 0x0 0x0 0x4 &mpic 0x3 0x1>;
5746
5747 interrupt-parent = <&mpic>;
5748 - interrupts = <1a 2>;
5749 - bus-range = <0 ff>;
5750 - ranges = <02000000 0 a0000000 a0000000 0 20000000
5751 - 01000000 0 00000000 e3000000 0 08000000>;
5752 - clock-frequency = <1fca055>;
5753 + interrupts = <26 2>;
5754 + bus-range = <0 255>;
5755 + ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
5756 + 0x1000000 0x0 0x0 0xe3000000 0x0 0x8000000>;
5757 + clock-frequency = <33333333>;
5758 #interrupt-cells = <1>;
5759 #size-cells = <2>;
5760 #address-cells = <3>;
5761 - reg = <e000a000 1000>;
5762 + reg = <0xe000a000 0x1000>;
5763 compatible = "fsl,mpc8548-pcie";
5764 device_type = "pci";
5765 pcie@0 {
5766 - reg = <0 0 0 0 0>;
5767 + reg = <0x0 0x0 0x0 0x0 0x0>;
5768 #size-cells = <2>;
5769 #address-cells = <3>;
5770 device_type = "pci";
5771 - ranges = <02000000 0 a0000000
5772 - 02000000 0 a0000000
5773 - 0 20000000
5774 -
5775 - 01000000 0 00000000
5776 - 01000000 0 00000000
5777 - 0 08000000>;
5778 + ranges = <0x2000000 0x0 0xa0000000
5779 + 0x2000000 0x0 0xa0000000
5780 + 0x0 0x20000000
5781 +
5782 + 0x1000000 0x0 0x0
5783 + 0x1000000 0x0 0x0
5784 + 0x0 0x8000000>;
5785 };
5786 };
5787 };
5788 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8555cds.dts
5789 ===================================================================
5790 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8555cds.dts
5791 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8555cds.dts
5792 @@ -1,7 +1,7 @@
5793 /*
5794 * MPC8555 CDS Device Tree Source
5795 *
5796 - * Copyright 2006 Freescale Semiconductor Inc.
5797 + * Copyright 2006, 2008 Freescale Semiconductor Inc.
5798 *
5799 * This program is free software; you can redistribute it and/or modify it
5800 * under the terms of the GNU General Public License as published by the
5801 @@ -9,6 +9,7 @@
5802 * option) any later version.
5803 */
5804
5805 +/dts-v1/;
5806
5807 / {
5808 model = "MPC8555CDS";
5809 @@ -31,11 +32,11 @@
5810
5811 PowerPC,8555@0 {
5812 device_type = "cpu";
5813 - reg = <0>;
5814 - d-cache-line-size = <20>; // 32 bytes
5815 - i-cache-line-size = <20>; // 32 bytes
5816 - d-cache-size = <8000>; // L1, 32K
5817 - i-cache-size = <8000>; // L1, 32K
5818 + reg = <0x0>;
5819 + d-cache-line-size = <32>; // 32 bytes
5820 + i-cache-line-size = <32>; // 32 bytes
5821 + d-cache-size = <0x8000>; // L1, 32K
5822 + i-cache-size = <0x8000>; // L1, 32K
5823 timebase-frequency = <0>; // 33 MHz, from uboot
5824 bus-frequency = <0>; // 166 MHz
5825 clock-frequency = <0>; // 825 MHz, from uboot
5826 @@ -44,31 +45,31 @@
5827
5828 memory {
5829 device_type = "memory";
5830 - reg = <00000000 08000000>; // 128M at 0x0
5831 + reg = <0x0 0x8000000>; // 128M at 0x0
5832 };
5833
5834 soc8555@e0000000 {
5835 #address-cells = <1>;
5836 #size-cells = <1>;
5837 device_type = "soc";
5838 - ranges = <0 e0000000 00100000>;
5839 - reg = <e0000000 00001000>; // CCSRBAR 1M
5840 + ranges = <0x0 0xe0000000 0x100000>;
5841 + reg = <0xe0000000 0x1000>; // CCSRBAR 1M
5842 bus-frequency = <0>;
5843
5844 memory-controller@2000 {
5845 compatible = "fsl,8555-memory-controller";
5846 - reg = <2000 1000>;
5847 + reg = <0x2000 0x1000>;
5848 interrupt-parent = <&mpic>;
5849 - interrupts = <12 2>;
5850 + interrupts = <18 2>;
5851 };
5852
5853 l2-cache-controller@20000 {
5854 compatible = "fsl,8555-l2-cache-controller";
5855 - reg = <20000 1000>;
5856 - cache-line-size = <20>; // 32 bytes
5857 - cache-size = <40000>; // L2, 256K
5858 + reg = <0x20000 0x1000>;
5859 + cache-line-size = <32>; // 32 bytes
5860 + cache-size = <0x40000>; // L2, 256K
5861 interrupt-parent = <&mpic>;
5862 - interrupts = <10 2>;
5863 + interrupts = <16 2>;
5864 };
5865
5866 i2c@3000 {
5867 @@ -76,8 +77,8 @@
5868 #size-cells = <0>;
5869 cell-index = <0>;
5870 compatible = "fsl-i2c";
5871 - reg = <3000 100>;
5872 - interrupts = <2b 2>;
5873 + reg = <0x3000 0x100>;
5874 + interrupts = <43 2>;
5875 interrupt-parent = <&mpic>;
5876 dfsrr;
5877 };
5878 @@ -86,18 +87,18 @@
5879 #address-cells = <1>;
5880 #size-cells = <0>;
5881 compatible = "fsl,gianfar-mdio";
5882 - reg = <24520 20>;
5883 + reg = <0x24520 0x20>;
5884
5885 phy0: ethernet-phy@0 {
5886 interrupt-parent = <&mpic>;
5887 interrupts = <5 1>;
5888 - reg = <0>;
5889 + reg = <0x0>;
5890 device_type = "ethernet-phy";
5891 };
5892 phy1: ethernet-phy@1 {
5893 interrupt-parent = <&mpic>;
5894 interrupts = <5 1>;
5895 - reg = <1>;
5896 + reg = <0x1>;
5897 device_type = "ethernet-phy";
5898 };
5899 };
5900 @@ -107,9 +108,9 @@
5901 device_type = "network";
5902 model = "TSEC";
5903 compatible = "gianfar";
5904 - reg = <24000 1000>;
5905 + reg = <0x24000 0x1000>;
5906 local-mac-address = [ 00 00 00 00 00 00 ];
5907 - interrupts = <1d 2 1e 2 22 2>;
5908 + interrupts = <29 2 30 2 34 2>;
5909 interrupt-parent = <&mpic>;
5910 phy-handle = <&phy0>;
5911 };
5912 @@ -119,9 +120,9 @@
5913 device_type = "network";
5914 model = "TSEC";
5915 compatible = "gianfar";
5916 - reg = <25000 1000>;
5917 + reg = <0x25000 0x1000>;
5918 local-mac-address = [ 00 00 00 00 00 00 ];
5919 - interrupts = <23 2 24 2 28 2>;
5920 + interrupts = <35 2 36 2 40 2>;
5921 interrupt-parent = <&mpic>;
5922 phy-handle = <&phy1>;
5923 };
5924 @@ -130,9 +131,9 @@
5925 cell-index = <0>;
5926 device_type = "serial";
5927 compatible = "ns16550";
5928 - reg = <4500 100>; // reg base, size
5929 + reg = <0x4500 0x100>; // reg base, size
5930 clock-frequency = <0>; // should we fill in in uboot?
5931 - interrupts = <2a 2>;
5932 + interrupts = <42 2>;
5933 interrupt-parent = <&mpic>;
5934 };
5935
5936 @@ -140,9 +141,9 @@
5937 cell-index = <1>;
5938 device_type = "serial";
5939 compatible = "ns16550";
5940 - reg = <4600 100>; // reg base, size
5941 + reg = <0x4600 0x100>; // reg base, size
5942 clock-frequency = <0>; // should we fill in in uboot?
5943 - interrupts = <2a 2>;
5944 + interrupts = <42 2>;
5945 interrupt-parent = <&mpic>;
5946 };
5947
5948 @@ -151,7 +152,7 @@
5949 interrupt-controller;
5950 #address-cells = <0>;
5951 #interrupt-cells = <2>;
5952 - reg = <40000 40000>;
5953 + reg = <0x40000 0x40000>;
5954 compatible = "chrp,open-pic";
5955 device_type = "open-pic";
5956 big-endian;
5957 @@ -161,17 +162,17 @@
5958 #address-cells = <1>;
5959 #size-cells = <1>;
5960 compatible = "fsl,mpc8555-cpm", "fsl,cpm2";
5961 - reg = <919c0 30>;
5962 + reg = <0x919c0 0x30>;
5963 ranges;
5964
5965 muram@80000 {
5966 #address-cells = <1>;
5967 #size-cells = <1>;
5968 - ranges = <0 80000 10000>;
5969 + ranges = <0x0 0x80000 0x10000>;
5970
5971 data@0 {
5972 compatible = "fsl,cpm-muram-data";
5973 - reg = <0 2000 9000 1000>;
5974 + reg = <0x0 0x2000 0x9000 0x1000>;
5975 };
5976 };
5977
5978 @@ -179,16 +180,16 @@
5979 compatible = "fsl,mpc8555-brg",
5980 "fsl,cpm2-brg",
5981 "fsl,cpm-brg";
5982 - reg = <919f0 10 915f0 10>;
5983 + reg = <0x919f0 0x10 0x915f0 0x10>;
5984 };
5985
5986 cpmpic: pic@90c00 {
5987 interrupt-controller;
5988 #address-cells = <0>;
5989 #interrupt-cells = <2>;
5990 - interrupts = <2e 2>;
5991 + interrupts = <46 2>;
5992 interrupt-parent = <&mpic>;
5993 - reg = <90c00 80>;
5994 + reg = <0x90c00 0x80>;
5995 compatible = "fsl,mpc8555-cpm-pic", "fsl,cpm2-pic";
5996 };
5997 };
5998 @@ -196,68 +197,68 @@
5999
6000 pci0: pci@e0008000 {
6001 cell-index = <0>;
6002 - interrupt-map-mask = <1f800 0 0 7>;
6003 + interrupt-map-mask = <0x1f800 0x0 0x0 0x7>;
6004 interrupt-map = <
6005
6006 /* IDSEL 0x10 */
6007 - 08000 0 0 1 &mpic 0 1
6008 - 08000 0 0 2 &mpic 1 1
6009 - 08000 0 0 3 &mpic 2 1
6010 - 08000 0 0 4 &mpic 3 1
6011 + 0x8000 0x0 0x0 0x1 &mpic 0x0 0x1
6012 + 0x8000 0x0 0x0 0x2 &mpic 0x1 0x1
6013 + 0x8000 0x0 0x0 0x3 &mpic 0x2 0x1
6014 + 0x8000 0x0 0x0 0x4 &mpic 0x3 0x1
6015
6016 /* IDSEL 0x11 */
6017 - 08800 0 0 1 &mpic 0 1
6018 - 08800 0 0 2 &mpic 1 1
6019 - 08800 0 0 3 &mpic 2 1
6020 - 08800 0 0 4 &mpic 3 1
6021 + 0x8800 0x0 0x0 0x1 &mpic 0x0 0x1
6022 + 0x8800 0x0 0x0 0x2 &mpic 0x1 0x1
6023 + 0x8800 0x0 0x0 0x3 &mpic 0x2 0x1
6024 + 0x8800 0x0 0x0 0x4 &mpic 0x3 0x1
6025
6026 /* IDSEL 0x12 (Slot 1) */
6027 - 09000 0 0 1 &mpic 0 1
6028 - 09000 0 0 2 &mpic 1 1
6029 - 09000 0 0 3 &mpic 2 1
6030 - 09000 0 0 4 &mpic 3 1
6031 + 0x9000 0x0 0x0 0x1 &mpic 0x0 0x1
6032 + 0x9000 0x0 0x0 0x2 &mpic 0x1 0x1
6033 + 0x9000 0x0 0x0 0x3 &mpic 0x2 0x1
6034 + 0x9000 0x0 0x0 0x4 &mpic 0x3 0x1
6035
6036 /* IDSEL 0x13 (Slot 2) */
6037 - 09800 0 0 1 &mpic 1 1
6038 - 09800 0 0 2 &mpic 2 1
6039 - 09800 0 0 3 &mpic 3 1
6040 - 09800 0 0 4 &mpic 0 1
6041 + 0x9800 0x0 0x0 0x1 &mpic 0x1 0x1
6042 + 0x9800 0x0 0x0 0x2 &mpic 0x2 0x1
6043 + 0x9800 0x0 0x0 0x3 &mpic 0x3 0x1
6044 + 0x9800 0x0 0x0 0x4 &mpic 0x0 0x1
6045
6046 /* IDSEL 0x14 (Slot 3) */
6047 - 0a000 0 0 1 &mpic 2 1
6048 - 0a000 0 0 2 &mpic 3 1
6049 - 0a000 0 0 3 &mpic 0 1
6050 - 0a000 0 0 4 &mpic 1 1
6051 + 0xa000 0x0 0x0 0x1 &mpic 0x2 0x1
6052 + 0xa000 0x0 0x0 0x2 &mpic 0x3 0x1
6053 + 0xa000 0x0 0x0 0x3 &mpic 0x0 0x1
6054 + 0xa000 0x0 0x0 0x4 &mpic 0x1 0x1
6055
6056 /* IDSEL 0x15 (Slot 4) */
6057 - 0a800 0 0 1 &mpic 3 1
6058 - 0a800 0 0 2 &mpic 0 1
6059 - 0a800 0 0 3 &mpic 1 1
6060 - 0a800 0 0 4 &mpic 2 1
6061 + 0xa800 0x0 0x0 0x1 &mpic 0x3 0x1
6062 + 0xa800 0x0 0x0 0x2 &mpic 0x0 0x1
6063 + 0xa800 0x0 0x0 0x3 &mpic 0x1 0x1
6064 + 0xa800 0x0 0x0 0x4 &mpic 0x2 0x1
6065
6066 /* Bus 1 (Tundra Bridge) */
6067 /* IDSEL 0x12 (ISA bridge) */
6068 - 19000 0 0 1 &mpic 0 1
6069 - 19000 0 0 2 &mpic 1 1
6070 - 19000 0 0 3 &mpic 2 1
6071 - 19000 0 0 4 &mpic 3 1>;
6072 + 0x19000 0x0 0x0 0x1 &mpic 0x0 0x1
6073 + 0x19000 0x0 0x0 0x2 &mpic 0x1 0x1
6074 + 0x19000 0x0 0x0 0x3 &mpic 0x2 0x1
6075 + 0x19000 0x0 0x0 0x4 &mpic 0x3 0x1>;
6076 interrupt-parent = <&mpic>;
6077 - interrupts = <18 2>;
6078 + interrupts = <24 2>;
6079 bus-range = <0 0>;
6080 - ranges = <02000000 0 80000000 80000000 0 20000000
6081 - 01000000 0 00000000 e2000000 0 00100000>;
6082 - clock-frequency = <3f940aa>;
6083 + ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
6084 + 0x1000000 0x0 0x0 0xe2000000 0x0 0x100000>;
6085 + clock-frequency = <66666666>;
6086 #interrupt-cells = <1>;
6087 #size-cells = <2>;
6088 #address-cells = <3>;
6089 - reg = <e0008000 1000>;
6090 + reg = <0xe0008000 0x1000>;
6091 compatible = "fsl,mpc8540-pci";
6092 device_type = "pci";
6093
6094 i8259@19000 {
6095 interrupt-controller;
6096 device_type = "interrupt-controller";
6097 - reg = <19000 0 0 0 1>;
6098 + reg = <0x19000 0x0 0x0 0x0 0x1>;
6099 #address-cells = <0>;
6100 #interrupt-cells = <2>;
6101 compatible = "chrp,iic";
6102 @@ -268,24 +269,24 @@
6103
6104 pci1: pci@e0009000 {
6105 cell-index = <1>;
6106 - interrupt-map-mask = <f800 0 0 7>;
6107 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
6108 interrupt-map = <
6109
6110 /* IDSEL 0x15 */
6111 - a800 0 0 1 &mpic b 1
6112 - a800 0 0 2 &mpic b 1
6113 - a800 0 0 3 &mpic b 1
6114 - a800 0 0 4 &mpic b 1>;
6115 + 0xa800 0x0 0x0 0x1 &mpic 0xb 0x1
6116 + 0xa800 0x0 0x0 0x2 &mpic 0xb 0x1
6117 + 0xa800 0x0 0x0 0x3 &mpic 0xb 0x1
6118 + 0xa800 0x0 0x0 0x4 &mpic 0xb 0x1>;
6119 interrupt-parent = <&mpic>;
6120 - interrupts = <19 2>;
6121 + interrupts = <25 2>;
6122 bus-range = <0 0>;
6123 - ranges = <02000000 0 a0000000 a0000000 0 20000000
6124 - 01000000 0 00000000 e3000000 0 00100000>;
6125 - clock-frequency = <3f940aa>;
6126 + ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
6127 + 0x1000000 0x0 0x0 0xe3000000 0x0 0x100000>;
6128 + clock-frequency = <66666666>;
6129 #interrupt-cells = <1>;
6130 #size-cells = <2>;
6131 #address-cells = <3>;
6132 - reg = <e0009000 1000>;
6133 + reg = <0xe0009000 0x1000>;
6134 compatible = "fsl,mpc8540-pci";
6135 device_type = "pci";
6136 };
6137 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8560ads.dts
6138 ===================================================================
6139 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8560ads.dts
6140 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8560ads.dts
6141 @@ -1,7 +1,7 @@
6142 /*
6143 * MPC8560 ADS Device Tree Source
6144 *
6145 - * Copyright 2006 Freescale Semiconductor Inc.
6146 + * Copyright 2006, 2008 Freescale Semiconductor Inc.
6147 *
6148 * This program is free software; you can redistribute it and/or modify it
6149 * under the terms of the GNU General Public License as published by the
6150 @@ -9,6 +9,7 @@
6151 * option) any later version.
6152 */
6153
6154 +/dts-v1/;
6155
6156 / {
6157 model = "MPC8560ADS";
6158 @@ -32,74 +33,74 @@
6159
6160 PowerPC,8560@0 {
6161 device_type = "cpu";
6162 - reg = <0>;
6163 - d-cache-line-size = <20>; // 32 bytes
6164 - i-cache-line-size = <20>; // 32 bytes
6165 - d-cache-size = <8000>; // L1, 32K
6166 - i-cache-size = <8000>; // L1, 32K
6167 - timebase-frequency = <04ead9a0>;
6168 - bus-frequency = <13ab6680>;
6169 - clock-frequency = <312c8040>;
6170 + reg = <0x0>;
6171 + d-cache-line-size = <32>; // 32 bytes
6172 + i-cache-line-size = <32>; // 32 bytes
6173 + d-cache-size = <0x8000>; // L1, 32K
6174 + i-cache-size = <0x8000>; // L1, 32K
6175 + timebase-frequency = <82500000>;
6176 + bus-frequency = <330000000>;
6177 + clock-frequency = <825000000>;
6178 };
6179 };
6180
6181 memory {
6182 device_type = "memory";
6183 - reg = <00000000 10000000>;
6184 + reg = <0x0 0x10000000>;
6185 };
6186
6187 soc8560@e0000000 {
6188 #address-cells = <1>;
6189 #size-cells = <1>;
6190 device_type = "soc";
6191 - ranges = <0 e0000000 00100000>;
6192 - reg = <e0000000 00000200>;
6193 - bus-frequency = <13ab6680>;
6194 + ranges = <0x0 0xe0000000 0x100000>;
6195 + reg = <0xe0000000 0x200>;
6196 + bus-frequency = <330000000>;
6197
6198 memory-controller@2000 {
6199 compatible = "fsl,8540-memory-controller";
6200 - reg = <2000 1000>;
6201 + reg = <0x2000 0x1000>;
6202 interrupt-parent = <&mpic>;
6203 - interrupts = <12 2>;
6204 + interrupts = <18 2>;
6205 };
6206
6207 l2-cache-controller@20000 {
6208 compatible = "fsl,8540-l2-cache-controller";
6209 - reg = <20000 1000>;
6210 - cache-line-size = <20>; // 32 bytes
6211 - cache-size = <40000>; // L2, 256K
6212 + reg = <0x20000 0x1000>;
6213 + cache-line-size = <32>; // 32 bytes
6214 + cache-size = <0x40000>; // L2, 256K
6215 interrupt-parent = <&mpic>;
6216 - interrupts = <10 2>;
6217 + interrupts = <16 2>;
6218 };
6219
6220 mdio@24520 {
6221 #address-cells = <1>;
6222 #size-cells = <0>;
6223 compatible = "fsl,gianfar-mdio";
6224 - reg = <24520 20>;
6225 + reg = <0x24520 0x20>;
6226
6227 phy0: ethernet-phy@0 {
6228 interrupt-parent = <&mpic>;
6229 interrupts = <5 1>;
6230 - reg = <0>;
6231 + reg = <0x0>;
6232 device_type = "ethernet-phy";
6233 };
6234 phy1: ethernet-phy@1 {
6235 interrupt-parent = <&mpic>;
6236 interrupts = <5 1>;
6237 - reg = <1>;
6238 + reg = <0x1>;
6239 device_type = "ethernet-phy";
6240 };
6241 phy2: ethernet-phy@2 {
6242 interrupt-parent = <&mpic>;
6243 interrupts = <7 1>;
6244 - reg = <2>;
6245 + reg = <0x2>;
6246 device_type = "ethernet-phy";
6247 };
6248 phy3: ethernet-phy@3 {
6249 interrupt-parent = <&mpic>;
6250 interrupts = <7 1>;
6251 - reg = <3>;
6252 + reg = <0x3>;
6253 device_type = "ethernet-phy";
6254 };
6255 };
6256 @@ -109,9 +110,9 @@
6257 device_type = "network";
6258 model = "TSEC";
6259 compatible = "gianfar";
6260 - reg = <24000 1000>;
6261 + reg = <0x24000 0x1000>;
6262 local-mac-address = [ 00 00 00 00 00 00 ];
6263 - interrupts = <1d 2 1e 2 22 2>;
6264 + interrupts = <29 2 30 2 34 2>;
6265 interrupt-parent = <&mpic>;
6266 phy-handle = <&phy0>;
6267 };
6268 @@ -121,9 +122,9 @@
6269 device_type = "network";
6270 model = "TSEC";
6271 compatible = "gianfar";
6272 - reg = <25000 1000>;
6273 + reg = <0x25000 0x1000>;
6274 local-mac-address = [ 00 00 00 00 00 00 ];
6275 - interrupts = <23 2 24 2 28 2>;
6276 + interrupts = <35 2 36 2 40 2>;
6277 interrupt-parent = <&mpic>;
6278 phy-handle = <&phy1>;
6279 };
6280 @@ -132,7 +133,7 @@
6281 interrupt-controller;
6282 #address-cells = <0>;
6283 #interrupt-cells = <2>;
6284 - reg = <40000 40000>;
6285 + reg = <0x40000 0x40000>;
6286 device_type = "open-pic";
6287 };
6288
6289 @@ -140,17 +141,17 @@
6290 #address-cells = <1>;
6291 #size-cells = <1>;
6292 compatible = "fsl,mpc8560-cpm", "fsl,cpm2";
6293 - reg = <919c0 30>;
6294 + reg = <0x919c0 0x30>;
6295 ranges;
6296
6297 muram@80000 {
6298 #address-cells = <1>;
6299 #size-cells = <1>;
6300 - ranges = <0 80000 10000>;
6301 + ranges = <0x0 0x80000 0x10000>;
6302
6303 data@0 {
6304 compatible = "fsl,cpm-muram-data";
6305 - reg = <0 4000 9000 2000>;
6306 + reg = <0x0 0x4000 0x9000 0x2000>;
6307 };
6308 };
6309
6310 @@ -158,17 +159,17 @@
6311 compatible = "fsl,mpc8560-brg",
6312 "fsl,cpm2-brg",
6313 "fsl,cpm-brg";
6314 - reg = <919f0 10 915f0 10>;
6315 - clock-frequency = <d#165000000>;
6316 + reg = <0x919f0 0x10 0x915f0 0x10>;
6317 + clock-frequency = <165000000>;
6318 };
6319
6320 cpmpic: pic@90c00 {
6321 interrupt-controller;
6322 #address-cells = <0>;
6323 #interrupt-cells = <2>;
6324 - interrupts = <2e 2>;
6325 + interrupts = <46 2>;
6326 interrupt-parent = <&mpic>;
6327 - reg = <90c00 80>;
6328 + reg = <0x90c00 0x80>;
6329 compatible = "fsl,mpc8560-cpm-pic", "fsl,cpm2-pic";
6330 };
6331
6332 @@ -176,11 +177,11 @@
6333 device_type = "serial";
6334 compatible = "fsl,mpc8560-scc-uart",
6335 "fsl,cpm2-scc-uart";
6336 - reg = <91a00 20 88000 100>;
6337 + reg = <0x91a00 0x20 0x88000 0x100>;
6338 fsl,cpm-brg = <1>;
6339 - fsl,cpm-command = <00800000>;
6340 - current-speed = <1c200>;
6341 - interrupts = <28 8>;
6342 + fsl,cpm-command = <0x800000>;
6343 + current-speed = <115200>;
6344 + interrupts = <40 8>;
6345 interrupt-parent = <&cpmpic>;
6346 };
6347
6348 @@ -188,11 +189,11 @@
6349 device_type = "serial";
6350 compatible = "fsl,mpc8560-scc-uart",
6351 "fsl,cpm2-scc-uart";
6352 - reg = <91a20 20 88100 100>;
6353 + reg = <0x91a20 0x20 0x88100 0x100>;
6354 fsl,cpm-brg = <2>;
6355 - fsl,cpm-command = <04a00000>;
6356 - current-speed = <1c200>;
6357 - interrupts = <29 8>;
6358 + fsl,cpm-command = <0x4a00000>;
6359 + current-speed = <115200>;
6360 + interrupts = <41 8>;
6361 interrupt-parent = <&cpmpic>;
6362 };
6363
6364 @@ -200,10 +201,10 @@
6365 device_type = "network";
6366 compatible = "fsl,mpc8560-fcc-enet",
6367 "fsl,cpm2-fcc-enet";
6368 - reg = <91320 20 88500 100 913b0 1>;
6369 + reg = <0x91320 0x20 0x88500 0x100 0x913b0 0x1>;
6370 local-mac-address = [ 00 00 00 00 00 00 ];
6371 - fsl,cpm-command = <16200300>;
6372 - interrupts = <21 8>;
6373 + fsl,cpm-command = <0x16200300>;
6374 + interrupts = <33 8>;
6375 interrupt-parent = <&cpmpic>;
6376 phy-handle = <&phy2>;
6377 };
6378 @@ -212,10 +213,10 @@
6379 device_type = "network";
6380 compatible = "fsl,mpc8560-fcc-enet",
6381 "fsl,cpm2-fcc-enet";
6382 - reg = <91340 20 88600 100 913d0 1>;
6383 + reg = <0x91340 0x20 0x88600 0x100 0x913d0 0x1>;
6384 local-mac-address = [ 00 00 00 00 00 00 ];
6385 - fsl,cpm-command = <1a400300>;
6386 - interrupts = <22 8>;
6387 + fsl,cpm-command = <0x1a400300>;
6388 + interrupts = <34 8>;
6389 interrupt-parent = <&cpmpic>;
6390 phy-handle = <&phy3>;
6391 };
6392 @@ -229,87 +230,87 @@
6393 #address-cells = <3>;
6394 compatible = "fsl,mpc8540-pcix", "fsl,mpc8540-pci";
6395 device_type = "pci";
6396 - reg = <e0008000 1000>;
6397 - clock-frequency = <3f940aa>;
6398 - interrupt-map-mask = <f800 0 0 7>;
6399 + reg = <0xe0008000 0x1000>;
6400 + clock-frequency = <66666666>;
6401 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
6402 interrupt-map = <
6403
6404 /* IDSEL 0x2 */
6405 - 1000 0 0 1 &mpic 1 1
6406 - 1000 0 0 2 &mpic 2 1
6407 - 1000 0 0 3 &mpic 3 1
6408 - 1000 0 0 4 &mpic 4 1
6409 + 0x1000 0x0 0x0 0x1 &mpic 0x1 0x1
6410 + 0x1000 0x0 0x0 0x2 &mpic 0x2 0x1
6411 + 0x1000 0x0 0x0 0x3 &mpic 0x3 0x1
6412 + 0x1000 0x0 0x0 0x4 &mpic 0x4 0x1
6413
6414 /* IDSEL 0x3 */
6415 - 1800 0 0 1 &mpic 4 1
6416 - 1800 0 0 2 &mpic 1 1
6417 - 1800 0 0 3 &mpic 2 1
6418 - 1800 0 0 4 &mpic 3 1
6419 + 0x1800 0x0 0x0 0x1 &mpic 0x4 0x1
6420 + 0x1800 0x0 0x0 0x2 &mpic 0x1 0x1
6421 + 0x1800 0x0 0x0 0x3 &mpic 0x2 0x1
6422 + 0x1800 0x0 0x0 0x4 &mpic 0x3 0x1
6423
6424 /* IDSEL 0x4 */
6425 - 2000 0 0 1 &mpic 3 1
6426 - 2000 0 0 2 &mpic 4 1
6427 - 2000 0 0 3 &mpic 1 1
6428 - 2000 0 0 4 &mpic 2 1
6429 + 0x2000 0x0 0x0 0x1 &mpic 0x3 0x1
6430 + 0x2000 0x0 0x0 0x2 &mpic 0x4 0x1
6431 + 0x2000 0x0 0x0 0x3 &mpic 0x1 0x1
6432 + 0x2000 0x0 0x0 0x4 &mpic 0x2 0x1
6433
6434 /* IDSEL 0x5 */
6435 - 2800 0 0 1 &mpic 2 1
6436 - 2800 0 0 2 &mpic 3 1
6437 - 2800 0 0 3 &mpic 4 1
6438 - 2800 0 0 4 &mpic 1 1
6439 + 0x2800 0x0 0x0 0x1 &mpic 0x2 0x1
6440 + 0x2800 0x0 0x0 0x2 &mpic 0x3 0x1
6441 + 0x2800 0x0 0x0 0x3 &mpic 0x4 0x1
6442 + 0x2800 0x0 0x0 0x4 &mpic 0x1 0x1
6443
6444 /* IDSEL 12 */
6445 - 6000 0 0 1 &mpic 1 1
6446 - 6000 0 0 2 &mpic 2 1
6447 - 6000 0 0 3 &mpic 3 1
6448 - 6000 0 0 4 &mpic 4 1
6449 + 0x6000 0x0 0x0 0x1 &mpic 0x1 0x1
6450 + 0x6000 0x0 0x0 0x2 &mpic 0x2 0x1
6451 + 0x6000 0x0 0x0 0x3 &mpic 0x3 0x1
6452 + 0x6000 0x0 0x0 0x4 &mpic 0x4 0x1
6453
6454 /* IDSEL 13 */
6455 - 6800 0 0 1 &mpic 4 1
6456 - 6800 0 0 2 &mpic 1 1
6457 - 6800 0 0 3 &mpic 2 1
6458 - 6800 0 0 4 &mpic 3 1
6459 + 0x6800 0x0 0x0 0x1 &mpic 0x4 0x1
6460 + 0x6800 0x0 0x0 0x2 &mpic 0x1 0x1
6461 + 0x6800 0x0 0x0 0x3 &mpic 0x2 0x1
6462 + 0x6800 0x0 0x0 0x4 &mpic 0x3 0x1
6463
6464 /* IDSEL 14*/
6465 - 7000 0 0 1 &mpic 3 1
6466 - 7000 0 0 2 &mpic 4 1
6467 - 7000 0 0 3 &mpic 1 1
6468 - 7000 0 0 4 &mpic 2 1
6469 + 0x7000 0x0 0x0 0x1 &mpic 0x3 0x1
6470 + 0x7000 0x0 0x0 0x2 &mpic 0x4 0x1
6471 + 0x7000 0x0 0x0 0x3 &mpic 0x1 0x1
6472 + 0x7000 0x0 0x0 0x4 &mpic 0x2 0x1
6473
6474 /* IDSEL 15 */
6475 - 7800 0 0 1 &mpic 2 1
6476 - 7800 0 0 2 &mpic 3 1
6477 - 7800 0 0 3 &mpic 4 1
6478 - 7800 0 0 4 &mpic 1 1
6479 + 0x7800 0x0 0x0 0x1 &mpic 0x2 0x1
6480 + 0x7800 0x0 0x0 0x2 &mpic 0x3 0x1
6481 + 0x7800 0x0 0x0 0x3 &mpic 0x4 0x1
6482 + 0x7800 0x0 0x0 0x4 &mpic 0x1 0x1
6483
6484 /* IDSEL 18 */
6485 - 9000 0 0 1 &mpic 1 1
6486 - 9000 0 0 2 &mpic 2 1
6487 - 9000 0 0 3 &mpic 3 1
6488 - 9000 0 0 4 &mpic 4 1
6489 + 0x9000 0x0 0x0 0x1 &mpic 0x1 0x1
6490 + 0x9000 0x0 0x0 0x2 &mpic 0x2 0x1
6491 + 0x9000 0x0 0x0 0x3 &mpic 0x3 0x1
6492 + 0x9000 0x0 0x0 0x4 &mpic 0x4 0x1
6493
6494 /* IDSEL 19 */
6495 - 9800 0 0 1 &mpic 4 1
6496 - 9800 0 0 2 &mpic 1 1
6497 - 9800 0 0 3 &mpic 2 1
6498 - 9800 0 0 4 &mpic 3 1
6499 + 0x9800 0x0 0x0 0x1 &mpic 0x4 0x1
6500 + 0x9800 0x0 0x0 0x2 &mpic 0x1 0x1
6501 + 0x9800 0x0 0x0 0x3 &mpic 0x2 0x1
6502 + 0x9800 0x0 0x0 0x4 &mpic 0x3 0x1
6503
6504 /* IDSEL 20 */
6505 - a000 0 0 1 &mpic 3 1
6506 - a000 0 0 2 &mpic 4 1
6507 - a000 0 0 3 &mpic 1 1
6508 - a000 0 0 4 &mpic 2 1
6509 + 0xa000 0x0 0x0 0x1 &mpic 0x3 0x1
6510 + 0xa000 0x0 0x0 0x2 &mpic 0x4 0x1
6511 + 0xa000 0x0 0x0 0x3 &mpic 0x1 0x1
6512 + 0xa000 0x0 0x0 0x4 &mpic 0x2 0x1
6513
6514 /* IDSEL 21 */
6515 - a800 0 0 1 &mpic 2 1
6516 - a800 0 0 2 &mpic 3 1
6517 - a800 0 0 3 &mpic 4 1
6518 - a800 0 0 4 &mpic 1 1>;
6519 + 0xa800 0x0 0x0 0x1 &mpic 0x2 0x1
6520 + 0xa800 0x0 0x0 0x2 &mpic 0x3 0x1
6521 + 0xa800 0x0 0x0 0x3 &mpic 0x4 0x1
6522 + 0xa800 0x0 0x0 0x4 &mpic 0x1 0x1>;
6523
6524 interrupt-parent = <&mpic>;
6525 - interrupts = <18 2>;
6526 + interrupts = <24 2>;
6527 bus-range = <0 0>;
6528 - ranges = <02000000 0 80000000 80000000 0 20000000
6529 - 01000000 0 00000000 e2000000 0 01000000>;
6530 + ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
6531 + 0x1000000 0x0 0x0 0xe2000000 0x0 0x1000000>;
6532 };
6533 };
6534 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8568mds.dts
6535 ===================================================================
6536 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8568mds.dts
6537 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8568mds.dts
6538 @@ -1,7 +1,7 @@
6539 /*
6540 * MPC8568E MDS Device Tree Source
6541 *
6542 - * Copyright 2007 Freescale Semiconductor Inc.
6543 + * Copyright 2007, 2008 Freescale Semiconductor Inc.
6544 *
6545 * This program is free software; you can redistribute it and/or modify it
6546 * under the terms of the GNU General Public License as published by the
6547 @@ -9,10 +9,7 @@
6548 * option) any later version.
6549 */
6550
6551 -
6552 -/*
6553 -/memreserve/ 00000000 1000000;
6554 -*/
6555 +/dts-v1/;
6556
6557 / {
6558 model = "MPC8568EMDS";
6559 @@ -37,11 +34,11 @@
6560
6561 PowerPC,8568@0 {
6562 device_type = "cpu";
6563 - reg = <0>;
6564 - d-cache-line-size = <20>; // 32 bytes
6565 - i-cache-line-size = <20>; // 32 bytes
6566 - d-cache-size = <8000>; // L1, 32K
6567 - i-cache-size = <8000>; // L1, 32K
6568 + reg = <0x0>;
6569 + d-cache-line-size = <32>; // 32 bytes
6570 + i-cache-line-size = <32>; // 32 bytes
6571 + d-cache-size = <0x8000>; // L1, 32K
6572 + i-cache-size = <0x8000>; // L1, 32K
6573 timebase-frequency = <0>;
6574 bus-frequency = <0>;
6575 clock-frequency = <0>;
6576 @@ -50,36 +47,36 @@
6577
6578 memory {
6579 device_type = "memory";
6580 - reg = <00000000 10000000>;
6581 + reg = <0x0 0x10000000>;
6582 };
6583
6584 bcsr@f8000000 {
6585 device_type = "board-control";
6586 - reg = <f8000000 8000>;
6587 + reg = <0xf8000000 0x8000>;
6588 };
6589
6590 soc8568@e0000000 {
6591 #address-cells = <1>;
6592 #size-cells = <1>;
6593 device_type = "soc";
6594 - ranges = <0 e0000000 00100000>;
6595 - reg = <e0000000 00001000>;
6596 + ranges = <0x0 0xe0000000 0x100000>;
6597 + reg = <0xe0000000 0x1000>;
6598 bus-frequency = <0>;
6599
6600 memory-controller@2000 {
6601 compatible = "fsl,8568-memory-controller";
6602 - reg = <2000 1000>;
6603 + reg = <0x2000 0x1000>;
6604 interrupt-parent = <&mpic>;
6605 - interrupts = <12 2>;
6606 + interrupts = <18 2>;
6607 };
6608
6609 l2-cache-controller@20000 {
6610 compatible = "fsl,8568-l2-cache-controller";
6611 - reg = <20000 1000>;
6612 - cache-line-size = <20>; // 32 bytes
6613 - cache-size = <80000>; // L2, 512K
6614 + reg = <0x20000 0x1000>;
6615 + cache-line-size = <32>; // 32 bytes
6616 + cache-size = <0x80000>; // L2, 512K
6617 interrupt-parent = <&mpic>;
6618 - interrupts = <10 2>;
6619 + interrupts = <16 2>;
6620 };
6621
6622 i2c@3000 {
6623 @@ -87,14 +84,14 @@
6624 #size-cells = <0>;
6625 cell-index = <0>;
6626 compatible = "fsl-i2c";
6627 - reg = <3000 100>;
6628 - interrupts = <2b 2>;
6629 + reg = <0x3000 0x100>;
6630 + interrupts = <43 2>;
6631 interrupt-parent = <&mpic>;
6632 dfsrr;
6633
6634 rtc@68 {
6635 compatible = "dallas,ds1374";
6636 - reg = <68>;
6637 + reg = <0x68>;
6638 };
6639 };
6640
6641 @@ -103,8 +100,8 @@
6642 #size-cells = <0>;
6643 cell-index = <1>;
6644 compatible = "fsl-i2c";
6645 - reg = <3100 100>;
6646 - interrupts = <2b 2>;
6647 + reg = <0x3100 0x100>;
6648 + interrupts = <43 2>;
6649 interrupt-parent = <&mpic>;
6650 dfsrr;
6651 };
6652 @@ -113,30 +110,30 @@
6653 #address-cells = <1>;
6654 #size-cells = <0>;
6655 compatible = "fsl,gianfar-mdio";
6656 - reg = <24520 20>;
6657 + reg = <0x24520 0x20>;
6658
6659 phy0: ethernet-phy@7 {
6660 interrupt-parent = <&mpic>;
6661 interrupts = <1 1>;
6662 - reg = <7>;
6663 + reg = <0x7>;
6664 device_type = "ethernet-phy";
6665 };
6666 phy1: ethernet-phy@1 {
6667 interrupt-parent = <&mpic>;
6668 interrupts = <2 1>;
6669 - reg = <1>;
6670 + reg = <0x1>;
6671 device_type = "ethernet-phy";
6672 };
6673 phy2: ethernet-phy@2 {
6674 interrupt-parent = <&mpic>;
6675 interrupts = <1 1>;
6676 - reg = <2>;
6677 + reg = <0x2>;
6678 device_type = "ethernet-phy";
6679 };
6680 phy3: ethernet-phy@3 {
6681 interrupt-parent = <&mpic>;
6682 interrupts = <2 1>;
6683 - reg = <3>;
6684 + reg = <0x3>;
6685 device_type = "ethernet-phy";
6686 };
6687 };
6688 @@ -146,9 +143,9 @@
6689 device_type = "network";
6690 model = "eTSEC";
6691 compatible = "gianfar";
6692 - reg = <24000 1000>;
6693 + reg = <0x24000 0x1000>;
6694 local-mac-address = [ 00 00 00 00 00 00 ];
6695 - interrupts = <1d 2 1e 2 22 2>;
6696 + interrupts = <29 2 30 2 34 2>;
6697 interrupt-parent = <&mpic>;
6698 phy-handle = <&phy2>;
6699 };
6700 @@ -158,9 +155,9 @@
6701 device_type = "network";
6702 model = "eTSEC";
6703 compatible = "gianfar";
6704 - reg = <25000 1000>;
6705 + reg = <0x25000 0x1000>;
6706 local-mac-address = [ 00 00 00 00 00 00 ];
6707 - interrupts = <23 2 24 2 28 2>;
6708 + interrupts = <35 2 36 2 40 2>;
6709 interrupt-parent = <&mpic>;
6710 phy-handle = <&phy3>;
6711 };
6712 @@ -169,15 +166,15 @@
6713 cell-index = <0>;
6714 device_type = "serial";
6715 compatible = "ns16550";
6716 - reg = <4500 100>;
6717 + reg = <0x4500 0x100>;
6718 clock-frequency = <0>;
6719 - interrupts = <2a 2>;
6720 + interrupts = <42 2>;
6721 interrupt-parent = <&mpic>;
6722 };
6723
6724 global-utilities@e0000 { //global utilities block
6725 compatible = "fsl,mpc8548-guts";
6726 - reg = <e0000 1000>;
6727 + reg = <0xe0000 0x1000>;
6728 fsl,has-rstcr;
6729 };
6730
6731 @@ -185,9 +182,9 @@
6732 cell-index = <1>;
6733 device_type = "serial";
6734 compatible = "ns16550";
6735 - reg = <4600 100>;
6736 + reg = <0x4600 0x100>;
6737 clock-frequency = <0>;
6738 - interrupts = <2a 2>;
6739 + interrupts = <42 2>;
6740 interrupt-parent = <&mpic>;
6741 };
6742
6743 @@ -195,13 +192,13 @@
6744 device_type = "crypto";
6745 model = "SEC2";
6746 compatible = "talitos";
6747 - reg = <30000 f000>;
6748 - interrupts = <2d 2>;
6749 + reg = <0x30000 0xf000>;
6750 + interrupts = <45 2>;
6751 interrupt-parent = <&mpic>;
6752 num-channels = <4>;
6753 - channel-fifo-len = <18>;
6754 - exec-units-mask = <000000fe>;
6755 - descriptor-types-mask = <012b0ebf>;
6756 + channel-fifo-len = <24>;
6757 + exec-units-mask = <0xfe>;
6758 + descriptor-types-mask = <0x12b0ebf>;
6759 };
6760
6761 mpic: pic@40000 {
6762 @@ -209,73 +206,73 @@
6763 interrupt-controller;
6764 #address-cells = <0>;
6765 #interrupt-cells = <2>;
6766 - reg = <40000 40000>;
6767 + reg = <0x40000 0x40000>;
6768 compatible = "chrp,open-pic";
6769 device_type = "open-pic";
6770 big-endian;
6771 };
6772
6773 par_io@e0100 {
6774 - reg = <e0100 100>;
6775 + reg = <0xe0100 0x100>;
6776 device_type = "par_io";
6777 num-ports = <7>;
6778
6779 pio1: ucc_pin@01 {
6780 pio-map = <
6781 /* port pin dir open_drain assignment has_irq */
6782 - 4 0a 1 0 2 0 /* TxD0 */
6783 - 4 09 1 0 2 0 /* TxD1 */
6784 - 4 08 1 0 2 0 /* TxD2 */
6785 - 4 07 1 0 2 0 /* TxD3 */
6786 - 4 17 1 0 2 0 /* TxD4 */
6787 - 4 16 1 0 2 0 /* TxD5 */
6788 - 4 15 1 0 2 0 /* TxD6 */
6789 - 4 14 1 0 2 0 /* TxD7 */
6790 - 4 0f 2 0 2 0 /* RxD0 */
6791 - 4 0e 2 0 2 0 /* RxD1 */
6792 - 4 0d 2 0 2 0 /* RxD2 */
6793 - 4 0c 2 0 2 0 /* RxD3 */
6794 - 4 1d 2 0 2 0 /* RxD4 */
6795 - 4 1c 2 0 2 0 /* RxD5 */
6796 - 4 1b 2 0 2 0 /* RxD6 */
6797 - 4 1a 2 0 2 0 /* RxD7 */
6798 - 4 0b 1 0 2 0 /* TX_EN */
6799 - 4 18 1 0 2 0 /* TX_ER */
6800 - 4 10 2 0 2 0 /* RX_DV */
6801 - 4 1e 2 0 2 0 /* RX_ER */
6802 - 4 11 2 0 2 0 /* RX_CLK */
6803 - 4 13 1 0 2 0 /* GTX_CLK */
6804 - 1 1f 2 0 3 0>; /* GTX125 */
6805 + 0x4 0xa 0x1 0x0 0x2 0x0 /* TxD0 */
6806 + 0x4 0x9 0x1 0x0 0x2 0x0 /* TxD1 */
6807 + 0x4 0x8 0x1 0x0 0x2 0x0 /* TxD2 */
6808 + 0x4 0x7 0x1 0x0 0x2 0x0 /* TxD3 */
6809 + 0x4 0x17 0x1 0x0 0x2 0x0 /* TxD4 */
6810 + 0x4 0x16 0x1 0x0 0x2 0x0 /* TxD5 */
6811 + 0x4 0x15 0x1 0x0 0x2 0x0 /* TxD6 */
6812 + 0x4 0x14 0x1 0x0 0x2 0x0 /* TxD7 */
6813 + 0x4 0xf 0x2 0x0 0x2 0x0 /* RxD0 */
6814 + 0x4 0xe 0x2 0x0 0x2 0x0 /* RxD1 */
6815 + 0x4 0xd 0x2 0x0 0x2 0x0 /* RxD2 */
6816 + 0x4 0xc 0x2 0x0 0x2 0x0 /* RxD3 */
6817 + 0x4 0x1d 0x2 0x0 0x2 0x0 /* RxD4 */
6818 + 0x4 0x1c 0x2 0x0 0x2 0x0 /* RxD5 */
6819 + 0x4 0x1b 0x2 0x0 0x2 0x0 /* RxD6 */
6820 + 0x4 0x1a 0x2 0x0 0x2 0x0 /* RxD7 */
6821 + 0x4 0xb 0x1 0x0 0x2 0x0 /* TX_EN */
6822 + 0x4 0x18 0x1 0x0 0x2 0x0 /* TX_ER */
6823 + 0x4 0x10 0x2 0x0 0x2 0x0 /* RX_DV */
6824 + 0x4 0x1e 0x2 0x0 0x2 0x0 /* RX_ER */
6825 + 0x4 0x11 0x2 0x0 0x2 0x0 /* RX_CLK */
6826 + 0x4 0x13 0x1 0x0 0x2 0x0 /* GTX_CLK */
6827 + 0x1 0x1f 0x2 0x0 0x3 0x0>; /* GTX125 */
6828 };
6829
6830 pio2: ucc_pin@02 {
6831 pio-map = <
6832 /* port pin dir open_drain assignment has_irq */
6833 - 5 0a 1 0 2 0 /* TxD0 */
6834 - 5 09 1 0 2 0 /* TxD1 */
6835 - 5 08 1 0 2 0 /* TxD2 */
6836 - 5 07 1 0 2 0 /* TxD3 */
6837 - 5 17 1 0 2 0 /* TxD4 */
6838 - 5 16 1 0 2 0 /* TxD5 */
6839 - 5 15 1 0 2 0 /* TxD6 */
6840 - 5 14 1 0 2 0 /* TxD7 */
6841 - 5 0f 2 0 2 0 /* RxD0 */
6842 - 5 0e 2 0 2 0 /* RxD1 */
6843 - 5 0d 2 0 2 0 /* RxD2 */
6844 - 5 0c 2 0 2 0 /* RxD3 */
6845 - 5 1d 2 0 2 0 /* RxD4 */
6846 - 5 1c 2 0 2 0 /* RxD5 */
6847 - 5 1b 2 0 2 0 /* RxD6 */
6848 - 5 1a 2 0 2 0 /* RxD7 */
6849 - 5 0b 1 0 2 0 /* TX_EN */
6850 - 5 18 1 0 2 0 /* TX_ER */
6851 - 5 10 2 0 2 0 /* RX_DV */
6852 - 5 1e 2 0 2 0 /* RX_ER */
6853 - 5 11 2 0 2 0 /* RX_CLK */
6854 - 5 13 1 0 2 0 /* GTX_CLK */
6855 - 1 1f 2 0 3 0 /* GTX125 */
6856 - 4 06 3 0 2 0 /* MDIO */
6857 - 4 05 1 0 2 0>; /* MDC */
6858 + 0x5 0xa 0x1 0x0 0x2 0x0 /* TxD0 */
6859 + 0x5 0x9 0x1 0x0 0x2 0x0 /* TxD1 */
6860 + 0x5 0x8 0x1 0x0 0x2 0x0 /* TxD2 */
6861 + 0x5 0x7 0x1 0x0 0x2 0x0 /* TxD3 */
6862 + 0x5 0x17 0x1 0x0 0x2 0x0 /* TxD4 */
6863 + 0x5 0x16 0x1 0x0 0x2 0x0 /* TxD5 */
6864 + 0x5 0x15 0x1 0x0 0x2 0x0 /* TxD6 */
6865 + 0x5 0x14 0x1 0x0 0x2 0x0 /* TxD7 */
6866 + 0x5 0xf 0x2 0x0 0x2 0x0 /* RxD0 */
6867 + 0x5 0xe 0x2 0x0 0x2 0x0 /* RxD1 */
6868 + 0x5 0xd 0x2 0x0 0x2 0x0 /* RxD2 */
6869 + 0x5 0xc 0x2 0x0 0x2 0x0 /* RxD3 */
6870 + 0x5 0x1d 0x2 0x0 0x2 0x0 /* RxD4 */
6871 + 0x5 0x1c 0x2 0x0 0x2 0x0 /* RxD5 */
6872 + 0x5 0x1b 0x2 0x0 0x2 0x0 /* RxD6 */
6873 + 0x5 0x1a 0x2 0x0 0x2 0x0 /* RxD7 */
6874 + 0x5 0xb 0x1 0x0 0x2 0x0 /* TX_EN */
6875 + 0x5 0x18 0x1 0x0 0x2 0x0 /* TX_ER */
6876 + 0x5 0x10 0x2 0x0 0x2 0x0 /* RX_DV */
6877 + 0x5 0x1e 0x2 0x0 0x2 0x0 /* RX_ER */
6878 + 0x5 0x11 0x2 0x0 0x2 0x0 /* RX_CLK */
6879 + 0x5 0x13 0x1 0x0 0x2 0x0 /* GTX_CLK */
6880 + 0x1 0x1f 0x2 0x0 0x3 0x0 /* GTX125 */
6881 + 0x4 0x6 0x3 0x0 0x2 0x0 /* MDIO */
6882 + 0x4 0x5 0x1 0x0 0x2 0x0>; /* MDC */
6883 };
6884 };
6885 };
6886 @@ -285,28 +282,28 @@
6887 #size-cells = <1>;
6888 device_type = "qe";
6889 compatible = "fsl,qe";
6890 - ranges = <0 e0080000 00040000>;
6891 - reg = <e0080000 480>;
6892 + ranges = <0x0 0xe0080000 0x40000>;
6893 + reg = <0xe0080000 0x480>;
6894 brg-frequency = <0>;
6895 - bus-frequency = <179A7B00>;
6896 + bus-frequency = <396000000>;
6897
6898 muram@10000 {
6899 #address-cells = <1>;
6900 #size-cells = <1>;
6901 compatible = "fsl,qe-muram", "fsl,cpm-muram";
6902 - ranges = <0 00010000 0000c000>;
6903 + ranges = <0x0 0x10000 0x10000>;
6904
6905 data-only@0 {
6906 compatible = "fsl,qe-muram-data",
6907 "fsl,cpm-muram-data";
6908 - reg = <0 c000>;
6909 + reg = <0x0 0x10000>;
6910 };
6911 };
6912
6913 spi@4c0 {
6914 cell-index = <0>;
6915 compatible = "fsl,spi";
6916 - reg = <4c0 40>;
6917 + reg = <0x4c0 0x40>;
6918 interrupts = <2>;
6919 interrupt-parent = <&qeic>;
6920 mode = "cpu";
6921 @@ -315,7 +312,7 @@
6922 spi@500 {
6923 cell-index = <1>;
6924 compatible = "fsl,spi";
6925 - reg = <500 40>;
6926 + reg = <0x500 0x40>;
6927 interrupts = <1>;
6928 interrupt-parent = <&qeic>;
6929 mode = "cpu";
6930 @@ -324,11 +321,9 @@
6931 enet2: ucc@2000 {
6932 device_type = "network";
6933 compatible = "ucc_geth";
6934 - model = "UCC";
6935 cell-index = <1>;
6936 - device-id = <1>;
6937 - reg = <2000 200>;
6938 - interrupts = <20>;
6939 + reg = <0x2000 0x200>;
6940 + interrupts = <32>;
6941 interrupt-parent = <&qeic>;
6942 local-mac-address = [ 00 00 00 00 00 00 ];
6943 rx-clock-name = "none";
6944 @@ -341,11 +336,9 @@
6945 enet3: ucc@3000 {
6946 device_type = "network";
6947 compatible = "ucc_geth";
6948 - model = "UCC";
6949 cell-index = <2>;
6950 - device-id = <2>;
6951 - reg = <3000 200>;
6952 - interrupts = <21>;
6953 + reg = <0x3000 0x200>;
6954 + interrupts = <33>;
6955 interrupt-parent = <&qeic>;
6956 local-mac-address = [ 00 00 00 00 00 00 ];
6957 rx-clock-name = "none";
6958 @@ -358,7 +351,7 @@
6959 mdio@2120 {
6960 #address-cells = <1>;
6961 #size-cells = <0>;
6962 - reg = <2120 18>;
6963 + reg = <0x2120 0x18>;
6964 compatible = "fsl,ucc-mdio";
6965
6966 /* These are the same PHYs as on
6967 @@ -366,25 +359,25 @@
6968 qe_phy0: ethernet-phy@07 {
6969 interrupt-parent = <&mpic>;
6970 interrupts = <1 1>;
6971 - reg = <7>;
6972 + reg = <0x7>;
6973 device_type = "ethernet-phy";
6974 };
6975 qe_phy1: ethernet-phy@01 {
6976 interrupt-parent = <&mpic>;
6977 interrupts = <2 1>;
6978 - reg = <1>;
6979 + reg = <0x1>;
6980 device_type = "ethernet-phy";
6981 };
6982 qe_phy2: ethernet-phy@02 {
6983 interrupt-parent = <&mpic>;
6984 interrupts = <1 1>;
6985 - reg = <2>;
6986 + reg = <0x2>;
6987 device_type = "ethernet-phy";
6988 };
6989 qe_phy3: ethernet-phy@03 {
6990 interrupt-parent = <&mpic>;
6991 interrupts = <2 1>;
6992 - reg = <3>;
6993 + reg = <0x3>;
6994 device_type = "ethernet-phy";
6995 };
6996 };
6997 @@ -394,9 +387,9 @@
6998 compatible = "fsl,qe-ic";
6999 #address-cells = <0>;
7000 #interrupt-cells = <1>;
7001 - reg = <80 80>;
7002 + reg = <0x80 0x80>;
7003 big-endian;
7004 - interrupts = <2e 2 2e 2>; //high:30 low:30
7005 + interrupts = <46 2 46 2>; //high:30 low:30
7006 interrupt-parent = <&mpic>;
7007 };
7008
7009 @@ -404,30 +397,30 @@
7010
7011 pci0: pci@e0008000 {
7012 cell-index = <0>;
7013 - interrupt-map-mask = <f800 0 0 7>;
7014 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
7015 interrupt-map = <
7016 /* IDSEL 0x12 AD18 */
7017 - 9000 0 0 1 &mpic 5 1
7018 - 9000 0 0 2 &mpic 6 1
7019 - 9000 0 0 3 &mpic 7 1
7020 - 9000 0 0 4 &mpic 4 1
7021 + 0x9000 0x0 0x0 0x1 &mpic 0x5 0x1
7022 + 0x9000 0x0 0x0 0x2 &mpic 0x6 0x1
7023 + 0x9000 0x0 0x0 0x3 &mpic 0x7 0x1
7024 + 0x9000 0x0 0x0 0x4 &mpic 0x4 0x1
7025
7026 /* IDSEL 0x13 AD19 */
7027 - 9800 0 0 1 &mpic 6 1
7028 - 9800 0 0 2 &mpic 7 1
7029 - 9800 0 0 3 &mpic 4 1
7030 - 9800 0 0 4 &mpic 5 1>;
7031 + 0x9800 0x0 0x0 0x1 &mpic 0x6 0x1
7032 + 0x9800 0x0 0x0 0x2 &mpic 0x7 0x1
7033 + 0x9800 0x0 0x0 0x3 &mpic 0x4 0x1
7034 + 0x9800 0x0 0x0 0x4 &mpic 0x5 0x1>;
7035
7036 interrupt-parent = <&mpic>;
7037 - interrupts = <18 2>;
7038 - bus-range = <0 ff>;
7039 - ranges = <02000000 0 80000000 80000000 0 20000000
7040 - 01000000 0 00000000 e2000000 0 00800000>;
7041 - clock-frequency = <3f940aa>;
7042 + interrupts = <24 2>;
7043 + bus-range = <0 255>;
7044 + ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
7045 + 0x1000000 0x0 0x0 0xe2000000 0x0 0x800000>;
7046 + clock-frequency = <66666666>;
7047 #interrupt-cells = <1>;
7048 #size-cells = <2>;
7049 #address-cells = <3>;
7050 - reg = <e0008000 1000>;
7051 + reg = <0xe0008000 0x1000>;
7052 compatible = "fsl,mpc8540-pci";
7053 device_type = "pci";
7054 };
7055 @@ -435,39 +428,39 @@
7056 /* PCI Express */
7057 pci1: pcie@e000a000 {
7058 cell-index = <2>;
7059 - interrupt-map-mask = <f800 0 0 7>;
7060 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
7061 interrupt-map = <
7062
7063 /* IDSEL 0x0 (PEX) */
7064 - 00000 0 0 1 &mpic 0 1
7065 - 00000 0 0 2 &mpic 1 1
7066 - 00000 0 0 3 &mpic 2 1
7067 - 00000 0 0 4 &mpic 3 1>;
7068 + 00000 0x0 0x0 0x1 &mpic 0x0 0x1
7069 + 00000 0x0 0x0 0x2 &mpic 0x1 0x1
7070 + 00000 0x0 0x0 0x3 &mpic 0x2 0x1
7071 + 00000 0x0 0x0 0x4 &mpic 0x3 0x1>;
7072
7073 interrupt-parent = <&mpic>;
7074 - interrupts = <1a 2>;
7075 - bus-range = <0 ff>;
7076 - ranges = <02000000 0 a0000000 a0000000 0 10000000
7077 - 01000000 0 00000000 e2800000 0 00800000>;
7078 - clock-frequency = <1fca055>;
7079 + interrupts = <26 2>;
7080 + bus-range = <0 255>;
7081 + ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x10000000
7082 + 0x1000000 0x0 0x0 0xe2800000 0x0 0x800000>;
7083 + clock-frequency = <33333333>;
7084 #interrupt-cells = <1>;
7085 #size-cells = <2>;
7086 #address-cells = <3>;
7087 - reg = <e000a000 1000>;
7088 + reg = <0xe000a000 0x1000>;
7089 compatible = "fsl,mpc8548-pcie";
7090 device_type = "pci";
7091 pcie@0 {
7092 - reg = <0 0 0 0 0>;
7093 + reg = <0x0 0x0 0x0 0x0 0x0>;
7094 #size-cells = <2>;
7095 #address-cells = <3>;
7096 device_type = "pci";
7097 - ranges = <02000000 0 a0000000
7098 - 02000000 0 a0000000
7099 - 0 10000000
7100 -
7101 - 01000000 0 00000000
7102 - 01000000 0 00000000
7103 - 0 00800000>;
7104 + ranges = <0x2000000 0x0 0xa0000000
7105 + 0x2000000 0x0 0xa0000000
7106 + 0x0 0x10000000
7107 +
7108 + 0x1000000 0x0 0x0
7109 + 0x1000000 0x0 0x0
7110 + 0x0 0x800000>;
7111 };
7112 };
7113 };
7114 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8572ds.dts
7115 ===================================================================
7116 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8572ds.dts
7117 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8572ds.dts
7118 @@ -1,7 +1,7 @@
7119 /*
7120 * MPC8572 DS Device Tree Source
7121 *
7122 - * Copyright 2007 Freescale Semiconductor Inc.
7123 + * Copyright 2007, 2008 Freescale Semiconductor Inc.
7124 *
7125 * This program is free software; you can redistribute it and/or modify it
7126 * under the terms of the GNU General Public License as published by the
7127 @@ -9,6 +9,7 @@
7128 * option) any later version.
7129 */
7130
7131 +/dts-v1/;
7132 / {
7133 model = "fsl,MPC8572DS";
7134 compatible = "fsl,MPC8572DS";
7135 @@ -33,11 +34,11 @@
7136
7137 PowerPC,8572@0 {
7138 device_type = "cpu";
7139 - reg = <0>;
7140 - d-cache-line-size = <20>; // 32 bytes
7141 - i-cache-line-size = <20>; // 32 bytes
7142 - d-cache-size = <8000>; // L1, 32K
7143 - i-cache-size = <8000>; // L1, 32K
7144 + reg = <0x0>;
7145 + d-cache-line-size = <32>; // 32 bytes
7146 + i-cache-line-size = <32>; // 32 bytes
7147 + d-cache-size = <0x8000>; // L1, 32K
7148 + i-cache-size = <0x8000>; // L1, 32K
7149 timebase-frequency = <0>;
7150 bus-frequency = <0>;
7151 clock-frequency = <0>;
7152 @@ -45,11 +46,11 @@
7153
7154 PowerPC,8572@1 {
7155 device_type = "cpu";
7156 - reg = <1>;
7157 - d-cache-line-size = <20>; // 32 bytes
7158 - i-cache-line-size = <20>; // 32 bytes
7159 - d-cache-size = <8000>; // L1, 32K
7160 - i-cache-size = <8000>; // L1, 32K
7161 + reg = <0x1>;
7162 + d-cache-line-size = <32>; // 32 bytes
7163 + i-cache-line-size = <32>; // 32 bytes
7164 + d-cache-size = <0x8000>; // L1, 32K
7165 + i-cache-size = <0x8000>; // L1, 32K
7166 timebase-frequency = <0>;
7167 bus-frequency = <0>;
7168 clock-frequency = <0>;
7169 @@ -58,38 +59,38 @@
7170
7171 memory {
7172 device_type = "memory";
7173 - reg = <00000000 00000000>; // Filled by U-Boot
7174 + reg = <0x0 0x0>; // Filled by U-Boot
7175 };
7176
7177 soc8572@ffe00000 {
7178 #address-cells = <1>;
7179 #size-cells = <1>;
7180 device_type = "soc";
7181 - ranges = <00000000 ffe00000 00100000>;
7182 - reg = <ffe00000 00001000>; // CCSRBAR & soc regs, remove once parse code for immrbase fixed
7183 + ranges = <0x0 0xffe00000 0x100000>;
7184 + reg = <0xffe00000 0x1000>; // CCSRBAR & soc regs, remove once parse code for immrbase fixed
7185 bus-frequency = <0>; // Filled out by uboot.
7186
7187 memory-controller@2000 {
7188 compatible = "fsl,mpc8572-memory-controller";
7189 - reg = <2000 1000>;
7190 + reg = <0x2000 0x1000>;
7191 interrupt-parent = <&mpic>;
7192 - interrupts = <12 2>;
7193 + interrupts = <18 2>;
7194 };
7195
7196 memory-controller@6000 {
7197 compatible = "fsl,mpc8572-memory-controller";
7198 - reg = <6000 1000>;
7199 + reg = <0x6000 0x1000>;
7200 interrupt-parent = <&mpic>;
7201 - interrupts = <12 2>;
7202 + interrupts = <18 2>;
7203 };
7204
7205 l2-cache-controller@20000 {
7206 compatible = "fsl,mpc8572-l2-cache-controller";
7207 - reg = <20000 1000>;
7208 - cache-line-size = <20>; // 32 bytes
7209 - cache-size = <80000>; // L2, 512K
7210 + reg = <0x20000 0x1000>;
7211 + cache-line-size = <32>; // 32 bytes
7212 + cache-size = <0x80000>; // L2, 512K
7213 interrupt-parent = <&mpic>;
7214 - interrupts = <10 2>;
7215 + interrupts = <16 2>;
7216 };
7217
7218 i2c@3000 {
7219 @@ -97,8 +98,8 @@
7220 #size-cells = <0>;
7221 cell-index = <0>;
7222 compatible = "fsl-i2c";
7223 - reg = <3000 100>;
7224 - interrupts = <2b 2>;
7225 + reg = <0x3000 0x100>;
7226 + interrupts = <43 2>;
7227 interrupt-parent = <&mpic>;
7228 dfsrr;
7229 };
7230 @@ -108,8 +109,8 @@
7231 #size-cells = <0>;
7232 cell-index = <1>;
7233 compatible = "fsl-i2c";
7234 - reg = <3100 100>;
7235 - interrupts = <2b 2>;
7236 + reg = <0x3100 0x100>;
7237 + interrupts = <43 2>;
7238 interrupt-parent = <&mpic>;
7239 dfsrr;
7240 };
7241 @@ -118,27 +119,27 @@
7242 #address-cells = <1>;
7243 #size-cells = <0>;
7244 compatible = "fsl,gianfar-mdio";
7245 - reg = <24520 20>;
7246 + reg = <0x24520 0x20>;
7247
7248 phy0: ethernet-phy@0 {
7249 interrupt-parent = <&mpic>;
7250 - interrupts = <a 1>;
7251 - reg = <0>;
7252 + interrupts = <10 1>;
7253 + reg = <0x0>;
7254 };
7255 phy1: ethernet-phy@1 {
7256 interrupt-parent = <&mpic>;
7257 - interrupts = <a 1>;
7258 - reg = <1>;
7259 + interrupts = <10 1>;
7260 + reg = <0x1>;
7261 };
7262 phy2: ethernet-phy@2 {
7263 interrupt-parent = <&mpic>;
7264 - interrupts = <a 1>;
7265 - reg = <2>;
7266 + interrupts = <10 1>;
7267 + reg = <0x2>;
7268 };
7269 phy3: ethernet-phy@3 {
7270 interrupt-parent = <&mpic>;
7271 - interrupts = <a 1>;
7272 - reg = <3>;
7273 + interrupts = <10 1>;
7274 + reg = <0x3>;
7275 };
7276 };
7277
7278 @@ -147,9 +148,9 @@
7279 device_type = "network";
7280 model = "eTSEC";
7281 compatible = "gianfar";
7282 - reg = <24000 1000>;
7283 + reg = <0x24000 0x1000>;
7284 local-mac-address = [ 00 00 00 00 00 00 ];
7285 - interrupts = <1d 2 1e 2 22 2>;
7286 + interrupts = <29 2 30 2 34 2>;
7287 interrupt-parent = <&mpic>;
7288 phy-handle = <&phy0>;
7289 phy-connection-type = "rgmii-id";
7290 @@ -160,9 +161,9 @@
7291 device_type = "network";
7292 model = "eTSEC";
7293 compatible = "gianfar";
7294 - reg = <25000 1000>;
7295 + reg = <0x25000 0x1000>;
7296 local-mac-address = [ 00 00 00 00 00 00 ];
7297 - interrupts = <23 2 24 2 28 2>;
7298 + interrupts = <35 2 36 2 40 2>;
7299 interrupt-parent = <&mpic>;
7300 phy-handle = <&phy1>;
7301 phy-connection-type = "rgmii-id";
7302 @@ -173,9 +174,9 @@
7303 device_type = "network";
7304 model = "eTSEC";
7305 compatible = "gianfar";
7306 - reg = <26000 1000>;
7307 + reg = <0x26000 0x1000>;
7308 local-mac-address = [ 00 00 00 00 00 00 ];
7309 - interrupts = <1f 2 20 2 21 2>;
7310 + interrupts = <31 2 32 2 33 2>;
7311 interrupt-parent = <&mpic>;
7312 phy-handle = <&phy2>;
7313 phy-connection-type = "rgmii-id";
7314 @@ -186,9 +187,9 @@
7315 device_type = "network";
7316 model = "eTSEC";
7317 compatible = "gianfar";
7318 - reg = <27000 1000>;
7319 + reg = <0x27000 0x1000>;
7320 local-mac-address = [ 00 00 00 00 00 00 ];
7321 - interrupts = <25 2 26 2 27 2>;
7322 + interrupts = <37 2 38 2 39 2>;
7323 interrupt-parent = <&mpic>;
7324 phy-handle = <&phy3>;
7325 phy-connection-type = "rgmii-id";
7326 @@ -198,9 +199,9 @@
7327 cell-index = <0>;
7328 device_type = "serial";
7329 compatible = "ns16550";
7330 - reg = <4500 100>;
7331 + reg = <0x4500 0x100>;
7332 clock-frequency = <0>;
7333 - interrupts = <2a 2>;
7334 + interrupts = <42 2>;
7335 interrupt-parent = <&mpic>;
7336 };
7337
7338 @@ -208,15 +209,15 @@
7339 cell-index = <1>;
7340 device_type = "serial";
7341 compatible = "ns16550";
7342 - reg = <4600 100>;
7343 + reg = <0x4600 0x100>;
7344 clock-frequency = <0>;
7345 - interrupts = <2a 2>;
7346 + interrupts = <42 2>;
7347 interrupt-parent = <&mpic>;
7348 };
7349
7350 global-utilities@e0000 { //global utilities block
7351 compatible = "fsl,mpc8572-guts";
7352 - reg = <e0000 1000>;
7353 + reg = <0xe0000 0x1000>;
7354 fsl,has-rstcr;
7355 };
7356
7357 @@ -225,7 +226,7 @@
7358 interrupt-controller;
7359 #address-cells = <0>;
7360 #interrupt-cells = <2>;
7361 - reg = <40000 40000>;
7362 + reg = <0x40000 0x40000>;
7363 compatible = "chrp,open-pic";
7364 device_type = "open-pic";
7365 big-endian;
7366 @@ -239,167 +240,167 @@
7367 #interrupt-cells = <1>;
7368 #size-cells = <2>;
7369 #address-cells = <3>;
7370 - reg = <ffe08000 1000>;
7371 - bus-range = <0 ff>;
7372 - ranges = <02000000 0 80000000 80000000 0 20000000
7373 - 01000000 0 00000000 ffc00000 0 00010000>;
7374 - clock-frequency = <1fca055>;
7375 + reg = <0xffe08000 0x1000>;
7376 + bus-range = <0 255>;
7377 + ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
7378 + 0x1000000 0x0 0x0 0xffc00000 0x0 0x10000>;
7379 + clock-frequency = <33333333>;
7380 interrupt-parent = <&mpic>;
7381 - interrupts = <18 2>;
7382 - interrupt-map-mask = <ff00 0 0 7>;
7383 + interrupts = <24 2>;
7384 + interrupt-map-mask = <0xff00 0x0 0x0 0x7>;
7385 interrupt-map = <
7386 /* IDSEL 0x11 func 0 - PCI slot 1 */
7387 - 8800 0 0 1 &mpic 2 1
7388 - 8800 0 0 2 &mpic 3 1
7389 - 8800 0 0 3 &mpic 4 1
7390 - 8800 0 0 4 &mpic 1 1
7391 + 0x8800 0x0 0x0 0x1 &mpic 0x2 0x1
7392 + 0x8800 0x0 0x0 0x2 &mpic 0x3 0x1
7393 + 0x8800 0x0 0x0 0x3 &mpic 0x4 0x1
7394 + 0x8800 0x0 0x0 0x4 &mpic 0x1 0x1
7395
7396 /* IDSEL 0x11 func 1 - PCI slot 1 */
7397 - 8900 0 0 1 &mpic 2 1
7398 - 8900 0 0 2 &mpic 3 1
7399 - 8900 0 0 3 &mpic 4 1
7400 - 8900 0 0 4 &mpic 1 1
7401 + 0x8900 0x0 0x0 0x1 &mpic 0x2 0x1
7402 + 0x8900 0x0 0x0 0x2 &mpic 0x3 0x1
7403 + 0x8900 0x0 0x0 0x3 &mpic 0x4 0x1
7404 + 0x8900 0x0 0x0 0x4 &mpic 0x1 0x1
7405
7406 /* IDSEL 0x11 func 2 - PCI slot 1 */
7407 - 8a00 0 0 1 &mpic 2 1
7408 - 8a00 0 0 2 &mpic 3 1
7409 - 8a00 0 0 3 &mpic 4 1
7410 - 8a00 0 0 4 &mpic 1 1
7411 + 0x8a00 0x0 0x0 0x1 &mpic 0x2 0x1
7412 + 0x8a00 0x0 0x0 0x2 &mpic 0x3 0x1
7413 + 0x8a00 0x0 0x0 0x3 &mpic 0x4 0x1
7414 + 0x8a00 0x0 0x0 0x4 &mpic 0x1 0x1
7415
7416 /* IDSEL 0x11 func 3 - PCI slot 1 */
7417 - 8b00 0 0 1 &mpic 2 1
7418 - 8b00 0 0 2 &mpic 3 1
7419 - 8b00 0 0 3 &mpic 4 1
7420 - 8b00 0 0 4 &mpic 1 1
7421 + 0x8b00 0x0 0x0 0x1 &mpic 0x2 0x1
7422 + 0x8b00 0x0 0x0 0x2 &mpic 0x3 0x1
7423 + 0x8b00 0x0 0x0 0x3 &mpic 0x4 0x1
7424 + 0x8b00 0x0 0x0 0x4 &mpic 0x1 0x1
7425
7426 /* IDSEL 0x11 func 4 - PCI slot 1 */
7427 - 8c00 0 0 1 &mpic 2 1
7428 - 8c00 0 0 2 &mpic 3 1
7429 - 8c00 0 0 3 &mpic 4 1
7430 - 8c00 0 0 4 &mpic 1 1
7431 + 0x8c00 0x0 0x0 0x1 &mpic 0x2 0x1
7432 + 0x8c00 0x0 0x0 0x2 &mpic 0x3 0x1
7433 + 0x8c00 0x0 0x0 0x3 &mpic 0x4 0x1
7434 + 0x8c00 0x0 0x0 0x4 &mpic 0x1 0x1
7435
7436 /* IDSEL 0x11 func 5 - PCI slot 1 */
7437 - 8d00 0 0 1 &mpic 2 1
7438 - 8d00 0 0 2 &mpic 3 1
7439 - 8d00 0 0 3 &mpic 4 1
7440 - 8d00 0 0 4 &mpic 1 1
7441 + 0x8d00 0x0 0x0 0x1 &mpic 0x2 0x1
7442 + 0x8d00 0x0 0x0 0x2 &mpic 0x3 0x1
7443 + 0x8d00 0x0 0x0 0x3 &mpic 0x4 0x1
7444 + 0x8d00 0x0 0x0 0x4 &mpic 0x1 0x1
7445
7446 /* IDSEL 0x11 func 6 - PCI slot 1 */
7447 - 8e00 0 0 1 &mpic 2 1
7448 - 8e00 0 0 2 &mpic 3 1
7449 - 8e00 0 0 3 &mpic 4 1
7450 - 8e00 0 0 4 &mpic 1 1
7451 + 0x8e00 0x0 0x0 0x1 &mpic 0x2 0x1
7452 + 0x8e00 0x0 0x0 0x2 &mpic 0x3 0x1
7453 + 0x8e00 0x0 0x0 0x3 &mpic 0x4 0x1
7454 + 0x8e00 0x0 0x0 0x4 &mpic 0x1 0x1
7455
7456 /* IDSEL 0x11 func 7 - PCI slot 1 */
7457 - 8f00 0 0 1 &mpic 2 1
7458 - 8f00 0 0 2 &mpic 3 1
7459 - 8f00 0 0 3 &mpic 4 1
7460 - 8f00 0 0 4 &mpic 1 1
7461 + 0x8f00 0x0 0x0 0x1 &mpic 0x2 0x1
7462 + 0x8f00 0x0 0x0 0x2 &mpic 0x3 0x1
7463 + 0x8f00 0x0 0x0 0x3 &mpic 0x4 0x1
7464 + 0x8f00 0x0 0x0 0x4 &mpic 0x1 0x1
7465
7466 /* IDSEL 0x12 func 0 - PCI slot 2 */
7467 - 9000 0 0 1 &mpic 3 1
7468 - 9000 0 0 2 &mpic 4 1
7469 - 9000 0 0 3 &mpic 1 1
7470 - 9000 0 0 4 &mpic 2 1
7471 + 0x9000 0x0 0x0 0x1 &mpic 0x3 0x1
7472 + 0x9000 0x0 0x0 0x2 &mpic 0x4 0x1
7473 + 0x9000 0x0 0x0 0x3 &mpic 0x1 0x1
7474 + 0x9000 0x0 0x0 0x4 &mpic 0x2 0x1
7475
7476 /* IDSEL 0x12 func 1 - PCI slot 2 */
7477 - 9100 0 0 1 &mpic 3 1
7478 - 9100 0 0 2 &mpic 4 1
7479 - 9100 0 0 3 &mpic 1 1
7480 - 9100 0 0 4 &mpic 2 1
7481 + 0x9100 0x0 0x0 0x1 &mpic 0x3 0x1
7482 + 0x9100 0x0 0x0 0x2 &mpic 0x4 0x1
7483 + 0x9100 0x0 0x0 0x3 &mpic 0x1 0x1
7484 + 0x9100 0x0 0x0 0x4 &mpic 0x2 0x1
7485
7486 /* IDSEL 0x12 func 2 - PCI slot 2 */
7487 - 9200 0 0 1 &mpic 3 1
7488 - 9200 0 0 2 &mpic 4 1
7489 - 9200 0 0 3 &mpic 1 1
7490 - 9200 0 0 4 &mpic 2 1
7491 + 0x9200 0x0 0x0 0x1 &mpic 0x3 0x1
7492 + 0x9200 0x0 0x0 0x2 &mpic 0x4 0x1
7493 + 0x9200 0x0 0x0 0x3 &mpic 0x1 0x1
7494 + 0x9200 0x0 0x0 0x4 &mpic 0x2 0x1
7495
7496 /* IDSEL 0x12 func 3 - PCI slot 2 */
7497 - 9300 0 0 1 &mpic 3 1
7498 - 9300 0 0 2 &mpic 4 1
7499 - 9300 0 0 3 &mpic 1 1
7500 - 9300 0 0 4 &mpic 2 1
7501 + 0x9300 0x0 0x0 0x1 &mpic 0x3 0x1
7502 + 0x9300 0x0 0x0 0x2 &mpic 0x4 0x1
7503 + 0x9300 0x0 0x0 0x3 &mpic 0x1 0x1
7504 + 0x9300 0x0 0x0 0x4 &mpic 0x2 0x1
7505
7506 /* IDSEL 0x12 func 4 - PCI slot 2 */
7507 - 9400 0 0 1 &mpic 3 1
7508 - 9400 0 0 2 &mpic 4 1
7509 - 9400 0 0 3 &mpic 1 1
7510 - 9400 0 0 4 &mpic 2 1
7511 + 0x9400 0x0 0x0 0x1 &mpic 0x3 0x1
7512 + 0x9400 0x0 0x0 0x2 &mpic 0x4 0x1
7513 + 0x9400 0x0 0x0 0x3 &mpic 0x1 0x1
7514 + 0x9400 0x0 0x0 0x4 &mpic 0x2 0x1
7515
7516 /* IDSEL 0x12 func 5 - PCI slot 2 */
7517 - 9500 0 0 1 &mpic 3 1
7518 - 9500 0 0 2 &mpic 4 1
7519 - 9500 0 0 3 &mpic 1 1
7520 - 9500 0 0 4 &mpic 2 1
7521 + 0x9500 0x0 0x0 0x1 &mpic 0x3 0x1
7522 + 0x9500 0x0 0x0 0x2 &mpic 0x4 0x1
7523 + 0x9500 0x0 0x0 0x3 &mpic 0x1 0x1
7524 + 0x9500 0x0 0x0 0x4 &mpic 0x2 0x1
7525
7526 /* IDSEL 0x12 func 6 - PCI slot 2 */
7527 - 9600 0 0 1 &mpic 3 1
7528 - 9600 0 0 2 &mpic 4 1
7529 - 9600 0 0 3 &mpic 1 1
7530 - 9600 0 0 4 &mpic 2 1
7531 + 0x9600 0x0 0x0 0x1 &mpic 0x3 0x1
7532 + 0x9600 0x0 0x0 0x2 &mpic 0x4 0x1
7533 + 0x9600 0x0 0x0 0x3 &mpic 0x1 0x1
7534 + 0x9600 0x0 0x0 0x4 &mpic 0x2 0x1
7535
7536 /* IDSEL 0x12 func 7 - PCI slot 2 */
7537 - 9700 0 0 1 &mpic 3 1
7538 - 9700 0 0 2 &mpic 4 1
7539 - 9700 0 0 3 &mpic 1 1
7540 - 9700 0 0 4 &mpic 2 1
7541 + 0x9700 0x0 0x0 0x1 &mpic 0x3 0x1
7542 + 0x9700 0x0 0x0 0x2 &mpic 0x4 0x1
7543 + 0x9700 0x0 0x0 0x3 &mpic 0x1 0x1
7544 + 0x9700 0x0 0x0 0x4 &mpic 0x2 0x1
7545
7546 // IDSEL 0x1c USB
7547 - e000 0 0 1 &i8259 c 2
7548 - e100 0 0 2 &i8259 9 2
7549 - e200 0 0 3 &i8259 a 2
7550 - e300 0 0 4 &i8259 b 2
7551 + 0xe000 0x0 0x0 0x1 &i8259 0xc 0x2
7552 + 0xe100 0x0 0x0 0x2 &i8259 0x9 0x2
7553 + 0xe200 0x0 0x0 0x3 &i8259 0xa 0x2
7554 + 0xe300 0x0 0x0 0x4 &i8259 0xb 0x2
7555
7556 // IDSEL 0x1d Audio
7557 - e800 0 0 1 &i8259 6 2
7558 + 0xe800 0x0 0x0 0x1 &i8259 0x6 0x2
7559
7560 // IDSEL 0x1e Legacy
7561 - f000 0 0 1 &i8259 7 2
7562 - f100 0 0 1 &i8259 7 2
7563 + 0xf000 0x0 0x0 0x1 &i8259 0x7 0x2
7564 + 0xf100 0x0 0x0 0x1 &i8259 0x7 0x2
7565
7566 // IDSEL 0x1f IDE/SATA
7567 - f800 0 0 1 &i8259 e 2
7568 - f900 0 0 1 &i8259 5 2
7569 + 0xf800 0x0 0x0 0x1 &i8259 0xe 0x2
7570 + 0xf900 0x0 0x0 0x1 &i8259 0x5 0x2
7571
7572 >;
7573
7574 pcie@0 {
7575 - reg = <0 0 0 0 0>;
7576 + reg = <0x0 0x0 0x0 0x0 0x0>;
7577 #size-cells = <2>;
7578 #address-cells = <3>;
7579 device_type = "pci";
7580 - ranges = <02000000 0 80000000
7581 - 02000000 0 80000000
7582 - 0 20000000
7583 -
7584 - 01000000 0 00000000
7585 - 01000000 0 00000000
7586 - 0 00100000>;
7587 + ranges = <0x2000000 0x0 0x80000000
7588 + 0x2000000 0x0 0x80000000
7589 + 0x0 0x20000000
7590 +
7591 + 0x1000000 0x0 0x0
7592 + 0x1000000 0x0 0x0
7593 + 0x0 0x100000>;
7594 uli1575@0 {
7595 - reg = <0 0 0 0 0>;
7596 + reg = <0x0 0x0 0x0 0x0 0x0>;
7597 #size-cells = <2>;
7598 #address-cells = <3>;
7599 - ranges = <02000000 0 80000000
7600 - 02000000 0 80000000
7601 - 0 20000000
7602 -
7603 - 01000000 0 00000000
7604 - 01000000 0 00000000
7605 - 0 00100000>;
7606 + ranges = <0x2000000 0x0 0x80000000
7607 + 0x2000000 0x0 0x80000000
7608 + 0x0 0x20000000
7609 +
7610 + 0x1000000 0x0 0x0
7611 + 0x1000000 0x0 0x0
7612 + 0x0 0x100000>;
7613 isa@1e {
7614 device_type = "isa";
7615 #interrupt-cells = <2>;
7616 #size-cells = <1>;
7617 #address-cells = <2>;
7618 - reg = <f000 0 0 0 0>;
7619 - ranges = <1 0 01000000 0 0
7620 - 00001000>;
7621 + reg = <0xf000 0x0 0x0 0x0 0x0>;
7622 + ranges = <0x1 0x0 0x1000000 0x0 0x0
7623 + 0x1000>;
7624 interrupt-parent = <&i8259>;
7625
7626 i8259: interrupt-controller@20 {
7627 - reg = <1 20 2
7628 - 1 a0 2
7629 - 1 4d0 2>;
7630 + reg = <0x1 0x20 0x2
7631 + 0x1 0xa0 0x2
7632 + 0x1 0x4d0 0x2>;
7633 interrupt-controller;
7634 device_type = "interrupt-controller";
7635 #address-cells = <0>;
7636 @@ -412,29 +413,29 @@
7637 i8042@60 {
7638 #size-cells = <0>;
7639 #address-cells = <1>;
7640 - reg = <1 60 1 1 64 1>;
7641 - interrupts = <1 3 c 3>;
7642 + reg = <0x1 0x60 0x1 0x1 0x64 0x1>;
7643 + interrupts = <1 3 12 3>;
7644 interrupt-parent =
7645 <&i8259>;
7646
7647 keyboard@0 {
7648 - reg = <0>;
7649 + reg = <0x0>;
7650 compatible = "pnpPNP,303";
7651 };
7652
7653 mouse@1 {
7654 - reg = <1>;
7655 + reg = <0x1>;
7656 compatible = "pnpPNP,f03";
7657 };
7658 };
7659
7660 rtc@70 {
7661 compatible = "pnpPNP,b00";
7662 - reg = <1 70 2>;
7663 + reg = <0x1 0x70 0x2>;
7664 };
7665
7666 gpio@400 {
7667 - reg = <1 400 80>;
7668 + reg = <0x1 0x400 0x80>;
7669 };
7670 };
7671 };
7672 @@ -449,33 +450,33 @@
7673 #interrupt-cells = <1>;
7674 #size-cells = <2>;
7675 #address-cells = <3>;
7676 - reg = <ffe09000 1000>;
7677 - bus-range = <0 ff>;
7678 - ranges = <02000000 0 a0000000 a0000000 0 20000000
7679 - 01000000 0 00000000 ffc10000 0 00010000>;
7680 - clock-frequency = <1fca055>;
7681 + reg = <0xffe09000 0x1000>;
7682 + bus-range = <0 255>;
7683 + ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
7684 + 0x1000000 0x0 0x0 0xffc10000 0x0 0x10000>;
7685 + clock-frequency = <33333333>;
7686 interrupt-parent = <&mpic>;
7687 - interrupts = <1a 2>;
7688 - interrupt-map-mask = <f800 0 0 7>;
7689 + interrupts = <26 2>;
7690 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
7691 interrupt-map = <
7692 /* IDSEL 0x0 */
7693 - 0000 0 0 1 &mpic 4 1
7694 - 0000 0 0 2 &mpic 5 1
7695 - 0000 0 0 3 &mpic 6 1
7696 - 0000 0 0 4 &mpic 7 1
7697 + 0000 0x0 0x0 0x1 &mpic 0x4 0x1
7698 + 0000 0x0 0x0 0x2 &mpic 0x5 0x1
7699 + 0000 0x0 0x0 0x3 &mpic 0x6 0x1
7700 + 0000 0x0 0x0 0x4 &mpic 0x7 0x1
7701 >;
7702 pcie@0 {
7703 - reg = <0 0 0 0 0>;
7704 + reg = <0x0 0x0 0x0 0x0 0x0>;
7705 #size-cells = <2>;
7706 #address-cells = <3>;
7707 device_type = "pci";
7708 - ranges = <02000000 0 a0000000
7709 - 02000000 0 a0000000
7710 - 0 20000000
7711 -
7712 - 01000000 0 00000000
7713 - 01000000 0 00000000
7714 - 0 00100000>;
7715 + ranges = <0x2000000 0x0 0xa0000000
7716 + 0x2000000 0x0 0xa0000000
7717 + 0x0 0x20000000
7718 +
7719 + 0x1000000 0x0 0x0
7720 + 0x1000000 0x0 0x0
7721 + 0x0 0x100000>;
7722 };
7723 };
7724
7725 @@ -486,33 +487,33 @@
7726 #interrupt-cells = <1>;
7727 #size-cells = <2>;
7728 #address-cells = <3>;
7729 - reg = <ffe0a000 1000>;
7730 - bus-range = <0 ff>;
7731 - ranges = <02000000 0 c0000000 c0000000 0 20000000
7732 - 01000000 0 00000000 ffc20000 0 00010000>;
7733 - clock-frequency = <1fca055>;
7734 + reg = <0xffe0a000 0x1000>;
7735 + bus-range = <0 255>;
7736 + ranges = <0x2000000 0x0 0xc0000000 0xc0000000 0x0 0x20000000
7737 + 0x1000000 0x0 0x0 0xffc20000 0x0 0x10000>;
7738 + clock-frequency = <33333333>;
7739 interrupt-parent = <&mpic>;
7740 - interrupts = <1b 2>;
7741 - interrupt-map-mask = <f800 0 0 7>;
7742 + interrupts = <27 2>;
7743 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
7744 interrupt-map = <
7745 /* IDSEL 0x0 */
7746 - 0000 0 0 1 &mpic 0 1
7747 - 0000 0 0 2 &mpic 1 1
7748 - 0000 0 0 3 &mpic 2 1
7749 - 0000 0 0 4 &mpic 3 1
7750 + 0000 0x0 0x0 0x1 &mpic 0x0 0x1
7751 + 0000 0x0 0x0 0x2 &mpic 0x1 0x1
7752 + 0000 0x0 0x0 0x3 &mpic 0x2 0x1
7753 + 0000 0x0 0x0 0x4 &mpic 0x3 0x1
7754 >;
7755 pcie@0 {
7756 - reg = <0 0 0 0 0>;
7757 + reg = <0x0 0x0 0x0 0x0 0x0>;
7758 #size-cells = <2>;
7759 #address-cells = <3>;
7760 device_type = "pci";
7761 - ranges = <02000000 0 c0000000
7762 - 02000000 0 c0000000
7763 - 0 20000000
7764 -
7765 - 01000000 0 00000000
7766 - 01000000 0 00000000
7767 - 0 00100000>;
7768 + ranges = <0x2000000 0x0 0xc0000000
7769 + 0x2000000 0x0 0xc0000000
7770 + 0x0 0x20000000
7771 +
7772 + 0x1000000 0x0 0x0
7773 + 0x1000000 0x0 0x0
7774 + 0x0 0x100000>;
7775 };
7776 };
7777 };
7778 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc8641_hpcn.dts
7779 ===================================================================
7780 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc8641_hpcn.dts
7781 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc8641_hpcn.dts
7782 @@ -13,7 +13,7 @@
7783
7784 / {
7785 model = "MPC8641HPCN";
7786 - compatible = "mpc86xx";
7787 + compatible = "fsl,mpc8641hpcn";
7788 #address-cells = <1>;
7789 #size-cells = <1>;
7790
7791 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc866ads.dts
7792 ===================================================================
7793 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc866ads.dts
7794 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc866ads.dts
7795 @@ -2,6 +2,7 @@
7796 * MPC866 ADS Device Tree Source
7797 *
7798 * Copyright 2006 MontaVista Software, Inc.
7799 + * Copyright 2008 Freescale Semiconductor, Inc.
7800 *
7801 * This program is free software; you can redistribute it and/or modify it
7802 * under the terms of the GNU General Public License as published by the
7803 @@ -9,6 +10,7 @@
7804 * option) any later version.
7805 */
7806
7807 +/dts-v1/;
7808
7809 / {
7810 model = "MPC866ADS";
7811 @@ -22,37 +24,37 @@
7812
7813 PowerPC,866@0 {
7814 device_type = "cpu";
7815 - reg = <0>;
7816 - d-cache-line-size = <10>; // 16 bytes
7817 - i-cache-line-size = <10>; // 16 bytes
7818 - d-cache-size = <2000>; // L1, 8K
7819 - i-cache-size = <4000>; // L1, 16K
7820 + reg = <0x0>;
7821 + d-cache-line-size = <16>; // 16 bytes
7822 + i-cache-line-size = <16>; // 16 bytes
7823 + d-cache-size = <0x2000>; // L1, 8K
7824 + i-cache-size = <0x4000>; // L1, 16K
7825 timebase-frequency = <0>;
7826 bus-frequency = <0>;
7827 clock-frequency = <0>;
7828 - interrupts = <f 2>; // decrementer interrupt
7829 + interrupts = <15 2>; // decrementer interrupt
7830 interrupt-parent = <&PIC>;
7831 };
7832 };
7833
7834 memory {
7835 device_type = "memory";
7836 - reg = <00000000 800000>;
7837 + reg = <0x0 0x800000>;
7838 };
7839
7840 localbus@ff000100 {
7841 compatible = "fsl,mpc866-localbus", "fsl,pq1-localbus";
7842 #address-cells = <2>;
7843 #size-cells = <1>;
7844 - reg = <ff000100 40>;
7845 + reg = <0xff000100 0x40>;
7846
7847 ranges = <
7848 - 1 0 ff080000 00008000
7849 - 5 0 ff0a0000 00008000
7850 + 0x1 0x0 0xff080000 0x8000
7851 + 0x5 0x0 0xff0a0000 0x8000
7852 >;
7853
7854 board-control@1,0 {
7855 - reg = <1 0 20 5 300 4>;
7856 + reg = <0x1 0x0 0x20 0x5 0x300 0x4>;
7857 compatible = "fsl,mpc866ads-bcsr";
7858 };
7859 };
7860 @@ -61,17 +63,17 @@
7861 #address-cells = <1>;
7862 #size-cells = <1>;
7863 device_type = "soc";
7864 - ranges = <0 ff000000 00100000>;
7865 - reg = <ff000000 00000200>;
7866 + ranges = <0x0 0xff000000 0x100000>;
7867 + reg = <0xff000000 0x200>;
7868 bus-frequency = <0>;
7869
7870 mdio@e00 {
7871 compatible = "fsl,mpc866-fec-mdio", "fsl,pq1-fec-mdio";
7872 - reg = <e00 188>;
7873 + reg = <0xe00 0x188>;
7874 #address-cells = <1>;
7875 #size-cells = <0>;
7876 PHY: ethernet-phy@f {
7877 - reg = <f>;
7878 + reg = <0xf>;
7879 device_type = "ethernet-phy";
7880 };
7881 };
7882 @@ -80,7 +82,7 @@
7883 device_type = "network";
7884 compatible = "fsl,mpc866-fec-enet",
7885 "fsl,pq1-fec-enet";
7886 - reg = <e00 188>;
7887 + reg = <0xe00 0x188>;
7888 local-mac-address = [ 00 00 00 00 00 00 ];
7889 interrupts = <3 1>;
7890 interrupt-parent = <&PIC>;
7891 @@ -91,7 +93,7 @@
7892 PIC: pic@0 {
7893 interrupt-controller;
7894 #interrupt-cells = <2>;
7895 - reg = <0 24>;
7896 + reg = <0x0 0x24>;
7897 compatible = "fsl,mpc866-pic", "fsl,pq1-pic";
7898 };
7899
7900 @@ -100,7 +102,7 @@
7901 #size-cells = <1>;
7902 compatible = "fsl,mpc866-cpm", "fsl,cpm1";
7903 ranges;
7904 - reg = <9c0 40>;
7905 + reg = <0x9c0 0x40>;
7906 brg-frequency = <0>;
7907 interrupts = <0 2>; // cpm error interrupt
7908 interrupt-parent = <&CPM_PIC>;
7909 @@ -108,11 +110,11 @@
7910 muram@2000 {
7911 #address-cells = <1>;
7912 #size-cells = <1>;
7913 - ranges = <0 2000 2000>;
7914 + ranges = <0x0 0x2000 0x2000>;
7915
7916 data@0 {
7917 compatible = "fsl,cpm-muram-data";
7918 - reg = <0 1c00>;
7919 + reg = <0x0 0x1c00>;
7920 };
7921 };
7922
7923 @@ -120,7 +122,7 @@
7924 compatible = "fsl,mpc866-brg",
7925 "fsl,cpm1-brg",
7926 "fsl,cpm-brg";
7927 - reg = <9f0 10>;
7928 + reg = <0x9f0 0x10>;
7929 clock-frequency = <0>;
7930 };
7931
7932 @@ -130,7 +132,7 @@
7933 #interrupt-cells = <1>;
7934 interrupts = <5 2 0 2>;
7935 interrupt-parent = <&PIC>;
7936 - reg = <930 20>;
7937 + reg = <0x930 0x20>;
7938 compatible = "fsl,mpc866-cpm-pic",
7939 "fsl,cpm1-pic";
7940 };
7941 @@ -140,31 +142,31 @@
7942 device_type = "serial";
7943 compatible = "fsl,mpc866-smc-uart",
7944 "fsl,cpm1-smc-uart";
7945 - reg = <a80 10 3e80 40>;
7946 + reg = <0xa80 0x10 0x3e80 0x40>;
7947 interrupts = <4>;
7948 interrupt-parent = <&CPM_PIC>;
7949 fsl,cpm-brg = <1>;
7950 - fsl,cpm-command = <0090>;
7951 + fsl,cpm-command = <0x90>;
7952 };
7953
7954 serial@a90 {
7955 device_type = "serial";
7956 compatible = "fsl,mpc866-smc-uart",
7957 "fsl,cpm1-smc-uart";
7958 - reg = <a90 10 3f80 40>;
7959 + reg = <0xa90 0x10 0x3f80 0x40>;
7960 interrupts = <3>;
7961 interrupt-parent = <&CPM_PIC>;
7962 fsl,cpm-brg = <2>;
7963 - fsl,cpm-command = <00d0>;
7964 + fsl,cpm-command = <0xd0>;
7965 };
7966
7967 ethernet@a00 {
7968 device_type = "network";
7969 compatible = "fsl,mpc866-scc-enet",
7970 "fsl,cpm1-scc-enet";
7971 - reg = <a00 18 3c00 100>;
7972 + reg = <0xa00 0x18 0x3c00 0x100>;
7973 local-mac-address = [ 00 00 00 00 00 00 ];
7974 - interrupts = <1e>;
7975 + interrupts = <30>;
7976 interrupt-parent = <&CPM_PIC>;
7977 fsl,cpm-command = <0000>;
7978 linux,network-index = <1>;
7979 Index: linux-2.6.25.4/arch/powerpc/boot/dts/mpc885ads.dts
7980 ===================================================================
7981 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/mpc885ads.dts
7982 +++ linux-2.6.25.4/arch/powerpc/boot/dts/mpc885ads.dts
7983 @@ -2,7 +2,7 @@
7984 * MPC885 ADS Device Tree Source
7985 *
7986 * Copyright 2006 MontaVista Software, Inc.
7987 - * Copyright 2007 Freescale Semiconductor, Inc.
7988 + * Copyright 2007,2008 Freescale Semiconductor, Inc.
7989 *
7990 * This program is free software; you can redistribute it and/or modify it
7991 * under the terms of the GNU General Public License as published by the
7992 @@ -10,6 +10,7 @@
7993 * option) any later version.
7994 */
7995
7996 +/dts-v1/;
7997
7998 / {
7999 model = "MPC885ADS";
8000 @@ -23,45 +24,45 @@
8001
8002 PowerPC,885@0 {
8003 device_type = "cpu";
8004 - reg = <0>;
8005 - d-cache-line-size = <d#16>;
8006 - i-cache-line-size = <d#16>;
8007 - d-cache-size = <d#8192>;
8008 - i-cache-size = <d#8192>;
8009 + reg = <0x0>;
8010 + d-cache-line-size = <16>;
8011 + i-cache-line-size = <16>;
8012 + d-cache-size = <8192>;
8013 + i-cache-size = <8192>;
8014 timebase-frequency = <0>;
8015 bus-frequency = <0>;
8016 clock-frequency = <0>;
8017 - interrupts = <f 2>; // decrementer interrupt
8018 + interrupts = <15 2>; // decrementer interrupt
8019 interrupt-parent = <&PIC>;
8020 };
8021 };
8022
8023 memory {
8024 device_type = "memory";
8025 - reg = <0 0>;
8026 + reg = <0x0 0x0>;
8027 };
8028
8029 localbus@ff000100 {
8030 compatible = "fsl,mpc885-localbus", "fsl,pq1-localbus";
8031 #address-cells = <2>;
8032 #size-cells = <1>;
8033 - reg = <ff000100 40>;
8034 + reg = <0xff000100 0x40>;
8035
8036 ranges = <
8037 - 0 0 fe000000 00800000
8038 - 1 0 ff080000 00008000
8039 - 5 0 ff0a0000 00008000
8040 + 0x0 0x0 0xfe000000 0x800000
8041 + 0x1 0x0 0xff080000 0x8000
8042 + 0x5 0x0 0xff0a0000 0x8000
8043 >;
8044
8045 flash@0,0 {
8046 compatible = "jedec-flash";
8047 - reg = <0 0 800000>;
8048 + reg = <0x0 0x0 0x800000>;
8049 bank-width = <4>;
8050 device-width = <1>;
8051 };
8052
8053 board-control@1,0 {
8054 - reg = <1 0 20 5 300 4>;
8055 + reg = <0x1 0x0 0x20 0x5 0x300 0x4>;
8056 compatible = "fsl,mpc885ads-bcsr";
8057 };
8058 };
8059 @@ -71,30 +72,30 @@
8060 #address-cells = <1>;
8061 #size-cells = <1>;
8062 device_type = "soc";
8063 - ranges = <0 ff000000 00004000>;
8064 + ranges = <0x0 0xff000000 0x4000>;
8065 bus-frequency = <0>;
8066
8067 // Temporary -- will go away once kernel uses ranges for get_immrbase().
8068 - reg = <ff000000 4000>;
8069 + reg = <0xff000000 0x4000>;
8070
8071 mdio@e00 {
8072 compatible = "fsl,mpc885-fec-mdio", "fsl,pq1-fec-mdio";
8073 - reg = <e00 188>;
8074 + reg = <0xe00 0x188>;
8075 #address-cells = <1>;
8076 #size-cells = <0>;
8077
8078 PHY0: ethernet-phy@0 {
8079 - reg = <0>;
8080 + reg = <0x0>;
8081 device_type = "ethernet-phy";
8082 };
8083
8084 PHY1: ethernet-phy@1 {
8085 - reg = <1>;
8086 + reg = <0x1>;
8087 device_type = "ethernet-phy";
8088 };
8089
8090 PHY2: ethernet-phy@2 {
8091 - reg = <2>;
8092 + reg = <0x2>;
8093 device_type = "ethernet-phy";
8094 };
8095 };
8096 @@ -103,7 +104,7 @@
8097 device_type = "network";
8098 compatible = "fsl,mpc885-fec-enet",
8099 "fsl,pq1-fec-enet";
8100 - reg = <e00 188>;
8101 + reg = <0xe00 0x188>;
8102 local-mac-address = [ 00 00 00 00 00 00 ];
8103 interrupts = <3 1>;
8104 interrupt-parent = <&PIC>;
8105 @@ -115,7 +116,7 @@
8106 device_type = "network";
8107 compatible = "fsl,mpc885-fec-enet",
8108 "fsl,pq1-fec-enet";
8109 - reg = <1e00 188>;
8110 + reg = <0x1e00 0x188>;
8111 local-mac-address = [ 00 00 00 00 00 00 ];
8112 interrupts = <7 1>;
8113 interrupt-parent = <&PIC>;
8114 @@ -126,7 +127,7 @@
8115 PIC: interrupt-controller@0 {
8116 interrupt-controller;
8117 #interrupt-cells = <2>;
8118 - reg = <0 24>;
8119 + reg = <0x0 0x24>;
8120 compatible = "fsl,mpc885-pic", "fsl,pq1-pic";
8121 };
8122
8123 @@ -136,29 +137,29 @@
8124 #size-cells = <2>;
8125 compatible = "fsl,pq-pcmcia";
8126 device_type = "pcmcia";
8127 - reg = <80 80>;
8128 + reg = <0x80 0x80>;
8129 interrupt-parent = <&PIC>;
8130 - interrupts = <d 1>;
8131 + interrupts = <13 1>;
8132 };
8133
8134 cpm@9c0 {
8135 #address-cells = <1>;
8136 #size-cells = <1>;
8137 compatible = "fsl,mpc885-cpm", "fsl,cpm1";
8138 - command-proc = <9c0>;
8139 + command-proc = <0x9c0>;
8140 interrupts = <0>; // cpm error interrupt
8141 interrupt-parent = <&CPM_PIC>;
8142 - reg = <9c0 40>;
8143 + reg = <0x9c0 0x40>;
8144 ranges;
8145
8146 muram@2000 {
8147 #address-cells = <1>;
8148 #size-cells = <1>;
8149 - ranges = <0 2000 2000>;
8150 + ranges = <0x0 0x2000 0x2000>;
8151
8152 data@0 {
8153 compatible = "fsl,cpm-muram-data";
8154 - reg = <0 1c00>;
8155 + reg = <0x0 0x1c00>;
8156 };
8157 };
8158
8159 @@ -167,7 +168,7 @@
8160 "fsl,cpm1-brg",
8161 "fsl,cpm-brg";
8162 clock-frequency = <0>;
8163 - reg = <9f0 10>;
8164 + reg = <0x9f0 0x10>;
8165 };
8166
8167 CPM_PIC: interrupt-controller@930 {
8168 @@ -175,7 +176,7 @@
8169 #interrupt-cells = <1>;
8170 interrupts = <5 2 0 2>;
8171 interrupt-parent = <&PIC>;
8172 - reg = <930 20>;
8173 + reg = <0x930 0x20>;
8174 compatible = "fsl,mpc885-cpm-pic",
8175 "fsl,cpm1-pic";
8176 };
8177 @@ -184,34 +185,34 @@
8178 device_type = "serial";
8179 compatible = "fsl,mpc885-smc-uart",
8180 "fsl,cpm1-smc-uart";
8181 - reg = <a80 10 3e80 40>;
8182 + reg = <0xa80 0x10 0x3e80 0x40>;
8183 interrupts = <4>;
8184 interrupt-parent = <&CPM_PIC>;
8185 fsl,cpm-brg = <1>;
8186 - fsl,cpm-command = <0090>;
8187 + fsl,cpm-command = <0x90>;
8188 };
8189
8190 serial@a90 {
8191 device_type = "serial";
8192 compatible = "fsl,mpc885-smc-uart",
8193 "fsl,cpm1-smc-uart";
8194 - reg = <a90 10 3f80 40>;
8195 + reg = <0xa90 0x10 0x3f80 0x40>;
8196 interrupts = <3>;
8197 interrupt-parent = <&CPM_PIC>;
8198 fsl,cpm-brg = <2>;
8199 - fsl,cpm-command = <00d0>;
8200 + fsl,cpm-command = <0xd0>;
8201 };
8202
8203 ethernet@a40 {
8204 device_type = "network";
8205 compatible = "fsl,mpc885-scc-enet",
8206 "fsl,cpm1-scc-enet";
8207 - reg = <a40 18 3e00 100>;
8208 + reg = <0xa40 0x18 0x3e00 0x100>;
8209 local-mac-address = [ 00 00 00 00 00 00 ];
8210 - interrupts = <1c>;
8211 + interrupts = <28>;
8212 interrupt-parent = <&CPM_PIC>;
8213 phy-handle = <&PHY2>;
8214 - fsl,cpm-command = <0080>;
8215 + fsl,cpm-command = <0x80>;
8216 linux,network-index = <2>;
8217 };
8218 };
8219 Index: linux-2.6.25.4/arch/powerpc/boot/dts/pq2fads.dts
8220 ===================================================================
8221 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/pq2fads.dts
8222 +++ linux-2.6.25.4/arch/powerpc/boot/dts/pq2fads.dts
8223 @@ -1,7 +1,7 @@
8224 /*
8225 * Device Tree for the PQ2FADS-ZU board with an MPC8280 chip.
8226 *
8227 - * Copyright 2007 Freescale Semiconductor Inc.
8228 + * Copyright 2007,2008 Freescale Semiconductor Inc.
8229 *
8230 * This program is free software; you can redistribute it and/or modify it
8231 * under the terms of the GNU General Public License as published by the
8232 @@ -9,6 +9,8 @@
8233 * option) any later version.
8234 */
8235
8236 +/dts-v1/;
8237 +
8238 / {
8239 model = "pq2fads";
8240 compatible = "fsl,pq2fads";
8241 @@ -21,11 +23,11 @@
8242
8243 cpu@0 {
8244 device_type = "cpu";
8245 - reg = <0>;
8246 - d-cache-line-size = <d#32>;
8247 - i-cache-line-size = <d#32>;
8248 - d-cache-size = <d#16384>;
8249 - i-cache-size = <d#16384>;
8250 + reg = <0x0>;
8251 + d-cache-line-size = <32>;
8252 + i-cache-line-size = <32>;
8253 + d-cache-size = <16384>;
8254 + i-cache-size = <16384>;
8255 timebase-frequency = <0>;
8256 clock-frequency = <0>;
8257 };
8258 @@ -33,7 +35,7 @@
8259
8260 memory {
8261 device_type = "memory";
8262 - reg = <0 0>;
8263 + reg = <0x0 0x0>;
8264 };
8265
8266 localbus@f0010100 {
8267 @@ -41,67 +43,67 @@
8268 "fsl,pq2-localbus";
8269 #address-cells = <2>;
8270 #size-cells = <1>;
8271 - reg = <f0010100 60>;
8272 + reg = <0xf0010100 0x60>;
8273
8274 - ranges = <0 0 fe000000 00800000
8275 - 1 0 f4500000 00008000
8276 - 8 0 f8200000 00008000>;
8277 + ranges = <0x0 0x0 0xfe000000 0x800000
8278 + 0x1 0x0 0xf4500000 0x8000
8279 + 0x8 0x0 0xf8200000 0x8000>;
8280
8281 flash@0,0 {
8282 compatible = "jedec-flash";
8283 - reg = <0 0 800000>;
8284 + reg = <0x0 0x0 0x800000>;
8285 bank-width = <4>;
8286 device-width = <1>;
8287 };
8288
8289 bcsr@1,0 {
8290 - reg = <1 0 20>;
8291 + reg = <0x1 0x0 0x20>;
8292 compatible = "fsl,pq2fads-bcsr";
8293 };
8294
8295 PCI_PIC: pic@8,0 {
8296 #interrupt-cells = <1>;
8297 interrupt-controller;
8298 - reg = <8 0 8>;
8299 + reg = <0x8 0x0 0x8>;
8300 compatible = "fsl,pq2ads-pci-pic";
8301 interrupt-parent = <&PIC>;
8302 - interrupts = <18 8>;
8303 + interrupts = <24 8>;
8304 };
8305 };
8306
8307 pci@f0010800 {
8308 device_type = "pci";
8309 - reg = <f0010800 10c f00101ac 8 f00101c4 8>;
8310 + reg = <0xf0010800 0x10c 0xf00101ac 0x8 0xf00101c4 0x8>;
8311 compatible = "fsl,mpc8280-pci", "fsl,pq2-pci";
8312 #interrupt-cells = <1>;
8313 #size-cells = <2>;
8314 #address-cells = <3>;
8315 - clock-frequency = <d#66000000>;
8316 - interrupt-map-mask = <f800 0 0 7>;
8317 + clock-frequency = <66000000>;
8318 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
8319 interrupt-map = <
8320 /* IDSEL 0x16 */
8321 - b000 0 0 1 &PCI_PIC 0
8322 - b000 0 0 2 &PCI_PIC 1
8323 - b000 0 0 3 &PCI_PIC 2
8324 - b000 0 0 4 &PCI_PIC 3
8325 + 0xb000 0x0 0x0 0x1 &PCI_PIC 0
8326 + 0xb000 0x0 0x0 0x2 &PCI_PIC 1
8327 + 0xb000 0x0 0x0 0x3 &PCI_PIC 2
8328 + 0xb000 0x0 0x0 0x4 &PCI_PIC 3
8329
8330 /* IDSEL 0x17 */
8331 - b800 0 0 1 &PCI_PIC 4
8332 - b800 0 0 2 &PCI_PIC 5
8333 - b800 0 0 3 &PCI_PIC 6
8334 - b800 0 0 4 &PCI_PIC 7
8335 + 0xb800 0x0 0x0 0x1 &PCI_PIC 4
8336 + 0xb800 0x0 0x0 0x2 &PCI_PIC 5
8337 + 0xb800 0x0 0x0 0x3 &PCI_PIC 6
8338 + 0xb800 0x0 0x0 0x4 &PCI_PIC 7
8339
8340 /* IDSEL 0x18 */
8341 - c000 0 0 1 &PCI_PIC 8
8342 - c000 0 0 2 &PCI_PIC 9
8343 - c000 0 0 3 &PCI_PIC a
8344 - c000 0 0 4 &PCI_PIC b>;
8345 + 0xc000 0x0 0x0 0x1 &PCI_PIC 8
8346 + 0xc000 0x0 0x0 0x2 &PCI_PIC 9
8347 + 0xc000 0x0 0x0 0x3 &PCI_PIC 10
8348 + 0xc000 0x0 0x0 0x4 &PCI_PIC 11>;
8349
8350 interrupt-parent = <&PIC>;
8351 - interrupts = <12 8>;
8352 - ranges = <42000000 0 80000000 80000000 0 20000000
8353 - 02000000 0 a0000000 a0000000 0 20000000
8354 - 01000000 0 00000000 f6000000 0 02000000>;
8355 + interrupts = <18 8>;
8356 + ranges = <0x42000000 0x0 0x80000000 0x80000000 0x0 0x20000000
8357 + 0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
8358 + 0x1000000 0x0 0x0 0xf6000000 0x0 0x2000000>;
8359 };
8360
8361 soc@f0000000 {
8362 @@ -109,27 +111,27 @@
8363 #size-cells = <1>;
8364 device_type = "soc";
8365 compatible = "fsl,mpc8280", "fsl,pq2-soc";
8366 - ranges = <00000000 f0000000 00053000>;
8367 + ranges = <0x0 0xf0000000 0x53000>;
8368
8369 // Temporary -- will go away once kernel uses ranges for get_immrbase().
8370 - reg = <f0000000 00053000>;
8371 + reg = <0xf0000000 0x53000>;
8372
8373 cpm@119c0 {
8374 #address-cells = <1>;
8375 #size-cells = <1>;
8376 #interrupt-cells = <2>;
8377 compatible = "fsl,mpc8280-cpm", "fsl,cpm2";
8378 - reg = <119c0 30>;
8379 + reg = <0x119c0 0x30>;
8380 ranges;
8381
8382 muram@0 {
8383 #address-cells = <1>;
8384 #size-cells = <1>;
8385 - ranges = <0 0 10000>;
8386 + ranges = <0x0 0x0 0x10000>;
8387
8388 data@0 {
8389 compatible = "fsl,cpm-muram-data";
8390 - reg = <0 2000 9800 800>;
8391 + reg = <0x0 0x2000 0x9800 0x800>;
8392 };
8393 };
8394
8395 @@ -137,53 +139,53 @@
8396 compatible = "fsl,mpc8280-brg",
8397 "fsl,cpm2-brg",
8398 "fsl,cpm-brg";
8399 - reg = <119f0 10 115f0 10>;
8400 + reg = <0x119f0 0x10 0x115f0 0x10>;
8401 };
8402
8403 serial@11a00 {
8404 device_type = "serial";
8405 compatible = "fsl,mpc8280-scc-uart",
8406 "fsl,cpm2-scc-uart";
8407 - reg = <11a00 20 8000 100>;
8408 - interrupts = <28 8>;
8409 + reg = <0x11a00 0x20 0x8000 0x100>;
8410 + interrupts = <40 8>;
8411 interrupt-parent = <&PIC>;
8412 fsl,cpm-brg = <1>;
8413 - fsl,cpm-command = <00800000>;
8414 + fsl,cpm-command = <0x800000>;
8415 };
8416
8417 serial@11a20 {
8418 device_type = "serial";
8419 compatible = "fsl,mpc8280-scc-uart",
8420 "fsl,cpm2-scc-uart";
8421 - reg = <11a20 20 8100 100>;
8422 - interrupts = <29 8>;
8423 + reg = <0x11a20 0x20 0x8100 0x100>;
8424 + interrupts = <41 8>;
8425 interrupt-parent = <&PIC>;
8426 fsl,cpm-brg = <2>;
8427 - fsl,cpm-command = <04a00000>;
8428 + fsl,cpm-command = <0x4a00000>;
8429 };
8430
8431 ethernet@11320 {
8432 device_type = "network";
8433 compatible = "fsl,mpc8280-fcc-enet",
8434 "fsl,cpm2-fcc-enet";
8435 - reg = <11320 20 8500 100 113b0 1>;
8436 - interrupts = <21 8>;
8437 + reg = <0x11320 0x20 0x8500 0x100 0x113b0 0x1>;
8438 + interrupts = <33 8>;
8439 interrupt-parent = <&PIC>;
8440 phy-handle = <&PHY0>;
8441 linux,network-index = <0>;
8442 - fsl,cpm-command = <16200300>;
8443 + fsl,cpm-command = <0x16200300>;
8444 };
8445
8446 ethernet@11340 {
8447 device_type = "network";
8448 compatible = "fsl,mpc8280-fcc-enet",
8449 "fsl,cpm2-fcc-enet";
8450 - reg = <11340 20 8600 100 113d0 1>;
8451 - interrupts = <22 8>;
8452 + reg = <0x11340 0x20 0x8600 0x100 0x113d0 0x1>;
8453 + interrupts = <34 8>;
8454 interrupt-parent = <&PIC>;
8455 phy-handle = <&PHY1>;
8456 linux,network-index = <1>;
8457 - fsl,cpm-command = <1a400300>;
8458 + fsl,cpm-command = <0x1a400300>;
8459 local-mac-address = [00 e0 0c 00 79 01];
8460 };
8461
8462 @@ -194,21 +196,21 @@
8463 "fsl,cpm2-mdio-bitbang";
8464 #address-cells = <1>;
8465 #size-cells = <0>;
8466 - reg = <10d40 14>;
8467 + reg = <0x10d40 0x14>;
8468 fsl,mdio-pin = <9>;
8469 - fsl,mdc-pin = <a>;
8470 + fsl,mdc-pin = <10>;
8471
8472 PHY0: ethernet-phy@0 {
8473 interrupt-parent = <&PIC>;
8474 - interrupts = <19 2>;
8475 - reg = <0>;
8476 + interrupts = <25 2>;
8477 + reg = <0x0>;
8478 device_type = "ethernet-phy";
8479 };
8480
8481 PHY1: ethernet-phy@1 {
8482 interrupt-parent = <&PIC>;
8483 - interrupts = <19 2>;
8484 - reg = <3>;
8485 + interrupts = <25 2>;
8486 + reg = <0x3>;
8487 device_type = "ethernet-phy";
8488 };
8489 };
8490 @@ -218,17 +220,17 @@
8491 #size-cells = <0>;
8492 compatible = "fsl,mpc8280-usb",
8493 "fsl,cpm2-usb";
8494 - reg = <11b60 18 8b00 100>;
8495 + reg = <0x11b60 0x18 0x8b00 0x100>;
8496 interrupt-parent = <&PIC>;
8497 - interrupts = <b 8>;
8498 - fsl,cpm-command = <2e600000>;
8499 + interrupts = <11 8>;
8500 + fsl,cpm-command = <0x2e600000>;
8501 };
8502 };
8503
8504 PIC: interrupt-controller@10c00 {
8505 #interrupt-cells = <2>;
8506 interrupt-controller;
8507 - reg = <10c00 80>;
8508 + reg = <0x10c00 0x80>;
8509 compatible = "fsl,mpc8280-pic", "fsl,cpm2-pic";
8510 };
8511
8512 Index: linux-2.6.25.4/arch/powerpc/boot/dts/prpmc2800.dts
8513 ===================================================================
8514 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/prpmc2800.dts
8515 +++ linux-2.6.25.4/arch/powerpc/boot/dts/prpmc2800.dts
8516 @@ -11,6 +11,8 @@
8517 * if it can determine the exact PrPMC type.
8518 */
8519
8520 +/dts-v1/;
8521 +
8522 / {
8523 #address-cells = <1>;
8524 #size-cells = <1>;
8525 @@ -25,46 +27,46 @@
8526 PowerPC,7447 {
8527 device_type = "cpu";
8528 reg = <0>;
8529 - clock-frequency = <2bb0b140>; /* Default (733 MHz) */
8530 - bus-frequency = <7f28155>; /* 133.333333 MHz */
8531 - timebase-frequency = <1fca055>; /* 33.333333 MHz */
8532 - i-cache-line-size = <20>;
8533 - d-cache-line-size = <20>;
8534 - i-cache-size = <8000>;
8535 - d-cache-size = <8000>;
8536 + clock-frequency = <733333333>; /* Default */
8537 + bus-frequency = <133333333>;
8538 + timebase-frequency = <33333333>;
8539 + i-cache-line-size = <32>;
8540 + d-cache-line-size = <32>;
8541 + i-cache-size = <32768>;
8542 + d-cache-size = <32768>;
8543 };
8544 };
8545
8546 memory {
8547 device_type = "memory";
8548 - reg = <00000000 20000000>; /* Default (512MB) */
8549 + reg = <0x0 0x20000000>; /* Default (512MB) */
8550 };
8551
8552 - mv64x60@f1000000 { /* Marvell Discovery */
8553 + system-controller@f1000000 { /* Marvell Discovery mv64360 */
8554 #address-cells = <1>;
8555 #size-cells = <1>;
8556 model = "mv64360"; /* Default */
8557 - compatible = "marvell,mv64x60";
8558 - clock-frequency = <7f28155>; /* 133.333333 MHz */
8559 - reg = <f1000000 00010000>;
8560 - virtual-reg = <f1000000>;
8561 - ranges = <88000000 88000000 01000000 /* PCI 0 I/O Space */
8562 - 80000000 80000000 08000000 /* PCI 0 MEM Space */
8563 - a0000000 a0000000 04000000 /* User FLASH */
8564 - 00000000 f1000000 00010000 /* Bridge's regs */
8565 - f2000000 f2000000 00040000>; /* Integrated SRAM */
8566 + compatible = "marvell,mv64360";
8567 + clock-frequency = <133333333>;
8568 + reg = <0xf1000000 0x10000>;
8569 + virtual-reg = <0xf1000000>;
8570 + ranges = <0x88000000 0x88000000 0x1000000 /* PCI 0 I/O Space */
8571 + 0x80000000 0x80000000 0x8000000 /* PCI 0 MEM Space */
8572 + 0xa0000000 0xa0000000 0x4000000 /* User FLASH */
8573 + 0x00000000 0xf1000000 0x0010000 /* Bridge's regs */
8574 + 0xf2000000 0xf2000000 0x0040000>;/* Integrated SRAM */
8575
8576 flash@a0000000 {
8577 device_type = "rom";
8578 compatible = "direct-mapped";
8579 - reg = <a0000000 4000000>; /* Default (64MB) */
8580 + reg = <0xa0000000 0x4000000>; /* Default (64MB) */
8581 probe-type = "CFI";
8582 bank-width = <4>;
8583 - partitions = <00000000 00100000 /* RO */
8584 - 00100000 00040001 /* RW */
8585 - 00140000 00400000 /* RO */
8586 - 00540000 039c0000 /* RO */
8587 - 03f00000 00100000>; /* RO */
8588 + partitions = <0x00000000 0x00100000 /* RO */
8589 + 0x00100000 0x00040001 /* RW */
8590 + 0x00140000 0x00400000 /* RO */
8591 + 0x00540000 0x039c0000 /* RO */
8592 + 0x03f00000 0x00100000>; /* RO */
8593 partition-names = "FW Image A", "FW Config Data", "Kernel Image", "Filesystem", "FW Image B";
8594 };
8595
8596 @@ -72,171 +74,153 @@
8597 #address-cells = <1>;
8598 #size-cells = <0>;
8599 device_type = "mdio";
8600 - compatible = "marvell,mv64x60-mdio";
8601 - ethernet-phy@1 {
8602 + compatible = "marvell,mv64360-mdio";
8603 + PHY0: ethernet-phy@1 {
8604 device_type = "ethernet-phy";
8605 compatible = "broadcom,bcm5421";
8606 - interrupts = <4c>; /* GPP 12 */
8607 - interrupt-parent = <&/mv64x60/pic>;
8608 + interrupts = <76>; /* GPP 12 */
8609 + interrupt-parent = <&PIC>;
8610 reg = <1>;
8611 };
8612 - ethernet-phy@3 {
8613 + PHY1: ethernet-phy@3 {
8614 device_type = "ethernet-phy";
8615 compatible = "broadcom,bcm5421";
8616 - interrupts = <4c>; /* GPP 12 */
8617 - interrupt-parent = <&/mv64x60/pic>;
8618 + interrupts = <76>; /* GPP 12 */
8619 + interrupt-parent = <&PIC>;
8620 reg = <3>;
8621 };
8622 };
8623
8624 - ethernet@2000 {
8625 - reg = <2000 2000>;
8626 - eth0 {
8627 + ethernet-group@2000 {
8628 + #address-cells = <1>;
8629 + #size-cells = <0>;
8630 + compatible = "marvell,mv64360-eth-group";
8631 + reg = <0x2000 0x2000>;
8632 + ethernet@0 {
8633 device_type = "network";
8634 - compatible = "marvell,mv64x60-eth";
8635 - block-index = <0>;
8636 - interrupts = <20>;
8637 - interrupt-parent = <&/mv64x60/pic>;
8638 - phy = <&/mv64x60/mdio/ethernet-phy@1>;
8639 + compatible = "marvell,mv64360-eth";
8640 + reg = <0>;
8641 + interrupts = <32>;
8642 + interrupt-parent = <&PIC>;
8643 + phy = <&PHY0>;
8644 local-mac-address = [ 00 00 00 00 00 00 ];
8645 };
8646 - eth1 {
8647 + ethernet@1 {
8648 device_type = "network";
8649 - compatible = "marvell,mv64x60-eth";
8650 - block-index = <1>;
8651 - interrupts = <21>;
8652 - interrupt-parent = <&/mv64x60/pic>;
8653 - phy = <&/mv64x60/mdio/ethernet-phy@3>;
8654 + compatible = "marvell,mv64360-eth";
8655 + reg = <1>;
8656 + interrupts = <33>;
8657 + interrupt-parent = <&PIC>;
8658 + phy = <&PHY1>;
8659 local-mac-address = [ 00 00 00 00 00 00 ];
8660 };
8661 };
8662
8663 - sdma@4000 {
8664 - device_type = "dma";
8665 - compatible = "marvell,mv64x60-sdma";
8666 - reg = <4000 c18>;
8667 - virtual-reg = <f1004000>;
8668 - interrupt-base = <0>;
8669 - interrupts = <24>;
8670 - interrupt-parent = <&/mv64x60/pic>;
8671 - };
8672 -
8673 - sdma@6000 {
8674 - device_type = "dma";
8675 - compatible = "marvell,mv64x60-sdma";
8676 - reg = <6000 c18>;
8677 - virtual-reg = <f1006000>;
8678 - interrupt-base = <0>;
8679 - interrupts = <26>;
8680 - interrupt-parent = <&/mv64x60/pic>;
8681 - };
8682 -
8683 - brg@b200 {
8684 - compatible = "marvell,mv64x60-brg";
8685 - reg = <b200 8>;
8686 + SDMA0: sdma@4000 {
8687 + compatible = "marvell,mv64360-sdma";
8688 + reg = <0x4000 0xc18>;
8689 + virtual-reg = <0xf1004000>;
8690 + interrupts = <36>;
8691 + interrupt-parent = <&PIC>;
8692 + };
8693 +
8694 + SDMA1: sdma@6000 {
8695 + compatible = "marvell,mv64360-sdma";
8696 + reg = <0x6000 0xc18>;
8697 + virtual-reg = <0xf1006000>;
8698 + interrupts = <38>;
8699 + interrupt-parent = <&PIC>;
8700 + };
8701 +
8702 + BRG0: brg@b200 {
8703 + compatible = "marvell,mv64360-brg";
8704 + reg = <0xb200 0x8>;
8705 clock-src = <8>;
8706 - clock-frequency = <7ed6b40>;
8707 - current-speed = <2580>;
8708 - bcr = <0>;
8709 + clock-frequency = <133333333>;
8710 + current-speed = <9600>;
8711 };
8712
8713 - brg@b208 {
8714 - compatible = "marvell,mv64x60-brg";
8715 - reg = <b208 8>;
8716 + BRG1: brg@b208 {
8717 + compatible = "marvell,mv64360-brg";
8718 + reg = <0xb208 0x8>;
8719 clock-src = <8>;
8720 - clock-frequency = <7ed6b40>;
8721 - current-speed = <2580>;
8722 - bcr = <0>;
8723 + clock-frequency = <133333333>;
8724 + current-speed = <9600>;
8725 };
8726
8727 - cunit@f200 {
8728 - reg = <f200 200>;
8729 + CUNIT: cunit@f200 {
8730 + reg = <0xf200 0x200>;
8731 };
8732
8733 - mpscrouting@b400 {
8734 - reg = <b400 c>;
8735 + MPSCROUTING: mpscrouting@b400 {
8736 + reg = <0xb400 0xc>;
8737 };
8738
8739 - mpscintr@b800 {
8740 - reg = <b800 100>;
8741 - virtual-reg = <f100b800>;
8742 + MPSCINTR: mpscintr@b800 {
8743 + reg = <0xb800 0x100>;
8744 + virtual-reg = <0xf100b800>;
8745 };
8746
8747 - mpsc@8000 {
8748 + MPSC0: mpsc@8000 {
8749 device_type = "serial";
8750 - compatible = "marvell,mpsc";
8751 - reg = <8000 38>;
8752 - virtual-reg = <f1008000>;
8753 - sdma = <&/mv64x60/sdma@4000>;
8754 - brg = <&/mv64x60/brg@b200>;
8755 - cunit = <&/mv64x60/cunit@f200>;
8756 - mpscrouting = <&/mv64x60/mpscrouting@b400>;
8757 - mpscintr = <&/mv64x60/mpscintr@b800>;
8758 - block-index = <0>;
8759 - max_idle = <28>;
8760 - chr_1 = <0>;
8761 - chr_2 = <0>;
8762 - chr_10 = <3>;
8763 - mpcr = <0>;
8764 - interrupts = <28>;
8765 - interrupt-parent = <&/mv64x60/pic>;
8766 + compatible = "marvell,mv64360-mpsc";
8767 + reg = <0x8000 0x38>;
8768 + virtual-reg = <0xf1008000>;
8769 + sdma = <&SDMA0>;
8770 + brg = <&BRG0>;
8771 + cunit = <&CUNIT>;
8772 + mpscrouting = <&MPSCROUTING>;
8773 + mpscintr = <&MPSCINTR>;
8774 + cell-index = <0>;
8775 + interrupts = <40>;
8776 + interrupt-parent = <&PIC>;
8777 };
8778
8779 - mpsc@9000 {
8780 + MPSC1: mpsc@9000 {
8781 device_type = "serial";
8782 - compatible = "marvell,mpsc";
8783 - reg = <9000 38>;
8784 - virtual-reg = <f1009000>;
8785 - sdma = <&/mv64x60/sdma@6000>;
8786 - brg = <&/mv64x60/brg@b208>;
8787 - cunit = <&/mv64x60/cunit@f200>;
8788 - mpscrouting = <&/mv64x60/mpscrouting@b400>;
8789 - mpscintr = <&/mv64x60/mpscintr@b800>;
8790 - block-index = <1>;
8791 - max_idle = <28>;
8792 - chr_1 = <0>;
8793 - chr_2 = <0>;
8794 - chr_10 = <3>;
8795 - mpcr = <0>;
8796 - interrupts = <2a>;
8797 - interrupt-parent = <&/mv64x60/pic>;
8798 + compatible = "marvell,mv64360-mpsc";
8799 + reg = <0x9000 0x38>;
8800 + virtual-reg = <0xf1009000>;
8801 + sdma = <&SDMA1>;
8802 + brg = <&BRG1>;
8803 + cunit = <&CUNIT>;
8804 + mpscrouting = <&MPSCROUTING>;
8805 + mpscintr = <&MPSCINTR>;
8806 + cell-index = <1>;
8807 + interrupts = <42>;
8808 + interrupt-parent = <&PIC>;
8809 };
8810
8811 wdt@b410 { /* watchdog timer */
8812 - compatible = "marvell,mv64x60-wdt";
8813 - reg = <b410 8>;
8814 - timeout = <a>; /* wdt timeout in seconds */
8815 + compatible = "marvell,mv64360-wdt";
8816 + reg = <0xb410 0x8>;
8817 };
8818
8819 i2c@c000 {
8820 device_type = "i2c";
8821 - compatible = "marvell,mv64x60-i2c";
8822 - reg = <c000 20>;
8823 - virtual-reg = <f100c000>;
8824 - freq_m = <8>;
8825 - freq_n = <3>;
8826 - timeout = <3e8>; /* 1000 = 1 second */
8827 - retries = <1>;
8828 - interrupts = <25>;
8829 - interrupt-parent = <&/mv64x60/pic>;
8830 + compatible = "marvell,mv64360-i2c";
8831 + reg = <0xc000 0x20>;
8832 + virtual-reg = <0xf100c000>;
8833 + interrupts = <37>;
8834 + interrupt-parent = <&PIC>;
8835 };
8836
8837 - pic {
8838 + PIC: pic {
8839 #interrupt-cells = <1>;
8840 #address-cells = <0>;
8841 - compatible = "marvell,mv64x60-pic";
8842 - reg = <0000 88>;
8843 + compatible = "marvell,mv64360-pic";
8844 + reg = <0x0 0x88>;
8845 interrupt-controller;
8846 };
8847
8848 mpp@f000 {
8849 - compatible = "marvell,mv64x60-mpp";
8850 - reg = <f000 10>;
8851 + compatible = "marvell,mv64360-mpp";
8852 + reg = <0xf000 0x10>;
8853 };
8854
8855 gpp@f100 {
8856 - compatible = "marvell,mv64x60-gpp";
8857 - reg = <f100 20>;
8858 + compatible = "marvell,mv64360-gpp";
8859 + reg = <0xf100 0x20>;
8860 };
8861
8862 pci@80000000 {
8863 @@ -244,73 +228,75 @@
8864 #size-cells = <2>;
8865 #interrupt-cells = <1>;
8866 device_type = "pci";
8867 - compatible = "marvell,mv64x60-pci";
8868 - reg = <0cf8 8>;
8869 - ranges = <01000000 0 0 88000000 0 01000000
8870 - 02000000 0 80000000 80000000 0 08000000>;
8871 - bus-range = <0 ff>;
8872 - clock-frequency = <3EF1480>;
8873 - interrupt-pci-iack = <0c34>;
8874 - interrupt-parent = <&/mv64x60/pic>;
8875 - interrupt-map-mask = <f800 0 0 7>;
8876 + compatible = "marvell,mv64360-pci";
8877 + reg = <0xcf8 0x8>;
8878 + ranges = <0x01000000 0x0 0x0
8879 + 0x88000000 0x0 0x01000000
8880 + 0x02000000 0x0 0x80000000
8881 + 0x80000000 0x0 0x08000000>;
8882 + bus-range = <0 255>;
8883 + clock-frequency = <66000000>;
8884 + interrupt-pci-iack = <0xc34>;
8885 + interrupt-parent = <&PIC>;
8886 + interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
8887 interrupt-map = <
8888 /* IDSEL 0x0a */
8889 - 5000 0 0 1 &/mv64x60/pic 50
8890 - 5000 0 0 2 &/mv64x60/pic 51
8891 - 5000 0 0 3 &/mv64x60/pic 5b
8892 - 5000 0 0 4 &/mv64x60/pic 5d
8893 + 0x5000 0 0 1 &PIC 80
8894 + 0x5000 0 0 2 &PIC 81
8895 + 0x5000 0 0 3 &PIC 91
8896 + 0x5000 0 0 4 &PIC 93
8897
8898 /* IDSEL 0x0b */
8899 - 5800 0 0 1 &/mv64x60/pic 5b
8900 - 5800 0 0 2 &/mv64x60/pic 5d
8901 - 5800 0 0 3 &/mv64x60/pic 50
8902 - 5800 0 0 4 &/mv64x60/pic 51
8903 + 0x5800 0 0 1 &PIC 91
8904 + 0x5800 0 0 2 &PIC 93
8905 + 0x5800 0 0 3 &PIC 80
8906 + 0x5800 0 0 4 &PIC 81
8907
8908 /* IDSEL 0x0c */
8909 - 6000 0 0 1 &/mv64x60/pic 5b
8910 - 6000 0 0 2 &/mv64x60/pic 5d
8911 - 6000 0 0 3 &/mv64x60/pic 50
8912 - 6000 0 0 4 &/mv64x60/pic 51
8913 + 0x6000 0 0 1 &PIC 91
8914 + 0x6000 0 0 2 &PIC 93
8915 + 0x6000 0 0 3 &PIC 80
8916 + 0x6000 0 0 4 &PIC 81
8917
8918 /* IDSEL 0x0d */
8919 - 6800 0 0 1 &/mv64x60/pic 5d
8920 - 6800 0 0 2 &/mv64x60/pic 50
8921 - 6800 0 0 3 &/mv64x60/pic 51
8922 - 6800 0 0 4 &/mv64x60/pic 5b
8923 + 0x6800 0 0 1 &PIC 93
8924 + 0x6800 0 0 2 &PIC 80
8925 + 0x6800 0 0 3 &PIC 81
8926 + 0x6800 0 0 4 &PIC 91
8927 >;
8928 };
8929
8930 cpu-error@0070 {
8931 - compatible = "marvell,mv64x60-cpu-error";
8932 - reg = <0070 10 0128 28>;
8933 - interrupts = <03>;
8934 - interrupt-parent = <&/mv64x60/pic>;
8935 + compatible = "marvell,mv64360-cpu-error";
8936 + reg = <0x70 0x10 0x128 0x28>;
8937 + interrupts = <3>;
8938 + interrupt-parent = <&PIC>;
8939 };
8940
8941 sram-ctrl@0380 {
8942 - compatible = "marvell,mv64x60-sram-ctrl";
8943 - reg = <0380 80>;
8944 - interrupts = <0d>;
8945 - interrupt-parent = <&/mv64x60/pic>;
8946 + compatible = "marvell,mv64360-sram-ctrl";
8947 + reg = <0x380 0x80>;
8948 + interrupts = <13>;
8949 + interrupt-parent = <&PIC>;
8950 };
8951
8952 pci-error@1d40 {
8953 - compatible = "marvell,mv64x60-pci-error";
8954 - reg = <1d40 40 0c28 4>;
8955 - interrupts = <0c>;
8956 - interrupt-parent = <&/mv64x60/pic>;
8957 + compatible = "marvell,mv64360-pci-error";
8958 + reg = <0x1d40 0x40 0xc28 0x4>;
8959 + interrupts = <12>;
8960 + interrupt-parent = <&PIC>;
8961 };
8962
8963 mem-ctrl@1400 {
8964 - compatible = "marvell,mv64x60-mem-ctrl";
8965 - reg = <1400 60>;
8966 - interrupts = <11>;
8967 - interrupt-parent = <&/mv64x60/pic>;
8968 + compatible = "marvell,mv64360-mem-ctrl";
8969 + reg = <0x1400 0x60>;
8970 + interrupts = <17>;
8971 + interrupt-parent = <&PIC>;
8972 };
8973 };
8974
8975 chosen {
8976 bootargs = "ip=on";
8977 - linux,stdout-path = "/mv64x60@f1000000/mpsc@8000";
8978 + linux,stdout-path = &MPSC0;
8979 };
8980 };
8981 Index: linux-2.6.25.4/arch/powerpc/boot/dts/rainier.dts
8982 ===================================================================
8983 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/rainier.dts
8984 +++ linux-2.6.25.4/arch/powerpc/boot/dts/rainier.dts
8985 @@ -254,7 +254,6 @@
8986 };
8987
8988 EMAC0: ethernet@ef600e00 {
8989 - linux,network-index = <0>;
8990 device_type = "network";
8991 compatible = "ibm,emac-440grx", "ibm,emac-440epx", "ibm,emac4";
8992 interrupt-parent = <&EMAC0>;
8993 @@ -270,7 +269,7 @@
8994 mal-tx-channel = <0>;
8995 mal-rx-channel = <0>;
8996 cell-index = <0>;
8997 - max-frame-size = <5dc>;
8998 + max-frame-size = <2328>;
8999 rx-fifo-size = <1000>;
9000 tx-fifo-size = <800>;
9001 phy-mode = "rgmii";
9002 @@ -284,7 +283,6 @@
9003 };
9004
9005 EMAC1: ethernet@ef600f00 {
9006 - linux,network-index = <1>;
9007 device_type = "network";
9008 compatible = "ibm,emac-440grx", "ibm,emac-440epx", "ibm,emac4";
9009 interrupt-parent = <&EMAC1>;
9010 @@ -300,7 +298,7 @@
9011 mal-tx-channel = <1>;
9012 mal-rx-channel = <1>;
9013 cell-index = <1>;
9014 - max-frame-size = <5dc>;
9015 + max-frame-size = <2328>;
9016 rx-fifo-size = <1000>;
9017 tx-fifo-size = <800>;
9018 phy-mode = "rgmii";
9019 Index: linux-2.6.25.4/arch/powerpc/boot/dts/sbc8641d.dts
9020 ===================================================================
9021 --- /dev/null
9022 +++ linux-2.6.25.4/arch/powerpc/boot/dts/sbc8641d.dts
9023 @@ -0,0 +1,352 @@
9024 +/*
9025 + * SBC8641D Device Tree Source
9026 + *
9027 + * Copyright 2008 Wind River Systems Inc.
9028 + *
9029 + * Paul Gortmaker (see MAINTAINERS for contact information)
9030 + *
9031 + * Based largely on the mpc8641_hpcn.dts by Freescale Semiconductor Inc.
9032 + *
9033 + * This program is free software; you can redistribute it and/or modify it
9034 + * under the terms of the GNU General Public License as published by the
9035 + * Free Software Foundation; either version 2 of the License, or (at your
9036 + * option) any later version.
9037 + */
9038 +
9039 +/dts-v1/;
9040 +
9041 +/ {
9042 + model = "SBC8641D";
9043 + compatible = "wind,sbc8641";
9044 + #address-cells = <1>;
9045 + #size-cells = <1>;
9046 +
9047 + aliases {
9048 + ethernet0 = &enet0;
9049 + ethernet1 = &enet1;
9050 + ethernet2 = &enet2;
9051 + ethernet3 = &enet3;
9052 + serial0 = &serial0;
9053 + serial1 = &serial1;
9054 + pci0 = &pci0;
9055 + pci1 = &pci1;
9056 + };
9057 +
9058 + cpus {
9059 + #address-cells = <1>;
9060 + #size-cells = <0>;
9061 +
9062 + PowerPC,8641@0 {
9063 + device_type = "cpu";
9064 + reg = <0>;
9065 + d-cache-line-size = <32>;
9066 + i-cache-line-size = <32>;
9067 + d-cache-size = <32768>; // L1
9068 + i-cache-size = <32768>; // L1
9069 + timebase-frequency = <0>; // From uboot
9070 + bus-frequency = <0>; // From uboot
9071 + clock-frequency = <0>; // From uboot
9072 + };
9073 + PowerPC,8641@1 {
9074 + device_type = "cpu";
9075 + reg = <1>;
9076 + d-cache-line-size = <32>;
9077 + i-cache-line-size = <32>;
9078 + d-cache-size = <32768>;
9079 + i-cache-size = <32768>;
9080 + timebase-frequency = <0>; // From uboot
9081 + bus-frequency = <0>; // From uboot
9082 + clock-frequency = <0>; // From uboot
9083 + };
9084 + };
9085 +
9086 + memory {
9087 + device_type = "memory";
9088 + reg = <0x00000000 0x20000000>; // 512M at 0x0
9089 + };
9090 +
9091 + localbus@f8005000 {
9092 + #address-cells = <2>;
9093 + #size-cells = <1>;
9094 + compatible = "fsl,mpc8641-localbus", "simple-bus";
9095 + reg = <0xf8005000 0x1000>;
9096 + interrupts = <19 2>;
9097 + interrupt-parent = <&mpic>;
9098 +
9099 + ranges = <0 0 0xff000000 0x01000000 // 16MB Boot flash
9100 + 1 0 0xf0000000 0x00010000 // 64KB EEPROM
9101 + 2 0 0xf1000000 0x00100000 // EPLD (1MB)
9102 + 3 0 0xe0000000 0x04000000 // 64MB LB SDRAM (CS3)
9103 + 4 0 0xe4000000 0x04000000 // 64MB LB SDRAM (CS4)
9104 + 6 0 0xf4000000 0x00100000 // LCD display (1MB)
9105 + 7 0 0xe8000000 0x04000000>; // 64MB OneNAND
9106 +
9107 + flash@0,0 {
9108 + compatible = "cfi-flash";
9109 + reg = <0 0 0x01000000>;
9110 + bank-width = <2>;
9111 + device-width = <2>;
9112 + #address-cells = <1>;
9113 + #size-cells = <1>;
9114 + partition@0 {
9115 + label = "dtb";
9116 + reg = <0x00000000 0x00100000>;
9117 + read-only;
9118 + };
9119 + partition@300000 {
9120 + label = "kernel";
9121 + reg = <0x00100000 0x00400000>;
9122 + read-only;
9123 + };
9124 + partition@400000 {
9125 + label = "fs";
9126 + reg = <0x00500000 0x00a00000>;
9127 + };
9128 + partition@700000 {
9129 + label = "firmware";
9130 + reg = <0x00f00000 0x00100000>;
9131 + read-only;
9132 + };
9133 + };
9134 +
9135 + epld@2,0 {
9136 + compatible = "wrs,epld-localbus";
9137 + #address-cells = <2>;
9138 + #size-cells = <1>;
9139 + reg = <2 0 0x100000>;
9140 + ranges = <0 0 5 0 1 // User switches
9141 + 1 0 5 1 1 // Board ID/Rev
9142 + 3 0 5 3 1>; // LEDs
9143 + };
9144 + };
9145 +
9146 + soc@f8000000 {
9147 + #address-cells = <1>;
9148 + #size-cells = <1>;
9149 + device_type = "soc";
9150 + compatible = "simple-bus";
9151 + ranges = <0x00000000 0xf8000000 0x00100000>;
9152 + reg = <0xf8000000 0x00001000>; // CCSRBAR
9153 + bus-frequency = <0>;
9154 +
9155 + i2c@3000 {
9156 + #address-cells = <1>;
9157 + #size-cells = <0>;
9158 + cell-index = <0>;
9159 + compatible = "fsl-i2c";
9160 + reg = <0x3000 0x100>;
9161 + interrupts = <43 2>;
9162 + interrupt-parent = <&mpic>;
9163 + dfsrr;
9164 + };
9165 +
9166 + i2c@3100 {
9167 + #address-cells = <1>;
9168 + #size-cells = <0>;
9169 + cell-index = <1>;
9170 + compatible = "fsl-i2c";
9171 + reg = <0x3100 0x100>;
9172 + interrupts = <43 2>;
9173 + interrupt-parent = <&mpic>;
9174 + dfsrr;
9175 + };
9176 +
9177 + mdio@24520 {
9178 + #address-cells = <1>;
9179 + #size-cells = <0>;
9180 + compatible = "fsl,gianfar-mdio";
9181 + reg = <0x24520 0x20>;
9182 +
9183 + phy0: ethernet-phy@1f {
9184 + interrupt-parent = <&mpic>;
9185 + interrupts = <10 1>;
9186 + reg = <0x1f>;
9187 + device_type = "ethernet-phy";
9188 + };
9189 + phy1: ethernet-phy@0 {
9190 + interrupt-parent = <&mpic>;
9191 + interrupts = <10 1>;
9192 + reg = <0>;
9193 + device_type = "ethernet-phy";
9194 + };
9195 + phy2: ethernet-phy@1 {
9196 + interrupt-parent = <&mpic>;
9197 + interrupts = <10 1>;
9198 + reg = <1>;
9199 + device_type = "ethernet-phy";
9200 + };
9201 + phy3: ethernet-phy@2 {
9202 + interrupt-parent = <&mpic>;
9203 + interrupts = <10 1>;
9204 + reg = <2>;
9205 + device_type = "ethernet-phy";
9206 + };
9207 + };
9208 +
9209 + enet0: ethernet@24000 {
9210 + cell-index = <0>;
9211 + device_type = "network";
9212 + model = "TSEC";
9213 + compatible = "gianfar";
9214 + reg = <0x24000 0x1000>;
9215 + local-mac-address = [ 00 00 00 00 00 00 ];
9216 + interrupts = <29 2 30 2 34 2>;
9217 + interrupt-parent = <&mpic>;
9218 + phy-handle = <&phy0>;
9219 + phy-connection-type = "rgmii-id";
9220 + };
9221 +
9222 + enet1: ethernet@25000 {
9223 + cell-index = <1>;
9224 + device_type = "network";
9225 + model = "TSEC";
9226 + compatible = "gianfar";
9227 + reg = <0x25000 0x1000>;
9228 + local-mac-address = [ 00 00 00 00 00 00 ];
9229 + interrupts = <35 2 36 2 40 2>;
9230 + interrupt-parent = <&mpic>;
9231 + phy-handle = <&phy1>;
9232 + phy-connection-type = "rgmii-id";
9233 + };
9234 +
9235 + enet2: ethernet@26000 {
9236 + cell-index = <2>;
9237 + device_type = "network";
9238 + model = "TSEC";
9239 + compatible = "gianfar";
9240 + reg = <0x26000 0x1000>;
9241 + local-mac-address = [ 00 00 00 00 00 00 ];
9242 + interrupts = <31 2 32 2 33 2>;
9243 + interrupt-parent = <&mpic>;
9244 + phy-handle = <&phy2>;
9245 + phy-connection-type = "rgmii-id";
9246 + };
9247 +
9248 + enet3: ethernet@27000 {
9249 + cell-index = <3>;
9250 + device_type = "network";
9251 + model = "TSEC";
9252 + compatible = "gianfar";
9253 + reg = <0x27000 0x1000>;
9254 + local-mac-address = [ 00 00 00 00 00 00 ];
9255 + interrupts = <37 2 38 2 39 2>;
9256 + interrupt-parent = <&mpic>;
9257 + phy-handle = <&phy3>;
9258 + phy-connection-type = "rgmii-id";
9259 + };
9260 +
9261 + serial0: serial@4500 {
9262 + cell-index = <0>;
9263 + device_type = "serial";
9264 + compatible = "ns16550";
9265 + reg = <0x4500 0x100>;
9266 + clock-frequency = <0>;
9267 + interrupts = <42 2>;
9268 + interrupt-parent = <&mpic>;
9269 + };
9270 +
9271 + serial1: serial@4600 {
9272 + cell-index = <1>;
9273 + device_type = "serial";
9274 + compatible = "ns16550";
9275 + reg = <0x4600 0x100>;
9276 + clock-frequency = <0>;
9277 + interrupts = <28 2>;
9278 + interrupt-parent = <&mpic>;
9279 + };
9280 +
9281 + mpic: pic@40000 {
9282 + clock-frequency = <0>;
9283 + interrupt-controller;
9284 + #address-cells = <0>;
9285 + #interrupt-cells = <2>;
9286 + reg = <0x40000 0x40000>;
9287 + compatible = "chrp,open-pic";
9288 + device_type = "open-pic";
9289 + big-endian;
9290 + };
9291 +
9292 + global-utilities@e0000 {
9293 + compatible = "fsl,mpc8641-guts";
9294 + reg = <0xe0000 0x1000>;
9295 + fsl,has-rstcr;
9296 + };
9297 + };
9298 +
9299 + pci0: pcie@f8008000 {
9300 + cell-index = <0>;
9301 + compatible = "fsl,mpc8641-pcie";
9302 + device_type = "pci";
9303 + #interrupt-cells = <1>;
9304 + #size-cells = <2>;
9305 + #address-cells = <3>;
9306 + reg = <0xf8008000 0x1000>;
9307 + bus-range = <0x0 0xff>;
9308 + ranges = <0x02000000 0x0 0x80000000 0x80000000 0x0 0x20000000
9309 + 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>;
9310 + clock-frequency = <33333333>;
9311 + interrupt-parent = <&mpic>;
9312 + interrupts = <24 2>;
9313 + interrupt-map-mask = <0xff00 0 0 7>;
9314 + interrupt-map = <
9315 + /* IDSEL 0x0 */
9316 + 0x0000 0 0 1 &mpic 0 1
9317 + 0x0000 0 0 2 &mpic 1 1
9318 + 0x0000 0 0 3 &mpic 2 1
9319 + 0x0000 0 0 4 &mpic 3 1
9320 + >;
9321 +
9322 + pcie@0 {
9323 + reg = <0 0 0 0 0>;
9324 + #size-cells = <2>;
9325 + #address-cells = <3>;
9326 + device_type = "pci";
9327 + ranges = <0x02000000 0x0 0x80000000
9328 + 0x02000000 0x0 0x80000000
9329 + 0x0 0x20000000
9330 +
9331 + 0x01000000 0x0 0x00000000
9332 + 0x01000000 0x0 0x00000000
9333 + 0x0 0x00100000>;
9334 + };
9335 +
9336 + };
9337 +
9338 + pci1: pcie@f8009000 {
9339 + cell-index = <1>;
9340 + compatible = "fsl,mpc8641-pcie";
9341 + device_type = "pci";
9342 + #interrupt-cells = <1>;
9343 + #size-cells = <2>;
9344 + #address-cells = <3>;
9345 + reg = <0xf8009000 0x1000>;
9346 + bus-range = <0 0xff>;
9347 + ranges = <0x02000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
9348 + 0x01000000 0x0 0x00000000 0xe3000000 0x0 0x00100000>;
9349 + clock-frequency = <33333333>;
9350 + interrupt-parent = <&mpic>;
9351 + interrupts = <25 2>;
9352 + interrupt-map-mask = <0xf800 0 0 7>;
9353 + interrupt-map = <
9354 + /* IDSEL 0x0 */
9355 + 0x0000 0 0 1 &mpic 4 1
9356 + 0x0000 0 0 2 &mpic 5 1
9357 + 0x0000 0 0 3 &mpic 6 1
9358 + 0x0000 0 0 4 &mpic 7 1
9359 + >;
9360 +
9361 + pcie@0 {
9362 + reg = <0 0 0 0 0>;
9363 + #size-cells = <2>;
9364 + #address-cells = <3>;
9365 + device_type = "pci";
9366 + ranges = <0x02000000 0x0 0xa0000000
9367 + 0x02000000 0x0 0xa0000000
9368 + 0x0 0x20000000
9369 +
9370 + 0x01000000 0x0 0x00000000
9371 + 0x01000000 0x0 0x00000000
9372 + 0x0 0x00100000>;
9373 + };
9374 + };
9375 +};
9376 Index: linux-2.6.25.4/arch/powerpc/boot/dts/sequoia.dts
9377 ===================================================================
9378 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/sequoia.dts
9379 +++ linux-2.6.25.4/arch/powerpc/boot/dts/sequoia.dts
9380 @@ -269,7 +269,6 @@
9381 };
9382
9383 EMAC0: ethernet@ef600e00 {
9384 - linux,network-index = <0>;
9385 device_type = "network";
9386 compatible = "ibm,emac-440epx", "ibm,emac4";
9387 interrupt-parent = <&EMAC0>;
9388 @@ -285,7 +284,7 @@
9389 mal-tx-channel = <0>;
9390 mal-rx-channel = <0>;
9391 cell-index = <0>;
9392 - max-frame-size = <5dc>;
9393 + max-frame-size = <2328>;
9394 rx-fifo-size = <1000>;
9395 tx-fifo-size = <800>;
9396 phy-mode = "rgmii";
9397 @@ -299,7 +298,6 @@
9398 };
9399
9400 EMAC1: ethernet@ef600f00 {
9401 - linux,network-index = <1>;
9402 device_type = "network";
9403 compatible = "ibm,emac-440epx", "ibm,emac4";
9404 interrupt-parent = <&EMAC1>;
9405 @@ -315,7 +313,7 @@
9406 mal-tx-channel = <1>;
9407 mal-rx-channel = <1>;
9408 cell-index = <1>;
9409 - max-frame-size = <5dc>;
9410 + max-frame-size = <2328>;
9411 rx-fifo-size = <1000>;
9412 tx-fifo-size = <800>;
9413 phy-mode = "rgmii";
9414 Index: linux-2.6.25.4/arch/powerpc/boot/dts/taishan.dts
9415 ===================================================================
9416 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/taishan.dts
9417 +++ linux-2.6.25.4/arch/powerpc/boot/dts/taishan.dts
9418 @@ -104,6 +104,16 @@
9419 // FIXME: anything else?
9420 };
9421
9422 + L2C0: l2c {
9423 + compatible = "ibm,l2-cache-440gx", "ibm,l2-cache";
9424 + dcr-reg = <20 8 /* Internal SRAM DCR's */
9425 + 30 8>; /* L2 cache DCR's */
9426 + cache-line-size = <20>; /* 32 bytes */
9427 + cache-size = <40000>; /* L2, 256K */
9428 + interrupt-parent = <&UIC2>;
9429 + interrupts = <17 1>;
9430 + };
9431 +
9432 plb {
9433 compatible = "ibm,plb-440gx", "ibm,plb4";
9434 #address-cells = <2>;
9435 @@ -232,10 +242,18 @@
9436 reg = <40000790 8>;
9437 };
9438
9439 + TAH0: emac-tah@40000b50 {
9440 + compatible = "ibm,tah-440gx", "ibm,tah";
9441 + reg = <40000b50 30>;
9442 + };
9443 +
9444 + TAH1: emac-tah@40000d50 {
9445 + compatible = "ibm,tah-440gx", "ibm,tah";
9446 + reg = <40000d50 30>;
9447 + };
9448
9449 EMAC0: ethernet@40000800 {
9450 unused = <1>;
9451 - linux,network-index = <2>;
9452 device_type = "network";
9453 compatible = "ibm,emac-440gx", "ibm,emac4";
9454 interrupt-parent = <&UIC1>;
9455 @@ -256,7 +274,6 @@
9456 };
9457 EMAC1: ethernet@40000900 {
9458 unused = <1>;
9459 - linux,network-index = <3>;
9460 device_type = "network";
9461 compatible = "ibm,emac-440gx", "ibm,emac4";
9462 interrupt-parent = <&UIC1>;
9463 @@ -277,7 +294,6 @@
9464 };
9465
9466 EMAC2: ethernet@40000c00 {
9467 - linux,network-index = <0>;
9468 device_type = "network";
9469 compatible = "ibm,emac-440gx", "ibm,emac4";
9470 interrupt-parent = <&UIC2>;
9471 @@ -288,7 +304,7 @@
9472 mal-tx-channel = <2>;
9473 mal-rx-channel = <2>;
9474 cell-index = <2>;
9475 - max-frame-size = <5dc>;
9476 + max-frame-size = <2328>;
9477 rx-fifo-size = <1000>;
9478 tx-fifo-size = <800>;
9479 phy-mode = "rgmii";
9480 @@ -297,10 +313,11 @@
9481 rgmii-channel = <0>;
9482 zmii-device = <&ZMII0>;
9483 zmii-channel = <2>;
9484 + tah-device = <&TAH0>;
9485 + tah-channel = <0>;
9486 };
9487
9488 EMAC3: ethernet@40000e00 {
9489 - linux,network-index = <1>;
9490 device_type = "network";
9491 compatible = "ibm,emac-440gx", "ibm,emac4";
9492 interrupt-parent = <&UIC2>;
9493 @@ -311,7 +328,7 @@
9494 mal-tx-channel = <3>;
9495 mal-rx-channel = <3>;
9496 cell-index = <3>;
9497 - max-frame-size = <5dc>;
9498 + max-frame-size = <2328>;
9499 rx-fifo-size = <1000>;
9500 tx-fifo-size = <800>;
9501 phy-mode = "rgmii";
9502 @@ -320,6 +337,8 @@
9503 rgmii-channel = <1>;
9504 zmii-device = <&ZMII0>;
9505 zmii-channel = <3>;
9506 + tah-device = <&TAH1>;
9507 + tah-channel = <0>;
9508 };
9509
9510
9511 Index: linux-2.6.25.4/arch/powerpc/boot/dts/walnut.dts
9512 ===================================================================
9513 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/walnut.dts
9514 +++ linux-2.6.25.4/arch/powerpc/boot/dts/walnut.dts
9515 @@ -125,7 +125,6 @@
9516 };
9517
9518 EMAC: ethernet@ef600800 {
9519 - linux,network-index = <0>;
9520 device_type = "network";
9521 compatible = "ibm,emac-405gp", "ibm,emac";
9522 interrupt-parent = <&UIC0>;
9523 Index: linux-2.6.25.4/arch/powerpc/boot/dts/warp.dts
9524 ===================================================================
9525 --- linux-2.6.25.4.orig/arch/powerpc/boot/dts/warp.dts
9526 +++ linux-2.6.25.4/arch/powerpc/boot/dts/warp.dts
9527 @@ -204,7 +204,6 @@
9528 };
9529
9530 EMAC0: ethernet@ef600e00 {
9531 - linux,network-index = <0>;
9532 device_type = "network";
9533 compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac";
9534 interrupt-parent = <&UIC1>;
9535 Index: linux-2.6.25.4/arch/powerpc/boot/dts/yosemite.dts
9536 ===================================================================
9537 --- /dev/null
9538 +++ linux-2.6.25.4/arch/powerpc/boot/dts/yosemite.dts
9539 @@ -0,0 +1,304 @@
9540 +/*
9541 + * Device Tree Source for AMCC Yosemite
9542 + *
9543 + * Copyright 2008 IBM Corp.
9544 + * Josh Boyer <jwboyer@linux.vnet.ibm.com>
9545 + *
9546 + * This file is licensed under the terms of the GNU General Public
9547 + * License version 2. This program is licensed "as is" without
9548 + * any warranty of any kind, whether express or implied.
9549 + */
9550 +
9551 +/ {
9552 + #address-cells = <2>;
9553 + #size-cells = <1>;
9554 + model = "amcc,yosemite";
9555 + compatible = "amcc,yosemite","amcc,bamboo";
9556 + dcr-parent = <&/cpus/cpu@0>;
9557 +
9558 + aliases {
9559 + ethernet0 = &EMAC0;
9560 + ethernet1 = &EMAC1;
9561 + serial0 = &UART0;
9562 + serial1 = &UART1;
9563 + serial2 = &UART2;
9564 + serial3 = &UART3;
9565 + };
9566 +
9567 + cpus {
9568 + #address-cells = <1>;
9569 + #size-cells = <0>;
9570 +
9571 + cpu@0 {
9572 + device_type = "cpu";
9573 + model = "PowerPC,440EP";
9574 + reg = <0>;
9575 + clock-frequency = <0>; /* Filled in by zImage */
9576 + timebase-frequency = <0>; /* Filled in by zImage */
9577 + i-cache-line-size = <20>;
9578 + d-cache-line-size = <20>;
9579 + i-cache-size = <8000>;
9580 + d-cache-size = <8000>;
9581 + dcr-controller;
9582 + dcr-access-method = "native";
9583 + };
9584 + };
9585 +
9586 + memory {
9587 + device_type = "memory";
9588 + reg = <0 0 0>; /* Filled in by zImage */
9589 + };
9590 +
9591 + UIC0: interrupt-controller0 {
9592 + compatible = "ibm,uic-440ep","ibm,uic";
9593 + interrupt-controller;
9594 + cell-index = <0>;
9595 + dcr-reg = <0c0 009>;
9596 + #address-cells = <0>;
9597 + #size-cells = <0>;
9598 + #interrupt-cells = <2>;
9599 + };
9600 +
9601 + UIC1: interrupt-controller1 {
9602 + compatible = "ibm,uic-440ep","ibm,uic";
9603 + interrupt-controller;
9604 + cell-index = <1>;
9605 + dcr-reg = <0d0 009>;
9606 + #address-cells = <0>;
9607 + #size-cells = <0>;
9608 + #interrupt-cells = <2>;
9609 + interrupts = <1e 4 1f 4>; /* cascade */
9610 + interrupt-parent = <&UIC0>;
9611 + };
9612 +
9613 + SDR0: sdr {
9614 + compatible = "ibm,sdr-440ep";
9615 + dcr-reg = <00e 002>;
9616 + };
9617 +
9618 + CPR0: cpr {
9619 + compatible = "ibm,cpr-440ep";
9620 + dcr-reg = <00c 002>;
9621 + };
9622 +
9623 + plb {
9624 + compatible = "ibm,plb-440ep", "ibm,plb-440gp", "ibm,plb4";
9625 + #address-cells = <2>;
9626 + #size-cells = <1>;
9627 + ranges;
9628 + clock-frequency = <0>; /* Filled in by zImage */
9629 +
9630 + SDRAM0: sdram {
9631 + compatible = "ibm,sdram-440ep", "ibm,sdram-405gp";
9632 + dcr-reg = <010 2>;
9633 + };
9634 +
9635 + DMA0: dma {
9636 + compatible = "ibm,dma-440ep", "ibm,dma-440gp";
9637 + dcr-reg = <100 027>;
9638 + };
9639 +
9640 + MAL0: mcmal {
9641 + compatible = "ibm,mcmal-440ep", "ibm,mcmal-440gp", "ibm,mcmal";
9642 + dcr-reg = <180 62>;
9643 + num-tx-chans = <4>;
9644 + num-rx-chans = <2>;
9645 + interrupt-parent = <&MAL0>;
9646 + interrupts = <0 1 2 3 4>;
9647 + #interrupt-cells = <1>;
9648 + #address-cells = <0>;
9649 + #size-cells = <0>;
9650 + interrupt-map = </*TXEOB*/ 0 &UIC0 a 4
9651 + /*RXEOB*/ 1 &UIC0 b 4
9652 + /*SERR*/ 2 &UIC1 0 4
9653 + /*TXDE*/ 3 &UIC1 1 4
9654 + /*RXDE*/ 4 &UIC1 2 4>;
9655 + };
9656 +
9657 + POB0: opb {
9658 + compatible = "ibm,opb-440ep", "ibm,opb-440gp", "ibm,opb";
9659 + #address-cells = <1>;
9660 + #size-cells = <1>;
9661 + /* Bamboo is oddball in the 44x world and doesn't use the ERPN
9662 + * bits.
9663 + */
9664 + ranges = <00000000 0 00000000 80000000
9665 + 80000000 0 80000000 80000000>;
9666 + interrupt-parent = <&UIC1>;
9667 + interrupts = <7 4>;
9668 + clock-frequency = <0>; /* Filled in by zImage */
9669 +
9670 + EBC0: ebc {
9671 + compatible = "ibm,ebc-440ep", "ibm,ebc-440gp", "ibm,ebc";
9672 + dcr-reg = <012 2>;
9673 + #address-cells = <2>;
9674 + #size-cells = <1>;
9675 + clock-frequency = <0>; /* Filled in by zImage */
9676 + interrupts = <5 1>;
9677 + interrupt-parent = <&UIC1>;
9678 + };
9679 +
9680 + UART0: serial@ef600300 {
9681 + device_type = "serial";
9682 + compatible = "ns16550";
9683 + reg = <ef600300 8>;
9684 + virtual-reg = <ef600300>;
9685 + clock-frequency = <0>; /* Filled in by zImage */
9686 + current-speed = <1c200>;
9687 + interrupt-parent = <&UIC0>;
9688 + interrupts = <0 4>;
9689 + };
9690 +
9691 + UART1: serial@ef600400 {
9692 + device_type = "serial";
9693 + compatible = "ns16550";
9694 + reg = <ef600400 8>;
9695 + virtual-reg = <ef600400>;
9696 + clock-frequency = <0>;
9697 + current-speed = <0>;
9698 + interrupt-parent = <&UIC0>;
9699 + interrupts = <1 4>;
9700 + };
9701 +
9702 + UART2: serial@ef600500 {
9703 + device_type = "serial";
9704 + compatible = "ns16550";
9705 + reg = <ef600500 8>;
9706 + virtual-reg = <ef600500>;
9707 + clock-frequency = <0>;
9708 + current-speed = <0>;
9709 + interrupt-parent = <&UIC0>;
9710 + interrupts = <3 4>;
9711 + status = "disabled";
9712 + };
9713 +
9714 + UART3: serial@ef600600 {
9715 + device_type = "serial";
9716 + compatible = "ns16550";
9717 + reg = <ef600600 8>;
9718 + virtual-reg = <ef600600>;
9719 + clock-frequency = <0>;
9720 + current-speed = <0>;
9721 + interrupt-parent = <&UIC0>;
9722 + interrupts = <4 4>;
9723 + status = "disabled";
9724 + };
9725 +
9726 + IIC0: i2c@ef600700 {
9727 + compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic";
9728 + reg = <ef600700 14>;
9729 + interrupt-parent = <&UIC0>;
9730 + interrupts = <2 4>;
9731 + };
9732 +
9733 + IIC1: i2c@ef600800 {
9734 + compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic";
9735 + reg = <ef600800 14>;
9736 + interrupt-parent = <&UIC0>;
9737 + interrupts = <7 4>;
9738 + };
9739 +
9740 + spi@ef600900 {
9741 + compatible = "amcc,spi-440ep";
9742 + reg = <ef600900 6>;
9743 + interrupts = <8 4>;
9744 + interrupt-parent = <&UIC0>;
9745 + };
9746 +
9747 + ZMII0: emac-zmii@ef600d00 {
9748 + compatible = "ibm,zmii-440ep", "ibm,zmii-440gp", "ibm,zmii";
9749 + reg = <ef600d00 c>;
9750 + };
9751 +
9752 + EMAC0: ethernet@ef600e00 {
9753 + device_type = "network";
9754 + compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac";
9755 + interrupt-parent = <&UIC1>;
9756 + interrupts = <1c 4 1d 4>;
9757 + reg = <ef600e00 70>;
9758 + local-mac-address = [000000000000];
9759 + mal-device = <&MAL0>;
9760 + mal-tx-channel = <0 1>;
9761 + mal-rx-channel = <0>;
9762 + cell-index = <0>;
9763 + max-frame-size = <5dc>;
9764 + rx-fifo-size = <1000>;
9765 + tx-fifo-size = <800>;
9766 + phy-mode = "rmii";
9767 + phy-map = <00000000>;
9768 + zmii-device = <&ZMII0>;
9769 + zmii-channel = <0>;
9770 + };
9771 +
9772 + EMAC1: ethernet@ef600f00 {
9773 + device_type = "network";
9774 + compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac";
9775 + interrupt-parent = <&UIC1>;
9776 + interrupts = <1e 4 1f 4>;
9777 + reg = <ef600f00 70>;
9778 + local-mac-address = [000000000000];
9779 + mal-device = <&MAL0>;
9780 + mal-tx-channel = <2 3>;
9781 + mal-rx-channel = <1>;
9782 + cell-index = <1>;
9783 + max-frame-size = <5dc>;
9784 + rx-fifo-size = <1000>;
9785 + tx-fifo-size = <800>;
9786 + phy-mode = "rmii";
9787 + phy-map = <00000000>;
9788 + zmii-device = <&ZMII0>;
9789 + zmii-channel = <1>;
9790 + };
9791 +
9792 + usb@ef601000 {
9793 + compatible = "ohci-be";
9794 + reg = <ef601000 80>;
9795 + interrupts = <8 4 9 4>;
9796 + interrupt-parent = < &UIC1 >;
9797 + };
9798 + };
9799 +
9800 + PCI0: pci@ec000000 {
9801 + device_type = "pci";
9802 + #interrupt-cells = <1>;
9803 + #size-cells = <2>;
9804 + #address-cells = <3>;
9805 + compatible = "ibm,plb440ep-pci", "ibm,plb-pci";
9806 + primary;
9807 + reg = <0 eec00000 8 /* Config space access */
9808 + 0 eed00000 4 /* IACK */
9809 + 0 eed00000 4 /* Special cycle */
9810 + 0 ef400000 40>; /* Internal registers */
9811 +
9812 + /* Outbound ranges, one memory and one IO,
9813 + * later cannot be changed. Chip supports a second
9814 + * IO range but we don't use it for now
9815 + */
9816 + ranges = <02000000 0 a0000000 0 a0000000 0 20000000
9817 + 01000000 0 00000000 0 e8000000 0 00010000>;
9818 +
9819 + /* Inbound 2GB range starting at 0 */
9820 + dma-ranges = <42000000 0 0 0 0 0 80000000>;
9821 +
9822 + /* Bamboo has all 4 IRQ pins tied together per slot */
9823 + interrupt-map-mask = <f800 0 0 0>;
9824 + interrupt-map = <
9825 + /* IDSEL 1 */
9826 + 0800 0 0 0 &UIC0 1c 8
9827 +
9828 + /* IDSEL 2 */
9829 + 1000 0 0 0 &UIC0 1b 8
9830 +
9831 + /* IDSEL 3 */
9832 + 1800 0 0 0 &UIC0 1a 8
9833 +
9834 + /* IDSEL 4 */
9835 + 2000 0 0 0 &UIC0 19 8
9836 + >;
9837 + };
9838 + };
9839 +
9840 + chosen {
9841 + linux,stdout-path = "/plb/opb/serial@ef600300";
9842 + };
9843 +};
9844 Index: linux-2.6.25.4/arch/powerpc/boot/ebony.c
9845 ===================================================================
9846 --- linux-2.6.25.4.orig/arch/powerpc/boot/ebony.c
9847 +++ linux-2.6.25.4/arch/powerpc/boot/ebony.c
9848 @@ -75,7 +75,8 @@ static void ebony_fixups(void)
9849
9850 ibm440gp_fixup_clocks(sysclk, 6 * 1843200);
9851 ibm4xx_sdram_fixup_memsize();
9852 - dt_fixup_mac_addresses(ebony_mac0, ebony_mac1);
9853 + dt_fixup_mac_address_by_alias("ethernet0", ebony_mac0);
9854 + dt_fixup_mac_address_by_alias("ethernet1", ebony_mac1);
9855 ibm4xx_fixup_ebc_ranges("/plb/opb/ebc");
9856 ebony_flashsel_fixup();
9857 }
9858 Index: linux-2.6.25.4/arch/powerpc/boot/libfdt-wrapper.c
9859 ===================================================================
9860 --- linux-2.6.25.4.orig/arch/powerpc/boot/libfdt-wrapper.c
9861 +++ linux-2.6.25.4/arch/powerpc/boot/libfdt-wrapper.c
9862 @@ -35,7 +35,7 @@
9863 #define check_err(err) \
9864 ({ \
9865 if (BAD_ERROR(err) || ((err < 0) && DEBUG)) \
9866 - printf("%s():%d %s\n\r", __FUNCTION__, __LINE__, \
9867 + printf("%s():%d %s\n\r", __func__, __LINE__, \
9868 fdt_strerror(err)); \
9869 if (BAD_ERROR(err)) \
9870 exit(); \
9871 Index: linux-2.6.25.4/arch/powerpc/boot/mpc52xx-psc.c
9872 ===================================================================
9873 --- linux-2.6.25.4.orig/arch/powerpc/boot/mpc52xx-psc.c
9874 +++ linux-2.6.25.4/arch/powerpc/boot/mpc52xx-psc.c
9875 @@ -51,14 +51,9 @@ static unsigned char psc_getc(void)
9876
9877 int mpc5200_psc_console_init(void *devp, struct serial_console_data *scdp)
9878 {
9879 - int n;
9880 -
9881 /* Get the base address of the psc registers */
9882 - n = getprop(devp, "virtual-reg", &psc, sizeof(psc));
9883 - if (n != sizeof(psc)) {
9884 - if (!dt_xlate_reg(devp, 0, (void *)&psc, NULL))
9885 - return -1;
9886 - }
9887 + if (dt_get_virtual_reg(devp, &psc, 1) < 1)
9888 + return -1;
9889
9890 scdp->open = psc_open;
9891 scdp->putc = psc_putc;
9892 Index: linux-2.6.25.4/arch/powerpc/boot/mpsc.c
9893 ===================================================================
9894 --- linux-2.6.25.4.orig/arch/powerpc/boot/mpsc.c
9895 +++ linux-2.6.25.4/arch/powerpc/boot/mpsc.c
9896 @@ -141,7 +141,7 @@ int mpsc_console_init(void *devp, struct
9897 if (mpscintr_base == NULL)
9898 goto err_out;
9899
9900 - n = getprop(devp, "block-index", &v, sizeof(v));
9901 + n = getprop(devp, "cell-index", &v, sizeof(v));
9902 if (n != sizeof(v))
9903 goto err_out;
9904 reg_set = (int)v;
9905 Index: linux-2.6.25.4/arch/powerpc/boot/mv64x60.c
9906 ===================================================================
9907 --- linux-2.6.25.4.orig/arch/powerpc/boot/mv64x60.c
9908 +++ linux-2.6.25.4/arch/powerpc/boot/mv64x60.c
9909 @@ -535,7 +535,7 @@ u8 *mv64x60_get_bridge_pbase(void)
9910 u32 v[2];
9911 void *devp;
9912
9913 - devp = finddevice("/mv64x60");
9914 + devp = find_node_by_compatible(NULL, "marvell,mv64360");
9915 if (devp == NULL)
9916 goto err_out;
9917 if (getprop(devp, "reg", v, sizeof(v)) != sizeof(v))
9918 @@ -553,7 +553,7 @@ u8 *mv64x60_get_bridge_base(void)
9919 u32 v;
9920 void *devp;
9921
9922 - devp = finddevice("/mv64x60");
9923 + devp = find_node_by_compatible(NULL, "marvell,mv64360");
9924 if (devp == NULL)
9925 goto err_out;
9926 if (getprop(devp, "virtual-reg", &v, sizeof(v)) != sizeof(v))
9927 Index: linux-2.6.25.4/arch/powerpc/boot/mv64x60_i2c.c
9928 ===================================================================
9929 --- linux-2.6.25.4.orig/arch/powerpc/boot/mv64x60_i2c.c
9930 +++ linux-2.6.25.4/arch/powerpc/boot/mv64x60_i2c.c
9931 @@ -185,7 +185,7 @@ int mv64x60_i2c_open(void)
9932 u32 v;
9933 void *devp;
9934
9935 - devp = finddevice("/mv64x60/i2c");
9936 + devp = find_node_by_compatible(NULL, "marvell,mv64360-i2c");
9937 if (devp == NULL)
9938 goto err_out;
9939 if (getprop(devp, "virtual-reg", &v, sizeof(v)) != sizeof(v))
9940 Index: linux-2.6.25.4/arch/powerpc/boot/ns16550.c
9941 ===================================================================
9942 --- linux-2.6.25.4.orig/arch/powerpc/boot/ns16550.c
9943 +++ linux-2.6.25.4/arch/powerpc/boot/ns16550.c
9944 @@ -55,15 +55,9 @@ static u8 ns16550_tstc(void)
9945 int ns16550_console_init(void *devp, struct serial_console_data *scdp)
9946 {
9947 int n;
9948 - unsigned long reg_phys;
9949
9950 - n = getprop(devp, "virtual-reg", &reg_base, sizeof(reg_base));
9951 - if (n != sizeof(reg_base)) {
9952 - if (!dt_xlate_reg(devp, 0, &reg_phys, NULL))
9953 - return -1;
9954 -
9955 - reg_base = (void *)reg_phys;
9956 - }
9957 + if (dt_get_virtual_reg(devp, (void **)&reg_base, 1) < 1)
9958 + return -1;
9959
9960 n = getprop(devp, "reg-shift", &reg_shift, sizeof(reg_shift));
9961 if (n != sizeof(reg_shift))
9962 Index: linux-2.6.25.4/arch/powerpc/boot/ops.h
9963 ===================================================================
9964 --- linux-2.6.25.4.orig/arch/powerpc/boot/ops.h
9965 +++ linux-2.6.25.4/arch/powerpc/boot/ops.h
9966 @@ -95,6 +95,7 @@ int dt_xlate_reg(void *node, int res, un
9967 int dt_xlate_addr(void *node, u32 *buf, int buflen, unsigned long *xlated_addr);
9968 int dt_is_compatible(void *node, const char *compat);
9969 void dt_get_reg_format(void *node, u32 *naddr, u32 *nsize);
9970 +int dt_get_virtual_reg(void *node, void **addr, int nres);
9971
9972 static inline void *finddevice(const char *name)
9973 {
9974 Index: linux-2.6.25.4/arch/powerpc/boot/prpmc2800.c
9975 ===================================================================
9976 --- linux-2.6.25.4.orig/arch/powerpc/boot/prpmc2800.c
9977 +++ linux-2.6.25.4/arch/powerpc/boot/prpmc2800.c
9978 @@ -344,20 +344,20 @@ static void prpmc2800_bridge_setup(u32 m
9979 acc_bits);
9980
9981 /* Get the cpu -> pci i/o & mem mappings from the device tree */
9982 - devp = finddevice("/mv64x60/pci@80000000");
9983 + devp = find_node_by_compatible(NULL, "marvell,mv64360-pci");
9984 if (devp == NULL)
9985 - fatal("Error: Missing /mv64x60/pci@80000000"
9986 + fatal("Error: Missing marvell,mv64360-pci"
9987 " device tree node\n\r");
9988
9989 rc = getprop(devp, "ranges", v, sizeof(v));
9990 if (rc != sizeof(v))
9991 - fatal("Error: Can't find /mv64x60/pci@80000000/ranges"
9992 + fatal("Error: Can't find marvell,mv64360-pci ranges"
9993 " property\n\r");
9994
9995 /* Get the cpu -> pci i/o & mem mappings from the device tree */
9996 - devp = finddevice("/mv64x60");
9997 + devp = find_node_by_compatible(NULL, "marvell,mv64360");
9998 if (devp == NULL)
9999 - fatal("Error: Missing /mv64x60 device tree node\n\r");
10000 + fatal("Error: Missing marvell,mv64360 device tree node\n\r");
10001
10002 enables = in_le32((u32 *)(bridge_base + MV64x60_CPU_BAR_ENABLE));
10003 enables |= 0x0007fe00; /* Disable all cpu->pci windows */
10004 @@ -429,9 +429,9 @@ static void prpmc2800_fixups(void)
10005 setprop(devp, "model", model, l);
10006
10007 /* Set /cpus/PowerPC,7447/clock-frequency */
10008 - devp = finddevice("/cpus/PowerPC,7447");
10009 + devp = find_node_by_prop_value_str(NULL, "device_type", "cpu");
10010 if (devp == NULL)
10011 - fatal("Error: Missing proper /cpus device tree node\n\r");
10012 + fatal("Error: Missing proper cpu device tree node\n\r");
10013 v[0] = bip->core_speed;
10014 setprop(devp, "clock-frequency", &v[0], sizeof(v[0]));
10015
10016 @@ -443,16 +443,17 @@ static void prpmc2800_fixups(void)
10017 v[1] = bip->mem_size;
10018 setprop(devp, "reg", v, sizeof(v));
10019
10020 - /* Update /mv64x60/model, if this is a mv64362 */
10021 + /* Update model, if this is a mv64362 */
10022 if (bip->bridge_type == BRIDGE_TYPE_MV64362) {
10023 - devp = finddevice("/mv64x60");
10024 + devp = find_node_by_compatible(NULL, "marvell,mv64360");
10025 if (devp == NULL)
10026 - fatal("Error: Missing /mv64x60 device tree node\n\r");
10027 + fatal("Error: Missing marvell,mv64360"
10028 + " device tree node\n\r");
10029 setprop(devp, "model", "mv64362", strlen("mv64362") + 1);
10030 }
10031
10032 /* Set User FLASH size */
10033 - devp = finddevice("/mv64x60/flash@a0000000");
10034 + devp = find_node_by_compatible(NULL, "direct-mapped");
10035 if (devp == NULL)
10036 fatal("Error: Missing User FLASH device tree node\n\r");
10037 rc = getprop(devp, "reg", v, sizeof(v));
10038 Index: linux-2.6.25.4/arch/powerpc/boot/ps3-head.S
10039 ===================================================================
10040 --- linux-2.6.25.4.orig/arch/powerpc/boot/ps3-head.S
10041 +++ linux-2.6.25.4/arch/powerpc/boot/ps3-head.S
10042 @@ -27,8 +27,9 @@
10043 /*
10044 * __system_reset_overlay - The PS3 first stage entry.
10045 *
10046 - * The bootwraper build script copies the 0x100 bytes at symbol
10047 - * __system_reset_overlay to offset 0x100 of the rom image.
10048 + * The bootwraper build script copies the 512 bytes at symbol
10049 + * __system_reset_overlay to offset 0x100 of the rom image. This symbol
10050 + * must occupy 512 or less bytes.
10051 *
10052 * The PS3 has a single processor with two threads.
10053 */
10054 @@ -47,8 +48,6 @@ __system_reset_overlay:
10055
10056 mfspr r3, 0x88
10057 cntlzw. r3, r3
10058 - li r4, 0
10059 - li r5, 0
10060 beq 1f
10061
10062 /* Secondary goes to __secondary_hold in kernel. */
10063 @@ -57,8 +56,14 @@ __system_reset_overlay:
10064 mtctr r4
10065 bctr
10066
10067 - /* Primary delays then goes to _zimage_start in wrapper. */
10068 1:
10069 + /* Save the value at addr zero for a null pointer write check later. */
10070 +
10071 + li r4, 0
10072 + lwz r3, 0(r4)
10073 +
10074 + /* Primary delays then goes to _zimage_start in wrapper. */
10075 +
10076 or 31, 31, 31 /* db16cyc */
10077 or 31, 31, 31 /* db16cyc */
10078
10079 @@ -67,16 +72,18 @@ __system_reset_overlay:
10080 mtctr r4
10081 bctr
10082
10083 + . = __system_reset_overlay + 512
10084 +
10085 /*
10086 * __system_reset_kernel - Place holder for the kernel reset vector.
10087 *
10088 - * The bootwrapper build script copies 0x100 bytes from offset 0x100
10089 + * The bootwrapper build script copies 512 bytes from offset 0x100
10090 * of the rom image to the symbol __system_reset_kernel. At runtime
10091 - * the bootwrapper program copies the 0x100 bytes at __system_reset_kernel
10092 - * to ram address 0x100. This symbol must occupy 0x100 bytes.
10093 + * the bootwrapper program copies the 512 bytes at __system_reset_kernel
10094 + * to ram address 0x100. This symbol must occupy 512 bytes.
10095 */
10096
10097 .globl __system_reset_kernel
10098 __system_reset_kernel:
10099
10100 - . = __system_reset_kernel + 0x100
10101 + . = __system_reset_kernel + 512
10102 Index: linux-2.6.25.4/arch/powerpc/boot/ps3.c
10103 ===================================================================
10104 --- linux-2.6.25.4.orig/arch/powerpc/boot/ps3.c
10105 +++ linux-2.6.25.4/arch/powerpc/boot/ps3.c
10106 @@ -27,10 +27,10 @@
10107 #include "page.h"
10108 #include "ops.h"
10109
10110 -extern s64 lv1_panic(u64 in_1);
10111 -extern s64 lv1_get_logical_partition_id(u64 *out_1);
10112 -extern s64 lv1_get_logical_ppe_id(u64 *out_1);
10113 -extern s64 lv1_get_repository_node_value(u64 in_1, u64 in_2, u64 in_3,
10114 +extern int lv1_panic(u64 in_1);
10115 +extern int lv1_get_logical_partition_id(u64 *out_1);
10116 +extern int lv1_get_logical_ppe_id(u64 *out_1);
10117 +extern int lv1_get_repository_node_value(u64 in_1, u64 in_2, u64 in_3,
10118 u64 in_4, u64 in_5, u64 *out_1, u64 *out_2);
10119
10120 #ifdef DEBUG
10121 @@ -46,6 +46,7 @@ BSS_STACK(4096);
10122 * edit the command line passed to vmlinux (by setting /chosen/bootargs).
10123 * The buffer is put in it's own section so that tools may locate it easier.
10124 */
10125 +
10126 static char cmdline[COMMAND_LINE_SIZE]
10127 __attribute__((__section__("__builtin_cmdline")));
10128
10129 @@ -75,7 +76,7 @@ static void ps3_exit(void)
10130
10131 static int ps3_repository_read_rm_size(u64 *rm_size)
10132 {
10133 - s64 result;
10134 + int result;
10135 u64 lpar_id;
10136 u64 ppe_id;
10137 u64 v2;
10138 @@ -114,16 +115,17 @@ void ps3_copy_vectors(void)
10139 {
10140 extern char __system_reset_kernel[];
10141
10142 - memcpy((void *)0x100, __system_reset_kernel, 0x100);
10143 - flush_cache((void *)0x100, 0x100);
10144 + memcpy((void *)0x100, __system_reset_kernel, 512);
10145 + flush_cache((void *)0x100, 512);
10146 }
10147
10148 -void platform_init(void)
10149 +void platform_init(unsigned long null_check)
10150 {
10151 const u32 heapsize = 0x1000000 - (u32)_end; /* 16MiB */
10152 void *chosen;
10153 unsigned long ft_addr;
10154 u64 rm_size;
10155 + unsigned long val;
10156
10157 console_ops.write = ps3_console_write;
10158 platform_ops.exit = ps3_exit;
10159 @@ -151,6 +153,11 @@ void platform_init(void)
10160
10161 printf(" flat tree at 0x%lx\n\r", ft_addr);
10162
10163 + val = *(unsigned long *)0;
10164 +
10165 + if (val != null_check)
10166 + printf("null check failed: %lx != %lx\n\r", val, null_check);
10167 +
10168 ((kernel_entry_t)0)(ft_addr, 0, NULL);
10169
10170 ps3_exit();
10171 Index: linux-2.6.25.4/arch/powerpc/boot/serial.c
10172 ===================================================================
10173 --- linux-2.6.25.4.orig/arch/powerpc/boot/serial.c
10174 +++ linux-2.6.25.4/arch/powerpc/boot/serial.c
10175 @@ -119,7 +119,7 @@ int serial_console_init(void)
10176
10177 if (dt_is_compatible(devp, "ns16550"))
10178 rc = ns16550_console_init(devp, &serial_cd);
10179 - else if (dt_is_compatible(devp, "marvell,mpsc"))
10180 + else if (dt_is_compatible(devp, "marvell,mv64360-mpsc"))
10181 rc = mpsc_console_init(devp, &serial_cd);
10182 else if (dt_is_compatible(devp, "fsl,cpm1-scc-uart") ||
10183 dt_is_compatible(devp, "fsl,cpm1-smc-uart") ||
10184 Index: linux-2.6.25.4/arch/powerpc/boot/simpleboot.c
10185 ===================================================================
10186 --- /dev/null
10187 +++ linux-2.6.25.4/arch/powerpc/boot/simpleboot.c
10188 @@ -0,0 +1,84 @@
10189 +/*
10190 + * The simple platform -- for booting when firmware doesn't supply a device
10191 + * tree or any platform configuration information.
10192 + * All data is extracted from an embedded device tree
10193 + * blob.
10194 + *
10195 + * Authors: Scott Wood <scottwood@freescale.com>
10196 + * Grant Likely <grant.likely@secretlab.ca>
10197 + *
10198 + * Copyright (c) 2007 Freescale Semiconductor, Inc.
10199 + * Copyright (c) 2008 Secret Lab Technologies Ltd.
10200 + *
10201 + * This program is free software; you can redistribute it and/or modify it
10202 + * under the terms of the GNU General Public License version 2 as published
10203 + * by the Free Software Foundation.
10204 + */
10205 +
10206 +#include "ops.h"
10207 +#include "types.h"
10208 +#include "io.h"
10209 +#include "stdio.h"
10210 +#include "libfdt/libfdt.h"
10211 +
10212 +BSS_STACK(4*1024);
10213 +
10214 +void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
10215 + unsigned long r6, unsigned long r7)
10216 +{
10217 + const u32 *na, *ns, *reg, *timebase;
10218 + u64 memsize64;
10219 + int node, size, i;
10220 +
10221 + /* Make sure FDT blob is sane */
10222 + if (fdt_check_header(_dtb_start) != 0)
10223 + fatal("Invalid device tree blob\n");
10224 +
10225 + /* Find the #address-cells and #size-cells properties */
10226 + node = fdt_path_offset(_dtb_start, "/");
10227 + if (node < 0)
10228 + fatal("Cannot find root node\n");
10229 + na = fdt_getprop(_dtb_start, node, "#address-cells", &size);
10230 + if (!na || (size != 4))
10231 + fatal("Cannot find #address-cells property");
10232 + ns = fdt_getprop(_dtb_start, node, "#size-cells", &size);
10233 + if (!ns || (size != 4))
10234 + fatal("Cannot find #size-cells property");
10235 +
10236 + /* Find the memory range */
10237 + node = fdt_node_offset_by_prop_value(_dtb_start, -1, "device_type",
10238 + "memory", sizeof("memory"));
10239 + if (node < 0)
10240 + fatal("Cannot find memory node\n");
10241 + reg = fdt_getprop(_dtb_start, node, "reg", &size);
10242 + if (size < (*na+*ns) * sizeof(u32))
10243 + fatal("cannot get memory range\n");
10244 +
10245 + /* Only interested in memory based at 0 */
10246 + for (i = 0; i < *na; i++)
10247 + if (*reg++ != 0)
10248 + fatal("Memory range is not based at address 0\n");
10249 +
10250 + /* get the memsize and trucate it to under 4G on 32 bit machines */
10251 + memsize64 = 0;
10252 + for (i = 0; i < *ns; i++)
10253 + memsize64 = (memsize64 << 32) | *reg++;
10254 + if (sizeof(void *) == 4 && memsize64 >= 0x100000000ULL)
10255 + memsize64 = 0xffffffff;
10256 +
10257 + /* finally, setup the timebase */
10258 + node = fdt_node_offset_by_prop_value(_dtb_start, -1, "device_type",
10259 + "cpu", sizeof("cpu"));
10260 + if (!node)
10261 + fatal("Cannot find cpu node\n");
10262 + timebase = fdt_getprop(_dtb_start, node, "timebase-frequency", &size);
10263 + if (timebase && (size == 4))
10264 + timebase_period_ns = 1000000000 / *timebase;
10265 +
10266 + /* Now we have the memory size; initialize the heap */
10267 + simple_alloc_init(_end, memsize64 - (unsigned long)_end, 32, 64);
10268 +
10269 + /* prepare the device tree and find the console */
10270 + fdt_init(_dtb_start);
10271 + serial_console_init();
10272 +}
10273 Index: linux-2.6.25.4/arch/powerpc/boot/treeboot-walnut.c
10274 ===================================================================
10275 --- linux-2.6.25.4.orig/arch/powerpc/boot/treeboot-walnut.c
10276 +++ linux-2.6.25.4/arch/powerpc/boot/treeboot-walnut.c
10277 @@ -68,7 +68,7 @@ static void walnut_fixups(void)
10278 ibm4xx_quiesce_eth((u32 *)0xef600800, NULL);
10279 ibm4xx_fixup_ebc_ranges("/plb/ebc");
10280 walnut_flashsel_fixup();
10281 - dt_fixup_mac_addresses((u8 *) WALNUT_OPENBIOS_MAC_OFF);
10282 + dt_fixup_mac_address_by_alias("ethernet0", (u8 *) WALNUT_OPENBIOS_MAC_OFF);
10283 }
10284
10285 void platform_init(void)
10286 Index: linux-2.6.25.4/arch/powerpc/boot/virtex405-head.S
10287 ===================================================================
10288 --- /dev/null
10289 +++ linux-2.6.25.4/arch/powerpc/boot/virtex405-head.S
10290 @@ -0,0 +1,30 @@
10291 +#include "ppc_asm.h"
10292 +
10293 + .text
10294 + .global _zimage_start
10295 +_zimage_start:
10296 +
10297 + /* PPC errata 213: needed by Virtex-4 FX */
10298 + mfccr0 0
10299 + oris 0,0,0x50000000@h
10300 + mtccr0 0
10301 +
10302 + /*
10303 + * Invalidate the data cache if the data cache is turned off.
10304 + * - The 405 core does not invalidate the data cache on power-up
10305 + * or reset but does turn off the data cache. We cannot assume
10306 + * that the cache contents are valid.
10307 + * - If the data cache is turned on this must have been done by
10308 + * a bootloader and we assume that the cache contents are
10309 + * valid.
10310 + */
10311 + mfdccr r9
10312 + cmplwi r9,0
10313 + bne 2f
10314 + lis r9,0
10315 + li r8,256
10316 + mtctr r8
10317 +1: dccci r0,r9
10318 + addi r9,r9,0x20
10319 + bdnz 1b
10320 +2: b _zimage_start_lib
10321 Index: linux-2.6.25.4/arch/powerpc/boot/wrapper
10322 ===================================================================
10323 --- linux-2.6.25.4.orig/arch/powerpc/boot/wrapper
10324 +++ linux-2.6.25.4/arch/powerpc/boot/wrapper
10325 @@ -174,7 +174,7 @@ cuboot*)
10326 *-mpc83*)
10327 platformo=$object/cuboot-83xx.o
10328 ;;
10329 - *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555)
10330 + *-tqm8541|*-mpc8560*|*-tqm8560|*-tqm8555|*-ksi8560*)
10331 platformo=$object/cuboot-85xx-cpm2.o
10332 ;;
10333 *-mpc85*|*-tqm8540|*-sbc85*)
10334 @@ -199,6 +199,10 @@ adder875-redboot)
10335 platformo="$object/fixed-head.o $object/redboot-8xx.o"
10336 binary=y
10337 ;;
10338 +simpleboot-virtex405-*)
10339 + platformo="$object/virtex405-head.o $object/simpleboot.o"
10340 + binary=y
10341 + ;;
10342 esac
10343
10344 vmz="$tmpdir/`basename \"$kernel\"`.$ext"
10345 @@ -226,10 +230,13 @@ if [ -n "$version" ]; then
10346 uboot_version="-n Linux-$version"
10347 fi
10348
10349 +# physical offset of kernel image
10350 +membase=`${CROSS}objdump -p "$kernel" | grep -m 1 LOAD | awk '{print $7}'`
10351 +
10352 case "$platform" in
10353 uboot)
10354 rm -f "$ofile"
10355 - mkimage -A ppc -O linux -T kernel -C gzip -a 00000000 -e 00000000 \
10356 + mkimage -A ppc -O linux -T kernel -C gzip -a $membase -e $membase \
10357 $uboot_version -d "$vmz" "$ofile"
10358 if [ -z "$cacheit" ]; then
10359 rm -f "$vmz"
10360 @@ -298,15 +305,16 @@ treeboot*)
10361 exit 0
10362 ;;
10363 ps3)
10364 - # The ps3's loader supports loading gzipped binary images from flash
10365 - # rom to addr zero. The loader enters the image at addr 0x100. A
10366 - # bootwrapper overlay is use to arrange for the kernel to be loaded
10367 - # to addr zero and to have a suitable bootwrapper entry at 0x100.
10368 - # To construct the rom image, 0x100 bytes from offset 0x100 in the
10369 - # kernel is copied to the bootwrapper symbol __system_reset_kernel.
10370 - # The 0x100 bytes at the bootwrapper symbol __system_reset_overlay is
10371 - # then copied to offset 0x100. At runtime the bootwrapper program
10372 - # copies the 0x100 bytes at __system_reset_kernel to addr 0x100.
10373 + # The ps3's loader supports loading a gzipped binary image from flash
10374 + # rom to ram addr zero. The loader then enters the system reset
10375 + # vector at addr 0x100. A bootwrapper overlay is used to arrange for
10376 + # a binary image of the kernel to be at addr zero, and yet have a
10377 + # suitable bootwrapper entry at 0x100. To construct the final rom
10378 + # image 512 bytes from offset 0x100 is copied to the bootwrapper
10379 + # place holder at symbol __system_reset_kernel. The 512 bytes of the
10380 + # bootwrapper entry code at symbol __system_reset_overlay is then
10381 + # copied to offset 0x100. At runtime the bootwrapper program copies
10382 + # the data at __system_reset_kernel back to addr 0x100.
10383
10384 system_reset_overlay=0x`${CROSS}nm "$ofile" \
10385 | grep ' __system_reset_overlay$' \
10386 @@ -317,7 +325,7 @@ ps3)
10387 | cut -d' ' -f1`
10388 system_reset_kernel=`printf "%d" $system_reset_kernel`
10389 overlay_dest="256"
10390 - overlay_size="256"
10391 + overlay_size="512"
10392
10393 ${CROSS}objcopy -O binary "$ofile" "$ofile.bin"
10394
10395 Index: linux-2.6.25.4/arch/powerpc/configs/40x/ep405_defconfig
10396 ===================================================================
10397 --- /dev/null
10398 +++ linux-2.6.25.4/arch/powerpc/configs/40x/ep405_defconfig
10399 @@ -0,0 +1,968 @@
10400 +#
10401 +# Automatically generated make config: don't edit
10402 +# Linux kernel version: 2.6.25-rc2
10403 +# Fri Feb 15 21:50:09 2008
10404 +#
10405 +# CONFIG_PPC64 is not set
10406 +
10407 +#
10408 +# Processor support
10409 +#
10410 +# CONFIG_6xx is not set
10411 +# CONFIG_PPC_85xx is not set
10412 +# CONFIG_PPC_8xx is not set
10413 +CONFIG_40x=y
10414 +# CONFIG_44x is not set
10415 +# CONFIG_E200 is not set
10416 +CONFIG_4xx=y
10417 +# CONFIG_PPC_MM_SLICES is not set
10418 +CONFIG_NOT_COHERENT_CACHE=y
10419 +CONFIG_PPC32=y
10420 +CONFIG_WORD_SIZE=32
10421 +CONFIG_PPC_MERGE=y
10422 +CONFIG_MMU=y
10423 +CONFIG_GENERIC_CMOS_UPDATE=y
10424 +CONFIG_GENERIC_TIME=y
10425 +CONFIG_GENERIC_TIME_VSYSCALL=y
10426 +CONFIG_GENERIC_CLOCKEVENTS=y
10427 +CONFIG_GENERIC_HARDIRQS=y
10428 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
10429 +CONFIG_IRQ_PER_CPU=y
10430 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
10431 +CONFIG_ARCH_HAS_ILOG2_U32=y
10432 +CONFIG_GENERIC_HWEIGHT=y
10433 +CONFIG_GENERIC_CALIBRATE_DELAY=y
10434 +CONFIG_GENERIC_FIND_NEXT_BIT=y
10435 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
10436 +CONFIG_PPC=y
10437 +CONFIG_EARLY_PRINTK=y
10438 +CONFIG_GENERIC_NVRAM=y
10439 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
10440 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
10441 +CONFIG_PPC_OF=y
10442 +CONFIG_OF=y
10443 +CONFIG_PPC_UDBG_16550=y
10444 +# CONFIG_GENERIC_TBSYNC is not set
10445 +CONFIG_AUDIT_ARCH=y
10446 +CONFIG_GENERIC_BUG=y
10447 +# CONFIG_DEFAULT_UIMAGE is not set
10448 +CONFIG_PPC_DCR_NATIVE=y
10449 +# CONFIG_PPC_DCR_MMIO is not set
10450 +CONFIG_PPC_DCR=y
10451 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
10452 +
10453 +#
10454 +# General setup
10455 +#
10456 +CONFIG_EXPERIMENTAL=y
10457 +CONFIG_BROKEN_ON_SMP=y
10458 +CONFIG_INIT_ENV_ARG_LIMIT=32
10459 +CONFIG_LOCALVERSION=""
10460 +CONFIG_LOCALVERSION_AUTO=y
10461 +CONFIG_SWAP=y
10462 +CONFIG_SYSVIPC=y
10463 +CONFIG_SYSVIPC_SYSCTL=y
10464 +CONFIG_POSIX_MQUEUE=y
10465 +# CONFIG_BSD_PROCESS_ACCT is not set
10466 +# CONFIG_TASKSTATS is not set
10467 +# CONFIG_AUDIT is not set
10468 +# CONFIG_IKCONFIG is not set
10469 +CONFIG_LOG_BUF_SHIFT=14
10470 +# CONFIG_CGROUPS is not set
10471 +CONFIG_GROUP_SCHED=y
10472 +CONFIG_FAIR_GROUP_SCHED=y
10473 +# CONFIG_RT_GROUP_SCHED is not set
10474 +CONFIG_USER_SCHED=y
10475 +# CONFIG_CGROUP_SCHED is not set
10476 +CONFIG_SYSFS_DEPRECATED=y
10477 +# CONFIG_RELAY is not set
10478 +# CONFIG_NAMESPACES is not set
10479 +CONFIG_BLK_DEV_INITRD=y
10480 +CONFIG_INITRAMFS_SOURCE=""
10481 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
10482 +CONFIG_SYSCTL=y
10483 +CONFIG_EMBEDDED=y
10484 +CONFIG_SYSCTL_SYSCALL=y
10485 +CONFIG_KALLSYMS=y
10486 +CONFIG_KALLSYMS_ALL=y
10487 +CONFIG_KALLSYMS_EXTRA_PASS=y
10488 +CONFIG_HOTPLUG=y
10489 +CONFIG_PRINTK=y
10490 +CONFIG_BUG=y
10491 +CONFIG_ELF_CORE=y
10492 +CONFIG_COMPAT_BRK=y
10493 +CONFIG_BASE_FULL=y
10494 +CONFIG_FUTEX=y
10495 +CONFIG_ANON_INODES=y
10496 +CONFIG_EPOLL=y
10497 +CONFIG_SIGNALFD=y
10498 +CONFIG_TIMERFD=y
10499 +CONFIG_EVENTFD=y
10500 +CONFIG_SHMEM=y
10501 +CONFIG_VM_EVENT_COUNTERS=y
10502 +CONFIG_SLUB_DEBUG=y
10503 +# CONFIG_SLAB is not set
10504 +CONFIG_SLUB=y
10505 +# CONFIG_SLOB is not set
10506 +# CONFIG_PROFILING is not set
10507 +# CONFIG_MARKERS is not set
10508 +CONFIG_HAVE_OPROFILE=y
10509 +# CONFIG_KPROBES is not set
10510 +CONFIG_HAVE_KPROBES=y
10511 +CONFIG_PROC_PAGE_MONITOR=y
10512 +CONFIG_SLABINFO=y
10513 +CONFIG_RT_MUTEXES=y
10514 +# CONFIG_TINY_SHMEM is not set
10515 +CONFIG_BASE_SMALL=0
10516 +CONFIG_MODULES=y
10517 +CONFIG_MODULE_UNLOAD=y
10518 +# CONFIG_MODULE_FORCE_UNLOAD is not set
10519 +# CONFIG_MODVERSIONS is not set
10520 +# CONFIG_MODULE_SRCVERSION_ALL is not set
10521 +CONFIG_KMOD=y
10522 +CONFIG_BLOCK=y
10523 +CONFIG_LBD=y
10524 +# CONFIG_BLK_DEV_IO_TRACE is not set
10525 +# CONFIG_LSF is not set
10526 +# CONFIG_BLK_DEV_BSG is not set
10527 +
10528 +#
10529 +# IO Schedulers
10530 +#
10531 +CONFIG_IOSCHED_NOOP=y
10532 +CONFIG_IOSCHED_AS=y
10533 +CONFIG_IOSCHED_DEADLINE=y
10534 +CONFIG_IOSCHED_CFQ=y
10535 +CONFIG_DEFAULT_AS=y
10536 +# CONFIG_DEFAULT_DEADLINE is not set
10537 +# CONFIG_DEFAULT_CFQ is not set
10538 +# CONFIG_DEFAULT_NOOP is not set
10539 +CONFIG_DEFAULT_IOSCHED="anticipatory"
10540 +CONFIG_CLASSIC_RCU=y
10541 +# CONFIG_PREEMPT_RCU is not set
10542 +# CONFIG_PPC4xx_PCI_EXPRESS is not set
10543 +
10544 +#
10545 +# Platform support
10546 +#
10547 +# CONFIG_PPC_MPC512x is not set
10548 +# CONFIG_PPC_MPC5121 is not set
10549 +# CONFIG_PPC_CELL is not set
10550 +# CONFIG_PPC_CELL_NATIVE is not set
10551 +# CONFIG_PQ2ADS is not set
10552 +CONFIG_EP405=y
10553 +# CONFIG_KILAUEA is not set
10554 +# CONFIG_MAKALU is not set
10555 +# CONFIG_WALNUT is not set
10556 +# CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set
10557 +CONFIG_405GP=y
10558 +CONFIG_IBM405_ERR77=y
10559 +CONFIG_IBM405_ERR51=y
10560 +# CONFIG_IPIC is not set
10561 +# CONFIG_MPIC is not set
10562 +# CONFIG_MPIC_WEIRD is not set
10563 +# CONFIG_PPC_I8259 is not set
10564 +# CONFIG_PPC_RTAS is not set
10565 +# CONFIG_MMIO_NVRAM is not set
10566 +# CONFIG_PPC_MPC106 is not set
10567 +# CONFIG_PPC_970_NAP is not set
10568 +# CONFIG_PPC_INDIRECT_IO is not set
10569 +# CONFIG_GENERIC_IOMAP is not set
10570 +# CONFIG_CPU_FREQ is not set
10571 +# CONFIG_FSL_ULI1575 is not set
10572 +
10573 +#
10574 +# Kernel options
10575 +#
10576 +# CONFIG_HIGHMEM is not set
10577 +# CONFIG_TICK_ONESHOT is not set
10578 +# CONFIG_NO_HZ is not set
10579 +# CONFIG_HIGH_RES_TIMERS is not set
10580 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
10581 +# CONFIG_HZ_100 is not set
10582 +CONFIG_HZ_250=y
10583 +# CONFIG_HZ_300 is not set
10584 +# CONFIG_HZ_1000 is not set
10585 +CONFIG_HZ=250
10586 +# CONFIG_SCHED_HRTICK is not set
10587 +CONFIG_PREEMPT_NONE=y
10588 +# CONFIG_PREEMPT_VOLUNTARY is not set
10589 +# CONFIG_PREEMPT is not set
10590 +CONFIG_RCU_TRACE=y
10591 +CONFIG_BINFMT_ELF=y
10592 +# CONFIG_BINFMT_MISC is not set
10593 +# CONFIG_MATH_EMULATION is not set
10594 +# CONFIG_IOMMU_HELPER is not set
10595 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
10596 +CONFIG_ARCH_HAS_WALK_MEMORY=y
10597 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
10598 +CONFIG_ARCH_FLATMEM_ENABLE=y
10599 +CONFIG_ARCH_POPULATES_NODE_MAP=y
10600 +CONFIG_SELECT_MEMORY_MODEL=y
10601 +CONFIG_FLATMEM_MANUAL=y
10602 +# CONFIG_DISCONTIGMEM_MANUAL is not set
10603 +# CONFIG_SPARSEMEM_MANUAL is not set
10604 +CONFIG_FLATMEM=y
10605 +CONFIG_FLAT_NODE_MEM_MAP=y
10606 +# CONFIG_SPARSEMEM_STATIC is not set
10607 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
10608 +CONFIG_SPLIT_PTLOCK_CPUS=4
10609 +# CONFIG_RESOURCES_64BIT is not set
10610 +CONFIG_ZONE_DMA_FLAG=1
10611 +CONFIG_BOUNCE=y
10612 +CONFIG_VIRT_TO_BUS=y
10613 +CONFIG_PROC_DEVICETREE=y
10614 +# CONFIG_CMDLINE_BOOL is not set
10615 +# CONFIG_PM is not set
10616 +CONFIG_SECCOMP=y
10617 +CONFIG_ISA_DMA_API=y
10618 +
10619 +#
10620 +# Bus options
10621 +#
10622 +CONFIG_ZONE_DMA=y
10623 +CONFIG_PPC_INDIRECT_PCI=y
10624 +CONFIG_PCI=y
10625 +CONFIG_PCI_DOMAINS=y
10626 +CONFIG_PCI_SYSCALL=y
10627 +# CONFIG_PCIEPORTBUS is not set
10628 +CONFIG_ARCH_SUPPORTS_MSI=y
10629 +# CONFIG_PCI_MSI is not set
10630 +CONFIG_PCI_LEGACY=y
10631 +# CONFIG_PCI_DEBUG is not set
10632 +# CONFIG_PCCARD is not set
10633 +# CONFIG_HOTPLUG_PCI is not set
10634 +
10635 +#
10636 +# Advanced setup
10637 +#
10638 +# CONFIG_ADVANCED_OPTIONS is not set
10639 +
10640 +#
10641 +# Default settings for advanced configuration options are used
10642 +#
10643 +CONFIG_HIGHMEM_START=0xfe000000
10644 +CONFIG_LOWMEM_SIZE=0x30000000
10645 +CONFIG_KERNEL_START=0xc0000000
10646 +CONFIG_TASK_SIZE=0xc0000000
10647 +CONFIG_CONSISTENT_START=0xff100000
10648 +CONFIG_CONSISTENT_SIZE=0x00200000
10649 +CONFIG_BOOT_LOAD=0x00400000
10650 +
10651 +#
10652 +# Networking
10653 +#
10654 +CONFIG_NET=y
10655 +
10656 +#
10657 +# Networking options
10658 +#
10659 +CONFIG_PACKET=y
10660 +# CONFIG_PACKET_MMAP is not set
10661 +CONFIG_UNIX=y
10662 +# CONFIG_NET_KEY is not set
10663 +CONFIG_INET=y
10664 +# CONFIG_IP_MULTICAST is not set
10665 +# CONFIG_IP_ADVANCED_ROUTER is not set
10666 +CONFIG_IP_FIB_HASH=y
10667 +CONFIG_IP_PNP=y
10668 +CONFIG_IP_PNP_DHCP=y
10669 +CONFIG_IP_PNP_BOOTP=y
10670 +# CONFIG_IP_PNP_RARP is not set
10671 +# CONFIG_NET_IPIP is not set
10672 +# CONFIG_NET_IPGRE is not set
10673 +# CONFIG_ARPD is not set
10674 +# CONFIG_SYN_COOKIES is not set
10675 +# CONFIG_INET_AH is not set
10676 +# CONFIG_INET_ESP is not set
10677 +# CONFIG_INET_IPCOMP is not set
10678 +# CONFIG_INET_XFRM_TUNNEL is not set
10679 +# CONFIG_INET_TUNNEL is not set
10680 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
10681 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
10682 +# CONFIG_INET_XFRM_MODE_BEET is not set
10683 +# CONFIG_INET_LRO is not set
10684 +CONFIG_INET_DIAG=y
10685 +CONFIG_INET_TCP_DIAG=y
10686 +# CONFIG_TCP_CONG_ADVANCED is not set
10687 +CONFIG_TCP_CONG_CUBIC=y
10688 +CONFIG_DEFAULT_TCP_CONG="cubic"
10689 +# CONFIG_TCP_MD5SIG is not set
10690 +# CONFIG_IPV6 is not set
10691 +# CONFIG_INET6_XFRM_TUNNEL is not set
10692 +# CONFIG_INET6_TUNNEL is not set
10693 +# CONFIG_NETWORK_SECMARK is not set
10694 +# CONFIG_NETFILTER is not set
10695 +# CONFIG_IP_DCCP is not set
10696 +# CONFIG_IP_SCTP is not set
10697 +# CONFIG_TIPC is not set
10698 +# CONFIG_ATM is not set
10699 +# CONFIG_BRIDGE is not set
10700 +# CONFIG_VLAN_8021Q is not set
10701 +# CONFIG_DECNET is not set
10702 +# CONFIG_LLC2 is not set
10703 +# CONFIG_IPX is not set
10704 +# CONFIG_ATALK is not set
10705 +# CONFIG_X25 is not set
10706 +# CONFIG_LAPB is not set
10707 +# CONFIG_ECONET is not set
10708 +# CONFIG_WAN_ROUTER is not set
10709 +# CONFIG_NET_SCHED is not set
10710 +
10711 +#
10712 +# Network testing
10713 +#
10714 +# CONFIG_NET_PKTGEN is not set
10715 +# CONFIG_HAMRADIO is not set
10716 +# CONFIG_CAN is not set
10717 +# CONFIG_IRDA is not set
10718 +# CONFIG_BT is not set
10719 +# CONFIG_AF_RXRPC is not set
10720 +
10721 +#
10722 +# Wireless
10723 +#
10724 +# CONFIG_CFG80211 is not set
10725 +# CONFIG_WIRELESS_EXT is not set
10726 +# CONFIG_MAC80211 is not set
10727 +# CONFIG_IEEE80211 is not set
10728 +# CONFIG_RFKILL is not set
10729 +# CONFIG_NET_9P is not set
10730 +
10731 +#
10732 +# Device Drivers
10733 +#
10734 +
10735 +#
10736 +# Generic Driver Options
10737 +#
10738 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
10739 +CONFIG_STANDALONE=y
10740 +CONFIG_PREVENT_FIRMWARE_BUILD=y
10741 +CONFIG_FW_LOADER=y
10742 +# CONFIG_DEBUG_DRIVER is not set
10743 +# CONFIG_DEBUG_DEVRES is not set
10744 +# CONFIG_SYS_HYPERVISOR is not set
10745 +CONFIG_CONNECTOR=y
10746 +CONFIG_PROC_EVENTS=y
10747 +CONFIG_MTD=y
10748 +# CONFIG_MTD_DEBUG is not set
10749 +# CONFIG_MTD_CONCAT is not set
10750 +CONFIG_MTD_PARTITIONS=y
10751 +# CONFIG_MTD_REDBOOT_PARTS is not set
10752 +CONFIG_MTD_CMDLINE_PARTS=y
10753 +CONFIG_MTD_OF_PARTS=y
10754 +
10755 +#
10756 +# User Modules And Translation Layers
10757 +#
10758 +CONFIG_MTD_CHAR=y
10759 +CONFIG_MTD_BLKDEVS=m
10760 +CONFIG_MTD_BLOCK=m
10761 +# CONFIG_MTD_BLOCK_RO is not set
10762 +# CONFIG_FTL is not set
10763 +# CONFIG_NFTL is not set
10764 +# CONFIG_INFTL is not set
10765 +# CONFIG_RFD_FTL is not set
10766 +# CONFIG_SSFDC is not set
10767 +# CONFIG_MTD_OOPS is not set
10768 +
10769 +#
10770 +# RAM/ROM/Flash chip drivers
10771 +#
10772 +CONFIG_MTD_CFI=y
10773 +CONFIG_MTD_JEDECPROBE=y
10774 +CONFIG_MTD_GEN_PROBE=y
10775 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
10776 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
10777 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
10778 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
10779 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
10780 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
10781 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
10782 +CONFIG_MTD_CFI_I1=y
10783 +CONFIG_MTD_CFI_I2=y
10784 +# CONFIG_MTD_CFI_I4 is not set
10785 +# CONFIG_MTD_CFI_I8 is not set
10786 +# CONFIG_MTD_CFI_INTELEXT is not set
10787 +CONFIG_MTD_CFI_AMDSTD=y
10788 +# CONFIG_MTD_CFI_STAA is not set
10789 +CONFIG_MTD_CFI_UTIL=y
10790 +# CONFIG_MTD_RAM is not set
10791 +# CONFIG_MTD_ROM is not set
10792 +# CONFIG_MTD_ABSENT is not set
10793 +
10794 +#
10795 +# Mapping drivers for chip access
10796 +#
10797 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
10798 +# CONFIG_MTD_PHYSMAP is not set
10799 +CONFIG_MTD_PHYSMAP_OF=y
10800 +# CONFIG_MTD_INTEL_VR_NOR is not set
10801 +# CONFIG_MTD_PLATRAM is not set
10802 +
10803 +#
10804 +# Self-contained MTD device drivers
10805 +#
10806 +# CONFIG_MTD_PMC551 is not set
10807 +# CONFIG_MTD_SLRAM is not set
10808 +# CONFIG_MTD_PHRAM is not set
10809 +# CONFIG_MTD_MTDRAM is not set
10810 +# CONFIG_MTD_BLOCK2MTD is not set
10811 +
10812 +#
10813 +# Disk-On-Chip Device Drivers
10814 +#
10815 +# CONFIG_MTD_DOC2000 is not set
10816 +# CONFIG_MTD_DOC2001 is not set
10817 +# CONFIG_MTD_DOC2001PLUS is not set
10818 +# CONFIG_MTD_NAND is not set
10819 +# CONFIG_MTD_ONENAND is not set
10820 +
10821 +#
10822 +# UBI - Unsorted block images
10823 +#
10824 +# CONFIG_MTD_UBI is not set
10825 +CONFIG_OF_DEVICE=y
10826 +# CONFIG_PARPORT is not set
10827 +CONFIG_BLK_DEV=y
10828 +# CONFIG_BLK_DEV_FD is not set
10829 +# CONFIG_BLK_CPQ_DA is not set
10830 +# CONFIG_BLK_CPQ_CISS_DA is not set
10831 +# CONFIG_BLK_DEV_DAC960 is not set
10832 +# CONFIG_BLK_DEV_UMEM is not set
10833 +# CONFIG_BLK_DEV_COW_COMMON is not set
10834 +# CONFIG_BLK_DEV_LOOP is not set
10835 +# CONFIG_BLK_DEV_NBD is not set
10836 +# CONFIG_BLK_DEV_SX8 is not set
10837 +# CONFIG_BLK_DEV_UB is not set
10838 +CONFIG_BLK_DEV_RAM=y
10839 +CONFIG_BLK_DEV_RAM_COUNT=16
10840 +CONFIG_BLK_DEV_RAM_SIZE=35000
10841 +# CONFIG_BLK_DEV_XIP is not set
10842 +# CONFIG_CDROM_PKTCDVD is not set
10843 +# CONFIG_ATA_OVER_ETH is not set
10844 +# CONFIG_XILINX_SYSACE is not set
10845 +CONFIG_MISC_DEVICES=y
10846 +# CONFIG_PHANTOM is not set
10847 +# CONFIG_EEPROM_93CX6 is not set
10848 +# CONFIG_SGI_IOC4 is not set
10849 +# CONFIG_TIFM_CORE is not set
10850 +# CONFIG_ENCLOSURE_SERVICES is not set
10851 +CONFIG_HAVE_IDE=y
10852 +# CONFIG_IDE is not set
10853 +
10854 +#
10855 +# SCSI device support
10856 +#
10857 +# CONFIG_RAID_ATTRS is not set
10858 +# CONFIG_SCSI is not set
10859 +# CONFIG_SCSI_DMA is not set
10860 +# CONFIG_SCSI_NETLINK is not set
10861 +# CONFIG_ATA is not set
10862 +# CONFIG_MD is not set
10863 +# CONFIG_FUSION is not set
10864 +
10865 +#
10866 +# IEEE 1394 (FireWire) support
10867 +#
10868 +# CONFIG_FIREWIRE is not set
10869 +# CONFIG_IEEE1394 is not set
10870 +# CONFIG_I2O is not set
10871 +# CONFIG_MACINTOSH_DRIVERS is not set
10872 +CONFIG_NETDEVICES=y
10873 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
10874 +# CONFIG_DUMMY is not set
10875 +# CONFIG_BONDING is not set
10876 +# CONFIG_MACVLAN is not set
10877 +# CONFIG_EQUALIZER is not set
10878 +# CONFIG_TUN is not set
10879 +# CONFIG_VETH is not set
10880 +# CONFIG_ARCNET is not set
10881 +# CONFIG_PHYLIB is not set
10882 +CONFIG_NET_ETHERNET=y
10883 +# CONFIG_MII is not set
10884 +# CONFIG_HAPPYMEAL is not set
10885 +# CONFIG_SUNGEM is not set
10886 +# CONFIG_CASSINI is not set
10887 +# CONFIG_NET_VENDOR_3COM is not set
10888 +# CONFIG_NET_TULIP is not set
10889 +# CONFIG_HP100 is not set
10890 +CONFIG_IBM_NEW_EMAC=y
10891 +CONFIG_IBM_NEW_EMAC_RXB=128
10892 +CONFIG_IBM_NEW_EMAC_TXB=64
10893 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
10894 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
10895 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
10896 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
10897 +CONFIG_IBM_NEW_EMAC_ZMII=y
10898 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
10899 +# CONFIG_IBM_NEW_EMAC_TAH is not set
10900 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
10901 +# CONFIG_NET_PCI is not set
10902 +# CONFIG_B44 is not set
10903 +CONFIG_NETDEV_1000=y
10904 +# CONFIG_ACENIC is not set
10905 +# CONFIG_DL2K is not set
10906 +# CONFIG_E1000 is not set
10907 +# CONFIG_E1000E is not set
10908 +# CONFIG_E1000E_ENABLED is not set
10909 +# CONFIG_IP1000 is not set
10910 +# CONFIG_IGB is not set
10911 +# CONFIG_NS83820 is not set
10912 +# CONFIG_HAMACHI is not set
10913 +# CONFIG_YELLOWFIN is not set
10914 +# CONFIG_R8169 is not set
10915 +# CONFIG_SIS190 is not set
10916 +# CONFIG_SKGE is not set
10917 +# CONFIG_SKY2 is not set
10918 +# CONFIG_SK98LIN is not set
10919 +# CONFIG_VIA_VELOCITY is not set
10920 +# CONFIG_TIGON3 is not set
10921 +# CONFIG_BNX2 is not set
10922 +# CONFIG_QLA3XXX is not set
10923 +# CONFIG_ATL1 is not set
10924 +CONFIG_NETDEV_10000=y
10925 +# CONFIG_CHELSIO_T1 is not set
10926 +# CONFIG_CHELSIO_T3 is not set
10927 +# CONFIG_IXGBE is not set
10928 +# CONFIG_IXGB is not set
10929 +# CONFIG_S2IO is not set
10930 +# CONFIG_MYRI10GE is not set
10931 +# CONFIG_NETXEN_NIC is not set
10932 +# CONFIG_NIU is not set
10933 +# CONFIG_MLX4_CORE is not set
10934 +# CONFIG_TEHUTI is not set
10935 +# CONFIG_BNX2X is not set
10936 +# CONFIG_TR is not set
10937 +
10938 +#
10939 +# Wireless LAN
10940 +#
10941 +# CONFIG_WLAN_PRE80211 is not set
10942 +# CONFIG_WLAN_80211 is not set
10943 +
10944 +#
10945 +# USB Network Adapters
10946 +#
10947 +# CONFIG_USB_CATC is not set
10948 +# CONFIG_USB_KAWETH is not set
10949 +# CONFIG_USB_PEGASUS is not set
10950 +# CONFIG_USB_RTL8150 is not set
10951 +# CONFIG_USB_USBNET is not set
10952 +# CONFIG_WAN is not set
10953 +# CONFIG_FDDI is not set
10954 +# CONFIG_HIPPI is not set
10955 +# CONFIG_PPP is not set
10956 +# CONFIG_SLIP is not set
10957 +# CONFIG_NETCONSOLE is not set
10958 +# CONFIG_NETPOLL is not set
10959 +# CONFIG_NET_POLL_CONTROLLER is not set
10960 +# CONFIG_ISDN is not set
10961 +# CONFIG_PHONE is not set
10962 +
10963 +#
10964 +# Input device support
10965 +#
10966 +# CONFIG_INPUT is not set
10967 +
10968 +#
10969 +# Hardware I/O ports
10970 +#
10971 +# CONFIG_SERIO is not set
10972 +# CONFIG_GAMEPORT is not set
10973 +
10974 +#
10975 +# Character devices
10976 +#
10977 +# CONFIG_VT is not set
10978 +# CONFIG_SERIAL_NONSTANDARD is not set
10979 +# CONFIG_NOZOMI is not set
10980 +
10981 +#
10982 +# Serial drivers
10983 +#
10984 +CONFIG_SERIAL_8250=y
10985 +CONFIG_SERIAL_8250_CONSOLE=y
10986 +CONFIG_SERIAL_8250_PCI=y
10987 +CONFIG_SERIAL_8250_NR_UARTS=4
10988 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
10989 +CONFIG_SERIAL_8250_EXTENDED=y
10990 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
10991 +CONFIG_SERIAL_8250_SHARE_IRQ=y
10992 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
10993 +# CONFIG_SERIAL_8250_RSA is not set
10994 +
10995 +#
10996 +# Non-8250 serial port support
10997 +#
10998 +# CONFIG_SERIAL_UARTLITE is not set
10999 +CONFIG_SERIAL_CORE=y
11000 +CONFIG_SERIAL_CORE_CONSOLE=y
11001 +# CONFIG_SERIAL_JSM is not set
11002 +CONFIG_SERIAL_OF_PLATFORM=y
11003 +CONFIG_UNIX98_PTYS=y
11004 +CONFIG_LEGACY_PTYS=y
11005 +CONFIG_LEGACY_PTY_COUNT=256
11006 +# CONFIG_IPMI_HANDLER is not set
11007 +# CONFIG_HW_RANDOM is not set
11008 +# CONFIG_NVRAM is not set
11009 +# CONFIG_GEN_RTC is not set
11010 +# CONFIG_R3964 is not set
11011 +# CONFIG_APPLICOM is not set
11012 +# CONFIG_RAW_DRIVER is not set
11013 +# CONFIG_TCG_TPM is not set
11014 +CONFIG_DEVPORT=y
11015 +# CONFIG_I2C is not set
11016 +
11017 +#
11018 +# SPI support
11019 +#
11020 +# CONFIG_SPI is not set
11021 +# CONFIG_SPI_MASTER is not set
11022 +# CONFIG_W1 is not set
11023 +# CONFIG_POWER_SUPPLY is not set
11024 +# CONFIG_HWMON is not set
11025 +CONFIG_THERMAL=y
11026 +# CONFIG_WATCHDOG is not set
11027 +
11028 +#
11029 +# Sonics Silicon Backplane
11030 +#
11031 +CONFIG_SSB_POSSIBLE=y
11032 +# CONFIG_SSB is not set
11033 +
11034 +#
11035 +# Multifunction device drivers
11036 +#
11037 +# CONFIG_MFD_SM501 is not set
11038 +
11039 +#
11040 +# Multimedia devices
11041 +#
11042 +# CONFIG_VIDEO_DEV is not set
11043 +# CONFIG_DVB_CORE is not set
11044 +# CONFIG_DAB is not set
11045 +
11046 +#
11047 +# Graphics support
11048 +#
11049 +# CONFIG_AGP is not set
11050 +# CONFIG_DRM is not set
11051 +# CONFIG_VGASTATE is not set
11052 +CONFIG_VIDEO_OUTPUT_CONTROL=m
11053 +# CONFIG_FB is not set
11054 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
11055 +
11056 +#
11057 +# Display device support
11058 +#
11059 +# CONFIG_DISPLAY_SUPPORT is not set
11060 +
11061 +#
11062 +# Sound
11063 +#
11064 +# CONFIG_SOUND is not set
11065 +CONFIG_USB_SUPPORT=y
11066 +CONFIG_USB_ARCH_HAS_HCD=y
11067 +CONFIG_USB_ARCH_HAS_OHCI=y
11068 +CONFIG_USB_ARCH_HAS_EHCI=y
11069 +CONFIG_USB=y
11070 +# CONFIG_USB_DEBUG is not set
11071 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
11072 +
11073 +#
11074 +# Miscellaneous USB options
11075 +#
11076 +CONFIG_USB_DEVICEFS=y
11077 +CONFIG_USB_DEVICE_CLASS=y
11078 +# CONFIG_USB_DYNAMIC_MINORS is not set
11079 +# CONFIG_USB_OTG is not set
11080 +
11081 +#
11082 +# USB Host Controller Drivers
11083 +#
11084 +# CONFIG_USB_EHCI_HCD is not set
11085 +# CONFIG_USB_ISP116X_HCD is not set
11086 +CONFIG_USB_OHCI_HCD=y
11087 +CONFIG_USB_OHCI_HCD_PPC_OF=y
11088 +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
11089 +CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
11090 +CONFIG_USB_OHCI_HCD_PCI=y
11091 +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
11092 +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
11093 +CONFIG_USB_OHCI_LITTLE_ENDIAN=y
11094 +# CONFIG_USB_UHCI_HCD is not set
11095 +# CONFIG_USB_SL811_HCD is not set
11096 +# CONFIG_USB_R8A66597_HCD is not set
11097 +
11098 +#
11099 +# USB Device Class drivers
11100 +#
11101 +# CONFIG_USB_ACM is not set
11102 +# CONFIG_USB_PRINTER is not set
11103 +
11104 +#
11105 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
11106 +#
11107 +
11108 +#
11109 +# may also be needed; see USB_STORAGE Help for more information
11110 +#
11111 +# CONFIG_USB_LIBUSUAL is not set
11112 +
11113 +#
11114 +# USB Imaging devices
11115 +#
11116 +# CONFIG_USB_MDC800 is not set
11117 +CONFIG_USB_MON=y
11118 +
11119 +#
11120 +# USB port drivers
11121 +#
11122 +# CONFIG_USB_SERIAL is not set
11123 +
11124 +#
11125 +# USB Miscellaneous drivers
11126 +#
11127 +# CONFIG_USB_EMI62 is not set
11128 +# CONFIG_USB_EMI26 is not set
11129 +# CONFIG_USB_ADUTUX is not set
11130 +# CONFIG_USB_AUERSWALD is not set
11131 +# CONFIG_USB_RIO500 is not set
11132 +# CONFIG_USB_LEGOTOWER is not set
11133 +# CONFIG_USB_LCD is not set
11134 +# CONFIG_USB_BERRY_CHARGE is not set
11135 +# CONFIG_USB_LED is not set
11136 +# CONFIG_USB_CYPRESS_CY7C63 is not set
11137 +# CONFIG_USB_CYTHERM is not set
11138 +# CONFIG_USB_PHIDGET is not set
11139 +# CONFIG_USB_IDMOUSE is not set
11140 +# CONFIG_USB_FTDI_ELAN is not set
11141 +# CONFIG_USB_APPLEDISPLAY is not set
11142 +# CONFIG_USB_LD is not set
11143 +# CONFIG_USB_TRANCEVIBRATOR is not set
11144 +# CONFIG_USB_IOWARRIOR is not set
11145 +# CONFIG_USB_TEST is not set
11146 +# CONFIG_USB_GADGET is not set
11147 +# CONFIG_MMC is not set
11148 +# CONFIG_MEMSTICK is not set
11149 +# CONFIG_NEW_LEDS is not set
11150 +# CONFIG_INFINIBAND is not set
11151 +# CONFIG_EDAC is not set
11152 +# CONFIG_RTC_CLASS is not set
11153 +
11154 +#
11155 +# Userspace I/O
11156 +#
11157 +# CONFIG_UIO is not set
11158 +
11159 +#
11160 +# File systems
11161 +#
11162 +CONFIG_EXT2_FS=y
11163 +# CONFIG_EXT2_FS_XATTR is not set
11164 +# CONFIG_EXT2_FS_XIP is not set
11165 +# CONFIG_EXT3_FS is not set
11166 +# CONFIG_EXT4DEV_FS is not set
11167 +# CONFIG_REISERFS_FS is not set
11168 +# CONFIG_JFS_FS is not set
11169 +# CONFIG_FS_POSIX_ACL is not set
11170 +# CONFIG_XFS_FS is not set
11171 +# CONFIG_GFS2_FS is not set
11172 +# CONFIG_OCFS2_FS is not set
11173 +CONFIG_DNOTIFY=y
11174 +CONFIG_INOTIFY=y
11175 +CONFIG_INOTIFY_USER=y
11176 +# CONFIG_QUOTA is not set
11177 +# CONFIG_AUTOFS_FS is not set
11178 +# CONFIG_AUTOFS4_FS is not set
11179 +# CONFIG_FUSE_FS is not set
11180 +
11181 +#
11182 +# CD-ROM/DVD Filesystems
11183 +#
11184 +# CONFIG_ISO9660_FS is not set
11185 +# CONFIG_UDF_FS is not set
11186 +
11187 +#
11188 +# DOS/FAT/NT Filesystems
11189 +#
11190 +# CONFIG_MSDOS_FS is not set
11191 +# CONFIG_VFAT_FS is not set
11192 +# CONFIG_NTFS_FS is not set
11193 +
11194 +#
11195 +# Pseudo filesystems
11196 +#
11197 +CONFIG_PROC_FS=y
11198 +CONFIG_PROC_KCORE=y
11199 +CONFIG_PROC_SYSCTL=y
11200 +CONFIG_SYSFS=y
11201 +CONFIG_TMPFS=y
11202 +# CONFIG_TMPFS_POSIX_ACL is not set
11203 +# CONFIG_HUGETLB_PAGE is not set
11204 +# CONFIG_CONFIGFS_FS is not set
11205 +
11206 +#
11207 +# Miscellaneous filesystems
11208 +#
11209 +# CONFIG_ADFS_FS is not set
11210 +# CONFIG_AFFS_FS is not set
11211 +# CONFIG_HFS_FS is not set
11212 +# CONFIG_HFSPLUS_FS is not set
11213 +# CONFIG_BEFS_FS is not set
11214 +# CONFIG_BFS_FS is not set
11215 +# CONFIG_EFS_FS is not set
11216 +# CONFIG_JFFS2_FS is not set
11217 +CONFIG_CRAMFS=y
11218 +# CONFIG_VXFS_FS is not set
11219 +# CONFIG_MINIX_FS is not set
11220 +# CONFIG_HPFS_FS is not set
11221 +# CONFIG_QNX4FS_FS is not set
11222 +# CONFIG_ROMFS_FS is not set
11223 +# CONFIG_SYSV_FS is not set
11224 +# CONFIG_UFS_FS is not set
11225 +CONFIG_NETWORK_FILESYSTEMS=y
11226 +CONFIG_NFS_FS=y
11227 +CONFIG_NFS_V3=y
11228 +# CONFIG_NFS_V3_ACL is not set
11229 +# CONFIG_NFS_V4 is not set
11230 +# CONFIG_NFS_DIRECTIO is not set
11231 +# CONFIG_NFSD is not set
11232 +CONFIG_ROOT_NFS=y
11233 +CONFIG_LOCKD=y
11234 +CONFIG_LOCKD_V4=y
11235 +CONFIG_NFS_COMMON=y
11236 +CONFIG_SUNRPC=y
11237 +# CONFIG_SUNRPC_BIND34 is not set
11238 +# CONFIG_RPCSEC_GSS_KRB5 is not set
11239 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
11240 +# CONFIG_SMB_FS is not set
11241 +# CONFIG_CIFS is not set
11242 +# CONFIG_NCP_FS is not set
11243 +# CONFIG_CODA_FS is not set
11244 +# CONFIG_AFS_FS is not set
11245 +
11246 +#
11247 +# Partition Types
11248 +#
11249 +# CONFIG_PARTITION_ADVANCED is not set
11250 +CONFIG_MSDOS_PARTITION=y
11251 +# CONFIG_NLS is not set
11252 +# CONFIG_DLM is not set
11253 +
11254 +#
11255 +# Library routines
11256 +#
11257 +CONFIG_BITREVERSE=y
11258 +# CONFIG_CRC_CCITT is not set
11259 +# CONFIG_CRC16 is not set
11260 +# CONFIG_CRC_ITU_T is not set
11261 +CONFIG_CRC32=y
11262 +# CONFIG_CRC7 is not set
11263 +# CONFIG_LIBCRC32C is not set
11264 +CONFIG_ZLIB_INFLATE=y
11265 +CONFIG_PLIST=y
11266 +CONFIG_HAS_IOMEM=y
11267 +CONFIG_HAS_IOPORT=y
11268 +CONFIG_HAS_DMA=y
11269 +
11270 +#
11271 +# Kernel hacking
11272 +#
11273 +# CONFIG_PRINTK_TIME is not set
11274 +CONFIG_ENABLE_WARN_DEPRECATED=y
11275 +CONFIG_ENABLE_MUST_CHECK=y
11276 +CONFIG_MAGIC_SYSRQ=y
11277 +# CONFIG_UNUSED_SYMBOLS is not set
11278 +CONFIG_DEBUG_FS=y
11279 +# CONFIG_HEADERS_CHECK is not set
11280 +CONFIG_DEBUG_KERNEL=y
11281 +# CONFIG_DEBUG_SHIRQ is not set
11282 +CONFIG_DETECT_SOFTLOCKUP=y
11283 +CONFIG_SCHED_DEBUG=y
11284 +# CONFIG_SCHEDSTATS is not set
11285 +# CONFIG_TIMER_STATS is not set
11286 +# CONFIG_SLUB_DEBUG_ON is not set
11287 +# CONFIG_SLUB_STATS is not set
11288 +# CONFIG_DEBUG_RT_MUTEXES is not set
11289 +# CONFIG_RT_MUTEX_TESTER is not set
11290 +# CONFIG_DEBUG_SPINLOCK is not set
11291 +# CONFIG_DEBUG_MUTEXES is not set
11292 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
11293 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
11294 +# CONFIG_DEBUG_KOBJECT is not set
11295 +CONFIG_DEBUG_BUGVERBOSE=y
11296 +# CONFIG_DEBUG_INFO is not set
11297 +# CONFIG_DEBUG_VM is not set
11298 +# CONFIG_DEBUG_LIST is not set
11299 +# CONFIG_DEBUG_SG is not set
11300 +# CONFIG_BOOT_PRINTK_DELAY is not set
11301 +# CONFIG_RCU_TORTURE_TEST is not set
11302 +# CONFIG_BACKTRACE_SELF_TEST is not set
11303 +# CONFIG_FAULT_INJECTION is not set
11304 +# CONFIG_SAMPLES is not set
11305 +# CONFIG_DEBUG_STACKOVERFLOW is not set
11306 +# CONFIG_DEBUG_STACK_USAGE is not set
11307 +# CONFIG_DEBUG_PAGEALLOC is not set
11308 +# CONFIG_DEBUGGER is not set
11309 +# CONFIG_VIRQ_DEBUG is not set
11310 +# CONFIG_BDI_SWITCH is not set
11311 +# CONFIG_PPC_EARLY_DEBUG is not set
11312 +
11313 +#
11314 +# Security options
11315 +#
11316 +# CONFIG_KEYS is not set
11317 +# CONFIG_SECURITY is not set
11318 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
11319 +CONFIG_CRYPTO=y
11320 +CONFIG_CRYPTO_ALGAPI=y
11321 +CONFIG_CRYPTO_BLKCIPHER=y
11322 +# CONFIG_CRYPTO_SEQIV is not set
11323 +CONFIG_CRYPTO_MANAGER=y
11324 +# CONFIG_CRYPTO_HMAC is not set
11325 +# CONFIG_CRYPTO_XCBC is not set
11326 +# CONFIG_CRYPTO_NULL is not set
11327 +# CONFIG_CRYPTO_MD4 is not set
11328 +CONFIG_CRYPTO_MD5=y
11329 +# CONFIG_CRYPTO_SHA1 is not set
11330 +# CONFIG_CRYPTO_SHA256 is not set
11331 +# CONFIG_CRYPTO_SHA512 is not set
11332 +# CONFIG_CRYPTO_WP512 is not set
11333 +# CONFIG_CRYPTO_TGR192 is not set
11334 +# CONFIG_CRYPTO_GF128MUL is not set
11335 +CONFIG_CRYPTO_ECB=y
11336 +CONFIG_CRYPTO_CBC=y
11337 +CONFIG_CRYPTO_PCBC=y
11338 +# CONFIG_CRYPTO_LRW is not set
11339 +# CONFIG_CRYPTO_XTS is not set
11340 +# CONFIG_CRYPTO_CTR is not set
11341 +# CONFIG_CRYPTO_GCM is not set
11342 +# CONFIG_CRYPTO_CCM is not set
11343 +# CONFIG_CRYPTO_CRYPTD is not set
11344 +CONFIG_CRYPTO_DES=y
11345 +# CONFIG_CRYPTO_FCRYPT is not set
11346 +# CONFIG_CRYPTO_BLOWFISH is not set
11347 +# CONFIG_CRYPTO_TWOFISH is not set
11348 +# CONFIG_CRYPTO_SERPENT is not set
11349 +# CONFIG_CRYPTO_AES is not set
11350 +# CONFIG_CRYPTO_CAST5 is not set
11351 +# CONFIG_CRYPTO_CAST6 is not set
11352 +# CONFIG_CRYPTO_TEA is not set
11353 +# CONFIG_CRYPTO_ARC4 is not set
11354 +# CONFIG_CRYPTO_KHAZAD is not set
11355 +# CONFIG_CRYPTO_ANUBIS is not set
11356 +# CONFIG_CRYPTO_SEED is not set
11357 +# CONFIG_CRYPTO_SALSA20 is not set
11358 +# CONFIG_CRYPTO_DEFLATE is not set
11359 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
11360 +# CONFIG_CRYPTO_CRC32C is not set
11361 +# CONFIG_CRYPTO_CAMELLIA is not set
11362 +# CONFIG_CRYPTO_TEST is not set
11363 +# CONFIG_CRYPTO_AUTHENC is not set
11364 +# CONFIG_CRYPTO_LZO is not set
11365 +CONFIG_CRYPTO_HW=y
11366 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
11367 +# CONFIG_PPC_CLOCK is not set
11368 Index: linux-2.6.25.4/arch/powerpc/configs/40x/kilauea_defconfig
11369 ===================================================================
11370 --- /dev/null
11371 +++ linux-2.6.25.4/arch/powerpc/configs/40x/kilauea_defconfig
11372 @@ -0,0 +1,839 @@
11373 +#
11374 +# Automatically generated make config: don't edit
11375 +# Linux kernel version: 2.6.25-rc2
11376 +# Fri Feb 15 21:51:43 2008
11377 +#
11378 +# CONFIG_PPC64 is not set
11379 +
11380 +#
11381 +# Processor support
11382 +#
11383 +# CONFIG_6xx is not set
11384 +# CONFIG_PPC_85xx is not set
11385 +# CONFIG_PPC_8xx is not set
11386 +CONFIG_40x=y
11387 +# CONFIG_44x is not set
11388 +# CONFIG_E200 is not set
11389 +CONFIG_4xx=y
11390 +# CONFIG_PPC_MM_SLICES is not set
11391 +CONFIG_NOT_COHERENT_CACHE=y
11392 +CONFIG_PPC32=y
11393 +CONFIG_WORD_SIZE=32
11394 +CONFIG_PPC_MERGE=y
11395 +CONFIG_MMU=y
11396 +CONFIG_GENERIC_CMOS_UPDATE=y
11397 +CONFIG_GENERIC_TIME=y
11398 +CONFIG_GENERIC_TIME_VSYSCALL=y
11399 +CONFIG_GENERIC_CLOCKEVENTS=y
11400 +CONFIG_GENERIC_HARDIRQS=y
11401 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
11402 +CONFIG_IRQ_PER_CPU=y
11403 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
11404 +CONFIG_ARCH_HAS_ILOG2_U32=y
11405 +CONFIG_GENERIC_HWEIGHT=y
11406 +CONFIG_GENERIC_CALIBRATE_DELAY=y
11407 +CONFIG_GENERIC_FIND_NEXT_BIT=y
11408 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
11409 +CONFIG_PPC=y
11410 +CONFIG_EARLY_PRINTK=y
11411 +CONFIG_GENERIC_NVRAM=y
11412 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
11413 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
11414 +CONFIG_PPC_OF=y
11415 +CONFIG_OF=y
11416 +CONFIG_PPC_UDBG_16550=y
11417 +# CONFIG_GENERIC_TBSYNC is not set
11418 +CONFIG_AUDIT_ARCH=y
11419 +CONFIG_GENERIC_BUG=y
11420 +# CONFIG_DEFAULT_UIMAGE is not set
11421 +CONFIG_PPC_DCR_NATIVE=y
11422 +# CONFIG_PPC_DCR_MMIO is not set
11423 +CONFIG_PPC_DCR=y
11424 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
11425 +
11426 +#
11427 +# General setup
11428 +#
11429 +CONFIG_EXPERIMENTAL=y
11430 +CONFIG_BROKEN_ON_SMP=y
11431 +CONFIG_INIT_ENV_ARG_LIMIT=32
11432 +CONFIG_LOCALVERSION=""
11433 +CONFIG_LOCALVERSION_AUTO=y
11434 +CONFIG_SWAP=y
11435 +CONFIG_SYSVIPC=y
11436 +CONFIG_SYSVIPC_SYSCTL=y
11437 +CONFIG_POSIX_MQUEUE=y
11438 +# CONFIG_BSD_PROCESS_ACCT is not set
11439 +# CONFIG_TASKSTATS is not set
11440 +# CONFIG_AUDIT is not set
11441 +# CONFIG_IKCONFIG is not set
11442 +CONFIG_LOG_BUF_SHIFT=14
11443 +# CONFIG_CGROUPS is not set
11444 +CONFIG_GROUP_SCHED=y
11445 +# CONFIG_FAIR_GROUP_SCHED is not set
11446 +# CONFIG_RT_GROUP_SCHED is not set
11447 +CONFIG_USER_SCHED=y
11448 +# CONFIG_CGROUP_SCHED is not set
11449 +CONFIG_SYSFS_DEPRECATED=y
11450 +# CONFIG_RELAY is not set
11451 +# CONFIG_NAMESPACES is not set
11452 +CONFIG_BLK_DEV_INITRD=y
11453 +CONFIG_INITRAMFS_SOURCE=""
11454 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
11455 +CONFIG_SYSCTL=y
11456 +CONFIG_EMBEDDED=y
11457 +CONFIG_SYSCTL_SYSCALL=y
11458 +CONFIG_KALLSYMS=y
11459 +CONFIG_KALLSYMS_ALL=y
11460 +CONFIG_KALLSYMS_EXTRA_PASS=y
11461 +CONFIG_HOTPLUG=y
11462 +CONFIG_PRINTK=y
11463 +CONFIG_BUG=y
11464 +CONFIG_ELF_CORE=y
11465 +CONFIG_COMPAT_BRK=y
11466 +CONFIG_BASE_FULL=y
11467 +CONFIG_FUTEX=y
11468 +CONFIG_ANON_INODES=y
11469 +CONFIG_EPOLL=y
11470 +CONFIG_SIGNALFD=y
11471 +CONFIG_TIMERFD=y
11472 +CONFIG_EVENTFD=y
11473 +CONFIG_SHMEM=y
11474 +CONFIG_VM_EVENT_COUNTERS=y
11475 +CONFIG_SLUB_DEBUG=y
11476 +# CONFIG_SLAB is not set
11477 +CONFIG_SLUB=y
11478 +# CONFIG_SLOB is not set
11479 +# CONFIG_PROFILING is not set
11480 +# CONFIG_MARKERS is not set
11481 +CONFIG_HAVE_OPROFILE=y
11482 +# CONFIG_KPROBES is not set
11483 +CONFIG_HAVE_KPROBES=y
11484 +CONFIG_PROC_PAGE_MONITOR=y
11485 +CONFIG_SLABINFO=y
11486 +CONFIG_RT_MUTEXES=y
11487 +# CONFIG_TINY_SHMEM is not set
11488 +CONFIG_BASE_SMALL=0
11489 +CONFIG_MODULES=y
11490 +CONFIG_MODULE_UNLOAD=y
11491 +# CONFIG_MODULE_FORCE_UNLOAD is not set
11492 +# CONFIG_MODVERSIONS is not set
11493 +# CONFIG_MODULE_SRCVERSION_ALL is not set
11494 +CONFIG_KMOD=y
11495 +CONFIG_BLOCK=y
11496 +CONFIG_LBD=y
11497 +# CONFIG_BLK_DEV_IO_TRACE is not set
11498 +# CONFIG_LSF is not set
11499 +# CONFIG_BLK_DEV_BSG is not set
11500 +
11501 +#
11502 +# IO Schedulers
11503 +#
11504 +CONFIG_IOSCHED_NOOP=y
11505 +CONFIG_IOSCHED_AS=y
11506 +CONFIG_IOSCHED_DEADLINE=y
11507 +CONFIG_IOSCHED_CFQ=y
11508 +CONFIG_DEFAULT_AS=y
11509 +# CONFIG_DEFAULT_DEADLINE is not set
11510 +# CONFIG_DEFAULT_CFQ is not set
11511 +# CONFIG_DEFAULT_NOOP is not set
11512 +CONFIG_DEFAULT_IOSCHED="anticipatory"
11513 +CONFIG_CLASSIC_RCU=y
11514 +# CONFIG_PREEMPT_RCU is not set
11515 +CONFIG_PPC4xx_PCI_EXPRESS=y
11516 +
11517 +#
11518 +# Platform support
11519 +#
11520 +# CONFIG_PPC_MPC512x is not set
11521 +# CONFIG_PPC_MPC5121 is not set
11522 +# CONFIG_PPC_CELL is not set
11523 +# CONFIG_PPC_CELL_NATIVE is not set
11524 +# CONFIG_PQ2ADS is not set
11525 +# CONFIG_EP405 is not set
11526 +CONFIG_KILAUEA=y
11527 +# CONFIG_MAKALU is not set
11528 +# CONFIG_WALNUT is not set
11529 +# CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set
11530 +CONFIG_405EX=y
11531 +# CONFIG_IPIC is not set
11532 +# CONFIG_MPIC is not set
11533 +# CONFIG_MPIC_WEIRD is not set
11534 +# CONFIG_PPC_I8259 is not set
11535 +# CONFIG_PPC_RTAS is not set
11536 +# CONFIG_MMIO_NVRAM is not set
11537 +# CONFIG_PPC_MPC106 is not set
11538 +# CONFIG_PPC_970_NAP is not set
11539 +# CONFIG_PPC_INDIRECT_IO is not set
11540 +# CONFIG_GENERIC_IOMAP is not set
11541 +# CONFIG_CPU_FREQ is not set
11542 +# CONFIG_FSL_ULI1575 is not set
11543 +
11544 +#
11545 +# Kernel options
11546 +#
11547 +# CONFIG_HIGHMEM is not set
11548 +# CONFIG_TICK_ONESHOT is not set
11549 +# CONFIG_NO_HZ is not set
11550 +# CONFIG_HIGH_RES_TIMERS is not set
11551 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
11552 +# CONFIG_HZ_100 is not set
11553 +CONFIG_HZ_250=y
11554 +# CONFIG_HZ_300 is not set
11555 +# CONFIG_HZ_1000 is not set
11556 +CONFIG_HZ=250
11557 +# CONFIG_SCHED_HRTICK is not set
11558 +CONFIG_PREEMPT_NONE=y
11559 +# CONFIG_PREEMPT_VOLUNTARY is not set
11560 +# CONFIG_PREEMPT is not set
11561 +CONFIG_RCU_TRACE=y
11562 +CONFIG_BINFMT_ELF=y
11563 +# CONFIG_BINFMT_MISC is not set
11564 +# CONFIG_MATH_EMULATION is not set
11565 +# CONFIG_IOMMU_HELPER is not set
11566 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
11567 +CONFIG_ARCH_HAS_WALK_MEMORY=y
11568 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
11569 +CONFIG_ARCH_FLATMEM_ENABLE=y
11570 +CONFIG_ARCH_POPULATES_NODE_MAP=y
11571 +CONFIG_SELECT_MEMORY_MODEL=y
11572 +CONFIG_FLATMEM_MANUAL=y
11573 +# CONFIG_DISCONTIGMEM_MANUAL is not set
11574 +# CONFIG_SPARSEMEM_MANUAL is not set
11575 +CONFIG_FLATMEM=y
11576 +CONFIG_FLAT_NODE_MEM_MAP=y
11577 +# CONFIG_SPARSEMEM_STATIC is not set
11578 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
11579 +CONFIG_SPLIT_PTLOCK_CPUS=4
11580 +# CONFIG_RESOURCES_64BIT is not set
11581 +CONFIG_ZONE_DMA_FLAG=1
11582 +CONFIG_BOUNCE=y
11583 +CONFIG_VIRT_TO_BUS=y
11584 +CONFIG_PROC_DEVICETREE=y
11585 +# CONFIG_CMDLINE_BOOL is not set
11586 +# CONFIG_PM is not set
11587 +CONFIG_SECCOMP=y
11588 +CONFIG_ISA_DMA_API=y
11589 +
11590 +#
11591 +# Bus options
11592 +#
11593 +CONFIG_ZONE_DMA=y
11594 +CONFIG_PPC_INDIRECT_PCI=y
11595 +CONFIG_PCI=y
11596 +CONFIG_PCI_DOMAINS=y
11597 +CONFIG_PCI_SYSCALL=y
11598 +# CONFIG_PCIEPORTBUS is not set
11599 +CONFIG_ARCH_SUPPORTS_MSI=y
11600 +# CONFIG_PCI_MSI is not set
11601 +CONFIG_PCI_LEGACY=y
11602 +# CONFIG_PCI_DEBUG is not set
11603 +# CONFIG_PCCARD is not set
11604 +# CONFIG_HOTPLUG_PCI is not set
11605 +
11606 +#
11607 +# Advanced setup
11608 +#
11609 +# CONFIG_ADVANCED_OPTIONS is not set
11610 +
11611 +#
11612 +# Default settings for advanced configuration options are used
11613 +#
11614 +CONFIG_HIGHMEM_START=0xfe000000
11615 +CONFIG_LOWMEM_SIZE=0x30000000
11616 +CONFIG_KERNEL_START=0xc0000000
11617 +CONFIG_TASK_SIZE=0xc0000000
11618 +CONFIG_CONSISTENT_START=0xff100000
11619 +CONFIG_CONSISTENT_SIZE=0x00200000
11620 +CONFIG_BOOT_LOAD=0x00400000
11621 +
11622 +#
11623 +# Networking
11624 +#
11625 +CONFIG_NET=y
11626 +
11627 +#
11628 +# Networking options
11629 +#
11630 +CONFIG_PACKET=y
11631 +# CONFIG_PACKET_MMAP is not set
11632 +CONFIG_UNIX=y
11633 +# CONFIG_NET_KEY is not set
11634 +CONFIG_INET=y
11635 +# CONFIG_IP_MULTICAST is not set
11636 +# CONFIG_IP_ADVANCED_ROUTER is not set
11637 +CONFIG_IP_FIB_HASH=y
11638 +CONFIG_IP_PNP=y
11639 +CONFIG_IP_PNP_DHCP=y
11640 +CONFIG_IP_PNP_BOOTP=y
11641 +# CONFIG_IP_PNP_RARP is not set
11642 +# CONFIG_NET_IPIP is not set
11643 +# CONFIG_NET_IPGRE is not set
11644 +# CONFIG_ARPD is not set
11645 +# CONFIG_SYN_COOKIES is not set
11646 +# CONFIG_INET_AH is not set
11647 +# CONFIG_INET_ESP is not set
11648 +# CONFIG_INET_IPCOMP is not set
11649 +# CONFIG_INET_XFRM_TUNNEL is not set
11650 +# CONFIG_INET_TUNNEL is not set
11651 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
11652 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
11653 +# CONFIG_INET_XFRM_MODE_BEET is not set
11654 +# CONFIG_INET_LRO is not set
11655 +CONFIG_INET_DIAG=y
11656 +CONFIG_INET_TCP_DIAG=y
11657 +# CONFIG_TCP_CONG_ADVANCED is not set
11658 +CONFIG_TCP_CONG_CUBIC=y
11659 +CONFIG_DEFAULT_TCP_CONG="cubic"
11660 +# CONFIG_TCP_MD5SIG is not set
11661 +# CONFIG_IPV6 is not set
11662 +# CONFIG_INET6_XFRM_TUNNEL is not set
11663 +# CONFIG_INET6_TUNNEL is not set
11664 +# CONFIG_NETWORK_SECMARK is not set
11665 +# CONFIG_NETFILTER is not set
11666 +# CONFIG_IP_DCCP is not set
11667 +# CONFIG_IP_SCTP is not set
11668 +# CONFIG_TIPC is not set
11669 +# CONFIG_ATM is not set
11670 +# CONFIG_BRIDGE is not set
11671 +# CONFIG_VLAN_8021Q is not set
11672 +# CONFIG_DECNET is not set
11673 +# CONFIG_LLC2 is not set
11674 +# CONFIG_IPX is not set
11675 +# CONFIG_ATALK is not set
11676 +# CONFIG_X25 is not set
11677 +# CONFIG_LAPB is not set
11678 +# CONFIG_ECONET is not set
11679 +# CONFIG_WAN_ROUTER is not set
11680 +# CONFIG_NET_SCHED is not set
11681 +
11682 +#
11683 +# Network testing
11684 +#
11685 +# CONFIG_NET_PKTGEN is not set
11686 +# CONFIG_HAMRADIO is not set
11687 +# CONFIG_CAN is not set
11688 +# CONFIG_IRDA is not set
11689 +# CONFIG_BT is not set
11690 +# CONFIG_AF_RXRPC is not set
11691 +
11692 +#
11693 +# Wireless
11694 +#
11695 +# CONFIG_CFG80211 is not set
11696 +# CONFIG_WIRELESS_EXT is not set
11697 +# CONFIG_MAC80211 is not set
11698 +# CONFIG_IEEE80211 is not set
11699 +# CONFIG_RFKILL is not set
11700 +# CONFIG_NET_9P is not set
11701 +
11702 +#
11703 +# Device Drivers
11704 +#
11705 +
11706 +#
11707 +# Generic Driver Options
11708 +#
11709 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
11710 +CONFIG_STANDALONE=y
11711 +CONFIG_PREVENT_FIRMWARE_BUILD=y
11712 +CONFIG_FW_LOADER=y
11713 +# CONFIG_DEBUG_DRIVER is not set
11714 +# CONFIG_DEBUG_DEVRES is not set
11715 +# CONFIG_SYS_HYPERVISOR is not set
11716 +CONFIG_CONNECTOR=y
11717 +CONFIG_PROC_EVENTS=y
11718 +CONFIG_MTD=y
11719 +# CONFIG_MTD_DEBUG is not set
11720 +# CONFIG_MTD_CONCAT is not set
11721 +CONFIG_MTD_PARTITIONS=y
11722 +# CONFIG_MTD_REDBOOT_PARTS is not set
11723 +CONFIG_MTD_CMDLINE_PARTS=y
11724 +CONFIG_MTD_OF_PARTS=y
11725 +
11726 +#
11727 +# User Modules And Translation Layers
11728 +#
11729 +CONFIG_MTD_CHAR=y
11730 +CONFIG_MTD_BLKDEVS=m
11731 +CONFIG_MTD_BLOCK=m
11732 +# CONFIG_MTD_BLOCK_RO is not set
11733 +# CONFIG_FTL is not set
11734 +# CONFIG_NFTL is not set
11735 +# CONFIG_INFTL is not set
11736 +# CONFIG_RFD_FTL is not set
11737 +# CONFIG_SSFDC is not set
11738 +# CONFIG_MTD_OOPS is not set
11739 +
11740 +#
11741 +# RAM/ROM/Flash chip drivers
11742 +#
11743 +CONFIG_MTD_CFI=y
11744 +CONFIG_MTD_JEDECPROBE=y
11745 +CONFIG_MTD_GEN_PROBE=y
11746 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
11747 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
11748 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
11749 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
11750 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
11751 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
11752 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
11753 +CONFIG_MTD_CFI_I1=y
11754 +CONFIG_MTD_CFI_I2=y
11755 +# CONFIG_MTD_CFI_I4 is not set
11756 +# CONFIG_MTD_CFI_I8 is not set
11757 +# CONFIG_MTD_CFI_INTELEXT is not set
11758 +CONFIG_MTD_CFI_AMDSTD=y
11759 +# CONFIG_MTD_CFI_STAA is not set
11760 +CONFIG_MTD_CFI_UTIL=y
11761 +# CONFIG_MTD_RAM is not set
11762 +# CONFIG_MTD_ROM is not set
11763 +# CONFIG_MTD_ABSENT is not set
11764 +
11765 +#
11766 +# Mapping drivers for chip access
11767 +#
11768 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
11769 +# CONFIG_MTD_PHYSMAP is not set
11770 +CONFIG_MTD_PHYSMAP_OF=y
11771 +# CONFIG_MTD_INTEL_VR_NOR is not set
11772 +# CONFIG_MTD_PLATRAM is not set
11773 +
11774 +#
11775 +# Self-contained MTD device drivers
11776 +#
11777 +# CONFIG_MTD_PMC551 is not set
11778 +# CONFIG_MTD_SLRAM is not set
11779 +# CONFIG_MTD_PHRAM is not set
11780 +# CONFIG_MTD_MTDRAM is not set
11781 +# CONFIG_MTD_BLOCK2MTD is not set
11782 +
11783 +#
11784 +# Disk-On-Chip Device Drivers
11785 +#
11786 +# CONFIG_MTD_DOC2000 is not set
11787 +# CONFIG_MTD_DOC2001 is not set
11788 +# CONFIG_MTD_DOC2001PLUS is not set
11789 +# CONFIG_MTD_NAND is not set
11790 +# CONFIG_MTD_ONENAND is not set
11791 +
11792 +#
11793 +# UBI - Unsorted block images
11794 +#
11795 +# CONFIG_MTD_UBI is not set
11796 +CONFIG_OF_DEVICE=y
11797 +# CONFIG_PARPORT is not set
11798 +CONFIG_BLK_DEV=y
11799 +# CONFIG_BLK_DEV_FD is not set
11800 +# CONFIG_BLK_CPQ_DA is not set
11801 +# CONFIG_BLK_CPQ_CISS_DA is not set
11802 +# CONFIG_BLK_DEV_DAC960 is not set
11803 +# CONFIG_BLK_DEV_UMEM is not set
11804 +# CONFIG_BLK_DEV_COW_COMMON is not set
11805 +# CONFIG_BLK_DEV_LOOP is not set
11806 +# CONFIG_BLK_DEV_NBD is not set
11807 +# CONFIG_BLK_DEV_SX8 is not set
11808 +CONFIG_BLK_DEV_RAM=y
11809 +CONFIG_BLK_DEV_RAM_COUNT=16
11810 +CONFIG_BLK_DEV_RAM_SIZE=35000
11811 +# CONFIG_BLK_DEV_XIP is not set
11812 +# CONFIG_CDROM_PKTCDVD is not set
11813 +# CONFIG_ATA_OVER_ETH is not set
11814 +# CONFIG_XILINX_SYSACE is not set
11815 +# CONFIG_MISC_DEVICES is not set
11816 +CONFIG_HAVE_IDE=y
11817 +# CONFIG_IDE is not set
11818 +
11819 +#
11820 +# SCSI device support
11821 +#
11822 +# CONFIG_RAID_ATTRS is not set
11823 +# CONFIG_SCSI is not set
11824 +# CONFIG_SCSI_DMA is not set
11825 +# CONFIG_SCSI_NETLINK is not set
11826 +# CONFIG_ATA is not set
11827 +# CONFIG_MD is not set
11828 +# CONFIG_FUSION is not set
11829 +
11830 +#
11831 +# IEEE 1394 (FireWire) support
11832 +#
11833 +# CONFIG_FIREWIRE is not set
11834 +# CONFIG_IEEE1394 is not set
11835 +# CONFIG_I2O is not set
11836 +# CONFIG_MACINTOSH_DRIVERS is not set
11837 +CONFIG_NETDEVICES=y
11838 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
11839 +# CONFIG_DUMMY is not set
11840 +# CONFIG_BONDING is not set
11841 +# CONFIG_MACVLAN is not set
11842 +# CONFIG_EQUALIZER is not set
11843 +# CONFIG_TUN is not set
11844 +# CONFIG_VETH is not set
11845 +# CONFIG_ARCNET is not set
11846 +# CONFIG_PHYLIB is not set
11847 +CONFIG_NET_ETHERNET=y
11848 +# CONFIG_MII is not set
11849 +# CONFIG_HAPPYMEAL is not set
11850 +# CONFIG_SUNGEM is not set
11851 +# CONFIG_CASSINI is not set
11852 +# CONFIG_NET_VENDOR_3COM is not set
11853 +# CONFIG_NET_TULIP is not set
11854 +# CONFIG_HP100 is not set
11855 +CONFIG_IBM_NEW_EMAC=y
11856 +CONFIG_IBM_NEW_EMAC_RXB=256
11857 +CONFIG_IBM_NEW_EMAC_TXB=256
11858 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
11859 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
11860 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
11861 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
11862 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
11863 +CONFIG_IBM_NEW_EMAC_RGMII=y
11864 +# CONFIG_IBM_NEW_EMAC_TAH is not set
11865 +CONFIG_IBM_NEW_EMAC_EMAC4=y
11866 +# CONFIG_NET_PCI is not set
11867 +# CONFIG_B44 is not set
11868 +# CONFIG_NETDEV_1000 is not set
11869 +# CONFIG_NETDEV_10000 is not set
11870 +# CONFIG_TR is not set
11871 +
11872 +#
11873 +# Wireless LAN
11874 +#
11875 +# CONFIG_WLAN_PRE80211 is not set
11876 +# CONFIG_WLAN_80211 is not set
11877 +# CONFIG_WAN is not set
11878 +# CONFIG_FDDI is not set
11879 +# CONFIG_HIPPI is not set
11880 +# CONFIG_PPP is not set
11881 +# CONFIG_SLIP is not set
11882 +# CONFIG_NETCONSOLE is not set
11883 +# CONFIG_NETPOLL is not set
11884 +# CONFIG_NET_POLL_CONTROLLER is not set
11885 +# CONFIG_ISDN is not set
11886 +# CONFIG_PHONE is not set
11887 +
11888 +#
11889 +# Input device support
11890 +#
11891 +# CONFIG_INPUT is not set
11892 +
11893 +#
11894 +# Hardware I/O ports
11895 +#
11896 +# CONFIG_SERIO is not set
11897 +# CONFIG_GAMEPORT is not set
11898 +
11899 +#
11900 +# Character devices
11901 +#
11902 +# CONFIG_VT is not set
11903 +# CONFIG_SERIAL_NONSTANDARD is not set
11904 +# CONFIG_NOZOMI is not set
11905 +
11906 +#
11907 +# Serial drivers
11908 +#
11909 +CONFIG_SERIAL_8250=y
11910 +CONFIG_SERIAL_8250_CONSOLE=y
11911 +CONFIG_SERIAL_8250_PCI=y
11912 +CONFIG_SERIAL_8250_NR_UARTS=4
11913 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
11914 +CONFIG_SERIAL_8250_EXTENDED=y
11915 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
11916 +CONFIG_SERIAL_8250_SHARE_IRQ=y
11917 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
11918 +# CONFIG_SERIAL_8250_RSA is not set
11919 +
11920 +#
11921 +# Non-8250 serial port support
11922 +#
11923 +# CONFIG_SERIAL_UARTLITE is not set
11924 +CONFIG_SERIAL_CORE=y
11925 +CONFIG_SERIAL_CORE_CONSOLE=y
11926 +# CONFIG_SERIAL_JSM is not set
11927 +CONFIG_SERIAL_OF_PLATFORM=y
11928 +CONFIG_UNIX98_PTYS=y
11929 +CONFIG_LEGACY_PTYS=y
11930 +CONFIG_LEGACY_PTY_COUNT=256
11931 +# CONFIG_IPMI_HANDLER is not set
11932 +# CONFIG_HW_RANDOM is not set
11933 +# CONFIG_NVRAM is not set
11934 +# CONFIG_GEN_RTC is not set
11935 +# CONFIG_R3964 is not set
11936 +# CONFIG_APPLICOM is not set
11937 +# CONFIG_RAW_DRIVER is not set
11938 +# CONFIG_TCG_TPM is not set
11939 +CONFIG_DEVPORT=y
11940 +# CONFIG_I2C is not set
11941 +
11942 +#
11943 +# SPI support
11944 +#
11945 +# CONFIG_SPI is not set
11946 +# CONFIG_SPI_MASTER is not set
11947 +# CONFIG_W1 is not set
11948 +# CONFIG_POWER_SUPPLY is not set
11949 +# CONFIG_HWMON is not set
11950 +CONFIG_THERMAL=y
11951 +# CONFIG_WATCHDOG is not set
11952 +
11953 +#
11954 +# Sonics Silicon Backplane
11955 +#
11956 +CONFIG_SSB_POSSIBLE=y
11957 +# CONFIG_SSB is not set
11958 +
11959 +#
11960 +# Multifunction device drivers
11961 +#
11962 +# CONFIG_MFD_SM501 is not set
11963 +
11964 +#
11965 +# Multimedia devices
11966 +#
11967 +# CONFIG_VIDEO_DEV is not set
11968 +# CONFIG_DVB_CORE is not set
11969 +# CONFIG_DAB is not set
11970 +
11971 +#
11972 +# Graphics support
11973 +#
11974 +# CONFIG_AGP is not set
11975 +# CONFIG_DRM is not set
11976 +# CONFIG_VGASTATE is not set
11977 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
11978 +# CONFIG_FB is not set
11979 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
11980 +
11981 +#
11982 +# Display device support
11983 +#
11984 +# CONFIG_DISPLAY_SUPPORT is not set
11985 +
11986 +#
11987 +# Sound
11988 +#
11989 +# CONFIG_SOUND is not set
11990 +# CONFIG_USB_SUPPORT is not set
11991 +# CONFIG_MMC is not set
11992 +# CONFIG_MEMSTICK is not set
11993 +# CONFIG_NEW_LEDS is not set
11994 +# CONFIG_INFINIBAND is not set
11995 +# CONFIG_EDAC is not set
11996 +# CONFIG_RTC_CLASS is not set
11997 +
11998 +#
11999 +# Userspace I/O
12000 +#
12001 +# CONFIG_UIO is not set
12002 +
12003 +#
12004 +# File systems
12005 +#
12006 +CONFIG_EXT2_FS=y
12007 +# CONFIG_EXT2_FS_XATTR is not set
12008 +# CONFIG_EXT2_FS_XIP is not set
12009 +# CONFIG_EXT3_FS is not set
12010 +# CONFIG_EXT4DEV_FS is not set
12011 +# CONFIG_REISERFS_FS is not set
12012 +# CONFIG_JFS_FS is not set
12013 +# CONFIG_FS_POSIX_ACL is not set
12014 +# CONFIG_XFS_FS is not set
12015 +# CONFIG_GFS2_FS is not set
12016 +# CONFIG_OCFS2_FS is not set
12017 +CONFIG_DNOTIFY=y
12018 +CONFIG_INOTIFY=y
12019 +CONFIG_INOTIFY_USER=y
12020 +# CONFIG_QUOTA is not set
12021 +# CONFIG_AUTOFS_FS is not set
12022 +# CONFIG_AUTOFS4_FS is not set
12023 +# CONFIG_FUSE_FS is not set
12024 +
12025 +#
12026 +# CD-ROM/DVD Filesystems
12027 +#
12028 +# CONFIG_ISO9660_FS is not set
12029 +# CONFIG_UDF_FS is not set
12030 +
12031 +#
12032 +# DOS/FAT/NT Filesystems
12033 +#
12034 +# CONFIG_MSDOS_FS is not set
12035 +# CONFIG_VFAT_FS is not set
12036 +# CONFIG_NTFS_FS is not set
12037 +
12038 +#
12039 +# Pseudo filesystems
12040 +#
12041 +CONFIG_PROC_FS=y
12042 +CONFIG_PROC_KCORE=y
12043 +CONFIG_PROC_SYSCTL=y
12044 +CONFIG_SYSFS=y
12045 +CONFIG_TMPFS=y
12046 +# CONFIG_TMPFS_POSIX_ACL is not set
12047 +# CONFIG_HUGETLB_PAGE is not set
12048 +# CONFIG_CONFIGFS_FS is not set
12049 +
12050 +#
12051 +# Miscellaneous filesystems
12052 +#
12053 +# CONFIG_ADFS_FS is not set
12054 +# CONFIG_AFFS_FS is not set
12055 +# CONFIG_HFS_FS is not set
12056 +# CONFIG_HFSPLUS_FS is not set
12057 +# CONFIG_BEFS_FS is not set
12058 +# CONFIG_BFS_FS is not set
12059 +# CONFIG_EFS_FS is not set
12060 +# CONFIG_JFFS2_FS is not set
12061 +CONFIG_CRAMFS=y
12062 +# CONFIG_VXFS_FS is not set
12063 +# CONFIG_MINIX_FS is not set
12064 +# CONFIG_HPFS_FS is not set
12065 +# CONFIG_QNX4FS_FS is not set
12066 +# CONFIG_ROMFS_FS is not set
12067 +# CONFIG_SYSV_FS is not set
12068 +# CONFIG_UFS_FS is not set
12069 +CONFIG_NETWORK_FILESYSTEMS=y
12070 +CONFIG_NFS_FS=y
12071 +CONFIG_NFS_V3=y
12072 +# CONFIG_NFS_V3_ACL is not set
12073 +# CONFIG_NFS_V4 is not set
12074 +# CONFIG_NFS_DIRECTIO is not set
12075 +# CONFIG_NFSD is not set
12076 +CONFIG_ROOT_NFS=y
12077 +CONFIG_LOCKD=y
12078 +CONFIG_LOCKD_V4=y
12079 +CONFIG_NFS_COMMON=y
12080 +CONFIG_SUNRPC=y
12081 +# CONFIG_SUNRPC_BIND34 is not set
12082 +# CONFIG_RPCSEC_GSS_KRB5 is not set
12083 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
12084 +# CONFIG_SMB_FS is not set
12085 +# CONFIG_CIFS is not set
12086 +# CONFIG_NCP_FS is not set
12087 +# CONFIG_CODA_FS is not set
12088 +# CONFIG_AFS_FS is not set
12089 +
12090 +#
12091 +# Partition Types
12092 +#
12093 +# CONFIG_PARTITION_ADVANCED is not set
12094 +CONFIG_MSDOS_PARTITION=y
12095 +# CONFIG_NLS is not set
12096 +# CONFIG_DLM is not set
12097 +
12098 +#
12099 +# Library routines
12100 +#
12101 +CONFIG_BITREVERSE=y
12102 +# CONFIG_CRC_CCITT is not set
12103 +# CONFIG_CRC16 is not set
12104 +# CONFIG_CRC_ITU_T is not set
12105 +CONFIG_CRC32=y
12106 +# CONFIG_CRC7 is not set
12107 +# CONFIG_LIBCRC32C is not set
12108 +CONFIG_ZLIB_INFLATE=y
12109 +CONFIG_PLIST=y
12110 +CONFIG_HAS_IOMEM=y
12111 +CONFIG_HAS_IOPORT=y
12112 +CONFIG_HAS_DMA=y
12113 +
12114 +#
12115 +# Kernel hacking
12116 +#
12117 +# CONFIG_PRINTK_TIME is not set
12118 +CONFIG_ENABLE_WARN_DEPRECATED=y
12119 +CONFIG_ENABLE_MUST_CHECK=y
12120 +CONFIG_MAGIC_SYSRQ=y
12121 +# CONFIG_UNUSED_SYMBOLS is not set
12122 +CONFIG_DEBUG_FS=y
12123 +# CONFIG_HEADERS_CHECK is not set
12124 +CONFIG_DEBUG_KERNEL=y
12125 +# CONFIG_DEBUG_SHIRQ is not set
12126 +CONFIG_DETECT_SOFTLOCKUP=y
12127 +CONFIG_SCHED_DEBUG=y
12128 +# CONFIG_SCHEDSTATS is not set
12129 +# CONFIG_TIMER_STATS is not set
12130 +# CONFIG_SLUB_DEBUG_ON is not set
12131 +# CONFIG_SLUB_STATS is not set
12132 +# CONFIG_DEBUG_RT_MUTEXES is not set
12133 +# CONFIG_RT_MUTEX_TESTER is not set
12134 +# CONFIG_DEBUG_SPINLOCK is not set
12135 +# CONFIG_DEBUG_MUTEXES is not set
12136 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
12137 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
12138 +# CONFIG_DEBUG_KOBJECT is not set
12139 +CONFIG_DEBUG_BUGVERBOSE=y
12140 +# CONFIG_DEBUG_INFO is not set
12141 +# CONFIG_DEBUG_VM is not set
12142 +# CONFIG_DEBUG_LIST is not set
12143 +# CONFIG_DEBUG_SG is not set
12144 +# CONFIG_BOOT_PRINTK_DELAY is not set
12145 +# CONFIG_RCU_TORTURE_TEST is not set
12146 +# CONFIG_BACKTRACE_SELF_TEST is not set
12147 +# CONFIG_FAULT_INJECTION is not set
12148 +# CONFIG_SAMPLES is not set
12149 +# CONFIG_DEBUG_STACKOVERFLOW is not set
12150 +# CONFIG_DEBUG_STACK_USAGE is not set
12151 +# CONFIG_DEBUG_PAGEALLOC is not set
12152 +# CONFIG_DEBUGGER is not set
12153 +# CONFIG_VIRQ_DEBUG is not set
12154 +# CONFIG_BDI_SWITCH is not set
12155 +# CONFIG_PPC_EARLY_DEBUG is not set
12156 +
12157 +#
12158 +# Security options
12159 +#
12160 +# CONFIG_KEYS is not set
12161 +# CONFIG_SECURITY is not set
12162 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
12163 +CONFIG_CRYPTO=y
12164 +CONFIG_CRYPTO_ALGAPI=y
12165 +CONFIG_CRYPTO_BLKCIPHER=y
12166 +# CONFIG_CRYPTO_SEQIV is not set
12167 +CONFIG_CRYPTO_MANAGER=y
12168 +# CONFIG_CRYPTO_HMAC is not set
12169 +# CONFIG_CRYPTO_XCBC is not set
12170 +# CONFIG_CRYPTO_NULL is not set
12171 +# CONFIG_CRYPTO_MD4 is not set
12172 +CONFIG_CRYPTO_MD5=y
12173 +# CONFIG_CRYPTO_SHA1 is not set
12174 +# CONFIG_CRYPTO_SHA256 is not set
12175 +# CONFIG_CRYPTO_SHA512 is not set
12176 +# CONFIG_CRYPTO_WP512 is not set
12177 +# CONFIG_CRYPTO_TGR192 is not set
12178 +# CONFIG_CRYPTO_GF128MUL is not set
12179 +CONFIG_CRYPTO_ECB=y
12180 +CONFIG_CRYPTO_CBC=y
12181 +CONFIG_CRYPTO_PCBC=y
12182 +# CONFIG_CRYPTO_LRW is not set
12183 +# CONFIG_CRYPTO_XTS is not set
12184 +# CONFIG_CRYPTO_CTR is not set
12185 +# CONFIG_CRYPTO_GCM is not set
12186 +# CONFIG_CRYPTO_CCM is not set
12187 +# CONFIG_CRYPTO_CRYPTD is not set
12188 +CONFIG_CRYPTO_DES=y
12189 +# CONFIG_CRYPTO_FCRYPT is not set
12190 +# CONFIG_CRYPTO_BLOWFISH is not set
12191 +# CONFIG_CRYPTO_TWOFISH is not set
12192 +# CONFIG_CRYPTO_SERPENT is not set
12193 +# CONFIG_CRYPTO_AES is not set
12194 +# CONFIG_CRYPTO_CAST5 is not set
12195 +# CONFIG_CRYPTO_CAST6 is not set
12196 +# CONFIG_CRYPTO_TEA is not set
12197 +# CONFIG_CRYPTO_ARC4 is not set
12198 +# CONFIG_CRYPTO_KHAZAD is not set
12199 +# CONFIG_CRYPTO_ANUBIS is not set
12200 +# CONFIG_CRYPTO_SEED is not set
12201 +# CONFIG_CRYPTO_SALSA20 is not set
12202 +# CONFIG_CRYPTO_DEFLATE is not set
12203 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
12204 +# CONFIG_CRYPTO_CRC32C is not set
12205 +# CONFIG_CRYPTO_CAMELLIA is not set
12206 +# CONFIG_CRYPTO_TEST is not set
12207 +# CONFIG_CRYPTO_AUTHENC is not set
12208 +# CONFIG_CRYPTO_LZO is not set
12209 +CONFIG_CRYPTO_HW=y
12210 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
12211 +# CONFIG_PPC_CLOCK is not set
12212 Index: linux-2.6.25.4/arch/powerpc/configs/40x/makalu_defconfig
12213 ===================================================================
12214 --- /dev/null
12215 +++ linux-2.6.25.4/arch/powerpc/configs/40x/makalu_defconfig
12216 @@ -0,0 +1,839 @@
12217 +#
12218 +# Automatically generated make config: don't edit
12219 +# Linux kernel version: 2.6.25-rc2
12220 +# Fri Feb 15 21:52:30 2008
12221 +#
12222 +# CONFIG_PPC64 is not set
12223 +
12224 +#
12225 +# Processor support
12226 +#
12227 +# CONFIG_6xx is not set
12228 +# CONFIG_PPC_85xx is not set
12229 +# CONFIG_PPC_8xx is not set
12230 +CONFIG_40x=y
12231 +# CONFIG_44x is not set
12232 +# CONFIG_E200 is not set
12233 +CONFIG_4xx=y
12234 +# CONFIG_PPC_MM_SLICES is not set
12235 +CONFIG_NOT_COHERENT_CACHE=y
12236 +CONFIG_PPC32=y
12237 +CONFIG_WORD_SIZE=32
12238 +CONFIG_PPC_MERGE=y
12239 +CONFIG_MMU=y
12240 +CONFIG_GENERIC_CMOS_UPDATE=y
12241 +CONFIG_GENERIC_TIME=y
12242 +CONFIG_GENERIC_TIME_VSYSCALL=y
12243 +CONFIG_GENERIC_CLOCKEVENTS=y
12244 +CONFIG_GENERIC_HARDIRQS=y
12245 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
12246 +CONFIG_IRQ_PER_CPU=y
12247 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
12248 +CONFIG_ARCH_HAS_ILOG2_U32=y
12249 +CONFIG_GENERIC_HWEIGHT=y
12250 +CONFIG_GENERIC_CALIBRATE_DELAY=y
12251 +CONFIG_GENERIC_FIND_NEXT_BIT=y
12252 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
12253 +CONFIG_PPC=y
12254 +CONFIG_EARLY_PRINTK=y
12255 +CONFIG_GENERIC_NVRAM=y
12256 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
12257 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
12258 +CONFIG_PPC_OF=y
12259 +CONFIG_OF=y
12260 +CONFIG_PPC_UDBG_16550=y
12261 +# CONFIG_GENERIC_TBSYNC is not set
12262 +CONFIG_AUDIT_ARCH=y
12263 +CONFIG_GENERIC_BUG=y
12264 +# CONFIG_DEFAULT_UIMAGE is not set
12265 +CONFIG_PPC_DCR_NATIVE=y
12266 +# CONFIG_PPC_DCR_MMIO is not set
12267 +CONFIG_PPC_DCR=y
12268 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
12269 +
12270 +#
12271 +# General setup
12272 +#
12273 +CONFIG_EXPERIMENTAL=y
12274 +CONFIG_BROKEN_ON_SMP=y
12275 +CONFIG_INIT_ENV_ARG_LIMIT=32
12276 +CONFIG_LOCALVERSION=""
12277 +CONFIG_LOCALVERSION_AUTO=y
12278 +CONFIG_SWAP=y
12279 +CONFIG_SYSVIPC=y
12280 +CONFIG_SYSVIPC_SYSCTL=y
12281 +CONFIG_POSIX_MQUEUE=y
12282 +# CONFIG_BSD_PROCESS_ACCT is not set
12283 +# CONFIG_TASKSTATS is not set
12284 +# CONFIG_AUDIT is not set
12285 +# CONFIG_IKCONFIG is not set
12286 +CONFIG_LOG_BUF_SHIFT=14
12287 +# CONFIG_CGROUPS is not set
12288 +CONFIG_GROUP_SCHED=y
12289 +# CONFIG_FAIR_GROUP_SCHED is not set
12290 +# CONFIG_RT_GROUP_SCHED is not set
12291 +CONFIG_USER_SCHED=y
12292 +# CONFIG_CGROUP_SCHED is not set
12293 +CONFIG_SYSFS_DEPRECATED=y
12294 +# CONFIG_RELAY is not set
12295 +# CONFIG_NAMESPACES is not set
12296 +CONFIG_BLK_DEV_INITRD=y
12297 +CONFIG_INITRAMFS_SOURCE=""
12298 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
12299 +CONFIG_SYSCTL=y
12300 +CONFIG_EMBEDDED=y
12301 +CONFIG_SYSCTL_SYSCALL=y
12302 +CONFIG_KALLSYMS=y
12303 +CONFIG_KALLSYMS_ALL=y
12304 +CONFIG_KALLSYMS_EXTRA_PASS=y
12305 +CONFIG_HOTPLUG=y
12306 +CONFIG_PRINTK=y
12307 +CONFIG_BUG=y
12308 +CONFIG_ELF_CORE=y
12309 +CONFIG_COMPAT_BRK=y
12310 +CONFIG_BASE_FULL=y
12311 +CONFIG_FUTEX=y
12312 +CONFIG_ANON_INODES=y
12313 +CONFIG_EPOLL=y
12314 +CONFIG_SIGNALFD=y
12315 +CONFIG_TIMERFD=y
12316 +CONFIG_EVENTFD=y
12317 +CONFIG_SHMEM=y
12318 +CONFIG_VM_EVENT_COUNTERS=y
12319 +CONFIG_SLUB_DEBUG=y
12320 +# CONFIG_SLAB is not set
12321 +CONFIG_SLUB=y
12322 +# CONFIG_SLOB is not set
12323 +# CONFIG_PROFILING is not set
12324 +# CONFIG_MARKERS is not set
12325 +CONFIG_HAVE_OPROFILE=y
12326 +# CONFIG_KPROBES is not set
12327 +CONFIG_HAVE_KPROBES=y
12328 +CONFIG_PROC_PAGE_MONITOR=y
12329 +CONFIG_SLABINFO=y
12330 +CONFIG_RT_MUTEXES=y
12331 +# CONFIG_TINY_SHMEM is not set
12332 +CONFIG_BASE_SMALL=0
12333 +CONFIG_MODULES=y
12334 +CONFIG_MODULE_UNLOAD=y
12335 +# CONFIG_MODULE_FORCE_UNLOAD is not set
12336 +# CONFIG_MODVERSIONS is not set
12337 +# CONFIG_MODULE_SRCVERSION_ALL is not set
12338 +CONFIG_KMOD=y
12339 +CONFIG_BLOCK=y
12340 +CONFIG_LBD=y
12341 +# CONFIG_BLK_DEV_IO_TRACE is not set
12342 +# CONFIG_LSF is not set
12343 +# CONFIG_BLK_DEV_BSG is not set
12344 +
12345 +#
12346 +# IO Schedulers
12347 +#
12348 +CONFIG_IOSCHED_NOOP=y
12349 +CONFIG_IOSCHED_AS=y
12350 +CONFIG_IOSCHED_DEADLINE=y
12351 +CONFIG_IOSCHED_CFQ=y
12352 +CONFIG_DEFAULT_AS=y
12353 +# CONFIG_DEFAULT_DEADLINE is not set
12354 +# CONFIG_DEFAULT_CFQ is not set
12355 +# CONFIG_DEFAULT_NOOP is not set
12356 +CONFIG_DEFAULT_IOSCHED="anticipatory"
12357 +CONFIG_CLASSIC_RCU=y
12358 +# CONFIG_PREEMPT_RCU is not set
12359 +CONFIG_PPC4xx_PCI_EXPRESS=y
12360 +
12361 +#
12362 +# Platform support
12363 +#
12364 +# CONFIG_PPC_MPC512x is not set
12365 +# CONFIG_PPC_MPC5121 is not set
12366 +# CONFIG_PPC_CELL is not set
12367 +# CONFIG_PPC_CELL_NATIVE is not set
12368 +# CONFIG_PQ2ADS is not set
12369 +# CONFIG_EP405 is not set
12370 +# CONFIG_KILAUEA is not set
12371 +CONFIG_MAKALU=y
12372 +# CONFIG_WALNUT is not set
12373 +# CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set
12374 +CONFIG_405EX=y
12375 +# CONFIG_IPIC is not set
12376 +# CONFIG_MPIC is not set
12377 +# CONFIG_MPIC_WEIRD is not set
12378 +# CONFIG_PPC_I8259 is not set
12379 +# CONFIG_PPC_RTAS is not set
12380 +# CONFIG_MMIO_NVRAM is not set
12381 +# CONFIG_PPC_MPC106 is not set
12382 +# CONFIG_PPC_970_NAP is not set
12383 +# CONFIG_PPC_INDIRECT_IO is not set
12384 +# CONFIG_GENERIC_IOMAP is not set
12385 +# CONFIG_CPU_FREQ is not set
12386 +# CONFIG_FSL_ULI1575 is not set
12387 +
12388 +#
12389 +# Kernel options
12390 +#
12391 +# CONFIG_HIGHMEM is not set
12392 +# CONFIG_TICK_ONESHOT is not set
12393 +# CONFIG_NO_HZ is not set
12394 +# CONFIG_HIGH_RES_TIMERS is not set
12395 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
12396 +# CONFIG_HZ_100 is not set
12397 +CONFIG_HZ_250=y
12398 +# CONFIG_HZ_300 is not set
12399 +# CONFIG_HZ_1000 is not set
12400 +CONFIG_HZ=250
12401 +# CONFIG_SCHED_HRTICK is not set
12402 +CONFIG_PREEMPT_NONE=y
12403 +# CONFIG_PREEMPT_VOLUNTARY is not set
12404 +# CONFIG_PREEMPT is not set
12405 +CONFIG_RCU_TRACE=y
12406 +CONFIG_BINFMT_ELF=y
12407 +# CONFIG_BINFMT_MISC is not set
12408 +# CONFIG_MATH_EMULATION is not set
12409 +# CONFIG_IOMMU_HELPER is not set
12410 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
12411 +CONFIG_ARCH_HAS_WALK_MEMORY=y
12412 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
12413 +CONFIG_ARCH_FLATMEM_ENABLE=y
12414 +CONFIG_ARCH_POPULATES_NODE_MAP=y
12415 +CONFIG_SELECT_MEMORY_MODEL=y
12416 +CONFIG_FLATMEM_MANUAL=y
12417 +# CONFIG_DISCONTIGMEM_MANUAL is not set
12418 +# CONFIG_SPARSEMEM_MANUAL is not set
12419 +CONFIG_FLATMEM=y
12420 +CONFIG_FLAT_NODE_MEM_MAP=y
12421 +# CONFIG_SPARSEMEM_STATIC is not set
12422 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
12423 +CONFIG_SPLIT_PTLOCK_CPUS=4
12424 +# CONFIG_RESOURCES_64BIT is not set
12425 +CONFIG_ZONE_DMA_FLAG=1
12426 +CONFIG_BOUNCE=y
12427 +CONFIG_VIRT_TO_BUS=y
12428 +CONFIG_PROC_DEVICETREE=y
12429 +# CONFIG_CMDLINE_BOOL is not set
12430 +# CONFIG_PM is not set
12431 +CONFIG_SECCOMP=y
12432 +CONFIG_ISA_DMA_API=y
12433 +
12434 +#
12435 +# Bus options
12436 +#
12437 +CONFIG_ZONE_DMA=y
12438 +CONFIG_PPC_INDIRECT_PCI=y
12439 +CONFIG_PCI=y
12440 +CONFIG_PCI_DOMAINS=y
12441 +CONFIG_PCI_SYSCALL=y
12442 +# CONFIG_PCIEPORTBUS is not set
12443 +CONFIG_ARCH_SUPPORTS_MSI=y
12444 +# CONFIG_PCI_MSI is not set
12445 +CONFIG_PCI_LEGACY=y
12446 +# CONFIG_PCI_DEBUG is not set
12447 +# CONFIG_PCCARD is not set
12448 +# CONFIG_HOTPLUG_PCI is not set
12449 +
12450 +#
12451 +# Advanced setup
12452 +#
12453 +# CONFIG_ADVANCED_OPTIONS is not set
12454 +
12455 +#
12456 +# Default settings for advanced configuration options are used
12457 +#
12458 +CONFIG_HIGHMEM_START=0xfe000000
12459 +CONFIG_LOWMEM_SIZE=0x30000000
12460 +CONFIG_KERNEL_START=0xc0000000
12461 +CONFIG_TASK_SIZE=0xc0000000
12462 +CONFIG_CONSISTENT_START=0xff100000
12463 +CONFIG_CONSISTENT_SIZE=0x00200000
12464 +CONFIG_BOOT_LOAD=0x00400000
12465 +
12466 +#
12467 +# Networking
12468 +#
12469 +CONFIG_NET=y
12470 +
12471 +#
12472 +# Networking options
12473 +#
12474 +CONFIG_PACKET=y
12475 +# CONFIG_PACKET_MMAP is not set
12476 +CONFIG_UNIX=y
12477 +# CONFIG_NET_KEY is not set
12478 +CONFIG_INET=y
12479 +# CONFIG_IP_MULTICAST is not set
12480 +# CONFIG_IP_ADVANCED_ROUTER is not set
12481 +CONFIG_IP_FIB_HASH=y
12482 +CONFIG_IP_PNP=y
12483 +CONFIG_IP_PNP_DHCP=y
12484 +CONFIG_IP_PNP_BOOTP=y
12485 +# CONFIG_IP_PNP_RARP is not set
12486 +# CONFIG_NET_IPIP is not set
12487 +# CONFIG_NET_IPGRE is not set
12488 +# CONFIG_ARPD is not set
12489 +# CONFIG_SYN_COOKIES is not set
12490 +# CONFIG_INET_AH is not set
12491 +# CONFIG_INET_ESP is not set
12492 +# CONFIG_INET_IPCOMP is not set
12493 +# CONFIG_INET_XFRM_TUNNEL is not set
12494 +# CONFIG_INET_TUNNEL is not set
12495 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
12496 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
12497 +# CONFIG_INET_XFRM_MODE_BEET is not set
12498 +# CONFIG_INET_LRO is not set
12499 +CONFIG_INET_DIAG=y
12500 +CONFIG_INET_TCP_DIAG=y
12501 +# CONFIG_TCP_CONG_ADVANCED is not set
12502 +CONFIG_TCP_CONG_CUBIC=y
12503 +CONFIG_DEFAULT_TCP_CONG="cubic"
12504 +# CONFIG_TCP_MD5SIG is not set
12505 +# CONFIG_IPV6 is not set
12506 +# CONFIG_INET6_XFRM_TUNNEL is not set
12507 +# CONFIG_INET6_TUNNEL is not set
12508 +# CONFIG_NETWORK_SECMARK is not set
12509 +# CONFIG_NETFILTER is not set
12510 +# CONFIG_IP_DCCP is not set
12511 +# CONFIG_IP_SCTP is not set
12512 +# CONFIG_TIPC is not set
12513 +# CONFIG_ATM is not set
12514 +# CONFIG_BRIDGE is not set
12515 +# CONFIG_VLAN_8021Q is not set
12516 +# CONFIG_DECNET is not set
12517 +# CONFIG_LLC2 is not set
12518 +# CONFIG_IPX is not set
12519 +# CONFIG_ATALK is not set
12520 +# CONFIG_X25 is not set
12521 +# CONFIG_LAPB is not set
12522 +# CONFIG_ECONET is not set
12523 +# CONFIG_WAN_ROUTER is not set
12524 +# CONFIG_NET_SCHED is not set
12525 +
12526 +#
12527 +# Network testing
12528 +#
12529 +# CONFIG_NET_PKTGEN is not set
12530 +# CONFIG_HAMRADIO is not set
12531 +# CONFIG_CAN is not set
12532 +# CONFIG_IRDA is not set
12533 +# CONFIG_BT is not set
12534 +# CONFIG_AF_RXRPC is not set
12535 +
12536 +#
12537 +# Wireless
12538 +#
12539 +# CONFIG_CFG80211 is not set
12540 +# CONFIG_WIRELESS_EXT is not set
12541 +# CONFIG_MAC80211 is not set
12542 +# CONFIG_IEEE80211 is not set
12543 +# CONFIG_RFKILL is not set
12544 +# CONFIG_NET_9P is not set
12545 +
12546 +#
12547 +# Device Drivers
12548 +#
12549 +
12550 +#
12551 +# Generic Driver Options
12552 +#
12553 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
12554 +CONFIG_STANDALONE=y
12555 +CONFIG_PREVENT_FIRMWARE_BUILD=y
12556 +CONFIG_FW_LOADER=y
12557 +# CONFIG_DEBUG_DRIVER is not set
12558 +# CONFIG_DEBUG_DEVRES is not set
12559 +# CONFIG_SYS_HYPERVISOR is not set
12560 +CONFIG_CONNECTOR=y
12561 +CONFIG_PROC_EVENTS=y
12562 +CONFIG_MTD=y
12563 +# CONFIG_MTD_DEBUG is not set
12564 +# CONFIG_MTD_CONCAT is not set
12565 +CONFIG_MTD_PARTITIONS=y
12566 +# CONFIG_MTD_REDBOOT_PARTS is not set
12567 +CONFIG_MTD_CMDLINE_PARTS=y
12568 +CONFIG_MTD_OF_PARTS=y
12569 +
12570 +#
12571 +# User Modules And Translation Layers
12572 +#
12573 +CONFIG_MTD_CHAR=y
12574 +CONFIG_MTD_BLKDEVS=m
12575 +CONFIG_MTD_BLOCK=m
12576 +# CONFIG_MTD_BLOCK_RO is not set
12577 +# CONFIG_FTL is not set
12578 +# CONFIG_NFTL is not set
12579 +# CONFIG_INFTL is not set
12580 +# CONFIG_RFD_FTL is not set
12581 +# CONFIG_SSFDC is not set
12582 +# CONFIG_MTD_OOPS is not set
12583 +
12584 +#
12585 +# RAM/ROM/Flash chip drivers
12586 +#
12587 +CONFIG_MTD_CFI=y
12588 +CONFIG_MTD_JEDECPROBE=y
12589 +CONFIG_MTD_GEN_PROBE=y
12590 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
12591 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
12592 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
12593 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
12594 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
12595 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
12596 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
12597 +CONFIG_MTD_CFI_I1=y
12598 +CONFIG_MTD_CFI_I2=y
12599 +# CONFIG_MTD_CFI_I4 is not set
12600 +# CONFIG_MTD_CFI_I8 is not set
12601 +# CONFIG_MTD_CFI_INTELEXT is not set
12602 +CONFIG_MTD_CFI_AMDSTD=y
12603 +# CONFIG_MTD_CFI_STAA is not set
12604 +CONFIG_MTD_CFI_UTIL=y
12605 +# CONFIG_MTD_RAM is not set
12606 +# CONFIG_MTD_ROM is not set
12607 +# CONFIG_MTD_ABSENT is not set
12608 +
12609 +#
12610 +# Mapping drivers for chip access
12611 +#
12612 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
12613 +# CONFIG_MTD_PHYSMAP is not set
12614 +CONFIG_MTD_PHYSMAP_OF=y
12615 +# CONFIG_MTD_INTEL_VR_NOR is not set
12616 +# CONFIG_MTD_PLATRAM is not set
12617 +
12618 +#
12619 +# Self-contained MTD device drivers
12620 +#
12621 +# CONFIG_MTD_PMC551 is not set
12622 +# CONFIG_MTD_SLRAM is not set
12623 +# CONFIG_MTD_PHRAM is not set
12624 +# CONFIG_MTD_MTDRAM is not set
12625 +# CONFIG_MTD_BLOCK2MTD is not set
12626 +
12627 +#
12628 +# Disk-On-Chip Device Drivers
12629 +#
12630 +# CONFIG_MTD_DOC2000 is not set
12631 +# CONFIG_MTD_DOC2001 is not set
12632 +# CONFIG_MTD_DOC2001PLUS is not set
12633 +# CONFIG_MTD_NAND is not set
12634 +# CONFIG_MTD_ONENAND is not set
12635 +
12636 +#
12637 +# UBI - Unsorted block images
12638 +#
12639 +# CONFIG_MTD_UBI is not set
12640 +CONFIG_OF_DEVICE=y
12641 +# CONFIG_PARPORT is not set
12642 +CONFIG_BLK_DEV=y
12643 +# CONFIG_BLK_DEV_FD is not set
12644 +# CONFIG_BLK_CPQ_DA is not set
12645 +# CONFIG_BLK_CPQ_CISS_DA is not set
12646 +# CONFIG_BLK_DEV_DAC960 is not set
12647 +# CONFIG_BLK_DEV_UMEM is not set
12648 +# CONFIG_BLK_DEV_COW_COMMON is not set
12649 +# CONFIG_BLK_DEV_LOOP is not set
12650 +# CONFIG_BLK_DEV_NBD is not set
12651 +# CONFIG_BLK_DEV_SX8 is not set
12652 +CONFIG_BLK_DEV_RAM=y
12653 +CONFIG_BLK_DEV_RAM_COUNT=16
12654 +CONFIG_BLK_DEV_RAM_SIZE=35000
12655 +# CONFIG_BLK_DEV_XIP is not set
12656 +# CONFIG_CDROM_PKTCDVD is not set
12657 +# CONFIG_ATA_OVER_ETH is not set
12658 +# CONFIG_XILINX_SYSACE is not set
12659 +# CONFIG_MISC_DEVICES is not set
12660 +CONFIG_HAVE_IDE=y
12661 +# CONFIG_IDE is not set
12662 +
12663 +#
12664 +# SCSI device support
12665 +#
12666 +# CONFIG_RAID_ATTRS is not set
12667 +# CONFIG_SCSI is not set
12668 +# CONFIG_SCSI_DMA is not set
12669 +# CONFIG_SCSI_NETLINK is not set
12670 +# CONFIG_ATA is not set
12671 +# CONFIG_MD is not set
12672 +# CONFIG_FUSION is not set
12673 +
12674 +#
12675 +# IEEE 1394 (FireWire) support
12676 +#
12677 +# CONFIG_FIREWIRE is not set
12678 +# CONFIG_IEEE1394 is not set
12679 +# CONFIG_I2O is not set
12680 +# CONFIG_MACINTOSH_DRIVERS is not set
12681 +CONFIG_NETDEVICES=y
12682 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
12683 +# CONFIG_DUMMY is not set
12684 +# CONFIG_BONDING is not set
12685 +# CONFIG_MACVLAN is not set
12686 +# CONFIG_EQUALIZER is not set
12687 +# CONFIG_TUN is not set
12688 +# CONFIG_VETH is not set
12689 +# CONFIG_ARCNET is not set
12690 +# CONFIG_PHYLIB is not set
12691 +CONFIG_NET_ETHERNET=y
12692 +# CONFIG_MII is not set
12693 +# CONFIG_HAPPYMEAL is not set
12694 +# CONFIG_SUNGEM is not set
12695 +# CONFIG_CASSINI is not set
12696 +# CONFIG_NET_VENDOR_3COM is not set
12697 +# CONFIG_NET_TULIP is not set
12698 +# CONFIG_HP100 is not set
12699 +CONFIG_IBM_NEW_EMAC=y
12700 +CONFIG_IBM_NEW_EMAC_RXB=256
12701 +CONFIG_IBM_NEW_EMAC_TXB=256
12702 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
12703 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
12704 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
12705 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
12706 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
12707 +CONFIG_IBM_NEW_EMAC_RGMII=y
12708 +# CONFIG_IBM_NEW_EMAC_TAH is not set
12709 +CONFIG_IBM_NEW_EMAC_EMAC4=y
12710 +# CONFIG_NET_PCI is not set
12711 +# CONFIG_B44 is not set
12712 +# CONFIG_NETDEV_1000 is not set
12713 +# CONFIG_NETDEV_10000 is not set
12714 +# CONFIG_TR is not set
12715 +
12716 +#
12717 +# Wireless LAN
12718 +#
12719 +# CONFIG_WLAN_PRE80211 is not set
12720 +# CONFIG_WLAN_80211 is not set
12721 +# CONFIG_WAN is not set
12722 +# CONFIG_FDDI is not set
12723 +# CONFIG_HIPPI is not set
12724 +# CONFIG_PPP is not set
12725 +# CONFIG_SLIP is not set
12726 +# CONFIG_NETCONSOLE is not set
12727 +# CONFIG_NETPOLL is not set
12728 +# CONFIG_NET_POLL_CONTROLLER is not set
12729 +# CONFIG_ISDN is not set
12730 +# CONFIG_PHONE is not set
12731 +
12732 +#
12733 +# Input device support
12734 +#
12735 +# CONFIG_INPUT is not set
12736 +
12737 +#
12738 +# Hardware I/O ports
12739 +#
12740 +# CONFIG_SERIO is not set
12741 +# CONFIG_GAMEPORT is not set
12742 +
12743 +#
12744 +# Character devices
12745 +#
12746 +# CONFIG_VT is not set
12747 +# CONFIG_SERIAL_NONSTANDARD is not set
12748 +# CONFIG_NOZOMI is not set
12749 +
12750 +#
12751 +# Serial drivers
12752 +#
12753 +CONFIG_SERIAL_8250=y
12754 +CONFIG_SERIAL_8250_CONSOLE=y
12755 +CONFIG_SERIAL_8250_PCI=y
12756 +CONFIG_SERIAL_8250_NR_UARTS=4
12757 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
12758 +CONFIG_SERIAL_8250_EXTENDED=y
12759 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
12760 +CONFIG_SERIAL_8250_SHARE_IRQ=y
12761 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
12762 +# CONFIG_SERIAL_8250_RSA is not set
12763 +
12764 +#
12765 +# Non-8250 serial port support
12766 +#
12767 +# CONFIG_SERIAL_UARTLITE is not set
12768 +CONFIG_SERIAL_CORE=y
12769 +CONFIG_SERIAL_CORE_CONSOLE=y
12770 +# CONFIG_SERIAL_JSM is not set
12771 +CONFIG_SERIAL_OF_PLATFORM=y
12772 +CONFIG_UNIX98_PTYS=y
12773 +CONFIG_LEGACY_PTYS=y
12774 +CONFIG_LEGACY_PTY_COUNT=256
12775 +# CONFIG_IPMI_HANDLER is not set
12776 +# CONFIG_HW_RANDOM is not set
12777 +# CONFIG_NVRAM is not set
12778 +# CONFIG_GEN_RTC is not set
12779 +# CONFIG_R3964 is not set
12780 +# CONFIG_APPLICOM is not set
12781 +# CONFIG_RAW_DRIVER is not set
12782 +# CONFIG_TCG_TPM is not set
12783 +CONFIG_DEVPORT=y
12784 +# CONFIG_I2C is not set
12785 +
12786 +#
12787 +# SPI support
12788 +#
12789 +# CONFIG_SPI is not set
12790 +# CONFIG_SPI_MASTER is not set
12791 +# CONFIG_W1 is not set
12792 +# CONFIG_POWER_SUPPLY is not set
12793 +# CONFIG_HWMON is not set
12794 +CONFIG_THERMAL=y
12795 +# CONFIG_WATCHDOG is not set
12796 +
12797 +#
12798 +# Sonics Silicon Backplane
12799 +#
12800 +CONFIG_SSB_POSSIBLE=y
12801 +# CONFIG_SSB is not set
12802 +
12803 +#
12804 +# Multifunction device drivers
12805 +#
12806 +# CONFIG_MFD_SM501 is not set
12807 +
12808 +#
12809 +# Multimedia devices
12810 +#
12811 +# CONFIG_VIDEO_DEV is not set
12812 +# CONFIG_DVB_CORE is not set
12813 +# CONFIG_DAB is not set
12814 +
12815 +#
12816 +# Graphics support
12817 +#
12818 +# CONFIG_AGP is not set
12819 +# CONFIG_DRM is not set
12820 +# CONFIG_VGASTATE is not set
12821 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
12822 +# CONFIG_FB is not set
12823 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
12824 +
12825 +#
12826 +# Display device support
12827 +#
12828 +# CONFIG_DISPLAY_SUPPORT is not set
12829 +
12830 +#
12831 +# Sound
12832 +#
12833 +# CONFIG_SOUND is not set
12834 +# CONFIG_USB_SUPPORT is not set
12835 +# CONFIG_MMC is not set
12836 +# CONFIG_MEMSTICK is not set
12837 +# CONFIG_NEW_LEDS is not set
12838 +# CONFIG_INFINIBAND is not set
12839 +# CONFIG_EDAC is not set
12840 +# CONFIG_RTC_CLASS is not set
12841 +
12842 +#
12843 +# Userspace I/O
12844 +#
12845 +# CONFIG_UIO is not set
12846 +
12847 +#
12848 +# File systems
12849 +#
12850 +CONFIG_EXT2_FS=y
12851 +# CONFIG_EXT2_FS_XATTR is not set
12852 +# CONFIG_EXT2_FS_XIP is not set
12853 +# CONFIG_EXT3_FS is not set
12854 +# CONFIG_EXT4DEV_FS is not set
12855 +# CONFIG_REISERFS_FS is not set
12856 +# CONFIG_JFS_FS is not set
12857 +# CONFIG_FS_POSIX_ACL is not set
12858 +# CONFIG_XFS_FS is not set
12859 +# CONFIG_GFS2_FS is not set
12860 +# CONFIG_OCFS2_FS is not set
12861 +CONFIG_DNOTIFY=y
12862 +CONFIG_INOTIFY=y
12863 +CONFIG_INOTIFY_USER=y
12864 +# CONFIG_QUOTA is not set
12865 +# CONFIG_AUTOFS_FS is not set
12866 +# CONFIG_AUTOFS4_FS is not set
12867 +# CONFIG_FUSE_FS is not set
12868 +
12869 +#
12870 +# CD-ROM/DVD Filesystems
12871 +#
12872 +# CONFIG_ISO9660_FS is not set
12873 +# CONFIG_UDF_FS is not set
12874 +
12875 +#
12876 +# DOS/FAT/NT Filesystems
12877 +#
12878 +# CONFIG_MSDOS_FS is not set
12879 +# CONFIG_VFAT_FS is not set
12880 +# CONFIG_NTFS_FS is not set
12881 +
12882 +#
12883 +# Pseudo filesystems
12884 +#
12885 +CONFIG_PROC_FS=y
12886 +CONFIG_PROC_KCORE=y
12887 +CONFIG_PROC_SYSCTL=y
12888 +CONFIG_SYSFS=y
12889 +CONFIG_TMPFS=y
12890 +# CONFIG_TMPFS_POSIX_ACL is not set
12891 +# CONFIG_HUGETLB_PAGE is not set
12892 +# CONFIG_CONFIGFS_FS is not set
12893 +
12894 +#
12895 +# Miscellaneous filesystems
12896 +#
12897 +# CONFIG_ADFS_FS is not set
12898 +# CONFIG_AFFS_FS is not set
12899 +# CONFIG_HFS_FS is not set
12900 +# CONFIG_HFSPLUS_FS is not set
12901 +# CONFIG_BEFS_FS is not set
12902 +# CONFIG_BFS_FS is not set
12903 +# CONFIG_EFS_FS is not set
12904 +# CONFIG_JFFS2_FS is not set
12905 +CONFIG_CRAMFS=y
12906 +# CONFIG_VXFS_FS is not set
12907 +# CONFIG_MINIX_FS is not set
12908 +# CONFIG_HPFS_FS is not set
12909 +# CONFIG_QNX4FS_FS is not set
12910 +# CONFIG_ROMFS_FS is not set
12911 +# CONFIG_SYSV_FS is not set
12912 +# CONFIG_UFS_FS is not set
12913 +CONFIG_NETWORK_FILESYSTEMS=y
12914 +CONFIG_NFS_FS=y
12915 +CONFIG_NFS_V3=y
12916 +# CONFIG_NFS_V3_ACL is not set
12917 +# CONFIG_NFS_V4 is not set
12918 +# CONFIG_NFS_DIRECTIO is not set
12919 +# CONFIG_NFSD is not set
12920 +CONFIG_ROOT_NFS=y
12921 +CONFIG_LOCKD=y
12922 +CONFIG_LOCKD_V4=y
12923 +CONFIG_NFS_COMMON=y
12924 +CONFIG_SUNRPC=y
12925 +# CONFIG_SUNRPC_BIND34 is not set
12926 +# CONFIG_RPCSEC_GSS_KRB5 is not set
12927 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
12928 +# CONFIG_SMB_FS is not set
12929 +# CONFIG_CIFS is not set
12930 +# CONFIG_NCP_FS is not set
12931 +# CONFIG_CODA_FS is not set
12932 +# CONFIG_AFS_FS is not set
12933 +
12934 +#
12935 +# Partition Types
12936 +#
12937 +# CONFIG_PARTITION_ADVANCED is not set
12938 +CONFIG_MSDOS_PARTITION=y
12939 +# CONFIG_NLS is not set
12940 +# CONFIG_DLM is not set
12941 +
12942 +#
12943 +# Library routines
12944 +#
12945 +CONFIG_BITREVERSE=y
12946 +# CONFIG_CRC_CCITT is not set
12947 +# CONFIG_CRC16 is not set
12948 +# CONFIG_CRC_ITU_T is not set
12949 +CONFIG_CRC32=y
12950 +# CONFIG_CRC7 is not set
12951 +# CONFIG_LIBCRC32C is not set
12952 +CONFIG_ZLIB_INFLATE=y
12953 +CONFIG_PLIST=y
12954 +CONFIG_HAS_IOMEM=y
12955 +CONFIG_HAS_IOPORT=y
12956 +CONFIG_HAS_DMA=y
12957 +
12958 +#
12959 +# Kernel hacking
12960 +#
12961 +# CONFIG_PRINTK_TIME is not set
12962 +CONFIG_ENABLE_WARN_DEPRECATED=y
12963 +CONFIG_ENABLE_MUST_CHECK=y
12964 +CONFIG_MAGIC_SYSRQ=y
12965 +# CONFIG_UNUSED_SYMBOLS is not set
12966 +CONFIG_DEBUG_FS=y
12967 +# CONFIG_HEADERS_CHECK is not set
12968 +CONFIG_DEBUG_KERNEL=y
12969 +# CONFIG_DEBUG_SHIRQ is not set
12970 +CONFIG_DETECT_SOFTLOCKUP=y
12971 +CONFIG_SCHED_DEBUG=y
12972 +# CONFIG_SCHEDSTATS is not set
12973 +# CONFIG_TIMER_STATS is not set
12974 +# CONFIG_SLUB_DEBUG_ON is not set
12975 +# CONFIG_SLUB_STATS is not set
12976 +# CONFIG_DEBUG_RT_MUTEXES is not set
12977 +# CONFIG_RT_MUTEX_TESTER is not set
12978 +# CONFIG_DEBUG_SPINLOCK is not set
12979 +# CONFIG_DEBUG_MUTEXES is not set
12980 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
12981 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
12982 +# CONFIG_DEBUG_KOBJECT is not set
12983 +CONFIG_DEBUG_BUGVERBOSE=y
12984 +# CONFIG_DEBUG_INFO is not set
12985 +# CONFIG_DEBUG_VM is not set
12986 +# CONFIG_DEBUG_LIST is not set
12987 +# CONFIG_DEBUG_SG is not set
12988 +# CONFIG_BOOT_PRINTK_DELAY is not set
12989 +# CONFIG_RCU_TORTURE_TEST is not set
12990 +# CONFIG_BACKTRACE_SELF_TEST is not set
12991 +# CONFIG_FAULT_INJECTION is not set
12992 +# CONFIG_SAMPLES is not set
12993 +# CONFIG_DEBUG_STACKOVERFLOW is not set
12994 +# CONFIG_DEBUG_STACK_USAGE is not set
12995 +# CONFIG_DEBUG_PAGEALLOC is not set
12996 +# CONFIG_DEBUGGER is not set
12997 +# CONFIG_VIRQ_DEBUG is not set
12998 +# CONFIG_BDI_SWITCH is not set
12999 +# CONFIG_PPC_EARLY_DEBUG is not set
13000 +
13001 +#
13002 +# Security options
13003 +#
13004 +# CONFIG_KEYS is not set
13005 +# CONFIG_SECURITY is not set
13006 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
13007 +CONFIG_CRYPTO=y
13008 +CONFIG_CRYPTO_ALGAPI=y
13009 +CONFIG_CRYPTO_BLKCIPHER=y
13010 +# CONFIG_CRYPTO_SEQIV is not set
13011 +CONFIG_CRYPTO_MANAGER=y
13012 +# CONFIG_CRYPTO_HMAC is not set
13013 +# CONFIG_CRYPTO_XCBC is not set
13014 +# CONFIG_CRYPTO_NULL is not set
13015 +# CONFIG_CRYPTO_MD4 is not set
13016 +CONFIG_CRYPTO_MD5=y
13017 +# CONFIG_CRYPTO_SHA1 is not set
13018 +# CONFIG_CRYPTO_SHA256 is not set
13019 +# CONFIG_CRYPTO_SHA512 is not set
13020 +# CONFIG_CRYPTO_WP512 is not set
13021 +# CONFIG_CRYPTO_TGR192 is not set
13022 +# CONFIG_CRYPTO_GF128MUL is not set
13023 +CONFIG_CRYPTO_ECB=y
13024 +CONFIG_CRYPTO_CBC=y
13025 +CONFIG_CRYPTO_PCBC=y
13026 +# CONFIG_CRYPTO_LRW is not set
13027 +# CONFIG_CRYPTO_XTS is not set
13028 +# CONFIG_CRYPTO_CTR is not set
13029 +# CONFIG_CRYPTO_GCM is not set
13030 +# CONFIG_CRYPTO_CCM is not set
13031 +# CONFIG_CRYPTO_CRYPTD is not set
13032 +CONFIG_CRYPTO_DES=y
13033 +# CONFIG_CRYPTO_FCRYPT is not set
13034 +# CONFIG_CRYPTO_BLOWFISH is not set
13035 +# CONFIG_CRYPTO_TWOFISH is not set
13036 +# CONFIG_CRYPTO_SERPENT is not set
13037 +# CONFIG_CRYPTO_AES is not set
13038 +# CONFIG_CRYPTO_CAST5 is not set
13039 +# CONFIG_CRYPTO_CAST6 is not set
13040 +# CONFIG_CRYPTO_TEA is not set
13041 +# CONFIG_CRYPTO_ARC4 is not set
13042 +# CONFIG_CRYPTO_KHAZAD is not set
13043 +# CONFIG_CRYPTO_ANUBIS is not set
13044 +# CONFIG_CRYPTO_SEED is not set
13045 +# CONFIG_CRYPTO_SALSA20 is not set
13046 +# CONFIG_CRYPTO_DEFLATE is not set
13047 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
13048 +# CONFIG_CRYPTO_CRC32C is not set
13049 +# CONFIG_CRYPTO_CAMELLIA is not set
13050 +# CONFIG_CRYPTO_TEST is not set
13051 +# CONFIG_CRYPTO_AUTHENC is not set
13052 +# CONFIG_CRYPTO_LZO is not set
13053 +CONFIG_CRYPTO_HW=y
13054 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
13055 +# CONFIG_PPC_CLOCK is not set
13056 Index: linux-2.6.25.4/arch/powerpc/configs/40x/walnut_defconfig
13057 ===================================================================
13058 --- /dev/null
13059 +++ linux-2.6.25.4/arch/powerpc/configs/40x/walnut_defconfig
13060 @@ -0,0 +1,887 @@
13061 +#
13062 +# Automatically generated make config: don't edit
13063 +# Linux kernel version: 2.6.25-rc2
13064 +# Fri Feb 15 21:54:12 2008
13065 +#
13066 +# CONFIG_PPC64 is not set
13067 +
13068 +#
13069 +# Processor support
13070 +#
13071 +# CONFIG_6xx is not set
13072 +# CONFIG_PPC_85xx is not set
13073 +# CONFIG_PPC_8xx is not set
13074 +CONFIG_40x=y
13075 +# CONFIG_44x is not set
13076 +# CONFIG_E200 is not set
13077 +CONFIG_4xx=y
13078 +# CONFIG_PPC_MM_SLICES is not set
13079 +CONFIG_NOT_COHERENT_CACHE=y
13080 +CONFIG_PPC32=y
13081 +CONFIG_WORD_SIZE=32
13082 +CONFIG_PPC_MERGE=y
13083 +CONFIG_MMU=y
13084 +CONFIG_GENERIC_CMOS_UPDATE=y
13085 +CONFIG_GENERIC_TIME=y
13086 +CONFIG_GENERIC_TIME_VSYSCALL=y
13087 +CONFIG_GENERIC_CLOCKEVENTS=y
13088 +CONFIG_GENERIC_HARDIRQS=y
13089 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
13090 +CONFIG_IRQ_PER_CPU=y
13091 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
13092 +CONFIG_ARCH_HAS_ILOG2_U32=y
13093 +CONFIG_GENERIC_HWEIGHT=y
13094 +CONFIG_GENERIC_CALIBRATE_DELAY=y
13095 +CONFIG_GENERIC_FIND_NEXT_BIT=y
13096 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
13097 +CONFIG_PPC=y
13098 +CONFIG_EARLY_PRINTK=y
13099 +CONFIG_GENERIC_NVRAM=y
13100 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
13101 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
13102 +CONFIG_PPC_OF=y
13103 +CONFIG_OF=y
13104 +CONFIG_PPC_UDBG_16550=y
13105 +# CONFIG_GENERIC_TBSYNC is not set
13106 +CONFIG_AUDIT_ARCH=y
13107 +CONFIG_GENERIC_BUG=y
13108 +# CONFIG_DEFAULT_UIMAGE is not set
13109 +CONFIG_PPC_DCR_NATIVE=y
13110 +# CONFIG_PPC_DCR_MMIO is not set
13111 +CONFIG_PPC_DCR=y
13112 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
13113 +
13114 +#
13115 +# General setup
13116 +#
13117 +CONFIG_EXPERIMENTAL=y
13118 +CONFIG_BROKEN_ON_SMP=y
13119 +CONFIG_INIT_ENV_ARG_LIMIT=32
13120 +CONFIG_LOCALVERSION=""
13121 +CONFIG_LOCALVERSION_AUTO=y
13122 +CONFIG_SWAP=y
13123 +CONFIG_SYSVIPC=y
13124 +CONFIG_SYSVIPC_SYSCTL=y
13125 +CONFIG_POSIX_MQUEUE=y
13126 +# CONFIG_BSD_PROCESS_ACCT is not set
13127 +# CONFIG_TASKSTATS is not set
13128 +# CONFIG_AUDIT is not set
13129 +# CONFIG_IKCONFIG is not set
13130 +CONFIG_LOG_BUF_SHIFT=14
13131 +# CONFIG_CGROUPS is not set
13132 +CONFIG_GROUP_SCHED=y
13133 +CONFIG_FAIR_GROUP_SCHED=y
13134 +# CONFIG_RT_GROUP_SCHED is not set
13135 +CONFIG_USER_SCHED=y
13136 +# CONFIG_CGROUP_SCHED is not set
13137 +CONFIG_SYSFS_DEPRECATED=y
13138 +# CONFIG_RELAY is not set
13139 +# CONFIG_NAMESPACES is not set
13140 +CONFIG_BLK_DEV_INITRD=y
13141 +CONFIG_INITRAMFS_SOURCE=""
13142 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
13143 +CONFIG_SYSCTL=y
13144 +CONFIG_EMBEDDED=y
13145 +CONFIG_SYSCTL_SYSCALL=y
13146 +CONFIG_KALLSYMS=y
13147 +CONFIG_KALLSYMS_ALL=y
13148 +CONFIG_KALLSYMS_EXTRA_PASS=y
13149 +CONFIG_HOTPLUG=y
13150 +CONFIG_PRINTK=y
13151 +CONFIG_BUG=y
13152 +CONFIG_ELF_CORE=y
13153 +CONFIG_COMPAT_BRK=y
13154 +CONFIG_BASE_FULL=y
13155 +CONFIG_FUTEX=y
13156 +CONFIG_ANON_INODES=y
13157 +CONFIG_EPOLL=y
13158 +CONFIG_SIGNALFD=y
13159 +CONFIG_TIMERFD=y
13160 +CONFIG_EVENTFD=y
13161 +CONFIG_SHMEM=y
13162 +CONFIG_VM_EVENT_COUNTERS=y
13163 +CONFIG_SLUB_DEBUG=y
13164 +# CONFIG_SLAB is not set
13165 +CONFIG_SLUB=y
13166 +# CONFIG_SLOB is not set
13167 +# CONFIG_PROFILING is not set
13168 +# CONFIG_MARKERS is not set
13169 +CONFIG_HAVE_OPROFILE=y
13170 +# CONFIG_KPROBES is not set
13171 +CONFIG_HAVE_KPROBES=y
13172 +CONFIG_PROC_PAGE_MONITOR=y
13173 +CONFIG_SLABINFO=y
13174 +CONFIG_RT_MUTEXES=y
13175 +# CONFIG_TINY_SHMEM is not set
13176 +CONFIG_BASE_SMALL=0
13177 +CONFIG_MODULES=y
13178 +CONFIG_MODULE_UNLOAD=y
13179 +# CONFIG_MODULE_FORCE_UNLOAD is not set
13180 +# CONFIG_MODVERSIONS is not set
13181 +# CONFIG_MODULE_SRCVERSION_ALL is not set
13182 +CONFIG_KMOD=y
13183 +CONFIG_BLOCK=y
13184 +CONFIG_LBD=y
13185 +# CONFIG_BLK_DEV_IO_TRACE is not set
13186 +# CONFIG_LSF is not set
13187 +# CONFIG_BLK_DEV_BSG is not set
13188 +
13189 +#
13190 +# IO Schedulers
13191 +#
13192 +CONFIG_IOSCHED_NOOP=y
13193 +CONFIG_IOSCHED_AS=y
13194 +CONFIG_IOSCHED_DEADLINE=y
13195 +CONFIG_IOSCHED_CFQ=y
13196 +CONFIG_DEFAULT_AS=y
13197 +# CONFIG_DEFAULT_DEADLINE is not set
13198 +# CONFIG_DEFAULT_CFQ is not set
13199 +# CONFIG_DEFAULT_NOOP is not set
13200 +CONFIG_DEFAULT_IOSCHED="anticipatory"
13201 +CONFIG_CLASSIC_RCU=y
13202 +# CONFIG_PREEMPT_RCU is not set
13203 +# CONFIG_PPC4xx_PCI_EXPRESS is not set
13204 +
13205 +#
13206 +# Platform support
13207 +#
13208 +# CONFIG_PPC_MPC512x is not set
13209 +# CONFIG_PPC_MPC5121 is not set
13210 +# CONFIG_PPC_CELL is not set
13211 +# CONFIG_PPC_CELL_NATIVE is not set
13212 +# CONFIG_PQ2ADS is not set
13213 +# CONFIG_EP405 is not set
13214 +# CONFIG_KILAUEA is not set
13215 +# CONFIG_MAKALU is not set
13216 +CONFIG_WALNUT=y
13217 +# CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set
13218 +CONFIG_405GP=y
13219 +CONFIG_IBM405_ERR77=y
13220 +CONFIG_IBM405_ERR51=y
13221 +# CONFIG_IPIC is not set
13222 +# CONFIG_MPIC is not set
13223 +# CONFIG_MPIC_WEIRD is not set
13224 +# CONFIG_PPC_I8259 is not set
13225 +# CONFIG_PPC_RTAS is not set
13226 +# CONFIG_MMIO_NVRAM is not set
13227 +# CONFIG_PPC_MPC106 is not set
13228 +# CONFIG_PPC_970_NAP is not set
13229 +# CONFIG_PPC_INDIRECT_IO is not set
13230 +# CONFIG_GENERIC_IOMAP is not set
13231 +# CONFIG_CPU_FREQ is not set
13232 +# CONFIG_FSL_ULI1575 is not set
13233 +CONFIG_OF_RTC=y
13234 +
13235 +#
13236 +# Kernel options
13237 +#
13238 +# CONFIG_HIGHMEM is not set
13239 +# CONFIG_TICK_ONESHOT is not set
13240 +# CONFIG_NO_HZ is not set
13241 +# CONFIG_HIGH_RES_TIMERS is not set
13242 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
13243 +# CONFIG_HZ_100 is not set
13244 +CONFIG_HZ_250=y
13245 +# CONFIG_HZ_300 is not set
13246 +# CONFIG_HZ_1000 is not set
13247 +CONFIG_HZ=250
13248 +# CONFIG_SCHED_HRTICK is not set
13249 +CONFIG_PREEMPT_NONE=y
13250 +# CONFIG_PREEMPT_VOLUNTARY is not set
13251 +# CONFIG_PREEMPT is not set
13252 +CONFIG_RCU_TRACE=y
13253 +CONFIG_BINFMT_ELF=y
13254 +# CONFIG_BINFMT_MISC is not set
13255 +# CONFIG_MATH_EMULATION is not set
13256 +# CONFIG_IOMMU_HELPER is not set
13257 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
13258 +CONFIG_ARCH_HAS_WALK_MEMORY=y
13259 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
13260 +CONFIG_ARCH_FLATMEM_ENABLE=y
13261 +CONFIG_ARCH_POPULATES_NODE_MAP=y
13262 +CONFIG_SELECT_MEMORY_MODEL=y
13263 +CONFIG_FLATMEM_MANUAL=y
13264 +# CONFIG_DISCONTIGMEM_MANUAL is not set
13265 +# CONFIG_SPARSEMEM_MANUAL is not set
13266 +CONFIG_FLATMEM=y
13267 +CONFIG_FLAT_NODE_MEM_MAP=y
13268 +# CONFIG_SPARSEMEM_STATIC is not set
13269 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
13270 +CONFIG_SPLIT_PTLOCK_CPUS=4
13271 +CONFIG_RESOURCES_64BIT=y
13272 +CONFIG_ZONE_DMA_FLAG=1
13273 +CONFIG_BOUNCE=y
13274 +CONFIG_VIRT_TO_BUS=y
13275 +CONFIG_PROC_DEVICETREE=y
13276 +# CONFIG_CMDLINE_BOOL is not set
13277 +# CONFIG_PM is not set
13278 +CONFIG_SECCOMP=y
13279 +CONFIG_ISA_DMA_API=y
13280 +
13281 +#
13282 +# Bus options
13283 +#
13284 +CONFIG_ZONE_DMA=y
13285 +CONFIG_PPC_INDIRECT_PCI=y
13286 +CONFIG_PCI=y
13287 +CONFIG_PCI_DOMAINS=y
13288 +CONFIG_PCI_SYSCALL=y
13289 +# CONFIG_PCIEPORTBUS is not set
13290 +CONFIG_ARCH_SUPPORTS_MSI=y
13291 +# CONFIG_PCI_MSI is not set
13292 +# CONFIG_PCI_LEGACY is not set
13293 +# CONFIG_PCI_DEBUG is not set
13294 +# CONFIG_PCCARD is not set
13295 +# CONFIG_HOTPLUG_PCI is not set
13296 +
13297 +#
13298 +# Advanced setup
13299 +#
13300 +# CONFIG_ADVANCED_OPTIONS is not set
13301 +
13302 +#
13303 +# Default settings for advanced configuration options are used
13304 +#
13305 +CONFIG_HIGHMEM_START=0xfe000000
13306 +CONFIG_LOWMEM_SIZE=0x30000000
13307 +CONFIG_KERNEL_START=0xc0000000
13308 +CONFIG_TASK_SIZE=0xc0000000
13309 +CONFIG_CONSISTENT_START=0xff100000
13310 +CONFIG_CONSISTENT_SIZE=0x00200000
13311 +CONFIG_BOOT_LOAD=0x00400000
13312 +
13313 +#
13314 +# Networking
13315 +#
13316 +CONFIG_NET=y
13317 +
13318 +#
13319 +# Networking options
13320 +#
13321 +CONFIG_PACKET=y
13322 +# CONFIG_PACKET_MMAP is not set
13323 +CONFIG_UNIX=y
13324 +# CONFIG_NET_KEY is not set
13325 +CONFIG_INET=y
13326 +# CONFIG_IP_MULTICAST is not set
13327 +# CONFIG_IP_ADVANCED_ROUTER is not set
13328 +CONFIG_IP_FIB_HASH=y
13329 +CONFIG_IP_PNP=y
13330 +CONFIG_IP_PNP_DHCP=y
13331 +CONFIG_IP_PNP_BOOTP=y
13332 +# CONFIG_IP_PNP_RARP is not set
13333 +# CONFIG_NET_IPIP is not set
13334 +# CONFIG_NET_IPGRE is not set
13335 +# CONFIG_ARPD is not set
13336 +# CONFIG_SYN_COOKIES is not set
13337 +# CONFIG_INET_AH is not set
13338 +# CONFIG_INET_ESP is not set
13339 +# CONFIG_INET_IPCOMP is not set
13340 +# CONFIG_INET_XFRM_TUNNEL is not set
13341 +# CONFIG_INET_TUNNEL is not set
13342 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
13343 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
13344 +# CONFIG_INET_XFRM_MODE_BEET is not set
13345 +# CONFIG_INET_LRO is not set
13346 +CONFIG_INET_DIAG=y
13347 +CONFIG_INET_TCP_DIAG=y
13348 +# CONFIG_TCP_CONG_ADVANCED is not set
13349 +CONFIG_TCP_CONG_CUBIC=y
13350 +CONFIG_DEFAULT_TCP_CONG="cubic"
13351 +# CONFIG_TCP_MD5SIG is not set
13352 +# CONFIG_IPV6 is not set
13353 +# CONFIG_INET6_XFRM_TUNNEL is not set
13354 +# CONFIG_INET6_TUNNEL is not set
13355 +# CONFIG_NETWORK_SECMARK is not set
13356 +# CONFIG_NETFILTER is not set
13357 +# CONFIG_IP_DCCP is not set
13358 +# CONFIG_IP_SCTP is not set
13359 +# CONFIG_TIPC is not set
13360 +# CONFIG_ATM is not set
13361 +# CONFIG_BRIDGE is not set
13362 +# CONFIG_VLAN_8021Q is not set
13363 +# CONFIG_DECNET is not set
13364 +# CONFIG_LLC2 is not set
13365 +# CONFIG_IPX is not set
13366 +# CONFIG_ATALK is not set
13367 +# CONFIG_X25 is not set
13368 +# CONFIG_LAPB is not set
13369 +# CONFIG_ECONET is not set
13370 +# CONFIG_WAN_ROUTER is not set
13371 +# CONFIG_NET_SCHED is not set
13372 +
13373 +#
13374 +# Network testing
13375 +#
13376 +# CONFIG_NET_PKTGEN is not set
13377 +# CONFIG_HAMRADIO is not set
13378 +# CONFIG_CAN is not set
13379 +# CONFIG_IRDA is not set
13380 +# CONFIG_BT is not set
13381 +# CONFIG_AF_RXRPC is not set
13382 +
13383 +#
13384 +# Wireless
13385 +#
13386 +# CONFIG_CFG80211 is not set
13387 +# CONFIG_WIRELESS_EXT is not set
13388 +# CONFIG_MAC80211 is not set
13389 +# CONFIG_IEEE80211 is not set
13390 +# CONFIG_RFKILL is not set
13391 +# CONFIG_NET_9P is not set
13392 +
13393 +#
13394 +# Device Drivers
13395 +#
13396 +
13397 +#
13398 +# Generic Driver Options
13399 +#
13400 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
13401 +CONFIG_STANDALONE=y
13402 +CONFIG_PREVENT_FIRMWARE_BUILD=y
13403 +CONFIG_FW_LOADER=y
13404 +# CONFIG_DEBUG_DRIVER is not set
13405 +# CONFIG_DEBUG_DEVRES is not set
13406 +# CONFIG_SYS_HYPERVISOR is not set
13407 +CONFIG_CONNECTOR=y
13408 +CONFIG_PROC_EVENTS=y
13409 +CONFIG_MTD=y
13410 +# CONFIG_MTD_DEBUG is not set
13411 +# CONFIG_MTD_CONCAT is not set
13412 +CONFIG_MTD_PARTITIONS=y
13413 +# CONFIG_MTD_REDBOOT_PARTS is not set
13414 +CONFIG_MTD_CMDLINE_PARTS=y
13415 +CONFIG_MTD_OF_PARTS=y
13416 +
13417 +#
13418 +# User Modules And Translation Layers
13419 +#
13420 +CONFIG_MTD_CHAR=y
13421 +CONFIG_MTD_BLKDEVS=m
13422 +CONFIG_MTD_BLOCK=m
13423 +# CONFIG_MTD_BLOCK_RO is not set
13424 +# CONFIG_FTL is not set
13425 +# CONFIG_NFTL is not set
13426 +# CONFIG_INFTL is not set
13427 +# CONFIG_RFD_FTL is not set
13428 +# CONFIG_SSFDC is not set
13429 +# CONFIG_MTD_OOPS is not set
13430 +
13431 +#
13432 +# RAM/ROM/Flash chip drivers
13433 +#
13434 +CONFIG_MTD_CFI=y
13435 +CONFIG_MTD_JEDECPROBE=y
13436 +CONFIG_MTD_GEN_PROBE=y
13437 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
13438 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
13439 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
13440 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
13441 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
13442 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
13443 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
13444 +CONFIG_MTD_CFI_I1=y
13445 +CONFIG_MTD_CFI_I2=y
13446 +# CONFIG_MTD_CFI_I4 is not set
13447 +# CONFIG_MTD_CFI_I8 is not set
13448 +# CONFIG_MTD_CFI_INTELEXT is not set
13449 +CONFIG_MTD_CFI_AMDSTD=y
13450 +# CONFIG_MTD_CFI_STAA is not set
13451 +CONFIG_MTD_CFI_UTIL=y
13452 +# CONFIG_MTD_RAM is not set
13453 +# CONFIG_MTD_ROM is not set
13454 +# CONFIG_MTD_ABSENT is not set
13455 +
13456 +#
13457 +# Mapping drivers for chip access
13458 +#
13459 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
13460 +# CONFIG_MTD_PHYSMAP is not set
13461 +CONFIG_MTD_PHYSMAP_OF=y
13462 +# CONFIG_MTD_INTEL_VR_NOR is not set
13463 +# CONFIG_MTD_PLATRAM is not set
13464 +
13465 +#
13466 +# Self-contained MTD device drivers
13467 +#
13468 +# CONFIG_MTD_PMC551 is not set
13469 +# CONFIG_MTD_SLRAM is not set
13470 +# CONFIG_MTD_PHRAM is not set
13471 +# CONFIG_MTD_MTDRAM is not set
13472 +# CONFIG_MTD_BLOCK2MTD is not set
13473 +
13474 +#
13475 +# Disk-On-Chip Device Drivers
13476 +#
13477 +# CONFIG_MTD_DOC2000 is not set
13478 +# CONFIG_MTD_DOC2001 is not set
13479 +# CONFIG_MTD_DOC2001PLUS is not set
13480 +# CONFIG_MTD_NAND is not set
13481 +# CONFIG_MTD_ONENAND is not set
13482 +
13483 +#
13484 +# UBI - Unsorted block images
13485 +#
13486 +# CONFIG_MTD_UBI is not set
13487 +CONFIG_OF_DEVICE=y
13488 +# CONFIG_PARPORT is not set
13489 +CONFIG_BLK_DEV=y
13490 +# CONFIG_BLK_DEV_FD is not set
13491 +# CONFIG_BLK_CPQ_DA is not set
13492 +# CONFIG_BLK_CPQ_CISS_DA is not set
13493 +# CONFIG_BLK_DEV_DAC960 is not set
13494 +# CONFIG_BLK_DEV_UMEM is not set
13495 +# CONFIG_BLK_DEV_COW_COMMON is not set
13496 +# CONFIG_BLK_DEV_LOOP is not set
13497 +# CONFIG_BLK_DEV_NBD is not set
13498 +# CONFIG_BLK_DEV_SX8 is not set
13499 +CONFIG_BLK_DEV_RAM=y
13500 +CONFIG_BLK_DEV_RAM_COUNT=16
13501 +CONFIG_BLK_DEV_RAM_SIZE=35000
13502 +# CONFIG_BLK_DEV_XIP is not set
13503 +# CONFIG_CDROM_PKTCDVD is not set
13504 +# CONFIG_ATA_OVER_ETH is not set
13505 +# CONFIG_XILINX_SYSACE is not set
13506 +CONFIG_MISC_DEVICES=y
13507 +# CONFIG_PHANTOM is not set
13508 +# CONFIG_EEPROM_93CX6 is not set
13509 +# CONFIG_SGI_IOC4 is not set
13510 +# CONFIG_TIFM_CORE is not set
13511 +# CONFIG_ENCLOSURE_SERVICES is not set
13512 +CONFIG_HAVE_IDE=y
13513 +# CONFIG_IDE is not set
13514 +
13515 +#
13516 +# SCSI device support
13517 +#
13518 +# CONFIG_RAID_ATTRS is not set
13519 +# CONFIG_SCSI is not set
13520 +# CONFIG_SCSI_DMA is not set
13521 +# CONFIG_SCSI_NETLINK is not set
13522 +# CONFIG_ATA is not set
13523 +# CONFIG_MD is not set
13524 +# CONFIG_FUSION is not set
13525 +
13526 +#
13527 +# IEEE 1394 (FireWire) support
13528 +#
13529 +# CONFIG_FIREWIRE is not set
13530 +# CONFIG_IEEE1394 is not set
13531 +# CONFIG_I2O is not set
13532 +# CONFIG_MACINTOSH_DRIVERS is not set
13533 +CONFIG_NETDEVICES=y
13534 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
13535 +# CONFIG_DUMMY is not set
13536 +# CONFIG_BONDING is not set
13537 +# CONFIG_MACVLAN is not set
13538 +# CONFIG_EQUALIZER is not set
13539 +# CONFIG_TUN is not set
13540 +# CONFIG_VETH is not set
13541 +# CONFIG_ARCNET is not set
13542 +# CONFIG_PHYLIB is not set
13543 +CONFIG_NET_ETHERNET=y
13544 +# CONFIG_MII is not set
13545 +# CONFIG_HAPPYMEAL is not set
13546 +# CONFIG_SUNGEM is not set
13547 +# CONFIG_CASSINI is not set
13548 +# CONFIG_NET_VENDOR_3COM is not set
13549 +# CONFIG_NET_TULIP is not set
13550 +# CONFIG_HP100 is not set
13551 +CONFIG_IBM_NEW_EMAC=y
13552 +CONFIG_IBM_NEW_EMAC_RXB=128
13553 +CONFIG_IBM_NEW_EMAC_TXB=64
13554 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
13555 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
13556 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
13557 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
13558 +CONFIG_IBM_NEW_EMAC_ZMII=y
13559 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
13560 +# CONFIG_IBM_NEW_EMAC_TAH is not set
13561 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
13562 +# CONFIG_NET_PCI is not set
13563 +# CONFIG_B44 is not set
13564 +CONFIG_NETDEV_1000=y
13565 +# CONFIG_ACENIC is not set
13566 +# CONFIG_DL2K is not set
13567 +# CONFIG_E1000 is not set
13568 +# CONFIG_E1000E is not set
13569 +# CONFIG_E1000E_ENABLED is not set
13570 +# CONFIG_IP1000 is not set
13571 +# CONFIG_IGB is not set
13572 +# CONFIG_NS83820 is not set
13573 +# CONFIG_HAMACHI is not set
13574 +# CONFIG_YELLOWFIN is not set
13575 +# CONFIG_R8169 is not set
13576 +# CONFIG_SIS190 is not set
13577 +# CONFIG_SKGE is not set
13578 +# CONFIG_SKY2 is not set
13579 +# CONFIG_SK98LIN is not set
13580 +# CONFIG_VIA_VELOCITY is not set
13581 +# CONFIG_TIGON3 is not set
13582 +# CONFIG_BNX2 is not set
13583 +# CONFIG_QLA3XXX is not set
13584 +# CONFIG_ATL1 is not set
13585 +CONFIG_NETDEV_10000=y
13586 +# CONFIG_CHELSIO_T1 is not set
13587 +# CONFIG_CHELSIO_T3 is not set
13588 +# CONFIG_IXGBE is not set
13589 +# CONFIG_IXGB is not set
13590 +# CONFIG_S2IO is not set
13591 +# CONFIG_MYRI10GE is not set
13592 +# CONFIG_NETXEN_NIC is not set
13593 +# CONFIG_NIU is not set
13594 +# CONFIG_MLX4_CORE is not set
13595 +# CONFIG_TEHUTI is not set
13596 +# CONFIG_BNX2X is not set
13597 +# CONFIG_TR is not set
13598 +
13599 +#
13600 +# Wireless LAN
13601 +#
13602 +# CONFIG_WLAN_PRE80211 is not set
13603 +# CONFIG_WLAN_80211 is not set
13604 +# CONFIG_WAN is not set
13605 +# CONFIG_FDDI is not set
13606 +# CONFIG_HIPPI is not set
13607 +# CONFIG_PPP is not set
13608 +# CONFIG_SLIP is not set
13609 +# CONFIG_NETCONSOLE is not set
13610 +# CONFIG_NETPOLL is not set
13611 +# CONFIG_NET_POLL_CONTROLLER is not set
13612 +# CONFIG_ISDN is not set
13613 +# CONFIG_PHONE is not set
13614 +
13615 +#
13616 +# Input device support
13617 +#
13618 +# CONFIG_INPUT is not set
13619 +
13620 +#
13621 +# Hardware I/O ports
13622 +#
13623 +# CONFIG_SERIO is not set
13624 +# CONFIG_GAMEPORT is not set
13625 +
13626 +#
13627 +# Character devices
13628 +#
13629 +# CONFIG_VT is not set
13630 +# CONFIG_SERIAL_NONSTANDARD is not set
13631 +# CONFIG_NOZOMI is not set
13632 +
13633 +#
13634 +# Serial drivers
13635 +#
13636 +CONFIG_SERIAL_8250=y
13637 +CONFIG_SERIAL_8250_CONSOLE=y
13638 +CONFIG_SERIAL_8250_PCI=y
13639 +CONFIG_SERIAL_8250_NR_UARTS=4
13640 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
13641 +CONFIG_SERIAL_8250_EXTENDED=y
13642 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
13643 +CONFIG_SERIAL_8250_SHARE_IRQ=y
13644 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
13645 +# CONFIG_SERIAL_8250_RSA is not set
13646 +
13647 +#
13648 +# Non-8250 serial port support
13649 +#
13650 +# CONFIG_SERIAL_UARTLITE is not set
13651 +CONFIG_SERIAL_CORE=y
13652 +CONFIG_SERIAL_CORE_CONSOLE=y
13653 +# CONFIG_SERIAL_JSM is not set
13654 +CONFIG_SERIAL_OF_PLATFORM=y
13655 +CONFIG_UNIX98_PTYS=y
13656 +CONFIG_LEGACY_PTYS=y
13657 +CONFIG_LEGACY_PTY_COUNT=256
13658 +# CONFIG_IPMI_HANDLER is not set
13659 +# CONFIG_HW_RANDOM is not set
13660 +# CONFIG_NVRAM is not set
13661 +# CONFIG_GEN_RTC is not set
13662 +# CONFIG_R3964 is not set
13663 +# CONFIG_APPLICOM is not set
13664 +# CONFIG_RAW_DRIVER is not set
13665 +# CONFIG_TCG_TPM is not set
13666 +CONFIG_DEVPORT=y
13667 +# CONFIG_I2C is not set
13668 +
13669 +#
13670 +# SPI support
13671 +#
13672 +# CONFIG_SPI is not set
13673 +# CONFIG_SPI_MASTER is not set
13674 +# CONFIG_W1 is not set
13675 +# CONFIG_POWER_SUPPLY is not set
13676 +# CONFIG_HWMON is not set
13677 +CONFIG_THERMAL=y
13678 +# CONFIG_WATCHDOG is not set
13679 +
13680 +#
13681 +# Sonics Silicon Backplane
13682 +#
13683 +CONFIG_SSB_POSSIBLE=y
13684 +# CONFIG_SSB is not set
13685 +
13686 +#
13687 +# Multifunction device drivers
13688 +#
13689 +# CONFIG_MFD_SM501 is not set
13690 +
13691 +#
13692 +# Multimedia devices
13693 +#
13694 +# CONFIG_VIDEO_DEV is not set
13695 +# CONFIG_DVB_CORE is not set
13696 +# CONFIG_DAB is not set
13697 +
13698 +#
13699 +# Graphics support
13700 +#
13701 +# CONFIG_AGP is not set
13702 +# CONFIG_DRM is not set
13703 +# CONFIG_VGASTATE is not set
13704 +CONFIG_VIDEO_OUTPUT_CONTROL=m
13705 +# CONFIG_FB is not set
13706 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
13707 +
13708 +#
13709 +# Display device support
13710 +#
13711 +# CONFIG_DISPLAY_SUPPORT is not set
13712 +
13713 +#
13714 +# Sound
13715 +#
13716 +# CONFIG_SOUND is not set
13717 +CONFIG_USB_SUPPORT=y
13718 +CONFIG_USB_ARCH_HAS_HCD=y
13719 +CONFIG_USB_ARCH_HAS_OHCI=y
13720 +CONFIG_USB_ARCH_HAS_EHCI=y
13721 +# CONFIG_USB is not set
13722 +
13723 +#
13724 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
13725 +#
13726 +# CONFIG_USB_GADGET is not set
13727 +# CONFIG_MMC is not set
13728 +# CONFIG_MEMSTICK is not set
13729 +# CONFIG_NEW_LEDS is not set
13730 +# CONFIG_INFINIBAND is not set
13731 +# CONFIG_EDAC is not set
13732 +# CONFIG_RTC_CLASS is not set
13733 +
13734 +#
13735 +# Userspace I/O
13736 +#
13737 +# CONFIG_UIO is not set
13738 +
13739 +#
13740 +# File systems
13741 +#
13742 +CONFIG_EXT2_FS=y
13743 +# CONFIG_EXT2_FS_XATTR is not set
13744 +# CONFIG_EXT2_FS_XIP is not set
13745 +# CONFIG_EXT3_FS is not set
13746 +# CONFIG_EXT4DEV_FS is not set
13747 +# CONFIG_REISERFS_FS is not set
13748 +# CONFIG_JFS_FS is not set
13749 +# CONFIG_FS_POSIX_ACL is not set
13750 +# CONFIG_XFS_FS is not set
13751 +# CONFIG_GFS2_FS is not set
13752 +# CONFIG_OCFS2_FS is not set
13753 +CONFIG_DNOTIFY=y
13754 +CONFIG_INOTIFY=y
13755 +CONFIG_INOTIFY_USER=y
13756 +# CONFIG_QUOTA is not set
13757 +# CONFIG_AUTOFS_FS is not set
13758 +# CONFIG_AUTOFS4_FS is not set
13759 +# CONFIG_FUSE_FS is not set
13760 +
13761 +#
13762 +# CD-ROM/DVD Filesystems
13763 +#
13764 +# CONFIG_ISO9660_FS is not set
13765 +# CONFIG_UDF_FS is not set
13766 +
13767 +#
13768 +# DOS/FAT/NT Filesystems
13769 +#
13770 +# CONFIG_MSDOS_FS is not set
13771 +# CONFIG_VFAT_FS is not set
13772 +# CONFIG_NTFS_FS is not set
13773 +
13774 +#
13775 +# Pseudo filesystems
13776 +#
13777 +CONFIG_PROC_FS=y
13778 +CONFIG_PROC_KCORE=y
13779 +CONFIG_PROC_SYSCTL=y
13780 +CONFIG_SYSFS=y
13781 +CONFIG_TMPFS=y
13782 +# CONFIG_TMPFS_POSIX_ACL is not set
13783 +# CONFIG_HUGETLB_PAGE is not set
13784 +# CONFIG_CONFIGFS_FS is not set
13785 +
13786 +#
13787 +# Miscellaneous filesystems
13788 +#
13789 +# CONFIG_ADFS_FS is not set
13790 +# CONFIG_AFFS_FS is not set
13791 +# CONFIG_HFS_FS is not set
13792 +# CONFIG_HFSPLUS_FS is not set
13793 +# CONFIG_BEFS_FS is not set
13794 +# CONFIG_BFS_FS is not set
13795 +# CONFIG_EFS_FS is not set
13796 +# CONFIG_JFFS2_FS is not set
13797 +CONFIG_CRAMFS=y
13798 +# CONFIG_VXFS_FS is not set
13799 +# CONFIG_MINIX_FS is not set
13800 +# CONFIG_HPFS_FS is not set
13801 +# CONFIG_QNX4FS_FS is not set
13802 +# CONFIG_ROMFS_FS is not set
13803 +# CONFIG_SYSV_FS is not set
13804 +# CONFIG_UFS_FS is not set
13805 +CONFIG_NETWORK_FILESYSTEMS=y
13806 +CONFIG_NFS_FS=y
13807 +CONFIG_NFS_V3=y
13808 +# CONFIG_NFS_V3_ACL is not set
13809 +# CONFIG_NFS_V4 is not set
13810 +# CONFIG_NFS_DIRECTIO is not set
13811 +# CONFIG_NFSD is not set
13812 +CONFIG_ROOT_NFS=y
13813 +CONFIG_LOCKD=y
13814 +CONFIG_LOCKD_V4=y
13815 +CONFIG_NFS_COMMON=y
13816 +CONFIG_SUNRPC=y
13817 +# CONFIG_SUNRPC_BIND34 is not set
13818 +# CONFIG_RPCSEC_GSS_KRB5 is not set
13819 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
13820 +# CONFIG_SMB_FS is not set
13821 +# CONFIG_CIFS is not set
13822 +# CONFIG_NCP_FS is not set
13823 +# CONFIG_CODA_FS is not set
13824 +# CONFIG_AFS_FS is not set
13825 +
13826 +#
13827 +# Partition Types
13828 +#
13829 +# CONFIG_PARTITION_ADVANCED is not set
13830 +CONFIG_MSDOS_PARTITION=y
13831 +# CONFIG_NLS is not set
13832 +# CONFIG_DLM is not set
13833 +
13834 +#
13835 +# Library routines
13836 +#
13837 +CONFIG_BITREVERSE=y
13838 +# CONFIG_CRC_CCITT is not set
13839 +# CONFIG_CRC16 is not set
13840 +# CONFIG_CRC_ITU_T is not set
13841 +CONFIG_CRC32=y
13842 +# CONFIG_CRC7 is not set
13843 +# CONFIG_LIBCRC32C is not set
13844 +CONFIG_ZLIB_INFLATE=y
13845 +CONFIG_PLIST=y
13846 +CONFIG_HAS_IOMEM=y
13847 +CONFIG_HAS_IOPORT=y
13848 +CONFIG_HAS_DMA=y
13849 +
13850 +#
13851 +# Kernel hacking
13852 +#
13853 +# CONFIG_PRINTK_TIME is not set
13854 +CONFIG_ENABLE_WARN_DEPRECATED=y
13855 +CONFIG_ENABLE_MUST_CHECK=y
13856 +CONFIG_MAGIC_SYSRQ=y
13857 +# CONFIG_UNUSED_SYMBOLS is not set
13858 +CONFIG_DEBUG_FS=y
13859 +# CONFIG_HEADERS_CHECK is not set
13860 +CONFIG_DEBUG_KERNEL=y
13861 +# CONFIG_DEBUG_SHIRQ is not set
13862 +CONFIG_DETECT_SOFTLOCKUP=y
13863 +CONFIG_SCHED_DEBUG=y
13864 +# CONFIG_SCHEDSTATS is not set
13865 +# CONFIG_TIMER_STATS is not set
13866 +# CONFIG_SLUB_DEBUG_ON is not set
13867 +# CONFIG_SLUB_STATS is not set
13868 +# CONFIG_DEBUG_RT_MUTEXES is not set
13869 +# CONFIG_RT_MUTEX_TESTER is not set
13870 +# CONFIG_DEBUG_SPINLOCK is not set
13871 +# CONFIG_DEBUG_MUTEXES is not set
13872 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
13873 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
13874 +# CONFIG_DEBUG_KOBJECT is not set
13875 +CONFIG_DEBUG_BUGVERBOSE=y
13876 +# CONFIG_DEBUG_INFO is not set
13877 +# CONFIG_DEBUG_VM is not set
13878 +# CONFIG_DEBUG_LIST is not set
13879 +# CONFIG_DEBUG_SG is not set
13880 +# CONFIG_BOOT_PRINTK_DELAY is not set
13881 +# CONFIG_RCU_TORTURE_TEST is not set
13882 +# CONFIG_BACKTRACE_SELF_TEST is not set
13883 +# CONFIG_FAULT_INJECTION is not set
13884 +# CONFIG_SAMPLES is not set
13885 +# CONFIG_DEBUG_STACKOVERFLOW is not set
13886 +# CONFIG_DEBUG_STACK_USAGE is not set
13887 +# CONFIG_DEBUG_PAGEALLOC is not set
13888 +# CONFIG_DEBUGGER is not set
13889 +# CONFIG_VIRQ_DEBUG is not set
13890 +# CONFIG_BDI_SWITCH is not set
13891 +# CONFIG_PPC_EARLY_DEBUG is not set
13892 +
13893 +#
13894 +# Security options
13895 +#
13896 +# CONFIG_KEYS is not set
13897 +# CONFIG_SECURITY is not set
13898 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
13899 +CONFIG_CRYPTO=y
13900 +CONFIG_CRYPTO_ALGAPI=y
13901 +CONFIG_CRYPTO_BLKCIPHER=y
13902 +# CONFIG_CRYPTO_SEQIV is not set
13903 +CONFIG_CRYPTO_MANAGER=y
13904 +# CONFIG_CRYPTO_HMAC is not set
13905 +# CONFIG_CRYPTO_XCBC is not set
13906 +# CONFIG_CRYPTO_NULL is not set
13907 +# CONFIG_CRYPTO_MD4 is not set
13908 +CONFIG_CRYPTO_MD5=y
13909 +# CONFIG_CRYPTO_SHA1 is not set
13910 +# CONFIG_CRYPTO_SHA256 is not set
13911 +# CONFIG_CRYPTO_SHA512 is not set
13912 +# CONFIG_CRYPTO_WP512 is not set
13913 +# CONFIG_CRYPTO_TGR192 is not set
13914 +# CONFIG_CRYPTO_GF128MUL is not set
13915 +CONFIG_CRYPTO_ECB=y
13916 +CONFIG_CRYPTO_CBC=y
13917 +CONFIG_CRYPTO_PCBC=y
13918 +# CONFIG_CRYPTO_LRW is not set
13919 +# CONFIG_CRYPTO_XTS is not set
13920 +# CONFIG_CRYPTO_CTR is not set
13921 +# CONFIG_CRYPTO_GCM is not set
13922 +# CONFIG_CRYPTO_CCM is not set
13923 +# CONFIG_CRYPTO_CRYPTD is not set
13924 +CONFIG_CRYPTO_DES=y
13925 +# CONFIG_CRYPTO_FCRYPT is not set
13926 +# CONFIG_CRYPTO_BLOWFISH is not set
13927 +# CONFIG_CRYPTO_TWOFISH is not set
13928 +# CONFIG_CRYPTO_SERPENT is not set
13929 +# CONFIG_CRYPTO_AES is not set
13930 +# CONFIG_CRYPTO_CAST5 is not set
13931 +# CONFIG_CRYPTO_CAST6 is not set
13932 +# CONFIG_CRYPTO_TEA is not set
13933 +# CONFIG_CRYPTO_ARC4 is not set
13934 +# CONFIG_CRYPTO_KHAZAD is not set
13935 +# CONFIG_CRYPTO_ANUBIS is not set
13936 +# CONFIG_CRYPTO_SEED is not set
13937 +# CONFIG_CRYPTO_SALSA20 is not set
13938 +# CONFIG_CRYPTO_DEFLATE is not set
13939 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
13940 +# CONFIG_CRYPTO_CRC32C is not set
13941 +# CONFIG_CRYPTO_CAMELLIA is not set
13942 +# CONFIG_CRYPTO_TEST is not set
13943 +# CONFIG_CRYPTO_AUTHENC is not set
13944 +# CONFIG_CRYPTO_LZO is not set
13945 +CONFIG_CRYPTO_HW=y
13946 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
13947 +# CONFIG_PPC_CLOCK is not set
13948 Index: linux-2.6.25.4/arch/powerpc/configs/44x/bamboo_defconfig
13949 ===================================================================
13950 --- /dev/null
13951 +++ linux-2.6.25.4/arch/powerpc/configs/44x/bamboo_defconfig
13952 @@ -0,0 +1,815 @@
13953 +#
13954 +# Automatically generated make config: don't edit
13955 +# Linux kernel version: 2.6.25-rc2
13956 +# Fri Feb 15 21:36:39 2008
13957 +#
13958 +# CONFIG_PPC64 is not set
13959 +
13960 +#
13961 +# Processor support
13962 +#
13963 +# CONFIG_6xx is not set
13964 +# CONFIG_PPC_85xx is not set
13965 +# CONFIG_PPC_8xx is not set
13966 +# CONFIG_40x is not set
13967 +CONFIG_44x=y
13968 +# CONFIG_E200 is not set
13969 +CONFIG_PPC_FPU=y
13970 +CONFIG_4xx=y
13971 +CONFIG_BOOKE=y
13972 +CONFIG_PTE_64BIT=y
13973 +CONFIG_PHYS_64BIT=y
13974 +# CONFIG_PPC_MM_SLICES is not set
13975 +CONFIG_NOT_COHERENT_CACHE=y
13976 +CONFIG_PPC32=y
13977 +CONFIG_WORD_SIZE=32
13978 +CONFIG_PPC_MERGE=y
13979 +CONFIG_MMU=y
13980 +CONFIG_GENERIC_CMOS_UPDATE=y
13981 +CONFIG_GENERIC_TIME=y
13982 +CONFIG_GENERIC_TIME_VSYSCALL=y
13983 +CONFIG_GENERIC_CLOCKEVENTS=y
13984 +CONFIG_GENERIC_HARDIRQS=y
13985 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
13986 +CONFIG_IRQ_PER_CPU=y
13987 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
13988 +CONFIG_ARCH_HAS_ILOG2_U32=y
13989 +CONFIG_GENERIC_HWEIGHT=y
13990 +CONFIG_GENERIC_CALIBRATE_DELAY=y
13991 +CONFIG_GENERIC_FIND_NEXT_BIT=y
13992 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
13993 +CONFIG_PPC=y
13994 +CONFIG_EARLY_PRINTK=y
13995 +CONFIG_GENERIC_NVRAM=y
13996 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
13997 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
13998 +CONFIG_PPC_OF=y
13999 +CONFIG_OF=y
14000 +CONFIG_PPC_UDBG_16550=y
14001 +# CONFIG_GENERIC_TBSYNC is not set
14002 +CONFIG_AUDIT_ARCH=y
14003 +CONFIG_GENERIC_BUG=y
14004 +# CONFIG_DEFAULT_UIMAGE is not set
14005 +CONFIG_PPC_DCR_NATIVE=y
14006 +# CONFIG_PPC_DCR_MMIO is not set
14007 +CONFIG_PPC_DCR=y
14008 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
14009 +
14010 +#
14011 +# General setup
14012 +#
14013 +CONFIG_EXPERIMENTAL=y
14014 +CONFIG_BROKEN_ON_SMP=y
14015 +CONFIG_INIT_ENV_ARG_LIMIT=32
14016 +CONFIG_LOCALVERSION=""
14017 +CONFIG_LOCALVERSION_AUTO=y
14018 +CONFIG_SWAP=y
14019 +CONFIG_SYSVIPC=y
14020 +CONFIG_SYSVIPC_SYSCTL=y
14021 +CONFIG_POSIX_MQUEUE=y
14022 +# CONFIG_BSD_PROCESS_ACCT is not set
14023 +# CONFIG_TASKSTATS is not set
14024 +# CONFIG_AUDIT is not set
14025 +# CONFIG_IKCONFIG is not set
14026 +CONFIG_LOG_BUF_SHIFT=14
14027 +# CONFIG_CGROUPS is not set
14028 +CONFIG_GROUP_SCHED=y
14029 +CONFIG_FAIR_GROUP_SCHED=y
14030 +# CONFIG_RT_GROUP_SCHED is not set
14031 +CONFIG_USER_SCHED=y
14032 +# CONFIG_CGROUP_SCHED is not set
14033 +CONFIG_SYSFS_DEPRECATED=y
14034 +# CONFIG_RELAY is not set
14035 +# CONFIG_NAMESPACES is not set
14036 +CONFIG_BLK_DEV_INITRD=y
14037 +CONFIG_INITRAMFS_SOURCE=""
14038 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
14039 +CONFIG_SYSCTL=y
14040 +CONFIG_EMBEDDED=y
14041 +CONFIG_SYSCTL_SYSCALL=y
14042 +CONFIG_KALLSYMS=y
14043 +# CONFIG_KALLSYMS_ALL is not set
14044 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
14045 +CONFIG_HOTPLUG=y
14046 +CONFIG_PRINTK=y
14047 +CONFIG_BUG=y
14048 +CONFIG_ELF_CORE=y
14049 +CONFIG_COMPAT_BRK=y
14050 +CONFIG_BASE_FULL=y
14051 +CONFIG_FUTEX=y
14052 +CONFIG_ANON_INODES=y
14053 +CONFIG_EPOLL=y
14054 +CONFIG_SIGNALFD=y
14055 +CONFIG_TIMERFD=y
14056 +CONFIG_EVENTFD=y
14057 +CONFIG_SHMEM=y
14058 +CONFIG_VM_EVENT_COUNTERS=y
14059 +CONFIG_SLUB_DEBUG=y
14060 +# CONFIG_SLAB is not set
14061 +CONFIG_SLUB=y
14062 +# CONFIG_SLOB is not set
14063 +# CONFIG_PROFILING is not set
14064 +# CONFIG_MARKERS is not set
14065 +CONFIG_HAVE_OPROFILE=y
14066 +# CONFIG_KPROBES is not set
14067 +CONFIG_HAVE_KPROBES=y
14068 +CONFIG_PROC_PAGE_MONITOR=y
14069 +CONFIG_SLABINFO=y
14070 +CONFIG_RT_MUTEXES=y
14071 +# CONFIG_TINY_SHMEM is not set
14072 +CONFIG_BASE_SMALL=0
14073 +CONFIG_MODULES=y
14074 +CONFIG_MODULE_UNLOAD=y
14075 +# CONFIG_MODULE_FORCE_UNLOAD is not set
14076 +# CONFIG_MODVERSIONS is not set
14077 +# CONFIG_MODULE_SRCVERSION_ALL is not set
14078 +CONFIG_KMOD=y
14079 +CONFIG_BLOCK=y
14080 +CONFIG_LBD=y
14081 +# CONFIG_BLK_DEV_IO_TRACE is not set
14082 +# CONFIG_LSF is not set
14083 +# CONFIG_BLK_DEV_BSG is not set
14084 +
14085 +#
14086 +# IO Schedulers
14087 +#
14088 +CONFIG_IOSCHED_NOOP=y
14089 +CONFIG_IOSCHED_AS=y
14090 +CONFIG_IOSCHED_DEADLINE=y
14091 +CONFIG_IOSCHED_CFQ=y
14092 +CONFIG_DEFAULT_AS=y
14093 +# CONFIG_DEFAULT_DEADLINE is not set
14094 +# CONFIG_DEFAULT_CFQ is not set
14095 +# CONFIG_DEFAULT_NOOP is not set
14096 +CONFIG_DEFAULT_IOSCHED="anticipatory"
14097 +CONFIG_CLASSIC_RCU=y
14098 +# CONFIG_PREEMPT_RCU is not set
14099 +# CONFIG_PPC4xx_PCI_EXPRESS is not set
14100 +
14101 +#
14102 +# Platform support
14103 +#
14104 +# CONFIG_PPC_MPC512x is not set
14105 +# CONFIG_PPC_MPC5121 is not set
14106 +# CONFIG_PPC_CELL is not set
14107 +# CONFIG_PPC_CELL_NATIVE is not set
14108 +# CONFIG_PQ2ADS is not set
14109 +CONFIG_BAMBOO=y
14110 +# CONFIG_EBONY is not set
14111 +# CONFIG_SEQUOIA is not set
14112 +# CONFIG_TAISHAN is not set
14113 +# CONFIG_KATMAI is not set
14114 +# CONFIG_RAINIER is not set
14115 +# CONFIG_WARP is not set
14116 +CONFIG_440EP=y
14117 +CONFIG_IBM440EP_ERR42=y
14118 +# CONFIG_IPIC is not set
14119 +# CONFIG_MPIC is not set
14120 +# CONFIG_MPIC_WEIRD is not set
14121 +# CONFIG_PPC_I8259 is not set
14122 +# CONFIG_PPC_RTAS is not set
14123 +# CONFIG_MMIO_NVRAM is not set
14124 +# CONFIG_PPC_MPC106 is not set
14125 +# CONFIG_PPC_970_NAP is not set
14126 +# CONFIG_PPC_INDIRECT_IO is not set
14127 +# CONFIG_GENERIC_IOMAP is not set
14128 +# CONFIG_CPU_FREQ is not set
14129 +# CONFIG_FSL_ULI1575 is not set
14130 +
14131 +#
14132 +# Kernel options
14133 +#
14134 +# CONFIG_HIGHMEM is not set
14135 +# CONFIG_TICK_ONESHOT is not set
14136 +# CONFIG_NO_HZ is not set
14137 +# CONFIG_HIGH_RES_TIMERS is not set
14138 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
14139 +# CONFIG_HZ_100 is not set
14140 +CONFIG_HZ_250=y
14141 +# CONFIG_HZ_300 is not set
14142 +# CONFIG_HZ_1000 is not set
14143 +CONFIG_HZ=250
14144 +# CONFIG_SCHED_HRTICK is not set
14145 +CONFIG_PREEMPT_NONE=y
14146 +# CONFIG_PREEMPT_VOLUNTARY is not set
14147 +# CONFIG_PREEMPT is not set
14148 +CONFIG_RCU_TRACE=y
14149 +CONFIG_BINFMT_ELF=y
14150 +# CONFIG_BINFMT_MISC is not set
14151 +# CONFIG_MATH_EMULATION is not set
14152 +# CONFIG_IOMMU_HELPER is not set
14153 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
14154 +CONFIG_ARCH_HAS_WALK_MEMORY=y
14155 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
14156 +CONFIG_ARCH_FLATMEM_ENABLE=y
14157 +CONFIG_ARCH_POPULATES_NODE_MAP=y
14158 +CONFIG_SELECT_MEMORY_MODEL=y
14159 +CONFIG_FLATMEM_MANUAL=y
14160 +# CONFIG_DISCONTIGMEM_MANUAL is not set
14161 +# CONFIG_SPARSEMEM_MANUAL is not set
14162 +CONFIG_FLATMEM=y
14163 +CONFIG_FLAT_NODE_MEM_MAP=y
14164 +# CONFIG_SPARSEMEM_STATIC is not set
14165 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
14166 +CONFIG_SPLIT_PTLOCK_CPUS=4
14167 +CONFIG_RESOURCES_64BIT=y
14168 +CONFIG_ZONE_DMA_FLAG=1
14169 +CONFIG_BOUNCE=y
14170 +CONFIG_VIRT_TO_BUS=y
14171 +CONFIG_PROC_DEVICETREE=y
14172 +CONFIG_CMDLINE_BOOL=y
14173 +CONFIG_CMDLINE=""
14174 +CONFIG_SECCOMP=y
14175 +CONFIG_ISA_DMA_API=y
14176 +
14177 +#
14178 +# Bus options
14179 +#
14180 +CONFIG_ZONE_DMA=y
14181 +CONFIG_PPC_INDIRECT_PCI=y
14182 +CONFIG_PCI=y
14183 +CONFIG_PCI_DOMAINS=y
14184 +CONFIG_PCI_SYSCALL=y
14185 +# CONFIG_PCIEPORTBUS is not set
14186 +CONFIG_ARCH_SUPPORTS_MSI=y
14187 +# CONFIG_PCI_MSI is not set
14188 +CONFIG_PCI_LEGACY=y
14189 +# CONFIG_PCI_DEBUG is not set
14190 +# CONFIG_PCCARD is not set
14191 +# CONFIG_HOTPLUG_PCI is not set
14192 +
14193 +#
14194 +# Advanced setup
14195 +#
14196 +# CONFIG_ADVANCED_OPTIONS is not set
14197 +
14198 +#
14199 +# Default settings for advanced configuration options are used
14200 +#
14201 +CONFIG_HIGHMEM_START=0xfe000000
14202 +CONFIG_LOWMEM_SIZE=0x30000000
14203 +CONFIG_KERNEL_START=0xc0000000
14204 +CONFIG_TASK_SIZE=0xc0000000
14205 +CONFIG_CONSISTENT_START=0xff100000
14206 +CONFIG_CONSISTENT_SIZE=0x00200000
14207 +CONFIG_BOOT_LOAD=0x01000000
14208 +
14209 +#
14210 +# Networking
14211 +#
14212 +CONFIG_NET=y
14213 +
14214 +#
14215 +# Networking options
14216 +#
14217 +CONFIG_PACKET=y
14218 +# CONFIG_PACKET_MMAP is not set
14219 +CONFIG_UNIX=y
14220 +# CONFIG_NET_KEY is not set
14221 +CONFIG_INET=y
14222 +# CONFIG_IP_MULTICAST is not set
14223 +# CONFIG_IP_ADVANCED_ROUTER is not set
14224 +CONFIG_IP_FIB_HASH=y
14225 +CONFIG_IP_PNP=y
14226 +CONFIG_IP_PNP_DHCP=y
14227 +CONFIG_IP_PNP_BOOTP=y
14228 +# CONFIG_IP_PNP_RARP is not set
14229 +# CONFIG_NET_IPIP is not set
14230 +# CONFIG_NET_IPGRE is not set
14231 +# CONFIG_ARPD is not set
14232 +# CONFIG_SYN_COOKIES is not set
14233 +# CONFIG_INET_AH is not set
14234 +# CONFIG_INET_ESP is not set
14235 +# CONFIG_INET_IPCOMP is not set
14236 +# CONFIG_INET_XFRM_TUNNEL is not set
14237 +# CONFIG_INET_TUNNEL is not set
14238 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
14239 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
14240 +# CONFIG_INET_XFRM_MODE_BEET is not set
14241 +# CONFIG_INET_LRO is not set
14242 +CONFIG_INET_DIAG=y
14243 +CONFIG_INET_TCP_DIAG=y
14244 +# CONFIG_TCP_CONG_ADVANCED is not set
14245 +CONFIG_TCP_CONG_CUBIC=y
14246 +CONFIG_DEFAULT_TCP_CONG="cubic"
14247 +# CONFIG_TCP_MD5SIG is not set
14248 +# CONFIG_IPV6 is not set
14249 +# CONFIG_INET6_XFRM_TUNNEL is not set
14250 +# CONFIG_INET6_TUNNEL is not set
14251 +# CONFIG_NETWORK_SECMARK is not set
14252 +# CONFIG_NETFILTER is not set
14253 +# CONFIG_IP_DCCP is not set
14254 +# CONFIG_IP_SCTP is not set
14255 +# CONFIG_TIPC is not set
14256 +# CONFIG_ATM is not set
14257 +# CONFIG_BRIDGE is not set
14258 +# CONFIG_VLAN_8021Q is not set
14259 +# CONFIG_DECNET is not set
14260 +# CONFIG_LLC2 is not set
14261 +# CONFIG_IPX is not set
14262 +# CONFIG_ATALK is not set
14263 +# CONFIG_X25 is not set
14264 +# CONFIG_LAPB is not set
14265 +# CONFIG_ECONET is not set
14266 +# CONFIG_WAN_ROUTER is not set
14267 +# CONFIG_NET_SCHED is not set
14268 +
14269 +#
14270 +# Network testing
14271 +#
14272 +# CONFIG_NET_PKTGEN is not set
14273 +# CONFIG_HAMRADIO is not set
14274 +# CONFIG_CAN is not set
14275 +# CONFIG_IRDA is not set
14276 +# CONFIG_BT is not set
14277 +# CONFIG_AF_RXRPC is not set
14278 +
14279 +#
14280 +# Wireless
14281 +#
14282 +# CONFIG_CFG80211 is not set
14283 +# CONFIG_WIRELESS_EXT is not set
14284 +# CONFIG_MAC80211 is not set
14285 +# CONFIG_IEEE80211 is not set
14286 +# CONFIG_RFKILL is not set
14287 +# CONFIG_NET_9P is not set
14288 +
14289 +#
14290 +# Device Drivers
14291 +#
14292 +
14293 +#
14294 +# Generic Driver Options
14295 +#
14296 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
14297 +CONFIG_STANDALONE=y
14298 +CONFIG_PREVENT_FIRMWARE_BUILD=y
14299 +CONFIG_FW_LOADER=y
14300 +# CONFIG_DEBUG_DRIVER is not set
14301 +# CONFIG_DEBUG_DEVRES is not set
14302 +# CONFIG_SYS_HYPERVISOR is not set
14303 +CONFIG_CONNECTOR=y
14304 +CONFIG_PROC_EVENTS=y
14305 +# CONFIG_MTD is not set
14306 +CONFIG_OF_DEVICE=y
14307 +# CONFIG_PARPORT is not set
14308 +CONFIG_BLK_DEV=y
14309 +# CONFIG_BLK_DEV_FD is not set
14310 +# CONFIG_BLK_CPQ_DA is not set
14311 +# CONFIG_BLK_CPQ_CISS_DA is not set
14312 +# CONFIG_BLK_DEV_DAC960 is not set
14313 +# CONFIG_BLK_DEV_UMEM is not set
14314 +# CONFIG_BLK_DEV_COW_COMMON is not set
14315 +# CONFIG_BLK_DEV_LOOP is not set
14316 +# CONFIG_BLK_DEV_NBD is not set
14317 +# CONFIG_BLK_DEV_SX8 is not set
14318 +CONFIG_BLK_DEV_RAM=y
14319 +CONFIG_BLK_DEV_RAM_COUNT=16
14320 +CONFIG_BLK_DEV_RAM_SIZE=35000
14321 +# CONFIG_BLK_DEV_XIP is not set
14322 +# CONFIG_CDROM_PKTCDVD is not set
14323 +# CONFIG_ATA_OVER_ETH is not set
14324 +# CONFIG_XILINX_SYSACE is not set
14325 +CONFIG_MISC_DEVICES=y
14326 +# CONFIG_PHANTOM is not set
14327 +# CONFIG_EEPROM_93CX6 is not set
14328 +# CONFIG_SGI_IOC4 is not set
14329 +# CONFIG_TIFM_CORE is not set
14330 +# CONFIG_ENCLOSURE_SERVICES is not set
14331 +CONFIG_HAVE_IDE=y
14332 +# CONFIG_IDE is not set
14333 +
14334 +#
14335 +# SCSI device support
14336 +#
14337 +# CONFIG_RAID_ATTRS is not set
14338 +# CONFIG_SCSI is not set
14339 +# CONFIG_SCSI_DMA is not set
14340 +# CONFIG_SCSI_NETLINK is not set
14341 +# CONFIG_ATA is not set
14342 +# CONFIG_MD is not set
14343 +# CONFIG_FUSION is not set
14344 +
14345 +#
14346 +# IEEE 1394 (FireWire) support
14347 +#
14348 +# CONFIG_FIREWIRE is not set
14349 +# CONFIG_IEEE1394 is not set
14350 +# CONFIG_I2O is not set
14351 +# CONFIG_MACINTOSH_DRIVERS is not set
14352 +CONFIG_NETDEVICES=y
14353 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
14354 +# CONFIG_DUMMY is not set
14355 +# CONFIG_BONDING is not set
14356 +# CONFIG_MACVLAN is not set
14357 +# CONFIG_EQUALIZER is not set
14358 +# CONFIG_TUN is not set
14359 +# CONFIG_VETH is not set
14360 +# CONFIG_ARCNET is not set
14361 +# CONFIG_PHYLIB is not set
14362 +CONFIG_NET_ETHERNET=y
14363 +# CONFIG_MII is not set
14364 +# CONFIG_HAPPYMEAL is not set
14365 +# CONFIG_SUNGEM is not set
14366 +# CONFIG_CASSINI is not set
14367 +# CONFIG_NET_VENDOR_3COM is not set
14368 +# CONFIG_NET_TULIP is not set
14369 +# CONFIG_HP100 is not set
14370 +CONFIG_IBM_NEW_EMAC=y
14371 +CONFIG_IBM_NEW_EMAC_RXB=128
14372 +CONFIG_IBM_NEW_EMAC_TXB=64
14373 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
14374 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
14375 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
14376 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
14377 +CONFIG_IBM_NEW_EMAC_ZMII=y
14378 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
14379 +# CONFIG_IBM_NEW_EMAC_TAH is not set
14380 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
14381 +# CONFIG_NET_PCI is not set
14382 +# CONFIG_B44 is not set
14383 +CONFIG_NETDEV_1000=y
14384 +# CONFIG_ACENIC is not set
14385 +# CONFIG_DL2K is not set
14386 +# CONFIG_E1000 is not set
14387 +# CONFIG_E1000E is not set
14388 +# CONFIG_E1000E_ENABLED is not set
14389 +# CONFIG_IP1000 is not set
14390 +# CONFIG_IGB is not set
14391 +# CONFIG_NS83820 is not set
14392 +# CONFIG_HAMACHI is not set
14393 +# CONFIG_YELLOWFIN is not set
14394 +# CONFIG_R8169 is not set
14395 +# CONFIG_SIS190 is not set
14396 +# CONFIG_SKGE is not set
14397 +# CONFIG_SKY2 is not set
14398 +# CONFIG_SK98LIN is not set
14399 +# CONFIG_VIA_VELOCITY is not set
14400 +# CONFIG_TIGON3 is not set
14401 +# CONFIG_BNX2 is not set
14402 +# CONFIG_QLA3XXX is not set
14403 +# CONFIG_ATL1 is not set
14404 +CONFIG_NETDEV_10000=y
14405 +# CONFIG_CHELSIO_T1 is not set
14406 +# CONFIG_CHELSIO_T3 is not set
14407 +# CONFIG_IXGBE is not set
14408 +# CONFIG_IXGB is not set
14409 +# CONFIG_S2IO is not set
14410 +# CONFIG_MYRI10GE is not set
14411 +# CONFIG_NETXEN_NIC is not set
14412 +# CONFIG_NIU is not set
14413 +# CONFIG_MLX4_CORE is not set
14414 +# CONFIG_TEHUTI is not set
14415 +# CONFIG_BNX2X is not set
14416 +# CONFIG_TR is not set
14417 +
14418 +#
14419 +# Wireless LAN
14420 +#
14421 +# CONFIG_WLAN_PRE80211 is not set
14422 +# CONFIG_WLAN_80211 is not set
14423 +# CONFIG_WAN is not set
14424 +# CONFIG_FDDI is not set
14425 +# CONFIG_HIPPI is not set
14426 +# CONFIG_PPP is not set
14427 +# CONFIG_SLIP is not set
14428 +# CONFIG_NETCONSOLE is not set
14429 +# CONFIG_NETPOLL is not set
14430 +# CONFIG_NET_POLL_CONTROLLER is not set
14431 +# CONFIG_ISDN is not set
14432 +# CONFIG_PHONE is not set
14433 +
14434 +#
14435 +# Input device support
14436 +#
14437 +# CONFIG_INPUT is not set
14438 +
14439 +#
14440 +# Hardware I/O ports
14441 +#
14442 +# CONFIG_SERIO is not set
14443 +# CONFIG_GAMEPORT is not set
14444 +
14445 +#
14446 +# Character devices
14447 +#
14448 +# CONFIG_VT is not set
14449 +# CONFIG_SERIAL_NONSTANDARD is not set
14450 +# CONFIG_NOZOMI is not set
14451 +
14452 +#
14453 +# Serial drivers
14454 +#
14455 +CONFIG_SERIAL_8250=y
14456 +CONFIG_SERIAL_8250_CONSOLE=y
14457 +# CONFIG_SERIAL_8250_PCI is not set
14458 +CONFIG_SERIAL_8250_NR_UARTS=4
14459 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
14460 +CONFIG_SERIAL_8250_EXTENDED=y
14461 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
14462 +CONFIG_SERIAL_8250_SHARE_IRQ=y
14463 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
14464 +# CONFIG_SERIAL_8250_RSA is not set
14465 +
14466 +#
14467 +# Non-8250 serial port support
14468 +#
14469 +# CONFIG_SERIAL_UARTLITE is not set
14470 +CONFIG_SERIAL_CORE=y
14471 +CONFIG_SERIAL_CORE_CONSOLE=y
14472 +# CONFIG_SERIAL_JSM is not set
14473 +CONFIG_SERIAL_OF_PLATFORM=y
14474 +CONFIG_UNIX98_PTYS=y
14475 +CONFIG_LEGACY_PTYS=y
14476 +CONFIG_LEGACY_PTY_COUNT=256
14477 +# CONFIG_IPMI_HANDLER is not set
14478 +# CONFIG_HW_RANDOM is not set
14479 +# CONFIG_NVRAM is not set
14480 +# CONFIG_GEN_RTC is not set
14481 +# CONFIG_R3964 is not set
14482 +# CONFIG_APPLICOM is not set
14483 +# CONFIG_RAW_DRIVER is not set
14484 +# CONFIG_TCG_TPM is not set
14485 +CONFIG_DEVPORT=y
14486 +# CONFIG_I2C is not set
14487 +
14488 +#
14489 +# SPI support
14490 +#
14491 +# CONFIG_SPI is not set
14492 +# CONFIG_SPI_MASTER is not set
14493 +# CONFIG_W1 is not set
14494 +# CONFIG_POWER_SUPPLY is not set
14495 +# CONFIG_HWMON is not set
14496 +CONFIG_THERMAL=y
14497 +# CONFIG_WATCHDOG is not set
14498 +
14499 +#
14500 +# Sonics Silicon Backplane
14501 +#
14502 +CONFIG_SSB_POSSIBLE=y
14503 +# CONFIG_SSB is not set
14504 +
14505 +#
14506 +# Multifunction device drivers
14507 +#
14508 +# CONFIG_MFD_SM501 is not set
14509 +
14510 +#
14511 +# Multimedia devices
14512 +#
14513 +# CONFIG_VIDEO_DEV is not set
14514 +# CONFIG_DVB_CORE is not set
14515 +CONFIG_DAB=y
14516 +
14517 +#
14518 +# Graphics support
14519 +#
14520 +# CONFIG_AGP is not set
14521 +# CONFIG_DRM is not set
14522 +# CONFIG_VGASTATE is not set
14523 +CONFIG_VIDEO_OUTPUT_CONTROL=m
14524 +# CONFIG_FB is not set
14525 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
14526 +
14527 +#
14528 +# Display device support
14529 +#
14530 +# CONFIG_DISPLAY_SUPPORT is not set
14531 +
14532 +#
14533 +# Sound
14534 +#
14535 +# CONFIG_SOUND is not set
14536 +CONFIG_USB_SUPPORT=y
14537 +CONFIG_USB_ARCH_HAS_HCD=y
14538 +CONFIG_USB_ARCH_HAS_OHCI=y
14539 +CONFIG_USB_ARCH_HAS_EHCI=y
14540 +# CONFIG_USB is not set
14541 +
14542 +#
14543 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
14544 +#
14545 +# CONFIG_USB_GADGET is not set
14546 +# CONFIG_MMC is not set
14547 +# CONFIG_MEMSTICK is not set
14548 +# CONFIG_NEW_LEDS is not set
14549 +# CONFIG_INFINIBAND is not set
14550 +# CONFIG_EDAC is not set
14551 +# CONFIG_RTC_CLASS is not set
14552 +
14553 +#
14554 +# Userspace I/O
14555 +#
14556 +# CONFIG_UIO is not set
14557 +
14558 +#
14559 +# File systems
14560 +#
14561 +CONFIG_EXT2_FS=y
14562 +# CONFIG_EXT2_FS_XATTR is not set
14563 +# CONFIG_EXT2_FS_XIP is not set
14564 +# CONFIG_EXT3_FS is not set
14565 +# CONFIG_EXT4DEV_FS is not set
14566 +# CONFIG_REISERFS_FS is not set
14567 +# CONFIG_JFS_FS is not set
14568 +# CONFIG_FS_POSIX_ACL is not set
14569 +# CONFIG_XFS_FS is not set
14570 +# CONFIG_GFS2_FS is not set
14571 +# CONFIG_OCFS2_FS is not set
14572 +CONFIG_DNOTIFY=y
14573 +CONFIG_INOTIFY=y
14574 +CONFIG_INOTIFY_USER=y
14575 +# CONFIG_QUOTA is not set
14576 +# CONFIG_AUTOFS_FS is not set
14577 +# CONFIG_AUTOFS4_FS is not set
14578 +# CONFIG_FUSE_FS is not set
14579 +
14580 +#
14581 +# CD-ROM/DVD Filesystems
14582 +#
14583 +# CONFIG_ISO9660_FS is not set
14584 +# CONFIG_UDF_FS is not set
14585 +
14586 +#
14587 +# DOS/FAT/NT Filesystems
14588 +#
14589 +# CONFIG_MSDOS_FS is not set
14590 +# CONFIG_VFAT_FS is not set
14591 +# CONFIG_NTFS_FS is not set
14592 +
14593 +#
14594 +# Pseudo filesystems
14595 +#
14596 +CONFIG_PROC_FS=y
14597 +CONFIG_PROC_KCORE=y
14598 +CONFIG_PROC_SYSCTL=y
14599 +CONFIG_SYSFS=y
14600 +CONFIG_TMPFS=y
14601 +# CONFIG_TMPFS_POSIX_ACL is not set
14602 +# CONFIG_HUGETLB_PAGE is not set
14603 +# CONFIG_CONFIGFS_FS is not set
14604 +
14605 +#
14606 +# Miscellaneous filesystems
14607 +#
14608 +# CONFIG_ADFS_FS is not set
14609 +# CONFIG_AFFS_FS is not set
14610 +# CONFIG_HFS_FS is not set
14611 +# CONFIG_HFSPLUS_FS is not set
14612 +# CONFIG_BEFS_FS is not set
14613 +# CONFIG_BFS_FS is not set
14614 +# CONFIG_EFS_FS is not set
14615 +CONFIG_CRAMFS=y
14616 +# CONFIG_VXFS_FS is not set
14617 +# CONFIG_MINIX_FS is not set
14618 +# CONFIG_HPFS_FS is not set
14619 +# CONFIG_QNX4FS_FS is not set
14620 +# CONFIG_ROMFS_FS is not set
14621 +# CONFIG_SYSV_FS is not set
14622 +# CONFIG_UFS_FS is not set
14623 +CONFIG_NETWORK_FILESYSTEMS=y
14624 +CONFIG_NFS_FS=y
14625 +CONFIG_NFS_V3=y
14626 +# CONFIG_NFS_V3_ACL is not set
14627 +# CONFIG_NFS_V4 is not set
14628 +# CONFIG_NFS_DIRECTIO is not set
14629 +# CONFIG_NFSD is not set
14630 +CONFIG_ROOT_NFS=y
14631 +CONFIG_LOCKD=y
14632 +CONFIG_LOCKD_V4=y
14633 +CONFIG_NFS_COMMON=y
14634 +CONFIG_SUNRPC=y
14635 +# CONFIG_SUNRPC_BIND34 is not set
14636 +# CONFIG_RPCSEC_GSS_KRB5 is not set
14637 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
14638 +# CONFIG_SMB_FS is not set
14639 +# CONFIG_CIFS is not set
14640 +# CONFIG_NCP_FS is not set
14641 +# CONFIG_CODA_FS is not set
14642 +# CONFIG_AFS_FS is not set
14643 +
14644 +#
14645 +# Partition Types
14646 +#
14647 +# CONFIG_PARTITION_ADVANCED is not set
14648 +CONFIG_MSDOS_PARTITION=y
14649 +# CONFIG_NLS is not set
14650 +# CONFIG_DLM is not set
14651 +
14652 +#
14653 +# Library routines
14654 +#
14655 +CONFIG_BITREVERSE=y
14656 +# CONFIG_CRC_CCITT is not set
14657 +# CONFIG_CRC16 is not set
14658 +# CONFIG_CRC_ITU_T is not set
14659 +CONFIG_CRC32=y
14660 +# CONFIG_CRC7 is not set
14661 +# CONFIG_LIBCRC32C is not set
14662 +CONFIG_ZLIB_INFLATE=y
14663 +CONFIG_PLIST=y
14664 +CONFIG_HAS_IOMEM=y
14665 +CONFIG_HAS_IOPORT=y
14666 +CONFIG_HAS_DMA=y
14667 +
14668 +#
14669 +# Kernel hacking
14670 +#
14671 +# CONFIG_PRINTK_TIME is not set
14672 +CONFIG_ENABLE_WARN_DEPRECATED=y
14673 +CONFIG_ENABLE_MUST_CHECK=y
14674 +CONFIG_MAGIC_SYSRQ=y
14675 +# CONFIG_UNUSED_SYMBOLS is not set
14676 +CONFIG_DEBUG_FS=y
14677 +# CONFIG_HEADERS_CHECK is not set
14678 +CONFIG_DEBUG_KERNEL=y
14679 +# CONFIG_DEBUG_SHIRQ is not set
14680 +CONFIG_DETECT_SOFTLOCKUP=y
14681 +CONFIG_SCHED_DEBUG=y
14682 +# CONFIG_SCHEDSTATS is not set
14683 +# CONFIG_TIMER_STATS is not set
14684 +# CONFIG_SLUB_DEBUG_ON is not set
14685 +# CONFIG_SLUB_STATS is not set
14686 +# CONFIG_DEBUG_RT_MUTEXES is not set
14687 +# CONFIG_RT_MUTEX_TESTER is not set
14688 +# CONFIG_DEBUG_SPINLOCK is not set
14689 +# CONFIG_DEBUG_MUTEXES is not set
14690 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
14691 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
14692 +# CONFIG_DEBUG_KOBJECT is not set
14693 +# CONFIG_DEBUG_BUGVERBOSE is not set
14694 +# CONFIG_DEBUG_INFO is not set
14695 +# CONFIG_DEBUG_VM is not set
14696 +# CONFIG_DEBUG_LIST is not set
14697 +# CONFIG_DEBUG_SG is not set
14698 +# CONFIG_BOOT_PRINTK_DELAY is not set
14699 +# CONFIG_RCU_TORTURE_TEST is not set
14700 +# CONFIG_BACKTRACE_SELF_TEST is not set
14701 +# CONFIG_FAULT_INJECTION is not set
14702 +# CONFIG_SAMPLES is not set
14703 +# CONFIG_DEBUG_STACKOVERFLOW is not set
14704 +# CONFIG_DEBUG_STACK_USAGE is not set
14705 +# CONFIG_DEBUG_PAGEALLOC is not set
14706 +CONFIG_DEBUGGER=y
14707 +# CONFIG_KGDB is not set
14708 +# CONFIG_XMON is not set
14709 +# CONFIG_VIRQ_DEBUG is not set
14710 +# CONFIG_BDI_SWITCH is not set
14711 +# CONFIG_PPC_EARLY_DEBUG is not set
14712 +
14713 +#
14714 +# Security options
14715 +#
14716 +# CONFIG_KEYS is not set
14717 +# CONFIG_SECURITY is not set
14718 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
14719 +CONFIG_CRYPTO=y
14720 +CONFIG_CRYPTO_ALGAPI=y
14721 +CONFIG_CRYPTO_BLKCIPHER=y
14722 +# CONFIG_CRYPTO_SEQIV is not set
14723 +CONFIG_CRYPTO_MANAGER=y
14724 +# CONFIG_CRYPTO_HMAC is not set
14725 +# CONFIG_CRYPTO_XCBC is not set
14726 +# CONFIG_CRYPTO_NULL is not set
14727 +# CONFIG_CRYPTO_MD4 is not set
14728 +CONFIG_CRYPTO_MD5=y
14729 +# CONFIG_CRYPTO_SHA1 is not set
14730 +# CONFIG_CRYPTO_SHA256 is not set
14731 +# CONFIG_CRYPTO_SHA512 is not set
14732 +# CONFIG_CRYPTO_WP512 is not set
14733 +# CONFIG_CRYPTO_TGR192 is not set
14734 +# CONFIG_CRYPTO_GF128MUL is not set
14735 +CONFIG_CRYPTO_ECB=y
14736 +CONFIG_CRYPTO_CBC=y
14737 +CONFIG_CRYPTO_PCBC=y
14738 +# CONFIG_CRYPTO_LRW is not set
14739 +# CONFIG_CRYPTO_XTS is not set
14740 +# CONFIG_CRYPTO_CTR is not set
14741 +# CONFIG_CRYPTO_GCM is not set
14742 +# CONFIG_CRYPTO_CCM is not set
14743 +# CONFIG_CRYPTO_CRYPTD is not set
14744 +CONFIG_CRYPTO_DES=y
14745 +# CONFIG_CRYPTO_FCRYPT is not set
14746 +# CONFIG_CRYPTO_BLOWFISH is not set
14747 +# CONFIG_CRYPTO_TWOFISH is not set
14748 +# CONFIG_CRYPTO_SERPENT is not set
14749 +# CONFIG_CRYPTO_AES is not set
14750 +# CONFIG_CRYPTO_CAST5 is not set
14751 +# CONFIG_CRYPTO_CAST6 is not set
14752 +# CONFIG_CRYPTO_TEA is not set
14753 +# CONFIG_CRYPTO_ARC4 is not set
14754 +# CONFIG_CRYPTO_KHAZAD is not set
14755 +# CONFIG_CRYPTO_ANUBIS is not set
14756 +# CONFIG_CRYPTO_SEED is not set
14757 +# CONFIG_CRYPTO_SALSA20 is not set
14758 +# CONFIG_CRYPTO_DEFLATE is not set
14759 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
14760 +# CONFIG_CRYPTO_CRC32C is not set
14761 +# CONFIG_CRYPTO_CAMELLIA is not set
14762 +# CONFIG_CRYPTO_TEST is not set
14763 +# CONFIG_CRYPTO_AUTHENC is not set
14764 +# CONFIG_CRYPTO_LZO is not set
14765 +CONFIG_CRYPTO_HW=y
14766 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
14767 +# CONFIG_PPC_CLOCK is not set
14768 Index: linux-2.6.25.4/arch/powerpc/configs/44x/canyonlands_defconfig
14769 ===================================================================
14770 --- /dev/null
14771 +++ linux-2.6.25.4/arch/powerpc/configs/44x/canyonlands_defconfig
14772 @@ -0,0 +1,721 @@
14773 +#
14774 +# Automatically generated make config: don't edit
14775 +# Linux kernel version: 2.6.25-rc1
14776 +# Thu Feb 21 14:29:28 2008
14777 +#
14778 +# CONFIG_PPC64 is not set
14779 +
14780 +#
14781 +# Processor support
14782 +#
14783 +# CONFIG_6xx is not set
14784 +# CONFIG_PPC_85xx is not set
14785 +# CONFIG_PPC_8xx is not set
14786 +# CONFIG_40x is not set
14787 +CONFIG_44x=y
14788 +# CONFIG_E200 is not set
14789 +CONFIG_PPC_FPU=y
14790 +CONFIG_4xx=y
14791 +CONFIG_BOOKE=y
14792 +CONFIG_PTE_64BIT=y
14793 +CONFIG_PHYS_64BIT=y
14794 +# CONFIG_PPC_MM_SLICES is not set
14795 +CONFIG_NOT_COHERENT_CACHE=y
14796 +CONFIG_PPC32=y
14797 +CONFIG_WORD_SIZE=32
14798 +CONFIG_PPC_MERGE=y
14799 +CONFIG_MMU=y
14800 +CONFIG_GENERIC_CMOS_UPDATE=y
14801 +CONFIG_GENERIC_TIME=y
14802 +CONFIG_GENERIC_TIME_VSYSCALL=y
14803 +CONFIG_GENERIC_CLOCKEVENTS=y
14804 +CONFIG_GENERIC_HARDIRQS=y
14805 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
14806 +CONFIG_IRQ_PER_CPU=y
14807 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
14808 +CONFIG_ARCH_HAS_ILOG2_U32=y
14809 +CONFIG_GENERIC_HWEIGHT=y
14810 +CONFIG_GENERIC_CALIBRATE_DELAY=y
14811 +CONFIG_GENERIC_FIND_NEXT_BIT=y
14812 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
14813 +CONFIG_PPC=y
14814 +CONFIG_EARLY_PRINTK=y
14815 +CONFIG_GENERIC_NVRAM=y
14816 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
14817 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
14818 +CONFIG_PPC_OF=y
14819 +CONFIG_OF=y
14820 +CONFIG_PPC_UDBG_16550=y
14821 +# CONFIG_GENERIC_TBSYNC is not set
14822 +CONFIG_AUDIT_ARCH=y
14823 +CONFIG_GENERIC_BUG=y
14824 +# CONFIG_DEFAULT_UIMAGE is not set
14825 +CONFIG_PPC_DCR_NATIVE=y
14826 +# CONFIG_PPC_DCR_MMIO is not set
14827 +CONFIG_PPC_DCR=y
14828 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
14829 +
14830 +#
14831 +# General setup
14832 +#
14833 +CONFIG_EXPERIMENTAL=y
14834 +CONFIG_BROKEN_ON_SMP=y
14835 +CONFIG_INIT_ENV_ARG_LIMIT=32
14836 +CONFIG_LOCALVERSION=""
14837 +CONFIG_LOCALVERSION_AUTO=y
14838 +CONFIG_SWAP=y
14839 +CONFIG_SYSVIPC=y
14840 +CONFIG_SYSVIPC_SYSCTL=y
14841 +CONFIG_POSIX_MQUEUE=y
14842 +# CONFIG_BSD_PROCESS_ACCT is not set
14843 +# CONFIG_TASKSTATS is not set
14844 +# CONFIG_AUDIT is not set
14845 +# CONFIG_IKCONFIG is not set
14846 +CONFIG_LOG_BUF_SHIFT=14
14847 +# CONFIG_CGROUPS is not set
14848 +# CONFIG_FAIR_GROUP_SCHED is not set
14849 +CONFIG_SYSFS_DEPRECATED=y
14850 +# CONFIG_RELAY is not set
14851 +# CONFIG_NAMESPACES is not set
14852 +CONFIG_BLK_DEV_INITRD=y
14853 +CONFIG_INITRAMFS_SOURCE=""
14854 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
14855 +CONFIG_SYSCTL=y
14856 +CONFIG_EMBEDDED=y
14857 +CONFIG_SYSCTL_SYSCALL=y
14858 +CONFIG_KALLSYMS=y
14859 +# CONFIG_KALLSYMS_ALL is not set
14860 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
14861 +CONFIG_HOTPLUG=y
14862 +CONFIG_PRINTK=y
14863 +# CONFIG_LOGBUFFER is not set
14864 +CONFIG_BUG=y
14865 +CONFIG_ELF_CORE=y
14866 +CONFIG_COMPAT_BRK=y
14867 +CONFIG_BASE_FULL=y
14868 +CONFIG_FUTEX=y
14869 +CONFIG_ANON_INODES=y
14870 +CONFIG_EPOLL=y
14871 +CONFIG_SIGNALFD=y
14872 +CONFIG_TIMERFD=y
14873 +CONFIG_EVENTFD=y
14874 +CONFIG_SHMEM=y
14875 +CONFIG_VM_EVENT_COUNTERS=y
14876 +CONFIG_SLUB_DEBUG=y
14877 +# CONFIG_SLAB is not set
14878 +CONFIG_SLUB=y
14879 +# CONFIG_SLOB is not set
14880 +# CONFIG_PROFILING is not set
14881 +# CONFIG_MARKERS is not set
14882 +CONFIG_HAVE_OPROFILE=y
14883 +# CONFIG_KPROBES is not set
14884 +CONFIG_HAVE_KPROBES=y
14885 +CONFIG_PROC_PAGE_MONITOR=y
14886 +CONFIG_SLABINFO=y
14887 +CONFIG_RT_MUTEXES=y
14888 +# CONFIG_TINY_SHMEM is not set
14889 +CONFIG_BASE_SMALL=0
14890 +CONFIG_MODULES=y
14891 +CONFIG_MODULE_UNLOAD=y
14892 +# CONFIG_MODULE_FORCE_UNLOAD is not set
14893 +# CONFIG_MODVERSIONS is not set
14894 +# CONFIG_MODULE_SRCVERSION_ALL is not set
14895 +CONFIG_KMOD=y
14896 +CONFIG_BLOCK=y
14897 +CONFIG_LBD=y
14898 +# CONFIG_BLK_DEV_IO_TRACE is not set
14899 +# CONFIG_LSF is not set
14900 +# CONFIG_BLK_DEV_BSG is not set
14901 +
14902 +#
14903 +# IO Schedulers
14904 +#
14905 +CONFIG_IOSCHED_NOOP=y
14906 +CONFIG_IOSCHED_AS=y
14907 +CONFIG_IOSCHED_DEADLINE=y
14908 +CONFIG_IOSCHED_CFQ=y
14909 +CONFIG_DEFAULT_AS=y
14910 +# CONFIG_DEFAULT_DEADLINE is not set
14911 +# CONFIG_DEFAULT_CFQ is not set
14912 +# CONFIG_DEFAULT_NOOP is not set
14913 +CONFIG_DEFAULT_IOSCHED="anticipatory"
14914 +CONFIG_CLASSIC_RCU=y
14915 +# CONFIG_PREEMPT_RCU is not set
14916 +CONFIG_PPC4xx_PCI_EXPRESS=y
14917 +
14918 +#
14919 +# Platform support
14920 +#
14921 +# CONFIG_PPC_MPC512x is not set
14922 +# CONFIG_PPC_MPC5121 is not set
14923 +# CONFIG_PPC_CELL is not set
14924 +# CONFIG_PPC_CELL_NATIVE is not set
14925 +# CONFIG_PQ2ADS is not set
14926 +# CONFIG_BAMBOO is not set
14927 +# CONFIG_EBONY is not set
14928 +# CONFIG_SEQUOIA is not set
14929 +# CONFIG_TAISHAN is not set
14930 +# CONFIG_KATMAI is not set
14931 +# CONFIG_RAINIER is not set
14932 +# CONFIG_WARP is not set
14933 +CONFIG_CANYONLANDS=y
14934 +CONFIG_460EX=y
14935 +# CONFIG_IPIC is not set
14936 +# CONFIG_MPIC is not set
14937 +# CONFIG_MPIC_WEIRD is not set
14938 +# CONFIG_PPC_I8259 is not set
14939 +# CONFIG_PPC_RTAS is not set
14940 +# CONFIG_MMIO_NVRAM is not set
14941 +# CONFIG_PPC_MPC106 is not set
14942 +# CONFIG_PPC_970_NAP is not set
14943 +# CONFIG_PPC_INDIRECT_IO is not set
14944 +# CONFIG_GENERIC_IOMAP is not set
14945 +# CONFIG_CPU_FREQ is not set
14946 +# CONFIG_FSL_ULI1575 is not set
14947 +
14948 +#
14949 +# Kernel options
14950 +#
14951 +# CONFIG_HIGHMEM is not set
14952 +CONFIG_TICK_ONESHOT=y
14953 +CONFIG_NO_HZ=y
14954 +CONFIG_HIGH_RES_TIMERS=y
14955 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
14956 +# CONFIG_HZ_100 is not set
14957 +CONFIG_HZ_250=y
14958 +# CONFIG_HZ_300 is not set
14959 +# CONFIG_HZ_1000 is not set
14960 +CONFIG_HZ=250
14961 +# CONFIG_SCHED_HRTICK is not set
14962 +CONFIG_PREEMPT_NONE=y
14963 +# CONFIG_PREEMPT_VOLUNTARY is not set
14964 +# CONFIG_PREEMPT is not set
14965 +CONFIG_RCU_TRACE=y
14966 +CONFIG_BINFMT_ELF=y
14967 +# CONFIG_BINFMT_MISC is not set
14968 +# CONFIG_MATH_EMULATION is not set
14969 +# CONFIG_IOMMU_HELPER is not set
14970 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
14971 +CONFIG_ARCH_HAS_WALK_MEMORY=y
14972 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
14973 +CONFIG_ARCH_FLATMEM_ENABLE=y
14974 +CONFIG_ARCH_POPULATES_NODE_MAP=y
14975 +CONFIG_SELECT_MEMORY_MODEL=y
14976 +CONFIG_FLATMEM_MANUAL=y
14977 +# CONFIG_DISCONTIGMEM_MANUAL is not set
14978 +# CONFIG_SPARSEMEM_MANUAL is not set
14979 +CONFIG_FLATMEM=y
14980 +CONFIG_FLAT_NODE_MEM_MAP=y
14981 +# CONFIG_SPARSEMEM_STATIC is not set
14982 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
14983 +CONFIG_SPLIT_PTLOCK_CPUS=4
14984 +CONFIG_RESOURCES_64BIT=y
14985 +CONFIG_ZONE_DMA_FLAG=1
14986 +CONFIG_BOUNCE=y
14987 +CONFIG_VIRT_TO_BUS=y
14988 +CONFIG_PROC_DEVICETREE=y
14989 +CONFIG_CMDLINE_BOOL=y
14990 +CONFIG_CMDLINE=""
14991 +CONFIG_SECCOMP=y
14992 +CONFIG_WANT_DEVICE_TREE=y
14993 +CONFIG_ISA_DMA_API=y
14994 +
14995 +#
14996 +# Bus options
14997 +#
14998 +CONFIG_ZONE_DMA=y
14999 +CONFIG_PPC_INDIRECT_PCI=y
15000 +CONFIG_PCI=y
15001 +CONFIG_PCI_DOMAINS=y
15002 +CONFIG_PCI_SYSCALL=y
15003 +# CONFIG_PCIEPORTBUS is not set
15004 +CONFIG_ARCH_SUPPORTS_MSI=y
15005 +# CONFIG_PCI_MSI is not set
15006 +CONFIG_PCI_LEGACY=y
15007 +# CONFIG_PCI_DEBUG is not set
15008 +# CONFIG_PCCARD is not set
15009 +# CONFIG_HOTPLUG_PCI is not set
15010 +
15011 +#
15012 +# Advanced setup
15013 +#
15014 +# CONFIG_ADVANCED_OPTIONS is not set
15015 +
15016 +#
15017 +# Default settings for advanced configuration options are used
15018 +#
15019 +CONFIG_HIGHMEM_START=0xfe000000
15020 +CONFIG_LOWMEM_SIZE=0x30000000
15021 +CONFIG_KERNEL_START=0xc0000000
15022 +CONFIG_TASK_SIZE=0xc0000000
15023 +CONFIG_CONSISTENT_START=0xff100000
15024 +CONFIG_CONSISTENT_SIZE=0x00200000
15025 +CONFIG_BOOT_LOAD=0x01000000
15026 +
15027 +#
15028 +# Networking
15029 +#
15030 +CONFIG_NET=y
15031 +
15032 +#
15033 +# Networking options
15034 +#
15035 +CONFIG_PACKET=y
15036 +# CONFIG_PACKET_MMAP is not set
15037 +CONFIG_UNIX=y
15038 +# CONFIG_NET_KEY is not set
15039 +CONFIG_INET=y
15040 +# CONFIG_IP_MULTICAST is not set
15041 +# CONFIG_IP_ADVANCED_ROUTER is not set
15042 +CONFIG_IP_FIB_HASH=y
15043 +CONFIG_IP_PNP=y
15044 +CONFIG_IP_PNP_DHCP=y
15045 +CONFIG_IP_PNP_BOOTP=y
15046 +# CONFIG_IP_PNP_RARP is not set
15047 +# CONFIG_NET_IPIP is not set
15048 +# CONFIG_NET_IPGRE is not set
15049 +# CONFIG_ARPD is not set
15050 +# CONFIG_SYN_COOKIES is not set
15051 +# CONFIG_INET_AH is not set
15052 +# CONFIG_INET_ESP is not set
15053 +# CONFIG_INET_IPCOMP is not set
15054 +# CONFIG_INET_XFRM_TUNNEL is not set
15055 +# CONFIG_INET_TUNNEL is not set
15056 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
15057 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
15058 +# CONFIG_INET_XFRM_MODE_BEET is not set
15059 +# CONFIG_INET_LRO is not set
15060 +CONFIG_INET_DIAG=y
15061 +CONFIG_INET_TCP_DIAG=y
15062 +# CONFIG_TCP_CONG_ADVANCED is not set
15063 +CONFIG_TCP_CONG_CUBIC=y
15064 +CONFIG_DEFAULT_TCP_CONG="cubic"
15065 +# CONFIG_TCP_MD5SIG is not set
15066 +# CONFIG_IPV6 is not set
15067 +# CONFIG_INET6_XFRM_TUNNEL is not set
15068 +# CONFIG_INET6_TUNNEL is not set
15069 +# CONFIG_NETWORK_SECMARK is not set
15070 +# CONFIG_NETFILTER is not set
15071 +# CONFIG_IP_DCCP is not set
15072 +# CONFIG_IP_SCTP is not set
15073 +# CONFIG_TIPC is not set
15074 +# CONFIG_ATM is not set
15075 +# CONFIG_BRIDGE is not set
15076 +# CONFIG_VLAN_8021Q is not set
15077 +# CONFIG_DECNET is not set
15078 +# CONFIG_LLC2 is not set
15079 +# CONFIG_IPX is not set
15080 +# CONFIG_ATALK is not set
15081 +# CONFIG_X25 is not set
15082 +# CONFIG_LAPB is not set
15083 +# CONFIG_ECONET is not set
15084 +# CONFIG_WAN_ROUTER is not set
15085 +# CONFIG_NET_SCHED is not set
15086 +
15087 +#
15088 +# Network testing
15089 +#
15090 +# CONFIG_NET_PKTGEN is not set
15091 +# CONFIG_HAMRADIO is not set
15092 +# CONFIG_CAN is not set
15093 +# CONFIG_IRDA is not set
15094 +# CONFIG_BT is not set
15095 +# CONFIG_AF_RXRPC is not set
15096 +
15097 +#
15098 +# Wireless
15099 +#
15100 +# CONFIG_CFG80211 is not set
15101 +# CONFIG_WIRELESS_EXT is not set
15102 +# CONFIG_MAC80211 is not set
15103 +# CONFIG_IEEE80211 is not set
15104 +# CONFIG_RFKILL is not set
15105 +# CONFIG_NET_9P is not set
15106 +
15107 +#
15108 +# Device Drivers
15109 +#
15110 +
15111 +#
15112 +# Generic Driver Options
15113 +#
15114 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
15115 +CONFIG_STANDALONE=y
15116 +CONFIG_PREVENT_FIRMWARE_BUILD=y
15117 +CONFIG_FW_LOADER=y
15118 +# CONFIG_DEBUG_DRIVER is not set
15119 +# CONFIG_DEBUG_DEVRES is not set
15120 +# CONFIG_SYS_HYPERVISOR is not set
15121 +CONFIG_CONNECTOR=y
15122 +CONFIG_PROC_EVENTS=y
15123 +# CONFIG_MTD is not set
15124 +CONFIG_OF_DEVICE=y
15125 +# CONFIG_PARPORT is not set
15126 +CONFIG_BLK_DEV=y
15127 +# CONFIG_BLK_DEV_FD is not set
15128 +# CONFIG_BLK_CPQ_DA is not set
15129 +# CONFIG_BLK_CPQ_CISS_DA is not set
15130 +# CONFIG_BLK_DEV_DAC960 is not set
15131 +# CONFIG_BLK_DEV_UMEM is not set
15132 +# CONFIG_BLK_DEV_COW_COMMON is not set
15133 +# CONFIG_BLK_DEV_LOOP is not set
15134 +# CONFIG_BLK_DEV_NBD is not set
15135 +# CONFIG_BLK_DEV_SX8 is not set
15136 +CONFIG_BLK_DEV_RAM=y
15137 +CONFIG_BLK_DEV_RAM_COUNT=16
15138 +CONFIG_BLK_DEV_RAM_SIZE=35000
15139 +# CONFIG_BLK_DEV_XIP is not set
15140 +# CONFIG_CDROM_PKTCDVD is not set
15141 +# CONFIG_ATA_OVER_ETH is not set
15142 +# CONFIG_XILINX_SYSACE is not set
15143 +# CONFIG_MISC_DEVICES is not set
15144 +CONFIG_HAVE_IDE=y
15145 +# CONFIG_IDE is not set
15146 +
15147 +#
15148 +# SCSI device support
15149 +#
15150 +# CONFIG_RAID_ATTRS is not set
15151 +# CONFIG_SCSI is not set
15152 +# CONFIG_SCSI_DMA is not set
15153 +# CONFIG_SCSI_NETLINK is not set
15154 +# CONFIG_ATA is not set
15155 +# CONFIG_MD is not set
15156 +# CONFIG_FUSION is not set
15157 +
15158 +#
15159 +# IEEE 1394 (FireWire) support
15160 +#
15161 +# CONFIG_FIREWIRE is not set
15162 +# CONFIG_IEEE1394 is not set
15163 +# CONFIG_I2O is not set
15164 +# CONFIG_MACINTOSH_DRIVERS is not set
15165 +CONFIG_NETDEVICES=y
15166 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
15167 +# CONFIG_DUMMY is not set
15168 +# CONFIG_BONDING is not set
15169 +# CONFIG_MACVLAN is not set
15170 +# CONFIG_EQUALIZER is not set
15171 +# CONFIG_TUN is not set
15172 +# CONFIG_VETH is not set
15173 +# CONFIG_ARCNET is not set
15174 +# CONFIG_PHYLIB is not set
15175 +CONFIG_NET_ETHERNET=y
15176 +# CONFIG_MII is not set
15177 +# CONFIG_HAPPYMEAL is not set
15178 +# CONFIG_SUNGEM is not set
15179 +# CONFIG_CASSINI is not set
15180 +# CONFIG_NET_VENDOR_3COM is not set
15181 +# CONFIG_NET_TULIP is not set
15182 +# CONFIG_HP100 is not set
15183 +CONFIG_IBM_NEW_EMAC=y
15184 +CONFIG_IBM_NEW_EMAC_RXB=256
15185 +CONFIG_IBM_NEW_EMAC_TXB=256
15186 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
15187 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
15188 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
15189 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
15190 +CONFIG_IBM_NEW_EMAC_ZMII=y
15191 +CONFIG_IBM_NEW_EMAC_RGMII=y
15192 +CONFIG_IBM_NEW_EMAC_TAH=y
15193 +CONFIG_IBM_NEW_EMAC_EMAC4=y
15194 +# CONFIG_NET_PCI is not set
15195 +# CONFIG_B44 is not set
15196 +# CONFIG_NETDEV_1000 is not set
15197 +# CONFIG_NETDEV_10000 is not set
15198 +# CONFIG_TR is not set
15199 +
15200 +#
15201 +# Wireless LAN
15202 +#
15203 +# CONFIG_WLAN_PRE80211 is not set
15204 +# CONFIG_WLAN_80211 is not set
15205 +# CONFIG_WAN is not set
15206 +# CONFIG_FDDI is not set
15207 +# CONFIG_HIPPI is not set
15208 +# CONFIG_PPP is not set
15209 +# CONFIG_SLIP is not set
15210 +# CONFIG_NETCONSOLE is not set
15211 +# CONFIG_NETPOLL is not set
15212 +# CONFIG_NET_POLL_CONTROLLER is not set
15213 +# CONFIG_ISDN is not set
15214 +# CONFIG_PHONE is not set
15215 +
15216 +#
15217 +# Input device support
15218 +#
15219 +# CONFIG_INPUT is not set
15220 +
15221 +#
15222 +# Hardware I/O ports
15223 +#
15224 +# CONFIG_SERIO is not set
15225 +# CONFIG_GAMEPORT is not set
15226 +
15227 +#
15228 +# Character devices
15229 +#
15230 +# CONFIG_VT is not set
15231 +# CONFIG_SERIAL_NONSTANDARD is not set
15232 +# CONFIG_NOZOMI is not set
15233 +
15234 +#
15235 +# Serial drivers
15236 +#
15237 +CONFIG_SERIAL_8250=y
15238 +CONFIG_SERIAL_8250_CONSOLE=y
15239 +# CONFIG_SERIAL_8250_PCI is not set
15240 +CONFIG_SERIAL_8250_NR_UARTS=4
15241 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
15242 +CONFIG_SERIAL_8250_EXTENDED=y
15243 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
15244 +CONFIG_SERIAL_8250_SHARE_IRQ=y
15245 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
15246 +# CONFIG_SERIAL_8250_RSA is not set
15247 +
15248 +#
15249 +# Non-8250 serial port support
15250 +#
15251 +# CONFIG_SERIAL_UARTLITE is not set
15252 +CONFIG_SERIAL_CORE=y
15253 +CONFIG_SERIAL_CORE_CONSOLE=y
15254 +# CONFIG_SERIAL_JSM is not set
15255 +CONFIG_SERIAL_OF_PLATFORM=y
15256 +CONFIG_UNIX98_PTYS=y
15257 +CONFIG_LEGACY_PTYS=y
15258 +CONFIG_LEGACY_PTY_COUNT=256
15259 +# CONFIG_IPMI_HANDLER is not set
15260 +# CONFIG_HW_RANDOM is not set
15261 +# CONFIG_NVRAM is not set
15262 +# CONFIG_GEN_RTC is not set
15263 +# CONFIG_R3964 is not set
15264 +# CONFIG_APPLICOM is not set
15265 +# CONFIG_RAW_DRIVER is not set
15266 +# CONFIG_TCG_TPM is not set
15267 +CONFIG_DEVPORT=y
15268 +# CONFIG_I2C is not set
15269 +
15270 +#
15271 +# SPI support
15272 +#
15273 +# CONFIG_SPI is not set
15274 +# CONFIG_SPI_MASTER is not set
15275 +# CONFIG_W1 is not set
15276 +# CONFIG_POWER_SUPPLY is not set
15277 +# CONFIG_HWMON is not set
15278 +# CONFIG_THERMAL is not set
15279 +# CONFIG_WATCHDOG is not set
15280 +
15281 +#
15282 +# Sonics Silicon Backplane
15283 +#
15284 +CONFIG_SSB_POSSIBLE=y
15285 +# CONFIG_SSB is not set
15286 +
15287 +#
15288 +# Multifunction device drivers
15289 +#
15290 +# CONFIG_MFD_SM501 is not set
15291 +
15292 +#
15293 +# Multimedia devices
15294 +#
15295 +# CONFIG_VIDEO_DEV is not set
15296 +# CONFIG_DVB_CORE is not set
15297 +CONFIG_DAB=y
15298 +
15299 +#
15300 +# Graphics support
15301 +#
15302 +# CONFIG_AGP is not set
15303 +# CONFIG_DRM is not set
15304 +# CONFIG_VGASTATE is not set
15305 +CONFIG_VIDEO_OUTPUT_CONTROL=m
15306 +# CONFIG_FB is not set
15307 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
15308 +
15309 +#
15310 +# Display device support
15311 +#
15312 +# CONFIG_DISPLAY_SUPPORT is not set
15313 +
15314 +#
15315 +# Sound
15316 +#
15317 +# CONFIG_SOUND is not set
15318 +# CONFIG_USB_SUPPORT is not set
15319 +# CONFIG_MMC is not set
15320 +# CONFIG_MEMSTICK is not set
15321 +# CONFIG_NEW_LEDS is not set
15322 +# CONFIG_INFINIBAND is not set
15323 +# CONFIG_EDAC is not set
15324 +# CONFIG_RTC_CLASS is not set
15325 +
15326 +#
15327 +# Userspace I/O
15328 +#
15329 +# CONFIG_UIO is not set
15330 +
15331 +#
15332 +# File systems
15333 +#
15334 +CONFIG_EXT2_FS=y
15335 +# CONFIG_EXT2_FS_XATTR is not set
15336 +# CONFIG_EXT2_FS_XIP is not set
15337 +# CONFIG_EXT3_FS is not set
15338 +# CONFIG_EXT4DEV_FS is not set
15339 +# CONFIG_REISERFS_FS is not set
15340 +# CONFIG_JFS_FS is not set
15341 +# CONFIG_FS_POSIX_ACL is not set
15342 +# CONFIG_XFS_FS is not set
15343 +# CONFIG_GFS2_FS is not set
15344 +# CONFIG_OCFS2_FS is not set
15345 +CONFIG_DNOTIFY=y
15346 +CONFIG_INOTIFY=y
15347 +CONFIG_INOTIFY_USER=y
15348 +# CONFIG_QUOTA is not set
15349 +# CONFIG_AUTOFS_FS is not set
15350 +# CONFIG_AUTOFS4_FS is not set
15351 +# CONFIG_FUSE_FS is not set
15352 +
15353 +#
15354 +# CD-ROM/DVD Filesystems
15355 +#
15356 +# CONFIG_ISO9660_FS is not set
15357 +# CONFIG_UDF_FS is not set
15358 +
15359 +#
15360 +# DOS/FAT/NT Filesystems
15361 +#
15362 +# CONFIG_MSDOS_FS is not set
15363 +# CONFIG_VFAT_FS is not set
15364 +# CONFIG_NTFS_FS is not set
15365 +
15366 +#
15367 +# Pseudo filesystems
15368 +#
15369 +CONFIG_PROC_FS=y
15370 +CONFIG_PROC_KCORE=y
15371 +CONFIG_PROC_SYSCTL=y
15372 +CONFIG_SYSFS=y
15373 +CONFIG_TMPFS=y
15374 +# CONFIG_TMPFS_POSIX_ACL is not set
15375 +# CONFIG_HUGETLB_PAGE is not set
15376 +# CONFIG_CONFIGFS_FS is not set
15377 +
15378 +#
15379 +# Miscellaneous filesystems
15380 +#
15381 +# CONFIG_ADFS_FS is not set
15382 +# CONFIG_AFFS_FS is not set
15383 +# CONFIG_HFS_FS is not set
15384 +# CONFIG_HFSPLUS_FS is not set
15385 +# CONFIG_BEFS_FS is not set
15386 +# CONFIG_BFS_FS is not set
15387 +# CONFIG_EFS_FS is not set
15388 +CONFIG_CRAMFS=y
15389 +# CONFIG_VXFS_FS is not set
15390 +# CONFIG_MINIX_FS is not set
15391 +# CONFIG_HPFS_FS is not set
15392 +# CONFIG_QNX4FS_FS is not set
15393 +# CONFIG_ROMFS_FS is not set
15394 +# CONFIG_SYSV_FS is not set
15395 +# CONFIG_UFS_FS is not set
15396 +CONFIG_NETWORK_FILESYSTEMS=y
15397 +CONFIG_NFS_FS=y
15398 +CONFIG_NFS_V3=y
15399 +# CONFIG_NFS_V3_ACL is not set
15400 +# CONFIG_NFS_V4 is not set
15401 +# CONFIG_NFS_DIRECTIO is not set
15402 +# CONFIG_NFSD is not set
15403 +CONFIG_ROOT_NFS=y
15404 +CONFIG_LOCKD=y
15405 +CONFIG_LOCKD_V4=y
15406 +CONFIG_NFS_COMMON=y
15407 +CONFIG_SUNRPC=y
15408 +# CONFIG_SUNRPC_BIND34 is not set
15409 +# CONFIG_RPCSEC_GSS_KRB5 is not set
15410 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
15411 +# CONFIG_SMB_FS is not set
15412 +# CONFIG_CIFS is not set
15413 +# CONFIG_NCP_FS is not set
15414 +# CONFIG_CODA_FS is not set
15415 +# CONFIG_AFS_FS is not set
15416 +
15417 +#
15418 +# Partition Types
15419 +#
15420 +# CONFIG_PARTITION_ADVANCED is not set
15421 +CONFIG_MSDOS_PARTITION=y
15422 +# CONFIG_NLS is not set
15423 +# CONFIG_DLM is not set
15424 +
15425 +#
15426 +# Library routines
15427 +#
15428 +CONFIG_BITREVERSE=y
15429 +# CONFIG_CRC_CCITT is not set
15430 +# CONFIG_CRC16 is not set
15431 +# CONFIG_CRC_ITU_T is not set
15432 +CONFIG_CRC32=y
15433 +# CONFIG_CRC7 is not set
15434 +# CONFIG_LIBCRC32C is not set
15435 +CONFIG_ZLIB_INFLATE=y
15436 +CONFIG_PLIST=y
15437 +CONFIG_HAS_IOMEM=y
15438 +CONFIG_HAS_IOPORT=y
15439 +CONFIG_HAS_DMA=y
15440 +
15441 +#
15442 +# Kernel hacking
15443 +#
15444 +# CONFIG_PRINTK_TIME is not set
15445 +CONFIG_ENABLE_WARN_DEPRECATED=y
15446 +CONFIG_ENABLE_MUST_CHECK=y
15447 +CONFIG_MAGIC_SYSRQ=y
15448 +# CONFIG_UNUSED_SYMBOLS is not set
15449 +CONFIG_DEBUG_FS=y
15450 +# CONFIG_HEADERS_CHECK is not set
15451 +CONFIG_DEBUG_KERNEL=y
15452 +# CONFIG_DEBUG_SHIRQ is not set
15453 +CONFIG_DETECT_SOFTLOCKUP=y
15454 +CONFIG_SCHED_DEBUG=y
15455 +# CONFIG_SCHEDSTATS is not set
15456 +# CONFIG_TIMER_STATS is not set
15457 +# CONFIG_SLUB_DEBUG_ON is not set
15458 +# CONFIG_SLUB_STATS is not set
15459 +# CONFIG_DEBUG_RT_MUTEXES is not set
15460 +# CONFIG_RT_MUTEX_TESTER is not set
15461 +# CONFIG_DEBUG_SPINLOCK is not set
15462 +# CONFIG_DEBUG_MUTEXES is not set
15463 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
15464 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
15465 +# CONFIG_DEBUG_KOBJECT is not set
15466 +# CONFIG_DEBUG_BUGVERBOSE is not set
15467 +# CONFIG_DEBUG_INFO is not set
15468 +# CONFIG_DEBUG_VM is not set
15469 +# CONFIG_DEBUG_LIST is not set
15470 +# CONFIG_DEBUG_SG is not set
15471 +# CONFIG_BOOT_PRINTK_DELAY is not set
15472 +# CONFIG_RCU_TORTURE_TEST is not set
15473 +# CONFIG_BACKTRACE_SELF_TEST is not set
15474 +# CONFIG_FAULT_INJECTION is not set
15475 +# CONFIG_SAMPLES is not set
15476 +# CONFIG_DEBUG_STACKOVERFLOW is not set
15477 +# CONFIG_DEBUG_STACK_USAGE is not set
15478 +# CONFIG_DEBUG_PAGEALLOC is not set
15479 +CONFIG_DEBUGGER=y
15480 +# CONFIG_KGDB is not set
15481 +# CONFIG_XMON is not set
15482 +# CONFIG_VIRQ_DEBUG is not set
15483 +# CONFIG_BDI_SWITCH is not set
15484 +# CONFIG_PPC_EARLY_DEBUG is not set
15485 +
15486 +#
15487 +# Security options
15488 +#
15489 +# CONFIG_KEYS is not set
15490 +# CONFIG_SECURITY is not set
15491 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
15492 +# CONFIG_CRYPTO is not set
15493 +# CONFIG_PPC_CLOCK is not set
15494 Index: linux-2.6.25.4/arch/powerpc/configs/44x/ebony_defconfig
15495 ===================================================================
15496 --- /dev/null
15497 +++ linux-2.6.25.4/arch/powerpc/configs/44x/ebony_defconfig
15498 @@ -0,0 +1,898 @@
15499 +#
15500 +# Automatically generated make config: don't edit
15501 +# Linux kernel version: 2.6.25-rc2
15502 +# Fri Feb 15 21:50:44 2008
15503 +#
15504 +# CONFIG_PPC64 is not set
15505 +
15506 +#
15507 +# Processor support
15508 +#
15509 +# CONFIG_6xx is not set
15510 +# CONFIG_PPC_85xx is not set
15511 +# CONFIG_PPC_8xx is not set
15512 +# CONFIG_40x is not set
15513 +CONFIG_44x=y
15514 +# CONFIG_E200 is not set
15515 +CONFIG_4xx=y
15516 +CONFIG_BOOKE=y
15517 +CONFIG_PTE_64BIT=y
15518 +CONFIG_PHYS_64BIT=y
15519 +# CONFIG_PPC_MM_SLICES is not set
15520 +CONFIG_NOT_COHERENT_CACHE=y
15521 +CONFIG_PPC32=y
15522 +CONFIG_WORD_SIZE=32
15523 +CONFIG_PPC_MERGE=y
15524 +CONFIG_MMU=y
15525 +CONFIG_GENERIC_CMOS_UPDATE=y
15526 +CONFIG_GENERIC_TIME=y
15527 +CONFIG_GENERIC_TIME_VSYSCALL=y
15528 +CONFIG_GENERIC_CLOCKEVENTS=y
15529 +CONFIG_GENERIC_HARDIRQS=y
15530 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
15531 +CONFIG_IRQ_PER_CPU=y
15532 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
15533 +CONFIG_ARCH_HAS_ILOG2_U32=y
15534 +CONFIG_GENERIC_HWEIGHT=y
15535 +CONFIG_GENERIC_CALIBRATE_DELAY=y
15536 +CONFIG_GENERIC_FIND_NEXT_BIT=y
15537 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
15538 +CONFIG_PPC=y
15539 +CONFIG_EARLY_PRINTK=y
15540 +CONFIG_GENERIC_NVRAM=y
15541 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
15542 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
15543 +CONFIG_PPC_OF=y
15544 +CONFIG_OF=y
15545 +CONFIG_PPC_UDBG_16550=y
15546 +# CONFIG_GENERIC_TBSYNC is not set
15547 +CONFIG_AUDIT_ARCH=y
15548 +CONFIG_GENERIC_BUG=y
15549 +# CONFIG_DEFAULT_UIMAGE is not set
15550 +CONFIG_PPC_DCR_NATIVE=y
15551 +# CONFIG_PPC_DCR_MMIO is not set
15552 +CONFIG_PPC_DCR=y
15553 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
15554 +
15555 +#
15556 +# General setup
15557 +#
15558 +CONFIG_EXPERIMENTAL=y
15559 +CONFIG_BROKEN_ON_SMP=y
15560 +CONFIG_INIT_ENV_ARG_LIMIT=32
15561 +CONFIG_LOCALVERSION=""
15562 +CONFIG_LOCALVERSION_AUTO=y
15563 +CONFIG_SWAP=y
15564 +CONFIG_SYSVIPC=y
15565 +CONFIG_SYSVIPC_SYSCTL=y
15566 +CONFIG_POSIX_MQUEUE=y
15567 +# CONFIG_BSD_PROCESS_ACCT is not set
15568 +# CONFIG_TASKSTATS is not set
15569 +# CONFIG_AUDIT is not set
15570 +# CONFIG_IKCONFIG is not set
15571 +CONFIG_LOG_BUF_SHIFT=14
15572 +# CONFIG_CGROUPS is not set
15573 +CONFIG_GROUP_SCHED=y
15574 +CONFIG_FAIR_GROUP_SCHED=y
15575 +# CONFIG_RT_GROUP_SCHED is not set
15576 +CONFIG_USER_SCHED=y
15577 +# CONFIG_CGROUP_SCHED is not set
15578 +CONFIG_SYSFS_DEPRECATED=y
15579 +# CONFIG_RELAY is not set
15580 +# CONFIG_NAMESPACES is not set
15581 +CONFIG_BLK_DEV_INITRD=y
15582 +CONFIG_INITRAMFS_SOURCE=""
15583 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
15584 +CONFIG_SYSCTL=y
15585 +CONFIG_EMBEDDED=y
15586 +CONFIG_SYSCTL_SYSCALL=y
15587 +CONFIG_KALLSYMS=y
15588 +CONFIG_KALLSYMS_ALL=y
15589 +CONFIG_KALLSYMS_EXTRA_PASS=y
15590 +CONFIG_HOTPLUG=y
15591 +CONFIG_PRINTK=y
15592 +CONFIG_BUG=y
15593 +CONFIG_ELF_CORE=y
15594 +CONFIG_COMPAT_BRK=y
15595 +CONFIG_BASE_FULL=y
15596 +CONFIG_FUTEX=y
15597 +CONFIG_ANON_INODES=y
15598 +CONFIG_EPOLL=y
15599 +CONFIG_SIGNALFD=y
15600 +CONFIG_TIMERFD=y
15601 +CONFIG_EVENTFD=y
15602 +CONFIG_SHMEM=y
15603 +CONFIG_VM_EVENT_COUNTERS=y
15604 +CONFIG_SLUB_DEBUG=y
15605 +# CONFIG_SLAB is not set
15606 +CONFIG_SLUB=y
15607 +# CONFIG_SLOB is not set
15608 +# CONFIG_PROFILING is not set
15609 +# CONFIG_MARKERS is not set
15610 +CONFIG_HAVE_OPROFILE=y
15611 +# CONFIG_KPROBES is not set
15612 +CONFIG_HAVE_KPROBES=y
15613 +CONFIG_PROC_PAGE_MONITOR=y
15614 +CONFIG_SLABINFO=y
15615 +CONFIG_RT_MUTEXES=y
15616 +# CONFIG_TINY_SHMEM is not set
15617 +CONFIG_BASE_SMALL=0
15618 +CONFIG_MODULES=y
15619 +CONFIG_MODULE_UNLOAD=y
15620 +# CONFIG_MODULE_FORCE_UNLOAD is not set
15621 +# CONFIG_MODVERSIONS is not set
15622 +# CONFIG_MODULE_SRCVERSION_ALL is not set
15623 +CONFIG_KMOD=y
15624 +CONFIG_BLOCK=y
15625 +CONFIG_LBD=y
15626 +# CONFIG_BLK_DEV_IO_TRACE is not set
15627 +# CONFIG_LSF is not set
15628 +# CONFIG_BLK_DEV_BSG is not set
15629 +
15630 +#
15631 +# IO Schedulers
15632 +#
15633 +CONFIG_IOSCHED_NOOP=y
15634 +CONFIG_IOSCHED_AS=y
15635 +CONFIG_IOSCHED_DEADLINE=y
15636 +CONFIG_IOSCHED_CFQ=y
15637 +CONFIG_DEFAULT_AS=y
15638 +# CONFIG_DEFAULT_DEADLINE is not set
15639 +# CONFIG_DEFAULT_CFQ is not set
15640 +# CONFIG_DEFAULT_NOOP is not set
15641 +CONFIG_DEFAULT_IOSCHED="anticipatory"
15642 +CONFIG_CLASSIC_RCU=y
15643 +# CONFIG_PREEMPT_RCU is not set
15644 +# CONFIG_PPC4xx_PCI_EXPRESS is not set
15645 +
15646 +#
15647 +# Platform support
15648 +#
15649 +# CONFIG_PPC_MPC512x is not set
15650 +# CONFIG_PPC_MPC5121 is not set
15651 +# CONFIG_PPC_CELL is not set
15652 +# CONFIG_PPC_CELL_NATIVE is not set
15653 +# CONFIG_PQ2ADS is not set
15654 +# CONFIG_BAMBOO is not set
15655 +CONFIG_EBONY=y
15656 +# CONFIG_SEQUOIA is not set
15657 +# CONFIG_TAISHAN is not set
15658 +# CONFIG_KATMAI is not set
15659 +# CONFIG_RAINIER is not set
15660 +# CONFIG_WARP is not set
15661 +CONFIG_440GP=y
15662 +# CONFIG_IPIC is not set
15663 +# CONFIG_MPIC is not set
15664 +# CONFIG_MPIC_WEIRD is not set
15665 +# CONFIG_PPC_I8259 is not set
15666 +# CONFIG_PPC_RTAS is not set
15667 +# CONFIG_MMIO_NVRAM is not set
15668 +# CONFIG_PPC_MPC106 is not set
15669 +# CONFIG_PPC_970_NAP is not set
15670 +# CONFIG_PPC_INDIRECT_IO is not set
15671 +# CONFIG_GENERIC_IOMAP is not set
15672 +# CONFIG_CPU_FREQ is not set
15673 +# CONFIG_FSL_ULI1575 is not set
15674 +CONFIG_OF_RTC=y
15675 +
15676 +#
15677 +# Kernel options
15678 +#
15679 +# CONFIG_HIGHMEM is not set
15680 +# CONFIG_TICK_ONESHOT is not set
15681 +# CONFIG_NO_HZ is not set
15682 +# CONFIG_HIGH_RES_TIMERS is not set
15683 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
15684 +# CONFIG_HZ_100 is not set
15685 +CONFIG_HZ_250=y
15686 +# CONFIG_HZ_300 is not set
15687 +# CONFIG_HZ_1000 is not set
15688 +CONFIG_HZ=250
15689 +# CONFIG_SCHED_HRTICK is not set
15690 +CONFIG_PREEMPT_NONE=y
15691 +# CONFIG_PREEMPT_VOLUNTARY is not set
15692 +# CONFIG_PREEMPT is not set
15693 +CONFIG_RCU_TRACE=y
15694 +CONFIG_BINFMT_ELF=y
15695 +# CONFIG_BINFMT_MISC is not set
15696 +CONFIG_MATH_EMULATION=y
15697 +# CONFIG_IOMMU_HELPER is not set
15698 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
15699 +CONFIG_ARCH_HAS_WALK_MEMORY=y
15700 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
15701 +CONFIG_ARCH_FLATMEM_ENABLE=y
15702 +CONFIG_ARCH_POPULATES_NODE_MAP=y
15703 +CONFIG_SELECT_MEMORY_MODEL=y
15704 +CONFIG_FLATMEM_MANUAL=y
15705 +# CONFIG_DISCONTIGMEM_MANUAL is not set
15706 +# CONFIG_SPARSEMEM_MANUAL is not set
15707 +CONFIG_FLATMEM=y
15708 +CONFIG_FLAT_NODE_MEM_MAP=y
15709 +# CONFIG_SPARSEMEM_STATIC is not set
15710 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
15711 +CONFIG_SPLIT_PTLOCK_CPUS=4
15712 +CONFIG_RESOURCES_64BIT=y
15713 +CONFIG_ZONE_DMA_FLAG=1
15714 +CONFIG_BOUNCE=y
15715 +CONFIG_VIRT_TO_BUS=y
15716 +CONFIG_PROC_DEVICETREE=y
15717 +# CONFIG_CMDLINE_BOOL is not set
15718 +CONFIG_SECCOMP=y
15719 +CONFIG_ISA_DMA_API=y
15720 +
15721 +#
15722 +# Bus options
15723 +#
15724 +CONFIG_ZONE_DMA=y
15725 +CONFIG_PPC_INDIRECT_PCI=y
15726 +CONFIG_PCI=y
15727 +CONFIG_PCI_DOMAINS=y
15728 +CONFIG_PCI_SYSCALL=y
15729 +# CONFIG_PCIEPORTBUS is not set
15730 +CONFIG_ARCH_SUPPORTS_MSI=y
15731 +# CONFIG_PCI_MSI is not set
15732 +CONFIG_PCI_LEGACY=y
15733 +# CONFIG_PCI_DEBUG is not set
15734 +# CONFIG_PCCARD is not set
15735 +# CONFIG_HOTPLUG_PCI is not set
15736 +
15737 +#
15738 +# Advanced setup
15739 +#
15740 +# CONFIG_ADVANCED_OPTIONS is not set
15741 +
15742 +#
15743 +# Default settings for advanced configuration options are used
15744 +#
15745 +CONFIG_HIGHMEM_START=0xfe000000
15746 +CONFIG_LOWMEM_SIZE=0x30000000
15747 +CONFIG_KERNEL_START=0xc0000000
15748 +CONFIG_TASK_SIZE=0xc0000000
15749 +CONFIG_CONSISTENT_START=0xff100000
15750 +CONFIG_CONSISTENT_SIZE=0x00200000
15751 +CONFIG_BOOT_LOAD=0x01000000
15752 +
15753 +#
15754 +# Networking
15755 +#
15756 +CONFIG_NET=y
15757 +
15758 +#
15759 +# Networking options
15760 +#
15761 +CONFIG_PACKET=y
15762 +# CONFIG_PACKET_MMAP is not set
15763 +CONFIG_UNIX=y
15764 +# CONFIG_NET_KEY is not set
15765 +CONFIG_INET=y
15766 +# CONFIG_IP_MULTICAST is not set
15767 +# CONFIG_IP_ADVANCED_ROUTER is not set
15768 +CONFIG_IP_FIB_HASH=y
15769 +CONFIG_IP_PNP=y
15770 +CONFIG_IP_PNP_DHCP=y
15771 +CONFIG_IP_PNP_BOOTP=y
15772 +# CONFIG_IP_PNP_RARP is not set
15773 +# CONFIG_NET_IPIP is not set
15774 +# CONFIG_NET_IPGRE is not set
15775 +# CONFIG_ARPD is not set
15776 +# CONFIG_SYN_COOKIES is not set
15777 +# CONFIG_INET_AH is not set
15778 +# CONFIG_INET_ESP is not set
15779 +# CONFIG_INET_IPCOMP is not set
15780 +# CONFIG_INET_XFRM_TUNNEL is not set
15781 +# CONFIG_INET_TUNNEL is not set
15782 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
15783 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
15784 +# CONFIG_INET_XFRM_MODE_BEET is not set
15785 +# CONFIG_INET_LRO is not set
15786 +CONFIG_INET_DIAG=y
15787 +CONFIG_INET_TCP_DIAG=y
15788 +# CONFIG_TCP_CONG_ADVANCED is not set
15789 +CONFIG_TCP_CONG_CUBIC=y
15790 +CONFIG_DEFAULT_TCP_CONG="cubic"
15791 +# CONFIG_TCP_MD5SIG is not set
15792 +# CONFIG_IPV6 is not set
15793 +# CONFIG_INET6_XFRM_TUNNEL is not set
15794 +# CONFIG_INET6_TUNNEL is not set
15795 +# CONFIG_NETWORK_SECMARK is not set
15796 +# CONFIG_NETFILTER is not set
15797 +# CONFIG_IP_DCCP is not set
15798 +# CONFIG_IP_SCTP is not set
15799 +# CONFIG_TIPC is not set
15800 +# CONFIG_ATM is not set
15801 +# CONFIG_BRIDGE is not set
15802 +# CONFIG_VLAN_8021Q is not set
15803 +# CONFIG_DECNET is not set
15804 +# CONFIG_LLC2 is not set
15805 +# CONFIG_IPX is not set
15806 +# CONFIG_ATALK is not set
15807 +# CONFIG_X25 is not set
15808 +# CONFIG_LAPB is not set
15809 +# CONFIG_ECONET is not set
15810 +# CONFIG_WAN_ROUTER is not set
15811 +# CONFIG_NET_SCHED is not set
15812 +
15813 +#
15814 +# Network testing
15815 +#
15816 +# CONFIG_NET_PKTGEN is not set
15817 +# CONFIG_HAMRADIO is not set
15818 +# CONFIG_CAN is not set
15819 +# CONFIG_IRDA is not set
15820 +# CONFIG_BT is not set
15821 +# CONFIG_AF_RXRPC is not set
15822 +
15823 +#
15824 +# Wireless
15825 +#
15826 +# CONFIG_CFG80211 is not set
15827 +# CONFIG_WIRELESS_EXT is not set
15828 +# CONFIG_MAC80211 is not set
15829 +# CONFIG_IEEE80211 is not set
15830 +# CONFIG_RFKILL is not set
15831 +# CONFIG_NET_9P is not set
15832 +
15833 +#
15834 +# Device Drivers
15835 +#
15836 +
15837 +#
15838 +# Generic Driver Options
15839 +#
15840 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
15841 +CONFIG_STANDALONE=y
15842 +CONFIG_PREVENT_FIRMWARE_BUILD=y
15843 +CONFIG_FW_LOADER=y
15844 +# CONFIG_DEBUG_DRIVER is not set
15845 +# CONFIG_DEBUG_DEVRES is not set
15846 +# CONFIG_SYS_HYPERVISOR is not set
15847 +CONFIG_CONNECTOR=y
15848 +CONFIG_PROC_EVENTS=y
15849 +CONFIG_MTD=y
15850 +# CONFIG_MTD_DEBUG is not set
15851 +# CONFIG_MTD_CONCAT is not set
15852 +CONFIG_MTD_PARTITIONS=y
15853 +# CONFIG_MTD_REDBOOT_PARTS is not set
15854 +# CONFIG_MTD_CMDLINE_PARTS is not set
15855 +CONFIG_MTD_OF_PARTS=y
15856 +
15857 +#
15858 +# User Modules And Translation Layers
15859 +#
15860 +CONFIG_MTD_CHAR=y
15861 +CONFIG_MTD_BLKDEVS=y
15862 +CONFIG_MTD_BLOCK=y
15863 +# CONFIG_FTL is not set
15864 +# CONFIG_NFTL is not set
15865 +# CONFIG_INFTL is not set
15866 +# CONFIG_RFD_FTL is not set
15867 +# CONFIG_SSFDC is not set
15868 +# CONFIG_MTD_OOPS is not set
15869 +
15870 +#
15871 +# RAM/ROM/Flash chip drivers
15872 +#
15873 +CONFIG_MTD_CFI=y
15874 +CONFIG_MTD_JEDECPROBE=y
15875 +CONFIG_MTD_GEN_PROBE=y
15876 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
15877 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
15878 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
15879 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
15880 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
15881 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
15882 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
15883 +CONFIG_MTD_CFI_I1=y
15884 +CONFIG_MTD_CFI_I2=y
15885 +# CONFIG_MTD_CFI_I4 is not set
15886 +# CONFIG_MTD_CFI_I8 is not set
15887 +# CONFIG_MTD_CFI_INTELEXT is not set
15888 +CONFIG_MTD_CFI_AMDSTD=y
15889 +# CONFIG_MTD_CFI_STAA is not set
15890 +CONFIG_MTD_CFI_UTIL=y
15891 +# CONFIG_MTD_RAM is not set
15892 +# CONFIG_MTD_ROM is not set
15893 +# CONFIG_MTD_ABSENT is not set
15894 +
15895 +#
15896 +# Mapping drivers for chip access
15897 +#
15898 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
15899 +# CONFIG_MTD_PHYSMAP is not set
15900 +CONFIG_MTD_PHYSMAP_OF=y
15901 +# CONFIG_MTD_INTEL_VR_NOR is not set
15902 +# CONFIG_MTD_PLATRAM is not set
15903 +
15904 +#
15905 +# Self-contained MTD device drivers
15906 +#
15907 +# CONFIG_MTD_PMC551 is not set
15908 +# CONFIG_MTD_SLRAM is not set
15909 +# CONFIG_MTD_PHRAM is not set
15910 +# CONFIG_MTD_MTDRAM is not set
15911 +# CONFIG_MTD_BLOCK2MTD is not set
15912 +
15913 +#
15914 +# Disk-On-Chip Device Drivers
15915 +#
15916 +# CONFIG_MTD_DOC2000 is not set
15917 +# CONFIG_MTD_DOC2001 is not set
15918 +# CONFIG_MTD_DOC2001PLUS is not set
15919 +# CONFIG_MTD_NAND is not set
15920 +# CONFIG_MTD_ONENAND is not set
15921 +
15922 +#
15923 +# UBI - Unsorted block images
15924 +#
15925 +# CONFIG_MTD_UBI is not set
15926 +CONFIG_OF_DEVICE=y
15927 +# CONFIG_PARPORT is not set
15928 +CONFIG_BLK_DEV=y
15929 +# CONFIG_BLK_DEV_FD is not set
15930 +# CONFIG_BLK_CPQ_DA is not set
15931 +# CONFIG_BLK_CPQ_CISS_DA is not set
15932 +# CONFIG_BLK_DEV_DAC960 is not set
15933 +# CONFIG_BLK_DEV_UMEM is not set
15934 +# CONFIG_BLK_DEV_COW_COMMON is not set
15935 +# CONFIG_BLK_DEV_LOOP is not set
15936 +# CONFIG_BLK_DEV_NBD is not set
15937 +# CONFIG_BLK_DEV_SX8 is not set
15938 +CONFIG_BLK_DEV_RAM=y
15939 +CONFIG_BLK_DEV_RAM_COUNT=16
15940 +CONFIG_BLK_DEV_RAM_SIZE=35000
15941 +# CONFIG_BLK_DEV_XIP is not set
15942 +# CONFIG_CDROM_PKTCDVD is not set
15943 +# CONFIG_ATA_OVER_ETH is not set
15944 +# CONFIG_XILINX_SYSACE is not set
15945 +CONFIG_MISC_DEVICES=y
15946 +# CONFIG_PHANTOM is not set
15947 +# CONFIG_EEPROM_93CX6 is not set
15948 +# CONFIG_SGI_IOC4 is not set
15949 +# CONFIG_TIFM_CORE is not set
15950 +# CONFIG_ENCLOSURE_SERVICES is not set
15951 +CONFIG_HAVE_IDE=y
15952 +# CONFIG_IDE is not set
15953 +
15954 +#
15955 +# SCSI device support
15956 +#
15957 +# CONFIG_RAID_ATTRS is not set
15958 +# CONFIG_SCSI is not set
15959 +# CONFIG_SCSI_DMA is not set
15960 +# CONFIG_SCSI_NETLINK is not set
15961 +# CONFIG_ATA is not set
15962 +# CONFIG_MD is not set
15963 +# CONFIG_FUSION is not set
15964 +
15965 +#
15966 +# IEEE 1394 (FireWire) support
15967 +#
15968 +# CONFIG_FIREWIRE is not set
15969 +# CONFIG_IEEE1394 is not set
15970 +# CONFIG_I2O is not set
15971 +# CONFIG_MACINTOSH_DRIVERS is not set
15972 +CONFIG_NETDEVICES=y
15973 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
15974 +# CONFIG_DUMMY is not set
15975 +# CONFIG_BONDING is not set
15976 +# CONFIG_MACVLAN is not set
15977 +# CONFIG_EQUALIZER is not set
15978 +# CONFIG_TUN is not set
15979 +# CONFIG_VETH is not set
15980 +# CONFIG_ARCNET is not set
15981 +# CONFIG_PHYLIB is not set
15982 +CONFIG_NET_ETHERNET=y
15983 +# CONFIG_MII is not set
15984 +# CONFIG_HAPPYMEAL is not set
15985 +# CONFIG_SUNGEM is not set
15986 +# CONFIG_CASSINI is not set
15987 +# CONFIG_NET_VENDOR_3COM is not set
15988 +# CONFIG_NET_TULIP is not set
15989 +# CONFIG_HP100 is not set
15990 +CONFIG_IBM_NEW_EMAC=y
15991 +CONFIG_IBM_NEW_EMAC_RXB=128
15992 +CONFIG_IBM_NEW_EMAC_TXB=64
15993 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
15994 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
15995 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
15996 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
15997 +CONFIG_IBM_NEW_EMAC_ZMII=y
15998 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
15999 +# CONFIG_IBM_NEW_EMAC_TAH is not set
16000 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
16001 +# CONFIG_NET_PCI is not set
16002 +# CONFIG_B44 is not set
16003 +CONFIG_NETDEV_1000=y
16004 +# CONFIG_ACENIC is not set
16005 +# CONFIG_DL2K is not set
16006 +# CONFIG_E1000 is not set
16007 +# CONFIG_E1000E is not set
16008 +# CONFIG_E1000E_ENABLED is not set
16009 +# CONFIG_IP1000 is not set
16010 +# CONFIG_IGB is not set
16011 +# CONFIG_NS83820 is not set
16012 +# CONFIG_HAMACHI is not set
16013 +# CONFIG_YELLOWFIN is not set
16014 +# CONFIG_R8169 is not set
16015 +# CONFIG_SIS190 is not set
16016 +# CONFIG_SKGE is not set
16017 +# CONFIG_SKY2 is not set
16018 +# CONFIG_SK98LIN is not set
16019 +# CONFIG_VIA_VELOCITY is not set
16020 +# CONFIG_TIGON3 is not set
16021 +# CONFIG_BNX2 is not set
16022 +# CONFIG_QLA3XXX is not set
16023 +# CONFIG_ATL1 is not set
16024 +CONFIG_NETDEV_10000=y
16025 +# CONFIG_CHELSIO_T1 is not set
16026 +# CONFIG_CHELSIO_T3 is not set
16027 +# CONFIG_IXGBE is not set
16028 +# CONFIG_IXGB is not set
16029 +# CONFIG_S2IO is not set
16030 +# CONFIG_MYRI10GE is not set
16031 +# CONFIG_NETXEN_NIC is not set
16032 +# CONFIG_NIU is not set
16033 +# CONFIG_MLX4_CORE is not set
16034 +# CONFIG_TEHUTI is not set
16035 +# CONFIG_BNX2X is not set
16036 +# CONFIG_TR is not set
16037 +
16038 +#
16039 +# Wireless LAN
16040 +#
16041 +# CONFIG_WLAN_PRE80211 is not set
16042 +# CONFIG_WLAN_80211 is not set
16043 +# CONFIG_WAN is not set
16044 +# CONFIG_FDDI is not set
16045 +# CONFIG_HIPPI is not set
16046 +# CONFIG_PPP is not set
16047 +# CONFIG_SLIP is not set
16048 +# CONFIG_NETCONSOLE is not set
16049 +# CONFIG_NETPOLL is not set
16050 +# CONFIG_NET_POLL_CONTROLLER is not set
16051 +# CONFIG_ISDN is not set
16052 +# CONFIG_PHONE is not set
16053 +
16054 +#
16055 +# Input device support
16056 +#
16057 +# CONFIG_INPUT is not set
16058 +
16059 +#
16060 +# Hardware I/O ports
16061 +#
16062 +# CONFIG_SERIO is not set
16063 +# CONFIG_GAMEPORT is not set
16064 +
16065 +#
16066 +# Character devices
16067 +#
16068 +# CONFIG_VT is not set
16069 +# CONFIG_SERIAL_NONSTANDARD is not set
16070 +# CONFIG_NOZOMI is not set
16071 +
16072 +#
16073 +# Serial drivers
16074 +#
16075 +CONFIG_SERIAL_8250=y
16076 +CONFIG_SERIAL_8250_CONSOLE=y
16077 +# CONFIG_SERIAL_8250_PCI is not set
16078 +CONFIG_SERIAL_8250_NR_UARTS=4
16079 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
16080 +CONFIG_SERIAL_8250_EXTENDED=y
16081 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
16082 +CONFIG_SERIAL_8250_SHARE_IRQ=y
16083 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
16084 +# CONFIG_SERIAL_8250_RSA is not set
16085 +
16086 +#
16087 +# Non-8250 serial port support
16088 +#
16089 +# CONFIG_SERIAL_UARTLITE is not set
16090 +CONFIG_SERIAL_CORE=y
16091 +CONFIG_SERIAL_CORE_CONSOLE=y
16092 +# CONFIG_SERIAL_JSM is not set
16093 +CONFIG_SERIAL_OF_PLATFORM=y
16094 +CONFIG_UNIX98_PTYS=y
16095 +CONFIG_LEGACY_PTYS=y
16096 +CONFIG_LEGACY_PTY_COUNT=256
16097 +# CONFIG_IPMI_HANDLER is not set
16098 +# CONFIG_HW_RANDOM is not set
16099 +# CONFIG_NVRAM is not set
16100 +# CONFIG_GEN_RTC is not set
16101 +# CONFIG_R3964 is not set
16102 +# CONFIG_APPLICOM is not set
16103 +# CONFIG_RAW_DRIVER is not set
16104 +# CONFIG_TCG_TPM is not set
16105 +CONFIG_DEVPORT=y
16106 +# CONFIG_I2C is not set
16107 +
16108 +#
16109 +# SPI support
16110 +#
16111 +# CONFIG_SPI is not set
16112 +# CONFIG_SPI_MASTER is not set
16113 +# CONFIG_W1 is not set
16114 +# CONFIG_POWER_SUPPLY is not set
16115 +# CONFIG_HWMON is not set
16116 +CONFIG_THERMAL=y
16117 +# CONFIG_WATCHDOG is not set
16118 +
16119 +#
16120 +# Sonics Silicon Backplane
16121 +#
16122 +CONFIG_SSB_POSSIBLE=y
16123 +# CONFIG_SSB is not set
16124 +
16125 +#
16126 +# Multifunction device drivers
16127 +#
16128 +# CONFIG_MFD_SM501 is not set
16129 +
16130 +#
16131 +# Multimedia devices
16132 +#
16133 +# CONFIG_VIDEO_DEV is not set
16134 +# CONFIG_DVB_CORE is not set
16135 +# CONFIG_DAB is not set
16136 +
16137 +#
16138 +# Graphics support
16139 +#
16140 +# CONFIG_AGP is not set
16141 +# CONFIG_DRM is not set
16142 +# CONFIG_VGASTATE is not set
16143 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
16144 +# CONFIG_FB is not set
16145 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
16146 +
16147 +#
16148 +# Display device support
16149 +#
16150 +# CONFIG_DISPLAY_SUPPORT is not set
16151 +
16152 +#
16153 +# Sound
16154 +#
16155 +# CONFIG_SOUND is not set
16156 +CONFIG_USB_SUPPORT=y
16157 +CONFIG_USB_ARCH_HAS_HCD=y
16158 +CONFIG_USB_ARCH_HAS_OHCI=y
16159 +CONFIG_USB_ARCH_HAS_EHCI=y
16160 +# CONFIG_USB is not set
16161 +
16162 +#
16163 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
16164 +#
16165 +# CONFIG_USB_GADGET is not set
16166 +# CONFIG_MMC is not set
16167 +# CONFIG_MEMSTICK is not set
16168 +# CONFIG_NEW_LEDS is not set
16169 +# CONFIG_INFINIBAND is not set
16170 +# CONFIG_EDAC is not set
16171 +# CONFIG_RTC_CLASS is not set
16172 +
16173 +#
16174 +# Userspace I/O
16175 +#
16176 +# CONFIG_UIO is not set
16177 +
16178 +#
16179 +# File systems
16180 +#
16181 +CONFIG_EXT2_FS=y
16182 +# CONFIG_EXT2_FS_XATTR is not set
16183 +# CONFIG_EXT2_FS_XIP is not set
16184 +# CONFIG_EXT3_FS is not set
16185 +# CONFIG_EXT4DEV_FS is not set
16186 +# CONFIG_REISERFS_FS is not set
16187 +# CONFIG_JFS_FS is not set
16188 +# CONFIG_FS_POSIX_ACL is not set
16189 +# CONFIG_XFS_FS is not set
16190 +# CONFIG_GFS2_FS is not set
16191 +# CONFIG_OCFS2_FS is not set
16192 +CONFIG_DNOTIFY=y
16193 +CONFIG_INOTIFY=y
16194 +CONFIG_INOTIFY_USER=y
16195 +# CONFIG_QUOTA is not set
16196 +# CONFIG_AUTOFS_FS is not set
16197 +# CONFIG_AUTOFS4_FS is not set
16198 +# CONFIG_FUSE_FS is not set
16199 +
16200 +#
16201 +# CD-ROM/DVD Filesystems
16202 +#
16203 +# CONFIG_ISO9660_FS is not set
16204 +# CONFIG_UDF_FS is not set
16205 +
16206 +#
16207 +# DOS/FAT/NT Filesystems
16208 +#
16209 +# CONFIG_MSDOS_FS is not set
16210 +# CONFIG_VFAT_FS is not set
16211 +# CONFIG_NTFS_FS is not set
16212 +
16213 +#
16214 +# Pseudo filesystems
16215 +#
16216 +CONFIG_PROC_FS=y
16217 +CONFIG_PROC_KCORE=y
16218 +CONFIG_PROC_SYSCTL=y
16219 +CONFIG_SYSFS=y
16220 +CONFIG_TMPFS=y
16221 +# CONFIG_TMPFS_POSIX_ACL is not set
16222 +# CONFIG_HUGETLB_PAGE is not set
16223 +# CONFIG_CONFIGFS_FS is not set
16224 +
16225 +#
16226 +# Miscellaneous filesystems
16227 +#
16228 +# CONFIG_ADFS_FS is not set
16229 +# CONFIG_AFFS_FS is not set
16230 +# CONFIG_HFS_FS is not set
16231 +# CONFIG_HFSPLUS_FS is not set
16232 +# CONFIG_BEFS_FS is not set
16233 +# CONFIG_BFS_FS is not set
16234 +# CONFIG_EFS_FS is not set
16235 +CONFIG_JFFS2_FS=y
16236 +CONFIG_JFFS2_FS_DEBUG=0
16237 +CONFIG_JFFS2_FS_WRITEBUFFER=y
16238 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
16239 +# CONFIG_JFFS2_SUMMARY is not set
16240 +# CONFIG_JFFS2_FS_XATTR is not set
16241 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
16242 +CONFIG_JFFS2_ZLIB=y
16243 +# CONFIG_JFFS2_LZO is not set
16244 +CONFIG_JFFS2_RTIME=y
16245 +# CONFIG_JFFS2_RUBIN is not set
16246 +CONFIG_CRAMFS=y
16247 +# CONFIG_VXFS_FS is not set
16248 +# CONFIG_MINIX_FS is not set
16249 +# CONFIG_HPFS_FS is not set
16250 +# CONFIG_QNX4FS_FS is not set
16251 +# CONFIG_ROMFS_FS is not set
16252 +# CONFIG_SYSV_FS is not set
16253 +# CONFIG_UFS_FS is not set
16254 +CONFIG_NETWORK_FILESYSTEMS=y
16255 +CONFIG_NFS_FS=y
16256 +CONFIG_NFS_V3=y
16257 +# CONFIG_NFS_V3_ACL is not set
16258 +# CONFIG_NFS_V4 is not set
16259 +# CONFIG_NFS_DIRECTIO is not set
16260 +# CONFIG_NFSD is not set
16261 +CONFIG_ROOT_NFS=y
16262 +CONFIG_LOCKD=y
16263 +CONFIG_LOCKD_V4=y
16264 +CONFIG_NFS_COMMON=y
16265 +CONFIG_SUNRPC=y
16266 +# CONFIG_SUNRPC_BIND34 is not set
16267 +# CONFIG_RPCSEC_GSS_KRB5 is not set
16268 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
16269 +# CONFIG_SMB_FS is not set
16270 +# CONFIG_CIFS is not set
16271 +# CONFIG_NCP_FS is not set
16272 +# CONFIG_CODA_FS is not set
16273 +# CONFIG_AFS_FS is not set
16274 +
16275 +#
16276 +# Partition Types
16277 +#
16278 +# CONFIG_PARTITION_ADVANCED is not set
16279 +CONFIG_MSDOS_PARTITION=y
16280 +# CONFIG_NLS is not set
16281 +# CONFIG_DLM is not set
16282 +
16283 +#
16284 +# Library routines
16285 +#
16286 +CONFIG_BITREVERSE=y
16287 +# CONFIG_CRC_CCITT is not set
16288 +# CONFIG_CRC16 is not set
16289 +# CONFIG_CRC_ITU_T is not set
16290 +CONFIG_CRC32=y
16291 +# CONFIG_CRC7 is not set
16292 +# CONFIG_LIBCRC32C is not set
16293 +CONFIG_ZLIB_INFLATE=y
16294 +CONFIG_ZLIB_DEFLATE=y
16295 +CONFIG_PLIST=y
16296 +CONFIG_HAS_IOMEM=y
16297 +CONFIG_HAS_IOPORT=y
16298 +CONFIG_HAS_DMA=y
16299 +
16300 +#
16301 +# Kernel hacking
16302 +#
16303 +# CONFIG_PRINTK_TIME is not set
16304 +CONFIG_ENABLE_WARN_DEPRECATED=y
16305 +CONFIG_ENABLE_MUST_CHECK=y
16306 +CONFIG_MAGIC_SYSRQ=y
16307 +# CONFIG_UNUSED_SYMBOLS is not set
16308 +CONFIG_DEBUG_FS=y
16309 +# CONFIG_HEADERS_CHECK is not set
16310 +CONFIG_DEBUG_KERNEL=y
16311 +# CONFIG_DEBUG_SHIRQ is not set
16312 +CONFIG_DETECT_SOFTLOCKUP=y
16313 +CONFIG_SCHED_DEBUG=y
16314 +# CONFIG_SCHEDSTATS is not set
16315 +# CONFIG_TIMER_STATS is not set
16316 +# CONFIG_SLUB_DEBUG_ON is not set
16317 +# CONFIG_SLUB_STATS is not set
16318 +# CONFIG_DEBUG_RT_MUTEXES is not set
16319 +# CONFIG_RT_MUTEX_TESTER is not set
16320 +# CONFIG_DEBUG_SPINLOCK is not set
16321 +# CONFIG_DEBUG_MUTEXES is not set
16322 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
16323 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
16324 +# CONFIG_DEBUG_KOBJECT is not set
16325 +CONFIG_DEBUG_BUGVERBOSE=y
16326 +# CONFIG_DEBUG_INFO is not set
16327 +# CONFIG_DEBUG_VM is not set
16328 +# CONFIG_DEBUG_LIST is not set
16329 +# CONFIG_DEBUG_SG is not set
16330 +# CONFIG_BOOT_PRINTK_DELAY is not set
16331 +# CONFIG_RCU_TORTURE_TEST is not set
16332 +# CONFIG_BACKTRACE_SELF_TEST is not set
16333 +# CONFIG_FAULT_INJECTION is not set
16334 +# CONFIG_SAMPLES is not set
16335 +# CONFIG_DEBUG_STACKOVERFLOW is not set
16336 +# CONFIG_DEBUG_STACK_USAGE is not set
16337 +# CONFIG_DEBUG_PAGEALLOC is not set
16338 +# CONFIG_DEBUGGER is not set
16339 +# CONFIG_VIRQ_DEBUG is not set
16340 +# CONFIG_BDI_SWITCH is not set
16341 +# CONFIG_PPC_EARLY_DEBUG is not set
16342 +
16343 +#
16344 +# Security options
16345 +#
16346 +# CONFIG_KEYS is not set
16347 +# CONFIG_SECURITY is not set
16348 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
16349 +CONFIG_CRYPTO=y
16350 +CONFIG_CRYPTO_ALGAPI=y
16351 +CONFIG_CRYPTO_BLKCIPHER=y
16352 +# CONFIG_CRYPTO_SEQIV is not set
16353 +CONFIG_CRYPTO_MANAGER=y
16354 +# CONFIG_CRYPTO_HMAC is not set
16355 +# CONFIG_CRYPTO_XCBC is not set
16356 +# CONFIG_CRYPTO_NULL is not set
16357 +# CONFIG_CRYPTO_MD4 is not set
16358 +CONFIG_CRYPTO_MD5=y
16359 +# CONFIG_CRYPTO_SHA1 is not set
16360 +# CONFIG_CRYPTO_SHA256 is not set
16361 +# CONFIG_CRYPTO_SHA512 is not set
16362 +# CONFIG_CRYPTO_WP512 is not set
16363 +# CONFIG_CRYPTO_TGR192 is not set
16364 +# CONFIG_CRYPTO_GF128MUL is not set
16365 +CONFIG_CRYPTO_ECB=y
16366 +CONFIG_CRYPTO_CBC=y
16367 +CONFIG_CRYPTO_PCBC=y
16368 +# CONFIG_CRYPTO_LRW is not set
16369 +# CONFIG_CRYPTO_XTS is not set
16370 +# CONFIG_CRYPTO_CTR is not set
16371 +# CONFIG_CRYPTO_GCM is not set
16372 +# CONFIG_CRYPTO_CCM is not set
16373 +# CONFIG_CRYPTO_CRYPTD is not set
16374 +CONFIG_CRYPTO_DES=y
16375 +# CONFIG_CRYPTO_FCRYPT is not set
16376 +# CONFIG_CRYPTO_BLOWFISH is not set
16377 +# CONFIG_CRYPTO_TWOFISH is not set
16378 +# CONFIG_CRYPTO_SERPENT is not set
16379 +# CONFIG_CRYPTO_AES is not set
16380 +# CONFIG_CRYPTO_CAST5 is not set
16381 +# CONFIG_CRYPTO_CAST6 is not set
16382 +# CONFIG_CRYPTO_TEA is not set
16383 +# CONFIG_CRYPTO_ARC4 is not set
16384 +# CONFIG_CRYPTO_KHAZAD is not set
16385 +# CONFIG_CRYPTO_ANUBIS is not set
16386 +# CONFIG_CRYPTO_SEED is not set
16387 +# CONFIG_CRYPTO_SALSA20 is not set
16388 +# CONFIG_CRYPTO_DEFLATE is not set
16389 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
16390 +# CONFIG_CRYPTO_CRC32C is not set
16391 +# CONFIG_CRYPTO_CAMELLIA is not set
16392 +# CONFIG_CRYPTO_TEST is not set
16393 +# CONFIG_CRYPTO_AUTHENC is not set
16394 +# CONFIG_CRYPTO_LZO is not set
16395 +# CONFIG_CRYPTO_HW is not set
16396 +# CONFIG_PPC_CLOCK is not set
16397 Index: linux-2.6.25.4/arch/powerpc/configs/44x/katmai_defconfig
16398 ===================================================================
16399 --- /dev/null
16400 +++ linux-2.6.25.4/arch/powerpc/configs/44x/katmai_defconfig
16401 @@ -0,0 +1,790 @@
16402 +#
16403 +# Automatically generated make config: don't edit
16404 +# Linux kernel version: 2.6.24-rc6
16405 +# Mon Dec 24 11:17:43 2007
16406 +#
16407 +# CONFIG_PPC64 is not set
16408 +
16409 +#
16410 +# Processor support
16411 +#
16412 +# CONFIG_6xx is not set
16413 +# CONFIG_PPC_85xx is not set
16414 +# CONFIG_PPC_8xx is not set
16415 +# CONFIG_40x is not set
16416 +CONFIG_44x=y
16417 +# CONFIG_E200 is not set
16418 +CONFIG_4xx=y
16419 +CONFIG_BOOKE=y
16420 +CONFIG_PTE_64BIT=y
16421 +CONFIG_PHYS_64BIT=y
16422 +# CONFIG_PPC_MM_SLICES is not set
16423 +CONFIG_NOT_COHERENT_CACHE=y
16424 +CONFIG_PPC32=y
16425 +CONFIG_WORD_SIZE=32
16426 +CONFIG_PPC_MERGE=y
16427 +CONFIG_MMU=y
16428 +CONFIG_GENERIC_CMOS_UPDATE=y
16429 +CONFIG_GENERIC_TIME=y
16430 +CONFIG_GENERIC_TIME_VSYSCALL=y
16431 +CONFIG_GENERIC_CLOCKEVENTS=y
16432 +CONFIG_GENERIC_HARDIRQS=y
16433 +CONFIG_IRQ_PER_CPU=y
16434 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
16435 +CONFIG_ARCH_HAS_ILOG2_U32=y
16436 +CONFIG_GENERIC_HWEIGHT=y
16437 +CONFIG_GENERIC_CALIBRATE_DELAY=y
16438 +CONFIG_GENERIC_FIND_NEXT_BIT=y
16439 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
16440 +CONFIG_PPC=y
16441 +CONFIG_EARLY_PRINTK=y
16442 +CONFIG_GENERIC_NVRAM=y
16443 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
16444 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
16445 +CONFIG_PPC_OF=y
16446 +CONFIG_OF=y
16447 +CONFIG_PPC_UDBG_16550=y
16448 +# CONFIG_GENERIC_TBSYNC is not set
16449 +CONFIG_AUDIT_ARCH=y
16450 +CONFIG_GENERIC_BUG=y
16451 +# CONFIG_DEFAULT_UIMAGE is not set
16452 +CONFIG_PPC_DCR_NATIVE=y
16453 +# CONFIG_PPC_DCR_MMIO is not set
16454 +CONFIG_PPC_DCR=y
16455 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
16456 +
16457 +#
16458 +# General setup
16459 +#
16460 +CONFIG_EXPERIMENTAL=y
16461 +CONFIG_BROKEN_ON_SMP=y
16462 +CONFIG_INIT_ENV_ARG_LIMIT=32
16463 +CONFIG_LOCALVERSION=""
16464 +CONFIG_LOCALVERSION_AUTO=y
16465 +CONFIG_SWAP=y
16466 +CONFIG_SYSVIPC=y
16467 +CONFIG_SYSVIPC_SYSCTL=y
16468 +CONFIG_POSIX_MQUEUE=y
16469 +# CONFIG_BSD_PROCESS_ACCT is not set
16470 +# CONFIG_TASKSTATS is not set
16471 +# CONFIG_USER_NS is not set
16472 +# CONFIG_PID_NS is not set
16473 +# CONFIG_AUDIT is not set
16474 +# CONFIG_IKCONFIG is not set
16475 +CONFIG_LOG_BUF_SHIFT=14
16476 +# CONFIG_CGROUPS is not set
16477 +CONFIG_FAIR_GROUP_SCHED=y
16478 +CONFIG_FAIR_USER_SCHED=y
16479 +# CONFIG_FAIR_CGROUP_SCHED is not set
16480 +CONFIG_SYSFS_DEPRECATED=y
16481 +# CONFIG_RELAY is not set
16482 +CONFIG_BLK_DEV_INITRD=y
16483 +CONFIG_INITRAMFS_SOURCE=""
16484 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
16485 +CONFIG_SYSCTL=y
16486 +CONFIG_EMBEDDED=y
16487 +CONFIG_SYSCTL_SYSCALL=y
16488 +CONFIG_KALLSYMS=y
16489 +# CONFIG_KALLSYMS_ALL is not set
16490 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
16491 +CONFIG_HOTPLUG=y
16492 +CONFIG_PRINTK=y
16493 +CONFIG_BUG=y
16494 +CONFIG_ELF_CORE=y
16495 +CONFIG_BASE_FULL=y
16496 +CONFIG_FUTEX=y
16497 +CONFIG_ANON_INODES=y
16498 +CONFIG_EPOLL=y
16499 +CONFIG_SIGNALFD=y
16500 +CONFIG_EVENTFD=y
16501 +CONFIG_SHMEM=y
16502 +CONFIG_VM_EVENT_COUNTERS=y
16503 +CONFIG_SLUB_DEBUG=y
16504 +# CONFIG_SLAB is not set
16505 +CONFIG_SLUB=y
16506 +# CONFIG_SLOB is not set
16507 +CONFIG_RT_MUTEXES=y
16508 +# CONFIG_TINY_SHMEM is not set
16509 +CONFIG_BASE_SMALL=0
16510 +CONFIG_MODULES=y
16511 +CONFIG_MODULE_UNLOAD=y
16512 +# CONFIG_MODULE_FORCE_UNLOAD is not set
16513 +# CONFIG_MODVERSIONS is not set
16514 +# CONFIG_MODULE_SRCVERSION_ALL is not set
16515 +CONFIG_KMOD=y
16516 +CONFIG_BLOCK=y
16517 +CONFIG_LBD=y
16518 +# CONFIG_BLK_DEV_IO_TRACE is not set
16519 +# CONFIG_LSF is not set
16520 +# CONFIG_BLK_DEV_BSG is not set
16521 +
16522 +#
16523 +# IO Schedulers
16524 +#
16525 +CONFIG_IOSCHED_NOOP=y
16526 +CONFIG_IOSCHED_AS=y
16527 +CONFIG_IOSCHED_DEADLINE=y
16528 +CONFIG_IOSCHED_CFQ=y
16529 +CONFIG_DEFAULT_AS=y
16530 +# CONFIG_DEFAULT_DEADLINE is not set
16531 +# CONFIG_DEFAULT_CFQ is not set
16532 +# CONFIG_DEFAULT_NOOP is not set
16533 +CONFIG_DEFAULT_IOSCHED="anticipatory"
16534 +CONFIG_PPC4xx_PCI_EXPRESS=y
16535 +
16536 +#
16537 +# Platform support
16538 +#
16539 +# CONFIG_PPC_MPC52xx is not set
16540 +# CONFIG_PPC_MPC5200 is not set
16541 +# CONFIG_PPC_CELL is not set
16542 +# CONFIG_PPC_CELL_NATIVE is not set
16543 +# CONFIG_PQ2ADS is not set
16544 +# CONFIG_BAMBOO is not set
16545 +# CONFIG_EBONY is not set
16546 +# CONFIG_SEQUOIA is not set
16547 +# CONFIG_TAISHAN is not set
16548 +CONFIG_KATMAI=y
16549 +# CONFIG_RAINIER is not set
16550 +CONFIG_440SPe=y
16551 +# CONFIG_MPIC is not set
16552 +# CONFIG_MPIC_WEIRD is not set
16553 +# CONFIG_PPC_I8259 is not set
16554 +# CONFIG_PPC_RTAS is not set
16555 +# CONFIG_MMIO_NVRAM is not set
16556 +# CONFIG_PPC_MPC106 is not set
16557 +# CONFIG_PPC_970_NAP is not set
16558 +# CONFIG_PPC_INDIRECT_IO is not set
16559 +# CONFIG_GENERIC_IOMAP is not set
16560 +# CONFIG_CPU_FREQ is not set
16561 +# CONFIG_CPM2 is not set
16562 +# CONFIG_FSL_ULI1575 is not set
16563 +
16564 +#
16565 +# Kernel options
16566 +#
16567 +# CONFIG_HIGHMEM is not set
16568 +# CONFIG_TICK_ONESHOT is not set
16569 +# CONFIG_NO_HZ is not set
16570 +# CONFIG_HIGH_RES_TIMERS is not set
16571 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
16572 +# CONFIG_HZ_100 is not set
16573 +CONFIG_HZ_250=y
16574 +# CONFIG_HZ_300 is not set
16575 +# CONFIG_HZ_1000 is not set
16576 +CONFIG_HZ=250
16577 +CONFIG_PREEMPT_NONE=y
16578 +# CONFIG_PREEMPT_VOLUNTARY is not set
16579 +# CONFIG_PREEMPT is not set
16580 +CONFIG_BINFMT_ELF=y
16581 +# CONFIG_BINFMT_MISC is not set
16582 +# CONFIG_MATH_EMULATION is not set
16583 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
16584 +CONFIG_ARCH_FLATMEM_ENABLE=y
16585 +CONFIG_ARCH_POPULATES_NODE_MAP=y
16586 +CONFIG_SELECT_MEMORY_MODEL=y
16587 +CONFIG_FLATMEM_MANUAL=y
16588 +# CONFIG_DISCONTIGMEM_MANUAL is not set
16589 +# CONFIG_SPARSEMEM_MANUAL is not set
16590 +CONFIG_FLATMEM=y
16591 +CONFIG_FLAT_NODE_MEM_MAP=y
16592 +# CONFIG_SPARSEMEM_STATIC is not set
16593 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
16594 +CONFIG_SPLIT_PTLOCK_CPUS=4
16595 +CONFIG_RESOURCES_64BIT=y
16596 +CONFIG_ZONE_DMA_FLAG=1
16597 +CONFIG_BOUNCE=y
16598 +CONFIG_VIRT_TO_BUS=y
16599 +CONFIG_PROC_DEVICETREE=y
16600 +CONFIG_CMDLINE_BOOL=y
16601 +CONFIG_CMDLINE=""
16602 +CONFIG_SECCOMP=y
16603 +CONFIG_WANT_DEVICE_TREE=y
16604 +CONFIG_DEVICE_TREE="katmai.dts"
16605 +CONFIG_ISA_DMA_API=y
16606 +
16607 +#
16608 +# Bus options
16609 +#
16610 +CONFIG_ZONE_DMA=y
16611 +CONFIG_PPC_INDIRECT_PCI=y
16612 +CONFIG_PCI=y
16613 +CONFIG_PCI_DOMAINS=y
16614 +CONFIG_PCI_SYSCALL=y
16615 +# CONFIG_PCIEPORTBUS is not set
16616 +CONFIG_ARCH_SUPPORTS_MSI=y
16617 +# CONFIG_PCI_MSI is not set
16618 +CONFIG_PCI_LEGACY=y
16619 +# CONFIG_PCI_DEBUG is not set
16620 +# CONFIG_PCCARD is not set
16621 +# CONFIG_HOTPLUG_PCI is not set
16622 +
16623 +#
16624 +# Advanced setup
16625 +#
16626 +# CONFIG_ADVANCED_OPTIONS is not set
16627 +
16628 +#
16629 +# Default settings for advanced configuration options are used
16630 +#
16631 +CONFIG_HIGHMEM_START=0xfe000000
16632 +CONFIG_LOWMEM_SIZE=0x30000000
16633 +CONFIG_KERNEL_START=0xc0000000
16634 +CONFIG_TASK_SIZE=0xc0000000
16635 +CONFIG_CONSISTENT_START=0xff100000
16636 +CONFIG_CONSISTENT_SIZE=0x00200000
16637 +CONFIG_BOOT_LOAD=0x01000000
16638 +
16639 +#
16640 +# Networking
16641 +#
16642 +CONFIG_NET=y
16643 +
16644 +#
16645 +# Networking options
16646 +#
16647 +CONFIG_PACKET=y
16648 +# CONFIG_PACKET_MMAP is not set
16649 +CONFIG_UNIX=y
16650 +# CONFIG_NET_KEY is not set
16651 +CONFIG_INET=y
16652 +# CONFIG_IP_MULTICAST is not set
16653 +# CONFIG_IP_ADVANCED_ROUTER is not set
16654 +CONFIG_IP_FIB_HASH=y
16655 +CONFIG_IP_PNP=y
16656 +CONFIG_IP_PNP_DHCP=y
16657 +CONFIG_IP_PNP_BOOTP=y
16658 +# CONFIG_IP_PNP_RARP is not set
16659 +# CONFIG_NET_IPIP is not set
16660 +# CONFIG_NET_IPGRE is not set
16661 +# CONFIG_ARPD is not set
16662 +# CONFIG_SYN_COOKIES is not set
16663 +# CONFIG_INET_AH is not set
16664 +# CONFIG_INET_ESP is not set
16665 +# CONFIG_INET_IPCOMP is not set
16666 +# CONFIG_INET_XFRM_TUNNEL is not set
16667 +# CONFIG_INET_TUNNEL is not set
16668 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
16669 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
16670 +# CONFIG_INET_XFRM_MODE_BEET is not set
16671 +# CONFIG_INET_LRO is not set
16672 +CONFIG_INET_DIAG=y
16673 +CONFIG_INET_TCP_DIAG=y
16674 +# CONFIG_TCP_CONG_ADVANCED is not set
16675 +CONFIG_TCP_CONG_CUBIC=y
16676 +CONFIG_DEFAULT_TCP_CONG="cubic"
16677 +# CONFIG_TCP_MD5SIG is not set
16678 +# CONFIG_IPV6 is not set
16679 +# CONFIG_INET6_XFRM_TUNNEL is not set
16680 +# CONFIG_INET6_TUNNEL is not set
16681 +# CONFIG_NETWORK_SECMARK is not set
16682 +# CONFIG_NETFILTER is not set
16683 +# CONFIG_IP_DCCP is not set
16684 +# CONFIG_IP_SCTP is not set
16685 +# CONFIG_TIPC is not set
16686 +# CONFIG_ATM is not set
16687 +# CONFIG_BRIDGE is not set
16688 +# CONFIG_VLAN_8021Q is not set
16689 +# CONFIG_DECNET is not set
16690 +# CONFIG_LLC2 is not set
16691 +# CONFIG_IPX is not set
16692 +# CONFIG_ATALK is not set
16693 +# CONFIG_X25 is not set
16694 +# CONFIG_LAPB is not set
16695 +# CONFIG_ECONET is not set
16696 +# CONFIG_WAN_ROUTER is not set
16697 +# CONFIG_NET_SCHED is not set
16698 +
16699 +#
16700 +# Network testing
16701 +#
16702 +# CONFIG_NET_PKTGEN is not set
16703 +# CONFIG_HAMRADIO is not set
16704 +# CONFIG_IRDA is not set
16705 +# CONFIG_BT is not set
16706 +# CONFIG_AF_RXRPC is not set
16707 +
16708 +#
16709 +# Wireless
16710 +#
16711 +# CONFIG_CFG80211 is not set
16712 +# CONFIG_WIRELESS_EXT is not set
16713 +# CONFIG_MAC80211 is not set
16714 +# CONFIG_IEEE80211 is not set
16715 +# CONFIG_RFKILL is not set
16716 +# CONFIG_NET_9P is not set
16717 +
16718 +#
16719 +# Device Drivers
16720 +#
16721 +
16722 +#
16723 +# Generic Driver Options
16724 +#
16725 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
16726 +CONFIG_STANDALONE=y
16727 +CONFIG_PREVENT_FIRMWARE_BUILD=y
16728 +CONFIG_FW_LOADER=y
16729 +# CONFIG_DEBUG_DRIVER is not set
16730 +# CONFIG_DEBUG_DEVRES is not set
16731 +# CONFIG_SYS_HYPERVISOR is not set
16732 +CONFIG_CONNECTOR=y
16733 +CONFIG_PROC_EVENTS=y
16734 +# CONFIG_MTD is not set
16735 +CONFIG_OF_DEVICE=y
16736 +# CONFIG_PARPORT is not set
16737 +CONFIG_BLK_DEV=y
16738 +# CONFIG_BLK_DEV_FD is not set
16739 +# CONFIG_BLK_CPQ_DA is not set
16740 +# CONFIG_BLK_CPQ_CISS_DA is not set
16741 +# CONFIG_BLK_DEV_DAC960 is not set
16742 +# CONFIG_BLK_DEV_UMEM is not set
16743 +# CONFIG_BLK_DEV_COW_COMMON is not set
16744 +# CONFIG_BLK_DEV_LOOP is not set
16745 +# CONFIG_BLK_DEV_NBD is not set
16746 +# CONFIG_BLK_DEV_SX8 is not set
16747 +CONFIG_BLK_DEV_RAM=y
16748 +CONFIG_BLK_DEV_RAM_COUNT=16
16749 +CONFIG_BLK_DEV_RAM_SIZE=35000
16750 +CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
16751 +# CONFIG_CDROM_PKTCDVD is not set
16752 +# CONFIG_ATA_OVER_ETH is not set
16753 +# CONFIG_XILINX_SYSACE is not set
16754 +CONFIG_MISC_DEVICES=y
16755 +# CONFIG_PHANTOM is not set
16756 +# CONFIG_EEPROM_93CX6 is not set
16757 +# CONFIG_SGI_IOC4 is not set
16758 +# CONFIG_TIFM_CORE is not set
16759 +# CONFIG_IDE is not set
16760 +
16761 +#
16762 +# SCSI device support
16763 +#
16764 +# CONFIG_RAID_ATTRS is not set
16765 +# CONFIG_SCSI is not set
16766 +# CONFIG_SCSI_DMA is not set
16767 +# CONFIG_SCSI_NETLINK is not set
16768 +# CONFIG_ATA is not set
16769 +# CONFIG_MD is not set
16770 +# CONFIG_FUSION is not set
16771 +
16772 +#
16773 +# IEEE 1394 (FireWire) support
16774 +#
16775 +# CONFIG_FIREWIRE is not set
16776 +# CONFIG_IEEE1394 is not set
16777 +# CONFIG_I2O is not set
16778 +CONFIG_MACINTOSH_DRIVERS=y
16779 +# CONFIG_MAC_EMUMOUSEBTN is not set
16780 +# CONFIG_WINDFARM is not set
16781 +CONFIG_NETDEVICES=y
16782 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
16783 +# CONFIG_DUMMY is not set
16784 +# CONFIG_BONDING is not set
16785 +# CONFIG_MACVLAN is not set
16786 +# CONFIG_EQUALIZER is not set
16787 +# CONFIG_TUN is not set
16788 +# CONFIG_VETH is not set
16789 +# CONFIG_IP1000 is not set
16790 +# CONFIG_ARCNET is not set
16791 +# CONFIG_PHYLIB is not set
16792 +CONFIG_NET_ETHERNET=y
16793 +# CONFIG_MII is not set
16794 +# CONFIG_HAPPYMEAL is not set
16795 +# CONFIG_SUNGEM is not set
16796 +# CONFIG_CASSINI is not set
16797 +# CONFIG_NET_VENDOR_3COM is not set
16798 +# CONFIG_NET_TULIP is not set
16799 +# CONFIG_HP100 is not set
16800 +CONFIG_IBM_NEW_EMAC=y
16801 +CONFIG_IBM_NEW_EMAC_RXB=128
16802 +CONFIG_IBM_NEW_EMAC_TXB=64
16803 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
16804 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
16805 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
16806 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
16807 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
16808 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
16809 +# CONFIG_IBM_NEW_EMAC_TAH is not set
16810 +CONFIG_IBM_NEW_EMAC_EMAC4=y
16811 +# CONFIG_NET_PCI is not set
16812 +# CONFIG_B44 is not set
16813 +CONFIG_NETDEV_1000=y
16814 +# CONFIG_ACENIC is not set
16815 +# CONFIG_DL2K is not set
16816 +# CONFIG_E1000 is not set
16817 +# CONFIG_E1000E is not set
16818 +# CONFIG_NS83820 is not set
16819 +# CONFIG_HAMACHI is not set
16820 +# CONFIG_YELLOWFIN is not set
16821 +# CONFIG_R8169 is not set
16822 +# CONFIG_SIS190 is not set
16823 +# CONFIG_SKGE is not set
16824 +# CONFIG_SKY2 is not set
16825 +# CONFIG_SK98LIN is not set
16826 +# CONFIG_VIA_VELOCITY is not set
16827 +# CONFIG_TIGON3 is not set
16828 +# CONFIG_BNX2 is not set
16829 +# CONFIG_QLA3XXX is not set
16830 +# CONFIG_ATL1 is not set
16831 +CONFIG_NETDEV_10000=y
16832 +# CONFIG_CHELSIO_T1 is not set
16833 +# CONFIG_CHELSIO_T3 is not set
16834 +# CONFIG_IXGBE is not set
16835 +# CONFIG_IXGB is not set
16836 +# CONFIG_S2IO is not set
16837 +# CONFIG_MYRI10GE is not set
16838 +# CONFIG_NETXEN_NIC is not set
16839 +# CONFIG_NIU is not set
16840 +# CONFIG_MLX4_CORE is not set
16841 +# CONFIG_TEHUTI is not set
16842 +# CONFIG_TR is not set
16843 +
16844 +#
16845 +# Wireless LAN
16846 +#
16847 +# CONFIG_WLAN_PRE80211 is not set
16848 +# CONFIG_WLAN_80211 is not set
16849 +# CONFIG_WAN is not set
16850 +# CONFIG_FDDI is not set
16851 +# CONFIG_HIPPI is not set
16852 +# CONFIG_PPP is not set
16853 +# CONFIG_SLIP is not set
16854 +# CONFIG_SHAPER is not set
16855 +# CONFIG_NETCONSOLE is not set
16856 +# CONFIG_NETPOLL is not set
16857 +# CONFIG_NET_POLL_CONTROLLER is not set
16858 +# CONFIG_ISDN is not set
16859 +# CONFIG_PHONE is not set
16860 +
16861 +#
16862 +# Input device support
16863 +#
16864 +# CONFIG_INPUT is not set
16865 +
16866 +#
16867 +# Hardware I/O ports
16868 +#
16869 +# CONFIG_SERIO is not set
16870 +# CONFIG_GAMEPORT is not set
16871 +
16872 +#
16873 +# Character devices
16874 +#
16875 +# CONFIG_VT is not set
16876 +# CONFIG_SERIAL_NONSTANDARD is not set
16877 +
16878 +#
16879 +# Serial drivers
16880 +#
16881 +CONFIG_SERIAL_8250=y
16882 +CONFIG_SERIAL_8250_CONSOLE=y
16883 +# CONFIG_SERIAL_8250_PCI is not set
16884 +CONFIG_SERIAL_8250_NR_UARTS=4
16885 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
16886 +CONFIG_SERIAL_8250_EXTENDED=y
16887 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
16888 +CONFIG_SERIAL_8250_SHARE_IRQ=y
16889 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
16890 +# CONFIG_SERIAL_8250_RSA is not set
16891 +
16892 +#
16893 +# Non-8250 serial port support
16894 +#
16895 +# CONFIG_SERIAL_UARTLITE is not set
16896 +CONFIG_SERIAL_CORE=y
16897 +CONFIG_SERIAL_CORE_CONSOLE=y
16898 +# CONFIG_SERIAL_JSM is not set
16899 +CONFIG_SERIAL_OF_PLATFORM=y
16900 +CONFIG_UNIX98_PTYS=y
16901 +CONFIG_LEGACY_PTYS=y
16902 +CONFIG_LEGACY_PTY_COUNT=256
16903 +# CONFIG_IPMI_HANDLER is not set
16904 +# CONFIG_HW_RANDOM is not set
16905 +# CONFIG_NVRAM is not set
16906 +# CONFIG_GEN_RTC is not set
16907 +# CONFIG_R3964 is not set
16908 +# CONFIG_APPLICOM is not set
16909 +# CONFIG_RAW_DRIVER is not set
16910 +# CONFIG_TCG_TPM is not set
16911 +CONFIG_DEVPORT=y
16912 +# CONFIG_I2C is not set
16913 +
16914 +#
16915 +# SPI support
16916 +#
16917 +# CONFIG_SPI is not set
16918 +# CONFIG_SPI_MASTER is not set
16919 +# CONFIG_W1 is not set
16920 +# CONFIG_POWER_SUPPLY is not set
16921 +# CONFIG_HWMON is not set
16922 +# CONFIG_WATCHDOG is not set
16923 +
16924 +#
16925 +# Sonics Silicon Backplane
16926 +#
16927 +CONFIG_SSB_POSSIBLE=y
16928 +# CONFIG_SSB is not set
16929 +
16930 +#
16931 +# Multifunction device drivers
16932 +#
16933 +# CONFIG_MFD_SM501 is not set
16934 +
16935 +#
16936 +# Multimedia devices
16937 +#
16938 +# CONFIG_VIDEO_DEV is not set
16939 +# CONFIG_DVB_CORE is not set
16940 +CONFIG_DAB=y
16941 +
16942 +#
16943 +# Graphics support
16944 +#
16945 +# CONFIG_AGP is not set
16946 +# CONFIG_DRM is not set
16947 +# CONFIG_VGASTATE is not set
16948 +CONFIG_VIDEO_OUTPUT_CONTROL=m
16949 +# CONFIG_FB is not set
16950 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
16951 +
16952 +#
16953 +# Display device support
16954 +#
16955 +# CONFIG_DISPLAY_SUPPORT is not set
16956 +
16957 +#
16958 +# Sound
16959 +#
16960 +# CONFIG_SOUND is not set
16961 +CONFIG_USB_SUPPORT=y
16962 +CONFIG_USB_ARCH_HAS_HCD=y
16963 +CONFIG_USB_ARCH_HAS_OHCI=y
16964 +CONFIG_USB_ARCH_HAS_EHCI=y
16965 +# CONFIG_USB is not set
16966 +
16967 +#
16968 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
16969 +#
16970 +
16971 +#
16972 +# USB Gadget Support
16973 +#
16974 +# CONFIG_USB_GADGET is not set
16975 +# CONFIG_MMC is not set
16976 +# CONFIG_NEW_LEDS is not set
16977 +# CONFIG_INFINIBAND is not set
16978 +# CONFIG_EDAC is not set
16979 +# CONFIG_RTC_CLASS is not set
16980 +
16981 +#
16982 +# Userspace I/O
16983 +#
16984 +# CONFIG_UIO is not set
16985 +
16986 +#
16987 +# File systems
16988 +#
16989 +CONFIG_EXT2_FS=y
16990 +# CONFIG_EXT2_FS_XATTR is not set
16991 +# CONFIG_EXT2_FS_XIP is not set
16992 +# CONFIG_EXT3_FS is not set
16993 +# CONFIG_EXT4DEV_FS is not set
16994 +# CONFIG_REISERFS_FS is not set
16995 +# CONFIG_JFS_FS is not set
16996 +# CONFIG_FS_POSIX_ACL is not set
16997 +# CONFIG_XFS_FS is not set
16998 +# CONFIG_GFS2_FS is not set
16999 +# CONFIG_OCFS2_FS is not set
17000 +# CONFIG_MINIX_FS is not set
17001 +# CONFIG_ROMFS_FS is not set
17002 +CONFIG_INOTIFY=y
17003 +CONFIG_INOTIFY_USER=y
17004 +# CONFIG_QUOTA is not set
17005 +CONFIG_DNOTIFY=y
17006 +# CONFIG_AUTOFS_FS is not set
17007 +# CONFIG_AUTOFS4_FS is not set
17008 +# CONFIG_FUSE_FS is not set
17009 +
17010 +#
17011 +# CD-ROM/DVD Filesystems
17012 +#
17013 +# CONFIG_ISO9660_FS is not set
17014 +# CONFIG_UDF_FS is not set
17015 +
17016 +#
17017 +# DOS/FAT/NT Filesystems
17018 +#
17019 +# CONFIG_MSDOS_FS is not set
17020 +# CONFIG_VFAT_FS is not set
17021 +# CONFIG_NTFS_FS is not set
17022 +
17023 +#
17024 +# Pseudo filesystems
17025 +#
17026 +CONFIG_PROC_FS=y
17027 +CONFIG_PROC_KCORE=y
17028 +CONFIG_PROC_SYSCTL=y
17029 +CONFIG_SYSFS=y
17030 +CONFIG_TMPFS=y
17031 +# CONFIG_TMPFS_POSIX_ACL is not set
17032 +# CONFIG_HUGETLB_PAGE is not set
17033 +# CONFIG_CONFIGFS_FS is not set
17034 +
17035 +#
17036 +# Miscellaneous filesystems
17037 +#
17038 +# CONFIG_ADFS_FS is not set
17039 +# CONFIG_AFFS_FS is not set
17040 +# CONFIG_HFS_FS is not set
17041 +# CONFIG_HFSPLUS_FS is not set
17042 +# CONFIG_BEFS_FS is not set
17043 +# CONFIG_BFS_FS is not set
17044 +# CONFIG_EFS_FS is not set
17045 +CONFIG_CRAMFS=y
17046 +# CONFIG_VXFS_FS is not set
17047 +# CONFIG_HPFS_FS is not set
17048 +# CONFIG_QNX4FS_FS is not set
17049 +# CONFIG_SYSV_FS is not set
17050 +# CONFIG_UFS_FS is not set
17051 +CONFIG_NETWORK_FILESYSTEMS=y
17052 +CONFIG_NFS_FS=y
17053 +CONFIG_NFS_V3=y
17054 +# CONFIG_NFS_V3_ACL is not set
17055 +# CONFIG_NFS_V4 is not set
17056 +# CONFIG_NFS_DIRECTIO is not set
17057 +# CONFIG_NFSD is not set
17058 +CONFIG_ROOT_NFS=y
17059 +CONFIG_LOCKD=y
17060 +CONFIG_LOCKD_V4=y
17061 +CONFIG_NFS_COMMON=y
17062 +CONFIG_SUNRPC=y
17063 +# CONFIG_SUNRPC_BIND34 is not set
17064 +# CONFIG_RPCSEC_GSS_KRB5 is not set
17065 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
17066 +# CONFIG_SMB_FS is not set
17067 +# CONFIG_CIFS is not set
17068 +# CONFIG_NCP_FS is not set
17069 +# CONFIG_CODA_FS is not set
17070 +# CONFIG_AFS_FS is not set
17071 +
17072 +#
17073 +# Partition Types
17074 +#
17075 +# CONFIG_PARTITION_ADVANCED is not set
17076 +CONFIG_MSDOS_PARTITION=y
17077 +# CONFIG_NLS is not set
17078 +# CONFIG_DLM is not set
17079 +# CONFIG_UCC_SLOW is not set
17080 +
17081 +#
17082 +# Library routines
17083 +#
17084 +CONFIG_BITREVERSE=y
17085 +# CONFIG_CRC_CCITT is not set
17086 +# CONFIG_CRC16 is not set
17087 +# CONFIG_CRC_ITU_T is not set
17088 +CONFIG_CRC32=y
17089 +# CONFIG_CRC7 is not set
17090 +# CONFIG_LIBCRC32C is not set
17091 +CONFIG_ZLIB_INFLATE=y
17092 +CONFIG_PLIST=y
17093 +CONFIG_HAS_IOMEM=y
17094 +CONFIG_HAS_IOPORT=y
17095 +CONFIG_HAS_DMA=y
17096 +CONFIG_INSTRUMENTATION=y
17097 +# CONFIG_PROFILING is not set
17098 +# CONFIG_KPROBES is not set
17099 +# CONFIG_MARKERS is not set
17100 +
17101 +#
17102 +# Kernel hacking
17103 +#
17104 +# CONFIG_PRINTK_TIME is not set
17105 +CONFIG_ENABLE_WARN_DEPRECATED=y
17106 +CONFIG_ENABLE_MUST_CHECK=y
17107 +CONFIG_MAGIC_SYSRQ=y
17108 +# CONFIG_UNUSED_SYMBOLS is not set
17109 +# CONFIG_DEBUG_FS is not set
17110 +# CONFIG_HEADERS_CHECK is not set
17111 +CONFIG_DEBUG_KERNEL=y
17112 +# CONFIG_DEBUG_SHIRQ is not set
17113 +CONFIG_DETECT_SOFTLOCKUP=y
17114 +CONFIG_SCHED_DEBUG=y
17115 +# CONFIG_SCHEDSTATS is not set
17116 +# CONFIG_TIMER_STATS is not set
17117 +# CONFIG_SLUB_DEBUG_ON is not set
17118 +# CONFIG_DEBUG_RT_MUTEXES is not set
17119 +# CONFIG_RT_MUTEX_TESTER is not set
17120 +# CONFIG_DEBUG_SPINLOCK is not set
17121 +# CONFIG_DEBUG_MUTEXES is not set
17122 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
17123 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
17124 +# CONFIG_DEBUG_KOBJECT is not set
17125 +# CONFIG_DEBUG_BUGVERBOSE is not set
17126 +# CONFIG_DEBUG_INFO is not set
17127 +# CONFIG_DEBUG_VM is not set
17128 +# CONFIG_DEBUG_LIST is not set
17129 +# CONFIG_DEBUG_SG is not set
17130 +CONFIG_FORCED_INLINING=y
17131 +# CONFIG_BOOT_PRINTK_DELAY is not set
17132 +# CONFIG_RCU_TORTURE_TEST is not set
17133 +# CONFIG_FAULT_INJECTION is not set
17134 +# CONFIG_SAMPLES is not set
17135 +# CONFIG_DEBUG_STACKOVERFLOW is not set
17136 +# CONFIG_DEBUG_STACK_USAGE is not set
17137 +# CONFIG_DEBUG_PAGEALLOC is not set
17138 +CONFIG_DEBUGGER=y
17139 +# CONFIG_KGDB is not set
17140 +# CONFIG_XMON is not set
17141 +# CONFIG_BDI_SWITCH is not set
17142 +# CONFIG_PPC_EARLY_DEBUG is not set
17143 +
17144 +#
17145 +# Security options
17146 +#
17147 +# CONFIG_KEYS is not set
17148 +# CONFIG_SECURITY is not set
17149 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
17150 +CONFIG_CRYPTO=y
17151 +CONFIG_CRYPTO_ALGAPI=y
17152 +CONFIG_CRYPTO_BLKCIPHER=y
17153 +CONFIG_CRYPTO_MANAGER=y
17154 +# CONFIG_CRYPTO_HMAC is not set
17155 +# CONFIG_CRYPTO_XCBC is not set
17156 +# CONFIG_CRYPTO_NULL is not set
17157 +# CONFIG_CRYPTO_MD4 is not set
17158 +CONFIG_CRYPTO_MD5=y
17159 +# CONFIG_CRYPTO_SHA1 is not set
17160 +# CONFIG_CRYPTO_SHA256 is not set
17161 +# CONFIG_CRYPTO_SHA512 is not set
17162 +# CONFIG_CRYPTO_WP512 is not set
17163 +# CONFIG_CRYPTO_TGR192 is not set
17164 +# CONFIG_CRYPTO_GF128MUL is not set
17165 +CONFIG_CRYPTO_ECB=y
17166 +CONFIG_CRYPTO_CBC=y
17167 +CONFIG_CRYPTO_PCBC=y
17168 +# CONFIG_CRYPTO_LRW is not set
17169 +# CONFIG_CRYPTO_XTS is not set
17170 +# CONFIG_CRYPTO_CRYPTD is not set
17171 +CONFIG_CRYPTO_DES=y
17172 +# CONFIG_CRYPTO_FCRYPT is not set
17173 +# CONFIG_CRYPTO_BLOWFISH is not set
17174 +# CONFIG_CRYPTO_TWOFISH is not set
17175 +# CONFIG_CRYPTO_SERPENT is not set
17176 +# CONFIG_CRYPTO_AES is not set
17177 +# CONFIG_CRYPTO_CAST5 is not set
17178 +# CONFIG_CRYPTO_CAST6 is not set
17179 +# CONFIG_CRYPTO_TEA is not set
17180 +# CONFIG_CRYPTO_ARC4 is not set
17181 +# CONFIG_CRYPTO_KHAZAD is not set
17182 +# CONFIG_CRYPTO_ANUBIS is not set
17183 +# CONFIG_CRYPTO_SEED is not set
17184 +# CONFIG_CRYPTO_DEFLATE is not set
17185 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
17186 +# CONFIG_CRYPTO_CRC32C is not set
17187 +# CONFIG_CRYPTO_CAMELLIA is not set
17188 +# CONFIG_CRYPTO_TEST is not set
17189 +# CONFIG_CRYPTO_AUTHENC is not set
17190 +CONFIG_CRYPTO_HW=y
17191 +# CONFIG_PPC_CLOCK is not set
17192 Index: linux-2.6.25.4/arch/powerpc/configs/44x/rainier_defconfig
17193 ===================================================================
17194 --- /dev/null
17195 +++ linux-2.6.25.4/arch/powerpc/configs/44x/rainier_defconfig
17196 @@ -0,0 +1,899 @@
17197 +#
17198 +# Automatically generated make config: don't edit
17199 +# Linux kernel version: 2.6.25-rc2
17200 +# Fri Feb 15 21:53:10 2008
17201 +#
17202 +# CONFIG_PPC64 is not set
17203 +
17204 +#
17205 +# Processor support
17206 +#
17207 +# CONFIG_6xx is not set
17208 +# CONFIG_PPC_85xx is not set
17209 +# CONFIG_PPC_8xx is not set
17210 +# CONFIG_40x is not set
17211 +CONFIG_44x=y
17212 +# CONFIG_E200 is not set
17213 +CONFIG_4xx=y
17214 +CONFIG_BOOKE=y
17215 +CONFIG_PTE_64BIT=y
17216 +CONFIG_PHYS_64BIT=y
17217 +# CONFIG_PPC_MM_SLICES is not set
17218 +CONFIG_NOT_COHERENT_CACHE=y
17219 +CONFIG_PPC32=y
17220 +CONFIG_WORD_SIZE=32
17221 +CONFIG_PPC_MERGE=y
17222 +CONFIG_MMU=y
17223 +CONFIG_GENERIC_CMOS_UPDATE=y
17224 +CONFIG_GENERIC_TIME=y
17225 +CONFIG_GENERIC_TIME_VSYSCALL=y
17226 +CONFIG_GENERIC_CLOCKEVENTS=y
17227 +CONFIG_GENERIC_HARDIRQS=y
17228 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
17229 +CONFIG_IRQ_PER_CPU=y
17230 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
17231 +CONFIG_ARCH_HAS_ILOG2_U32=y
17232 +CONFIG_GENERIC_HWEIGHT=y
17233 +CONFIG_GENERIC_CALIBRATE_DELAY=y
17234 +CONFIG_GENERIC_FIND_NEXT_BIT=y
17235 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
17236 +CONFIG_PPC=y
17237 +CONFIG_EARLY_PRINTK=y
17238 +CONFIG_GENERIC_NVRAM=y
17239 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
17240 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
17241 +CONFIG_PPC_OF=y
17242 +CONFIG_OF=y
17243 +CONFIG_PPC_UDBG_16550=y
17244 +# CONFIG_GENERIC_TBSYNC is not set
17245 +CONFIG_AUDIT_ARCH=y
17246 +CONFIG_GENERIC_BUG=y
17247 +# CONFIG_DEFAULT_UIMAGE is not set
17248 +CONFIG_PPC_DCR_NATIVE=y
17249 +# CONFIG_PPC_DCR_MMIO is not set
17250 +CONFIG_PPC_DCR=y
17251 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
17252 +
17253 +#
17254 +# General setup
17255 +#
17256 +CONFIG_EXPERIMENTAL=y
17257 +CONFIG_BROKEN_ON_SMP=y
17258 +CONFIG_INIT_ENV_ARG_LIMIT=32
17259 +CONFIG_LOCALVERSION=""
17260 +CONFIG_LOCALVERSION_AUTO=y
17261 +CONFIG_SWAP=y
17262 +CONFIG_SYSVIPC=y
17263 +CONFIG_SYSVIPC_SYSCTL=y
17264 +CONFIG_POSIX_MQUEUE=y
17265 +# CONFIG_BSD_PROCESS_ACCT is not set
17266 +# CONFIG_TASKSTATS is not set
17267 +# CONFIG_AUDIT is not set
17268 +# CONFIG_IKCONFIG is not set
17269 +CONFIG_LOG_BUF_SHIFT=14
17270 +# CONFIG_CGROUPS is not set
17271 +CONFIG_GROUP_SCHED=y
17272 +CONFIG_FAIR_GROUP_SCHED=y
17273 +# CONFIG_RT_GROUP_SCHED is not set
17274 +CONFIG_USER_SCHED=y
17275 +# CONFIG_CGROUP_SCHED is not set
17276 +CONFIG_SYSFS_DEPRECATED=y
17277 +# CONFIG_RELAY is not set
17278 +# CONFIG_NAMESPACES is not set
17279 +CONFIG_BLK_DEV_INITRD=y
17280 +CONFIG_INITRAMFS_SOURCE=""
17281 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
17282 +CONFIG_SYSCTL=y
17283 +CONFIG_EMBEDDED=y
17284 +CONFIG_SYSCTL_SYSCALL=y
17285 +CONFIG_KALLSYMS=y
17286 +# CONFIG_KALLSYMS_ALL is not set
17287 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
17288 +CONFIG_HOTPLUG=y
17289 +CONFIG_PRINTK=y
17290 +CONFIG_BUG=y
17291 +CONFIG_ELF_CORE=y
17292 +CONFIG_COMPAT_BRK=y
17293 +CONFIG_BASE_FULL=y
17294 +CONFIG_FUTEX=y
17295 +CONFIG_ANON_INODES=y
17296 +CONFIG_EPOLL=y
17297 +CONFIG_SIGNALFD=y
17298 +CONFIG_TIMERFD=y
17299 +CONFIG_EVENTFD=y
17300 +CONFIG_SHMEM=y
17301 +CONFIG_VM_EVENT_COUNTERS=y
17302 +CONFIG_SLUB_DEBUG=y
17303 +# CONFIG_SLAB is not set
17304 +CONFIG_SLUB=y
17305 +# CONFIG_SLOB is not set
17306 +# CONFIG_PROFILING is not set
17307 +# CONFIG_MARKERS is not set
17308 +CONFIG_HAVE_OPROFILE=y
17309 +# CONFIG_KPROBES is not set
17310 +CONFIG_HAVE_KPROBES=y
17311 +CONFIG_PROC_PAGE_MONITOR=y
17312 +CONFIG_SLABINFO=y
17313 +CONFIG_RT_MUTEXES=y
17314 +# CONFIG_TINY_SHMEM is not set
17315 +CONFIG_BASE_SMALL=0
17316 +CONFIG_MODULES=y
17317 +CONFIG_MODULE_UNLOAD=y
17318 +# CONFIG_MODULE_FORCE_UNLOAD is not set
17319 +# CONFIG_MODVERSIONS is not set
17320 +# CONFIG_MODULE_SRCVERSION_ALL is not set
17321 +CONFIG_KMOD=y
17322 +CONFIG_BLOCK=y
17323 +CONFIG_LBD=y
17324 +# CONFIG_BLK_DEV_IO_TRACE is not set
17325 +# CONFIG_LSF is not set
17326 +# CONFIG_BLK_DEV_BSG is not set
17327 +
17328 +#
17329 +# IO Schedulers
17330 +#
17331 +CONFIG_IOSCHED_NOOP=y
17332 +CONFIG_IOSCHED_AS=y
17333 +CONFIG_IOSCHED_DEADLINE=y
17334 +CONFIG_IOSCHED_CFQ=y
17335 +CONFIG_DEFAULT_AS=y
17336 +# CONFIG_DEFAULT_DEADLINE is not set
17337 +# CONFIG_DEFAULT_CFQ is not set
17338 +# CONFIG_DEFAULT_NOOP is not set
17339 +CONFIG_DEFAULT_IOSCHED="anticipatory"
17340 +CONFIG_CLASSIC_RCU=y
17341 +# CONFIG_PREEMPT_RCU is not set
17342 +# CONFIG_PPC4xx_PCI_EXPRESS is not set
17343 +
17344 +#
17345 +# Platform support
17346 +#
17347 +# CONFIG_PPC_MPC512x is not set
17348 +# CONFIG_PPC_MPC5121 is not set
17349 +# CONFIG_PPC_CELL is not set
17350 +# CONFIG_PPC_CELL_NATIVE is not set
17351 +# CONFIG_PQ2ADS is not set
17352 +# CONFIG_BAMBOO is not set
17353 +# CONFIG_EBONY is not set
17354 +# CONFIG_SEQUOIA is not set
17355 +# CONFIG_TAISHAN is not set
17356 +# CONFIG_KATMAI is not set
17357 +CONFIG_RAINIER=y
17358 +# CONFIG_WARP is not set
17359 +CONFIG_440GRX=y
17360 +# CONFIG_IPIC is not set
17361 +# CONFIG_MPIC is not set
17362 +# CONFIG_MPIC_WEIRD is not set
17363 +# CONFIG_PPC_I8259 is not set
17364 +# CONFIG_PPC_RTAS is not set
17365 +# CONFIG_MMIO_NVRAM is not set
17366 +# CONFIG_PPC_MPC106 is not set
17367 +# CONFIG_PPC_970_NAP is not set
17368 +# CONFIG_PPC_INDIRECT_IO is not set
17369 +# CONFIG_GENERIC_IOMAP is not set
17370 +# CONFIG_CPU_FREQ is not set
17371 +# CONFIG_FSL_ULI1575 is not set
17372 +
17373 +#
17374 +# Kernel options
17375 +#
17376 +# CONFIG_HIGHMEM is not set
17377 +# CONFIG_TICK_ONESHOT is not set
17378 +# CONFIG_NO_HZ is not set
17379 +# CONFIG_HIGH_RES_TIMERS is not set
17380 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
17381 +# CONFIG_HZ_100 is not set
17382 +CONFIG_HZ_250=y
17383 +# CONFIG_HZ_300 is not set
17384 +# CONFIG_HZ_1000 is not set
17385 +CONFIG_HZ=250
17386 +# CONFIG_SCHED_HRTICK is not set
17387 +CONFIG_PREEMPT_NONE=y
17388 +# CONFIG_PREEMPT_VOLUNTARY is not set
17389 +# CONFIG_PREEMPT is not set
17390 +CONFIG_RCU_TRACE=y
17391 +CONFIG_BINFMT_ELF=y
17392 +# CONFIG_BINFMT_MISC is not set
17393 +CONFIG_MATH_EMULATION=y
17394 +# CONFIG_IOMMU_HELPER is not set
17395 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
17396 +CONFIG_ARCH_HAS_WALK_MEMORY=y
17397 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
17398 +CONFIG_ARCH_FLATMEM_ENABLE=y
17399 +CONFIG_ARCH_POPULATES_NODE_MAP=y
17400 +CONFIG_SELECT_MEMORY_MODEL=y
17401 +CONFIG_FLATMEM_MANUAL=y
17402 +# CONFIG_DISCONTIGMEM_MANUAL is not set
17403 +# CONFIG_SPARSEMEM_MANUAL is not set
17404 +CONFIG_FLATMEM=y
17405 +CONFIG_FLAT_NODE_MEM_MAP=y
17406 +# CONFIG_SPARSEMEM_STATIC is not set
17407 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
17408 +CONFIG_SPLIT_PTLOCK_CPUS=4
17409 +CONFIG_RESOURCES_64BIT=y
17410 +CONFIG_ZONE_DMA_FLAG=1
17411 +CONFIG_BOUNCE=y
17412 +CONFIG_VIRT_TO_BUS=y
17413 +CONFIG_PROC_DEVICETREE=y
17414 +CONFIG_CMDLINE_BOOL=y
17415 +CONFIG_CMDLINE=""
17416 +CONFIG_SECCOMP=y
17417 +CONFIG_ISA_DMA_API=y
17418 +
17419 +#
17420 +# Bus options
17421 +#
17422 +CONFIG_ZONE_DMA=y
17423 +CONFIG_PPC_INDIRECT_PCI=y
17424 +CONFIG_PCI=y
17425 +CONFIG_PCI_DOMAINS=y
17426 +CONFIG_PCI_SYSCALL=y
17427 +# CONFIG_PCIEPORTBUS is not set
17428 +CONFIG_ARCH_SUPPORTS_MSI=y
17429 +# CONFIG_PCI_MSI is not set
17430 +CONFIG_PCI_LEGACY=y
17431 +# CONFIG_PCI_DEBUG is not set
17432 +# CONFIG_PCCARD is not set
17433 +# CONFIG_HOTPLUG_PCI is not set
17434 +
17435 +#
17436 +# Advanced setup
17437 +#
17438 +# CONFIG_ADVANCED_OPTIONS is not set
17439 +
17440 +#
17441 +# Default settings for advanced configuration options are used
17442 +#
17443 +CONFIG_HIGHMEM_START=0xfe000000
17444 +CONFIG_LOWMEM_SIZE=0x30000000
17445 +CONFIG_KERNEL_START=0xc0000000
17446 +CONFIG_TASK_SIZE=0xc0000000
17447 +CONFIG_CONSISTENT_START=0xff100000
17448 +CONFIG_CONSISTENT_SIZE=0x00200000
17449 +CONFIG_BOOT_LOAD=0x01000000
17450 +
17451 +#
17452 +# Networking
17453 +#
17454 +CONFIG_NET=y
17455 +
17456 +#
17457 +# Networking options
17458 +#
17459 +CONFIG_PACKET=y
17460 +# CONFIG_PACKET_MMAP is not set
17461 +CONFIG_UNIX=y
17462 +# CONFIG_NET_KEY is not set
17463 +CONFIG_INET=y
17464 +# CONFIG_IP_MULTICAST is not set
17465 +# CONFIG_IP_ADVANCED_ROUTER is not set
17466 +CONFIG_IP_FIB_HASH=y
17467 +CONFIG_IP_PNP=y
17468 +CONFIG_IP_PNP_DHCP=y
17469 +CONFIG_IP_PNP_BOOTP=y
17470 +# CONFIG_IP_PNP_RARP is not set
17471 +# CONFIG_NET_IPIP is not set
17472 +# CONFIG_NET_IPGRE is not set
17473 +# CONFIG_ARPD is not set
17474 +# CONFIG_SYN_COOKIES is not set
17475 +# CONFIG_INET_AH is not set
17476 +# CONFIG_INET_ESP is not set
17477 +# CONFIG_INET_IPCOMP is not set
17478 +# CONFIG_INET_XFRM_TUNNEL is not set
17479 +# CONFIG_INET_TUNNEL is not set
17480 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
17481 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
17482 +# CONFIG_INET_XFRM_MODE_BEET is not set
17483 +# CONFIG_INET_LRO is not set
17484 +CONFIG_INET_DIAG=y
17485 +CONFIG_INET_TCP_DIAG=y
17486 +# CONFIG_TCP_CONG_ADVANCED is not set
17487 +CONFIG_TCP_CONG_CUBIC=y
17488 +CONFIG_DEFAULT_TCP_CONG="cubic"
17489 +# CONFIG_TCP_MD5SIG is not set
17490 +# CONFIG_IPV6 is not set
17491 +# CONFIG_INET6_XFRM_TUNNEL is not set
17492 +# CONFIG_INET6_TUNNEL is not set
17493 +# CONFIG_NETWORK_SECMARK is not set
17494 +# CONFIG_NETFILTER is not set
17495 +# CONFIG_IP_DCCP is not set
17496 +# CONFIG_IP_SCTP is not set
17497 +# CONFIG_TIPC is not set
17498 +# CONFIG_ATM is not set
17499 +# CONFIG_BRIDGE is not set
17500 +# CONFIG_VLAN_8021Q is not set
17501 +# CONFIG_DECNET is not set
17502 +# CONFIG_LLC2 is not set
17503 +# CONFIG_IPX is not set
17504 +# CONFIG_ATALK is not set
17505 +# CONFIG_X25 is not set
17506 +# CONFIG_LAPB is not set
17507 +# CONFIG_ECONET is not set
17508 +# CONFIG_WAN_ROUTER is not set
17509 +# CONFIG_NET_SCHED is not set
17510 +
17511 +#
17512 +# Network testing
17513 +#
17514 +# CONFIG_NET_PKTGEN is not set
17515 +# CONFIG_HAMRADIO is not set
17516 +# CONFIG_CAN is not set
17517 +# CONFIG_IRDA is not set
17518 +# CONFIG_BT is not set
17519 +# CONFIG_AF_RXRPC is not set
17520 +
17521 +#
17522 +# Wireless
17523 +#
17524 +# CONFIG_CFG80211 is not set
17525 +# CONFIG_WIRELESS_EXT is not set
17526 +# CONFIG_MAC80211 is not set
17527 +# CONFIG_IEEE80211 is not set
17528 +# CONFIG_RFKILL is not set
17529 +# CONFIG_NET_9P is not set
17530 +
17531 +#
17532 +# Device Drivers
17533 +#
17534 +
17535 +#
17536 +# Generic Driver Options
17537 +#
17538 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
17539 +CONFIG_STANDALONE=y
17540 +CONFIG_PREVENT_FIRMWARE_BUILD=y
17541 +CONFIG_FW_LOADER=y
17542 +# CONFIG_DEBUG_DRIVER is not set
17543 +# CONFIG_DEBUG_DEVRES is not set
17544 +# CONFIG_SYS_HYPERVISOR is not set
17545 +CONFIG_CONNECTOR=y
17546 +CONFIG_PROC_EVENTS=y
17547 +CONFIG_MTD=y
17548 +# CONFIG_MTD_DEBUG is not set
17549 +# CONFIG_MTD_CONCAT is not set
17550 +CONFIG_MTD_PARTITIONS=y
17551 +# CONFIG_MTD_REDBOOT_PARTS is not set
17552 +CONFIG_MTD_CMDLINE_PARTS=y
17553 +CONFIG_MTD_OF_PARTS=y
17554 +
17555 +#
17556 +# User Modules And Translation Layers
17557 +#
17558 +CONFIG_MTD_CHAR=y
17559 +# CONFIG_MTD_BLKDEVS is not set
17560 +# CONFIG_MTD_BLOCK is not set
17561 +# CONFIG_MTD_BLOCK_RO is not set
17562 +# CONFIG_FTL is not set
17563 +# CONFIG_NFTL is not set
17564 +# CONFIG_INFTL is not set
17565 +# CONFIG_RFD_FTL is not set
17566 +# CONFIG_SSFDC is not set
17567 +# CONFIG_MTD_OOPS is not set
17568 +
17569 +#
17570 +# RAM/ROM/Flash chip drivers
17571 +#
17572 +CONFIG_MTD_CFI=y
17573 +CONFIG_MTD_JEDECPROBE=y
17574 +CONFIG_MTD_GEN_PROBE=y
17575 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
17576 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
17577 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
17578 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
17579 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
17580 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
17581 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
17582 +CONFIG_MTD_CFI_I1=y
17583 +CONFIG_MTD_CFI_I2=y
17584 +# CONFIG_MTD_CFI_I4 is not set
17585 +# CONFIG_MTD_CFI_I8 is not set
17586 +CONFIG_MTD_CFI_INTELEXT=y
17587 +CONFIG_MTD_CFI_AMDSTD=y
17588 +# CONFIG_MTD_CFI_STAA is not set
17589 +CONFIG_MTD_CFI_UTIL=y
17590 +# CONFIG_MTD_RAM is not set
17591 +# CONFIG_MTD_ROM is not set
17592 +# CONFIG_MTD_ABSENT is not set
17593 +
17594 +#
17595 +# Mapping drivers for chip access
17596 +#
17597 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
17598 +# CONFIG_MTD_PHYSMAP is not set
17599 +CONFIG_MTD_PHYSMAP_OF=y
17600 +# CONFIG_MTD_INTEL_VR_NOR is not set
17601 +# CONFIG_MTD_PLATRAM is not set
17602 +
17603 +#
17604 +# Self-contained MTD device drivers
17605 +#
17606 +# CONFIG_MTD_PMC551 is not set
17607 +# CONFIG_MTD_SLRAM is not set
17608 +# CONFIG_MTD_PHRAM is not set
17609 +# CONFIG_MTD_MTDRAM is not set
17610 +# CONFIG_MTD_BLOCK2MTD is not set
17611 +
17612 +#
17613 +# Disk-On-Chip Device Drivers
17614 +#
17615 +# CONFIG_MTD_DOC2000 is not set
17616 +# CONFIG_MTD_DOC2001 is not set
17617 +# CONFIG_MTD_DOC2001PLUS is not set
17618 +# CONFIG_MTD_NAND is not set
17619 +# CONFIG_MTD_ONENAND is not set
17620 +
17621 +#
17622 +# UBI - Unsorted block images
17623 +#
17624 +# CONFIG_MTD_UBI is not set
17625 +CONFIG_OF_DEVICE=y
17626 +# CONFIG_PARPORT is not set
17627 +CONFIG_BLK_DEV=y
17628 +# CONFIG_BLK_DEV_FD is not set
17629 +# CONFIG_BLK_CPQ_DA is not set
17630 +# CONFIG_BLK_CPQ_CISS_DA is not set
17631 +# CONFIG_BLK_DEV_DAC960 is not set
17632 +# CONFIG_BLK_DEV_UMEM is not set
17633 +# CONFIG_BLK_DEV_COW_COMMON is not set
17634 +# CONFIG_BLK_DEV_LOOP is not set
17635 +# CONFIG_BLK_DEV_NBD is not set
17636 +# CONFIG_BLK_DEV_SX8 is not set
17637 +CONFIG_BLK_DEV_RAM=y
17638 +CONFIG_BLK_DEV_RAM_COUNT=16
17639 +CONFIG_BLK_DEV_RAM_SIZE=35000
17640 +# CONFIG_BLK_DEV_XIP is not set
17641 +# CONFIG_CDROM_PKTCDVD is not set
17642 +# CONFIG_ATA_OVER_ETH is not set
17643 +# CONFIG_XILINX_SYSACE is not set
17644 +CONFIG_MISC_DEVICES=y
17645 +# CONFIG_PHANTOM is not set
17646 +# CONFIG_EEPROM_93CX6 is not set
17647 +# CONFIG_SGI_IOC4 is not set
17648 +# CONFIG_TIFM_CORE is not set
17649 +# CONFIG_ENCLOSURE_SERVICES is not set
17650 +CONFIG_HAVE_IDE=y
17651 +# CONFIG_IDE is not set
17652 +
17653 +#
17654 +# SCSI device support
17655 +#
17656 +# CONFIG_RAID_ATTRS is not set
17657 +# CONFIG_SCSI is not set
17658 +# CONFIG_SCSI_DMA is not set
17659 +# CONFIG_SCSI_NETLINK is not set
17660 +# CONFIG_ATA is not set
17661 +# CONFIG_MD is not set
17662 +# CONFIG_FUSION is not set
17663 +
17664 +#
17665 +# IEEE 1394 (FireWire) support
17666 +#
17667 +# CONFIG_FIREWIRE is not set
17668 +# CONFIG_IEEE1394 is not set
17669 +# CONFIG_I2O is not set
17670 +CONFIG_MACINTOSH_DRIVERS=y
17671 +# CONFIG_MAC_EMUMOUSEBTN is not set
17672 +# CONFIG_WINDFARM is not set
17673 +CONFIG_NETDEVICES=y
17674 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
17675 +# CONFIG_DUMMY is not set
17676 +# CONFIG_BONDING is not set
17677 +# CONFIG_MACVLAN is not set
17678 +# CONFIG_EQUALIZER is not set
17679 +# CONFIG_TUN is not set
17680 +# CONFIG_VETH is not set
17681 +# CONFIG_ARCNET is not set
17682 +# CONFIG_NET_ETHERNET is not set
17683 +CONFIG_IBM_NEW_EMAC_ZMII=y
17684 +CONFIG_IBM_NEW_EMAC_RGMII=y
17685 +CONFIG_IBM_NEW_EMAC_EMAC4=y
17686 +CONFIG_NETDEV_1000=y
17687 +# CONFIG_ACENIC is not set
17688 +# CONFIG_DL2K is not set
17689 +# CONFIG_E1000 is not set
17690 +# CONFIG_E1000E is not set
17691 +# CONFIG_E1000E_ENABLED is not set
17692 +# CONFIG_IP1000 is not set
17693 +# CONFIG_IGB is not set
17694 +# CONFIG_NS83820 is not set
17695 +# CONFIG_HAMACHI is not set
17696 +# CONFIG_YELLOWFIN is not set
17697 +# CONFIG_R8169 is not set
17698 +# CONFIG_SIS190 is not set
17699 +# CONFIG_SKGE is not set
17700 +# CONFIG_SKY2 is not set
17701 +# CONFIG_SK98LIN is not set
17702 +# CONFIG_VIA_VELOCITY is not set
17703 +# CONFIG_TIGON3 is not set
17704 +# CONFIG_BNX2 is not set
17705 +# CONFIG_QLA3XXX is not set
17706 +# CONFIG_ATL1 is not set
17707 +CONFIG_NETDEV_10000=y
17708 +# CONFIG_CHELSIO_T1 is not set
17709 +# CONFIG_CHELSIO_T3 is not set
17710 +# CONFIG_IXGBE is not set
17711 +# CONFIG_IXGB is not set
17712 +# CONFIG_S2IO is not set
17713 +# CONFIG_MYRI10GE is not set
17714 +# CONFIG_NETXEN_NIC is not set
17715 +# CONFIG_NIU is not set
17716 +# CONFIG_MLX4_CORE is not set
17717 +# CONFIG_TEHUTI is not set
17718 +# CONFIG_BNX2X is not set
17719 +# CONFIG_TR is not set
17720 +
17721 +#
17722 +# Wireless LAN
17723 +#
17724 +# CONFIG_WLAN_PRE80211 is not set
17725 +# CONFIG_WLAN_80211 is not set
17726 +# CONFIG_WAN is not set
17727 +# CONFIG_FDDI is not set
17728 +# CONFIG_HIPPI is not set
17729 +# CONFIG_PPP is not set
17730 +# CONFIG_SLIP is not set
17731 +# CONFIG_NETCONSOLE is not set
17732 +# CONFIG_NETPOLL is not set
17733 +# CONFIG_NET_POLL_CONTROLLER is not set
17734 +# CONFIG_ISDN is not set
17735 +# CONFIG_PHONE is not set
17736 +
17737 +#
17738 +# Input device support
17739 +#
17740 +# CONFIG_INPUT is not set
17741 +
17742 +#
17743 +# Hardware I/O ports
17744 +#
17745 +# CONFIG_SERIO is not set
17746 +# CONFIG_GAMEPORT is not set
17747 +
17748 +#
17749 +# Character devices
17750 +#
17751 +# CONFIG_VT is not set
17752 +# CONFIG_SERIAL_NONSTANDARD is not set
17753 +# CONFIG_NOZOMI is not set
17754 +
17755 +#
17756 +# Serial drivers
17757 +#
17758 +CONFIG_SERIAL_8250=y
17759 +CONFIG_SERIAL_8250_CONSOLE=y
17760 +# CONFIG_SERIAL_8250_PCI is not set
17761 +CONFIG_SERIAL_8250_NR_UARTS=4
17762 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
17763 +CONFIG_SERIAL_8250_EXTENDED=y
17764 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
17765 +CONFIG_SERIAL_8250_SHARE_IRQ=y
17766 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
17767 +# CONFIG_SERIAL_8250_RSA is not set
17768 +
17769 +#
17770 +# Non-8250 serial port support
17771 +#
17772 +# CONFIG_SERIAL_UARTLITE is not set
17773 +CONFIG_SERIAL_CORE=y
17774 +CONFIG_SERIAL_CORE_CONSOLE=y
17775 +# CONFIG_SERIAL_JSM is not set
17776 +CONFIG_SERIAL_OF_PLATFORM=y
17777 +CONFIG_UNIX98_PTYS=y
17778 +CONFIG_LEGACY_PTYS=y
17779 +CONFIG_LEGACY_PTY_COUNT=256
17780 +# CONFIG_IPMI_HANDLER is not set
17781 +# CONFIG_HW_RANDOM is not set
17782 +# CONFIG_NVRAM is not set
17783 +# CONFIG_GEN_RTC is not set
17784 +# CONFIG_R3964 is not set
17785 +# CONFIG_APPLICOM is not set
17786 +# CONFIG_RAW_DRIVER is not set
17787 +# CONFIG_TCG_TPM is not set
17788 +CONFIG_DEVPORT=y
17789 +# CONFIG_I2C is not set
17790 +
17791 +#
17792 +# SPI support
17793 +#
17794 +# CONFIG_SPI is not set
17795 +# CONFIG_SPI_MASTER is not set
17796 +# CONFIG_W1 is not set
17797 +# CONFIG_POWER_SUPPLY is not set
17798 +# CONFIG_HWMON is not set
17799 +CONFIG_THERMAL=y
17800 +# CONFIG_WATCHDOG is not set
17801 +
17802 +#
17803 +# Sonics Silicon Backplane
17804 +#
17805 +CONFIG_SSB_POSSIBLE=y
17806 +# CONFIG_SSB is not set
17807 +
17808 +#
17809 +# Multifunction device drivers
17810 +#
17811 +# CONFIG_MFD_SM501 is not set
17812 +
17813 +#
17814 +# Multimedia devices
17815 +#
17816 +# CONFIG_VIDEO_DEV is not set
17817 +# CONFIG_DVB_CORE is not set
17818 +CONFIG_DAB=y
17819 +
17820 +#
17821 +# Graphics support
17822 +#
17823 +# CONFIG_AGP is not set
17824 +# CONFIG_DRM is not set
17825 +# CONFIG_VGASTATE is not set
17826 +CONFIG_VIDEO_OUTPUT_CONTROL=m
17827 +# CONFIG_FB is not set
17828 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
17829 +
17830 +#
17831 +# Display device support
17832 +#
17833 +# CONFIG_DISPLAY_SUPPORT is not set
17834 +
17835 +#
17836 +# Sound
17837 +#
17838 +# CONFIG_SOUND is not set
17839 +CONFIG_USB_SUPPORT=y
17840 +CONFIG_USB_ARCH_HAS_HCD=y
17841 +CONFIG_USB_ARCH_HAS_OHCI=y
17842 +CONFIG_USB_ARCH_HAS_EHCI=y
17843 +# CONFIG_USB is not set
17844 +
17845 +#
17846 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
17847 +#
17848 +# CONFIG_USB_GADGET is not set
17849 +# CONFIG_MMC is not set
17850 +# CONFIG_MEMSTICK is not set
17851 +# CONFIG_NEW_LEDS is not set
17852 +# CONFIG_INFINIBAND is not set
17853 +# CONFIG_EDAC is not set
17854 +# CONFIG_RTC_CLASS is not set
17855 +
17856 +#
17857 +# Userspace I/O
17858 +#
17859 +# CONFIG_UIO is not set
17860 +
17861 +#
17862 +# File systems
17863 +#
17864 +CONFIG_EXT2_FS=y
17865 +# CONFIG_EXT2_FS_XATTR is not set
17866 +# CONFIG_EXT2_FS_XIP is not set
17867 +# CONFIG_EXT3_FS is not set
17868 +# CONFIG_EXT4DEV_FS is not set
17869 +# CONFIG_REISERFS_FS is not set
17870 +# CONFIG_JFS_FS is not set
17871 +# CONFIG_FS_POSIX_ACL is not set
17872 +# CONFIG_XFS_FS is not set
17873 +# CONFIG_GFS2_FS is not set
17874 +# CONFIG_OCFS2_FS is not set
17875 +CONFIG_DNOTIFY=y
17876 +CONFIG_INOTIFY=y
17877 +CONFIG_INOTIFY_USER=y
17878 +# CONFIG_QUOTA is not set
17879 +# CONFIG_AUTOFS_FS is not set
17880 +# CONFIG_AUTOFS4_FS is not set
17881 +# CONFIG_FUSE_FS is not set
17882 +
17883 +#
17884 +# CD-ROM/DVD Filesystems
17885 +#
17886 +# CONFIG_ISO9660_FS is not set
17887 +# CONFIG_UDF_FS is not set
17888 +
17889 +#
17890 +# DOS/FAT/NT Filesystems
17891 +#
17892 +# CONFIG_MSDOS_FS is not set
17893 +# CONFIG_VFAT_FS is not set
17894 +# CONFIG_NTFS_FS is not set
17895 +
17896 +#
17897 +# Pseudo filesystems
17898 +#
17899 +CONFIG_PROC_FS=y
17900 +CONFIG_PROC_KCORE=y
17901 +CONFIG_PROC_SYSCTL=y
17902 +CONFIG_SYSFS=y
17903 +CONFIG_TMPFS=y
17904 +# CONFIG_TMPFS_POSIX_ACL is not set
17905 +# CONFIG_HUGETLB_PAGE is not set
17906 +# CONFIG_CONFIGFS_FS is not set
17907 +
17908 +#
17909 +# Miscellaneous filesystems
17910 +#
17911 +# CONFIG_ADFS_FS is not set
17912 +# CONFIG_AFFS_FS is not set
17913 +# CONFIG_HFS_FS is not set
17914 +# CONFIG_HFSPLUS_FS is not set
17915 +# CONFIG_BEFS_FS is not set
17916 +# CONFIG_BFS_FS is not set
17917 +# CONFIG_EFS_FS is not set
17918 +CONFIG_JFFS2_FS=y
17919 +CONFIG_JFFS2_FS_DEBUG=0
17920 +CONFIG_JFFS2_FS_WRITEBUFFER=y
17921 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
17922 +# CONFIG_JFFS2_SUMMARY is not set
17923 +# CONFIG_JFFS2_FS_XATTR is not set
17924 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
17925 +CONFIG_JFFS2_ZLIB=y
17926 +# CONFIG_JFFS2_LZO is not set
17927 +CONFIG_JFFS2_RTIME=y
17928 +# CONFIG_JFFS2_RUBIN is not set
17929 +CONFIG_CRAMFS=y
17930 +# CONFIG_VXFS_FS is not set
17931 +# CONFIG_MINIX_FS is not set
17932 +# CONFIG_HPFS_FS is not set
17933 +# CONFIG_QNX4FS_FS is not set
17934 +# CONFIG_ROMFS_FS is not set
17935 +# CONFIG_SYSV_FS is not set
17936 +# CONFIG_UFS_FS is not set
17937 +CONFIG_NETWORK_FILESYSTEMS=y
17938 +CONFIG_NFS_FS=y
17939 +CONFIG_NFS_V3=y
17940 +# CONFIG_NFS_V3_ACL is not set
17941 +# CONFIG_NFS_V4 is not set
17942 +# CONFIG_NFS_DIRECTIO is not set
17943 +# CONFIG_NFSD is not set
17944 +CONFIG_ROOT_NFS=y
17945 +CONFIG_LOCKD=y
17946 +CONFIG_LOCKD_V4=y
17947 +CONFIG_NFS_COMMON=y
17948 +CONFIG_SUNRPC=y
17949 +# CONFIG_SUNRPC_BIND34 is not set
17950 +# CONFIG_RPCSEC_GSS_KRB5 is not set
17951 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
17952 +# CONFIG_SMB_FS is not set
17953 +# CONFIG_CIFS is not set
17954 +# CONFIG_NCP_FS is not set
17955 +# CONFIG_CODA_FS is not set
17956 +# CONFIG_AFS_FS is not set
17957 +
17958 +#
17959 +# Partition Types
17960 +#
17961 +# CONFIG_PARTITION_ADVANCED is not set
17962 +CONFIG_MSDOS_PARTITION=y
17963 +# CONFIG_NLS is not set
17964 +# CONFIG_DLM is not set
17965 +
17966 +#
17967 +# Library routines
17968 +#
17969 +CONFIG_BITREVERSE=y
17970 +# CONFIG_CRC_CCITT is not set
17971 +# CONFIG_CRC16 is not set
17972 +# CONFIG_CRC_ITU_T is not set
17973 +CONFIG_CRC32=y
17974 +# CONFIG_CRC7 is not set
17975 +# CONFIG_LIBCRC32C is not set
17976 +CONFIG_ZLIB_INFLATE=y
17977 +CONFIG_ZLIB_DEFLATE=y
17978 +CONFIG_PLIST=y
17979 +CONFIG_HAS_IOMEM=y
17980 +CONFIG_HAS_IOPORT=y
17981 +CONFIG_HAS_DMA=y
17982 +
17983 +#
17984 +# Kernel hacking
17985 +#
17986 +# CONFIG_PRINTK_TIME is not set
17987 +CONFIG_ENABLE_WARN_DEPRECATED=y
17988 +CONFIG_ENABLE_MUST_CHECK=y
17989 +CONFIG_MAGIC_SYSRQ=y
17990 +# CONFIG_UNUSED_SYMBOLS is not set
17991 +CONFIG_DEBUG_FS=y
17992 +# CONFIG_HEADERS_CHECK is not set
17993 +CONFIG_DEBUG_KERNEL=y
17994 +# CONFIG_DEBUG_SHIRQ is not set
17995 +CONFIG_DETECT_SOFTLOCKUP=y
17996 +CONFIG_SCHED_DEBUG=y
17997 +# CONFIG_SCHEDSTATS is not set
17998 +# CONFIG_TIMER_STATS is not set
17999 +# CONFIG_SLUB_DEBUG_ON is not set
18000 +# CONFIG_SLUB_STATS is not set
18001 +# CONFIG_DEBUG_RT_MUTEXES is not set
18002 +# CONFIG_RT_MUTEX_TESTER is not set
18003 +# CONFIG_DEBUG_SPINLOCK is not set
18004 +# CONFIG_DEBUG_MUTEXES is not set
18005 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
18006 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
18007 +# CONFIG_DEBUG_KOBJECT is not set
18008 +# CONFIG_DEBUG_BUGVERBOSE is not set
18009 +# CONFIG_DEBUG_INFO is not set
18010 +# CONFIG_DEBUG_VM is not set
18011 +# CONFIG_DEBUG_LIST is not set
18012 +# CONFIG_DEBUG_SG is not set
18013 +# CONFIG_BOOT_PRINTK_DELAY is not set
18014 +# CONFIG_RCU_TORTURE_TEST is not set
18015 +# CONFIG_BACKTRACE_SELF_TEST is not set
18016 +# CONFIG_FAULT_INJECTION is not set
18017 +# CONFIG_SAMPLES is not set
18018 +# CONFIG_DEBUG_STACKOVERFLOW is not set
18019 +# CONFIG_DEBUG_STACK_USAGE is not set
18020 +# CONFIG_DEBUG_PAGEALLOC is not set
18021 +CONFIG_DEBUGGER=y
18022 +# CONFIG_KGDB is not set
18023 +# CONFIG_XMON is not set
18024 +# CONFIG_VIRQ_DEBUG is not set
18025 +# CONFIG_BDI_SWITCH is not set
18026 +CONFIG_PPC_EARLY_DEBUG=y
18027 +# CONFIG_PPC_EARLY_DEBUG_LPAR is not set
18028 +# CONFIG_PPC_EARLY_DEBUG_G5 is not set
18029 +# CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set
18030 +# CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set
18031 +# CONFIG_PPC_EARLY_DEBUG_MAPLE is not set
18032 +# CONFIG_PPC_EARLY_DEBUG_ISERIES is not set
18033 +# CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set
18034 +# CONFIG_PPC_EARLY_DEBUG_BEAT is not set
18035 +CONFIG_PPC_EARLY_DEBUG_44x=y
18036 +# CONFIG_PPC_EARLY_DEBUG_40x is not set
18037 +# CONFIG_PPC_EARLY_DEBUG_CPM is not set
18038 +CONFIG_PPC_EARLY_DEBUG_44x_PHYSLOW=0xef600300
18039 +CONFIG_PPC_EARLY_DEBUG_44x_PHYSHIGH=0x1
18040 +
18041 +#
18042 +# Security options
18043 +#
18044 +# CONFIG_KEYS is not set
18045 +# CONFIG_SECURITY is not set
18046 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
18047 +CONFIG_CRYPTO=y
18048 +CONFIG_CRYPTO_ALGAPI=y
18049 +CONFIG_CRYPTO_BLKCIPHER=y
18050 +# CONFIG_CRYPTO_SEQIV is not set
18051 +CONFIG_CRYPTO_MANAGER=y
18052 +# CONFIG_CRYPTO_HMAC is not set
18053 +# CONFIG_CRYPTO_XCBC is not set
18054 +# CONFIG_CRYPTO_NULL is not set
18055 +# CONFIG_CRYPTO_MD4 is not set
18056 +CONFIG_CRYPTO_MD5=y
18057 +# CONFIG_CRYPTO_SHA1 is not set
18058 +# CONFIG_CRYPTO_SHA256 is not set
18059 +# CONFIG_CRYPTO_SHA512 is not set
18060 +# CONFIG_CRYPTO_WP512 is not set
18061 +# CONFIG_CRYPTO_TGR192 is not set
18062 +# CONFIG_CRYPTO_GF128MUL is not set
18063 +CONFIG_CRYPTO_ECB=y
18064 +CONFIG_CRYPTO_CBC=y
18065 +CONFIG_CRYPTO_PCBC=y
18066 +# CONFIG_CRYPTO_LRW is not set
18067 +# CONFIG_CRYPTO_XTS is not set
18068 +# CONFIG_CRYPTO_CTR is not set
18069 +# CONFIG_CRYPTO_GCM is not set
18070 +# CONFIG_CRYPTO_CCM is not set
18071 +# CONFIG_CRYPTO_CRYPTD is not set
18072 +CONFIG_CRYPTO_DES=y
18073 +# CONFIG_CRYPTO_FCRYPT is not set
18074 +# CONFIG_CRYPTO_BLOWFISH is not set
18075 +# CONFIG_CRYPTO_TWOFISH is not set
18076 +# CONFIG_CRYPTO_SERPENT is not set
18077 +# CONFIG_CRYPTO_AES is not set
18078 +# CONFIG_CRYPTO_CAST5 is not set
18079 +# CONFIG_CRYPTO_CAST6 is not set
18080 +# CONFIG_CRYPTO_TEA is not set
18081 +# CONFIG_CRYPTO_ARC4 is not set
18082 +# CONFIG_CRYPTO_KHAZAD is not set
18083 +# CONFIG_CRYPTO_ANUBIS is not set
18084 +# CONFIG_CRYPTO_SEED is not set
18085 +# CONFIG_CRYPTO_SALSA20 is not set
18086 +# CONFIG_CRYPTO_DEFLATE is not set
18087 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
18088 +# CONFIG_CRYPTO_CRC32C is not set
18089 +# CONFIG_CRYPTO_CAMELLIA is not set
18090 +# CONFIG_CRYPTO_TEST is not set
18091 +# CONFIG_CRYPTO_AUTHENC is not set
18092 +# CONFIG_CRYPTO_LZO is not set
18093 +CONFIG_CRYPTO_HW=y
18094 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
18095 +# CONFIG_PPC_CLOCK is not set
18096 Index: linux-2.6.25.4/arch/powerpc/configs/44x/sequoia_defconfig
18097 ===================================================================
18098 --- /dev/null
18099 +++ linux-2.6.25.4/arch/powerpc/configs/44x/sequoia_defconfig
18100 @@ -0,0 +1,916 @@
18101 +#
18102 +# Automatically generated make config: don't edit
18103 +# Linux kernel version: 2.6.25-rc2
18104 +# Fri Feb 15 21:53:46 2008
18105 +#
18106 +# CONFIG_PPC64 is not set
18107 +
18108 +#
18109 +# Processor support
18110 +#
18111 +# CONFIG_6xx is not set
18112 +# CONFIG_PPC_85xx is not set
18113 +# CONFIG_PPC_8xx is not set
18114 +# CONFIG_40x is not set
18115 +CONFIG_44x=y
18116 +# CONFIG_E200 is not set
18117 +CONFIG_PPC_FPU=y
18118 +CONFIG_4xx=y
18119 +CONFIG_BOOKE=y
18120 +CONFIG_PTE_64BIT=y
18121 +CONFIG_PHYS_64BIT=y
18122 +# CONFIG_PPC_MM_SLICES is not set
18123 +CONFIG_NOT_COHERENT_CACHE=y
18124 +CONFIG_PPC32=y
18125 +CONFIG_WORD_SIZE=32
18126 +CONFIG_PPC_MERGE=y
18127 +CONFIG_MMU=y
18128 +CONFIG_GENERIC_CMOS_UPDATE=y
18129 +CONFIG_GENERIC_TIME=y
18130 +CONFIG_GENERIC_TIME_VSYSCALL=y
18131 +CONFIG_GENERIC_CLOCKEVENTS=y
18132 +CONFIG_GENERIC_HARDIRQS=y
18133 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
18134 +CONFIG_IRQ_PER_CPU=y
18135 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
18136 +CONFIG_ARCH_HAS_ILOG2_U32=y
18137 +CONFIG_GENERIC_HWEIGHT=y
18138 +CONFIG_GENERIC_CALIBRATE_DELAY=y
18139 +CONFIG_GENERIC_FIND_NEXT_BIT=y
18140 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
18141 +CONFIG_PPC=y
18142 +CONFIG_EARLY_PRINTK=y
18143 +CONFIG_GENERIC_NVRAM=y
18144 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
18145 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
18146 +CONFIG_PPC_OF=y
18147 +CONFIG_OF=y
18148 +CONFIG_PPC_UDBG_16550=y
18149 +# CONFIG_GENERIC_TBSYNC is not set
18150 +CONFIG_AUDIT_ARCH=y
18151 +CONFIG_GENERIC_BUG=y
18152 +# CONFIG_DEFAULT_UIMAGE is not set
18153 +CONFIG_PPC_DCR_NATIVE=y
18154 +# CONFIG_PPC_DCR_MMIO is not set
18155 +CONFIG_PPC_DCR=y
18156 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
18157 +
18158 +#
18159 +# General setup
18160 +#
18161 +CONFIG_EXPERIMENTAL=y
18162 +CONFIG_BROKEN_ON_SMP=y
18163 +CONFIG_INIT_ENV_ARG_LIMIT=32
18164 +CONFIG_LOCALVERSION=""
18165 +CONFIG_LOCALVERSION_AUTO=y
18166 +CONFIG_SWAP=y
18167 +CONFIG_SYSVIPC=y
18168 +CONFIG_SYSVIPC_SYSCTL=y
18169 +CONFIG_POSIX_MQUEUE=y
18170 +# CONFIG_BSD_PROCESS_ACCT is not set
18171 +# CONFIG_TASKSTATS is not set
18172 +# CONFIG_AUDIT is not set
18173 +# CONFIG_IKCONFIG is not set
18174 +CONFIG_LOG_BUF_SHIFT=14
18175 +# CONFIG_CGROUPS is not set
18176 +CONFIG_GROUP_SCHED=y
18177 +# CONFIG_FAIR_GROUP_SCHED is not set
18178 +# CONFIG_RT_GROUP_SCHED is not set
18179 +CONFIG_USER_SCHED=y
18180 +# CONFIG_CGROUP_SCHED is not set
18181 +CONFIG_SYSFS_DEPRECATED=y
18182 +# CONFIG_RELAY is not set
18183 +# CONFIG_NAMESPACES is not set
18184 +CONFIG_BLK_DEV_INITRD=y
18185 +CONFIG_INITRAMFS_SOURCE=""
18186 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
18187 +CONFIG_SYSCTL=y
18188 +CONFIG_EMBEDDED=y
18189 +CONFIG_SYSCTL_SYSCALL=y
18190 +CONFIG_KALLSYMS=y
18191 +# CONFIG_KALLSYMS_ALL is not set
18192 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
18193 +CONFIG_HOTPLUG=y
18194 +CONFIG_PRINTK=y
18195 +CONFIG_BUG=y
18196 +CONFIG_ELF_CORE=y
18197 +CONFIG_COMPAT_BRK=y
18198 +CONFIG_BASE_FULL=y
18199 +CONFIG_FUTEX=y
18200 +CONFIG_ANON_INODES=y
18201 +CONFIG_EPOLL=y
18202 +CONFIG_SIGNALFD=y
18203 +CONFIG_TIMERFD=y
18204 +CONFIG_EVENTFD=y
18205 +CONFIG_SHMEM=y
18206 +CONFIG_VM_EVENT_COUNTERS=y
18207 +CONFIG_SLUB_DEBUG=y
18208 +# CONFIG_SLAB is not set
18209 +CONFIG_SLUB=y
18210 +# CONFIG_SLOB is not set
18211 +# CONFIG_PROFILING is not set
18212 +# CONFIG_MARKERS is not set
18213 +CONFIG_HAVE_OPROFILE=y
18214 +# CONFIG_KPROBES is not set
18215 +CONFIG_HAVE_KPROBES=y
18216 +CONFIG_PROC_PAGE_MONITOR=y
18217 +CONFIG_SLABINFO=y
18218 +CONFIG_RT_MUTEXES=y
18219 +# CONFIG_TINY_SHMEM is not set
18220 +CONFIG_BASE_SMALL=0
18221 +CONFIG_MODULES=y
18222 +CONFIG_MODULE_UNLOAD=y
18223 +# CONFIG_MODULE_FORCE_UNLOAD is not set
18224 +# CONFIG_MODVERSIONS is not set
18225 +# CONFIG_MODULE_SRCVERSION_ALL is not set
18226 +CONFIG_KMOD=y
18227 +CONFIG_BLOCK=y
18228 +CONFIG_LBD=y
18229 +# CONFIG_BLK_DEV_IO_TRACE is not set
18230 +# CONFIG_LSF is not set
18231 +# CONFIG_BLK_DEV_BSG is not set
18232 +
18233 +#
18234 +# IO Schedulers
18235 +#
18236 +CONFIG_IOSCHED_NOOP=y
18237 +CONFIG_IOSCHED_AS=y
18238 +CONFIG_IOSCHED_DEADLINE=y
18239 +CONFIG_IOSCHED_CFQ=y
18240 +CONFIG_DEFAULT_AS=y
18241 +# CONFIG_DEFAULT_DEADLINE is not set
18242 +# CONFIG_DEFAULT_CFQ is not set
18243 +# CONFIG_DEFAULT_NOOP is not set
18244 +CONFIG_DEFAULT_IOSCHED="anticipatory"
18245 +CONFIG_CLASSIC_RCU=y
18246 +# CONFIG_PREEMPT_RCU is not set
18247 +# CONFIG_PPC4xx_PCI_EXPRESS is not set
18248 +
18249 +#
18250 +# Platform support
18251 +#
18252 +# CONFIG_PPC_MPC512x is not set
18253 +# CONFIG_PPC_MPC5121 is not set
18254 +# CONFIG_PPC_CELL is not set
18255 +# CONFIG_PPC_CELL_NATIVE is not set
18256 +# CONFIG_PQ2ADS is not set
18257 +# CONFIG_BAMBOO is not set
18258 +# CONFIG_EBONY is not set
18259 +CONFIG_SEQUOIA=y
18260 +# CONFIG_TAISHAN is not set
18261 +# CONFIG_KATMAI is not set
18262 +# CONFIG_RAINIER is not set
18263 +# CONFIG_WARP is not set
18264 +CONFIG_440EPX=y
18265 +# CONFIG_IPIC is not set
18266 +# CONFIG_MPIC is not set
18267 +# CONFIG_MPIC_WEIRD is not set
18268 +# CONFIG_PPC_I8259 is not set
18269 +# CONFIG_PPC_RTAS is not set
18270 +# CONFIG_MMIO_NVRAM is not set
18271 +# CONFIG_PPC_MPC106 is not set
18272 +# CONFIG_PPC_970_NAP is not set
18273 +# CONFIG_PPC_INDIRECT_IO is not set
18274 +# CONFIG_GENERIC_IOMAP is not set
18275 +# CONFIG_CPU_FREQ is not set
18276 +# CONFIG_FSL_ULI1575 is not set
18277 +
18278 +#
18279 +# Kernel options
18280 +#
18281 +# CONFIG_HIGHMEM is not set
18282 +CONFIG_TICK_ONESHOT=y
18283 +CONFIG_NO_HZ=y
18284 +CONFIG_HIGH_RES_TIMERS=y
18285 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
18286 +# CONFIG_HZ_100 is not set
18287 +CONFIG_HZ_250=y
18288 +# CONFIG_HZ_300 is not set
18289 +# CONFIG_HZ_1000 is not set
18290 +CONFIG_HZ=250
18291 +# CONFIG_SCHED_HRTICK is not set
18292 +CONFIG_PREEMPT_NONE=y
18293 +# CONFIG_PREEMPT_VOLUNTARY is not set
18294 +# CONFIG_PREEMPT is not set
18295 +CONFIG_RCU_TRACE=y
18296 +CONFIG_BINFMT_ELF=y
18297 +# CONFIG_BINFMT_MISC is not set
18298 +# CONFIG_MATH_EMULATION is not set
18299 +# CONFIG_IOMMU_HELPER is not set
18300 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
18301 +CONFIG_ARCH_HAS_WALK_MEMORY=y
18302 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
18303 +CONFIG_ARCH_FLATMEM_ENABLE=y
18304 +CONFIG_ARCH_POPULATES_NODE_MAP=y
18305 +CONFIG_SELECT_MEMORY_MODEL=y
18306 +CONFIG_FLATMEM_MANUAL=y
18307 +# CONFIG_DISCONTIGMEM_MANUAL is not set
18308 +# CONFIG_SPARSEMEM_MANUAL is not set
18309 +CONFIG_FLATMEM=y
18310 +CONFIG_FLAT_NODE_MEM_MAP=y
18311 +# CONFIG_SPARSEMEM_STATIC is not set
18312 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
18313 +CONFIG_SPLIT_PTLOCK_CPUS=4
18314 +CONFIG_RESOURCES_64BIT=y
18315 +CONFIG_ZONE_DMA_FLAG=1
18316 +CONFIG_BOUNCE=y
18317 +CONFIG_VIRT_TO_BUS=y
18318 +CONFIG_PROC_DEVICETREE=y
18319 +CONFIG_CMDLINE_BOOL=y
18320 +CONFIG_CMDLINE=""
18321 +CONFIG_SECCOMP=y
18322 +CONFIG_ISA_DMA_API=y
18323 +
18324 +#
18325 +# Bus options
18326 +#
18327 +CONFIG_ZONE_DMA=y
18328 +CONFIG_PPC_INDIRECT_PCI=y
18329 +CONFIG_PCI=y
18330 +CONFIG_PCI_DOMAINS=y
18331 +CONFIG_PCI_SYSCALL=y
18332 +# CONFIG_PCIEPORTBUS is not set
18333 +CONFIG_ARCH_SUPPORTS_MSI=y
18334 +# CONFIG_PCI_MSI is not set
18335 +CONFIG_PCI_LEGACY=y
18336 +# CONFIG_PCI_DEBUG is not set
18337 +# CONFIG_PCCARD is not set
18338 +# CONFIG_HOTPLUG_PCI is not set
18339 +
18340 +#
18341 +# Advanced setup
18342 +#
18343 +# CONFIG_ADVANCED_OPTIONS is not set
18344 +
18345 +#
18346 +# Default settings for advanced configuration options are used
18347 +#
18348 +CONFIG_HIGHMEM_START=0xfe000000
18349 +CONFIG_LOWMEM_SIZE=0x30000000
18350 +CONFIG_KERNEL_START=0xc0000000
18351 +CONFIG_TASK_SIZE=0xc0000000
18352 +CONFIG_CONSISTENT_START=0xff100000
18353 +CONFIG_CONSISTENT_SIZE=0x00200000
18354 +CONFIG_BOOT_LOAD=0x01000000
18355 +
18356 +#
18357 +# Networking
18358 +#
18359 +CONFIG_NET=y
18360 +
18361 +#
18362 +# Networking options
18363 +#
18364 +CONFIG_PACKET=y
18365 +# CONFIG_PACKET_MMAP is not set
18366 +CONFIG_UNIX=y
18367 +# CONFIG_NET_KEY is not set
18368 +CONFIG_INET=y
18369 +# CONFIG_IP_MULTICAST is not set
18370 +# CONFIG_IP_ADVANCED_ROUTER is not set
18371 +CONFIG_IP_FIB_HASH=y
18372 +CONFIG_IP_PNP=y
18373 +CONFIG_IP_PNP_DHCP=y
18374 +CONFIG_IP_PNP_BOOTP=y
18375 +# CONFIG_IP_PNP_RARP is not set
18376 +# CONFIG_NET_IPIP is not set
18377 +# CONFIG_NET_IPGRE is not set
18378 +# CONFIG_ARPD is not set
18379 +# CONFIG_SYN_COOKIES is not set
18380 +# CONFIG_INET_AH is not set
18381 +# CONFIG_INET_ESP is not set
18382 +# CONFIG_INET_IPCOMP is not set
18383 +# CONFIG_INET_XFRM_TUNNEL is not set
18384 +# CONFIG_INET_TUNNEL is not set
18385 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
18386 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
18387 +# CONFIG_INET_XFRM_MODE_BEET is not set
18388 +# CONFIG_INET_LRO is not set
18389 +CONFIG_INET_DIAG=y
18390 +CONFIG_INET_TCP_DIAG=y
18391 +# CONFIG_TCP_CONG_ADVANCED is not set
18392 +CONFIG_TCP_CONG_CUBIC=y
18393 +CONFIG_DEFAULT_TCP_CONG="cubic"
18394 +# CONFIG_TCP_MD5SIG is not set
18395 +# CONFIG_IPV6 is not set
18396 +# CONFIG_INET6_XFRM_TUNNEL is not set
18397 +# CONFIG_INET6_TUNNEL is not set
18398 +# CONFIG_NETWORK_SECMARK is not set
18399 +# CONFIG_NETFILTER is not set
18400 +# CONFIG_IP_DCCP is not set
18401 +# CONFIG_IP_SCTP is not set
18402 +# CONFIG_TIPC is not set
18403 +# CONFIG_ATM is not set
18404 +# CONFIG_BRIDGE is not set
18405 +# CONFIG_VLAN_8021Q is not set
18406 +# CONFIG_DECNET is not set
18407 +# CONFIG_LLC2 is not set
18408 +# CONFIG_IPX is not set
18409 +# CONFIG_ATALK is not set
18410 +# CONFIG_X25 is not set
18411 +# CONFIG_LAPB is not set
18412 +# CONFIG_ECONET is not set
18413 +# CONFIG_WAN_ROUTER is not set
18414 +# CONFIG_NET_SCHED is not set
18415 +
18416 +#
18417 +# Network testing
18418 +#
18419 +# CONFIG_NET_PKTGEN is not set
18420 +# CONFIG_HAMRADIO is not set
18421 +# CONFIG_CAN is not set
18422 +# CONFIG_IRDA is not set
18423 +# CONFIG_BT is not set
18424 +# CONFIG_AF_RXRPC is not set
18425 +
18426 +#
18427 +# Wireless
18428 +#
18429 +# CONFIG_CFG80211 is not set
18430 +# CONFIG_WIRELESS_EXT is not set
18431 +# CONFIG_MAC80211 is not set
18432 +# CONFIG_IEEE80211 is not set
18433 +# CONFIG_RFKILL is not set
18434 +# CONFIG_NET_9P is not set
18435 +
18436 +#
18437 +# Device Drivers
18438 +#
18439 +
18440 +#
18441 +# Generic Driver Options
18442 +#
18443 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
18444 +CONFIG_STANDALONE=y
18445 +CONFIG_PREVENT_FIRMWARE_BUILD=y
18446 +CONFIG_FW_LOADER=y
18447 +# CONFIG_DEBUG_DRIVER is not set
18448 +# CONFIG_DEBUG_DEVRES is not set
18449 +# CONFIG_SYS_HYPERVISOR is not set
18450 +CONFIG_CONNECTOR=y
18451 +CONFIG_PROC_EVENTS=y
18452 +CONFIG_MTD=y
18453 +# CONFIG_MTD_DEBUG is not set
18454 +# CONFIG_MTD_CONCAT is not set
18455 +CONFIG_MTD_PARTITIONS=y
18456 +# CONFIG_MTD_REDBOOT_PARTS is not set
18457 +CONFIG_MTD_CMDLINE_PARTS=y
18458 +CONFIG_MTD_OF_PARTS=y
18459 +
18460 +#
18461 +# User Modules And Translation Layers
18462 +#
18463 +CONFIG_MTD_CHAR=y
18464 +# CONFIG_MTD_BLKDEVS is not set
18465 +# CONFIG_MTD_BLOCK is not set
18466 +# CONFIG_MTD_BLOCK_RO is not set
18467 +# CONFIG_FTL is not set
18468 +# CONFIG_NFTL is not set
18469 +# CONFIG_INFTL is not set
18470 +# CONFIG_RFD_FTL is not set
18471 +# CONFIG_SSFDC is not set
18472 +# CONFIG_MTD_OOPS is not set
18473 +
18474 +#
18475 +# RAM/ROM/Flash chip drivers
18476 +#
18477 +CONFIG_MTD_CFI=y
18478 +CONFIG_MTD_JEDECPROBE=y
18479 +CONFIG_MTD_GEN_PROBE=y
18480 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
18481 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
18482 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
18483 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
18484 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
18485 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
18486 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
18487 +CONFIG_MTD_CFI_I1=y
18488 +CONFIG_MTD_CFI_I2=y
18489 +# CONFIG_MTD_CFI_I4 is not set
18490 +# CONFIG_MTD_CFI_I8 is not set
18491 +CONFIG_MTD_CFI_INTELEXT=y
18492 +CONFIG_MTD_CFI_AMDSTD=y
18493 +# CONFIG_MTD_CFI_STAA is not set
18494 +CONFIG_MTD_CFI_UTIL=y
18495 +# CONFIG_MTD_RAM is not set
18496 +# CONFIG_MTD_ROM is not set
18497 +# CONFIG_MTD_ABSENT is not set
18498 +
18499 +#
18500 +# Mapping drivers for chip access
18501 +#
18502 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
18503 +# CONFIG_MTD_PHYSMAP is not set
18504 +CONFIG_MTD_PHYSMAP_OF=y
18505 +# CONFIG_MTD_INTEL_VR_NOR is not set
18506 +# CONFIG_MTD_PLATRAM is not set
18507 +
18508 +#
18509 +# Self-contained MTD device drivers
18510 +#
18511 +# CONFIG_MTD_PMC551 is not set
18512 +# CONFIG_MTD_SLRAM is not set
18513 +# CONFIG_MTD_PHRAM is not set
18514 +# CONFIG_MTD_MTDRAM is not set
18515 +# CONFIG_MTD_BLOCK2MTD is not set
18516 +
18517 +#
18518 +# Disk-On-Chip Device Drivers
18519 +#
18520 +# CONFIG_MTD_DOC2000 is not set
18521 +# CONFIG_MTD_DOC2001 is not set
18522 +# CONFIG_MTD_DOC2001PLUS is not set
18523 +# CONFIG_MTD_NAND is not set
18524 +# CONFIG_MTD_ONENAND is not set
18525 +
18526 +#
18527 +# UBI - Unsorted block images
18528 +#
18529 +# CONFIG_MTD_UBI is not set
18530 +CONFIG_OF_DEVICE=y
18531 +# CONFIG_PARPORT is not set
18532 +CONFIG_BLK_DEV=y
18533 +# CONFIG_BLK_DEV_FD is not set
18534 +# CONFIG_BLK_CPQ_DA is not set
18535 +# CONFIG_BLK_CPQ_CISS_DA is not set
18536 +# CONFIG_BLK_DEV_DAC960 is not set
18537 +# CONFIG_BLK_DEV_UMEM is not set
18538 +# CONFIG_BLK_DEV_COW_COMMON is not set
18539 +# CONFIG_BLK_DEV_LOOP is not set
18540 +# CONFIG_BLK_DEV_NBD is not set
18541 +# CONFIG_BLK_DEV_SX8 is not set
18542 +CONFIG_BLK_DEV_RAM=y
18543 +CONFIG_BLK_DEV_RAM_COUNT=16
18544 +CONFIG_BLK_DEV_RAM_SIZE=35000
18545 +# CONFIG_BLK_DEV_XIP is not set
18546 +# CONFIG_CDROM_PKTCDVD is not set
18547 +# CONFIG_ATA_OVER_ETH is not set
18548 +# CONFIG_XILINX_SYSACE is not set
18549 +CONFIG_MISC_DEVICES=y
18550 +# CONFIG_PHANTOM is not set
18551 +# CONFIG_EEPROM_93CX6 is not set
18552 +# CONFIG_SGI_IOC4 is not set
18553 +# CONFIG_TIFM_CORE is not set
18554 +# CONFIG_ENCLOSURE_SERVICES is not set
18555 +CONFIG_HAVE_IDE=y
18556 +# CONFIG_IDE is not set
18557 +
18558 +#
18559 +# SCSI device support
18560 +#
18561 +# CONFIG_RAID_ATTRS is not set
18562 +# CONFIG_SCSI is not set
18563 +# CONFIG_SCSI_DMA is not set
18564 +# CONFIG_SCSI_NETLINK is not set
18565 +# CONFIG_ATA is not set
18566 +# CONFIG_MD is not set
18567 +# CONFIG_FUSION is not set
18568 +
18569 +#
18570 +# IEEE 1394 (FireWire) support
18571 +#
18572 +# CONFIG_FIREWIRE is not set
18573 +# CONFIG_IEEE1394 is not set
18574 +# CONFIG_I2O is not set
18575 +# CONFIG_MACINTOSH_DRIVERS is not set
18576 +CONFIG_NETDEVICES=y
18577 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
18578 +# CONFIG_DUMMY is not set
18579 +# CONFIG_BONDING is not set
18580 +# CONFIG_MACVLAN is not set
18581 +# CONFIG_EQUALIZER is not set
18582 +# CONFIG_TUN is not set
18583 +# CONFIG_VETH is not set
18584 +# CONFIG_ARCNET is not set
18585 +# CONFIG_PHYLIB is not set
18586 +CONFIG_NET_ETHERNET=y
18587 +# CONFIG_MII is not set
18588 +# CONFIG_HAPPYMEAL is not set
18589 +# CONFIG_SUNGEM is not set
18590 +# CONFIG_CASSINI is not set
18591 +# CONFIG_NET_VENDOR_3COM is not set
18592 +# CONFIG_NET_TULIP is not set
18593 +# CONFIG_HP100 is not set
18594 +CONFIG_IBM_NEW_EMAC=y
18595 +CONFIG_IBM_NEW_EMAC_RXB=128
18596 +CONFIG_IBM_NEW_EMAC_TXB=64
18597 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
18598 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
18599 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
18600 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
18601 +CONFIG_IBM_NEW_EMAC_ZMII=y
18602 +CONFIG_IBM_NEW_EMAC_RGMII=y
18603 +# CONFIG_IBM_NEW_EMAC_TAH is not set
18604 +CONFIG_IBM_NEW_EMAC_EMAC4=y
18605 +# CONFIG_NET_PCI is not set
18606 +# CONFIG_B44 is not set
18607 +CONFIG_NETDEV_1000=y
18608 +# CONFIG_ACENIC is not set
18609 +# CONFIG_DL2K is not set
18610 +# CONFIG_E1000 is not set
18611 +# CONFIG_E1000E is not set
18612 +# CONFIG_E1000E_ENABLED is not set
18613 +# CONFIG_IP1000 is not set
18614 +# CONFIG_IGB is not set
18615 +# CONFIG_NS83820 is not set
18616 +# CONFIG_HAMACHI is not set
18617 +# CONFIG_YELLOWFIN is not set
18618 +# CONFIG_R8169 is not set
18619 +# CONFIG_SIS190 is not set
18620 +# CONFIG_SKGE is not set
18621 +# CONFIG_SKY2 is not set
18622 +# CONFIG_SK98LIN is not set
18623 +# CONFIG_VIA_VELOCITY is not set
18624 +# CONFIG_TIGON3 is not set
18625 +# CONFIG_BNX2 is not set
18626 +# CONFIG_QLA3XXX is not set
18627 +# CONFIG_ATL1 is not set
18628 +CONFIG_NETDEV_10000=y
18629 +# CONFIG_CHELSIO_T1 is not set
18630 +# CONFIG_CHELSIO_T3 is not set
18631 +# CONFIG_IXGBE is not set
18632 +# CONFIG_IXGB is not set
18633 +# CONFIG_S2IO is not set
18634 +# CONFIG_MYRI10GE is not set
18635 +# CONFIG_NETXEN_NIC is not set
18636 +# CONFIG_NIU is not set
18637 +# CONFIG_MLX4_CORE is not set
18638 +# CONFIG_TEHUTI is not set
18639 +# CONFIG_BNX2X is not set
18640 +# CONFIG_TR is not set
18641 +
18642 +#
18643 +# Wireless LAN
18644 +#
18645 +# CONFIG_WLAN_PRE80211 is not set
18646 +# CONFIG_WLAN_80211 is not set
18647 +# CONFIG_WAN is not set
18648 +# CONFIG_FDDI is not set
18649 +# CONFIG_HIPPI is not set
18650 +# CONFIG_PPP is not set
18651 +# CONFIG_SLIP is not set
18652 +# CONFIG_NETCONSOLE is not set
18653 +# CONFIG_NETPOLL is not set
18654 +# CONFIG_NET_POLL_CONTROLLER is not set
18655 +# CONFIG_ISDN is not set
18656 +# CONFIG_PHONE is not set
18657 +
18658 +#
18659 +# Input device support
18660 +#
18661 +# CONFIG_INPUT is not set
18662 +
18663 +#
18664 +# Hardware I/O ports
18665 +#
18666 +# CONFIG_SERIO is not set
18667 +# CONFIG_GAMEPORT is not set
18668 +
18669 +#
18670 +# Character devices
18671 +#
18672 +# CONFIG_VT is not set
18673 +# CONFIG_SERIAL_NONSTANDARD is not set
18674 +# CONFIG_NOZOMI is not set
18675 +
18676 +#
18677 +# Serial drivers
18678 +#
18679 +CONFIG_SERIAL_8250=y
18680 +CONFIG_SERIAL_8250_CONSOLE=y
18681 +# CONFIG_SERIAL_8250_PCI is not set
18682 +CONFIG_SERIAL_8250_NR_UARTS=4
18683 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
18684 +CONFIG_SERIAL_8250_EXTENDED=y
18685 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
18686 +CONFIG_SERIAL_8250_SHARE_IRQ=y
18687 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
18688 +# CONFIG_SERIAL_8250_RSA is not set
18689 +
18690 +#
18691 +# Non-8250 serial port support
18692 +#
18693 +# CONFIG_SERIAL_UARTLITE is not set
18694 +CONFIG_SERIAL_CORE=y
18695 +CONFIG_SERIAL_CORE_CONSOLE=y
18696 +# CONFIG_SERIAL_JSM is not set
18697 +CONFIG_SERIAL_OF_PLATFORM=y
18698 +CONFIG_UNIX98_PTYS=y
18699 +CONFIG_LEGACY_PTYS=y
18700 +CONFIG_LEGACY_PTY_COUNT=256
18701 +# CONFIG_IPMI_HANDLER is not set
18702 +# CONFIG_HW_RANDOM is not set
18703 +# CONFIG_NVRAM is not set
18704 +# CONFIG_GEN_RTC is not set
18705 +# CONFIG_R3964 is not set
18706 +# CONFIG_APPLICOM is not set
18707 +# CONFIG_RAW_DRIVER is not set
18708 +# CONFIG_TCG_TPM is not set
18709 +CONFIG_DEVPORT=y
18710 +# CONFIG_I2C is not set
18711 +
18712 +#
18713 +# SPI support
18714 +#
18715 +# CONFIG_SPI is not set
18716 +# CONFIG_SPI_MASTER is not set
18717 +# CONFIG_W1 is not set
18718 +# CONFIG_POWER_SUPPLY is not set
18719 +# CONFIG_HWMON is not set
18720 +CONFIG_THERMAL=y
18721 +# CONFIG_WATCHDOG is not set
18722 +
18723 +#
18724 +# Sonics Silicon Backplane
18725 +#
18726 +CONFIG_SSB_POSSIBLE=y
18727 +# CONFIG_SSB is not set
18728 +
18729 +#
18730 +# Multifunction device drivers
18731 +#
18732 +# CONFIG_MFD_SM501 is not set
18733 +
18734 +#
18735 +# Multimedia devices
18736 +#
18737 +# CONFIG_VIDEO_DEV is not set
18738 +# CONFIG_DVB_CORE is not set
18739 +CONFIG_DAB=y
18740 +
18741 +#
18742 +# Graphics support
18743 +#
18744 +# CONFIG_AGP is not set
18745 +# CONFIG_DRM is not set
18746 +# CONFIG_VGASTATE is not set
18747 +CONFIG_VIDEO_OUTPUT_CONTROL=m
18748 +# CONFIG_FB is not set
18749 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
18750 +
18751 +#
18752 +# Display device support
18753 +#
18754 +# CONFIG_DISPLAY_SUPPORT is not set
18755 +
18756 +#
18757 +# Sound
18758 +#
18759 +# CONFIG_SOUND is not set
18760 +CONFIG_USB_SUPPORT=y
18761 +CONFIG_USB_ARCH_HAS_HCD=y
18762 +CONFIG_USB_ARCH_HAS_OHCI=y
18763 +CONFIG_USB_ARCH_HAS_EHCI=y
18764 +# CONFIG_USB is not set
18765 +
18766 +#
18767 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
18768 +#
18769 +# CONFIG_USB_GADGET is not set
18770 +# CONFIG_MMC is not set
18771 +# CONFIG_MEMSTICK is not set
18772 +# CONFIG_NEW_LEDS is not set
18773 +# CONFIG_INFINIBAND is not set
18774 +# CONFIG_EDAC is not set
18775 +# CONFIG_RTC_CLASS is not set
18776 +
18777 +#
18778 +# Userspace I/O
18779 +#
18780 +# CONFIG_UIO is not set
18781 +
18782 +#
18783 +# File systems
18784 +#
18785 +CONFIG_EXT2_FS=y
18786 +# CONFIG_EXT2_FS_XATTR is not set
18787 +# CONFIG_EXT2_FS_XIP is not set
18788 +# CONFIG_EXT3_FS is not set
18789 +# CONFIG_EXT4DEV_FS is not set
18790 +# CONFIG_REISERFS_FS is not set
18791 +# CONFIG_JFS_FS is not set
18792 +# CONFIG_FS_POSIX_ACL is not set
18793 +# CONFIG_XFS_FS is not set
18794 +# CONFIG_GFS2_FS is not set
18795 +# CONFIG_OCFS2_FS is not set
18796 +CONFIG_DNOTIFY=y
18797 +CONFIG_INOTIFY=y
18798 +CONFIG_INOTIFY_USER=y
18799 +# CONFIG_QUOTA is not set
18800 +# CONFIG_AUTOFS_FS is not set
18801 +# CONFIG_AUTOFS4_FS is not set
18802 +# CONFIG_FUSE_FS is not set
18803 +
18804 +#
18805 +# CD-ROM/DVD Filesystems
18806 +#
18807 +# CONFIG_ISO9660_FS is not set
18808 +# CONFIG_UDF_FS is not set
18809 +
18810 +#
18811 +# DOS/FAT/NT Filesystems
18812 +#
18813 +# CONFIG_MSDOS_FS is not set
18814 +# CONFIG_VFAT_FS is not set
18815 +# CONFIG_NTFS_FS is not set
18816 +
18817 +#
18818 +# Pseudo filesystems
18819 +#
18820 +CONFIG_PROC_FS=y
18821 +CONFIG_PROC_KCORE=y
18822 +CONFIG_PROC_SYSCTL=y
18823 +CONFIG_SYSFS=y
18824 +CONFIG_TMPFS=y
18825 +# CONFIG_TMPFS_POSIX_ACL is not set
18826 +# CONFIG_HUGETLB_PAGE is not set
18827 +# CONFIG_CONFIGFS_FS is not set
18828 +
18829 +#
18830 +# Miscellaneous filesystems
18831 +#
18832 +# CONFIG_ADFS_FS is not set
18833 +# CONFIG_AFFS_FS is not set
18834 +# CONFIG_HFS_FS is not set
18835 +# CONFIG_HFSPLUS_FS is not set
18836 +# CONFIG_BEFS_FS is not set
18837 +# CONFIG_BFS_FS is not set
18838 +# CONFIG_EFS_FS is not set
18839 +CONFIG_JFFS2_FS=y
18840 +CONFIG_JFFS2_FS_DEBUG=0
18841 +CONFIG_JFFS2_FS_WRITEBUFFER=y
18842 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
18843 +# CONFIG_JFFS2_SUMMARY is not set
18844 +# CONFIG_JFFS2_FS_XATTR is not set
18845 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
18846 +CONFIG_JFFS2_ZLIB=y
18847 +# CONFIG_JFFS2_LZO is not set
18848 +CONFIG_JFFS2_RTIME=y
18849 +# CONFIG_JFFS2_RUBIN is not set
18850 +CONFIG_CRAMFS=y
18851 +# CONFIG_VXFS_FS is not set
18852 +# CONFIG_MINIX_FS is not set
18853 +# CONFIG_HPFS_FS is not set
18854 +# CONFIG_QNX4FS_FS is not set
18855 +# CONFIG_ROMFS_FS is not set
18856 +# CONFIG_SYSV_FS is not set
18857 +# CONFIG_UFS_FS is not set
18858 +CONFIG_NETWORK_FILESYSTEMS=y
18859 +CONFIG_NFS_FS=y
18860 +CONFIG_NFS_V3=y
18861 +# CONFIG_NFS_V3_ACL is not set
18862 +# CONFIG_NFS_V4 is not set
18863 +# CONFIG_NFS_DIRECTIO is not set
18864 +# CONFIG_NFSD is not set
18865 +CONFIG_ROOT_NFS=y
18866 +CONFIG_LOCKD=y
18867 +CONFIG_LOCKD_V4=y
18868 +CONFIG_NFS_COMMON=y
18869 +CONFIG_SUNRPC=y
18870 +# CONFIG_SUNRPC_BIND34 is not set
18871 +# CONFIG_RPCSEC_GSS_KRB5 is not set
18872 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
18873 +# CONFIG_SMB_FS is not set
18874 +# CONFIG_CIFS is not set
18875 +# CONFIG_NCP_FS is not set
18876 +# CONFIG_CODA_FS is not set
18877 +# CONFIG_AFS_FS is not set
18878 +
18879 +#
18880 +# Partition Types
18881 +#
18882 +# CONFIG_PARTITION_ADVANCED is not set
18883 +CONFIG_MSDOS_PARTITION=y
18884 +# CONFIG_NLS is not set
18885 +# CONFIG_DLM is not set
18886 +
18887 +#
18888 +# Library routines
18889 +#
18890 +CONFIG_BITREVERSE=y
18891 +# CONFIG_CRC_CCITT is not set
18892 +# CONFIG_CRC16 is not set
18893 +# CONFIG_CRC_ITU_T is not set
18894 +CONFIG_CRC32=y
18895 +# CONFIG_CRC7 is not set
18896 +# CONFIG_LIBCRC32C is not set
18897 +CONFIG_ZLIB_INFLATE=y
18898 +CONFIG_ZLIB_DEFLATE=y
18899 +CONFIG_PLIST=y
18900 +CONFIG_HAS_IOMEM=y
18901 +CONFIG_HAS_IOPORT=y
18902 +CONFIG_HAS_DMA=y
18903 +
18904 +#
18905 +# Kernel hacking
18906 +#
18907 +# CONFIG_PRINTK_TIME is not set
18908 +CONFIG_ENABLE_WARN_DEPRECATED=y
18909 +CONFIG_ENABLE_MUST_CHECK=y
18910 +CONFIG_MAGIC_SYSRQ=y
18911 +# CONFIG_UNUSED_SYMBOLS is not set
18912 +CONFIG_DEBUG_FS=y
18913 +# CONFIG_HEADERS_CHECK is not set
18914 +CONFIG_DEBUG_KERNEL=y
18915 +# CONFIG_DEBUG_SHIRQ is not set
18916 +CONFIG_DETECT_SOFTLOCKUP=y
18917 +CONFIG_SCHED_DEBUG=y
18918 +# CONFIG_SCHEDSTATS is not set
18919 +# CONFIG_TIMER_STATS is not set
18920 +# CONFIG_SLUB_DEBUG_ON is not set
18921 +# CONFIG_SLUB_STATS is not set
18922 +# CONFIG_DEBUG_RT_MUTEXES is not set
18923 +# CONFIG_RT_MUTEX_TESTER is not set
18924 +# CONFIG_DEBUG_SPINLOCK is not set
18925 +# CONFIG_DEBUG_MUTEXES is not set
18926 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
18927 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
18928 +# CONFIG_DEBUG_KOBJECT is not set
18929 +# CONFIG_DEBUG_BUGVERBOSE is not set
18930 +# CONFIG_DEBUG_INFO is not set
18931 +# CONFIG_DEBUG_VM is not set
18932 +# CONFIG_DEBUG_LIST is not set
18933 +# CONFIG_DEBUG_SG is not set
18934 +# CONFIG_BOOT_PRINTK_DELAY is not set
18935 +# CONFIG_RCU_TORTURE_TEST is not set
18936 +# CONFIG_BACKTRACE_SELF_TEST is not set
18937 +# CONFIG_FAULT_INJECTION is not set
18938 +# CONFIG_SAMPLES is not set
18939 +# CONFIG_DEBUG_STACKOVERFLOW is not set
18940 +# CONFIG_DEBUG_STACK_USAGE is not set
18941 +# CONFIG_DEBUG_PAGEALLOC is not set
18942 +CONFIG_DEBUGGER=y
18943 +# CONFIG_KGDB is not set
18944 +# CONFIG_XMON is not set
18945 +# CONFIG_VIRQ_DEBUG is not set
18946 +# CONFIG_BDI_SWITCH is not set
18947 +CONFIG_PPC_EARLY_DEBUG=y
18948 +# CONFIG_PPC_EARLY_DEBUG_LPAR is not set
18949 +# CONFIG_PPC_EARLY_DEBUG_G5 is not set
18950 +# CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set
18951 +# CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set
18952 +# CONFIG_PPC_EARLY_DEBUG_MAPLE is not set
18953 +# CONFIG_PPC_EARLY_DEBUG_ISERIES is not set
18954 +# CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set
18955 +# CONFIG_PPC_EARLY_DEBUG_BEAT is not set
18956 +CONFIG_PPC_EARLY_DEBUG_44x=y
18957 +# CONFIG_PPC_EARLY_DEBUG_40x is not set
18958 +# CONFIG_PPC_EARLY_DEBUG_CPM is not set
18959 +CONFIG_PPC_EARLY_DEBUG_44x_PHYSLOW=0xef600300
18960 +CONFIG_PPC_EARLY_DEBUG_44x_PHYSHIGH=0x1
18961 +
18962 +#
18963 +# Security options
18964 +#
18965 +# CONFIG_KEYS is not set
18966 +# CONFIG_SECURITY is not set
18967 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
18968 +CONFIG_CRYPTO=y
18969 +CONFIG_CRYPTO_ALGAPI=y
18970 +CONFIG_CRYPTO_BLKCIPHER=y
18971 +# CONFIG_CRYPTO_SEQIV is not set
18972 +CONFIG_CRYPTO_MANAGER=y
18973 +# CONFIG_CRYPTO_HMAC is not set
18974 +# CONFIG_CRYPTO_XCBC is not set
18975 +# CONFIG_CRYPTO_NULL is not set
18976 +# CONFIG_CRYPTO_MD4 is not set
18977 +CONFIG_CRYPTO_MD5=y
18978 +# CONFIG_CRYPTO_SHA1 is not set
18979 +# CONFIG_CRYPTO_SHA256 is not set
18980 +# CONFIG_CRYPTO_SHA512 is not set
18981 +# CONFIG_CRYPTO_WP512 is not set
18982 +# CONFIG_CRYPTO_TGR192 is not set
18983 +# CONFIG_CRYPTO_GF128MUL is not set
18984 +CONFIG_CRYPTO_ECB=y
18985 +CONFIG_CRYPTO_CBC=y
18986 +CONFIG_CRYPTO_PCBC=y
18987 +# CONFIG_CRYPTO_LRW is not set
18988 +# CONFIG_CRYPTO_XTS is not set
18989 +# CONFIG_CRYPTO_CTR is not set
18990 +# CONFIG_CRYPTO_GCM is not set
18991 +# CONFIG_CRYPTO_CCM is not set
18992 +# CONFIG_CRYPTO_CRYPTD is not set
18993 +CONFIG_CRYPTO_DES=y
18994 +# CONFIG_CRYPTO_FCRYPT is not set
18995 +# CONFIG_CRYPTO_BLOWFISH is not set
18996 +# CONFIG_CRYPTO_TWOFISH is not set
18997 +# CONFIG_CRYPTO_SERPENT is not set
18998 +# CONFIG_CRYPTO_AES is not set
18999 +# CONFIG_CRYPTO_CAST5 is not set
19000 +# CONFIG_CRYPTO_CAST6 is not set
19001 +# CONFIG_CRYPTO_TEA is not set
19002 +# CONFIG_CRYPTO_ARC4 is not set
19003 +# CONFIG_CRYPTO_KHAZAD is not set
19004 +# CONFIG_CRYPTO_ANUBIS is not set
19005 +# CONFIG_CRYPTO_SEED is not set
19006 +# CONFIG_CRYPTO_SALSA20 is not set
19007 +# CONFIG_CRYPTO_DEFLATE is not set
19008 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
19009 +# CONFIG_CRYPTO_CRC32C is not set
19010 +# CONFIG_CRYPTO_CAMELLIA is not set
19011 +# CONFIG_CRYPTO_TEST is not set
19012 +# CONFIG_CRYPTO_AUTHENC is not set
19013 +# CONFIG_CRYPTO_LZO is not set
19014 +CONFIG_CRYPTO_HW=y
19015 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
19016 +# CONFIG_PPC_CLOCK is not set
19017 Index: linux-2.6.25.4/arch/powerpc/configs/44x/taishan_defconfig
19018 ===================================================================
19019 --- /dev/null
19020 +++ linux-2.6.25.4/arch/powerpc/configs/44x/taishan_defconfig
19021 @@ -0,0 +1,815 @@
19022 +#
19023 +# Automatically generated make config: don't edit
19024 +# Linux kernel version: 2.6.25-rc2
19025 +# Fri Feb 15 21:40:44 2008
19026 +#
19027 +# CONFIG_PPC64 is not set
19028 +
19029 +#
19030 +# Processor support
19031 +#
19032 +# CONFIG_6xx is not set
19033 +# CONFIG_PPC_85xx is not set
19034 +# CONFIG_PPC_8xx is not set
19035 +# CONFIG_40x is not set
19036 +CONFIG_44x=y
19037 +# CONFIG_E200 is not set
19038 +CONFIG_4xx=y
19039 +CONFIG_BOOKE=y
19040 +CONFIG_PTE_64BIT=y
19041 +CONFIG_PHYS_64BIT=y
19042 +# CONFIG_PPC_MM_SLICES is not set
19043 +CONFIG_NOT_COHERENT_CACHE=y
19044 +CONFIG_PPC32=y
19045 +CONFIG_WORD_SIZE=32
19046 +CONFIG_PPC_MERGE=y
19047 +CONFIG_MMU=y
19048 +CONFIG_GENERIC_CMOS_UPDATE=y
19049 +CONFIG_GENERIC_TIME=y
19050 +CONFIG_GENERIC_TIME_VSYSCALL=y
19051 +CONFIG_GENERIC_CLOCKEVENTS=y
19052 +CONFIG_GENERIC_HARDIRQS=y
19053 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
19054 +CONFIG_IRQ_PER_CPU=y
19055 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
19056 +CONFIG_ARCH_HAS_ILOG2_U32=y
19057 +CONFIG_GENERIC_HWEIGHT=y
19058 +CONFIG_GENERIC_CALIBRATE_DELAY=y
19059 +CONFIG_GENERIC_FIND_NEXT_BIT=y
19060 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
19061 +CONFIG_PPC=y
19062 +CONFIG_EARLY_PRINTK=y
19063 +CONFIG_GENERIC_NVRAM=y
19064 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
19065 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
19066 +CONFIG_PPC_OF=y
19067 +CONFIG_OF=y
19068 +CONFIG_PPC_UDBG_16550=y
19069 +# CONFIG_GENERIC_TBSYNC is not set
19070 +CONFIG_AUDIT_ARCH=y
19071 +CONFIG_GENERIC_BUG=y
19072 +# CONFIG_DEFAULT_UIMAGE is not set
19073 +CONFIG_PPC_DCR_NATIVE=y
19074 +# CONFIG_PPC_DCR_MMIO is not set
19075 +CONFIG_PPC_DCR=y
19076 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
19077 +
19078 +#
19079 +# General setup
19080 +#
19081 +CONFIG_EXPERIMENTAL=y
19082 +CONFIG_BROKEN_ON_SMP=y
19083 +CONFIG_INIT_ENV_ARG_LIMIT=32
19084 +CONFIG_LOCALVERSION=""
19085 +CONFIG_LOCALVERSION_AUTO=y
19086 +CONFIG_SWAP=y
19087 +CONFIG_SYSVIPC=y
19088 +CONFIG_SYSVIPC_SYSCTL=y
19089 +CONFIG_POSIX_MQUEUE=y
19090 +# CONFIG_BSD_PROCESS_ACCT is not set
19091 +# CONFIG_TASKSTATS is not set
19092 +# CONFIG_AUDIT is not set
19093 +# CONFIG_IKCONFIG is not set
19094 +CONFIG_LOG_BUF_SHIFT=14
19095 +# CONFIG_CGROUPS is not set
19096 +CONFIG_GROUP_SCHED=y
19097 +CONFIG_FAIR_GROUP_SCHED=y
19098 +# CONFIG_RT_GROUP_SCHED is not set
19099 +CONFIG_USER_SCHED=y
19100 +# CONFIG_CGROUP_SCHED is not set
19101 +CONFIG_SYSFS_DEPRECATED=y
19102 +# CONFIG_RELAY is not set
19103 +# CONFIG_NAMESPACES is not set
19104 +CONFIG_BLK_DEV_INITRD=y
19105 +CONFIG_INITRAMFS_SOURCE=""
19106 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
19107 +CONFIG_SYSCTL=y
19108 +CONFIG_EMBEDDED=y
19109 +CONFIG_SYSCTL_SYSCALL=y
19110 +CONFIG_KALLSYMS=y
19111 +# CONFIG_KALLSYMS_ALL is not set
19112 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
19113 +CONFIG_HOTPLUG=y
19114 +CONFIG_PRINTK=y
19115 +CONFIG_BUG=y
19116 +CONFIG_ELF_CORE=y
19117 +CONFIG_COMPAT_BRK=y
19118 +CONFIG_BASE_FULL=y
19119 +CONFIG_FUTEX=y
19120 +CONFIG_ANON_INODES=y
19121 +CONFIG_EPOLL=y
19122 +CONFIG_SIGNALFD=y
19123 +CONFIG_TIMERFD=y
19124 +CONFIG_EVENTFD=y
19125 +CONFIG_SHMEM=y
19126 +CONFIG_VM_EVENT_COUNTERS=y
19127 +CONFIG_SLUB_DEBUG=y
19128 +# CONFIG_SLAB is not set
19129 +CONFIG_SLUB=y
19130 +# CONFIG_SLOB is not set
19131 +# CONFIG_PROFILING is not set
19132 +# CONFIG_MARKERS is not set
19133 +CONFIG_HAVE_OPROFILE=y
19134 +# CONFIG_KPROBES is not set
19135 +CONFIG_HAVE_KPROBES=y
19136 +CONFIG_PROC_PAGE_MONITOR=y
19137 +CONFIG_SLABINFO=y
19138 +CONFIG_RT_MUTEXES=y
19139 +# CONFIG_TINY_SHMEM is not set
19140 +CONFIG_BASE_SMALL=0
19141 +CONFIG_MODULES=y
19142 +CONFIG_MODULE_UNLOAD=y
19143 +# CONFIG_MODULE_FORCE_UNLOAD is not set
19144 +# CONFIG_MODVERSIONS is not set
19145 +# CONFIG_MODULE_SRCVERSION_ALL is not set
19146 +CONFIG_KMOD=y
19147 +CONFIG_BLOCK=y
19148 +CONFIG_LBD=y
19149 +# CONFIG_BLK_DEV_IO_TRACE is not set
19150 +# CONFIG_LSF is not set
19151 +# CONFIG_BLK_DEV_BSG is not set
19152 +
19153 +#
19154 +# IO Schedulers
19155 +#
19156 +CONFIG_IOSCHED_NOOP=y
19157 +CONFIG_IOSCHED_AS=y
19158 +CONFIG_IOSCHED_DEADLINE=y
19159 +CONFIG_IOSCHED_CFQ=y
19160 +CONFIG_DEFAULT_AS=y
19161 +# CONFIG_DEFAULT_DEADLINE is not set
19162 +# CONFIG_DEFAULT_CFQ is not set
19163 +# CONFIG_DEFAULT_NOOP is not set
19164 +CONFIG_DEFAULT_IOSCHED="anticipatory"
19165 +CONFIG_CLASSIC_RCU=y
19166 +# CONFIG_PREEMPT_RCU is not set
19167 +# CONFIG_PPC4xx_PCI_EXPRESS is not set
19168 +
19169 +#
19170 +# Platform support
19171 +#
19172 +# CONFIG_PPC_MPC512x is not set
19173 +# CONFIG_PPC_MPC5121 is not set
19174 +# CONFIG_PPC_CELL is not set
19175 +# CONFIG_PPC_CELL_NATIVE is not set
19176 +# CONFIG_PQ2ADS is not set
19177 +# CONFIG_BAMBOO is not set
19178 +# CONFIG_EBONY is not set
19179 +# CONFIG_SEQUOIA is not set
19180 +CONFIG_TAISHAN=y
19181 +# CONFIG_KATMAI is not set
19182 +# CONFIG_RAINIER is not set
19183 +# CONFIG_WARP is not set
19184 +CONFIG_440GX=y
19185 +# CONFIG_IPIC is not set
19186 +# CONFIG_MPIC is not set
19187 +# CONFIG_MPIC_WEIRD is not set
19188 +# CONFIG_PPC_I8259 is not set
19189 +# CONFIG_PPC_RTAS is not set
19190 +# CONFIG_MMIO_NVRAM is not set
19191 +# CONFIG_PPC_MPC106 is not set
19192 +# CONFIG_PPC_970_NAP is not set
19193 +# CONFIG_PPC_INDIRECT_IO is not set
19194 +# CONFIG_GENERIC_IOMAP is not set
19195 +# CONFIG_CPU_FREQ is not set
19196 +# CONFIG_FSL_ULI1575 is not set
19197 +
19198 +#
19199 +# Kernel options
19200 +#
19201 +# CONFIG_HIGHMEM is not set
19202 +# CONFIG_TICK_ONESHOT is not set
19203 +# CONFIG_NO_HZ is not set
19204 +# CONFIG_HIGH_RES_TIMERS is not set
19205 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
19206 +# CONFIG_HZ_100 is not set
19207 +CONFIG_HZ_250=y
19208 +# CONFIG_HZ_300 is not set
19209 +# CONFIG_HZ_1000 is not set
19210 +CONFIG_HZ=250
19211 +# CONFIG_SCHED_HRTICK is not set
19212 +CONFIG_PREEMPT_NONE=y
19213 +# CONFIG_PREEMPT_VOLUNTARY is not set
19214 +# CONFIG_PREEMPT is not set
19215 +CONFIG_RCU_TRACE=y
19216 +CONFIG_BINFMT_ELF=y
19217 +# CONFIG_BINFMT_MISC is not set
19218 +# CONFIG_MATH_EMULATION is not set
19219 +# CONFIG_IOMMU_HELPER is not set
19220 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
19221 +CONFIG_ARCH_HAS_WALK_MEMORY=y
19222 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
19223 +CONFIG_ARCH_FLATMEM_ENABLE=y
19224 +CONFIG_ARCH_POPULATES_NODE_MAP=y
19225 +CONFIG_SELECT_MEMORY_MODEL=y
19226 +CONFIG_FLATMEM_MANUAL=y
19227 +# CONFIG_DISCONTIGMEM_MANUAL is not set
19228 +# CONFIG_SPARSEMEM_MANUAL is not set
19229 +CONFIG_FLATMEM=y
19230 +CONFIG_FLAT_NODE_MEM_MAP=y
19231 +# CONFIG_SPARSEMEM_STATIC is not set
19232 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
19233 +CONFIG_SPLIT_PTLOCK_CPUS=4
19234 +CONFIG_RESOURCES_64BIT=y
19235 +CONFIG_ZONE_DMA_FLAG=1
19236 +CONFIG_BOUNCE=y
19237 +CONFIG_VIRT_TO_BUS=y
19238 +CONFIG_PROC_DEVICETREE=y
19239 +CONFIG_CMDLINE_BOOL=y
19240 +CONFIG_CMDLINE=""
19241 +CONFIG_SECCOMP=y
19242 +CONFIG_ISA_DMA_API=y
19243 +
19244 +#
19245 +# Bus options
19246 +#
19247 +CONFIG_ZONE_DMA=y
19248 +CONFIG_PPC_INDIRECT_PCI=y
19249 +CONFIG_PCI=y
19250 +CONFIG_PCI_DOMAINS=y
19251 +CONFIG_PCI_SYSCALL=y
19252 +# CONFIG_PCIEPORTBUS is not set
19253 +CONFIG_ARCH_SUPPORTS_MSI=y
19254 +# CONFIG_PCI_MSI is not set
19255 +CONFIG_PCI_LEGACY=y
19256 +# CONFIG_PCI_DEBUG is not set
19257 +# CONFIG_PCCARD is not set
19258 +# CONFIG_HOTPLUG_PCI is not set
19259 +
19260 +#
19261 +# Advanced setup
19262 +#
19263 +# CONFIG_ADVANCED_OPTIONS is not set
19264 +
19265 +#
19266 +# Default settings for advanced configuration options are used
19267 +#
19268 +CONFIG_HIGHMEM_START=0xfe000000
19269 +CONFIG_LOWMEM_SIZE=0x30000000
19270 +CONFIG_KERNEL_START=0xc0000000
19271 +CONFIG_TASK_SIZE=0xc0000000
19272 +CONFIG_CONSISTENT_START=0xff100000
19273 +CONFIG_CONSISTENT_SIZE=0x00200000
19274 +CONFIG_BOOT_LOAD=0x01000000
19275 +
19276 +#
19277 +# Networking
19278 +#
19279 +CONFIG_NET=y
19280 +
19281 +#
19282 +# Networking options
19283 +#
19284 +CONFIG_PACKET=y
19285 +# CONFIG_PACKET_MMAP is not set
19286 +CONFIG_UNIX=y
19287 +# CONFIG_NET_KEY is not set
19288 +CONFIG_INET=y
19289 +# CONFIG_IP_MULTICAST is not set
19290 +# CONFIG_IP_ADVANCED_ROUTER is not set
19291 +CONFIG_IP_FIB_HASH=y
19292 +CONFIG_IP_PNP=y
19293 +CONFIG_IP_PNP_DHCP=y
19294 +CONFIG_IP_PNP_BOOTP=y
19295 +# CONFIG_IP_PNP_RARP is not set
19296 +# CONFIG_NET_IPIP is not set
19297 +# CONFIG_NET_IPGRE is not set
19298 +# CONFIG_ARPD is not set
19299 +# CONFIG_SYN_COOKIES is not set
19300 +# CONFIG_INET_AH is not set
19301 +# CONFIG_INET_ESP is not set
19302 +# CONFIG_INET_IPCOMP is not set
19303 +# CONFIG_INET_XFRM_TUNNEL is not set
19304 +# CONFIG_INET_TUNNEL is not set
19305 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
19306 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
19307 +# CONFIG_INET_XFRM_MODE_BEET is not set
19308 +# CONFIG_INET_LRO is not set
19309 +CONFIG_INET_DIAG=y
19310 +CONFIG_INET_TCP_DIAG=y
19311 +# CONFIG_TCP_CONG_ADVANCED is not set
19312 +CONFIG_TCP_CONG_CUBIC=y
19313 +CONFIG_DEFAULT_TCP_CONG="cubic"
19314 +# CONFIG_TCP_MD5SIG is not set
19315 +# CONFIG_IPV6 is not set
19316 +# CONFIG_INET6_XFRM_TUNNEL is not set
19317 +# CONFIG_INET6_TUNNEL is not set
19318 +# CONFIG_NETWORK_SECMARK is not set
19319 +# CONFIG_NETFILTER is not set
19320 +# CONFIG_IP_DCCP is not set
19321 +# CONFIG_IP_SCTP is not set
19322 +# CONFIG_TIPC is not set
19323 +# CONFIG_ATM is not set
19324 +# CONFIG_BRIDGE is not set
19325 +# CONFIG_VLAN_8021Q is not set
19326 +# CONFIG_DECNET is not set
19327 +# CONFIG_LLC2 is not set
19328 +# CONFIG_IPX is not set
19329 +# CONFIG_ATALK is not set
19330 +# CONFIG_X25 is not set
19331 +# CONFIG_LAPB is not set
19332 +# CONFIG_ECONET is not set
19333 +# CONFIG_WAN_ROUTER is not set
19334 +# CONFIG_NET_SCHED is not set
19335 +
19336 +#
19337 +# Network testing
19338 +#
19339 +# CONFIG_NET_PKTGEN is not set
19340 +# CONFIG_HAMRADIO is not set
19341 +# CONFIG_CAN is not set
19342 +# CONFIG_IRDA is not set
19343 +# CONFIG_BT is not set
19344 +# CONFIG_AF_RXRPC is not set
19345 +
19346 +#
19347 +# Wireless
19348 +#
19349 +# CONFIG_CFG80211 is not set
19350 +# CONFIG_WIRELESS_EXT is not set
19351 +# CONFIG_MAC80211 is not set
19352 +# CONFIG_IEEE80211 is not set
19353 +# CONFIG_RFKILL is not set
19354 +# CONFIG_NET_9P is not set
19355 +
19356 +#
19357 +# Device Drivers
19358 +#
19359 +
19360 +#
19361 +# Generic Driver Options
19362 +#
19363 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
19364 +CONFIG_STANDALONE=y
19365 +CONFIG_PREVENT_FIRMWARE_BUILD=y
19366 +CONFIG_FW_LOADER=y
19367 +# CONFIG_DEBUG_DRIVER is not set
19368 +# CONFIG_DEBUG_DEVRES is not set
19369 +# CONFIG_SYS_HYPERVISOR is not set
19370 +CONFIG_CONNECTOR=y
19371 +CONFIG_PROC_EVENTS=y
19372 +# CONFIG_MTD is not set
19373 +CONFIG_OF_DEVICE=y
19374 +# CONFIG_PARPORT is not set
19375 +CONFIG_BLK_DEV=y
19376 +# CONFIG_BLK_DEV_FD is not set
19377 +# CONFIG_BLK_CPQ_DA is not set
19378 +# CONFIG_BLK_CPQ_CISS_DA is not set
19379 +# CONFIG_BLK_DEV_DAC960 is not set
19380 +# CONFIG_BLK_DEV_UMEM is not set
19381 +# CONFIG_BLK_DEV_COW_COMMON is not set
19382 +# CONFIG_BLK_DEV_LOOP is not set
19383 +# CONFIG_BLK_DEV_NBD is not set
19384 +# CONFIG_BLK_DEV_SX8 is not set
19385 +CONFIG_BLK_DEV_RAM=y
19386 +CONFIG_BLK_DEV_RAM_COUNT=16
19387 +CONFIG_BLK_DEV_RAM_SIZE=35000
19388 +# CONFIG_BLK_DEV_XIP is not set
19389 +# CONFIG_CDROM_PKTCDVD is not set
19390 +# CONFIG_ATA_OVER_ETH is not set
19391 +# CONFIG_XILINX_SYSACE is not set
19392 +CONFIG_MISC_DEVICES=y
19393 +# CONFIG_PHANTOM is not set
19394 +# CONFIG_EEPROM_93CX6 is not set
19395 +# CONFIG_SGI_IOC4 is not set
19396 +# CONFIG_TIFM_CORE is not set
19397 +# CONFIG_ENCLOSURE_SERVICES is not set
19398 +CONFIG_HAVE_IDE=y
19399 +# CONFIG_IDE is not set
19400 +
19401 +#
19402 +# SCSI device support
19403 +#
19404 +# CONFIG_RAID_ATTRS is not set
19405 +# CONFIG_SCSI is not set
19406 +# CONFIG_SCSI_DMA is not set
19407 +# CONFIG_SCSI_NETLINK is not set
19408 +# CONFIG_ATA is not set
19409 +# CONFIG_MD is not set
19410 +# CONFIG_FUSION is not set
19411 +
19412 +#
19413 +# IEEE 1394 (FireWire) support
19414 +#
19415 +# CONFIG_FIREWIRE is not set
19416 +# CONFIG_IEEE1394 is not set
19417 +# CONFIG_I2O is not set
19418 +CONFIG_MACINTOSH_DRIVERS=y
19419 +# CONFIG_MAC_EMUMOUSEBTN is not set
19420 +# CONFIG_WINDFARM is not set
19421 +CONFIG_NETDEVICES=y
19422 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
19423 +# CONFIG_DUMMY is not set
19424 +# CONFIG_BONDING is not set
19425 +# CONFIG_MACVLAN is not set
19426 +# CONFIG_EQUALIZER is not set
19427 +# CONFIG_TUN is not set
19428 +# CONFIG_VETH is not set
19429 +# CONFIG_ARCNET is not set
19430 +# CONFIG_PHYLIB is not set
19431 +CONFIG_NET_ETHERNET=y
19432 +# CONFIG_MII is not set
19433 +# CONFIG_HAPPYMEAL is not set
19434 +# CONFIG_SUNGEM is not set
19435 +# CONFIG_CASSINI is not set
19436 +# CONFIG_NET_VENDOR_3COM is not set
19437 +# CONFIG_NET_TULIP is not set
19438 +# CONFIG_HP100 is not set
19439 +CONFIG_IBM_NEW_EMAC=y
19440 +CONFIG_IBM_NEW_EMAC_RXB=128
19441 +CONFIG_IBM_NEW_EMAC_TXB=64
19442 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
19443 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
19444 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
19445 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
19446 +CONFIG_IBM_NEW_EMAC_ZMII=y
19447 +CONFIG_IBM_NEW_EMAC_RGMII=y
19448 +CONFIG_IBM_NEW_EMAC_TAH=y
19449 +CONFIG_IBM_NEW_EMAC_EMAC4=y
19450 +# CONFIG_NET_PCI is not set
19451 +# CONFIG_B44 is not set
19452 +CONFIG_NETDEV_1000=y
19453 +# CONFIG_ACENIC is not set
19454 +# CONFIG_DL2K is not set
19455 +# CONFIG_E1000 is not set
19456 +# CONFIG_E1000E is not set
19457 +# CONFIG_E1000E_ENABLED is not set
19458 +# CONFIG_IP1000 is not set
19459 +# CONFIG_IGB is not set
19460 +# CONFIG_NS83820 is not set
19461 +# CONFIG_HAMACHI is not set
19462 +# CONFIG_YELLOWFIN is not set
19463 +# CONFIG_R8169 is not set
19464 +# CONFIG_SIS190 is not set
19465 +# CONFIG_SKGE is not set
19466 +# CONFIG_SKY2 is not set
19467 +# CONFIG_SK98LIN is not set
19468 +# CONFIG_VIA_VELOCITY is not set
19469 +# CONFIG_TIGON3 is not set
19470 +# CONFIG_BNX2 is not set
19471 +# CONFIG_QLA3XXX is not set
19472 +# CONFIG_ATL1 is not set
19473 +CONFIG_NETDEV_10000=y
19474 +# CONFIG_CHELSIO_T1 is not set
19475 +# CONFIG_CHELSIO_T3 is not set
19476 +# CONFIG_IXGBE is not set
19477 +# CONFIG_IXGB is not set
19478 +# CONFIG_S2IO is not set
19479 +# CONFIG_MYRI10GE is not set
19480 +# CONFIG_NETXEN_NIC is not set
19481 +# CONFIG_NIU is not set
19482 +# CONFIG_MLX4_CORE is not set
19483 +# CONFIG_TEHUTI is not set
19484 +# CONFIG_BNX2X is not set
19485 +# CONFIG_TR is not set
19486 +
19487 +#
19488 +# Wireless LAN
19489 +#
19490 +# CONFIG_WLAN_PRE80211 is not set
19491 +# CONFIG_WLAN_80211 is not set
19492 +# CONFIG_WAN is not set
19493 +# CONFIG_FDDI is not set
19494 +# CONFIG_HIPPI is not set
19495 +# CONFIG_PPP is not set
19496 +# CONFIG_SLIP is not set
19497 +# CONFIG_NETCONSOLE is not set
19498 +# CONFIG_NETPOLL is not set
19499 +# CONFIG_NET_POLL_CONTROLLER is not set
19500 +# CONFIG_ISDN is not set
19501 +# CONFIG_PHONE is not set
19502 +
19503 +#
19504 +# Input device support
19505 +#
19506 +# CONFIG_INPUT is not set
19507 +
19508 +#
19509 +# Hardware I/O ports
19510 +#
19511 +# CONFIG_SERIO is not set
19512 +# CONFIG_GAMEPORT is not set
19513 +
19514 +#
19515 +# Character devices
19516 +#
19517 +# CONFIG_VT is not set
19518 +# CONFIG_SERIAL_NONSTANDARD is not set
19519 +# CONFIG_NOZOMI is not set
19520 +
19521 +#
19522 +# Serial drivers
19523 +#
19524 +CONFIG_SERIAL_8250=y
19525 +CONFIG_SERIAL_8250_CONSOLE=y
19526 +# CONFIG_SERIAL_8250_PCI is not set
19527 +CONFIG_SERIAL_8250_NR_UARTS=4
19528 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
19529 +CONFIG_SERIAL_8250_EXTENDED=y
19530 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
19531 +CONFIG_SERIAL_8250_SHARE_IRQ=y
19532 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
19533 +# CONFIG_SERIAL_8250_RSA is not set
19534 +
19535 +#
19536 +# Non-8250 serial port support
19537 +#
19538 +# CONFIG_SERIAL_UARTLITE is not set
19539 +CONFIG_SERIAL_CORE=y
19540 +CONFIG_SERIAL_CORE_CONSOLE=y
19541 +# CONFIG_SERIAL_JSM is not set
19542 +CONFIG_SERIAL_OF_PLATFORM=y
19543 +CONFIG_UNIX98_PTYS=y
19544 +CONFIG_LEGACY_PTYS=y
19545 +CONFIG_LEGACY_PTY_COUNT=256
19546 +# CONFIG_IPMI_HANDLER is not set
19547 +# CONFIG_HW_RANDOM is not set
19548 +# CONFIG_NVRAM is not set
19549 +# CONFIG_GEN_RTC is not set
19550 +# CONFIG_R3964 is not set
19551 +# CONFIG_APPLICOM is not set
19552 +# CONFIG_RAW_DRIVER is not set
19553 +# CONFIG_TCG_TPM is not set
19554 +CONFIG_DEVPORT=y
19555 +# CONFIG_I2C is not set
19556 +
19557 +#
19558 +# SPI support
19559 +#
19560 +# CONFIG_SPI is not set
19561 +# CONFIG_SPI_MASTER is not set
19562 +# CONFIG_W1 is not set
19563 +# CONFIG_POWER_SUPPLY is not set
19564 +# CONFIG_HWMON is not set
19565 +CONFIG_THERMAL=y
19566 +# CONFIG_WATCHDOG is not set
19567 +
19568 +#
19569 +# Sonics Silicon Backplane
19570 +#
19571 +CONFIG_SSB_POSSIBLE=y
19572 +# CONFIG_SSB is not set
19573 +
19574 +#
19575 +# Multifunction device drivers
19576 +#
19577 +# CONFIG_MFD_SM501 is not set
19578 +
19579 +#
19580 +# Multimedia devices
19581 +#
19582 +# CONFIG_VIDEO_DEV is not set
19583 +# CONFIG_DVB_CORE is not set
19584 +CONFIG_DAB=y
19585 +
19586 +#
19587 +# Graphics support
19588 +#
19589 +# CONFIG_AGP is not set
19590 +# CONFIG_DRM is not set
19591 +# CONFIG_VGASTATE is not set
19592 +CONFIG_VIDEO_OUTPUT_CONTROL=m
19593 +# CONFIG_FB is not set
19594 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
19595 +
19596 +#
19597 +# Display device support
19598 +#
19599 +# CONFIG_DISPLAY_SUPPORT is not set
19600 +
19601 +#
19602 +# Sound
19603 +#
19604 +# CONFIG_SOUND is not set
19605 +CONFIG_USB_SUPPORT=y
19606 +CONFIG_USB_ARCH_HAS_HCD=y
19607 +CONFIG_USB_ARCH_HAS_OHCI=y
19608 +CONFIG_USB_ARCH_HAS_EHCI=y
19609 +# CONFIG_USB is not set
19610 +
19611 +#
19612 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
19613 +#
19614 +# CONFIG_USB_GADGET is not set
19615 +# CONFIG_MMC is not set
19616 +# CONFIG_MEMSTICK is not set
19617 +# CONFIG_NEW_LEDS is not set
19618 +# CONFIG_INFINIBAND is not set
19619 +# CONFIG_EDAC is not set
19620 +# CONFIG_RTC_CLASS is not set
19621 +
19622 +#
19623 +# Userspace I/O
19624 +#
19625 +# CONFIG_UIO is not set
19626 +
19627 +#
19628 +# File systems
19629 +#
19630 +CONFIG_EXT2_FS=y
19631 +# CONFIG_EXT2_FS_XATTR is not set
19632 +# CONFIG_EXT2_FS_XIP is not set
19633 +# CONFIG_EXT3_FS is not set
19634 +# CONFIG_EXT4DEV_FS is not set
19635 +# CONFIG_REISERFS_FS is not set
19636 +# CONFIG_JFS_FS is not set
19637 +# CONFIG_FS_POSIX_ACL is not set
19638 +# CONFIG_XFS_FS is not set
19639 +# CONFIG_GFS2_FS is not set
19640 +# CONFIG_OCFS2_FS is not set
19641 +CONFIG_DNOTIFY=y
19642 +CONFIG_INOTIFY=y
19643 +CONFIG_INOTIFY_USER=y
19644 +# CONFIG_QUOTA is not set
19645 +# CONFIG_AUTOFS_FS is not set
19646 +# CONFIG_AUTOFS4_FS is not set
19647 +# CONFIG_FUSE_FS is not set
19648 +
19649 +#
19650 +# CD-ROM/DVD Filesystems
19651 +#
19652 +# CONFIG_ISO9660_FS is not set
19653 +# CONFIG_UDF_FS is not set
19654 +
19655 +#
19656 +# DOS/FAT/NT Filesystems
19657 +#
19658 +# CONFIG_MSDOS_FS is not set
19659 +# CONFIG_VFAT_FS is not set
19660 +# CONFIG_NTFS_FS is not set
19661 +
19662 +#
19663 +# Pseudo filesystems
19664 +#
19665 +CONFIG_PROC_FS=y
19666 +CONFIG_PROC_KCORE=y
19667 +CONFIG_PROC_SYSCTL=y
19668 +CONFIG_SYSFS=y
19669 +CONFIG_TMPFS=y
19670 +# CONFIG_TMPFS_POSIX_ACL is not set
19671 +# CONFIG_HUGETLB_PAGE is not set
19672 +# CONFIG_CONFIGFS_FS is not set
19673 +
19674 +#
19675 +# Miscellaneous filesystems
19676 +#
19677 +# CONFIG_ADFS_FS is not set
19678 +# CONFIG_AFFS_FS is not set
19679 +# CONFIG_HFS_FS is not set
19680 +# CONFIG_HFSPLUS_FS is not set
19681 +# CONFIG_BEFS_FS is not set
19682 +# CONFIG_BFS_FS is not set
19683 +# CONFIG_EFS_FS is not set
19684 +CONFIG_CRAMFS=y
19685 +# CONFIG_VXFS_FS is not set
19686 +# CONFIG_MINIX_FS is not set
19687 +# CONFIG_HPFS_FS is not set
19688 +# CONFIG_QNX4FS_FS is not set
19689 +# CONFIG_ROMFS_FS is not set
19690 +# CONFIG_SYSV_FS is not set
19691 +# CONFIG_UFS_FS is not set
19692 +CONFIG_NETWORK_FILESYSTEMS=y
19693 +CONFIG_NFS_FS=y
19694 +CONFIG_NFS_V3=y
19695 +# CONFIG_NFS_V3_ACL is not set
19696 +# CONFIG_NFS_V4 is not set
19697 +# CONFIG_NFS_DIRECTIO is not set
19698 +# CONFIG_NFSD is not set
19699 +CONFIG_ROOT_NFS=y
19700 +CONFIG_LOCKD=y
19701 +CONFIG_LOCKD_V4=y
19702 +CONFIG_NFS_COMMON=y
19703 +CONFIG_SUNRPC=y
19704 +# CONFIG_SUNRPC_BIND34 is not set
19705 +# CONFIG_RPCSEC_GSS_KRB5 is not set
19706 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
19707 +# CONFIG_SMB_FS is not set
19708 +# CONFIG_CIFS is not set
19709 +# CONFIG_NCP_FS is not set
19710 +# CONFIG_CODA_FS is not set
19711 +# CONFIG_AFS_FS is not set
19712 +
19713 +#
19714 +# Partition Types
19715 +#
19716 +# CONFIG_PARTITION_ADVANCED is not set
19717 +CONFIG_MSDOS_PARTITION=y
19718 +# CONFIG_NLS is not set
19719 +# CONFIG_DLM is not set
19720 +
19721 +#
19722 +# Library routines
19723 +#
19724 +CONFIG_BITREVERSE=y
19725 +# CONFIG_CRC_CCITT is not set
19726 +# CONFIG_CRC16 is not set
19727 +# CONFIG_CRC_ITU_T is not set
19728 +CONFIG_CRC32=y
19729 +# CONFIG_CRC7 is not set
19730 +# CONFIG_LIBCRC32C is not set
19731 +CONFIG_ZLIB_INFLATE=y
19732 +CONFIG_PLIST=y
19733 +CONFIG_HAS_IOMEM=y
19734 +CONFIG_HAS_IOPORT=y
19735 +CONFIG_HAS_DMA=y
19736 +
19737 +#
19738 +# Kernel hacking
19739 +#
19740 +# CONFIG_PRINTK_TIME is not set
19741 +CONFIG_ENABLE_WARN_DEPRECATED=y
19742 +CONFIG_ENABLE_MUST_CHECK=y
19743 +CONFIG_MAGIC_SYSRQ=y
19744 +# CONFIG_UNUSED_SYMBOLS is not set
19745 +CONFIG_DEBUG_FS=y
19746 +# CONFIG_HEADERS_CHECK is not set
19747 +CONFIG_DEBUG_KERNEL=y
19748 +# CONFIG_DEBUG_SHIRQ is not set
19749 +CONFIG_DETECT_SOFTLOCKUP=y
19750 +CONFIG_SCHED_DEBUG=y
19751 +# CONFIG_SCHEDSTATS is not set
19752 +# CONFIG_TIMER_STATS is not set
19753 +# CONFIG_SLUB_DEBUG_ON is not set
19754 +# CONFIG_SLUB_STATS is not set
19755 +# CONFIG_DEBUG_RT_MUTEXES is not set
19756 +# CONFIG_RT_MUTEX_TESTER is not set
19757 +# CONFIG_DEBUG_SPINLOCK is not set
19758 +# CONFIG_DEBUG_MUTEXES is not set
19759 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
19760 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
19761 +# CONFIG_DEBUG_KOBJECT is not set
19762 +# CONFIG_DEBUG_BUGVERBOSE is not set
19763 +# CONFIG_DEBUG_INFO is not set
19764 +# CONFIG_DEBUG_VM is not set
19765 +# CONFIG_DEBUG_LIST is not set
19766 +# CONFIG_DEBUG_SG is not set
19767 +# CONFIG_BOOT_PRINTK_DELAY is not set
19768 +# CONFIG_RCU_TORTURE_TEST is not set
19769 +# CONFIG_BACKTRACE_SELF_TEST is not set
19770 +# CONFIG_FAULT_INJECTION is not set
19771 +# CONFIG_SAMPLES is not set
19772 +# CONFIG_DEBUG_STACKOVERFLOW is not set
19773 +# CONFIG_DEBUG_STACK_USAGE is not set
19774 +# CONFIG_DEBUG_PAGEALLOC is not set
19775 +CONFIG_DEBUGGER=y
19776 +# CONFIG_KGDB is not set
19777 +# CONFIG_XMON is not set
19778 +# CONFIG_VIRQ_DEBUG is not set
19779 +# CONFIG_BDI_SWITCH is not set
19780 +# CONFIG_PPC_EARLY_DEBUG is not set
19781 +
19782 +#
19783 +# Security options
19784 +#
19785 +# CONFIG_KEYS is not set
19786 +# CONFIG_SECURITY is not set
19787 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
19788 +CONFIG_CRYPTO=y
19789 +CONFIG_CRYPTO_ALGAPI=y
19790 +CONFIG_CRYPTO_BLKCIPHER=y
19791 +# CONFIG_CRYPTO_SEQIV is not set
19792 +CONFIG_CRYPTO_MANAGER=y
19793 +# CONFIG_CRYPTO_HMAC is not set
19794 +# CONFIG_CRYPTO_XCBC is not set
19795 +# CONFIG_CRYPTO_NULL is not set
19796 +# CONFIG_CRYPTO_MD4 is not set
19797 +CONFIG_CRYPTO_MD5=y
19798 +# CONFIG_CRYPTO_SHA1 is not set
19799 +# CONFIG_CRYPTO_SHA256 is not set
19800 +# CONFIG_CRYPTO_SHA512 is not set
19801 +# CONFIG_CRYPTO_WP512 is not set
19802 +# CONFIG_CRYPTO_TGR192 is not set
19803 +# CONFIG_CRYPTO_GF128MUL is not set
19804 +CONFIG_CRYPTO_ECB=y
19805 +CONFIG_CRYPTO_CBC=y
19806 +CONFIG_CRYPTO_PCBC=y
19807 +# CONFIG_CRYPTO_LRW is not set
19808 +# CONFIG_CRYPTO_XTS is not set
19809 +# CONFIG_CRYPTO_CTR is not set
19810 +# CONFIG_CRYPTO_GCM is not set
19811 +# CONFIG_CRYPTO_CCM is not set
19812 +# CONFIG_CRYPTO_CRYPTD is not set
19813 +CONFIG_CRYPTO_DES=y
19814 +# CONFIG_CRYPTO_FCRYPT is not set
19815 +# CONFIG_CRYPTO_BLOWFISH is not set
19816 +# CONFIG_CRYPTO_TWOFISH is not set
19817 +# CONFIG_CRYPTO_SERPENT is not set
19818 +# CONFIG_CRYPTO_AES is not set
19819 +# CONFIG_CRYPTO_CAST5 is not set
19820 +# CONFIG_CRYPTO_CAST6 is not set
19821 +# CONFIG_CRYPTO_TEA is not set
19822 +# CONFIG_CRYPTO_ARC4 is not set
19823 +# CONFIG_CRYPTO_KHAZAD is not set
19824 +# CONFIG_CRYPTO_ANUBIS is not set
19825 +# CONFIG_CRYPTO_SEED is not set
19826 +# CONFIG_CRYPTO_SALSA20 is not set
19827 +# CONFIG_CRYPTO_DEFLATE is not set
19828 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
19829 +# CONFIG_CRYPTO_CRC32C is not set
19830 +# CONFIG_CRYPTO_CAMELLIA is not set
19831 +# CONFIG_CRYPTO_TEST is not set
19832 +# CONFIG_CRYPTO_AUTHENC is not set
19833 +# CONFIG_CRYPTO_LZO is not set
19834 +CONFIG_CRYPTO_HW=y
19835 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
19836 +# CONFIG_PPC_CLOCK is not set
19837 Index: linux-2.6.25.4/arch/powerpc/configs/44x/warp_defconfig
19838 ===================================================================
19839 --- /dev/null
19840 +++ linux-2.6.25.4/arch/powerpc/configs/44x/warp_defconfig
19841 @@ -0,0 +1,1110 @@
19842 +#
19843 +# Automatically generated make config: don't edit
19844 +# Linux kernel version: 2.6.25-rc2
19845 +# Fri Feb 15 21:54:43 2008
19846 +#
19847 +# CONFIG_PPC64 is not set
19848 +
19849 +#
19850 +# Processor support
19851 +#
19852 +# CONFIG_6xx is not set
19853 +# CONFIG_PPC_85xx is not set
19854 +# CONFIG_PPC_8xx is not set
19855 +# CONFIG_40x is not set
19856 +CONFIG_44x=y
19857 +# CONFIG_E200 is not set
19858 +CONFIG_PPC_FPU=y
19859 +CONFIG_4xx=y
19860 +CONFIG_BOOKE=y
19861 +CONFIG_PTE_64BIT=y
19862 +CONFIG_PHYS_64BIT=y
19863 +# CONFIG_PPC_MM_SLICES is not set
19864 +CONFIG_NOT_COHERENT_CACHE=y
19865 +CONFIG_PPC32=y
19866 +CONFIG_WORD_SIZE=32
19867 +CONFIG_PPC_MERGE=y
19868 +CONFIG_MMU=y
19869 +CONFIG_GENERIC_CMOS_UPDATE=y
19870 +CONFIG_GENERIC_TIME=y
19871 +CONFIG_GENERIC_TIME_VSYSCALL=y
19872 +CONFIG_GENERIC_CLOCKEVENTS=y
19873 +CONFIG_GENERIC_HARDIRQS=y
19874 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
19875 +CONFIG_IRQ_PER_CPU=y
19876 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
19877 +CONFIG_ARCH_HAS_ILOG2_U32=y
19878 +CONFIG_GENERIC_HWEIGHT=y
19879 +CONFIG_GENERIC_CALIBRATE_DELAY=y
19880 +CONFIG_GENERIC_FIND_NEXT_BIT=y
19881 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
19882 +CONFIG_PPC=y
19883 +CONFIG_EARLY_PRINTK=y
19884 +CONFIG_GENERIC_NVRAM=y
19885 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
19886 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
19887 +CONFIG_PPC_OF=y
19888 +CONFIG_OF=y
19889 +CONFIG_PPC_UDBG_16550=y
19890 +# CONFIG_GENERIC_TBSYNC is not set
19891 +CONFIG_AUDIT_ARCH=y
19892 +CONFIG_GENERIC_BUG=y
19893 +# CONFIG_DEFAULT_UIMAGE is not set
19894 +CONFIG_PPC_DCR_NATIVE=y
19895 +# CONFIG_PPC_DCR_MMIO is not set
19896 +CONFIG_PPC_DCR=y
19897 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
19898 +
19899 +#
19900 +# General setup
19901 +#
19902 +CONFIG_EXPERIMENTAL=y
19903 +CONFIG_BROKEN_ON_SMP=y
19904 +CONFIG_INIT_ENV_ARG_LIMIT=32
19905 +CONFIG_LOCALVERSION="-pika"
19906 +# CONFIG_LOCALVERSION_AUTO is not set
19907 +CONFIG_SWAP=y
19908 +CONFIG_SYSVIPC=y
19909 +CONFIG_SYSVIPC_SYSCTL=y
19910 +# CONFIG_POSIX_MQUEUE is not set
19911 +# CONFIG_BSD_PROCESS_ACCT is not set
19912 +# CONFIG_TASKSTATS is not set
19913 +# CONFIG_AUDIT is not set
19914 +# CONFIG_IKCONFIG is not set
19915 +CONFIG_LOG_BUF_SHIFT=14
19916 +# CONFIG_CGROUPS is not set
19917 +CONFIG_GROUP_SCHED=y
19918 +CONFIG_FAIR_GROUP_SCHED=y
19919 +# CONFIG_RT_GROUP_SCHED is not set
19920 +CONFIG_USER_SCHED=y
19921 +# CONFIG_CGROUP_SCHED is not set
19922 +CONFIG_SYSFS_DEPRECATED=y
19923 +# CONFIG_RELAY is not set
19924 +# CONFIG_NAMESPACES is not set
19925 +CONFIG_BLK_DEV_INITRD=y
19926 +CONFIG_INITRAMFS_SOURCE=""
19927 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
19928 +CONFIG_SYSCTL=y
19929 +CONFIG_EMBEDDED=y
19930 +CONFIG_SYSCTL_SYSCALL=y
19931 +CONFIG_KALLSYMS=y
19932 +# CONFIG_KALLSYMS_ALL is not set
19933 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
19934 +# CONFIG_HOTPLUG is not set
19935 +CONFIG_PRINTK=y
19936 +CONFIG_BUG=y
19937 +CONFIG_ELF_CORE=y
19938 +CONFIG_COMPAT_BRK=y
19939 +CONFIG_BASE_FULL=y
19940 +CONFIG_FUTEX=y
19941 +CONFIG_ANON_INODES=y
19942 +CONFIG_EPOLL=y
19943 +CONFIG_SIGNALFD=y
19944 +CONFIG_TIMERFD=y
19945 +CONFIG_EVENTFD=y
19946 +CONFIG_SHMEM=y
19947 +CONFIG_VM_EVENT_COUNTERS=y
19948 +CONFIG_SLAB=y
19949 +# CONFIG_SLUB is not set
19950 +# CONFIG_SLOB is not set
19951 +# CONFIG_PROFILING is not set
19952 +# CONFIG_MARKERS is not set
19953 +CONFIG_HAVE_OPROFILE=y
19954 +# CONFIG_KPROBES is not set
19955 +CONFIG_HAVE_KPROBES=y
19956 +CONFIG_PROC_PAGE_MONITOR=y
19957 +CONFIG_SLABINFO=y
19958 +CONFIG_RT_MUTEXES=y
19959 +# CONFIG_TINY_SHMEM is not set
19960 +CONFIG_BASE_SMALL=0
19961 +CONFIG_MODULES=y
19962 +CONFIG_MODULE_UNLOAD=y
19963 +# CONFIG_MODULE_FORCE_UNLOAD is not set
19964 +# CONFIG_MODVERSIONS is not set
19965 +# CONFIG_MODULE_SRCVERSION_ALL is not set
19966 +CONFIG_KMOD=y
19967 +CONFIG_BLOCK=y
19968 +# CONFIG_LBD is not set
19969 +# CONFIG_BLK_DEV_IO_TRACE is not set
19970 +# CONFIG_LSF is not set
19971 +# CONFIG_BLK_DEV_BSG is not set
19972 +
19973 +#
19974 +# IO Schedulers
19975 +#
19976 +CONFIG_IOSCHED_NOOP=y
19977 +CONFIG_IOSCHED_AS=y
19978 +CONFIG_IOSCHED_DEADLINE=y
19979 +CONFIG_IOSCHED_CFQ=y
19980 +CONFIG_DEFAULT_AS=y
19981 +# CONFIG_DEFAULT_DEADLINE is not set
19982 +# CONFIG_DEFAULT_CFQ is not set
19983 +# CONFIG_DEFAULT_NOOP is not set
19984 +CONFIG_DEFAULT_IOSCHED="anticipatory"
19985 +CONFIG_CLASSIC_RCU=y
19986 +# CONFIG_PREEMPT_RCU is not set
19987 +
19988 +#
19989 +# Platform support
19990 +#
19991 +# CONFIG_PPC_MPC512x is not set
19992 +# CONFIG_PPC_MPC5121 is not set
19993 +# CONFIG_PPC_CELL is not set
19994 +# CONFIG_PPC_CELL_NATIVE is not set
19995 +# CONFIG_PQ2ADS is not set
19996 +# CONFIG_BAMBOO is not set
19997 +# CONFIG_EBONY is not set
19998 +# CONFIG_SEQUOIA is not set
19999 +# CONFIG_TAISHAN is not set
20000 +# CONFIG_KATMAI is not set
20001 +# CONFIG_RAINIER is not set
20002 +CONFIG_WARP=y
20003 +CONFIG_440EP=y
20004 +CONFIG_IBM440EP_ERR42=y
20005 +# CONFIG_IPIC is not set
20006 +# CONFIG_MPIC is not set
20007 +# CONFIG_MPIC_WEIRD is not set
20008 +# CONFIG_PPC_I8259 is not set
20009 +# CONFIG_PPC_RTAS is not set
20010 +# CONFIG_MMIO_NVRAM is not set
20011 +# CONFIG_PPC_MPC106 is not set
20012 +# CONFIG_PPC_970_NAP is not set
20013 +# CONFIG_PPC_INDIRECT_IO is not set
20014 +# CONFIG_GENERIC_IOMAP is not set
20015 +# CONFIG_CPU_FREQ is not set
20016 +# CONFIG_FSL_ULI1575 is not set
20017 +
20018 +#
20019 +# Kernel options
20020 +#
20021 +# CONFIG_HIGHMEM is not set
20022 +# CONFIG_TICK_ONESHOT is not set
20023 +# CONFIG_NO_HZ is not set
20024 +# CONFIG_HIGH_RES_TIMERS is not set
20025 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
20026 +# CONFIG_HZ_100 is not set
20027 +# CONFIG_HZ_250 is not set
20028 +# CONFIG_HZ_300 is not set
20029 +CONFIG_HZ_1000=y
20030 +CONFIG_HZ=1000
20031 +# CONFIG_SCHED_HRTICK is not set
20032 +CONFIG_PREEMPT_NONE=y
20033 +# CONFIG_PREEMPT_VOLUNTARY is not set
20034 +# CONFIG_PREEMPT is not set
20035 +CONFIG_RCU_TRACE=y
20036 +CONFIG_BINFMT_ELF=y
20037 +# CONFIG_BINFMT_MISC is not set
20038 +# CONFIG_MATH_EMULATION is not set
20039 +# CONFIG_IOMMU_HELPER is not set
20040 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
20041 +CONFIG_ARCH_HAS_WALK_MEMORY=y
20042 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
20043 +CONFIG_ARCH_FLATMEM_ENABLE=y
20044 +CONFIG_ARCH_POPULATES_NODE_MAP=y
20045 +CONFIG_SELECT_MEMORY_MODEL=y
20046 +CONFIG_FLATMEM_MANUAL=y
20047 +# CONFIG_DISCONTIGMEM_MANUAL is not set
20048 +# CONFIG_SPARSEMEM_MANUAL is not set
20049 +CONFIG_FLATMEM=y
20050 +CONFIG_FLAT_NODE_MEM_MAP=y
20051 +# CONFIG_SPARSEMEM_STATIC is not set
20052 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
20053 +CONFIG_SPLIT_PTLOCK_CPUS=4
20054 +CONFIG_RESOURCES_64BIT=y
20055 +CONFIG_ZONE_DMA_FLAG=1
20056 +CONFIG_BOUNCE=y
20057 +CONFIG_VIRT_TO_BUS=y
20058 +CONFIG_PROC_DEVICETREE=y
20059 +CONFIG_CMDLINE_BOOL=y
20060 +CONFIG_CMDLINE="ip=on"
20061 +CONFIG_SECCOMP=y
20062 +CONFIG_ISA_DMA_API=y
20063 +
20064 +#
20065 +# Bus options
20066 +#
20067 +CONFIG_ZONE_DMA=y
20068 +# CONFIG_PCI is not set
20069 +# CONFIG_PCI_DOMAINS is not set
20070 +# CONFIG_PCI_SYSCALL is not set
20071 +# CONFIG_ARCH_SUPPORTS_MSI is not set
20072 +
20073 +#
20074 +# Advanced setup
20075 +#
20076 +# CONFIG_ADVANCED_OPTIONS is not set
20077 +
20078 +#
20079 +# Default settings for advanced configuration options are used
20080 +#
20081 +CONFIG_HIGHMEM_START=0xfe000000
20082 +CONFIG_LOWMEM_SIZE=0x30000000
20083 +CONFIG_KERNEL_START=0xc0000000
20084 +CONFIG_TASK_SIZE=0xc0000000
20085 +CONFIG_CONSISTENT_START=0xff100000
20086 +CONFIG_CONSISTENT_SIZE=0x00200000
20087 +CONFIG_BOOT_LOAD=0x01000000
20088 +
20089 +#
20090 +# Networking
20091 +#
20092 +CONFIG_NET=y
20093 +
20094 +#
20095 +# Networking options
20096 +#
20097 +CONFIG_PACKET=y
20098 +# CONFIG_PACKET_MMAP is not set
20099 +CONFIG_UNIX=y
20100 +CONFIG_XFRM=y
20101 +# CONFIG_XFRM_USER is not set
20102 +# CONFIG_XFRM_SUB_POLICY is not set
20103 +# CONFIG_XFRM_MIGRATE is not set
20104 +# CONFIG_XFRM_STATISTICS is not set
20105 +# CONFIG_NET_KEY is not set
20106 +CONFIG_INET=y
20107 +# CONFIG_IP_MULTICAST is not set
20108 +# CONFIG_IP_ADVANCED_ROUTER is not set
20109 +CONFIG_IP_FIB_HASH=y
20110 +CONFIG_IP_PNP=y
20111 +CONFIG_IP_PNP_DHCP=y
20112 +# CONFIG_IP_PNP_BOOTP is not set
20113 +# CONFIG_IP_PNP_RARP is not set
20114 +# CONFIG_NET_IPIP is not set
20115 +# CONFIG_NET_IPGRE is not set
20116 +# CONFIG_ARPD is not set
20117 +# CONFIG_SYN_COOKIES is not set
20118 +# CONFIG_INET_AH is not set
20119 +# CONFIG_INET_ESP is not set
20120 +# CONFIG_INET_IPCOMP is not set
20121 +# CONFIG_INET_XFRM_TUNNEL is not set
20122 +# CONFIG_INET_TUNNEL is not set
20123 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
20124 +CONFIG_INET_XFRM_MODE_TUNNEL=y
20125 +CONFIG_INET_XFRM_MODE_BEET=y
20126 +# CONFIG_INET_LRO is not set
20127 +CONFIG_INET_DIAG=y
20128 +CONFIG_INET_TCP_DIAG=y
20129 +# CONFIG_TCP_CONG_ADVANCED is not set
20130 +CONFIG_TCP_CONG_CUBIC=y
20131 +CONFIG_DEFAULT_TCP_CONG="cubic"
20132 +# CONFIG_TCP_MD5SIG is not set
20133 +# CONFIG_IP_VS is not set
20134 +# CONFIG_IPV6 is not set
20135 +# CONFIG_INET6_XFRM_TUNNEL is not set
20136 +# CONFIG_INET6_TUNNEL is not set
20137 +# CONFIG_NETWORK_SECMARK is not set
20138 +CONFIG_NETFILTER=y
20139 +# CONFIG_NETFILTER_DEBUG is not set
20140 +CONFIG_NETFILTER_ADVANCED=y
20141 +
20142 +#
20143 +# Core Netfilter Configuration
20144 +#
20145 +# CONFIG_NETFILTER_NETLINK_QUEUE is not set
20146 +# CONFIG_NETFILTER_NETLINK_LOG is not set
20147 +# CONFIG_NF_CONNTRACK is not set
20148 +# CONFIG_NETFILTER_XTABLES is not set
20149 +
20150 +#
20151 +# IP: Netfilter Configuration
20152 +#
20153 +# CONFIG_IP_NF_QUEUE is not set
20154 +# CONFIG_IP_NF_IPTABLES is not set
20155 +# CONFIG_IP_NF_ARPTABLES is not set
20156 +# CONFIG_IP_DCCP is not set
20157 +# CONFIG_IP_SCTP is not set
20158 +# CONFIG_TIPC is not set
20159 +# CONFIG_ATM is not set
20160 +# CONFIG_BRIDGE is not set
20161 +CONFIG_VLAN_8021Q=y
20162 +# CONFIG_DECNET is not set
20163 +# CONFIG_LLC2 is not set
20164 +# CONFIG_IPX is not set
20165 +# CONFIG_ATALK is not set
20166 +# CONFIG_X25 is not set
20167 +# CONFIG_LAPB is not set
20168 +# CONFIG_ECONET is not set
20169 +# CONFIG_WAN_ROUTER is not set
20170 +# CONFIG_NET_SCHED is not set
20171 +
20172 +#
20173 +# Network testing
20174 +#
20175 +# CONFIG_NET_PKTGEN is not set
20176 +# CONFIG_HAMRADIO is not set
20177 +# CONFIG_CAN is not set
20178 +# CONFIG_IRDA is not set
20179 +# CONFIG_BT is not set
20180 +# CONFIG_AF_RXRPC is not set
20181 +
20182 +#
20183 +# Wireless
20184 +#
20185 +# CONFIG_CFG80211 is not set
20186 +# CONFIG_WIRELESS_EXT is not set
20187 +# CONFIG_MAC80211 is not set
20188 +# CONFIG_IEEE80211 is not set
20189 +# CONFIG_RFKILL is not set
20190 +# CONFIG_NET_9P is not set
20191 +
20192 +#
20193 +# Device Drivers
20194 +#
20195 +
20196 +#
20197 +# Generic Driver Options
20198 +#
20199 +# CONFIG_STANDALONE is not set
20200 +CONFIG_PREVENT_FIRMWARE_BUILD=y
20201 +# CONFIG_DEBUG_DRIVER is not set
20202 +# CONFIG_DEBUG_DEVRES is not set
20203 +# CONFIG_SYS_HYPERVISOR is not set
20204 +# CONFIG_CONNECTOR is not set
20205 +CONFIG_MTD=y
20206 +# CONFIG_MTD_DEBUG is not set
20207 +# CONFIG_MTD_CONCAT is not set
20208 +CONFIG_MTD_PARTITIONS=y
20209 +# CONFIG_MTD_REDBOOT_PARTS is not set
20210 +# CONFIG_MTD_CMDLINE_PARTS is not set
20211 +CONFIG_MTD_OF_PARTS=y
20212 +
20213 +#
20214 +# User Modules And Translation Layers
20215 +#
20216 +CONFIG_MTD_CHAR=y
20217 +CONFIG_MTD_BLKDEVS=y
20218 +CONFIG_MTD_BLOCK=y
20219 +# CONFIG_FTL is not set
20220 +# CONFIG_NFTL is not set
20221 +# CONFIG_INFTL is not set
20222 +# CONFIG_RFD_FTL is not set
20223 +# CONFIG_SSFDC is not set
20224 +CONFIG_MTD_OOPS=m
20225 +
20226 +#
20227 +# RAM/ROM/Flash chip drivers
20228 +#
20229 +CONFIG_MTD_CFI=y
20230 +# CONFIG_MTD_JEDECPROBE is not set
20231 +CONFIG_MTD_GEN_PROBE=y
20232 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
20233 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
20234 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
20235 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
20236 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
20237 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
20238 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
20239 +CONFIG_MTD_CFI_I1=y
20240 +CONFIG_MTD_CFI_I2=y
20241 +# CONFIG_MTD_CFI_I4 is not set
20242 +# CONFIG_MTD_CFI_I8 is not set
20243 +# CONFIG_MTD_CFI_INTELEXT is not set
20244 +CONFIG_MTD_CFI_AMDSTD=y
20245 +# CONFIG_MTD_CFI_STAA is not set
20246 +CONFIG_MTD_CFI_UTIL=y
20247 +# CONFIG_MTD_RAM is not set
20248 +# CONFIG_MTD_ROM is not set
20249 +# CONFIG_MTD_ABSENT is not set
20250 +
20251 +#
20252 +# Mapping drivers for chip access
20253 +#
20254 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
20255 +# CONFIG_MTD_PHYSMAP is not set
20256 +CONFIG_MTD_PHYSMAP_OF=y
20257 +# CONFIG_MTD_PLATRAM is not set
20258 +
20259 +#
20260 +# Self-contained MTD device drivers
20261 +#
20262 +# CONFIG_MTD_SLRAM is not set
20263 +# CONFIG_MTD_PHRAM is not set
20264 +# CONFIG_MTD_MTDRAM is not set
20265 +# CONFIG_MTD_BLOCK2MTD is not set
20266 +
20267 +#
20268 +# Disk-On-Chip Device Drivers
20269 +#
20270 +# CONFIG_MTD_DOC2000 is not set
20271 +# CONFIG_MTD_DOC2001 is not set
20272 +# CONFIG_MTD_DOC2001PLUS is not set
20273 +CONFIG_MTD_NAND=y
20274 +# CONFIG_MTD_NAND_VERIFY_WRITE is not set
20275 +CONFIG_MTD_NAND_ECC_SMC=y
20276 +# CONFIG_MTD_NAND_MUSEUM_IDS is not set
20277 +CONFIG_MTD_NAND_IDS=y
20278 +# CONFIG_MTD_NAND_DISKONCHIP is not set
20279 +# CONFIG_MTD_NAND_NANDSIM is not set
20280 +# CONFIG_MTD_NAND_PLATFORM is not set
20281 +# CONFIG_MTD_ALAUDA is not set
20282 +# CONFIG_MTD_NAND_FSL_ELBC is not set
20283 +# CONFIG_MTD_ONENAND is not set
20284 +
20285 +#
20286 +# UBI - Unsorted block images
20287 +#
20288 +# CONFIG_MTD_UBI is not set
20289 +CONFIG_OF_DEVICE=y
20290 +# CONFIG_PARPORT is not set
20291 +CONFIG_BLK_DEV=y
20292 +# CONFIG_BLK_DEV_FD is not set
20293 +# CONFIG_BLK_DEV_COW_COMMON is not set
20294 +# CONFIG_BLK_DEV_LOOP is not set
20295 +# CONFIG_BLK_DEV_NBD is not set
20296 +# CONFIG_BLK_DEV_UB is not set
20297 +CONFIG_BLK_DEV_RAM=y
20298 +CONFIG_BLK_DEV_RAM_COUNT=16
20299 +CONFIG_BLK_DEV_RAM_SIZE=4096
20300 +# CONFIG_BLK_DEV_XIP is not set
20301 +# CONFIG_CDROM_PKTCDVD is not set
20302 +# CONFIG_ATA_OVER_ETH is not set
20303 +# CONFIG_XILINX_SYSACE is not set
20304 +CONFIG_MISC_DEVICES=y
20305 +# CONFIG_EEPROM_93CX6 is not set
20306 +# CONFIG_ENCLOSURE_SERVICES is not set
20307 +CONFIG_HAVE_IDE=y
20308 +# CONFIG_IDE is not set
20309 +
20310 +#
20311 +# SCSI device support
20312 +#
20313 +# CONFIG_RAID_ATTRS is not set
20314 +CONFIG_SCSI=y
20315 +CONFIG_SCSI_DMA=y
20316 +# CONFIG_SCSI_TGT is not set
20317 +# CONFIG_SCSI_NETLINK is not set
20318 +CONFIG_SCSI_PROC_FS=y
20319 +
20320 +#
20321 +# SCSI support type (disk, tape, CD-ROM)
20322 +#
20323 +CONFIG_BLK_DEV_SD=y
20324 +# CONFIG_CHR_DEV_ST is not set
20325 +# CONFIG_CHR_DEV_OSST is not set
20326 +# CONFIG_BLK_DEV_SR is not set
20327 +# CONFIG_CHR_DEV_SG is not set
20328 +# CONFIG_CHR_DEV_SCH is not set
20329 +
20330 +#
20331 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
20332 +#
20333 +# CONFIG_SCSI_MULTI_LUN is not set
20334 +# CONFIG_SCSI_CONSTANTS is not set
20335 +# CONFIG_SCSI_LOGGING is not set
20336 +# CONFIG_SCSI_SCAN_ASYNC is not set
20337 +CONFIG_SCSI_WAIT_SCAN=m
20338 +
20339 +#
20340 +# SCSI Transports
20341 +#
20342 +CONFIG_SCSI_SPI_ATTRS=y
20343 +# CONFIG_SCSI_FC_ATTRS is not set
20344 +# CONFIG_SCSI_ISCSI_ATTRS is not set
20345 +# CONFIG_SCSI_SAS_LIBSAS is not set
20346 +# CONFIG_SCSI_SRP_ATTRS is not set
20347 +# CONFIG_SCSI_LOWLEVEL is not set
20348 +# CONFIG_ATA is not set
20349 +# CONFIG_MD is not set
20350 +# CONFIG_MACINTOSH_DRIVERS is not set
20351 +CONFIG_NETDEVICES=y
20352 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
20353 +# CONFIG_DUMMY is not set
20354 +# CONFIG_BONDING is not set
20355 +# CONFIG_MACVLAN is not set
20356 +# CONFIG_EQUALIZER is not set
20357 +# CONFIG_TUN is not set
20358 +# CONFIG_VETH is not set
20359 +# CONFIG_PHYLIB is not set
20360 +CONFIG_NET_ETHERNET=y
20361 +CONFIG_MII=y
20362 +CONFIG_IBM_NEW_EMAC=y
20363 +CONFIG_IBM_NEW_EMAC_RXB=128
20364 +CONFIG_IBM_NEW_EMAC_TXB=64
20365 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
20366 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
20367 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
20368 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
20369 +CONFIG_IBM_NEW_EMAC_ZMII=y
20370 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
20371 +# CONFIG_IBM_NEW_EMAC_TAH is not set
20372 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
20373 +# CONFIG_B44 is not set
20374 +# CONFIG_NETDEV_1000 is not set
20375 +# CONFIG_NETDEV_10000 is not set
20376 +
20377 +#
20378 +# Wireless LAN
20379 +#
20380 +# CONFIG_WLAN_PRE80211 is not set
20381 +# CONFIG_WLAN_80211 is not set
20382 +
20383 +#
20384 +# USB Network Adapters
20385 +#
20386 +# CONFIG_USB_CATC is not set
20387 +# CONFIG_USB_KAWETH is not set
20388 +# CONFIG_USB_PEGASUS is not set
20389 +# CONFIG_USB_RTL8150 is not set
20390 +# CONFIG_USB_USBNET is not set
20391 +# CONFIG_WAN is not set
20392 +# CONFIG_PPP is not set
20393 +# CONFIG_SLIP is not set
20394 +# CONFIG_NETCONSOLE is not set
20395 +# CONFIG_NETPOLL is not set
20396 +# CONFIG_NET_POLL_CONTROLLER is not set
20397 +# CONFIG_ISDN is not set
20398 +# CONFIG_PHONE is not set
20399 +
20400 +#
20401 +# Input device support
20402 +#
20403 +# CONFIG_INPUT is not set
20404 +
20405 +#
20406 +# Hardware I/O ports
20407 +#
20408 +# CONFIG_SERIO is not set
20409 +# CONFIG_GAMEPORT is not set
20410 +
20411 +#
20412 +# Character devices
20413 +#
20414 +# CONFIG_VT is not set
20415 +# CONFIG_SERIAL_NONSTANDARD is not set
20416 +
20417 +#
20418 +# Serial drivers
20419 +#
20420 +CONFIG_SERIAL_8250=y
20421 +CONFIG_SERIAL_8250_CONSOLE=y
20422 +CONFIG_SERIAL_8250_NR_UARTS=4
20423 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
20424 +CONFIG_SERIAL_8250_EXTENDED=y
20425 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
20426 +CONFIG_SERIAL_8250_SHARE_IRQ=y
20427 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
20428 +# CONFIG_SERIAL_8250_RSA is not set
20429 +
20430 +#
20431 +# Non-8250 serial port support
20432 +#
20433 +# CONFIG_SERIAL_UARTLITE is not set
20434 +CONFIG_SERIAL_CORE=y
20435 +CONFIG_SERIAL_CORE_CONSOLE=y
20436 +# CONFIG_SERIAL_OF_PLATFORM is not set
20437 +CONFIG_UNIX98_PTYS=y
20438 +CONFIG_LEGACY_PTYS=y
20439 +CONFIG_LEGACY_PTY_COUNT=256
20440 +# CONFIG_IPMI_HANDLER is not set
20441 +CONFIG_HW_RANDOM=y
20442 +# CONFIG_NVRAM is not set
20443 +# CONFIG_GEN_RTC is not set
20444 +# CONFIG_R3964 is not set
20445 +# CONFIG_RAW_DRIVER is not set
20446 +# CONFIG_TCG_TPM is not set
20447 +CONFIG_I2C=y
20448 +CONFIG_I2C_BOARDINFO=y
20449 +# CONFIG_I2C_CHARDEV is not set
20450 +
20451 +#
20452 +# I2C Algorithms
20453 +#
20454 +# CONFIG_I2C_ALGOBIT is not set
20455 +# CONFIG_I2C_ALGOPCF is not set
20456 +# CONFIG_I2C_ALGOPCA is not set
20457 +
20458 +#
20459 +# I2C Hardware Bus support
20460 +#
20461 +# CONFIG_I2C_MPC is not set
20462 +# CONFIG_I2C_OCORES is not set
20463 +# CONFIG_I2C_PARPORT_LIGHT is not set
20464 +# CONFIG_I2C_SIMTEC is not set
20465 +# CONFIG_I2C_TAOS_EVM is not set
20466 +# CONFIG_I2C_STUB is not set
20467 +# CONFIG_I2C_TINY_USB is not set
20468 +
20469 +#
20470 +# Miscellaneous I2C Chip support
20471 +#
20472 +# CONFIG_DS1682 is not set
20473 +CONFIG_SENSORS_EEPROM=y
20474 +# CONFIG_SENSORS_PCF8574 is not set
20475 +# CONFIG_PCF8575 is not set
20476 +# CONFIG_SENSORS_PCF8591 is not set
20477 +# CONFIG_TPS65010 is not set
20478 +# CONFIG_SENSORS_MAX6875 is not set
20479 +# CONFIG_SENSORS_TSL2550 is not set
20480 +# CONFIG_I2C_DEBUG_CORE is not set
20481 +# CONFIG_I2C_DEBUG_ALGO is not set
20482 +# CONFIG_I2C_DEBUG_BUS is not set
20483 +# CONFIG_I2C_DEBUG_CHIP is not set
20484 +
20485 +#
20486 +# SPI support
20487 +#
20488 +# CONFIG_SPI is not set
20489 +# CONFIG_SPI_MASTER is not set
20490 +# CONFIG_W1 is not set
20491 +# CONFIG_POWER_SUPPLY is not set
20492 +CONFIG_HWMON=y
20493 +# CONFIG_HWMON_VID is not set
20494 +# CONFIG_SENSORS_AD7418 is not set
20495 +# CONFIG_SENSORS_ADM1021 is not set
20496 +# CONFIG_SENSORS_ADM1025 is not set
20497 +# CONFIG_SENSORS_ADM1026 is not set
20498 +# CONFIG_SENSORS_ADM1029 is not set
20499 +# CONFIG_SENSORS_ADM1031 is not set
20500 +# CONFIG_SENSORS_ADM9240 is not set
20501 +# CONFIG_SENSORS_ADT7470 is not set
20502 +# CONFIG_SENSORS_ATXP1 is not set
20503 +# CONFIG_SENSORS_DS1621 is not set
20504 +# CONFIG_SENSORS_F71805F is not set
20505 +# CONFIG_SENSORS_F71882FG is not set
20506 +# CONFIG_SENSORS_F75375S is not set
20507 +# CONFIG_SENSORS_GL518SM is not set
20508 +# CONFIG_SENSORS_GL520SM is not set
20509 +# CONFIG_SENSORS_IT87 is not set
20510 +# CONFIG_SENSORS_LM63 is not set
20511 +# CONFIG_SENSORS_LM75 is not set
20512 +# CONFIG_SENSORS_LM77 is not set
20513 +# CONFIG_SENSORS_LM78 is not set
20514 +# CONFIG_SENSORS_LM80 is not set
20515 +# CONFIG_SENSORS_LM83 is not set
20516 +# CONFIG_SENSORS_LM85 is not set
20517 +# CONFIG_SENSORS_LM87 is not set
20518 +# CONFIG_SENSORS_LM90 is not set
20519 +# CONFIG_SENSORS_LM92 is not set
20520 +# CONFIG_SENSORS_LM93 is not set
20521 +# CONFIG_SENSORS_MAX1619 is not set
20522 +# CONFIG_SENSORS_MAX6650 is not set
20523 +# CONFIG_SENSORS_PC87360 is not set
20524 +# CONFIG_SENSORS_PC87427 is not set
20525 +# CONFIG_SENSORS_DME1737 is not set
20526 +# CONFIG_SENSORS_SMSC47M1 is not set
20527 +# CONFIG_SENSORS_SMSC47M192 is not set
20528 +# CONFIG_SENSORS_SMSC47B397 is not set
20529 +# CONFIG_SENSORS_ADS7828 is not set
20530 +# CONFIG_SENSORS_THMC50 is not set
20531 +# CONFIG_SENSORS_VT1211 is not set
20532 +# CONFIG_SENSORS_W83781D is not set
20533 +# CONFIG_SENSORS_W83791D is not set
20534 +# CONFIG_SENSORS_W83792D is not set
20535 +# CONFIG_SENSORS_W83793 is not set
20536 +# CONFIG_SENSORS_W83L785TS is not set
20537 +# CONFIG_SENSORS_W83L786NG is not set
20538 +# CONFIG_SENSORS_W83627HF is not set
20539 +# CONFIG_SENSORS_W83627EHF is not set
20540 +# CONFIG_HWMON_DEBUG_CHIP is not set
20541 +CONFIG_THERMAL=y
20542 +# CONFIG_WATCHDOG is not set
20543 +
20544 +#
20545 +# Sonics Silicon Backplane
20546 +#
20547 +CONFIG_SSB_POSSIBLE=y
20548 +# CONFIG_SSB is not set
20549 +
20550 +#
20551 +# Multifunction device drivers
20552 +#
20553 +# CONFIG_MFD_SM501 is not set
20554 +
20555 +#
20556 +# Multimedia devices
20557 +#
20558 +# CONFIG_VIDEO_DEV is not set
20559 +# CONFIG_DVB_CORE is not set
20560 +# CONFIG_DAB is not set
20561 +
20562 +#
20563 +# Graphics support
20564 +#
20565 +# CONFIG_VGASTATE is not set
20566 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
20567 +# CONFIG_FB is not set
20568 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
20569 +
20570 +#
20571 +# Display device support
20572 +#
20573 +# CONFIG_DISPLAY_SUPPORT is not set
20574 +
20575 +#
20576 +# Sound
20577 +#
20578 +# CONFIG_SOUND is not set
20579 +CONFIG_USB_SUPPORT=y
20580 +CONFIG_USB_ARCH_HAS_HCD=y
20581 +CONFIG_USB_ARCH_HAS_OHCI=y
20582 +# CONFIG_USB_ARCH_HAS_EHCI is not set
20583 +CONFIG_USB=y
20584 +# CONFIG_USB_DEBUG is not set
20585 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
20586 +
20587 +#
20588 +# Miscellaneous USB options
20589 +#
20590 +# CONFIG_USB_DEVICEFS is not set
20591 +CONFIG_USB_DEVICE_CLASS=y
20592 +# CONFIG_USB_DYNAMIC_MINORS is not set
20593 +# CONFIG_USB_OTG is not set
20594 +
20595 +#
20596 +# USB Host Controller Drivers
20597 +#
20598 +# CONFIG_USB_ISP116X_HCD is not set
20599 +CONFIG_USB_OHCI_HCD=y
20600 +CONFIG_USB_OHCI_HCD_PPC_OF=y
20601 +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
20602 +# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set
20603 +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
20604 +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
20605 +CONFIG_USB_OHCI_LITTLE_ENDIAN=y
20606 +# CONFIG_USB_SL811_HCD is not set
20607 +# CONFIG_USB_R8A66597_HCD is not set
20608 +
20609 +#
20610 +# USB Device Class drivers
20611 +#
20612 +# CONFIG_USB_ACM is not set
20613 +# CONFIG_USB_PRINTER is not set
20614 +
20615 +#
20616 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
20617 +#
20618 +
20619 +#
20620 +# may also be needed; see USB_STORAGE Help for more information
20621 +#
20622 +CONFIG_USB_STORAGE=y
20623 +# CONFIG_USB_STORAGE_DEBUG is not set
20624 +# CONFIG_USB_STORAGE_DATAFAB is not set
20625 +# CONFIG_USB_STORAGE_FREECOM is not set
20626 +# CONFIG_USB_STORAGE_ISD200 is not set
20627 +# CONFIG_USB_STORAGE_DPCM is not set
20628 +# CONFIG_USB_STORAGE_USBAT is not set
20629 +# CONFIG_USB_STORAGE_SDDR09 is not set
20630 +# CONFIG_USB_STORAGE_SDDR55 is not set
20631 +# CONFIG_USB_STORAGE_JUMPSHOT is not set
20632 +# CONFIG_USB_STORAGE_ALAUDA is not set
20633 +# CONFIG_USB_STORAGE_KARMA is not set
20634 +# CONFIG_USB_LIBUSUAL is not set
20635 +
20636 +#
20637 +# USB Imaging devices
20638 +#
20639 +# CONFIG_USB_MDC800 is not set
20640 +# CONFIG_USB_MICROTEK is not set
20641 +CONFIG_USB_MON=y
20642 +
20643 +#
20644 +# USB port drivers
20645 +#
20646 +# CONFIG_USB_SERIAL is not set
20647 +
20648 +#
20649 +# USB Miscellaneous drivers
20650 +#
20651 +# CONFIG_USB_EMI62 is not set
20652 +# CONFIG_USB_EMI26 is not set
20653 +# CONFIG_USB_ADUTUX is not set
20654 +# CONFIG_USB_AUERSWALD is not set
20655 +# CONFIG_USB_RIO500 is not set
20656 +# CONFIG_USB_LEGOTOWER is not set
20657 +# CONFIG_USB_LCD is not set
20658 +# CONFIG_USB_BERRY_CHARGE is not set
20659 +# CONFIG_USB_LED is not set
20660 +# CONFIG_USB_CYPRESS_CY7C63 is not set
20661 +# CONFIG_USB_CYTHERM is not set
20662 +# CONFIG_USB_PHIDGET is not set
20663 +# CONFIG_USB_IDMOUSE is not set
20664 +# CONFIG_USB_FTDI_ELAN is not set
20665 +# CONFIG_USB_APPLEDISPLAY is not set
20666 +# CONFIG_USB_LD is not set
20667 +# CONFIG_USB_TRANCEVIBRATOR is not set
20668 +# CONFIG_USB_IOWARRIOR is not set
20669 +# CONFIG_USB_GADGET is not set
20670 +CONFIG_MMC=m
20671 +# CONFIG_MMC_DEBUG is not set
20672 +# CONFIG_MMC_UNSAFE_RESUME is not set
20673 +
20674 +#
20675 +# MMC/SD Card Drivers
20676 +#
20677 +CONFIG_MMC_BLOCK=m
20678 +CONFIG_MMC_BLOCK_BOUNCE=y
20679 +# CONFIG_SDIO_UART is not set
20680 +
20681 +#
20682 +# MMC/SD Host Controller Drivers
20683 +#
20684 +# CONFIG_MMC_WBSD is not set
20685 +# CONFIG_MEMSTICK is not set
20686 +# CONFIG_NEW_LEDS is not set
20687 +# CONFIG_EDAC is not set
20688 +# CONFIG_RTC_CLASS is not set
20689 +
20690 +#
20691 +# Userspace I/O
20692 +#
20693 +# CONFIG_UIO is not set
20694 +
20695 +#
20696 +# File systems
20697 +#
20698 +CONFIG_EXT2_FS=y
20699 +# CONFIG_EXT2_FS_XATTR is not set
20700 +# CONFIG_EXT2_FS_XIP is not set
20701 +# CONFIG_EXT3_FS is not set
20702 +# CONFIG_EXT4DEV_FS is not set
20703 +# CONFIG_REISERFS_FS is not set
20704 +# CONFIG_JFS_FS is not set
20705 +# CONFIG_FS_POSIX_ACL is not set
20706 +# CONFIG_XFS_FS is not set
20707 +# CONFIG_GFS2_FS is not set
20708 +# CONFIG_OCFS2_FS is not set
20709 +CONFIG_DNOTIFY=y
20710 +CONFIG_INOTIFY=y
20711 +CONFIG_INOTIFY_USER=y
20712 +# CONFIG_QUOTA is not set
20713 +# CONFIG_AUTOFS_FS is not set
20714 +# CONFIG_AUTOFS4_FS is not set
20715 +# CONFIG_FUSE_FS is not set
20716 +
20717 +#
20718 +# CD-ROM/DVD Filesystems
20719 +#
20720 +# CONFIG_ISO9660_FS is not set
20721 +# CONFIG_UDF_FS is not set
20722 +
20723 +#
20724 +# DOS/FAT/NT Filesystems
20725 +#
20726 +CONFIG_FAT_FS=y
20727 +CONFIG_MSDOS_FS=y
20728 +CONFIG_VFAT_FS=y
20729 +CONFIG_FAT_DEFAULT_CODEPAGE=437
20730 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
20731 +# CONFIG_NTFS_FS is not set
20732 +
20733 +#
20734 +# Pseudo filesystems
20735 +#
20736 +CONFIG_PROC_FS=y
20737 +CONFIG_PROC_KCORE=y
20738 +CONFIG_PROC_SYSCTL=y
20739 +CONFIG_SYSFS=y
20740 +# CONFIG_TMPFS is not set
20741 +# CONFIG_HUGETLB_PAGE is not set
20742 +# CONFIG_CONFIGFS_FS is not set
20743 +
20744 +#
20745 +# Miscellaneous filesystems
20746 +#
20747 +# CONFIG_ADFS_FS is not set
20748 +# CONFIG_AFFS_FS is not set
20749 +# CONFIG_HFS_FS is not set
20750 +# CONFIG_HFSPLUS_FS is not set
20751 +# CONFIG_BEFS_FS is not set
20752 +# CONFIG_BFS_FS is not set
20753 +# CONFIG_EFS_FS is not set
20754 +CONFIG_JFFS2_FS=y
20755 +CONFIG_JFFS2_FS_DEBUG=0
20756 +CONFIG_JFFS2_FS_WRITEBUFFER=y
20757 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
20758 +# CONFIG_JFFS2_SUMMARY is not set
20759 +# CONFIG_JFFS2_FS_XATTR is not set
20760 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
20761 +CONFIG_JFFS2_ZLIB=y
20762 +# CONFIG_JFFS2_LZO is not set
20763 +CONFIG_JFFS2_RTIME=y
20764 +# CONFIG_JFFS2_RUBIN is not set
20765 +CONFIG_CRAMFS=y
20766 +# CONFIG_VXFS_FS is not set
20767 +# CONFIG_MINIX_FS is not set
20768 +# CONFIG_HPFS_FS is not set
20769 +# CONFIG_QNX4FS_FS is not set
20770 +# CONFIG_ROMFS_FS is not set
20771 +# CONFIG_SYSV_FS is not set
20772 +# CONFIG_UFS_FS is not set
20773 +CONFIG_NETWORK_FILESYSTEMS=y
20774 +CONFIG_NFS_FS=y
20775 +CONFIG_NFS_V3=y
20776 +# CONFIG_NFS_V3_ACL is not set
20777 +# CONFIG_NFS_V4 is not set
20778 +# CONFIG_NFS_DIRECTIO is not set
20779 +# CONFIG_NFSD is not set
20780 +CONFIG_ROOT_NFS=y
20781 +CONFIG_LOCKD=y
20782 +CONFIG_LOCKD_V4=y
20783 +CONFIG_NFS_COMMON=y
20784 +CONFIG_SUNRPC=y
20785 +# CONFIG_SUNRPC_BIND34 is not set
20786 +# CONFIG_RPCSEC_GSS_KRB5 is not set
20787 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
20788 +# CONFIG_SMB_FS is not set
20789 +# CONFIG_CIFS is not set
20790 +# CONFIG_NCP_FS is not set
20791 +# CONFIG_CODA_FS is not set
20792 +# CONFIG_AFS_FS is not set
20793 +
20794 +#
20795 +# Partition Types
20796 +#
20797 +# CONFIG_PARTITION_ADVANCED is not set
20798 +CONFIG_MSDOS_PARTITION=y
20799 +CONFIG_NLS=y
20800 +CONFIG_NLS_DEFAULT="iso8859-1"
20801 +CONFIG_NLS_CODEPAGE_437=y
20802 +# CONFIG_NLS_CODEPAGE_737 is not set
20803 +# CONFIG_NLS_CODEPAGE_775 is not set
20804 +CONFIG_NLS_CODEPAGE_850=y
20805 +# CONFIG_NLS_CODEPAGE_852 is not set
20806 +# CONFIG_NLS_CODEPAGE_855 is not set
20807 +# CONFIG_NLS_CODEPAGE_857 is not set
20808 +# CONFIG_NLS_CODEPAGE_860 is not set
20809 +# CONFIG_NLS_CODEPAGE_861 is not set
20810 +# CONFIG_NLS_CODEPAGE_862 is not set
20811 +# CONFIG_NLS_CODEPAGE_863 is not set
20812 +# CONFIG_NLS_CODEPAGE_864 is not set
20813 +# CONFIG_NLS_CODEPAGE_865 is not set
20814 +# CONFIG_NLS_CODEPAGE_866 is not set
20815 +# CONFIG_NLS_CODEPAGE_869 is not set
20816 +# CONFIG_NLS_CODEPAGE_936 is not set
20817 +# CONFIG_NLS_CODEPAGE_950 is not set
20818 +# CONFIG_NLS_CODEPAGE_932 is not set
20819 +# CONFIG_NLS_CODEPAGE_949 is not set
20820 +# CONFIG_NLS_CODEPAGE_874 is not set
20821 +# CONFIG_NLS_ISO8859_8 is not set
20822 +# CONFIG_NLS_CODEPAGE_1250 is not set
20823 +# CONFIG_NLS_CODEPAGE_1251 is not set
20824 +CONFIG_NLS_ASCII=y
20825 +CONFIG_NLS_ISO8859_1=y
20826 +# CONFIG_NLS_ISO8859_2 is not set
20827 +# CONFIG_NLS_ISO8859_3 is not set
20828 +# CONFIG_NLS_ISO8859_4 is not set
20829 +# CONFIG_NLS_ISO8859_5 is not set
20830 +# CONFIG_NLS_ISO8859_6 is not set
20831 +# CONFIG_NLS_ISO8859_7 is not set
20832 +# CONFIG_NLS_ISO8859_9 is not set
20833 +# CONFIG_NLS_ISO8859_13 is not set
20834 +# CONFIG_NLS_ISO8859_14 is not set
20835 +CONFIG_NLS_ISO8859_15=y
20836 +# CONFIG_NLS_KOI8_R is not set
20837 +# CONFIG_NLS_KOI8_U is not set
20838 +CONFIG_NLS_UTF8=y
20839 +# CONFIG_DLM is not set
20840 +
20841 +#
20842 +# Library routines
20843 +#
20844 +CONFIG_BITREVERSE=y
20845 +CONFIG_CRC_CCITT=y
20846 +# CONFIG_CRC16 is not set
20847 +# CONFIG_CRC_ITU_T is not set
20848 +CONFIG_CRC32=y
20849 +# CONFIG_CRC7 is not set
20850 +# CONFIG_LIBCRC32C is not set
20851 +CONFIG_ZLIB_INFLATE=y
20852 +CONFIG_ZLIB_DEFLATE=y
20853 +CONFIG_PLIST=y
20854 +CONFIG_HAS_IOMEM=y
20855 +CONFIG_HAS_IOPORT=y
20856 +CONFIG_HAS_DMA=y
20857 +
20858 +#
20859 +# Kernel hacking
20860 +#
20861 +# CONFIG_PRINTK_TIME is not set
20862 +CONFIG_ENABLE_WARN_DEPRECATED=y
20863 +CONFIG_ENABLE_MUST_CHECK=y
20864 +CONFIG_MAGIC_SYSRQ=y
20865 +# CONFIG_UNUSED_SYMBOLS is not set
20866 +CONFIG_DEBUG_FS=y
20867 +# CONFIG_HEADERS_CHECK is not set
20868 +CONFIG_DEBUG_KERNEL=y
20869 +# CONFIG_DEBUG_SHIRQ is not set
20870 +CONFIG_DETECT_SOFTLOCKUP=y
20871 +# CONFIG_SCHED_DEBUG is not set
20872 +# CONFIG_SCHEDSTATS is not set
20873 +# CONFIG_TIMER_STATS is not set
20874 +# CONFIG_DEBUG_SLAB is not set
20875 +# CONFIG_DEBUG_RT_MUTEXES is not set
20876 +# CONFIG_RT_MUTEX_TESTER is not set
20877 +# CONFIG_DEBUG_SPINLOCK is not set
20878 +# CONFIG_DEBUG_MUTEXES is not set
20879 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
20880 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
20881 +# CONFIG_DEBUG_KOBJECT is not set
20882 +# CONFIG_DEBUG_BUGVERBOSE is not set
20883 +CONFIG_DEBUG_INFO=y
20884 +# CONFIG_DEBUG_VM is not set
20885 +# CONFIG_DEBUG_LIST is not set
20886 +# CONFIG_DEBUG_SG is not set
20887 +# CONFIG_BOOT_PRINTK_DELAY is not set
20888 +# CONFIG_RCU_TORTURE_TEST is not set
20889 +# CONFIG_BACKTRACE_SELF_TEST is not set
20890 +# CONFIG_FAULT_INJECTION is not set
20891 +# CONFIG_SAMPLES is not set
20892 +# CONFIG_DEBUG_STACKOVERFLOW is not set
20893 +# CONFIG_DEBUG_STACK_USAGE is not set
20894 +# CONFIG_DEBUG_PAGEALLOC is not set
20895 +# CONFIG_DEBUGGER is not set
20896 +# CONFIG_VIRQ_DEBUG is not set
20897 +CONFIG_BDI_SWITCH=y
20898 +# CONFIG_PPC_EARLY_DEBUG is not set
20899 +
20900 +#
20901 +# Security options
20902 +#
20903 +# CONFIG_KEYS is not set
20904 +# CONFIG_SECURITY is not set
20905 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
20906 +CONFIG_CRYPTO=y
20907 +# CONFIG_CRYPTO_SEQIV is not set
20908 +# CONFIG_CRYPTO_MANAGER is not set
20909 +# CONFIG_CRYPTO_HMAC is not set
20910 +# CONFIG_CRYPTO_XCBC is not set
20911 +# CONFIG_CRYPTO_NULL is not set
20912 +# CONFIG_CRYPTO_MD4 is not set
20913 +# CONFIG_CRYPTO_MD5 is not set
20914 +# CONFIG_CRYPTO_SHA1 is not set
20915 +# CONFIG_CRYPTO_SHA256 is not set
20916 +# CONFIG_CRYPTO_SHA512 is not set
20917 +# CONFIG_CRYPTO_WP512 is not set
20918 +# CONFIG_CRYPTO_TGR192 is not set
20919 +# CONFIG_CRYPTO_GF128MUL is not set
20920 +# CONFIG_CRYPTO_ECB is not set
20921 +# CONFIG_CRYPTO_CBC is not set
20922 +# CONFIG_CRYPTO_PCBC is not set
20923 +# CONFIG_CRYPTO_LRW is not set
20924 +# CONFIG_CRYPTO_XTS is not set
20925 +# CONFIG_CRYPTO_CTR is not set
20926 +# CONFIG_CRYPTO_GCM is not set
20927 +# CONFIG_CRYPTO_CCM is not set
20928 +# CONFIG_CRYPTO_CRYPTD is not set
20929 +# CONFIG_CRYPTO_DES is not set
20930 +# CONFIG_CRYPTO_FCRYPT is not set
20931 +# CONFIG_CRYPTO_BLOWFISH is not set
20932 +# CONFIG_CRYPTO_TWOFISH is not set
20933 +# CONFIG_CRYPTO_SERPENT is not set
20934 +# CONFIG_CRYPTO_AES is not set
20935 +# CONFIG_CRYPTO_CAST5 is not set
20936 +# CONFIG_CRYPTO_CAST6 is not set
20937 +# CONFIG_CRYPTO_TEA is not set
20938 +# CONFIG_CRYPTO_ARC4 is not set
20939 +# CONFIG_CRYPTO_KHAZAD is not set
20940 +# CONFIG_CRYPTO_ANUBIS is not set
20941 +# CONFIG_CRYPTO_SEED is not set
20942 +# CONFIG_CRYPTO_SALSA20 is not set
20943 +# CONFIG_CRYPTO_DEFLATE is not set
20944 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
20945 +# CONFIG_CRYPTO_CRC32C is not set
20946 +# CONFIG_CRYPTO_CAMELLIA is not set
20947 +# CONFIG_CRYPTO_TEST is not set
20948 +# CONFIG_CRYPTO_AUTHENC is not set
20949 +# CONFIG_CRYPTO_LZO is not set
20950 +CONFIG_CRYPTO_HW=y
20951 +# CONFIG_PPC_CLOCK is not set
20952 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig
20953 ===================================================================
20954 --- /dev/null
20955 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig
20956 @@ -0,0 +1,1395 @@
20957 +#
20958 +# Automatically generated make config: don't edit
20959 +# Linux kernel version: 2.6.25-rc6
20960 +# Fri Apr 11 11:10:09 2008
20961 +#
20962 +# CONFIG_PPC64 is not set
20963 +
20964 +#
20965 +# Processor support
20966 +#
20967 +CONFIG_6xx=y
20968 +# CONFIG_PPC_85xx is not set
20969 +# CONFIG_PPC_8xx is not set
20970 +# CONFIG_40x is not set
20971 +# CONFIG_44x is not set
20972 +# CONFIG_E200 is not set
20973 +CONFIG_PPC_FPU=y
20974 +# CONFIG_FSL_EMB_PERFMON is not set
20975 +CONFIG_PPC_STD_MMU=y
20976 +CONFIG_PPC_STD_MMU_32=y
20977 +# CONFIG_PPC_MM_SLICES is not set
20978 +# CONFIG_SMP is not set
20979 +CONFIG_PPC32=y
20980 +CONFIG_WORD_SIZE=32
20981 +CONFIG_PPC_MERGE=y
20982 +CONFIG_MMU=y
20983 +CONFIG_GENERIC_CMOS_UPDATE=y
20984 +CONFIG_GENERIC_TIME=y
20985 +CONFIG_GENERIC_TIME_VSYSCALL=y
20986 +CONFIG_GENERIC_CLOCKEVENTS=y
20987 +CONFIG_GENERIC_HARDIRQS=y
20988 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
20989 +CONFIG_IRQ_PER_CPU=y
20990 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
20991 +CONFIG_ARCH_HAS_ILOG2_U32=y
20992 +CONFIG_GENERIC_HWEIGHT=y
20993 +CONFIG_GENERIC_CALIBRATE_DELAY=y
20994 +CONFIG_GENERIC_FIND_NEXT_BIT=y
20995 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
20996 +CONFIG_PPC=y
20997 +CONFIG_EARLY_PRINTK=y
20998 +CONFIG_GENERIC_NVRAM=y
20999 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
21000 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
21001 +CONFIG_PPC_OF=y
21002 +CONFIG_OF=y
21003 +CONFIG_PPC_UDBG_16550=y
21004 +# CONFIG_GENERIC_TBSYNC is not set
21005 +CONFIG_AUDIT_ARCH=y
21006 +CONFIG_GENERIC_BUG=y
21007 +CONFIG_DEFAULT_UIMAGE=y
21008 +# CONFIG_PPC_DCR_NATIVE is not set
21009 +# CONFIG_PPC_DCR_MMIO is not set
21010 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
21011 +
21012 +#
21013 +# General setup
21014 +#
21015 +CONFIG_EXPERIMENTAL=y
21016 +CONFIG_BROKEN_ON_SMP=y
21017 +CONFIG_INIT_ENV_ARG_LIMIT=32
21018 +CONFIG_LOCALVERSION=""
21019 +CONFIG_LOCALVERSION_AUTO=y
21020 +CONFIG_SWAP=y
21021 +CONFIG_SYSVIPC=y
21022 +CONFIG_SYSVIPC_SYSCTL=y
21023 +# CONFIG_POSIX_MQUEUE is not set
21024 +# CONFIG_BSD_PROCESS_ACCT is not set
21025 +# CONFIG_TASKSTATS is not set
21026 +# CONFIG_AUDIT is not set
21027 +# CONFIG_IKCONFIG is not set
21028 +CONFIG_LOG_BUF_SHIFT=14
21029 +# CONFIG_CGROUPS is not set
21030 +CONFIG_GROUP_SCHED=y
21031 +# CONFIG_FAIR_GROUP_SCHED is not set
21032 +# CONFIG_RT_GROUP_SCHED is not set
21033 +CONFIG_USER_SCHED=y
21034 +# CONFIG_CGROUP_SCHED is not set
21035 +CONFIG_SYSFS_DEPRECATED=y
21036 +CONFIG_SYSFS_DEPRECATED_V2=y
21037 +# CONFIG_RELAY is not set
21038 +# CONFIG_NAMESPACES is not set
21039 +CONFIG_BLK_DEV_INITRD=y
21040 +CONFIG_INITRAMFS_SOURCE=""
21041 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
21042 +CONFIG_SYSCTL=y
21043 +CONFIG_EMBEDDED=y
21044 +CONFIG_SYSCTL_SYSCALL=y
21045 +# CONFIG_KALLSYMS is not set
21046 +CONFIG_HOTPLUG=y
21047 +CONFIG_PRINTK=y
21048 +CONFIG_BUG=y
21049 +CONFIG_ELF_CORE=y
21050 +CONFIG_COMPAT_BRK=y
21051 +CONFIG_BASE_FULL=y
21052 +CONFIG_FUTEX=y
21053 +CONFIG_ANON_INODES=y
21054 +# CONFIG_EPOLL is not set
21055 +CONFIG_SIGNALFD=y
21056 +CONFIG_TIMERFD=y
21057 +CONFIG_EVENTFD=y
21058 +CONFIG_SHMEM=y
21059 +CONFIG_VM_EVENT_COUNTERS=y
21060 +CONFIG_SLUB_DEBUG=y
21061 +# CONFIG_SLAB is not set
21062 +CONFIG_SLUB=y
21063 +# CONFIG_SLOB is not set
21064 +# CONFIG_PROFILING is not set
21065 +# CONFIG_MARKERS is not set
21066 +CONFIG_HAVE_OPROFILE=y
21067 +CONFIG_HAVE_KPROBES=y
21068 +CONFIG_HAVE_KRETPROBES=y
21069 +CONFIG_PROC_PAGE_MONITOR=y
21070 +CONFIG_SLABINFO=y
21071 +CONFIG_RT_MUTEXES=y
21072 +# CONFIG_TINY_SHMEM is not set
21073 +CONFIG_BASE_SMALL=0
21074 +CONFIG_MODULES=y
21075 +CONFIG_MODULE_UNLOAD=y
21076 +# CONFIG_MODULE_FORCE_UNLOAD is not set
21077 +# CONFIG_MODVERSIONS is not set
21078 +# CONFIG_MODULE_SRCVERSION_ALL is not set
21079 +# CONFIG_KMOD is not set
21080 +CONFIG_BLOCK=y
21081 +# CONFIG_LBD is not set
21082 +# CONFIG_BLK_DEV_IO_TRACE is not set
21083 +# CONFIG_LSF is not set
21084 +# CONFIG_BLK_DEV_BSG is not set
21085 +
21086 +#
21087 +# IO Schedulers
21088 +#
21089 +CONFIG_IOSCHED_NOOP=y
21090 +CONFIG_IOSCHED_AS=y
21091 +CONFIG_IOSCHED_DEADLINE=y
21092 +CONFIG_IOSCHED_CFQ=y
21093 +CONFIG_DEFAULT_AS=y
21094 +# CONFIG_DEFAULT_DEADLINE is not set
21095 +# CONFIG_DEFAULT_CFQ is not set
21096 +# CONFIG_DEFAULT_NOOP is not set
21097 +CONFIG_DEFAULT_IOSCHED="anticipatory"
21098 +CONFIG_CLASSIC_RCU=y
21099 +
21100 +#
21101 +# Platform support
21102 +#
21103 +# CONFIG_PPC_MULTIPLATFORM is not set
21104 +# CONFIG_PPC_82xx is not set
21105 +CONFIG_PPC_83xx=y
21106 +# CONFIG_PPC_86xx is not set
21107 +# CONFIG_PPC_MPC512x is not set
21108 +# CONFIG_PPC_MPC5121 is not set
21109 +# CONFIG_PPC_CELL is not set
21110 +# CONFIG_PPC_CELL_NATIVE is not set
21111 +# CONFIG_PQ2ADS is not set
21112 +CONFIG_MPC83xx=y
21113 +CONFIG_MPC831x_RDB=y
21114 +# CONFIG_MPC832x_MDS is not set
21115 +# CONFIG_MPC832x_RDB is not set
21116 +# CONFIG_MPC834x_MDS is not set
21117 +# CONFIG_MPC834x_ITX is not set
21118 +# CONFIG_MPC836x_MDS is not set
21119 +# CONFIG_MPC837x_MDS is not set
21120 +# CONFIG_MPC837x_RDB is not set
21121 +# CONFIG_SBC834x is not set
21122 +CONFIG_PPC_MPC831x=y
21123 +CONFIG_IPIC=y
21124 +# CONFIG_MPIC is not set
21125 +# CONFIG_MPIC_WEIRD is not set
21126 +# CONFIG_PPC_I8259 is not set
21127 +# CONFIG_PPC_RTAS is not set
21128 +# CONFIG_MMIO_NVRAM is not set
21129 +# CONFIG_PPC_MPC106 is not set
21130 +# CONFIG_PPC_970_NAP is not set
21131 +# CONFIG_PPC_INDIRECT_IO is not set
21132 +# CONFIG_GENERIC_IOMAP is not set
21133 +# CONFIG_CPU_FREQ is not set
21134 +# CONFIG_FSL_ULI1575 is not set
21135 +
21136 +#
21137 +# Kernel options
21138 +#
21139 +# CONFIG_HIGHMEM is not set
21140 +CONFIG_TICK_ONESHOT=y
21141 +CONFIG_NO_HZ=y
21142 +CONFIG_HIGH_RES_TIMERS=y
21143 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
21144 +# CONFIG_HZ_100 is not set
21145 +CONFIG_HZ_250=y
21146 +# CONFIG_HZ_300 is not set
21147 +# CONFIG_HZ_1000 is not set
21148 +CONFIG_HZ=250
21149 +# CONFIG_SCHED_HRTICK is not set
21150 +CONFIG_PREEMPT_NONE=y
21151 +# CONFIG_PREEMPT_VOLUNTARY is not set
21152 +# CONFIG_PREEMPT is not set
21153 +CONFIG_BINFMT_ELF=y
21154 +# CONFIG_BINFMT_MISC is not set
21155 +CONFIG_FORCE_MAX_ZONEORDER=11
21156 +# CONFIG_IOMMU_HELPER is not set
21157 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
21158 +CONFIG_ARCH_HAS_WALK_MEMORY=y
21159 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
21160 +CONFIG_ARCH_FLATMEM_ENABLE=y
21161 +CONFIG_ARCH_POPULATES_NODE_MAP=y
21162 +CONFIG_SELECT_MEMORY_MODEL=y
21163 +CONFIG_FLATMEM_MANUAL=y
21164 +# CONFIG_DISCONTIGMEM_MANUAL is not set
21165 +# CONFIG_SPARSEMEM_MANUAL is not set
21166 +CONFIG_FLATMEM=y
21167 +CONFIG_FLAT_NODE_MEM_MAP=y
21168 +# CONFIG_SPARSEMEM_STATIC is not set
21169 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
21170 +CONFIG_SPLIT_PTLOCK_CPUS=4
21171 +# CONFIG_RESOURCES_64BIT is not set
21172 +CONFIG_ZONE_DMA_FLAG=1
21173 +CONFIG_BOUNCE=y
21174 +CONFIG_VIRT_TO_BUS=y
21175 +CONFIG_PROC_DEVICETREE=y
21176 +# CONFIG_CMDLINE_BOOL is not set
21177 +# CONFIG_PM is not set
21178 +CONFIG_SECCOMP=y
21179 +CONFIG_ISA_DMA_API=y
21180 +
21181 +#
21182 +# Bus options
21183 +#
21184 +CONFIG_ZONE_DMA=y
21185 +CONFIG_GENERIC_ISA_DMA=y
21186 +CONFIG_PPC_INDIRECT_PCI=y
21187 +CONFIG_FSL_SOC=y
21188 +CONFIG_PCI=y
21189 +CONFIG_PCI_DOMAINS=y
21190 +CONFIG_PCI_SYSCALL=y
21191 +# CONFIG_PCIEPORTBUS is not set
21192 +CONFIG_ARCH_SUPPORTS_MSI=y
21193 +# CONFIG_PCI_MSI is not set
21194 +CONFIG_PCI_LEGACY=y
21195 +# CONFIG_PCI_DEBUG is not set
21196 +# CONFIG_PCCARD is not set
21197 +# CONFIG_HOTPLUG_PCI is not set
21198 +
21199 +#
21200 +# Advanced setup
21201 +#
21202 +# CONFIG_ADVANCED_OPTIONS is not set
21203 +
21204 +#
21205 +# Default settings for advanced configuration options are used
21206 +#
21207 +CONFIG_HIGHMEM_START=0xfe000000
21208 +CONFIG_LOWMEM_SIZE=0x30000000
21209 +CONFIG_KERNEL_START=0xc0000000
21210 +CONFIG_TASK_SIZE=0xc0000000
21211 +CONFIG_BOOT_LOAD=0x00800000
21212 +
21213 +#
21214 +# Networking
21215 +#
21216 +CONFIG_NET=y
21217 +
21218 +#
21219 +# Networking options
21220 +#
21221 +CONFIG_PACKET=y
21222 +# CONFIG_PACKET_MMAP is not set
21223 +CONFIG_UNIX=y
21224 +CONFIG_XFRM=y
21225 +# CONFIG_XFRM_USER is not set
21226 +# CONFIG_XFRM_SUB_POLICY is not set
21227 +# CONFIG_XFRM_MIGRATE is not set
21228 +# CONFIG_XFRM_STATISTICS is not set
21229 +# CONFIG_NET_KEY is not set
21230 +CONFIG_INET=y
21231 +CONFIG_IP_MULTICAST=y
21232 +# CONFIG_IP_ADVANCED_ROUTER is not set
21233 +CONFIG_IP_FIB_HASH=y
21234 +CONFIG_IP_PNP=y
21235 +CONFIG_IP_PNP_DHCP=y
21236 +CONFIG_IP_PNP_BOOTP=y
21237 +# CONFIG_IP_PNP_RARP is not set
21238 +# CONFIG_NET_IPIP is not set
21239 +# CONFIG_NET_IPGRE is not set
21240 +# CONFIG_IP_MROUTE is not set
21241 +# CONFIG_ARPD is not set
21242 +CONFIG_SYN_COOKIES=y
21243 +# CONFIG_INET_AH is not set
21244 +# CONFIG_INET_ESP is not set
21245 +# CONFIG_INET_IPCOMP is not set
21246 +# CONFIG_INET_XFRM_TUNNEL is not set
21247 +# CONFIG_INET_TUNNEL is not set
21248 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
21249 +CONFIG_INET_XFRM_MODE_TUNNEL=y
21250 +CONFIG_INET_XFRM_MODE_BEET=y
21251 +# CONFIG_INET_LRO is not set
21252 +CONFIG_INET_DIAG=y
21253 +CONFIG_INET_TCP_DIAG=y
21254 +# CONFIG_TCP_CONG_ADVANCED is not set
21255 +CONFIG_TCP_CONG_CUBIC=y
21256 +CONFIG_DEFAULT_TCP_CONG="cubic"
21257 +# CONFIG_TCP_MD5SIG is not set
21258 +# CONFIG_IPV6 is not set
21259 +# CONFIG_INET6_XFRM_TUNNEL is not set
21260 +# CONFIG_INET6_TUNNEL is not set
21261 +# CONFIG_NETWORK_SECMARK is not set
21262 +# CONFIG_NETFILTER is not set
21263 +# CONFIG_IP_DCCP is not set
21264 +# CONFIG_IP_SCTP is not set
21265 +# CONFIG_TIPC is not set
21266 +# CONFIG_ATM is not set
21267 +# CONFIG_BRIDGE is not set
21268 +# CONFIG_VLAN_8021Q is not set
21269 +# CONFIG_DECNET is not set
21270 +# CONFIG_LLC2 is not set
21271 +# CONFIG_IPX is not set
21272 +# CONFIG_ATALK is not set
21273 +# CONFIG_X25 is not set
21274 +# CONFIG_LAPB is not set
21275 +# CONFIG_ECONET is not set
21276 +# CONFIG_WAN_ROUTER is not set
21277 +# CONFIG_NET_SCHED is not set
21278 +
21279 +#
21280 +# Network testing
21281 +#
21282 +# CONFIG_NET_PKTGEN is not set
21283 +# CONFIG_HAMRADIO is not set
21284 +# CONFIG_CAN is not set
21285 +# CONFIG_IRDA is not set
21286 +# CONFIG_BT is not set
21287 +# CONFIG_AF_RXRPC is not set
21288 +
21289 +#
21290 +# Wireless
21291 +#
21292 +# CONFIG_CFG80211 is not set
21293 +# CONFIG_WIRELESS_EXT is not set
21294 +# CONFIG_MAC80211 is not set
21295 +# CONFIG_IEEE80211 is not set
21296 +# CONFIG_RFKILL is not set
21297 +# CONFIG_NET_9P is not set
21298 +
21299 +#
21300 +# Device Drivers
21301 +#
21302 +
21303 +#
21304 +# Generic Driver Options
21305 +#
21306 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
21307 +CONFIG_STANDALONE=y
21308 +CONFIG_PREVENT_FIRMWARE_BUILD=y
21309 +# CONFIG_FW_LOADER is not set
21310 +# CONFIG_DEBUG_DRIVER is not set
21311 +# CONFIG_DEBUG_DEVRES is not set
21312 +# CONFIG_SYS_HYPERVISOR is not set
21313 +# CONFIG_CONNECTOR is not set
21314 +CONFIG_MTD=y
21315 +# CONFIG_MTD_DEBUG is not set
21316 +# CONFIG_MTD_CONCAT is not set
21317 +CONFIG_MTD_PARTITIONS=y
21318 +# CONFIG_MTD_REDBOOT_PARTS is not set
21319 +# CONFIG_MTD_CMDLINE_PARTS is not set
21320 +CONFIG_MTD_OF_PARTS=y
21321 +
21322 +#
21323 +# User Modules And Translation Layers
21324 +#
21325 +CONFIG_MTD_CHAR=y
21326 +CONFIG_MTD_BLKDEVS=y
21327 +CONFIG_MTD_BLOCK=y
21328 +# CONFIG_FTL is not set
21329 +# CONFIG_NFTL is not set
21330 +# CONFIG_INFTL is not set
21331 +# CONFIG_RFD_FTL is not set
21332 +# CONFIG_SSFDC is not set
21333 +# CONFIG_MTD_OOPS is not set
21334 +
21335 +#
21336 +# RAM/ROM/Flash chip drivers
21337 +#
21338 +CONFIG_MTD_CFI=y
21339 +# CONFIG_MTD_JEDECPROBE is not set
21340 +CONFIG_MTD_GEN_PROBE=y
21341 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
21342 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
21343 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
21344 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
21345 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
21346 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
21347 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
21348 +CONFIG_MTD_CFI_I1=y
21349 +CONFIG_MTD_CFI_I2=y
21350 +# CONFIG_MTD_CFI_I4 is not set
21351 +# CONFIG_MTD_CFI_I8 is not set
21352 +# CONFIG_MTD_CFI_INTELEXT is not set
21353 +CONFIG_MTD_CFI_AMDSTD=y
21354 +# CONFIG_MTD_CFI_STAA is not set
21355 +CONFIG_MTD_CFI_UTIL=y
21356 +# CONFIG_MTD_RAM is not set
21357 +# CONFIG_MTD_ROM is not set
21358 +# CONFIG_MTD_ABSENT is not set
21359 +
21360 +#
21361 +# Mapping drivers for chip access
21362 +#
21363 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
21364 +# CONFIG_MTD_PHYSMAP is not set
21365 +CONFIG_MTD_PHYSMAP_OF=y
21366 +# CONFIG_MTD_INTEL_VR_NOR is not set
21367 +# CONFIG_MTD_PLATRAM is not set
21368 +
21369 +#
21370 +# Self-contained MTD device drivers
21371 +#
21372 +# CONFIG_MTD_PMC551 is not set
21373 +# CONFIG_MTD_DATAFLASH is not set
21374 +# CONFIG_MTD_M25P80 is not set
21375 +# CONFIG_MTD_SLRAM is not set
21376 +# CONFIG_MTD_PHRAM is not set
21377 +# CONFIG_MTD_MTDRAM is not set
21378 +# CONFIG_MTD_BLOCK2MTD is not set
21379 +
21380 +#
21381 +# Disk-On-Chip Device Drivers
21382 +#
21383 +# CONFIG_MTD_DOC2000 is not set
21384 +# CONFIG_MTD_DOC2001 is not set
21385 +# CONFIG_MTD_DOC2001PLUS is not set
21386 +CONFIG_MTD_NAND=y
21387 +CONFIG_MTD_NAND_VERIFY_WRITE=y
21388 +# CONFIG_MTD_NAND_ECC_SMC is not set
21389 +# CONFIG_MTD_NAND_MUSEUM_IDS is not set
21390 +CONFIG_MTD_NAND_IDS=y
21391 +# CONFIG_MTD_NAND_DISKONCHIP is not set
21392 +# CONFIG_MTD_NAND_CAFE is not set
21393 +# CONFIG_MTD_NAND_NANDSIM is not set
21394 +# CONFIG_MTD_NAND_PLATFORM is not set
21395 +# CONFIG_MTD_ALAUDA is not set
21396 +CONFIG_MTD_NAND_FSL_ELBC=y
21397 +# CONFIG_MTD_ONENAND is not set
21398 +
21399 +#
21400 +# UBI - Unsorted block images
21401 +#
21402 +# CONFIG_MTD_UBI is not set
21403 +CONFIG_OF_DEVICE=y
21404 +# CONFIG_PARPORT is not set
21405 +CONFIG_BLK_DEV=y
21406 +# CONFIG_BLK_DEV_FD is not set
21407 +# CONFIG_BLK_CPQ_DA is not set
21408 +# CONFIG_BLK_CPQ_CISS_DA is not set
21409 +# CONFIG_BLK_DEV_DAC960 is not set
21410 +# CONFIG_BLK_DEV_UMEM is not set
21411 +# CONFIG_BLK_DEV_COW_COMMON is not set
21412 +CONFIG_BLK_DEV_LOOP=y
21413 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
21414 +# CONFIG_BLK_DEV_NBD is not set
21415 +# CONFIG_BLK_DEV_SX8 is not set
21416 +# CONFIG_BLK_DEV_UB is not set
21417 +CONFIG_BLK_DEV_RAM=y
21418 +CONFIG_BLK_DEV_RAM_COUNT=16
21419 +CONFIG_BLK_DEV_RAM_SIZE=32768
21420 +# CONFIG_BLK_DEV_XIP is not set
21421 +# CONFIG_CDROM_PKTCDVD is not set
21422 +# CONFIG_ATA_OVER_ETH is not set
21423 +CONFIG_MISC_DEVICES=y
21424 +# CONFIG_PHANTOM is not set
21425 +# CONFIG_EEPROM_93CX6 is not set
21426 +# CONFIG_SGI_IOC4 is not set
21427 +# CONFIG_TIFM_CORE is not set
21428 +# CONFIG_ENCLOSURE_SERVICES is not set
21429 +CONFIG_HAVE_IDE=y
21430 +# CONFIG_IDE is not set
21431 +
21432 +#
21433 +# SCSI device support
21434 +#
21435 +# CONFIG_RAID_ATTRS is not set
21436 +CONFIG_SCSI=y
21437 +CONFIG_SCSI_DMA=y
21438 +# CONFIG_SCSI_TGT is not set
21439 +# CONFIG_SCSI_NETLINK is not set
21440 +CONFIG_SCSI_PROC_FS=y
21441 +
21442 +#
21443 +# SCSI support type (disk, tape, CD-ROM)
21444 +#
21445 +# CONFIG_BLK_DEV_SD is not set
21446 +# CONFIG_CHR_DEV_ST is not set
21447 +# CONFIG_CHR_DEV_OSST is not set
21448 +# CONFIG_BLK_DEV_SR is not set
21449 +CONFIG_CHR_DEV_SG=y
21450 +# CONFIG_CHR_DEV_SCH is not set
21451 +
21452 +#
21453 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
21454 +#
21455 +# CONFIG_SCSI_MULTI_LUN is not set
21456 +# CONFIG_SCSI_CONSTANTS is not set
21457 +# CONFIG_SCSI_LOGGING is not set
21458 +# CONFIG_SCSI_SCAN_ASYNC is not set
21459 +CONFIG_SCSI_WAIT_SCAN=m
21460 +
21461 +#
21462 +# SCSI Transports
21463 +#
21464 +CONFIG_SCSI_SPI_ATTRS=y
21465 +# CONFIG_SCSI_FC_ATTRS is not set
21466 +# CONFIG_SCSI_ISCSI_ATTRS is not set
21467 +# CONFIG_SCSI_SAS_LIBSAS is not set
21468 +# CONFIG_SCSI_SRP_ATTRS is not set
21469 +CONFIG_SCSI_LOWLEVEL=y
21470 +# CONFIG_ISCSI_TCP is not set
21471 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
21472 +# CONFIG_SCSI_3W_9XXX is not set
21473 +# CONFIG_SCSI_ACARD is not set
21474 +# CONFIG_SCSI_AACRAID is not set
21475 +# CONFIG_SCSI_AIC7XXX is not set
21476 +# CONFIG_SCSI_AIC7XXX_OLD is not set
21477 +# CONFIG_SCSI_AIC79XX is not set
21478 +# CONFIG_SCSI_AIC94XX is not set
21479 +# CONFIG_SCSI_DPT_I2O is not set
21480 +# CONFIG_SCSI_ADVANSYS is not set
21481 +# CONFIG_SCSI_ARCMSR is not set
21482 +# CONFIG_MEGARAID_NEWGEN is not set
21483 +# CONFIG_MEGARAID_LEGACY is not set
21484 +# CONFIG_MEGARAID_SAS is not set
21485 +# CONFIG_SCSI_HPTIOP is not set
21486 +# CONFIG_SCSI_BUSLOGIC is not set
21487 +# CONFIG_SCSI_DMX3191D is not set
21488 +# CONFIG_SCSI_EATA is not set
21489 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
21490 +# CONFIG_SCSI_GDTH is not set
21491 +# CONFIG_SCSI_IPS is not set
21492 +# CONFIG_SCSI_INITIO is not set
21493 +# CONFIG_SCSI_INIA100 is not set
21494 +# CONFIG_SCSI_MVSAS is not set
21495 +# CONFIG_SCSI_STEX is not set
21496 +# CONFIG_SCSI_SYM53C8XX_2 is not set
21497 +# CONFIG_SCSI_QLOGIC_1280 is not set
21498 +# CONFIG_SCSI_QLA_FC is not set
21499 +# CONFIG_SCSI_QLA_ISCSI is not set
21500 +# CONFIG_SCSI_LPFC is not set
21501 +# CONFIG_SCSI_DC395x is not set
21502 +# CONFIG_SCSI_DC390T is not set
21503 +# CONFIG_SCSI_NSP32 is not set
21504 +# CONFIG_SCSI_DEBUG is not set
21505 +# CONFIG_SCSI_SRP is not set
21506 +# CONFIG_ATA is not set
21507 +CONFIG_MD=y
21508 +CONFIG_BLK_DEV_MD=y
21509 +CONFIG_MD_LINEAR=y
21510 +CONFIG_MD_RAID0=y
21511 +CONFIG_MD_RAID1=y
21512 +# CONFIG_MD_RAID10 is not set
21513 +# CONFIG_MD_RAID456 is not set
21514 +# CONFIG_MD_MULTIPATH is not set
21515 +# CONFIG_MD_FAULTY is not set
21516 +# CONFIG_BLK_DEV_DM is not set
21517 +# CONFIG_FUSION is not set
21518 +
21519 +#
21520 +# IEEE 1394 (FireWire) support
21521 +#
21522 +# CONFIG_FIREWIRE is not set
21523 +# CONFIG_IEEE1394 is not set
21524 +# CONFIG_I2O is not set
21525 +# CONFIG_MACINTOSH_DRIVERS is not set
21526 +CONFIG_NETDEVICES=y
21527 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
21528 +# CONFIG_DUMMY is not set
21529 +# CONFIG_BONDING is not set
21530 +# CONFIG_MACVLAN is not set
21531 +# CONFIG_EQUALIZER is not set
21532 +# CONFIG_TUN is not set
21533 +# CONFIG_VETH is not set
21534 +# CONFIG_ARCNET is not set
21535 +CONFIG_PHYLIB=y
21536 +
21537 +#
21538 +# MII PHY device drivers
21539 +#
21540 +# CONFIG_MARVELL_PHY is not set
21541 +# CONFIG_DAVICOM_PHY is not set
21542 +# CONFIG_QSEMI_PHY is not set
21543 +# CONFIG_LXT_PHY is not set
21544 +CONFIG_CICADA_PHY=y
21545 +# CONFIG_VITESSE_PHY is not set
21546 +# CONFIG_SMSC_PHY is not set
21547 +# CONFIG_BROADCOM_PHY is not set
21548 +# CONFIG_ICPLUS_PHY is not set
21549 +# CONFIG_REALTEK_PHY is not set
21550 +# CONFIG_FIXED_PHY is not set
21551 +# CONFIG_MDIO_BITBANG is not set
21552 +CONFIG_NET_ETHERNET=y
21553 +CONFIG_MII=y
21554 +# CONFIG_HAPPYMEAL is not set
21555 +# CONFIG_SUNGEM is not set
21556 +# CONFIG_CASSINI is not set
21557 +# CONFIG_NET_VENDOR_3COM is not set
21558 +# CONFIG_ENC28J60 is not set
21559 +# CONFIG_NET_TULIP is not set
21560 +# CONFIG_HP100 is not set
21561 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
21562 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
21563 +# CONFIG_IBM_NEW_EMAC_TAH is not set
21564 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
21565 +CONFIG_NET_PCI=y
21566 +# CONFIG_PCNET32 is not set
21567 +# CONFIG_AMD8111_ETH is not set
21568 +# CONFIG_ADAPTEC_STARFIRE is not set
21569 +# CONFIG_B44 is not set
21570 +# CONFIG_FORCEDETH is not set
21571 +# CONFIG_EEPRO100 is not set
21572 +CONFIG_E100=y
21573 +# CONFIG_FEALNX is not set
21574 +# CONFIG_NATSEMI is not set
21575 +# CONFIG_NE2K_PCI is not set
21576 +# CONFIG_8139CP is not set
21577 +# CONFIG_8139TOO is not set
21578 +# CONFIG_R6040 is not set
21579 +# CONFIG_SIS900 is not set
21580 +# CONFIG_EPIC100 is not set
21581 +# CONFIG_SUNDANCE is not set
21582 +# CONFIG_TLAN is not set
21583 +# CONFIG_VIA_RHINE is not set
21584 +# CONFIG_SC92031 is not set
21585 +CONFIG_NETDEV_1000=y
21586 +# CONFIG_ACENIC is not set
21587 +# CONFIG_DL2K is not set
21588 +# CONFIG_E1000 is not set
21589 +# CONFIG_E1000E is not set
21590 +# CONFIG_E1000E_ENABLED is not set
21591 +# CONFIG_IP1000 is not set
21592 +# CONFIG_IGB is not set
21593 +# CONFIG_NS83820 is not set
21594 +# CONFIG_HAMACHI is not set
21595 +# CONFIG_YELLOWFIN is not set
21596 +# CONFIG_R8169 is not set
21597 +# CONFIG_SIS190 is not set
21598 +# CONFIG_SKGE is not set
21599 +# CONFIG_SKY2 is not set
21600 +# CONFIG_SK98LIN is not set
21601 +# CONFIG_VIA_VELOCITY is not set
21602 +# CONFIG_TIGON3 is not set
21603 +# CONFIG_BNX2 is not set
21604 +CONFIG_GIANFAR=y
21605 +CONFIG_GFAR_NAPI=y
21606 +# CONFIG_QLA3XXX is not set
21607 +# CONFIG_ATL1 is not set
21608 +CONFIG_NETDEV_10000=y
21609 +# CONFIG_CHELSIO_T1 is not set
21610 +# CONFIG_CHELSIO_T3 is not set
21611 +# CONFIG_IXGBE is not set
21612 +# CONFIG_IXGB is not set
21613 +# CONFIG_S2IO is not set
21614 +# CONFIG_MYRI10GE is not set
21615 +# CONFIG_NETXEN_NIC is not set
21616 +# CONFIG_NIU is not set
21617 +# CONFIG_MLX4_CORE is not set
21618 +# CONFIG_TEHUTI is not set
21619 +# CONFIG_BNX2X is not set
21620 +# CONFIG_TR is not set
21621 +
21622 +#
21623 +# Wireless LAN
21624 +#
21625 +# CONFIG_WLAN_PRE80211 is not set
21626 +# CONFIG_WLAN_80211 is not set
21627 +
21628 +#
21629 +# USB Network Adapters
21630 +#
21631 +# CONFIG_USB_CATC is not set
21632 +# CONFIG_USB_KAWETH is not set
21633 +# CONFIG_USB_PEGASUS is not set
21634 +# CONFIG_USB_RTL8150 is not set
21635 +# CONFIG_USB_USBNET is not set
21636 +# CONFIG_WAN is not set
21637 +# CONFIG_FDDI is not set
21638 +# CONFIG_HIPPI is not set
21639 +# CONFIG_PPP is not set
21640 +# CONFIG_SLIP is not set
21641 +# CONFIG_NET_FC is not set
21642 +# CONFIG_NETCONSOLE is not set
21643 +# CONFIG_NETPOLL is not set
21644 +# CONFIG_NET_POLL_CONTROLLER is not set
21645 +# CONFIG_ISDN is not set
21646 +# CONFIG_PHONE is not set
21647 +
21648 +#
21649 +# Input device support
21650 +#
21651 +CONFIG_INPUT=y
21652 +# CONFIG_INPUT_FF_MEMLESS is not set
21653 +# CONFIG_INPUT_POLLDEV is not set
21654 +
21655 +#
21656 +# Userland interfaces
21657 +#
21658 +# CONFIG_INPUT_MOUSEDEV is not set
21659 +# CONFIG_INPUT_JOYDEV is not set
21660 +# CONFIG_INPUT_EVDEV is not set
21661 +# CONFIG_INPUT_EVBUG is not set
21662 +
21663 +#
21664 +# Input Device Drivers
21665 +#
21666 +# CONFIG_INPUT_KEYBOARD is not set
21667 +# CONFIG_INPUT_MOUSE is not set
21668 +# CONFIG_INPUT_JOYSTICK is not set
21669 +# CONFIG_INPUT_TABLET is not set
21670 +# CONFIG_INPUT_TOUCHSCREEN is not set
21671 +# CONFIG_INPUT_MISC is not set
21672 +
21673 +#
21674 +# Hardware I/O ports
21675 +#
21676 +# CONFIG_SERIO is not set
21677 +# CONFIG_GAMEPORT is not set
21678 +
21679 +#
21680 +# Character devices
21681 +#
21682 +# CONFIG_VT is not set
21683 +# CONFIG_SERIAL_NONSTANDARD is not set
21684 +# CONFIG_NOZOMI is not set
21685 +
21686 +#
21687 +# Serial drivers
21688 +#
21689 +CONFIG_SERIAL_8250=y
21690 +CONFIG_SERIAL_8250_CONSOLE=y
21691 +CONFIG_SERIAL_8250_PCI=y
21692 +CONFIG_SERIAL_8250_NR_UARTS=4
21693 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
21694 +# CONFIG_SERIAL_8250_EXTENDED is not set
21695 +
21696 +#
21697 +# Non-8250 serial port support
21698 +#
21699 +# CONFIG_SERIAL_UARTLITE is not set
21700 +CONFIG_SERIAL_CORE=y
21701 +CONFIG_SERIAL_CORE_CONSOLE=y
21702 +# CONFIG_SERIAL_JSM is not set
21703 +# CONFIG_SERIAL_OF_PLATFORM is not set
21704 +CONFIG_UNIX98_PTYS=y
21705 +CONFIG_LEGACY_PTYS=y
21706 +CONFIG_LEGACY_PTY_COUNT=256
21707 +# CONFIG_IPMI_HANDLER is not set
21708 +CONFIG_HW_RANDOM=y
21709 +# CONFIG_NVRAM is not set
21710 +# CONFIG_GEN_RTC is not set
21711 +# CONFIG_R3964 is not set
21712 +# CONFIG_APPLICOM is not set
21713 +# CONFIG_RAW_DRIVER is not set
21714 +# CONFIG_TCG_TPM is not set
21715 +CONFIG_DEVPORT=y
21716 +CONFIG_I2C=y
21717 +CONFIG_I2C_BOARDINFO=y
21718 +CONFIG_I2C_CHARDEV=y
21719 +
21720 +#
21721 +# I2C Algorithms
21722 +#
21723 +# CONFIG_I2C_ALGOBIT is not set
21724 +# CONFIG_I2C_ALGOPCF is not set
21725 +# CONFIG_I2C_ALGOPCA is not set
21726 +
21727 +#
21728 +# I2C Hardware Bus support
21729 +#
21730 +# CONFIG_I2C_ALI1535 is not set
21731 +# CONFIG_I2C_ALI1563 is not set
21732 +# CONFIG_I2C_ALI15X3 is not set
21733 +# CONFIG_I2C_AMD756 is not set
21734 +# CONFIG_I2C_AMD8111 is not set
21735 +# CONFIG_I2C_I801 is not set
21736 +# CONFIG_I2C_I810 is not set
21737 +# CONFIG_I2C_PIIX4 is not set
21738 +CONFIG_I2C_MPC=y
21739 +# CONFIG_I2C_NFORCE2 is not set
21740 +# CONFIG_I2C_OCORES is not set
21741 +# CONFIG_I2C_PARPORT_LIGHT is not set
21742 +# CONFIG_I2C_PROSAVAGE is not set
21743 +# CONFIG_I2C_SAVAGE4 is not set
21744 +# CONFIG_I2C_SIMTEC is not set
21745 +# CONFIG_I2C_SIS5595 is not set
21746 +# CONFIG_I2C_SIS630 is not set
21747 +# CONFIG_I2C_SIS96X is not set
21748 +# CONFIG_I2C_TAOS_EVM is not set
21749 +# CONFIG_I2C_STUB is not set
21750 +# CONFIG_I2C_TINY_USB is not set
21751 +# CONFIG_I2C_VIA is not set
21752 +# CONFIG_I2C_VIAPRO is not set
21753 +# CONFIG_I2C_VOODOO3 is not set
21754 +
21755 +#
21756 +# Miscellaneous I2C Chip support
21757 +#
21758 +# CONFIG_DS1682 is not set
21759 +# CONFIG_SENSORS_EEPROM is not set
21760 +# CONFIG_SENSORS_PCF8574 is not set
21761 +# CONFIG_PCF8575 is not set
21762 +# CONFIG_SENSORS_PCF8591 is not set
21763 +# CONFIG_TPS65010 is not set
21764 +# CONFIG_SENSORS_MAX6875 is not set
21765 +# CONFIG_SENSORS_TSL2550 is not set
21766 +# CONFIG_I2C_DEBUG_CORE is not set
21767 +# CONFIG_I2C_DEBUG_ALGO is not set
21768 +# CONFIG_I2C_DEBUG_BUS is not set
21769 +# CONFIG_I2C_DEBUG_CHIP is not set
21770 +
21771 +#
21772 +# SPI support
21773 +#
21774 +CONFIG_SPI=y
21775 +# CONFIG_SPI_DEBUG is not set
21776 +CONFIG_SPI_MASTER=y
21777 +
21778 +#
21779 +# SPI Master Controller Drivers
21780 +#
21781 +CONFIG_SPI_BITBANG=y
21782 +CONFIG_SPI_MPC83xx=y
21783 +
21784 +#
21785 +# SPI Protocol Masters
21786 +#
21787 +# CONFIG_SPI_AT25 is not set
21788 +# CONFIG_SPI_SPIDEV is not set
21789 +# CONFIG_SPI_TLE62X0 is not set
21790 +# CONFIG_W1 is not set
21791 +# CONFIG_POWER_SUPPLY is not set
21792 +CONFIG_HWMON=y
21793 +# CONFIG_HWMON_VID is not set
21794 +# CONFIG_SENSORS_AD7418 is not set
21795 +# CONFIG_SENSORS_ADM1021 is not set
21796 +# CONFIG_SENSORS_ADM1025 is not set
21797 +# CONFIG_SENSORS_ADM1026 is not set
21798 +# CONFIG_SENSORS_ADM1029 is not set
21799 +# CONFIG_SENSORS_ADM1031 is not set
21800 +# CONFIG_SENSORS_ADM9240 is not set
21801 +# CONFIG_SENSORS_ADT7470 is not set
21802 +# CONFIG_SENSORS_ADT7473 is not set
21803 +# CONFIG_SENSORS_ATXP1 is not set
21804 +# CONFIG_SENSORS_DS1621 is not set
21805 +# CONFIG_SENSORS_I5K_AMB is not set
21806 +# CONFIG_SENSORS_F71805F is not set
21807 +# CONFIG_SENSORS_F71882FG is not set
21808 +# CONFIG_SENSORS_F75375S is not set
21809 +# CONFIG_SENSORS_GL518SM is not set
21810 +# CONFIG_SENSORS_GL520SM is not set
21811 +# CONFIG_SENSORS_IT87 is not set
21812 +# CONFIG_SENSORS_LM63 is not set
21813 +# CONFIG_SENSORS_LM70 is not set
21814 +# CONFIG_SENSORS_LM75 is not set
21815 +# CONFIG_SENSORS_LM77 is not set
21816 +# CONFIG_SENSORS_LM78 is not set
21817 +# CONFIG_SENSORS_LM80 is not set
21818 +# CONFIG_SENSORS_LM83 is not set
21819 +# CONFIG_SENSORS_LM85 is not set
21820 +# CONFIG_SENSORS_LM87 is not set
21821 +# CONFIG_SENSORS_LM90 is not set
21822 +# CONFIG_SENSORS_LM92 is not set
21823 +# CONFIG_SENSORS_LM93 is not set
21824 +# CONFIG_SENSORS_MAX1619 is not set
21825 +# CONFIG_SENSORS_MAX6650 is not set
21826 +# CONFIG_SENSORS_PC87360 is not set
21827 +# CONFIG_SENSORS_PC87427 is not set
21828 +# CONFIG_SENSORS_SIS5595 is not set
21829 +# CONFIG_SENSORS_DME1737 is not set
21830 +# CONFIG_SENSORS_SMSC47M1 is not set
21831 +# CONFIG_SENSORS_SMSC47M192 is not set
21832 +# CONFIG_SENSORS_SMSC47B397 is not set
21833 +# CONFIG_SENSORS_ADS7828 is not set
21834 +# CONFIG_SENSORS_THMC50 is not set
21835 +# CONFIG_SENSORS_VIA686A is not set
21836 +# CONFIG_SENSORS_VT1211 is not set
21837 +# CONFIG_SENSORS_VT8231 is not set
21838 +# CONFIG_SENSORS_W83781D is not set
21839 +# CONFIG_SENSORS_W83791D is not set
21840 +# CONFIG_SENSORS_W83792D is not set
21841 +# CONFIG_SENSORS_W83793 is not set
21842 +# CONFIG_SENSORS_W83L785TS is not set
21843 +# CONFIG_SENSORS_W83L786NG is not set
21844 +# CONFIG_SENSORS_W83627HF is not set
21845 +# CONFIG_SENSORS_W83627EHF is not set
21846 +# CONFIG_HWMON_DEBUG_CHIP is not set
21847 +# CONFIG_THERMAL is not set
21848 +CONFIG_WATCHDOG=y
21849 +# CONFIG_WATCHDOG_NOWAYOUT is not set
21850 +
21851 +#
21852 +# Watchdog Device Drivers
21853 +#
21854 +# CONFIG_SOFT_WATCHDOG is not set
21855 +CONFIG_83xx_WDT=y
21856 +
21857 +#
21858 +# PCI-based Watchdog Cards
21859 +#
21860 +# CONFIG_PCIPCWATCHDOG is not set
21861 +# CONFIG_WDTPCI is not set
21862 +
21863 +#
21864 +# USB-based Watchdog Cards
21865 +#
21866 +# CONFIG_USBPCWATCHDOG is not set
21867 +
21868 +#
21869 +# Sonics Silicon Backplane
21870 +#
21871 +CONFIG_SSB_POSSIBLE=y
21872 +# CONFIG_SSB is not set
21873 +
21874 +#
21875 +# Multifunction device drivers
21876 +#
21877 +# CONFIG_MFD_SM501 is not set
21878 +
21879 +#
21880 +# Multimedia devices
21881 +#
21882 +# CONFIG_VIDEO_DEV is not set
21883 +# CONFIG_DVB_CORE is not set
21884 +CONFIG_DAB=y
21885 +# CONFIG_USB_DABUSB is not set
21886 +
21887 +#
21888 +# Graphics support
21889 +#
21890 +# CONFIG_AGP is not set
21891 +# CONFIG_DRM is not set
21892 +# CONFIG_VGASTATE is not set
21893 +CONFIG_VIDEO_OUTPUT_CONTROL=m
21894 +# CONFIG_FB is not set
21895 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
21896 +
21897 +#
21898 +# Display device support
21899 +#
21900 +# CONFIG_DISPLAY_SUPPORT is not set
21901 +
21902 +#
21903 +# Sound
21904 +#
21905 +# CONFIG_SOUND is not set
21906 +CONFIG_HID_SUPPORT=y
21907 +CONFIG_HID=y
21908 +# CONFIG_HID_DEBUG is not set
21909 +# CONFIG_HIDRAW is not set
21910 +
21911 +#
21912 +# USB Input Devices
21913 +#
21914 +# CONFIG_USB_HID is not set
21915 +
21916 +#
21917 +# USB HID Boot Protocol drivers
21918 +#
21919 +# CONFIG_USB_KBD is not set
21920 +# CONFIG_USB_MOUSE is not set
21921 +CONFIG_USB_SUPPORT=y
21922 +CONFIG_USB_ARCH_HAS_HCD=y
21923 +CONFIG_USB_ARCH_HAS_OHCI=y
21924 +CONFIG_USB_ARCH_HAS_EHCI=y
21925 +CONFIG_USB=y
21926 +# CONFIG_USB_DEBUG is not set
21927 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
21928 +
21929 +#
21930 +# Miscellaneous USB options
21931 +#
21932 +CONFIG_USB_DEVICEFS=y
21933 +CONFIG_USB_DEVICE_CLASS=y
21934 +# CONFIG_USB_DYNAMIC_MINORS is not set
21935 +# CONFIG_USB_OTG is not set
21936 +
21937 +#
21938 +# USB Host Controller Drivers
21939 +#
21940 +CONFIG_USB_EHCI_HCD=y
21941 +CONFIG_USB_EHCI_ROOT_HUB_TT=y
21942 +# CONFIG_USB_EHCI_TT_NEWSCHED is not set
21943 +CONFIG_USB_EHCI_FSL=y
21944 +CONFIG_USB_EHCI_HCD_PPC_OF=y
21945 +# CONFIG_USB_ISP116X_HCD is not set
21946 +CONFIG_USB_OHCI_HCD=y
21947 +CONFIG_USB_OHCI_HCD_PPC_OF=y
21948 +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
21949 +# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set
21950 +CONFIG_USB_OHCI_HCD_PCI=y
21951 +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
21952 +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
21953 +CONFIG_USB_OHCI_LITTLE_ENDIAN=y
21954 +CONFIG_USB_UHCI_HCD=y
21955 +# CONFIG_USB_SL811_HCD is not set
21956 +# CONFIG_USB_R8A66597_HCD is not set
21957 +
21958 +#
21959 +# USB Device Class drivers
21960 +#
21961 +# CONFIG_USB_ACM is not set
21962 +# CONFIG_USB_PRINTER is not set
21963 +
21964 +#
21965 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
21966 +#
21967 +
21968 +#
21969 +# may also be needed; see USB_STORAGE Help for more information
21970 +#
21971 +CONFIG_USB_STORAGE=y
21972 +# CONFIG_USB_STORAGE_DEBUG is not set
21973 +# CONFIG_USB_STORAGE_DATAFAB is not set
21974 +# CONFIG_USB_STORAGE_FREECOM is not set
21975 +# CONFIG_USB_STORAGE_ISD200 is not set
21976 +# CONFIG_USB_STORAGE_DPCM is not set
21977 +# CONFIG_USB_STORAGE_USBAT is not set
21978 +# CONFIG_USB_STORAGE_SDDR09 is not set
21979 +# CONFIG_USB_STORAGE_SDDR55 is not set
21980 +# CONFIG_USB_STORAGE_JUMPSHOT is not set
21981 +# CONFIG_USB_STORAGE_ALAUDA is not set
21982 +# CONFIG_USB_STORAGE_KARMA is not set
21983 +# CONFIG_USB_LIBUSUAL is not set
21984 +
21985 +#
21986 +# USB Imaging devices
21987 +#
21988 +# CONFIG_USB_MDC800 is not set
21989 +# CONFIG_USB_MICROTEK is not set
21990 +CONFIG_USB_MON=y
21991 +
21992 +#
21993 +# USB port drivers
21994 +#
21995 +# CONFIG_USB_SERIAL is not set
21996 +
21997 +#
21998 +# USB Miscellaneous drivers
21999 +#
22000 +# CONFIG_USB_EMI62 is not set
22001 +# CONFIG_USB_EMI26 is not set
22002 +# CONFIG_USB_ADUTUX is not set
22003 +# CONFIG_USB_AUERSWALD is not set
22004 +# CONFIG_USB_RIO500 is not set
22005 +# CONFIG_USB_LEGOTOWER is not set
22006 +# CONFIG_USB_LCD is not set
22007 +# CONFIG_USB_BERRY_CHARGE is not set
22008 +# CONFIG_USB_LED is not set
22009 +# CONFIG_USB_CYPRESS_CY7C63 is not set
22010 +# CONFIG_USB_CYTHERM is not set
22011 +# CONFIG_USB_PHIDGET is not set
22012 +# CONFIG_USB_IDMOUSE is not set
22013 +# CONFIG_USB_FTDI_ELAN is not set
22014 +# CONFIG_USB_APPLEDISPLAY is not set
22015 +# CONFIG_USB_SISUSBVGA is not set
22016 +# CONFIG_USB_LD is not set
22017 +# CONFIG_USB_TRANCEVIBRATOR is not set
22018 +# CONFIG_USB_IOWARRIOR is not set
22019 +# CONFIG_USB_TEST is not set
22020 +CONFIG_USB_GADGET=y
22021 +# CONFIG_USB_GADGET_DEBUG is not set
22022 +# CONFIG_USB_GADGET_DEBUG_FILES is not set
22023 +CONFIG_USB_GADGET_SELECTED=y
22024 +# CONFIG_USB_GADGET_AMD5536UDC is not set
22025 +# CONFIG_USB_GADGET_ATMEL_USBA is not set
22026 +# CONFIG_USB_GADGET_FSL_USB2 is not set
22027 +CONFIG_USB_GADGET_NET2280=y
22028 +CONFIG_USB_NET2280=y
22029 +# CONFIG_USB_GADGET_PXA2XX is not set
22030 +# CONFIG_USB_GADGET_M66592 is not set
22031 +# CONFIG_USB_GADGET_GOKU is not set
22032 +# CONFIG_USB_GADGET_LH7A40X is not set
22033 +# CONFIG_USB_GADGET_OMAP is not set
22034 +# CONFIG_USB_GADGET_S3C2410 is not set
22035 +# CONFIG_USB_GADGET_AT91 is not set
22036 +# CONFIG_USB_GADGET_DUMMY_HCD is not set
22037 +CONFIG_USB_GADGET_DUALSPEED=y
22038 +# CONFIG_USB_ZERO is not set
22039 +CONFIG_USB_ETH=y
22040 +CONFIG_USB_ETH_RNDIS=y
22041 +# CONFIG_USB_GADGETFS is not set
22042 +# CONFIG_USB_FILE_STORAGE is not set
22043 +# CONFIG_USB_G_SERIAL is not set
22044 +# CONFIG_USB_MIDI_GADGET is not set
22045 +# CONFIG_USB_G_PRINTER is not set
22046 +# CONFIG_MMC is not set
22047 +# CONFIG_MEMSTICK is not set
22048 +# CONFIG_NEW_LEDS is not set
22049 +# CONFIG_INFINIBAND is not set
22050 +# CONFIG_EDAC is not set
22051 +CONFIG_RTC_LIB=y
22052 +CONFIG_RTC_CLASS=y
22053 +CONFIG_RTC_HCTOSYS=y
22054 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
22055 +# CONFIG_RTC_DEBUG is not set
22056 +
22057 +#
22058 +# RTC interfaces
22059 +#
22060 +CONFIG_RTC_INTF_SYSFS=y
22061 +CONFIG_RTC_INTF_PROC=y
22062 +CONFIG_RTC_INTF_DEV=y
22063 +CONFIG_RTC_INTF_DEV_UIE_EMUL=y
22064 +# CONFIG_RTC_DRV_TEST is not set
22065 +
22066 +#
22067 +# I2C RTC drivers
22068 +#
22069 +CONFIG_RTC_DRV_DS1307=y
22070 +# CONFIG_RTC_DRV_DS1374 is not set
22071 +# CONFIG_RTC_DRV_DS1672 is not set
22072 +# CONFIG_RTC_DRV_MAX6900 is not set
22073 +# CONFIG_RTC_DRV_RS5C372 is not set
22074 +# CONFIG_RTC_DRV_ISL1208 is not set
22075 +# CONFIG_RTC_DRV_X1205 is not set
22076 +# CONFIG_RTC_DRV_PCF8563 is not set
22077 +# CONFIG_RTC_DRV_PCF8583 is not set
22078 +# CONFIG_RTC_DRV_M41T80 is not set
22079 +# CONFIG_RTC_DRV_S35390A is not set
22080 +
22081 +#
22082 +# SPI RTC drivers
22083 +#
22084 +# CONFIG_RTC_DRV_MAX6902 is not set
22085 +# CONFIG_RTC_DRV_R9701 is not set
22086 +# CONFIG_RTC_DRV_RS5C348 is not set
22087 +
22088 +#
22089 +# Platform RTC drivers
22090 +#
22091 +# CONFIG_RTC_DRV_CMOS is not set
22092 +# CONFIG_RTC_DRV_DS1511 is not set
22093 +# CONFIG_RTC_DRV_DS1553 is not set
22094 +# CONFIG_RTC_DRV_DS1742 is not set
22095 +# CONFIG_RTC_DRV_STK17TA8 is not set
22096 +# CONFIG_RTC_DRV_M48T86 is not set
22097 +# CONFIG_RTC_DRV_M48T59 is not set
22098 +# CONFIG_RTC_DRV_V3020 is not set
22099 +
22100 +#
22101 +# on-CPU RTC drivers
22102 +#
22103 +# CONFIG_DMADEVICES is not set
22104 +
22105 +#
22106 +# Userspace I/O
22107 +#
22108 +# CONFIG_UIO is not set
22109 +
22110 +#
22111 +# File systems
22112 +#
22113 +CONFIG_EXT2_FS=y
22114 +# CONFIG_EXT2_FS_XATTR is not set
22115 +# CONFIG_EXT2_FS_XIP is not set
22116 +CONFIG_EXT3_FS=y
22117 +CONFIG_EXT3_FS_XATTR=y
22118 +# CONFIG_EXT3_FS_POSIX_ACL is not set
22119 +# CONFIG_EXT3_FS_SECURITY is not set
22120 +# CONFIG_EXT4DEV_FS is not set
22121 +CONFIG_JBD=y
22122 +CONFIG_FS_MBCACHE=y
22123 +# CONFIG_REISERFS_FS is not set
22124 +# CONFIG_JFS_FS is not set
22125 +# CONFIG_FS_POSIX_ACL is not set
22126 +# CONFIG_XFS_FS is not set
22127 +# CONFIG_GFS2_FS is not set
22128 +# CONFIG_OCFS2_FS is not set
22129 +CONFIG_DNOTIFY=y
22130 +CONFIG_INOTIFY=y
22131 +CONFIG_INOTIFY_USER=y
22132 +# CONFIG_QUOTA is not set
22133 +# CONFIG_AUTOFS_FS is not set
22134 +# CONFIG_AUTOFS4_FS is not set
22135 +# CONFIG_FUSE_FS is not set
22136 +
22137 +#
22138 +# CD-ROM/DVD Filesystems
22139 +#
22140 +# CONFIG_ISO9660_FS is not set
22141 +# CONFIG_UDF_FS is not set
22142 +
22143 +#
22144 +# DOS/FAT/NT Filesystems
22145 +#
22146 +# CONFIG_MSDOS_FS is not set
22147 +# CONFIG_VFAT_FS is not set
22148 +# CONFIG_NTFS_FS is not set
22149 +
22150 +#
22151 +# Pseudo filesystems
22152 +#
22153 +CONFIG_PROC_FS=y
22154 +CONFIG_PROC_KCORE=y
22155 +CONFIG_PROC_SYSCTL=y
22156 +CONFIG_SYSFS=y
22157 +CONFIG_TMPFS=y
22158 +# CONFIG_TMPFS_POSIX_ACL is not set
22159 +# CONFIG_HUGETLB_PAGE is not set
22160 +# CONFIG_CONFIGFS_FS is not set
22161 +
22162 +#
22163 +# Miscellaneous filesystems
22164 +#
22165 +# CONFIG_ADFS_FS is not set
22166 +# CONFIG_AFFS_FS is not set
22167 +# CONFIG_HFS_FS is not set
22168 +# CONFIG_HFSPLUS_FS is not set
22169 +# CONFIG_BEFS_FS is not set
22170 +# CONFIG_BFS_FS is not set
22171 +# CONFIG_EFS_FS is not set
22172 +CONFIG_JFFS2_FS=y
22173 +CONFIG_JFFS2_FS_DEBUG=0
22174 +CONFIG_JFFS2_FS_WRITEBUFFER=y
22175 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
22176 +# CONFIG_JFFS2_SUMMARY is not set
22177 +# CONFIG_JFFS2_FS_XATTR is not set
22178 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
22179 +CONFIG_JFFS2_ZLIB=y
22180 +# CONFIG_JFFS2_LZO is not set
22181 +CONFIG_JFFS2_RTIME=y
22182 +# CONFIG_JFFS2_RUBIN is not set
22183 +# CONFIG_CRAMFS is not set
22184 +# CONFIG_VXFS_FS is not set
22185 +# CONFIG_MINIX_FS is not set
22186 +# CONFIG_HPFS_FS is not set
22187 +# CONFIG_QNX4FS_FS is not set
22188 +# CONFIG_ROMFS_FS is not set
22189 +# CONFIG_SYSV_FS is not set
22190 +# CONFIG_UFS_FS is not set
22191 +CONFIG_NETWORK_FILESYSTEMS=y
22192 +CONFIG_NFS_FS=y
22193 +CONFIG_NFS_V3=y
22194 +# CONFIG_NFS_V3_ACL is not set
22195 +CONFIG_NFS_V4=y
22196 +# CONFIG_NFS_DIRECTIO is not set
22197 +# CONFIG_NFSD is not set
22198 +CONFIG_ROOT_NFS=y
22199 +CONFIG_LOCKD=y
22200 +CONFIG_LOCKD_V4=y
22201 +CONFIG_NFS_COMMON=y
22202 +CONFIG_SUNRPC=y
22203 +CONFIG_SUNRPC_GSS=y
22204 +# CONFIG_SUNRPC_BIND34 is not set
22205 +CONFIG_RPCSEC_GSS_KRB5=y
22206 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
22207 +# CONFIG_SMB_FS is not set
22208 +# CONFIG_CIFS is not set
22209 +# CONFIG_NCP_FS is not set
22210 +# CONFIG_CODA_FS is not set
22211 +# CONFIG_AFS_FS is not set
22212 +
22213 +#
22214 +# Partition Types
22215 +#
22216 +CONFIG_PARTITION_ADVANCED=y
22217 +# CONFIG_ACORN_PARTITION is not set
22218 +# CONFIG_OSF_PARTITION is not set
22219 +# CONFIG_AMIGA_PARTITION is not set
22220 +# CONFIG_ATARI_PARTITION is not set
22221 +# CONFIG_MAC_PARTITION is not set
22222 +CONFIG_MSDOS_PARTITION=y
22223 +# CONFIG_BSD_DISKLABEL is not set
22224 +# CONFIG_MINIX_SUBPARTITION is not set
22225 +# CONFIG_SOLARIS_X86_PARTITION is not set
22226 +# CONFIG_UNIXWARE_DISKLABEL is not set
22227 +# CONFIG_LDM_PARTITION is not set
22228 +# CONFIG_SGI_PARTITION is not set
22229 +# CONFIG_ULTRIX_PARTITION is not set
22230 +# CONFIG_SUN_PARTITION is not set
22231 +# CONFIG_KARMA_PARTITION is not set
22232 +# CONFIG_EFI_PARTITION is not set
22233 +# CONFIG_SYSV68_PARTITION is not set
22234 +# CONFIG_NLS is not set
22235 +# CONFIG_DLM is not set
22236 +
22237 +#
22238 +# Library routines
22239 +#
22240 +CONFIG_BITREVERSE=y
22241 +# CONFIG_CRC_CCITT is not set
22242 +# CONFIG_CRC16 is not set
22243 +# CONFIG_CRC_ITU_T is not set
22244 +CONFIG_CRC32=y
22245 +# CONFIG_CRC7 is not set
22246 +# CONFIG_LIBCRC32C is not set
22247 +CONFIG_ZLIB_INFLATE=y
22248 +CONFIG_ZLIB_DEFLATE=y
22249 +CONFIG_PLIST=y
22250 +CONFIG_HAS_IOMEM=y
22251 +CONFIG_HAS_IOPORT=y
22252 +CONFIG_HAS_DMA=y
22253 +CONFIG_HAVE_LMB=y
22254 +
22255 +#
22256 +# Kernel hacking
22257 +#
22258 +# CONFIG_PRINTK_TIME is not set
22259 +CONFIG_ENABLE_WARN_DEPRECATED=y
22260 +CONFIG_ENABLE_MUST_CHECK=y
22261 +# CONFIG_MAGIC_SYSRQ is not set
22262 +# CONFIG_UNUSED_SYMBOLS is not set
22263 +# CONFIG_DEBUG_FS is not set
22264 +# CONFIG_HEADERS_CHECK is not set
22265 +CONFIG_DEBUG_KERNEL=y
22266 +# CONFIG_DEBUG_SHIRQ is not set
22267 +CONFIG_DETECT_SOFTLOCKUP=y
22268 +CONFIG_SCHED_DEBUG=y
22269 +# CONFIG_SCHEDSTATS is not set
22270 +# CONFIG_TIMER_STATS is not set
22271 +# CONFIG_SLUB_DEBUG_ON is not set
22272 +# CONFIG_SLUB_STATS is not set
22273 +# CONFIG_DEBUG_RT_MUTEXES is not set
22274 +# CONFIG_RT_MUTEX_TESTER is not set
22275 +# CONFIG_DEBUG_SPINLOCK is not set
22276 +# CONFIG_DEBUG_MUTEXES is not set
22277 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
22278 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
22279 +# CONFIG_DEBUG_KOBJECT is not set
22280 +# CONFIG_DEBUG_BUGVERBOSE is not set
22281 +# CONFIG_DEBUG_INFO is not set
22282 +# CONFIG_DEBUG_VM is not set
22283 +# CONFIG_DEBUG_LIST is not set
22284 +# CONFIG_DEBUG_SG is not set
22285 +# CONFIG_BOOT_PRINTK_DELAY is not set
22286 +# CONFIG_RCU_TORTURE_TEST is not set
22287 +# CONFIG_BACKTRACE_SELF_TEST is not set
22288 +# CONFIG_FAULT_INJECTION is not set
22289 +# CONFIG_SAMPLES is not set
22290 +# CONFIG_DEBUG_STACKOVERFLOW is not set
22291 +# CONFIG_DEBUG_STACK_USAGE is not set
22292 +# CONFIG_DEBUG_PAGEALLOC is not set
22293 +# CONFIG_DEBUGGER is not set
22294 +# CONFIG_BDI_SWITCH is not set
22295 +# CONFIG_PPC_EARLY_DEBUG is not set
22296 +
22297 +#
22298 +# Security options
22299 +#
22300 +# CONFIG_KEYS is not set
22301 +# CONFIG_SECURITY is not set
22302 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
22303 +CONFIG_CRYPTO=y
22304 +CONFIG_CRYPTO_ALGAPI=y
22305 +CONFIG_CRYPTO_BLKCIPHER=y
22306 +# CONFIG_CRYPTO_SEQIV is not set
22307 +CONFIG_CRYPTO_MANAGER=y
22308 +# CONFIG_CRYPTO_HMAC is not set
22309 +# CONFIG_CRYPTO_XCBC is not set
22310 +# CONFIG_CRYPTO_NULL is not set
22311 +# CONFIG_CRYPTO_MD4 is not set
22312 +CONFIG_CRYPTO_MD5=y
22313 +# CONFIG_CRYPTO_SHA1 is not set
22314 +# CONFIG_CRYPTO_SHA256 is not set
22315 +# CONFIG_CRYPTO_SHA512 is not set
22316 +# CONFIG_CRYPTO_WP512 is not set
22317 +# CONFIG_CRYPTO_TGR192 is not set
22318 +# CONFIG_CRYPTO_GF128MUL is not set
22319 +# CONFIG_CRYPTO_ECB is not set
22320 +CONFIG_CRYPTO_CBC=y
22321 +CONFIG_CRYPTO_PCBC=m
22322 +# CONFIG_CRYPTO_LRW is not set
22323 +# CONFIG_CRYPTO_XTS is not set
22324 +# CONFIG_CRYPTO_CTR is not set
22325 +# CONFIG_CRYPTO_GCM is not set
22326 +# CONFIG_CRYPTO_CCM is not set
22327 +# CONFIG_CRYPTO_CRYPTD is not set
22328 +CONFIG_CRYPTO_DES=y
22329 +# CONFIG_CRYPTO_FCRYPT is not set
22330 +# CONFIG_CRYPTO_BLOWFISH is not set
22331 +# CONFIG_CRYPTO_TWOFISH is not set
22332 +# CONFIG_CRYPTO_SERPENT is not set
22333 +# CONFIG_CRYPTO_AES is not set
22334 +# CONFIG_CRYPTO_CAST5 is not set
22335 +# CONFIG_CRYPTO_CAST6 is not set
22336 +# CONFIG_CRYPTO_TEA is not set
22337 +# CONFIG_CRYPTO_ARC4 is not set
22338 +# CONFIG_CRYPTO_KHAZAD is not set
22339 +# CONFIG_CRYPTO_ANUBIS is not set
22340 +# CONFIG_CRYPTO_SEED is not set
22341 +# CONFIG_CRYPTO_SALSA20 is not set
22342 +# CONFIG_CRYPTO_DEFLATE is not set
22343 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
22344 +# CONFIG_CRYPTO_CRC32C is not set
22345 +# CONFIG_CRYPTO_CAMELLIA is not set
22346 +# CONFIG_CRYPTO_TEST is not set
22347 +# CONFIG_CRYPTO_AUTHENC is not set
22348 +# CONFIG_CRYPTO_LZO is not set
22349 +CONFIG_CRYPTO_HW=y
22350 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
22351 +# CONFIG_PPC_CLOCK is not set
22352 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig
22353 ===================================================================
22354 --- /dev/null
22355 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig
22356 @@ -0,0 +1,1451 @@
22357 +#
22358 +# Automatically generated make config: don't edit
22359 +# Linux kernel version: 2.6.25-rc6
22360 +# Mon Mar 24 08:48:15 2008
22361 +#
22362 +# CONFIG_PPC64 is not set
22363 +
22364 +#
22365 +# Processor support
22366 +#
22367 +CONFIG_6xx=y
22368 +# CONFIG_PPC_85xx is not set
22369 +# CONFIG_PPC_8xx is not set
22370 +# CONFIG_40x is not set
22371 +# CONFIG_44x is not set
22372 +# CONFIG_E200 is not set
22373 +CONFIG_PPC_FPU=y
22374 +# CONFIG_FSL_EMB_PERFMON is not set
22375 +CONFIG_PPC_STD_MMU=y
22376 +CONFIG_PPC_STD_MMU_32=y
22377 +# CONFIG_PPC_MM_SLICES is not set
22378 +# CONFIG_SMP is not set
22379 +CONFIG_PPC32=y
22380 +CONFIG_WORD_SIZE=32
22381 +CONFIG_PPC_MERGE=y
22382 +CONFIG_MMU=y
22383 +CONFIG_GENERIC_CMOS_UPDATE=y
22384 +CONFIG_GENERIC_TIME=y
22385 +CONFIG_GENERIC_TIME_VSYSCALL=y
22386 +CONFIG_GENERIC_CLOCKEVENTS=y
22387 +CONFIG_GENERIC_HARDIRQS=y
22388 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
22389 +CONFIG_IRQ_PER_CPU=y
22390 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
22391 +CONFIG_ARCH_HAS_ILOG2_U32=y
22392 +CONFIG_GENERIC_HWEIGHT=y
22393 +CONFIG_GENERIC_CALIBRATE_DELAY=y
22394 +CONFIG_GENERIC_FIND_NEXT_BIT=y
22395 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
22396 +CONFIG_PPC=y
22397 +CONFIG_EARLY_PRINTK=y
22398 +CONFIG_GENERIC_NVRAM=y
22399 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
22400 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
22401 +CONFIG_PPC_OF=y
22402 +CONFIG_OF=y
22403 +CONFIG_PPC_UDBG_16550=y
22404 +# CONFIG_GENERIC_TBSYNC is not set
22405 +CONFIG_AUDIT_ARCH=y
22406 +CONFIG_GENERIC_BUG=y
22407 +CONFIG_DEFAULT_UIMAGE=y
22408 +# CONFIG_PPC_DCR_NATIVE is not set
22409 +# CONFIG_PPC_DCR_MMIO is not set
22410 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
22411 +
22412 +#
22413 +# General setup
22414 +#
22415 +CONFIG_EXPERIMENTAL=y
22416 +CONFIG_BROKEN_ON_SMP=y
22417 +CONFIG_INIT_ENV_ARG_LIMIT=32
22418 +CONFIG_LOCALVERSION=""
22419 +CONFIG_LOCALVERSION_AUTO=y
22420 +CONFIG_SWAP=y
22421 +CONFIG_SYSVIPC=y
22422 +CONFIG_SYSVIPC_SYSCTL=y
22423 +# CONFIG_POSIX_MQUEUE is not set
22424 +# CONFIG_BSD_PROCESS_ACCT is not set
22425 +# CONFIG_TASKSTATS is not set
22426 +# CONFIG_AUDIT is not set
22427 +# CONFIG_IKCONFIG is not set
22428 +CONFIG_LOG_BUF_SHIFT=14
22429 +# CONFIG_CGROUPS is not set
22430 +CONFIG_GROUP_SCHED=y
22431 +# CONFIG_FAIR_GROUP_SCHED is not set
22432 +# CONFIG_RT_GROUP_SCHED is not set
22433 +CONFIG_USER_SCHED=y
22434 +# CONFIG_CGROUP_SCHED is not set
22435 +CONFIG_SYSFS_DEPRECATED=y
22436 +CONFIG_SYSFS_DEPRECATED_V2=y
22437 +# CONFIG_RELAY is not set
22438 +# CONFIG_NAMESPACES is not set
22439 +CONFIG_BLK_DEV_INITRD=y
22440 +CONFIG_INITRAMFS_SOURCE=""
22441 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
22442 +CONFIG_SYSCTL=y
22443 +CONFIG_EMBEDDED=y
22444 +CONFIG_SYSCTL_SYSCALL=y
22445 +# CONFIG_KALLSYMS is not set
22446 +CONFIG_HOTPLUG=y
22447 +CONFIG_PRINTK=y
22448 +CONFIG_BUG=y
22449 +CONFIG_ELF_CORE=y
22450 +CONFIG_COMPAT_BRK=y
22451 +CONFIG_BASE_FULL=y
22452 +CONFIG_FUTEX=y
22453 +CONFIG_ANON_INODES=y
22454 +# CONFIG_EPOLL is not set
22455 +CONFIG_SIGNALFD=y
22456 +CONFIG_TIMERFD=y
22457 +CONFIG_EVENTFD=y
22458 +CONFIG_SHMEM=y
22459 +CONFIG_VM_EVENT_COUNTERS=y
22460 +CONFIG_SLUB_DEBUG=y
22461 +# CONFIG_SLAB is not set
22462 +CONFIG_SLUB=y
22463 +# CONFIG_SLOB is not set
22464 +# CONFIG_PROFILING is not set
22465 +# CONFIG_MARKERS is not set
22466 +CONFIG_HAVE_OPROFILE=y
22467 +CONFIG_HAVE_KPROBES=y
22468 +CONFIG_HAVE_KRETPROBES=y
22469 +CONFIG_PROC_PAGE_MONITOR=y
22470 +CONFIG_SLABINFO=y
22471 +CONFIG_RT_MUTEXES=y
22472 +# CONFIG_TINY_SHMEM is not set
22473 +CONFIG_BASE_SMALL=0
22474 +CONFIG_MODULES=y
22475 +CONFIG_MODULE_UNLOAD=y
22476 +# CONFIG_MODULE_FORCE_UNLOAD is not set
22477 +# CONFIG_MODVERSIONS is not set
22478 +# CONFIG_MODULE_SRCVERSION_ALL is not set
22479 +# CONFIG_KMOD is not set
22480 +CONFIG_BLOCK=y
22481 +# CONFIG_LBD is not set
22482 +# CONFIG_BLK_DEV_IO_TRACE is not set
22483 +# CONFIG_LSF is not set
22484 +# CONFIG_BLK_DEV_BSG is not set
22485 +
22486 +#
22487 +# IO Schedulers
22488 +#
22489 +CONFIG_IOSCHED_NOOP=y
22490 +CONFIG_IOSCHED_AS=y
22491 +CONFIG_IOSCHED_DEADLINE=y
22492 +CONFIG_IOSCHED_CFQ=y
22493 +CONFIG_DEFAULT_AS=y
22494 +# CONFIG_DEFAULT_DEADLINE is not set
22495 +# CONFIG_DEFAULT_CFQ is not set
22496 +# CONFIG_DEFAULT_NOOP is not set
22497 +CONFIG_DEFAULT_IOSCHED="anticipatory"
22498 +CONFIG_CLASSIC_RCU=y
22499 +
22500 +#
22501 +# Platform support
22502 +#
22503 +# CONFIG_PPC_MULTIPLATFORM is not set
22504 +# CONFIG_PPC_82xx is not set
22505 +CONFIG_PPC_83xx=y
22506 +# CONFIG_PPC_86xx is not set
22507 +# CONFIG_PPC_MPC512x is not set
22508 +# CONFIG_PPC_MPC5121 is not set
22509 +# CONFIG_PPC_CELL is not set
22510 +# CONFIG_PPC_CELL_NATIVE is not set
22511 +# CONFIG_PQ2ADS is not set
22512 +CONFIG_MPC83xx=y
22513 +CONFIG_MPC831x_RDB=y
22514 +# CONFIG_MPC832x_MDS is not set
22515 +# CONFIG_MPC832x_RDB is not set
22516 +# CONFIG_MPC834x_MDS is not set
22517 +# CONFIG_MPC834x_ITX is not set
22518 +# CONFIG_MPC836x_MDS is not set
22519 +# CONFIG_MPC837x_MDS is not set
22520 +# CONFIG_MPC837x_RDB is not set
22521 +# CONFIG_SBC834x is not set
22522 +CONFIG_PPC_MPC831x=y
22523 +CONFIG_IPIC=y
22524 +# CONFIG_MPIC is not set
22525 +# CONFIG_MPIC_WEIRD is not set
22526 +# CONFIG_PPC_I8259 is not set
22527 +# CONFIG_PPC_RTAS is not set
22528 +# CONFIG_MMIO_NVRAM is not set
22529 +# CONFIG_PPC_MPC106 is not set
22530 +# CONFIG_PPC_970_NAP is not set
22531 +# CONFIG_PPC_INDIRECT_IO is not set
22532 +# CONFIG_GENERIC_IOMAP is not set
22533 +# CONFIG_CPU_FREQ is not set
22534 +# CONFIG_FSL_ULI1575 is not set
22535 +
22536 +#
22537 +# Kernel options
22538 +#
22539 +# CONFIG_HIGHMEM is not set
22540 +CONFIG_TICK_ONESHOT=y
22541 +CONFIG_NO_HZ=y
22542 +CONFIG_HIGH_RES_TIMERS=y
22543 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
22544 +# CONFIG_HZ_100 is not set
22545 +CONFIG_HZ_250=y
22546 +# CONFIG_HZ_300 is not set
22547 +# CONFIG_HZ_1000 is not set
22548 +CONFIG_HZ=250
22549 +# CONFIG_SCHED_HRTICK is not set
22550 +CONFIG_PREEMPT_NONE=y
22551 +# CONFIG_PREEMPT_VOLUNTARY is not set
22552 +# CONFIG_PREEMPT is not set
22553 +CONFIG_BINFMT_ELF=y
22554 +# CONFIG_BINFMT_MISC is not set
22555 +# CONFIG_IOMMU_HELPER is not set
22556 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
22557 +CONFIG_ARCH_HAS_WALK_MEMORY=y
22558 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
22559 +CONFIG_ARCH_FLATMEM_ENABLE=y
22560 +CONFIG_ARCH_POPULATES_NODE_MAP=y
22561 +CONFIG_SELECT_MEMORY_MODEL=y
22562 +CONFIG_FLATMEM_MANUAL=y
22563 +# CONFIG_DISCONTIGMEM_MANUAL is not set
22564 +# CONFIG_SPARSEMEM_MANUAL is not set
22565 +CONFIG_FLATMEM=y
22566 +CONFIG_FLAT_NODE_MEM_MAP=y
22567 +# CONFIG_SPARSEMEM_STATIC is not set
22568 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
22569 +CONFIG_SPLIT_PTLOCK_CPUS=4
22570 +# CONFIG_RESOURCES_64BIT is not set
22571 +CONFIG_ZONE_DMA_FLAG=1
22572 +CONFIG_BOUNCE=y
22573 +CONFIG_VIRT_TO_BUS=y
22574 +CONFIG_PROC_DEVICETREE=y
22575 +# CONFIG_CMDLINE_BOOL is not set
22576 +# CONFIG_PM is not set
22577 +CONFIG_SECCOMP=y
22578 +CONFIG_ISA_DMA_API=y
22579 +
22580 +#
22581 +# Bus options
22582 +#
22583 +CONFIG_ZONE_DMA=y
22584 +CONFIG_GENERIC_ISA_DMA=y
22585 +CONFIG_PPC_INDIRECT_PCI=y
22586 +CONFIG_FSL_SOC=y
22587 +CONFIG_PCI=y
22588 +CONFIG_PCI_DOMAINS=y
22589 +CONFIG_PCI_SYSCALL=y
22590 +# CONFIG_PCIEPORTBUS is not set
22591 +CONFIG_ARCH_SUPPORTS_MSI=y
22592 +# CONFIG_PCI_MSI is not set
22593 +CONFIG_PCI_LEGACY=y
22594 +# CONFIG_PCI_DEBUG is not set
22595 +# CONFIG_PCCARD is not set
22596 +# CONFIG_HOTPLUG_PCI is not set
22597 +
22598 +#
22599 +# Advanced setup
22600 +#
22601 +# CONFIG_ADVANCED_OPTIONS is not set
22602 +
22603 +#
22604 +# Default settings for advanced configuration options are used
22605 +#
22606 +CONFIG_HIGHMEM_START=0xfe000000
22607 +CONFIG_LOWMEM_SIZE=0x30000000
22608 +CONFIG_KERNEL_START=0xc0000000
22609 +CONFIG_TASK_SIZE=0xc0000000
22610 +CONFIG_BOOT_LOAD=0x00800000
22611 +
22612 +#
22613 +# Networking
22614 +#
22615 +CONFIG_NET=y
22616 +
22617 +#
22618 +# Networking options
22619 +#
22620 +CONFIG_PACKET=y
22621 +# CONFIG_PACKET_MMAP is not set
22622 +CONFIG_UNIX=y
22623 +CONFIG_XFRM=y
22624 +# CONFIG_XFRM_USER is not set
22625 +# CONFIG_XFRM_SUB_POLICY is not set
22626 +# CONFIG_XFRM_MIGRATE is not set
22627 +# CONFIG_XFRM_STATISTICS is not set
22628 +# CONFIG_NET_KEY is not set
22629 +CONFIG_INET=y
22630 +CONFIG_IP_MULTICAST=y
22631 +# CONFIG_IP_ADVANCED_ROUTER is not set
22632 +CONFIG_IP_FIB_HASH=y
22633 +CONFIG_IP_PNP=y
22634 +CONFIG_IP_PNP_DHCP=y
22635 +CONFIG_IP_PNP_BOOTP=y
22636 +# CONFIG_IP_PNP_RARP is not set
22637 +# CONFIG_NET_IPIP is not set
22638 +# CONFIG_NET_IPGRE is not set
22639 +# CONFIG_IP_MROUTE is not set
22640 +# CONFIG_ARPD is not set
22641 +CONFIG_SYN_COOKIES=y
22642 +# CONFIG_INET_AH is not set
22643 +# CONFIG_INET_ESP is not set
22644 +# CONFIG_INET_IPCOMP is not set
22645 +# CONFIG_INET_XFRM_TUNNEL is not set
22646 +# CONFIG_INET_TUNNEL is not set
22647 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
22648 +CONFIG_INET_XFRM_MODE_TUNNEL=y
22649 +CONFIG_INET_XFRM_MODE_BEET=y
22650 +# CONFIG_INET_LRO is not set
22651 +CONFIG_INET_DIAG=y
22652 +CONFIG_INET_TCP_DIAG=y
22653 +# CONFIG_TCP_CONG_ADVANCED is not set
22654 +CONFIG_TCP_CONG_CUBIC=y
22655 +CONFIG_DEFAULT_TCP_CONG="cubic"
22656 +# CONFIG_TCP_MD5SIG is not set
22657 +# CONFIG_IPV6 is not set
22658 +# CONFIG_INET6_XFRM_TUNNEL is not set
22659 +# CONFIG_INET6_TUNNEL is not set
22660 +# CONFIG_NETWORK_SECMARK is not set
22661 +# CONFIG_NETFILTER is not set
22662 +# CONFIG_IP_DCCP is not set
22663 +# CONFIG_IP_SCTP is not set
22664 +# CONFIG_TIPC is not set
22665 +# CONFIG_ATM is not set
22666 +# CONFIG_BRIDGE is not set
22667 +# CONFIG_VLAN_8021Q is not set
22668 +# CONFIG_DECNET is not set
22669 +# CONFIG_LLC2 is not set
22670 +# CONFIG_IPX is not set
22671 +# CONFIG_ATALK is not set
22672 +# CONFIG_X25 is not set
22673 +# CONFIG_LAPB is not set
22674 +# CONFIG_ECONET is not set
22675 +# CONFIG_WAN_ROUTER is not set
22676 +# CONFIG_NET_SCHED is not set
22677 +
22678 +#
22679 +# Network testing
22680 +#
22681 +# CONFIG_NET_PKTGEN is not set
22682 +# CONFIG_HAMRADIO is not set
22683 +# CONFIG_CAN is not set
22684 +# CONFIG_IRDA is not set
22685 +# CONFIG_BT is not set
22686 +# CONFIG_AF_RXRPC is not set
22687 +
22688 +#
22689 +# Wireless
22690 +#
22691 +# CONFIG_CFG80211 is not set
22692 +# CONFIG_WIRELESS_EXT is not set
22693 +# CONFIG_MAC80211 is not set
22694 +# CONFIG_IEEE80211 is not set
22695 +# CONFIG_RFKILL is not set
22696 +# CONFIG_NET_9P is not set
22697 +
22698 +#
22699 +# Device Drivers
22700 +#
22701 +
22702 +#
22703 +# Generic Driver Options
22704 +#
22705 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
22706 +CONFIG_STANDALONE=y
22707 +CONFIG_PREVENT_FIRMWARE_BUILD=y
22708 +# CONFIG_FW_LOADER is not set
22709 +# CONFIG_DEBUG_DRIVER is not set
22710 +# CONFIG_DEBUG_DEVRES is not set
22711 +# CONFIG_SYS_HYPERVISOR is not set
22712 +# CONFIG_CONNECTOR is not set
22713 +CONFIG_MTD=y
22714 +# CONFIG_MTD_DEBUG is not set
22715 +# CONFIG_MTD_CONCAT is not set
22716 +CONFIG_MTD_PARTITIONS=y
22717 +# CONFIG_MTD_REDBOOT_PARTS is not set
22718 +# CONFIG_MTD_CMDLINE_PARTS is not set
22719 +# CONFIG_MTD_OF_PARTS is not set
22720 +
22721 +#
22722 +# User Modules And Translation Layers
22723 +#
22724 +CONFIG_MTD_CHAR=y
22725 +CONFIG_MTD_BLKDEVS=y
22726 +CONFIG_MTD_BLOCK=y
22727 +# CONFIG_FTL is not set
22728 +# CONFIG_NFTL is not set
22729 +# CONFIG_INFTL is not set
22730 +# CONFIG_RFD_FTL is not set
22731 +# CONFIG_SSFDC is not set
22732 +# CONFIG_MTD_OOPS is not set
22733 +
22734 +#
22735 +# RAM/ROM/Flash chip drivers
22736 +#
22737 +CONFIG_MTD_CFI=y
22738 +# CONFIG_MTD_JEDECPROBE is not set
22739 +CONFIG_MTD_GEN_PROBE=y
22740 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
22741 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
22742 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
22743 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
22744 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
22745 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
22746 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
22747 +CONFIG_MTD_CFI_I1=y
22748 +CONFIG_MTD_CFI_I2=y
22749 +# CONFIG_MTD_CFI_I4 is not set
22750 +# CONFIG_MTD_CFI_I8 is not set
22751 +# CONFIG_MTD_CFI_INTELEXT is not set
22752 +CONFIG_MTD_CFI_AMDSTD=y
22753 +# CONFIG_MTD_CFI_STAA is not set
22754 +CONFIG_MTD_CFI_UTIL=y
22755 +# CONFIG_MTD_RAM is not set
22756 +# CONFIG_MTD_ROM is not set
22757 +# CONFIG_MTD_ABSENT is not set
22758 +
22759 +#
22760 +# Mapping drivers for chip access
22761 +#
22762 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
22763 +# CONFIG_MTD_PHYSMAP is not set
22764 +CONFIG_MTD_PHYSMAP_OF=y
22765 +# CONFIG_MTD_INTEL_VR_NOR is not set
22766 +# CONFIG_MTD_PLATRAM is not set
22767 +
22768 +#
22769 +# Self-contained MTD device drivers
22770 +#
22771 +# CONFIG_MTD_PMC551 is not set
22772 +# CONFIG_MTD_DATAFLASH is not set
22773 +# CONFIG_MTD_M25P80 is not set
22774 +# CONFIG_MTD_SLRAM is not set
22775 +# CONFIG_MTD_PHRAM is not set
22776 +# CONFIG_MTD_MTDRAM is not set
22777 +# CONFIG_MTD_BLOCK2MTD is not set
22778 +
22779 +#
22780 +# Disk-On-Chip Device Drivers
22781 +#
22782 +# CONFIG_MTD_DOC2000 is not set
22783 +# CONFIG_MTD_DOC2001 is not set
22784 +# CONFIG_MTD_DOC2001PLUS is not set
22785 +CONFIG_MTD_NAND=y
22786 +CONFIG_MTD_NAND_VERIFY_WRITE=y
22787 +# CONFIG_MTD_NAND_ECC_SMC is not set
22788 +# CONFIG_MTD_NAND_MUSEUM_IDS is not set
22789 +CONFIG_MTD_NAND_IDS=y
22790 +# CONFIG_MTD_NAND_DISKONCHIP is not set
22791 +# CONFIG_MTD_NAND_CAFE is not set
22792 +# CONFIG_MTD_NAND_NANDSIM is not set
22793 +# CONFIG_MTD_NAND_PLATFORM is not set
22794 +# CONFIG_MTD_ALAUDA is not set
22795 +# CONFIG_MTD_NAND_FSL_ELBC is not set
22796 +# CONFIG_MTD_ONENAND is not set
22797 +
22798 +#
22799 +# UBI - Unsorted block images
22800 +#
22801 +# CONFIG_MTD_UBI is not set
22802 +CONFIG_OF_DEVICE=y
22803 +# CONFIG_PARPORT is not set
22804 +CONFIG_BLK_DEV=y
22805 +# CONFIG_BLK_DEV_FD is not set
22806 +# CONFIG_BLK_CPQ_DA is not set
22807 +# CONFIG_BLK_CPQ_CISS_DA is not set
22808 +# CONFIG_BLK_DEV_DAC960 is not set
22809 +# CONFIG_BLK_DEV_UMEM is not set
22810 +# CONFIG_BLK_DEV_COW_COMMON is not set
22811 +CONFIG_BLK_DEV_LOOP=y
22812 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
22813 +# CONFIG_BLK_DEV_NBD is not set
22814 +# CONFIG_BLK_DEV_SX8 is not set
22815 +# CONFIG_BLK_DEV_UB is not set
22816 +CONFIG_BLK_DEV_RAM=y
22817 +CONFIG_BLK_DEV_RAM_COUNT=16
22818 +CONFIG_BLK_DEV_RAM_SIZE=32768
22819 +# CONFIG_BLK_DEV_XIP is not set
22820 +# CONFIG_CDROM_PKTCDVD is not set
22821 +# CONFIG_ATA_OVER_ETH is not set
22822 +CONFIG_MISC_DEVICES=y
22823 +# CONFIG_PHANTOM is not set
22824 +# CONFIG_EEPROM_93CX6 is not set
22825 +# CONFIG_SGI_IOC4 is not set
22826 +# CONFIG_TIFM_CORE is not set
22827 +# CONFIG_ENCLOSURE_SERVICES is not set
22828 +CONFIG_HAVE_IDE=y
22829 +# CONFIG_IDE is not set
22830 +
22831 +#
22832 +# SCSI device support
22833 +#
22834 +# CONFIG_RAID_ATTRS is not set
22835 +CONFIG_SCSI=y
22836 +CONFIG_SCSI_DMA=y
22837 +# CONFIG_SCSI_TGT is not set
22838 +# CONFIG_SCSI_NETLINK is not set
22839 +CONFIG_SCSI_PROC_FS=y
22840 +
22841 +#
22842 +# SCSI support type (disk, tape, CD-ROM)
22843 +#
22844 +# CONFIG_BLK_DEV_SD is not set
22845 +# CONFIG_CHR_DEV_ST is not set
22846 +# CONFIG_CHR_DEV_OSST is not set
22847 +# CONFIG_BLK_DEV_SR is not set
22848 +CONFIG_CHR_DEV_SG=y
22849 +# CONFIG_CHR_DEV_SCH is not set
22850 +
22851 +#
22852 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
22853 +#
22854 +# CONFIG_SCSI_MULTI_LUN is not set
22855 +# CONFIG_SCSI_CONSTANTS is not set
22856 +# CONFIG_SCSI_LOGGING is not set
22857 +# CONFIG_SCSI_SCAN_ASYNC is not set
22858 +CONFIG_SCSI_WAIT_SCAN=m
22859 +
22860 +#
22861 +# SCSI Transports
22862 +#
22863 +CONFIG_SCSI_SPI_ATTRS=y
22864 +# CONFIG_SCSI_FC_ATTRS is not set
22865 +# CONFIG_SCSI_ISCSI_ATTRS is not set
22866 +# CONFIG_SCSI_SAS_LIBSAS is not set
22867 +# CONFIG_SCSI_SRP_ATTRS is not set
22868 +CONFIG_SCSI_LOWLEVEL=y
22869 +# CONFIG_ISCSI_TCP is not set
22870 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
22871 +# CONFIG_SCSI_3W_9XXX is not set
22872 +# CONFIG_SCSI_ACARD is not set
22873 +# CONFIG_SCSI_AACRAID is not set
22874 +# CONFIG_SCSI_AIC7XXX is not set
22875 +# CONFIG_SCSI_AIC7XXX_OLD is not set
22876 +# CONFIG_SCSI_AIC79XX is not set
22877 +# CONFIG_SCSI_AIC94XX is not set
22878 +# CONFIG_SCSI_DPT_I2O is not set
22879 +# CONFIG_SCSI_ADVANSYS is not set
22880 +# CONFIG_SCSI_ARCMSR is not set
22881 +# CONFIG_MEGARAID_NEWGEN is not set
22882 +# CONFIG_MEGARAID_LEGACY is not set
22883 +# CONFIG_MEGARAID_SAS is not set
22884 +# CONFIG_SCSI_HPTIOP is not set
22885 +# CONFIG_SCSI_BUSLOGIC is not set
22886 +# CONFIG_SCSI_DMX3191D is not set
22887 +# CONFIG_SCSI_EATA is not set
22888 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
22889 +# CONFIG_SCSI_GDTH is not set
22890 +# CONFIG_SCSI_IPS is not set
22891 +# CONFIG_SCSI_INITIO is not set
22892 +# CONFIG_SCSI_INIA100 is not set
22893 +# CONFIG_SCSI_MVSAS is not set
22894 +# CONFIG_SCSI_STEX is not set
22895 +# CONFIG_SCSI_SYM53C8XX_2 is not set
22896 +# CONFIG_SCSI_IPR is not set
22897 +# CONFIG_SCSI_QLOGIC_1280 is not set
22898 +# CONFIG_SCSI_QLA_FC is not set
22899 +# CONFIG_SCSI_QLA_ISCSI is not set
22900 +# CONFIG_SCSI_LPFC is not set
22901 +# CONFIG_SCSI_DC395x is not set
22902 +# CONFIG_SCSI_DC390T is not set
22903 +# CONFIG_SCSI_NSP32 is not set
22904 +# CONFIG_SCSI_DEBUG is not set
22905 +# CONFIG_SCSI_SRP is not set
22906 +CONFIG_ATA=y
22907 +# CONFIG_ATA_NONSTANDARD is not set
22908 +# CONFIG_SATA_AHCI is not set
22909 +# CONFIG_SATA_SVW is not set
22910 +# CONFIG_ATA_PIIX is not set
22911 +# CONFIG_SATA_MV is not set
22912 +# CONFIG_SATA_NV is not set
22913 +# CONFIG_PDC_ADMA is not set
22914 +# CONFIG_SATA_QSTOR is not set
22915 +# CONFIG_SATA_PROMISE is not set
22916 +# CONFIG_SATA_SX4 is not set
22917 +# CONFIG_SATA_SIL is not set
22918 +# CONFIG_SATA_SIL24 is not set
22919 +# CONFIG_SATA_SIS is not set
22920 +# CONFIG_SATA_ULI is not set
22921 +# CONFIG_SATA_VIA is not set
22922 +# CONFIG_SATA_VITESSE is not set
22923 +# CONFIG_SATA_INIC162X is not set
22924 +CONFIG_SATA_FSL=y
22925 +# CONFIG_PATA_ALI is not set
22926 +# CONFIG_PATA_AMD is not set
22927 +# CONFIG_PATA_ARTOP is not set
22928 +# CONFIG_PATA_ATIIXP is not set
22929 +# CONFIG_PATA_CMD640_PCI is not set
22930 +# CONFIG_PATA_CMD64X is not set
22931 +# CONFIG_PATA_CS5520 is not set
22932 +# CONFIG_PATA_CS5530 is not set
22933 +# CONFIG_PATA_CYPRESS is not set
22934 +# CONFIG_PATA_EFAR is not set
22935 +# CONFIG_ATA_GENERIC is not set
22936 +# CONFIG_PATA_HPT366 is not set
22937 +# CONFIG_PATA_HPT37X is not set
22938 +# CONFIG_PATA_HPT3X2N is not set
22939 +# CONFIG_PATA_HPT3X3 is not set
22940 +# CONFIG_PATA_IT821X is not set
22941 +# CONFIG_PATA_IT8213 is not set
22942 +# CONFIG_PATA_JMICRON is not set
22943 +# CONFIG_PATA_TRIFLEX is not set
22944 +# CONFIG_PATA_MARVELL is not set
22945 +# CONFIG_PATA_MPIIX is not set
22946 +# CONFIG_PATA_OLDPIIX is not set
22947 +# CONFIG_PATA_NETCELL is not set
22948 +# CONFIG_PATA_NINJA32 is not set
22949 +# CONFIG_PATA_NS87410 is not set
22950 +# CONFIG_PATA_NS87415 is not set
22951 +# CONFIG_PATA_OPTI is not set
22952 +# CONFIG_PATA_OPTIDMA is not set
22953 +# CONFIG_PATA_PDC_OLD is not set
22954 +# CONFIG_PATA_RADISYS is not set
22955 +# CONFIG_PATA_RZ1000 is not set
22956 +# CONFIG_PATA_SC1200 is not set
22957 +# CONFIG_PATA_SERVERWORKS is not set
22958 +# CONFIG_PATA_PDC2027X is not set
22959 +# CONFIG_PATA_SIL680 is not set
22960 +# CONFIG_PATA_SIS is not set
22961 +# CONFIG_PATA_VIA is not set
22962 +# CONFIG_PATA_WINBOND is not set
22963 +# CONFIG_PATA_PLATFORM is not set
22964 +CONFIG_MD=y
22965 +CONFIG_BLK_DEV_MD=y
22966 +CONFIG_MD_LINEAR=y
22967 +CONFIG_MD_RAID0=y
22968 +CONFIG_MD_RAID1=y
22969 +# CONFIG_MD_RAID10 is not set
22970 +# CONFIG_MD_RAID456 is not set
22971 +# CONFIG_MD_MULTIPATH is not set
22972 +# CONFIG_MD_FAULTY is not set
22973 +# CONFIG_BLK_DEV_DM is not set
22974 +# CONFIG_FUSION is not set
22975 +
22976 +#
22977 +# IEEE 1394 (FireWire) support
22978 +#
22979 +# CONFIG_FIREWIRE is not set
22980 +# CONFIG_IEEE1394 is not set
22981 +# CONFIG_I2O is not set
22982 +# CONFIG_MACINTOSH_DRIVERS is not set
22983 +CONFIG_NETDEVICES=y
22984 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
22985 +# CONFIG_DUMMY is not set
22986 +# CONFIG_BONDING is not set
22987 +# CONFIG_MACVLAN is not set
22988 +# CONFIG_EQUALIZER is not set
22989 +# CONFIG_TUN is not set
22990 +# CONFIG_VETH is not set
22991 +# CONFIG_ARCNET is not set
22992 +CONFIG_PHYLIB=y
22993 +
22994 +#
22995 +# MII PHY device drivers
22996 +#
22997 +# CONFIG_MARVELL_PHY is not set
22998 +# CONFIG_DAVICOM_PHY is not set
22999 +# CONFIG_QSEMI_PHY is not set
23000 +# CONFIG_LXT_PHY is not set
23001 +# CONFIG_CICADA_PHY is not set
23002 +# CONFIG_VITESSE_PHY is not set
23003 +# CONFIG_SMSC_PHY is not set
23004 +# CONFIG_BROADCOM_PHY is not set
23005 +# CONFIG_ICPLUS_PHY is not set
23006 +# CONFIG_REALTEK_PHY is not set
23007 +# CONFIG_FIXED_PHY is not set
23008 +# CONFIG_MDIO_BITBANG is not set
23009 +CONFIG_NET_ETHERNET=y
23010 +CONFIG_MII=y
23011 +# CONFIG_HAPPYMEAL is not set
23012 +# CONFIG_SUNGEM is not set
23013 +# CONFIG_CASSINI is not set
23014 +# CONFIG_NET_VENDOR_3COM is not set
23015 +# CONFIG_ENC28J60 is not set
23016 +# CONFIG_NET_TULIP is not set
23017 +# CONFIG_HP100 is not set
23018 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
23019 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
23020 +# CONFIG_IBM_NEW_EMAC_TAH is not set
23021 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
23022 +CONFIG_NET_PCI=y
23023 +# CONFIG_PCNET32 is not set
23024 +# CONFIG_AMD8111_ETH is not set
23025 +# CONFIG_ADAPTEC_STARFIRE is not set
23026 +# CONFIG_B44 is not set
23027 +# CONFIG_FORCEDETH is not set
23028 +# CONFIG_EEPRO100 is not set
23029 +CONFIG_E100=y
23030 +# CONFIG_FEALNX is not set
23031 +# CONFIG_NATSEMI is not set
23032 +# CONFIG_NE2K_PCI is not set
23033 +# CONFIG_8139CP is not set
23034 +# CONFIG_8139TOO is not set
23035 +# CONFIG_R6040 is not set
23036 +# CONFIG_SIS900 is not set
23037 +# CONFIG_EPIC100 is not set
23038 +# CONFIG_SUNDANCE is not set
23039 +# CONFIG_TLAN is not set
23040 +# CONFIG_VIA_RHINE is not set
23041 +# CONFIG_SC92031 is not set
23042 +CONFIG_NETDEV_1000=y
23043 +# CONFIG_ACENIC is not set
23044 +# CONFIG_DL2K is not set
23045 +# CONFIG_E1000 is not set
23046 +# CONFIG_E1000E is not set
23047 +# CONFIG_E1000E_ENABLED is not set
23048 +# CONFIG_IP1000 is not set
23049 +# CONFIG_IGB is not set
23050 +# CONFIG_NS83820 is not set
23051 +# CONFIG_HAMACHI is not set
23052 +# CONFIG_YELLOWFIN is not set
23053 +# CONFIG_R8169 is not set
23054 +# CONFIG_SIS190 is not set
23055 +# CONFIG_SKGE is not set
23056 +# CONFIG_SKY2 is not set
23057 +# CONFIG_SK98LIN is not set
23058 +# CONFIG_VIA_VELOCITY is not set
23059 +# CONFIG_TIGON3 is not set
23060 +# CONFIG_BNX2 is not set
23061 +CONFIG_GIANFAR=y
23062 +CONFIG_GFAR_NAPI=y
23063 +# CONFIG_QLA3XXX is not set
23064 +# CONFIG_ATL1 is not set
23065 +CONFIG_NETDEV_10000=y
23066 +# CONFIG_CHELSIO_T1 is not set
23067 +# CONFIG_CHELSIO_T3 is not set
23068 +# CONFIG_IXGBE is not set
23069 +# CONFIG_IXGB is not set
23070 +# CONFIG_S2IO is not set
23071 +# CONFIG_MYRI10GE is not set
23072 +# CONFIG_NETXEN_NIC is not set
23073 +# CONFIG_NIU is not set
23074 +# CONFIG_MLX4_CORE is not set
23075 +# CONFIG_TEHUTI is not set
23076 +# CONFIG_BNX2X is not set
23077 +# CONFIG_TR is not set
23078 +
23079 +#
23080 +# Wireless LAN
23081 +#
23082 +# CONFIG_WLAN_PRE80211 is not set
23083 +# CONFIG_WLAN_80211 is not set
23084 +
23085 +#
23086 +# USB Network Adapters
23087 +#
23088 +# CONFIG_USB_CATC is not set
23089 +# CONFIG_USB_KAWETH is not set
23090 +# CONFIG_USB_PEGASUS is not set
23091 +# CONFIG_USB_RTL8150 is not set
23092 +# CONFIG_USB_USBNET is not set
23093 +# CONFIG_WAN is not set
23094 +# CONFIG_FDDI is not set
23095 +# CONFIG_HIPPI is not set
23096 +# CONFIG_PPP is not set
23097 +# CONFIG_SLIP is not set
23098 +# CONFIG_NET_FC is not set
23099 +# CONFIG_NETCONSOLE is not set
23100 +# CONFIG_NETPOLL is not set
23101 +# CONFIG_NET_POLL_CONTROLLER is not set
23102 +# CONFIG_ISDN is not set
23103 +# CONFIG_PHONE is not set
23104 +
23105 +#
23106 +# Input device support
23107 +#
23108 +CONFIG_INPUT=y
23109 +# CONFIG_INPUT_FF_MEMLESS is not set
23110 +# CONFIG_INPUT_POLLDEV is not set
23111 +
23112 +#
23113 +# Userland interfaces
23114 +#
23115 +# CONFIG_INPUT_MOUSEDEV is not set
23116 +# CONFIG_INPUT_JOYDEV is not set
23117 +# CONFIG_INPUT_EVDEV is not set
23118 +# CONFIG_INPUT_EVBUG is not set
23119 +
23120 +#
23121 +# Input Device Drivers
23122 +#
23123 +# CONFIG_INPUT_KEYBOARD is not set
23124 +# CONFIG_INPUT_MOUSE is not set
23125 +# CONFIG_INPUT_JOYSTICK is not set
23126 +# CONFIG_INPUT_TABLET is not set
23127 +# CONFIG_INPUT_TOUCHSCREEN is not set
23128 +# CONFIG_INPUT_MISC is not set
23129 +
23130 +#
23131 +# Hardware I/O ports
23132 +#
23133 +# CONFIG_SERIO is not set
23134 +# CONFIG_GAMEPORT is not set
23135 +
23136 +#
23137 +# Character devices
23138 +#
23139 +# CONFIG_VT is not set
23140 +# CONFIG_SERIAL_NONSTANDARD is not set
23141 +# CONFIG_NOZOMI is not set
23142 +
23143 +#
23144 +# Serial drivers
23145 +#
23146 +CONFIG_SERIAL_8250=y
23147 +CONFIG_SERIAL_8250_CONSOLE=y
23148 +CONFIG_SERIAL_8250_PCI=y
23149 +CONFIG_SERIAL_8250_NR_UARTS=4
23150 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
23151 +# CONFIG_SERIAL_8250_EXTENDED is not set
23152 +
23153 +#
23154 +# Non-8250 serial port support
23155 +#
23156 +# CONFIG_SERIAL_UARTLITE is not set
23157 +CONFIG_SERIAL_CORE=y
23158 +CONFIG_SERIAL_CORE_CONSOLE=y
23159 +# CONFIG_SERIAL_JSM is not set
23160 +# CONFIG_SERIAL_OF_PLATFORM is not set
23161 +CONFIG_UNIX98_PTYS=y
23162 +CONFIG_LEGACY_PTYS=y
23163 +CONFIG_LEGACY_PTY_COUNT=256
23164 +# CONFIG_IPMI_HANDLER is not set
23165 +CONFIG_HW_RANDOM=y
23166 +# CONFIG_NVRAM is not set
23167 +# CONFIG_GEN_RTC is not set
23168 +# CONFIG_R3964 is not set
23169 +# CONFIG_APPLICOM is not set
23170 +# CONFIG_RAW_DRIVER is not set
23171 +# CONFIG_TCG_TPM is not set
23172 +CONFIG_DEVPORT=y
23173 +CONFIG_I2C=y
23174 +CONFIG_I2C_BOARDINFO=y
23175 +CONFIG_I2C_CHARDEV=y
23176 +
23177 +#
23178 +# I2C Algorithms
23179 +#
23180 +# CONFIG_I2C_ALGOBIT is not set
23181 +# CONFIG_I2C_ALGOPCF is not set
23182 +# CONFIG_I2C_ALGOPCA is not set
23183 +
23184 +#
23185 +# I2C Hardware Bus support
23186 +#
23187 +# CONFIG_I2C_ALI1535 is not set
23188 +# CONFIG_I2C_ALI1563 is not set
23189 +# CONFIG_I2C_ALI15X3 is not set
23190 +# CONFIG_I2C_AMD756 is not set
23191 +# CONFIG_I2C_AMD8111 is not set
23192 +# CONFIG_I2C_I801 is not set
23193 +# CONFIG_I2C_I810 is not set
23194 +# CONFIG_I2C_PIIX4 is not set
23195 +CONFIG_I2C_MPC=y
23196 +# CONFIG_I2C_NFORCE2 is not set
23197 +# CONFIG_I2C_OCORES is not set
23198 +# CONFIG_I2C_PARPORT_LIGHT is not set
23199 +# CONFIG_I2C_PROSAVAGE is not set
23200 +# CONFIG_I2C_SAVAGE4 is not set
23201 +# CONFIG_I2C_SIMTEC is not set
23202 +# CONFIG_I2C_SIS5595 is not set
23203 +# CONFIG_I2C_SIS630 is not set
23204 +# CONFIG_I2C_SIS96X is not set
23205 +# CONFIG_I2C_TAOS_EVM is not set
23206 +# CONFIG_I2C_STUB is not set
23207 +# CONFIG_I2C_TINY_USB is not set
23208 +# CONFIG_I2C_VIA is not set
23209 +# CONFIG_I2C_VIAPRO is not set
23210 +# CONFIG_I2C_VOODOO3 is not set
23211 +
23212 +#
23213 +# Miscellaneous I2C Chip support
23214 +#
23215 +# CONFIG_DS1682 is not set
23216 +# CONFIG_SENSORS_EEPROM is not set
23217 +# CONFIG_SENSORS_PCF8574 is not set
23218 +# CONFIG_PCF8575 is not set
23219 +# CONFIG_SENSORS_PCF8591 is not set
23220 +# CONFIG_TPS65010 is not set
23221 +# CONFIG_SENSORS_MAX6875 is not set
23222 +# CONFIG_SENSORS_TSL2550 is not set
23223 +# CONFIG_I2C_DEBUG_CORE is not set
23224 +# CONFIG_I2C_DEBUG_ALGO is not set
23225 +# CONFIG_I2C_DEBUG_BUS is not set
23226 +# CONFIG_I2C_DEBUG_CHIP is not set
23227 +
23228 +#
23229 +# SPI support
23230 +#
23231 +CONFIG_SPI=y
23232 +# CONFIG_SPI_DEBUG is not set
23233 +CONFIG_SPI_MASTER=y
23234 +
23235 +#
23236 +# SPI Master Controller Drivers
23237 +#
23238 +CONFIG_SPI_BITBANG=y
23239 +CONFIG_SPI_MPC83xx=y
23240 +
23241 +#
23242 +# SPI Protocol Masters
23243 +#
23244 +# CONFIG_SPI_AT25 is not set
23245 +# CONFIG_SPI_SPIDEV is not set
23246 +# CONFIG_SPI_TLE62X0 is not set
23247 +# CONFIG_W1 is not set
23248 +# CONFIG_POWER_SUPPLY is not set
23249 +CONFIG_HWMON=y
23250 +# CONFIG_HWMON_VID is not set
23251 +# CONFIG_SENSORS_AD7418 is not set
23252 +# CONFIG_SENSORS_ADM1021 is not set
23253 +# CONFIG_SENSORS_ADM1025 is not set
23254 +# CONFIG_SENSORS_ADM1026 is not set
23255 +# CONFIG_SENSORS_ADM1029 is not set
23256 +# CONFIG_SENSORS_ADM1031 is not set
23257 +# CONFIG_SENSORS_ADM9240 is not set
23258 +# CONFIG_SENSORS_ADT7470 is not set
23259 +# CONFIG_SENSORS_ADT7473 is not set
23260 +# CONFIG_SENSORS_ATXP1 is not set
23261 +# CONFIG_SENSORS_DS1621 is not set
23262 +# CONFIG_SENSORS_I5K_AMB is not set
23263 +# CONFIG_SENSORS_F71805F is not set
23264 +# CONFIG_SENSORS_F71882FG is not set
23265 +# CONFIG_SENSORS_F75375S is not set
23266 +# CONFIG_SENSORS_GL518SM is not set
23267 +# CONFIG_SENSORS_GL520SM is not set
23268 +# CONFIG_SENSORS_IT87 is not set
23269 +# CONFIG_SENSORS_LM63 is not set
23270 +# CONFIG_SENSORS_LM70 is not set
23271 +# CONFIG_SENSORS_LM75 is not set
23272 +# CONFIG_SENSORS_LM77 is not set
23273 +# CONFIG_SENSORS_LM78 is not set
23274 +# CONFIG_SENSORS_LM80 is not set
23275 +# CONFIG_SENSORS_LM83 is not set
23276 +# CONFIG_SENSORS_LM85 is not set
23277 +# CONFIG_SENSORS_LM87 is not set
23278 +# CONFIG_SENSORS_LM90 is not set
23279 +# CONFIG_SENSORS_LM92 is not set
23280 +# CONFIG_SENSORS_LM93 is not set
23281 +# CONFIG_SENSORS_MAX1619 is not set
23282 +# CONFIG_SENSORS_MAX6650 is not set
23283 +# CONFIG_SENSORS_PC87360 is not set
23284 +# CONFIG_SENSORS_PC87427 is not set
23285 +# CONFIG_SENSORS_SIS5595 is not set
23286 +# CONFIG_SENSORS_DME1737 is not set
23287 +# CONFIG_SENSORS_SMSC47M1 is not set
23288 +# CONFIG_SENSORS_SMSC47M192 is not set
23289 +# CONFIG_SENSORS_SMSC47B397 is not set
23290 +# CONFIG_SENSORS_ADS7828 is not set
23291 +# CONFIG_SENSORS_THMC50 is not set
23292 +# CONFIG_SENSORS_VIA686A is not set
23293 +# CONFIG_SENSORS_VT1211 is not set
23294 +# CONFIG_SENSORS_VT8231 is not set
23295 +# CONFIG_SENSORS_W83781D is not set
23296 +# CONFIG_SENSORS_W83791D is not set
23297 +# CONFIG_SENSORS_W83792D is not set
23298 +# CONFIG_SENSORS_W83793 is not set
23299 +# CONFIG_SENSORS_W83L785TS is not set
23300 +# CONFIG_SENSORS_W83L786NG is not set
23301 +# CONFIG_SENSORS_W83627HF is not set
23302 +# CONFIG_SENSORS_W83627EHF is not set
23303 +# CONFIG_HWMON_DEBUG_CHIP is not set
23304 +# CONFIG_THERMAL is not set
23305 +CONFIG_WATCHDOG=y
23306 +# CONFIG_WATCHDOG_NOWAYOUT is not set
23307 +
23308 +#
23309 +# Watchdog Device Drivers
23310 +#
23311 +# CONFIG_SOFT_WATCHDOG is not set
23312 +CONFIG_83xx_WDT=y
23313 +
23314 +#
23315 +# PCI-based Watchdog Cards
23316 +#
23317 +# CONFIG_PCIPCWATCHDOG is not set
23318 +# CONFIG_WDTPCI is not set
23319 +
23320 +#
23321 +# USB-based Watchdog Cards
23322 +#
23323 +# CONFIG_USBPCWATCHDOG is not set
23324 +
23325 +#
23326 +# Sonics Silicon Backplane
23327 +#
23328 +CONFIG_SSB_POSSIBLE=y
23329 +# CONFIG_SSB is not set
23330 +
23331 +#
23332 +# Multifunction device drivers
23333 +#
23334 +# CONFIG_MFD_SM501 is not set
23335 +
23336 +#
23337 +# Multimedia devices
23338 +#
23339 +# CONFIG_VIDEO_DEV is not set
23340 +# CONFIG_DVB_CORE is not set
23341 +CONFIG_DAB=y
23342 +# CONFIG_USB_DABUSB is not set
23343 +
23344 +#
23345 +# Graphics support
23346 +#
23347 +# CONFIG_AGP is not set
23348 +# CONFIG_DRM is not set
23349 +# CONFIG_VGASTATE is not set
23350 +CONFIG_VIDEO_OUTPUT_CONTROL=m
23351 +# CONFIG_FB is not set
23352 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
23353 +
23354 +#
23355 +# Display device support
23356 +#
23357 +# CONFIG_DISPLAY_SUPPORT is not set
23358 +
23359 +#
23360 +# Sound
23361 +#
23362 +# CONFIG_SOUND is not set
23363 +CONFIG_HID_SUPPORT=y
23364 +CONFIG_HID=y
23365 +# CONFIG_HID_DEBUG is not set
23366 +# CONFIG_HIDRAW is not set
23367 +
23368 +#
23369 +# USB Input Devices
23370 +#
23371 +# CONFIG_USB_HID is not set
23372 +
23373 +#
23374 +# USB HID Boot Protocol drivers
23375 +#
23376 +# CONFIG_USB_KBD is not set
23377 +# CONFIG_USB_MOUSE is not set
23378 +CONFIG_USB_SUPPORT=y
23379 +CONFIG_USB_ARCH_HAS_HCD=y
23380 +CONFIG_USB_ARCH_HAS_OHCI=y
23381 +CONFIG_USB_ARCH_HAS_EHCI=y
23382 +CONFIG_USB=y
23383 +# CONFIG_USB_DEBUG is not set
23384 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
23385 +
23386 +#
23387 +# Miscellaneous USB options
23388 +#
23389 +CONFIG_USB_DEVICEFS=y
23390 +CONFIG_USB_DEVICE_CLASS=y
23391 +# CONFIG_USB_DYNAMIC_MINORS is not set
23392 +# CONFIG_USB_OTG is not set
23393 +
23394 +#
23395 +# USB Host Controller Drivers
23396 +#
23397 +CONFIG_USB_EHCI_HCD=y
23398 +CONFIG_USB_EHCI_ROOT_HUB_TT=y
23399 +# CONFIG_USB_EHCI_TT_NEWSCHED is not set
23400 +CONFIG_USB_EHCI_FSL=y
23401 +CONFIG_USB_EHCI_HCD_PPC_OF=y
23402 +# CONFIG_USB_ISP116X_HCD is not set
23403 +CONFIG_USB_OHCI_HCD=y
23404 +CONFIG_USB_OHCI_HCD_PPC_OF=y
23405 +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
23406 +# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set
23407 +CONFIG_USB_OHCI_HCD_PCI=y
23408 +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
23409 +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
23410 +CONFIG_USB_OHCI_LITTLE_ENDIAN=y
23411 +CONFIG_USB_UHCI_HCD=y
23412 +# CONFIG_USB_SL811_HCD is not set
23413 +# CONFIG_USB_R8A66597_HCD is not set
23414 +
23415 +#
23416 +# USB Device Class drivers
23417 +#
23418 +# CONFIG_USB_ACM is not set
23419 +# CONFIG_USB_PRINTER is not set
23420 +
23421 +#
23422 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
23423 +#
23424 +
23425 +#
23426 +# may also be needed; see USB_STORAGE Help for more information
23427 +#
23428 +CONFIG_USB_STORAGE=y
23429 +# CONFIG_USB_STORAGE_DEBUG is not set
23430 +# CONFIG_USB_STORAGE_DATAFAB is not set
23431 +# CONFIG_USB_STORAGE_FREECOM is not set
23432 +# CONFIG_USB_STORAGE_ISD200 is not set
23433 +# CONFIG_USB_STORAGE_DPCM is not set
23434 +# CONFIG_USB_STORAGE_USBAT is not set
23435 +# CONFIG_USB_STORAGE_SDDR09 is not set
23436 +# CONFIG_USB_STORAGE_SDDR55 is not set
23437 +# CONFIG_USB_STORAGE_JUMPSHOT is not set
23438 +# CONFIG_USB_STORAGE_ALAUDA is not set
23439 +# CONFIG_USB_STORAGE_KARMA is not set
23440 +# CONFIG_USB_LIBUSUAL is not set
23441 +
23442 +#
23443 +# USB Imaging devices
23444 +#
23445 +# CONFIG_USB_MDC800 is not set
23446 +# CONFIG_USB_MICROTEK is not set
23447 +CONFIG_USB_MON=y
23448 +
23449 +#
23450 +# USB port drivers
23451 +#
23452 +# CONFIG_USB_SERIAL is not set
23453 +
23454 +#
23455 +# USB Miscellaneous drivers
23456 +#
23457 +# CONFIG_USB_EMI62 is not set
23458 +# CONFIG_USB_EMI26 is not set
23459 +# CONFIG_USB_ADUTUX is not set
23460 +# CONFIG_USB_AUERSWALD is not set
23461 +# CONFIG_USB_RIO500 is not set
23462 +# CONFIG_USB_LEGOTOWER is not set
23463 +# CONFIG_USB_LCD is not set
23464 +# CONFIG_USB_BERRY_CHARGE is not set
23465 +# CONFIG_USB_LED is not set
23466 +# CONFIG_USB_CYPRESS_CY7C63 is not set
23467 +# CONFIG_USB_CYTHERM is not set
23468 +# CONFIG_USB_PHIDGET is not set
23469 +# CONFIG_USB_IDMOUSE is not set
23470 +# CONFIG_USB_FTDI_ELAN is not set
23471 +# CONFIG_USB_APPLEDISPLAY is not set
23472 +# CONFIG_USB_SISUSBVGA is not set
23473 +# CONFIG_USB_LD is not set
23474 +# CONFIG_USB_TRANCEVIBRATOR is not set
23475 +# CONFIG_USB_IOWARRIOR is not set
23476 +# CONFIG_USB_TEST is not set
23477 +CONFIG_USB_GADGET=y
23478 +# CONFIG_USB_GADGET_DEBUG is not set
23479 +# CONFIG_USB_GADGET_DEBUG_FILES is not set
23480 +CONFIG_USB_GADGET_SELECTED=y
23481 +# CONFIG_USB_GADGET_AMD5536UDC is not set
23482 +# CONFIG_USB_GADGET_ATMEL_USBA is not set
23483 +# CONFIG_USB_GADGET_FSL_USB2 is not set
23484 +CONFIG_USB_GADGET_NET2280=y
23485 +CONFIG_USB_NET2280=y
23486 +# CONFIG_USB_GADGET_PXA2XX is not set
23487 +# CONFIG_USB_GADGET_M66592 is not set
23488 +# CONFIG_USB_GADGET_GOKU is not set
23489 +# CONFIG_USB_GADGET_LH7A40X is not set
23490 +# CONFIG_USB_GADGET_OMAP is not set
23491 +# CONFIG_USB_GADGET_S3C2410 is not set
23492 +# CONFIG_USB_GADGET_AT91 is not set
23493 +# CONFIG_USB_GADGET_DUMMY_HCD is not set
23494 +CONFIG_USB_GADGET_DUALSPEED=y
23495 +# CONFIG_USB_ZERO is not set
23496 +CONFIG_USB_ETH=y
23497 +CONFIG_USB_ETH_RNDIS=y
23498 +# CONFIG_USB_GADGETFS is not set
23499 +# CONFIG_USB_FILE_STORAGE is not set
23500 +# CONFIG_USB_G_SERIAL is not set
23501 +# CONFIG_USB_MIDI_GADGET is not set
23502 +# CONFIG_USB_G_PRINTER is not set
23503 +# CONFIG_MMC is not set
23504 +# CONFIG_MEMSTICK is not set
23505 +# CONFIG_NEW_LEDS is not set
23506 +# CONFIG_INFINIBAND is not set
23507 +# CONFIG_EDAC is not set
23508 +CONFIG_RTC_LIB=y
23509 +CONFIG_RTC_CLASS=y
23510 +CONFIG_RTC_HCTOSYS=y
23511 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
23512 +# CONFIG_RTC_DEBUG is not set
23513 +
23514 +#
23515 +# RTC interfaces
23516 +#
23517 +CONFIG_RTC_INTF_SYSFS=y
23518 +CONFIG_RTC_INTF_PROC=y
23519 +CONFIG_RTC_INTF_DEV=y
23520 +CONFIG_RTC_INTF_DEV_UIE_EMUL=y
23521 +# CONFIG_RTC_DRV_TEST is not set
23522 +
23523 +#
23524 +# I2C RTC drivers
23525 +#
23526 +CONFIG_RTC_DRV_DS1307=y
23527 +# CONFIG_RTC_DRV_DS1374 is not set
23528 +# CONFIG_RTC_DRV_DS1672 is not set
23529 +# CONFIG_RTC_DRV_MAX6900 is not set
23530 +# CONFIG_RTC_DRV_RS5C372 is not set
23531 +# CONFIG_RTC_DRV_ISL1208 is not set
23532 +# CONFIG_RTC_DRV_X1205 is not set
23533 +# CONFIG_RTC_DRV_PCF8563 is not set
23534 +# CONFIG_RTC_DRV_PCF8583 is not set
23535 +# CONFIG_RTC_DRV_M41T80 is not set
23536 +# CONFIG_RTC_DRV_S35390A is not set
23537 +
23538 +#
23539 +# SPI RTC drivers
23540 +#
23541 +# CONFIG_RTC_DRV_MAX6902 is not set
23542 +# CONFIG_RTC_DRV_R9701 is not set
23543 +# CONFIG_RTC_DRV_RS5C348 is not set
23544 +
23545 +#
23546 +# Platform RTC drivers
23547 +#
23548 +# CONFIG_RTC_DRV_CMOS is not set
23549 +# CONFIG_RTC_DRV_DS1511 is not set
23550 +# CONFIG_RTC_DRV_DS1553 is not set
23551 +# CONFIG_RTC_DRV_DS1742 is not set
23552 +# CONFIG_RTC_DRV_STK17TA8 is not set
23553 +# CONFIG_RTC_DRV_M48T86 is not set
23554 +# CONFIG_RTC_DRV_M48T59 is not set
23555 +# CONFIG_RTC_DRV_V3020 is not set
23556 +
23557 +#
23558 +# on-CPU RTC drivers
23559 +#
23560 +# CONFIG_DMADEVICES is not set
23561 +
23562 +#
23563 +# Userspace I/O
23564 +#
23565 +# CONFIG_UIO is not set
23566 +
23567 +#
23568 +# File systems
23569 +#
23570 +CONFIG_EXT2_FS=y
23571 +# CONFIG_EXT2_FS_XATTR is not set
23572 +# CONFIG_EXT2_FS_XIP is not set
23573 +CONFIG_EXT3_FS=y
23574 +CONFIG_EXT3_FS_XATTR=y
23575 +# CONFIG_EXT3_FS_POSIX_ACL is not set
23576 +# CONFIG_EXT3_FS_SECURITY is not set
23577 +# CONFIG_EXT4DEV_FS is not set
23578 +CONFIG_JBD=y
23579 +CONFIG_FS_MBCACHE=y
23580 +# CONFIG_REISERFS_FS is not set
23581 +# CONFIG_JFS_FS is not set
23582 +# CONFIG_FS_POSIX_ACL is not set
23583 +# CONFIG_XFS_FS is not set
23584 +# CONFIG_GFS2_FS is not set
23585 +# CONFIG_OCFS2_FS is not set
23586 +CONFIG_DNOTIFY=y
23587 +CONFIG_INOTIFY=y
23588 +CONFIG_INOTIFY_USER=y
23589 +# CONFIG_QUOTA is not set
23590 +# CONFIG_AUTOFS_FS is not set
23591 +# CONFIG_AUTOFS4_FS is not set
23592 +# CONFIG_FUSE_FS is not set
23593 +
23594 +#
23595 +# CD-ROM/DVD Filesystems
23596 +#
23597 +# CONFIG_ISO9660_FS is not set
23598 +# CONFIG_UDF_FS is not set
23599 +
23600 +#
23601 +# DOS/FAT/NT Filesystems
23602 +#
23603 +# CONFIG_MSDOS_FS is not set
23604 +# CONFIG_VFAT_FS is not set
23605 +# CONFIG_NTFS_FS is not set
23606 +
23607 +#
23608 +# Pseudo filesystems
23609 +#
23610 +CONFIG_PROC_FS=y
23611 +CONFIG_PROC_KCORE=y
23612 +CONFIG_PROC_SYSCTL=y
23613 +CONFIG_SYSFS=y
23614 +CONFIG_TMPFS=y
23615 +# CONFIG_TMPFS_POSIX_ACL is not set
23616 +# CONFIG_HUGETLB_PAGE is not set
23617 +# CONFIG_CONFIGFS_FS is not set
23618 +
23619 +#
23620 +# Miscellaneous filesystems
23621 +#
23622 +# CONFIG_ADFS_FS is not set
23623 +# CONFIG_AFFS_FS is not set
23624 +# CONFIG_HFS_FS is not set
23625 +# CONFIG_HFSPLUS_FS is not set
23626 +# CONFIG_BEFS_FS is not set
23627 +# CONFIG_BFS_FS is not set
23628 +# CONFIG_EFS_FS is not set
23629 +CONFIG_JFFS2_FS=y
23630 +CONFIG_JFFS2_FS_DEBUG=0
23631 +CONFIG_JFFS2_FS_WRITEBUFFER=y
23632 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
23633 +# CONFIG_JFFS2_SUMMARY is not set
23634 +# CONFIG_JFFS2_FS_XATTR is not set
23635 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
23636 +CONFIG_JFFS2_ZLIB=y
23637 +# CONFIG_JFFS2_LZO is not set
23638 +CONFIG_JFFS2_RTIME=y
23639 +# CONFIG_JFFS2_RUBIN is not set
23640 +# CONFIG_CRAMFS is not set
23641 +# CONFIG_VXFS_FS is not set
23642 +# CONFIG_MINIX_FS is not set
23643 +# CONFIG_HPFS_FS is not set
23644 +# CONFIG_QNX4FS_FS is not set
23645 +# CONFIG_ROMFS_FS is not set
23646 +# CONFIG_SYSV_FS is not set
23647 +# CONFIG_UFS_FS is not set
23648 +CONFIG_NETWORK_FILESYSTEMS=y
23649 +CONFIG_NFS_FS=y
23650 +CONFIG_NFS_V3=y
23651 +# CONFIG_NFS_V3_ACL is not set
23652 +CONFIG_NFS_V4=y
23653 +# CONFIG_NFS_DIRECTIO is not set
23654 +# CONFIG_NFSD is not set
23655 +CONFIG_ROOT_NFS=y
23656 +CONFIG_LOCKD=y
23657 +CONFIG_LOCKD_V4=y
23658 +CONFIG_NFS_COMMON=y
23659 +CONFIG_SUNRPC=y
23660 +CONFIG_SUNRPC_GSS=y
23661 +# CONFIG_SUNRPC_BIND34 is not set
23662 +CONFIG_RPCSEC_GSS_KRB5=y
23663 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
23664 +# CONFIG_SMB_FS is not set
23665 +# CONFIG_CIFS is not set
23666 +# CONFIG_NCP_FS is not set
23667 +# CONFIG_CODA_FS is not set
23668 +# CONFIG_AFS_FS is not set
23669 +
23670 +#
23671 +# Partition Types
23672 +#
23673 +CONFIG_PARTITION_ADVANCED=y
23674 +# CONFIG_ACORN_PARTITION is not set
23675 +# CONFIG_OSF_PARTITION is not set
23676 +# CONFIG_AMIGA_PARTITION is not set
23677 +# CONFIG_ATARI_PARTITION is not set
23678 +# CONFIG_MAC_PARTITION is not set
23679 +CONFIG_MSDOS_PARTITION=y
23680 +# CONFIG_BSD_DISKLABEL is not set
23681 +# CONFIG_MINIX_SUBPARTITION is not set
23682 +# CONFIG_SOLARIS_X86_PARTITION is not set
23683 +# CONFIG_UNIXWARE_DISKLABEL is not set
23684 +# CONFIG_LDM_PARTITION is not set
23685 +# CONFIG_SGI_PARTITION is not set
23686 +# CONFIG_ULTRIX_PARTITION is not set
23687 +# CONFIG_SUN_PARTITION is not set
23688 +# CONFIG_KARMA_PARTITION is not set
23689 +# CONFIG_EFI_PARTITION is not set
23690 +# CONFIG_SYSV68_PARTITION is not set
23691 +# CONFIG_NLS is not set
23692 +# CONFIG_DLM is not set
23693 +
23694 +#
23695 +# Library routines
23696 +#
23697 +CONFIG_BITREVERSE=y
23698 +# CONFIG_CRC_CCITT is not set
23699 +# CONFIG_CRC16 is not set
23700 +# CONFIG_CRC_ITU_T is not set
23701 +CONFIG_CRC32=y
23702 +# CONFIG_CRC7 is not set
23703 +# CONFIG_LIBCRC32C is not set
23704 +CONFIG_ZLIB_INFLATE=y
23705 +CONFIG_ZLIB_DEFLATE=y
23706 +CONFIG_PLIST=y
23707 +CONFIG_HAS_IOMEM=y
23708 +CONFIG_HAS_IOPORT=y
23709 +CONFIG_HAS_DMA=y
23710 +
23711 +#
23712 +# Kernel hacking
23713 +#
23714 +# CONFIG_PRINTK_TIME is not set
23715 +CONFIG_ENABLE_WARN_DEPRECATED=y
23716 +CONFIG_ENABLE_MUST_CHECK=y
23717 +# CONFIG_MAGIC_SYSRQ is not set
23718 +# CONFIG_UNUSED_SYMBOLS is not set
23719 +# CONFIG_DEBUG_FS is not set
23720 +# CONFIG_HEADERS_CHECK is not set
23721 +CONFIG_DEBUG_KERNEL=y
23722 +# CONFIG_DEBUG_SHIRQ is not set
23723 +CONFIG_DETECT_SOFTLOCKUP=y
23724 +CONFIG_SCHED_DEBUG=y
23725 +# CONFIG_SCHEDSTATS is not set
23726 +# CONFIG_TIMER_STATS is not set
23727 +# CONFIG_SLUB_DEBUG_ON is not set
23728 +# CONFIG_SLUB_STATS is not set
23729 +# CONFIG_DEBUG_RT_MUTEXES is not set
23730 +# CONFIG_RT_MUTEX_TESTER is not set
23731 +# CONFIG_DEBUG_SPINLOCK is not set
23732 +# CONFIG_DEBUG_MUTEXES is not set
23733 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
23734 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
23735 +# CONFIG_DEBUG_KOBJECT is not set
23736 +# CONFIG_DEBUG_BUGVERBOSE is not set
23737 +# CONFIG_DEBUG_INFO is not set
23738 +# CONFIG_DEBUG_VM is not set
23739 +# CONFIG_DEBUG_LIST is not set
23740 +# CONFIG_DEBUG_SG is not set
23741 +# CONFIG_BOOT_PRINTK_DELAY is not set
23742 +# CONFIG_RCU_TORTURE_TEST is not set
23743 +# CONFIG_BACKTRACE_SELF_TEST is not set
23744 +# CONFIG_FAULT_INJECTION is not set
23745 +# CONFIG_SAMPLES is not set
23746 +# CONFIG_DEBUG_STACKOVERFLOW is not set
23747 +# CONFIG_DEBUG_STACK_USAGE is not set
23748 +# CONFIG_DEBUG_PAGEALLOC is not set
23749 +# CONFIG_DEBUGGER is not set
23750 +# CONFIG_BDI_SWITCH is not set
23751 +# CONFIG_PPC_EARLY_DEBUG is not set
23752 +
23753 +#
23754 +# Security options
23755 +#
23756 +# CONFIG_KEYS is not set
23757 +# CONFIG_SECURITY is not set
23758 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
23759 +CONFIG_CRYPTO=y
23760 +CONFIG_CRYPTO_ALGAPI=y
23761 +CONFIG_CRYPTO_BLKCIPHER=y
23762 +# CONFIG_CRYPTO_SEQIV is not set
23763 +CONFIG_CRYPTO_MANAGER=y
23764 +# CONFIG_CRYPTO_HMAC is not set
23765 +# CONFIG_CRYPTO_XCBC is not set
23766 +# CONFIG_CRYPTO_NULL is not set
23767 +# CONFIG_CRYPTO_MD4 is not set
23768 +CONFIG_CRYPTO_MD5=y
23769 +# CONFIG_CRYPTO_SHA1 is not set
23770 +# CONFIG_CRYPTO_SHA256 is not set
23771 +# CONFIG_CRYPTO_SHA512 is not set
23772 +# CONFIG_CRYPTO_WP512 is not set
23773 +# CONFIG_CRYPTO_TGR192 is not set
23774 +# CONFIG_CRYPTO_GF128MUL is not set
23775 +# CONFIG_CRYPTO_ECB is not set
23776 +CONFIG_CRYPTO_CBC=y
23777 +CONFIG_CRYPTO_PCBC=m
23778 +# CONFIG_CRYPTO_LRW is not set
23779 +# CONFIG_CRYPTO_XTS is not set
23780 +# CONFIG_CRYPTO_CTR is not set
23781 +# CONFIG_CRYPTO_GCM is not set
23782 +# CONFIG_CRYPTO_CCM is not set
23783 +# CONFIG_CRYPTO_CRYPTD is not set
23784 +CONFIG_CRYPTO_DES=y
23785 +# CONFIG_CRYPTO_FCRYPT is not set
23786 +# CONFIG_CRYPTO_BLOWFISH is not set
23787 +# CONFIG_CRYPTO_TWOFISH is not set
23788 +# CONFIG_CRYPTO_SERPENT is not set
23789 +# CONFIG_CRYPTO_AES is not set
23790 +# CONFIG_CRYPTO_CAST5 is not set
23791 +# CONFIG_CRYPTO_CAST6 is not set
23792 +# CONFIG_CRYPTO_TEA is not set
23793 +# CONFIG_CRYPTO_ARC4 is not set
23794 +# CONFIG_CRYPTO_KHAZAD is not set
23795 +# CONFIG_CRYPTO_ANUBIS is not set
23796 +# CONFIG_CRYPTO_SEED is not set
23797 +# CONFIG_CRYPTO_SALSA20 is not set
23798 +# CONFIG_CRYPTO_DEFLATE is not set
23799 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
23800 +# CONFIG_CRYPTO_CRC32C is not set
23801 +# CONFIG_CRYPTO_CAMELLIA is not set
23802 +# CONFIG_CRYPTO_TEST is not set
23803 +# CONFIG_CRYPTO_AUTHENC is not set
23804 +# CONFIG_CRYPTO_LZO is not set
23805 +CONFIG_CRYPTO_HW=y
23806 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
23807 +# CONFIG_PPC_CLOCK is not set
23808 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc832x_mds_defconfig
23809 ===================================================================
23810 --- /dev/null
23811 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc832x_mds_defconfig
23812 @@ -0,0 +1,1081 @@
23813 +#
23814 +# Automatically generated make config: don't edit
23815 +# Linux kernel version: 2.6.25-rc7
23816 +# Mon Mar 31 11:36:51 2008
23817 +#
23818 +# CONFIG_PPC64 is not set
23819 +
23820 +#
23821 +# Processor support
23822 +#
23823 +CONFIG_6xx=y
23824 +# CONFIG_PPC_85xx is not set
23825 +# CONFIG_PPC_8xx is not set
23826 +# CONFIG_40x is not set
23827 +# CONFIG_44x is not set
23828 +# CONFIG_E200 is not set
23829 +CONFIG_PPC_FPU=y
23830 +# CONFIG_FSL_EMB_PERFMON is not set
23831 +CONFIG_PPC_STD_MMU=y
23832 +CONFIG_PPC_STD_MMU_32=y
23833 +# CONFIG_PPC_MM_SLICES is not set
23834 +# CONFIG_SMP is not set
23835 +CONFIG_PPC32=y
23836 +CONFIG_WORD_SIZE=32
23837 +CONFIG_PPC_MERGE=y
23838 +CONFIG_MMU=y
23839 +CONFIG_GENERIC_CMOS_UPDATE=y
23840 +CONFIG_GENERIC_TIME=y
23841 +CONFIG_GENERIC_TIME_VSYSCALL=y
23842 +CONFIG_GENERIC_CLOCKEVENTS=y
23843 +CONFIG_GENERIC_HARDIRQS=y
23844 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
23845 +CONFIG_IRQ_PER_CPU=y
23846 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
23847 +CONFIG_ARCH_HAS_ILOG2_U32=y
23848 +CONFIG_GENERIC_HWEIGHT=y
23849 +CONFIG_GENERIC_CALIBRATE_DELAY=y
23850 +CONFIG_GENERIC_FIND_NEXT_BIT=y
23851 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
23852 +CONFIG_PPC=y
23853 +CONFIG_EARLY_PRINTK=y
23854 +CONFIG_GENERIC_NVRAM=y
23855 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
23856 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
23857 +CONFIG_PPC_OF=y
23858 +CONFIG_OF=y
23859 +CONFIG_PPC_UDBG_16550=y
23860 +# CONFIG_GENERIC_TBSYNC is not set
23861 +CONFIG_AUDIT_ARCH=y
23862 +CONFIG_GENERIC_BUG=y
23863 +CONFIG_DEFAULT_UIMAGE=y
23864 +# CONFIG_PPC_DCR_NATIVE is not set
23865 +# CONFIG_PPC_DCR_MMIO is not set
23866 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
23867 +
23868 +#
23869 +# General setup
23870 +#
23871 +CONFIG_EXPERIMENTAL=y
23872 +CONFIG_BROKEN_ON_SMP=y
23873 +CONFIG_INIT_ENV_ARG_LIMIT=32
23874 +CONFIG_LOCALVERSION=""
23875 +CONFIG_LOCALVERSION_AUTO=y
23876 +CONFIG_SWAP=y
23877 +CONFIG_SYSVIPC=y
23878 +CONFIG_SYSVIPC_SYSCTL=y
23879 +# CONFIG_POSIX_MQUEUE is not set
23880 +# CONFIG_BSD_PROCESS_ACCT is not set
23881 +# CONFIG_TASKSTATS is not set
23882 +# CONFIG_AUDIT is not set
23883 +# CONFIG_IKCONFIG is not set
23884 +CONFIG_LOG_BUF_SHIFT=14
23885 +# CONFIG_CGROUPS is not set
23886 +CONFIG_GROUP_SCHED=y
23887 +# CONFIG_FAIR_GROUP_SCHED is not set
23888 +# CONFIG_RT_GROUP_SCHED is not set
23889 +CONFIG_USER_SCHED=y
23890 +# CONFIG_CGROUP_SCHED is not set
23891 +CONFIG_SYSFS_DEPRECATED=y
23892 +CONFIG_SYSFS_DEPRECATED_V2=y
23893 +# CONFIG_RELAY is not set
23894 +# CONFIG_NAMESPACES is not set
23895 +CONFIG_BLK_DEV_INITRD=y
23896 +CONFIG_INITRAMFS_SOURCE=""
23897 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
23898 +CONFIG_SYSCTL=y
23899 +CONFIG_EMBEDDED=y
23900 +CONFIG_SYSCTL_SYSCALL=y
23901 +# CONFIG_KALLSYMS is not set
23902 +CONFIG_HOTPLUG=y
23903 +CONFIG_PRINTK=y
23904 +CONFIG_BUG=y
23905 +CONFIG_ELF_CORE=y
23906 +CONFIG_COMPAT_BRK=y
23907 +CONFIG_BASE_FULL=y
23908 +CONFIG_FUTEX=y
23909 +CONFIG_ANON_INODES=y
23910 +# CONFIG_EPOLL is not set
23911 +CONFIG_SIGNALFD=y
23912 +CONFIG_TIMERFD=y
23913 +CONFIG_EVENTFD=y
23914 +CONFIG_SHMEM=y
23915 +CONFIG_VM_EVENT_COUNTERS=y
23916 +CONFIG_SLUB_DEBUG=y
23917 +# CONFIG_SLAB is not set
23918 +CONFIG_SLUB=y
23919 +# CONFIG_SLOB is not set
23920 +# CONFIG_PROFILING is not set
23921 +# CONFIG_MARKERS is not set
23922 +CONFIG_HAVE_OPROFILE=y
23923 +CONFIG_HAVE_KPROBES=y
23924 +CONFIG_HAVE_KRETPROBES=y
23925 +CONFIG_PROC_PAGE_MONITOR=y
23926 +CONFIG_SLABINFO=y
23927 +CONFIG_RT_MUTEXES=y
23928 +# CONFIG_TINY_SHMEM is not set
23929 +CONFIG_BASE_SMALL=0
23930 +CONFIG_MODULES=y
23931 +CONFIG_MODULE_UNLOAD=y
23932 +# CONFIG_MODULE_FORCE_UNLOAD is not set
23933 +# CONFIG_MODVERSIONS is not set
23934 +# CONFIG_MODULE_SRCVERSION_ALL is not set
23935 +# CONFIG_KMOD is not set
23936 +CONFIG_BLOCK=y
23937 +# CONFIG_LBD is not set
23938 +# CONFIG_BLK_DEV_IO_TRACE is not set
23939 +# CONFIG_LSF is not set
23940 +# CONFIG_BLK_DEV_BSG is not set
23941 +
23942 +#
23943 +# IO Schedulers
23944 +#
23945 +CONFIG_IOSCHED_NOOP=y
23946 +CONFIG_IOSCHED_AS=y
23947 +CONFIG_IOSCHED_DEADLINE=y
23948 +CONFIG_IOSCHED_CFQ=y
23949 +CONFIG_DEFAULT_AS=y
23950 +# CONFIG_DEFAULT_DEADLINE is not set
23951 +# CONFIG_DEFAULT_CFQ is not set
23952 +# CONFIG_DEFAULT_NOOP is not set
23953 +CONFIG_DEFAULT_IOSCHED="anticipatory"
23954 +CONFIG_CLASSIC_RCU=y
23955 +
23956 +#
23957 +# Platform support
23958 +#
23959 +# CONFIG_PPC_MULTIPLATFORM is not set
23960 +# CONFIG_PPC_82xx is not set
23961 +CONFIG_PPC_83xx=y
23962 +# CONFIG_PPC_86xx is not set
23963 +# CONFIG_PPC_MPC512x is not set
23964 +# CONFIG_PPC_MPC5121 is not set
23965 +# CONFIG_PPC_CELL is not set
23966 +# CONFIG_PPC_CELL_NATIVE is not set
23967 +# CONFIG_PQ2ADS is not set
23968 +CONFIG_MPC83xx=y
23969 +# CONFIG_MPC831x_RDB is not set
23970 +CONFIG_MPC832x_MDS=y
23971 +# CONFIG_MPC832x_RDB is not set
23972 +# CONFIG_MPC834x_MDS is not set
23973 +# CONFIG_MPC834x_ITX is not set
23974 +# CONFIG_MPC836x_MDS is not set
23975 +# CONFIG_MPC837x_MDS is not set
23976 +# CONFIG_MPC837x_RDB is not set
23977 +# CONFIG_SBC834x is not set
23978 +CONFIG_PPC_MPC832x=y
23979 +CONFIG_IPIC=y
23980 +# CONFIG_MPIC is not set
23981 +# CONFIG_MPIC_WEIRD is not set
23982 +# CONFIG_PPC_I8259 is not set
23983 +# CONFIG_PPC_RTAS is not set
23984 +# CONFIG_MMIO_NVRAM is not set
23985 +# CONFIG_PPC_MPC106 is not set
23986 +# CONFIG_PPC_970_NAP is not set
23987 +# CONFIG_PPC_INDIRECT_IO is not set
23988 +# CONFIG_GENERIC_IOMAP is not set
23989 +# CONFIG_CPU_FREQ is not set
23990 +CONFIG_QUICC_ENGINE=y
23991 +# CONFIG_FSL_ULI1575 is not set
23992 +
23993 +#
23994 +# Kernel options
23995 +#
23996 +# CONFIG_HIGHMEM is not set
23997 +CONFIG_TICK_ONESHOT=y
23998 +CONFIG_NO_HZ=y
23999 +CONFIG_HIGH_RES_TIMERS=y
24000 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
24001 +# CONFIG_HZ_100 is not set
24002 +CONFIG_HZ_250=y
24003 +# CONFIG_HZ_300 is not set
24004 +# CONFIG_HZ_1000 is not set
24005 +CONFIG_HZ=250
24006 +# CONFIG_SCHED_HRTICK is not set
24007 +CONFIG_PREEMPT_NONE=y
24008 +# CONFIG_PREEMPT_VOLUNTARY is not set
24009 +# CONFIG_PREEMPT is not set
24010 +CONFIG_BINFMT_ELF=y
24011 +# CONFIG_BINFMT_MISC is not set
24012 +CONFIG_MATH_EMULATION=y
24013 +# CONFIG_IOMMU_HELPER is not set
24014 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
24015 +CONFIG_ARCH_HAS_WALK_MEMORY=y
24016 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
24017 +CONFIG_ARCH_FLATMEM_ENABLE=y
24018 +CONFIG_ARCH_POPULATES_NODE_MAP=y
24019 +CONFIG_SELECT_MEMORY_MODEL=y
24020 +CONFIG_FLATMEM_MANUAL=y
24021 +# CONFIG_DISCONTIGMEM_MANUAL is not set
24022 +# CONFIG_SPARSEMEM_MANUAL is not set
24023 +CONFIG_FLATMEM=y
24024 +CONFIG_FLAT_NODE_MEM_MAP=y
24025 +# CONFIG_SPARSEMEM_STATIC is not set
24026 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
24027 +CONFIG_SPLIT_PTLOCK_CPUS=4
24028 +# CONFIG_RESOURCES_64BIT is not set
24029 +CONFIG_ZONE_DMA_FLAG=1
24030 +CONFIG_BOUNCE=y
24031 +CONFIG_VIRT_TO_BUS=y
24032 +CONFIG_PROC_DEVICETREE=y
24033 +# CONFIG_CMDLINE_BOOL is not set
24034 +# CONFIG_PM is not set
24035 +CONFIG_SECCOMP=y
24036 +CONFIG_ISA_DMA_API=y
24037 +
24038 +#
24039 +# Bus options
24040 +#
24041 +CONFIG_ZONE_DMA=y
24042 +CONFIG_GENERIC_ISA_DMA=y
24043 +CONFIG_PPC_INDIRECT_PCI=y
24044 +CONFIG_FSL_SOC=y
24045 +CONFIG_PCI=y
24046 +CONFIG_PCI_DOMAINS=y
24047 +CONFIG_PCI_SYSCALL=y
24048 +# CONFIG_PCIEPORTBUS is not set
24049 +CONFIG_ARCH_SUPPORTS_MSI=y
24050 +# CONFIG_PCI_MSI is not set
24051 +CONFIG_PCI_LEGACY=y
24052 +# CONFIG_PCCARD is not set
24053 +# CONFIG_HOTPLUG_PCI is not set
24054 +
24055 +#
24056 +# Advanced setup
24057 +#
24058 +# CONFIG_ADVANCED_OPTIONS is not set
24059 +
24060 +#
24061 +# Default settings for advanced configuration options are used
24062 +#
24063 +CONFIG_HIGHMEM_START=0xfe000000
24064 +CONFIG_LOWMEM_SIZE=0x30000000
24065 +CONFIG_KERNEL_START=0xc0000000
24066 +CONFIG_TASK_SIZE=0xc0000000
24067 +CONFIG_BOOT_LOAD=0x00800000
24068 +
24069 +#
24070 +# Networking
24071 +#
24072 +CONFIG_NET=y
24073 +
24074 +#
24075 +# Networking options
24076 +#
24077 +CONFIG_PACKET=y
24078 +# CONFIG_PACKET_MMAP is not set
24079 +CONFIG_UNIX=y
24080 +CONFIG_XFRM=y
24081 +# CONFIG_XFRM_USER is not set
24082 +# CONFIG_XFRM_SUB_POLICY is not set
24083 +# CONFIG_XFRM_MIGRATE is not set
24084 +# CONFIG_XFRM_STATISTICS is not set
24085 +# CONFIG_NET_KEY is not set
24086 +CONFIG_INET=y
24087 +CONFIG_IP_MULTICAST=y
24088 +# CONFIG_IP_ADVANCED_ROUTER is not set
24089 +CONFIG_IP_FIB_HASH=y
24090 +CONFIG_IP_PNP=y
24091 +CONFIG_IP_PNP_DHCP=y
24092 +CONFIG_IP_PNP_BOOTP=y
24093 +# CONFIG_IP_PNP_RARP is not set
24094 +# CONFIG_NET_IPIP is not set
24095 +# CONFIG_NET_IPGRE is not set
24096 +# CONFIG_IP_MROUTE is not set
24097 +# CONFIG_ARPD is not set
24098 +CONFIG_SYN_COOKIES=y
24099 +# CONFIG_INET_AH is not set
24100 +# CONFIG_INET_ESP is not set
24101 +# CONFIG_INET_IPCOMP is not set
24102 +# CONFIG_INET_XFRM_TUNNEL is not set
24103 +# CONFIG_INET_TUNNEL is not set
24104 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
24105 +CONFIG_INET_XFRM_MODE_TUNNEL=y
24106 +CONFIG_INET_XFRM_MODE_BEET=y
24107 +# CONFIG_INET_LRO is not set
24108 +CONFIG_INET_DIAG=y
24109 +CONFIG_INET_TCP_DIAG=y
24110 +# CONFIG_TCP_CONG_ADVANCED is not set
24111 +CONFIG_TCP_CONG_CUBIC=y
24112 +CONFIG_DEFAULT_TCP_CONG="cubic"
24113 +# CONFIG_TCP_MD5SIG is not set
24114 +# CONFIG_IPV6 is not set
24115 +# CONFIG_INET6_XFRM_TUNNEL is not set
24116 +# CONFIG_INET6_TUNNEL is not set
24117 +# CONFIG_NETWORK_SECMARK is not set
24118 +# CONFIG_NETFILTER is not set
24119 +# CONFIG_IP_DCCP is not set
24120 +# CONFIG_IP_SCTP is not set
24121 +# CONFIG_TIPC is not set
24122 +# CONFIG_ATM is not set
24123 +# CONFIG_BRIDGE is not set
24124 +# CONFIG_VLAN_8021Q is not set
24125 +# CONFIG_DECNET is not set
24126 +# CONFIG_LLC2 is not set
24127 +# CONFIG_IPX is not set
24128 +# CONFIG_ATALK is not set
24129 +# CONFIG_X25 is not set
24130 +# CONFIG_LAPB is not set
24131 +# CONFIG_ECONET is not set
24132 +# CONFIG_WAN_ROUTER is not set
24133 +# CONFIG_NET_SCHED is not set
24134 +
24135 +#
24136 +# Network testing
24137 +#
24138 +# CONFIG_NET_PKTGEN is not set
24139 +# CONFIG_HAMRADIO is not set
24140 +# CONFIG_CAN is not set
24141 +# CONFIG_IRDA is not set
24142 +# CONFIG_BT is not set
24143 +# CONFIG_AF_RXRPC is not set
24144 +
24145 +#
24146 +# Wireless
24147 +#
24148 +# CONFIG_CFG80211 is not set
24149 +# CONFIG_WIRELESS_EXT is not set
24150 +# CONFIG_MAC80211 is not set
24151 +# CONFIG_IEEE80211 is not set
24152 +# CONFIG_RFKILL is not set
24153 +# CONFIG_NET_9P is not set
24154 +
24155 +#
24156 +# Device Drivers
24157 +#
24158 +
24159 +#
24160 +# Generic Driver Options
24161 +#
24162 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
24163 +CONFIG_STANDALONE=y
24164 +CONFIG_PREVENT_FIRMWARE_BUILD=y
24165 +# CONFIG_FW_LOADER is not set
24166 +# CONFIG_SYS_HYPERVISOR is not set
24167 +# CONFIG_CONNECTOR is not set
24168 +# CONFIG_MTD is not set
24169 +CONFIG_OF_DEVICE=y
24170 +# CONFIG_PARPORT is not set
24171 +CONFIG_BLK_DEV=y
24172 +# CONFIG_BLK_DEV_FD is not set
24173 +# CONFIG_BLK_CPQ_DA is not set
24174 +# CONFIG_BLK_CPQ_CISS_DA is not set
24175 +# CONFIG_BLK_DEV_DAC960 is not set
24176 +# CONFIG_BLK_DEV_UMEM is not set
24177 +# CONFIG_BLK_DEV_COW_COMMON is not set
24178 +CONFIG_BLK_DEV_LOOP=y
24179 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
24180 +# CONFIG_BLK_DEV_NBD is not set
24181 +# CONFIG_BLK_DEV_SX8 is not set
24182 +CONFIG_BLK_DEV_RAM=y
24183 +CONFIG_BLK_DEV_RAM_COUNT=16
24184 +CONFIG_BLK_DEV_RAM_SIZE=32768
24185 +# CONFIG_BLK_DEV_XIP is not set
24186 +# CONFIG_CDROM_PKTCDVD is not set
24187 +# CONFIG_ATA_OVER_ETH is not set
24188 +CONFIG_MISC_DEVICES=y
24189 +# CONFIG_PHANTOM is not set
24190 +# CONFIG_EEPROM_93CX6 is not set
24191 +# CONFIG_SGI_IOC4 is not set
24192 +# CONFIG_TIFM_CORE is not set
24193 +# CONFIG_ENCLOSURE_SERVICES is not set
24194 +CONFIG_HAVE_IDE=y
24195 +# CONFIG_IDE is not set
24196 +
24197 +#
24198 +# SCSI device support
24199 +#
24200 +# CONFIG_RAID_ATTRS is not set
24201 +CONFIG_SCSI=y
24202 +CONFIG_SCSI_DMA=y
24203 +# CONFIG_SCSI_TGT is not set
24204 +# CONFIG_SCSI_NETLINK is not set
24205 +CONFIG_SCSI_PROC_FS=y
24206 +
24207 +#
24208 +# SCSI support type (disk, tape, CD-ROM)
24209 +#
24210 +# CONFIG_BLK_DEV_SD is not set
24211 +# CONFIG_CHR_DEV_ST is not set
24212 +# CONFIG_CHR_DEV_OSST is not set
24213 +# CONFIG_BLK_DEV_SR is not set
24214 +# CONFIG_CHR_DEV_SG is not set
24215 +# CONFIG_CHR_DEV_SCH is not set
24216 +
24217 +#
24218 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
24219 +#
24220 +# CONFIG_SCSI_MULTI_LUN is not set
24221 +# CONFIG_SCSI_CONSTANTS is not set
24222 +# CONFIG_SCSI_LOGGING is not set
24223 +# CONFIG_SCSI_SCAN_ASYNC is not set
24224 +CONFIG_SCSI_WAIT_SCAN=m
24225 +
24226 +#
24227 +# SCSI Transports
24228 +#
24229 +# CONFIG_SCSI_SPI_ATTRS is not set
24230 +# CONFIG_SCSI_FC_ATTRS is not set
24231 +# CONFIG_SCSI_ISCSI_ATTRS is not set
24232 +# CONFIG_SCSI_SAS_LIBSAS is not set
24233 +# CONFIG_SCSI_SRP_ATTRS is not set
24234 +CONFIG_SCSI_LOWLEVEL=y
24235 +# CONFIG_ISCSI_TCP is not set
24236 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
24237 +# CONFIG_SCSI_3W_9XXX is not set
24238 +# CONFIG_SCSI_ACARD is not set
24239 +# CONFIG_SCSI_AACRAID is not set
24240 +# CONFIG_SCSI_AIC7XXX is not set
24241 +# CONFIG_SCSI_AIC7XXX_OLD is not set
24242 +# CONFIG_SCSI_AIC79XX is not set
24243 +# CONFIG_SCSI_AIC94XX is not set
24244 +# CONFIG_SCSI_DPT_I2O is not set
24245 +# CONFIG_SCSI_ADVANSYS is not set
24246 +# CONFIG_SCSI_ARCMSR is not set
24247 +# CONFIG_MEGARAID_NEWGEN is not set
24248 +# CONFIG_MEGARAID_LEGACY is not set
24249 +# CONFIG_MEGARAID_SAS is not set
24250 +# CONFIG_SCSI_HPTIOP is not set
24251 +# CONFIG_SCSI_BUSLOGIC is not set
24252 +# CONFIG_SCSI_DMX3191D is not set
24253 +# CONFIG_SCSI_EATA is not set
24254 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
24255 +# CONFIG_SCSI_GDTH is not set
24256 +# CONFIG_SCSI_IPS is not set
24257 +# CONFIG_SCSI_INITIO is not set
24258 +# CONFIG_SCSI_INIA100 is not set
24259 +# CONFIG_SCSI_MVSAS is not set
24260 +# CONFIG_SCSI_STEX is not set
24261 +# CONFIG_SCSI_SYM53C8XX_2 is not set
24262 +# CONFIG_SCSI_QLOGIC_1280 is not set
24263 +# CONFIG_SCSI_QLA_FC is not set
24264 +# CONFIG_SCSI_QLA_ISCSI is not set
24265 +# CONFIG_SCSI_LPFC is not set
24266 +# CONFIG_SCSI_DC395x is not set
24267 +# CONFIG_SCSI_DC390T is not set
24268 +# CONFIG_SCSI_NSP32 is not set
24269 +# CONFIG_SCSI_DEBUG is not set
24270 +# CONFIG_SCSI_SRP is not set
24271 +# CONFIG_ATA is not set
24272 +# CONFIG_MD is not set
24273 +# CONFIG_FUSION is not set
24274 +
24275 +#
24276 +# IEEE 1394 (FireWire) support
24277 +#
24278 +# CONFIG_FIREWIRE is not set
24279 +# CONFIG_IEEE1394 is not set
24280 +# CONFIG_I2O is not set
24281 +# CONFIG_MACINTOSH_DRIVERS is not set
24282 +CONFIG_NETDEVICES=y
24283 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
24284 +# CONFIG_DUMMY is not set
24285 +# CONFIG_BONDING is not set
24286 +# CONFIG_MACVLAN is not set
24287 +# CONFIG_EQUALIZER is not set
24288 +# CONFIG_TUN is not set
24289 +# CONFIG_VETH is not set
24290 +# CONFIG_ARCNET is not set
24291 +CONFIG_PHYLIB=y
24292 +
24293 +#
24294 +# MII PHY device drivers
24295 +#
24296 +# CONFIG_MARVELL_PHY is not set
24297 +CONFIG_DAVICOM_PHY=y
24298 +# CONFIG_QSEMI_PHY is not set
24299 +# CONFIG_LXT_PHY is not set
24300 +# CONFIG_CICADA_PHY is not set
24301 +# CONFIG_VITESSE_PHY is not set
24302 +# CONFIG_SMSC_PHY is not set
24303 +# CONFIG_BROADCOM_PHY is not set
24304 +# CONFIG_ICPLUS_PHY is not set
24305 +# CONFIG_REALTEK_PHY is not set
24306 +# CONFIG_FIXED_PHY is not set
24307 +# CONFIG_MDIO_BITBANG is not set
24308 +CONFIG_NET_ETHERNET=y
24309 +CONFIG_MII=y
24310 +# CONFIG_HAPPYMEAL is not set
24311 +# CONFIG_SUNGEM is not set
24312 +# CONFIG_CASSINI is not set
24313 +# CONFIG_NET_VENDOR_3COM is not set
24314 +# CONFIG_NET_TULIP is not set
24315 +# CONFIG_HP100 is not set
24316 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
24317 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
24318 +# CONFIG_IBM_NEW_EMAC_TAH is not set
24319 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
24320 +# CONFIG_NET_PCI is not set
24321 +# CONFIG_B44 is not set
24322 +CONFIG_NETDEV_1000=y
24323 +# CONFIG_ACENIC is not set
24324 +# CONFIG_DL2K is not set
24325 +# CONFIG_E1000 is not set
24326 +# CONFIG_E1000E is not set
24327 +# CONFIG_E1000E_ENABLED is not set
24328 +# CONFIG_IP1000 is not set
24329 +# CONFIG_IGB is not set
24330 +# CONFIG_NS83820 is not set
24331 +# CONFIG_HAMACHI is not set
24332 +# CONFIG_YELLOWFIN is not set
24333 +# CONFIG_R8169 is not set
24334 +# CONFIG_SIS190 is not set
24335 +# CONFIG_SKGE is not set
24336 +# CONFIG_SKY2 is not set
24337 +# CONFIG_SK98LIN is not set
24338 +# CONFIG_VIA_VELOCITY is not set
24339 +# CONFIG_TIGON3 is not set
24340 +# CONFIG_BNX2 is not set
24341 +# CONFIG_GIANFAR is not set
24342 +CONFIG_UCC_GETH=y
24343 +# CONFIG_UGETH_NAPI is not set
24344 +# CONFIG_UGETH_MAGIC_PACKET is not set
24345 +# CONFIG_UGETH_FILTERING is not set
24346 +# CONFIG_UGETH_TX_ON_DEMAND is not set
24347 +# CONFIG_QLA3XXX is not set
24348 +# CONFIG_ATL1 is not set
24349 +CONFIG_NETDEV_10000=y
24350 +# CONFIG_CHELSIO_T1 is not set
24351 +# CONFIG_CHELSIO_T3 is not set
24352 +# CONFIG_IXGBE is not set
24353 +# CONFIG_IXGB is not set
24354 +# CONFIG_S2IO is not set
24355 +# CONFIG_MYRI10GE is not set
24356 +# CONFIG_NETXEN_NIC is not set
24357 +# CONFIG_NIU is not set
24358 +# CONFIG_MLX4_CORE is not set
24359 +# CONFIG_TEHUTI is not set
24360 +# CONFIG_BNX2X is not set
24361 +# CONFIG_TR is not set
24362 +
24363 +#
24364 +# Wireless LAN
24365 +#
24366 +# CONFIG_WLAN_PRE80211 is not set
24367 +# CONFIG_WLAN_80211 is not set
24368 +# CONFIG_WAN is not set
24369 +# CONFIG_FDDI is not set
24370 +# CONFIG_HIPPI is not set
24371 +# CONFIG_PPP is not set
24372 +# CONFIG_SLIP is not set
24373 +# CONFIG_NET_FC is not set
24374 +# CONFIG_NETCONSOLE is not set
24375 +# CONFIG_NETPOLL is not set
24376 +# CONFIG_NET_POLL_CONTROLLER is not set
24377 +# CONFIG_ISDN is not set
24378 +# CONFIG_PHONE is not set
24379 +
24380 +#
24381 +# Input device support
24382 +#
24383 +CONFIG_INPUT=y
24384 +# CONFIG_INPUT_FF_MEMLESS is not set
24385 +# CONFIG_INPUT_POLLDEV is not set
24386 +
24387 +#
24388 +# Userland interfaces
24389 +#
24390 +# CONFIG_INPUT_MOUSEDEV is not set
24391 +# CONFIG_INPUT_JOYDEV is not set
24392 +# CONFIG_INPUT_EVDEV is not set
24393 +# CONFIG_INPUT_EVBUG is not set
24394 +
24395 +#
24396 +# Input Device Drivers
24397 +#
24398 +# CONFIG_INPUT_KEYBOARD is not set
24399 +# CONFIG_INPUT_MOUSE is not set
24400 +# CONFIG_INPUT_JOYSTICK is not set
24401 +# CONFIG_INPUT_TABLET is not set
24402 +# CONFIG_INPUT_TOUCHSCREEN is not set
24403 +# CONFIG_INPUT_MISC is not set
24404 +
24405 +#
24406 +# Hardware I/O ports
24407 +#
24408 +# CONFIG_SERIO is not set
24409 +# CONFIG_GAMEPORT is not set
24410 +
24411 +#
24412 +# Character devices
24413 +#
24414 +# CONFIG_VT is not set
24415 +# CONFIG_SERIAL_NONSTANDARD is not set
24416 +# CONFIG_NOZOMI is not set
24417 +
24418 +#
24419 +# Serial drivers
24420 +#
24421 +CONFIG_SERIAL_8250=y
24422 +CONFIG_SERIAL_8250_CONSOLE=y
24423 +CONFIG_SERIAL_8250_PCI=y
24424 +CONFIG_SERIAL_8250_NR_UARTS=4
24425 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
24426 +# CONFIG_SERIAL_8250_EXTENDED is not set
24427 +
24428 +#
24429 +# Non-8250 serial port support
24430 +#
24431 +# CONFIG_SERIAL_UARTLITE is not set
24432 +CONFIG_SERIAL_CORE=y
24433 +CONFIG_SERIAL_CORE_CONSOLE=y
24434 +# CONFIG_SERIAL_JSM is not set
24435 +# CONFIG_SERIAL_OF_PLATFORM is not set
24436 +# CONFIG_SERIAL_QE is not set
24437 +CONFIG_UNIX98_PTYS=y
24438 +CONFIG_LEGACY_PTYS=y
24439 +CONFIG_LEGACY_PTY_COUNT=256
24440 +# CONFIG_IPMI_HANDLER is not set
24441 +CONFIG_HW_RANDOM=y
24442 +# CONFIG_NVRAM is not set
24443 +# CONFIG_GEN_RTC is not set
24444 +# CONFIG_R3964 is not set
24445 +# CONFIG_APPLICOM is not set
24446 +# CONFIG_RAW_DRIVER is not set
24447 +# CONFIG_TCG_TPM is not set
24448 +CONFIG_DEVPORT=y
24449 +CONFIG_I2C=y
24450 +CONFIG_I2C_BOARDINFO=y
24451 +CONFIG_I2C_CHARDEV=y
24452 +
24453 +#
24454 +# I2C Algorithms
24455 +#
24456 +# CONFIG_I2C_ALGOBIT is not set
24457 +# CONFIG_I2C_ALGOPCF is not set
24458 +# CONFIG_I2C_ALGOPCA is not set
24459 +
24460 +#
24461 +# I2C Hardware Bus support
24462 +#
24463 +# CONFIG_I2C_ALI1535 is not set
24464 +# CONFIG_I2C_ALI1563 is not set
24465 +# CONFIG_I2C_ALI15X3 is not set
24466 +# CONFIG_I2C_AMD756 is not set
24467 +# CONFIG_I2C_AMD8111 is not set
24468 +# CONFIG_I2C_I801 is not set
24469 +# CONFIG_I2C_I810 is not set
24470 +# CONFIG_I2C_PIIX4 is not set
24471 +CONFIG_I2C_MPC=y
24472 +# CONFIG_I2C_NFORCE2 is not set
24473 +# CONFIG_I2C_OCORES is not set
24474 +# CONFIG_I2C_PARPORT_LIGHT is not set
24475 +# CONFIG_I2C_PROSAVAGE is not set
24476 +# CONFIG_I2C_SAVAGE4 is not set
24477 +# CONFIG_I2C_SIMTEC is not set
24478 +# CONFIG_I2C_SIS5595 is not set
24479 +# CONFIG_I2C_SIS630 is not set
24480 +# CONFIG_I2C_SIS96X is not set
24481 +# CONFIG_I2C_TAOS_EVM is not set
24482 +# CONFIG_I2C_STUB is not set
24483 +# CONFIG_I2C_VIA is not set
24484 +# CONFIG_I2C_VIAPRO is not set
24485 +# CONFIG_I2C_VOODOO3 is not set
24486 +
24487 +#
24488 +# Miscellaneous I2C Chip support
24489 +#
24490 +# CONFIG_DS1682 is not set
24491 +# CONFIG_SENSORS_EEPROM is not set
24492 +# CONFIG_SENSORS_PCF8574 is not set
24493 +# CONFIG_PCF8575 is not set
24494 +# CONFIG_SENSORS_PCF8591 is not set
24495 +# CONFIG_TPS65010 is not set
24496 +# CONFIG_SENSORS_MAX6875 is not set
24497 +# CONFIG_SENSORS_TSL2550 is not set
24498 +# CONFIG_I2C_DEBUG_CORE is not set
24499 +# CONFIG_I2C_DEBUG_ALGO is not set
24500 +# CONFIG_I2C_DEBUG_BUS is not set
24501 +# CONFIG_I2C_DEBUG_CHIP is not set
24502 +
24503 +#
24504 +# SPI support
24505 +#
24506 +# CONFIG_SPI is not set
24507 +# CONFIG_SPI_MASTER is not set
24508 +# CONFIG_W1 is not set
24509 +# CONFIG_POWER_SUPPLY is not set
24510 +CONFIG_HWMON=y
24511 +# CONFIG_HWMON_VID is not set
24512 +# CONFIG_SENSORS_AD7418 is not set
24513 +# CONFIG_SENSORS_ADM1021 is not set
24514 +# CONFIG_SENSORS_ADM1025 is not set
24515 +# CONFIG_SENSORS_ADM1026 is not set
24516 +# CONFIG_SENSORS_ADM1029 is not set
24517 +# CONFIG_SENSORS_ADM1031 is not set
24518 +# CONFIG_SENSORS_ADM9240 is not set
24519 +# CONFIG_SENSORS_ADT7470 is not set
24520 +# CONFIG_SENSORS_ADT7473 is not set
24521 +# CONFIG_SENSORS_ATXP1 is not set
24522 +# CONFIG_SENSORS_DS1621 is not set
24523 +# CONFIG_SENSORS_I5K_AMB is not set
24524 +# CONFIG_SENSORS_F71805F is not set
24525 +# CONFIG_SENSORS_F71882FG is not set
24526 +# CONFIG_SENSORS_F75375S is not set
24527 +# CONFIG_SENSORS_GL518SM is not set
24528 +# CONFIG_SENSORS_GL520SM is not set
24529 +# CONFIG_SENSORS_IT87 is not set
24530 +# CONFIG_SENSORS_LM63 is not set
24531 +# CONFIG_SENSORS_LM75 is not set
24532 +# CONFIG_SENSORS_LM77 is not set
24533 +# CONFIG_SENSORS_LM78 is not set
24534 +# CONFIG_SENSORS_LM80 is not set
24535 +# CONFIG_SENSORS_LM83 is not set
24536 +# CONFIG_SENSORS_LM85 is not set
24537 +# CONFIG_SENSORS_LM87 is not set
24538 +# CONFIG_SENSORS_LM90 is not set
24539 +# CONFIG_SENSORS_LM92 is not set
24540 +# CONFIG_SENSORS_LM93 is not set
24541 +# CONFIG_SENSORS_MAX1619 is not set
24542 +# CONFIG_SENSORS_MAX6650 is not set
24543 +# CONFIG_SENSORS_PC87360 is not set
24544 +# CONFIG_SENSORS_PC87427 is not set
24545 +# CONFIG_SENSORS_SIS5595 is not set
24546 +# CONFIG_SENSORS_DME1737 is not set
24547 +# CONFIG_SENSORS_SMSC47M1 is not set
24548 +# CONFIG_SENSORS_SMSC47M192 is not set
24549 +# CONFIG_SENSORS_SMSC47B397 is not set
24550 +# CONFIG_SENSORS_ADS7828 is not set
24551 +# CONFIG_SENSORS_THMC50 is not set
24552 +# CONFIG_SENSORS_VIA686A is not set
24553 +# CONFIG_SENSORS_VT1211 is not set
24554 +# CONFIG_SENSORS_VT8231 is not set
24555 +# CONFIG_SENSORS_W83781D is not set
24556 +# CONFIG_SENSORS_W83791D is not set
24557 +# CONFIG_SENSORS_W83792D is not set
24558 +# CONFIG_SENSORS_W83793 is not set
24559 +# CONFIG_SENSORS_W83L785TS is not set
24560 +# CONFIG_SENSORS_W83L786NG is not set
24561 +# CONFIG_SENSORS_W83627HF is not set
24562 +# CONFIG_SENSORS_W83627EHF is not set
24563 +# CONFIG_HWMON_DEBUG_CHIP is not set
24564 +# CONFIG_THERMAL is not set
24565 +CONFIG_WATCHDOG=y
24566 +# CONFIG_WATCHDOG_NOWAYOUT is not set
24567 +
24568 +#
24569 +# Watchdog Device Drivers
24570 +#
24571 +# CONFIG_SOFT_WATCHDOG is not set
24572 +CONFIG_83xx_WDT=y
24573 +
24574 +#
24575 +# PCI-based Watchdog Cards
24576 +#
24577 +# CONFIG_PCIPCWATCHDOG is not set
24578 +# CONFIG_WDTPCI is not set
24579 +
24580 +#
24581 +# Sonics Silicon Backplane
24582 +#
24583 +CONFIG_SSB_POSSIBLE=y
24584 +# CONFIG_SSB is not set
24585 +
24586 +#
24587 +# Multifunction device drivers
24588 +#
24589 +# CONFIG_MFD_SM501 is not set
24590 +
24591 +#
24592 +# Multimedia devices
24593 +#
24594 +# CONFIG_VIDEO_DEV is not set
24595 +# CONFIG_DVB_CORE is not set
24596 +CONFIG_DAB=y
24597 +
24598 +#
24599 +# Graphics support
24600 +#
24601 +# CONFIG_AGP is not set
24602 +# CONFIG_DRM is not set
24603 +# CONFIG_VGASTATE is not set
24604 +CONFIG_VIDEO_OUTPUT_CONTROL=m
24605 +# CONFIG_FB is not set
24606 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
24607 +
24608 +#
24609 +# Display device support
24610 +#
24611 +# CONFIG_DISPLAY_SUPPORT is not set
24612 +
24613 +#
24614 +# Sound
24615 +#
24616 +# CONFIG_SOUND is not set
24617 +CONFIG_HID_SUPPORT=y
24618 +CONFIG_HID=y
24619 +# CONFIG_HID_DEBUG is not set
24620 +# CONFIG_HIDRAW is not set
24621 +CONFIG_USB_SUPPORT=y
24622 +CONFIG_USB_ARCH_HAS_HCD=y
24623 +CONFIG_USB_ARCH_HAS_OHCI=y
24624 +CONFIG_USB_ARCH_HAS_EHCI=y
24625 +# CONFIG_USB is not set
24626 +
24627 +#
24628 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
24629 +#
24630 +# CONFIG_USB_GADGET is not set
24631 +# CONFIG_MMC is not set
24632 +# CONFIG_MEMSTICK is not set
24633 +# CONFIG_NEW_LEDS is not set
24634 +# CONFIG_INFINIBAND is not set
24635 +# CONFIG_EDAC is not set
24636 +CONFIG_RTC_LIB=y
24637 +CONFIG_RTC_CLASS=y
24638 +CONFIG_RTC_HCTOSYS=y
24639 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
24640 +# CONFIG_RTC_DEBUG is not set
24641 +
24642 +#
24643 +# RTC interfaces
24644 +#
24645 +CONFIG_RTC_INTF_SYSFS=y
24646 +CONFIG_RTC_INTF_PROC=y
24647 +CONFIG_RTC_INTF_DEV=y
24648 +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
24649 +# CONFIG_RTC_DRV_TEST is not set
24650 +
24651 +#
24652 +# I2C RTC drivers
24653 +#
24654 +# CONFIG_RTC_DRV_DS1307 is not set
24655 +CONFIG_RTC_DRV_DS1374=y
24656 +# CONFIG_RTC_DRV_DS1672 is not set
24657 +# CONFIG_RTC_DRV_MAX6900 is not set
24658 +# CONFIG_RTC_DRV_RS5C372 is not set
24659 +# CONFIG_RTC_DRV_ISL1208 is not set
24660 +# CONFIG_RTC_DRV_X1205 is not set
24661 +# CONFIG_RTC_DRV_PCF8563 is not set
24662 +# CONFIG_RTC_DRV_PCF8583 is not set
24663 +# CONFIG_RTC_DRV_M41T80 is not set
24664 +# CONFIG_RTC_DRV_S35390A is not set
24665 +
24666 +#
24667 +# SPI RTC drivers
24668 +#
24669 +
24670 +#
24671 +# Platform RTC drivers
24672 +#
24673 +# CONFIG_RTC_DRV_CMOS is not set
24674 +# CONFIG_RTC_DRV_DS1511 is not set
24675 +# CONFIG_RTC_DRV_DS1553 is not set
24676 +# CONFIG_RTC_DRV_DS1742 is not set
24677 +# CONFIG_RTC_DRV_STK17TA8 is not set
24678 +# CONFIG_RTC_DRV_M48T86 is not set
24679 +# CONFIG_RTC_DRV_M48T59 is not set
24680 +# CONFIG_RTC_DRV_V3020 is not set
24681 +
24682 +#
24683 +# on-CPU RTC drivers
24684 +#
24685 +# CONFIG_DMADEVICES is not set
24686 +
24687 +#
24688 +# Userspace I/O
24689 +#
24690 +# CONFIG_UIO is not set
24691 +
24692 +#
24693 +# File systems
24694 +#
24695 +CONFIG_EXT2_FS=y
24696 +# CONFIG_EXT2_FS_XATTR is not set
24697 +# CONFIG_EXT2_FS_XIP is not set
24698 +CONFIG_EXT3_FS=y
24699 +CONFIG_EXT3_FS_XATTR=y
24700 +# CONFIG_EXT3_FS_POSIX_ACL is not set
24701 +# CONFIG_EXT3_FS_SECURITY is not set
24702 +# CONFIG_EXT4DEV_FS is not set
24703 +CONFIG_JBD=y
24704 +CONFIG_FS_MBCACHE=y
24705 +# CONFIG_REISERFS_FS is not set
24706 +# CONFIG_JFS_FS is not set
24707 +# CONFIG_FS_POSIX_ACL is not set
24708 +# CONFIG_XFS_FS is not set
24709 +# CONFIG_GFS2_FS is not set
24710 +# CONFIG_OCFS2_FS is not set
24711 +CONFIG_DNOTIFY=y
24712 +CONFIG_INOTIFY=y
24713 +CONFIG_INOTIFY_USER=y
24714 +# CONFIG_QUOTA is not set
24715 +# CONFIG_AUTOFS_FS is not set
24716 +# CONFIG_AUTOFS4_FS is not set
24717 +# CONFIG_FUSE_FS is not set
24718 +
24719 +#
24720 +# CD-ROM/DVD Filesystems
24721 +#
24722 +# CONFIG_ISO9660_FS is not set
24723 +# CONFIG_UDF_FS is not set
24724 +
24725 +#
24726 +# DOS/FAT/NT Filesystems
24727 +#
24728 +# CONFIG_MSDOS_FS is not set
24729 +# CONFIG_VFAT_FS is not set
24730 +# CONFIG_NTFS_FS is not set
24731 +
24732 +#
24733 +# Pseudo filesystems
24734 +#
24735 +CONFIG_PROC_FS=y
24736 +CONFIG_PROC_KCORE=y
24737 +CONFIG_PROC_SYSCTL=y
24738 +CONFIG_SYSFS=y
24739 +CONFIG_TMPFS=y
24740 +# CONFIG_TMPFS_POSIX_ACL is not set
24741 +# CONFIG_HUGETLB_PAGE is not set
24742 +# CONFIG_CONFIGFS_FS is not set
24743 +
24744 +#
24745 +# Miscellaneous filesystems
24746 +#
24747 +# CONFIG_ADFS_FS is not set
24748 +# CONFIG_AFFS_FS is not set
24749 +# CONFIG_HFS_FS is not set
24750 +# CONFIG_HFSPLUS_FS is not set
24751 +# CONFIG_BEFS_FS is not set
24752 +# CONFIG_BFS_FS is not set
24753 +# CONFIG_EFS_FS is not set
24754 +# CONFIG_CRAMFS is not set
24755 +# CONFIG_VXFS_FS is not set
24756 +# CONFIG_MINIX_FS is not set
24757 +# CONFIG_HPFS_FS is not set
24758 +# CONFIG_QNX4FS_FS is not set
24759 +# CONFIG_ROMFS_FS is not set
24760 +# CONFIG_SYSV_FS is not set
24761 +# CONFIG_UFS_FS is not set
24762 +CONFIG_NETWORK_FILESYSTEMS=y
24763 +CONFIG_NFS_FS=y
24764 +CONFIG_NFS_V3=y
24765 +# CONFIG_NFS_V3_ACL is not set
24766 +CONFIG_NFS_V4=y
24767 +# CONFIG_NFS_DIRECTIO is not set
24768 +# CONFIG_NFSD is not set
24769 +CONFIG_ROOT_NFS=y
24770 +CONFIG_LOCKD=y
24771 +CONFIG_LOCKD_V4=y
24772 +CONFIG_NFS_COMMON=y
24773 +CONFIG_SUNRPC=y
24774 +CONFIG_SUNRPC_GSS=y
24775 +# CONFIG_SUNRPC_BIND34 is not set
24776 +CONFIG_RPCSEC_GSS_KRB5=y
24777 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
24778 +# CONFIG_SMB_FS is not set
24779 +# CONFIG_CIFS is not set
24780 +# CONFIG_NCP_FS is not set
24781 +# CONFIG_CODA_FS is not set
24782 +# CONFIG_AFS_FS is not set
24783 +
24784 +#
24785 +# Partition Types
24786 +#
24787 +CONFIG_PARTITION_ADVANCED=y
24788 +# CONFIG_ACORN_PARTITION is not set
24789 +# CONFIG_OSF_PARTITION is not set
24790 +# CONFIG_AMIGA_PARTITION is not set
24791 +# CONFIG_ATARI_PARTITION is not set
24792 +# CONFIG_MAC_PARTITION is not set
24793 +# CONFIG_MSDOS_PARTITION is not set
24794 +# CONFIG_LDM_PARTITION is not set
24795 +# CONFIG_SGI_PARTITION is not set
24796 +# CONFIG_ULTRIX_PARTITION is not set
24797 +# CONFIG_SUN_PARTITION is not set
24798 +# CONFIG_KARMA_PARTITION is not set
24799 +# CONFIG_EFI_PARTITION is not set
24800 +# CONFIG_SYSV68_PARTITION is not set
24801 +# CONFIG_NLS is not set
24802 +# CONFIG_DLM is not set
24803 +CONFIG_UCC_FAST=y
24804 +CONFIG_UCC=y
24805 +
24806 +#
24807 +# Library routines
24808 +#
24809 +CONFIG_BITREVERSE=y
24810 +# CONFIG_CRC_CCITT is not set
24811 +# CONFIG_CRC16 is not set
24812 +# CONFIG_CRC_ITU_T is not set
24813 +CONFIG_CRC32=y
24814 +# CONFIG_CRC7 is not set
24815 +# CONFIG_LIBCRC32C is not set
24816 +CONFIG_PLIST=y
24817 +CONFIG_HAS_IOMEM=y
24818 +CONFIG_HAS_IOPORT=y
24819 +CONFIG_HAS_DMA=y
24820 +
24821 +#
24822 +# Kernel hacking
24823 +#
24824 +# CONFIG_PRINTK_TIME is not set
24825 +CONFIG_ENABLE_WARN_DEPRECATED=y
24826 +CONFIG_ENABLE_MUST_CHECK=y
24827 +# CONFIG_MAGIC_SYSRQ is not set
24828 +# CONFIG_UNUSED_SYMBOLS is not set
24829 +# CONFIG_DEBUG_FS is not set
24830 +# CONFIG_HEADERS_CHECK is not set
24831 +# CONFIG_DEBUG_KERNEL is not set
24832 +# CONFIG_SLUB_DEBUG_ON is not set
24833 +# CONFIG_SLUB_STATS is not set
24834 +# CONFIG_DEBUG_BUGVERBOSE is not set
24835 +# CONFIG_SAMPLES is not set
24836 +# CONFIG_PPC_EARLY_DEBUG is not set
24837 +
24838 +#
24839 +# Security options
24840 +#
24841 +# CONFIG_KEYS is not set
24842 +# CONFIG_SECURITY is not set
24843 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
24844 +CONFIG_CRYPTO=y
24845 +CONFIG_CRYPTO_ALGAPI=y
24846 +CONFIG_CRYPTO_BLKCIPHER=y
24847 +# CONFIG_CRYPTO_SEQIV is not set
24848 +CONFIG_CRYPTO_MANAGER=y
24849 +# CONFIG_CRYPTO_HMAC is not set
24850 +# CONFIG_CRYPTO_XCBC is not set
24851 +# CONFIG_CRYPTO_NULL is not set
24852 +# CONFIG_CRYPTO_MD4 is not set
24853 +CONFIG_CRYPTO_MD5=y
24854 +# CONFIG_CRYPTO_SHA1 is not set
24855 +# CONFIG_CRYPTO_SHA256 is not set
24856 +# CONFIG_CRYPTO_SHA512 is not set
24857 +# CONFIG_CRYPTO_WP512 is not set
24858 +# CONFIG_CRYPTO_TGR192 is not set
24859 +# CONFIG_CRYPTO_GF128MUL is not set
24860 +CONFIG_CRYPTO_ECB=m
24861 +CONFIG_CRYPTO_CBC=y
24862 +CONFIG_CRYPTO_PCBC=m
24863 +# CONFIG_CRYPTO_LRW is not set
24864 +# CONFIG_CRYPTO_XTS is not set
24865 +# CONFIG_CRYPTO_CTR is not set
24866 +# CONFIG_CRYPTO_GCM is not set
24867 +# CONFIG_CRYPTO_CCM is not set
24868 +# CONFIG_CRYPTO_CRYPTD is not set
24869 +CONFIG_CRYPTO_DES=y
24870 +# CONFIG_CRYPTO_FCRYPT is not set
24871 +# CONFIG_CRYPTO_BLOWFISH is not set
24872 +# CONFIG_CRYPTO_TWOFISH is not set
24873 +# CONFIG_CRYPTO_SERPENT is not set
24874 +# CONFIG_CRYPTO_AES is not set
24875 +# CONFIG_CRYPTO_CAST5 is not set
24876 +# CONFIG_CRYPTO_CAST6 is not set
24877 +# CONFIG_CRYPTO_TEA is not set
24878 +# CONFIG_CRYPTO_ARC4 is not set
24879 +# CONFIG_CRYPTO_KHAZAD is not set
24880 +# CONFIG_CRYPTO_ANUBIS is not set
24881 +# CONFIG_CRYPTO_SEED is not set
24882 +# CONFIG_CRYPTO_SALSA20 is not set
24883 +# CONFIG_CRYPTO_DEFLATE is not set
24884 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
24885 +# CONFIG_CRYPTO_CRC32C is not set
24886 +# CONFIG_CRYPTO_CAMELLIA is not set
24887 +# CONFIG_CRYPTO_TEST is not set
24888 +# CONFIG_CRYPTO_AUTHENC is not set
24889 +# CONFIG_CRYPTO_LZO is not set
24890 +CONFIG_CRYPTO_HW=y
24891 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
24892 +# CONFIG_PPC_CLOCK is not set
24893 +CONFIG_PPC_LIB_RHEAP=y
24894 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig
24895 ===================================================================
24896 --- /dev/null
24897 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig
24898 @@ -0,0 +1,1233 @@
24899 +#
24900 +# Automatically generated make config: don't edit
24901 +# Linux kernel version: 2.6.25-rc6
24902 +# Mon Mar 24 08:48:16 2008
24903 +#
24904 +# CONFIG_PPC64 is not set
24905 +
24906 +#
24907 +# Processor support
24908 +#
24909 +CONFIG_6xx=y
24910 +# CONFIG_PPC_85xx is not set
24911 +# CONFIG_PPC_8xx is not set
24912 +# CONFIG_40x is not set
24913 +# CONFIG_44x is not set
24914 +# CONFIG_E200 is not set
24915 +CONFIG_PPC_FPU=y
24916 +# CONFIG_FSL_EMB_PERFMON is not set
24917 +CONFIG_PPC_STD_MMU=y
24918 +CONFIG_PPC_STD_MMU_32=y
24919 +# CONFIG_PPC_MM_SLICES is not set
24920 +# CONFIG_SMP is not set
24921 +CONFIG_PPC32=y
24922 +CONFIG_WORD_SIZE=32
24923 +CONFIG_PPC_MERGE=y
24924 +CONFIG_MMU=y
24925 +CONFIG_GENERIC_CMOS_UPDATE=y
24926 +CONFIG_GENERIC_TIME=y
24927 +CONFIG_GENERIC_TIME_VSYSCALL=y
24928 +CONFIG_GENERIC_CLOCKEVENTS=y
24929 +CONFIG_GENERIC_HARDIRQS=y
24930 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
24931 +CONFIG_IRQ_PER_CPU=y
24932 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
24933 +CONFIG_ARCH_HAS_ILOG2_U32=y
24934 +CONFIG_GENERIC_HWEIGHT=y
24935 +CONFIG_GENERIC_CALIBRATE_DELAY=y
24936 +CONFIG_GENERIC_FIND_NEXT_BIT=y
24937 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
24938 +CONFIG_PPC=y
24939 +CONFIG_EARLY_PRINTK=y
24940 +CONFIG_GENERIC_NVRAM=y
24941 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
24942 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
24943 +CONFIG_PPC_OF=y
24944 +CONFIG_OF=y
24945 +CONFIG_PPC_UDBG_16550=y
24946 +# CONFIG_GENERIC_TBSYNC is not set
24947 +CONFIG_AUDIT_ARCH=y
24948 +CONFIG_GENERIC_BUG=y
24949 +CONFIG_DEFAULT_UIMAGE=y
24950 +# CONFIG_PPC_DCR_NATIVE is not set
24951 +# CONFIG_PPC_DCR_MMIO is not set
24952 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
24953 +
24954 +#
24955 +# General setup
24956 +#
24957 +CONFIG_EXPERIMENTAL=y
24958 +CONFIG_BROKEN_ON_SMP=y
24959 +CONFIG_INIT_ENV_ARG_LIMIT=32
24960 +CONFIG_LOCALVERSION=""
24961 +CONFIG_LOCALVERSION_AUTO=y
24962 +CONFIG_SWAP=y
24963 +CONFIG_SYSVIPC=y
24964 +CONFIG_SYSVIPC_SYSCTL=y
24965 +# CONFIG_POSIX_MQUEUE is not set
24966 +# CONFIG_BSD_PROCESS_ACCT is not set
24967 +# CONFIG_TASKSTATS is not set
24968 +# CONFIG_AUDIT is not set
24969 +# CONFIG_IKCONFIG is not set
24970 +CONFIG_LOG_BUF_SHIFT=14
24971 +# CONFIG_CGROUPS is not set
24972 +CONFIG_GROUP_SCHED=y
24973 +# CONFIG_FAIR_GROUP_SCHED is not set
24974 +# CONFIG_RT_GROUP_SCHED is not set
24975 +CONFIG_USER_SCHED=y
24976 +# CONFIG_CGROUP_SCHED is not set
24977 +CONFIG_SYSFS_DEPRECATED=y
24978 +CONFIG_SYSFS_DEPRECATED_V2=y
24979 +# CONFIG_RELAY is not set
24980 +# CONFIG_NAMESPACES is not set
24981 +CONFIG_BLK_DEV_INITRD=y
24982 +CONFIG_INITRAMFS_SOURCE=""
24983 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
24984 +CONFIG_SYSCTL=y
24985 +CONFIG_EMBEDDED=y
24986 +CONFIG_SYSCTL_SYSCALL=y
24987 +# CONFIG_KALLSYMS is not set
24988 +CONFIG_HOTPLUG=y
24989 +CONFIG_PRINTK=y
24990 +CONFIG_BUG=y
24991 +CONFIG_ELF_CORE=y
24992 +CONFIG_COMPAT_BRK=y
24993 +CONFIG_BASE_FULL=y
24994 +CONFIG_FUTEX=y
24995 +CONFIG_ANON_INODES=y
24996 +# CONFIG_EPOLL is not set
24997 +CONFIG_SIGNALFD=y
24998 +CONFIG_TIMERFD=y
24999 +CONFIG_EVENTFD=y
25000 +CONFIG_SHMEM=y
25001 +CONFIG_VM_EVENT_COUNTERS=y
25002 +CONFIG_SLUB_DEBUG=y
25003 +# CONFIG_SLAB is not set
25004 +CONFIG_SLUB=y
25005 +# CONFIG_SLOB is not set
25006 +# CONFIG_PROFILING is not set
25007 +# CONFIG_MARKERS is not set
25008 +CONFIG_HAVE_OPROFILE=y
25009 +CONFIG_HAVE_KPROBES=y
25010 +CONFIG_HAVE_KRETPROBES=y
25011 +CONFIG_PROC_PAGE_MONITOR=y
25012 +CONFIG_SLABINFO=y
25013 +CONFIG_RT_MUTEXES=y
25014 +# CONFIG_TINY_SHMEM is not set
25015 +CONFIG_BASE_SMALL=0
25016 +CONFIG_MODULES=y
25017 +CONFIG_MODULE_UNLOAD=y
25018 +# CONFIG_MODULE_FORCE_UNLOAD is not set
25019 +# CONFIG_MODVERSIONS is not set
25020 +# CONFIG_MODULE_SRCVERSION_ALL is not set
25021 +# CONFIG_KMOD is not set
25022 +CONFIG_BLOCK=y
25023 +# CONFIG_LBD is not set
25024 +# CONFIG_BLK_DEV_IO_TRACE is not set
25025 +# CONFIG_LSF is not set
25026 +# CONFIG_BLK_DEV_BSG is not set
25027 +
25028 +#
25029 +# IO Schedulers
25030 +#
25031 +CONFIG_IOSCHED_NOOP=y
25032 +CONFIG_IOSCHED_AS=y
25033 +CONFIG_IOSCHED_DEADLINE=y
25034 +CONFIG_IOSCHED_CFQ=y
25035 +CONFIG_DEFAULT_AS=y
25036 +# CONFIG_DEFAULT_DEADLINE is not set
25037 +# CONFIG_DEFAULT_CFQ is not set
25038 +# CONFIG_DEFAULT_NOOP is not set
25039 +CONFIG_DEFAULT_IOSCHED="anticipatory"
25040 +CONFIG_CLASSIC_RCU=y
25041 +
25042 +#
25043 +# Platform support
25044 +#
25045 +# CONFIG_PPC_MULTIPLATFORM is not set
25046 +# CONFIG_PPC_82xx is not set
25047 +CONFIG_PPC_83xx=y
25048 +# CONFIG_PPC_86xx is not set
25049 +# CONFIG_PPC_MPC512x is not set
25050 +# CONFIG_PPC_MPC5121 is not set
25051 +# CONFIG_PPC_CELL is not set
25052 +# CONFIG_PPC_CELL_NATIVE is not set
25053 +# CONFIG_PQ2ADS is not set
25054 +CONFIG_MPC83xx=y
25055 +# CONFIG_MPC831x_RDB is not set
25056 +# CONFIG_MPC832x_MDS is not set
25057 +CONFIG_MPC832x_RDB=y
25058 +# CONFIG_MPC834x_MDS is not set
25059 +# CONFIG_MPC834x_ITX is not set
25060 +# CONFIG_MPC836x_MDS is not set
25061 +# CONFIG_MPC837x_MDS is not set
25062 +# CONFIG_MPC837x_RDB is not set
25063 +# CONFIG_SBC834x is not set
25064 +CONFIG_PPC_MPC832x=y
25065 +CONFIG_IPIC=y
25066 +# CONFIG_MPIC is not set
25067 +# CONFIG_MPIC_WEIRD is not set
25068 +# CONFIG_PPC_I8259 is not set
25069 +# CONFIG_PPC_RTAS is not set
25070 +# CONFIG_MMIO_NVRAM is not set
25071 +# CONFIG_PPC_MPC106 is not set
25072 +# CONFIG_PPC_970_NAP is not set
25073 +# CONFIG_PPC_INDIRECT_IO is not set
25074 +# CONFIG_GENERIC_IOMAP is not set
25075 +# CONFIG_CPU_FREQ is not set
25076 +CONFIG_QUICC_ENGINE=y
25077 +# CONFIG_FSL_ULI1575 is not set
25078 +
25079 +#
25080 +# Kernel options
25081 +#
25082 +# CONFIG_HIGHMEM is not set
25083 +CONFIG_TICK_ONESHOT=y
25084 +CONFIG_NO_HZ=y
25085 +CONFIG_HIGH_RES_TIMERS=y
25086 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
25087 +# CONFIG_HZ_100 is not set
25088 +CONFIG_HZ_250=y
25089 +# CONFIG_HZ_300 is not set
25090 +# CONFIG_HZ_1000 is not set
25091 +CONFIG_HZ=250
25092 +# CONFIG_SCHED_HRTICK is not set
25093 +CONFIG_PREEMPT_NONE=y
25094 +# CONFIG_PREEMPT_VOLUNTARY is not set
25095 +# CONFIG_PREEMPT is not set
25096 +CONFIG_BINFMT_ELF=y
25097 +# CONFIG_BINFMT_MISC is not set
25098 +CONFIG_MATH_EMULATION=y
25099 +# CONFIG_IOMMU_HELPER is not set
25100 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
25101 +CONFIG_ARCH_HAS_WALK_MEMORY=y
25102 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
25103 +CONFIG_ARCH_FLATMEM_ENABLE=y
25104 +CONFIG_ARCH_POPULATES_NODE_MAP=y
25105 +CONFIG_SELECT_MEMORY_MODEL=y
25106 +CONFIG_FLATMEM_MANUAL=y
25107 +# CONFIG_DISCONTIGMEM_MANUAL is not set
25108 +# CONFIG_SPARSEMEM_MANUAL is not set
25109 +CONFIG_FLATMEM=y
25110 +CONFIG_FLAT_NODE_MEM_MAP=y
25111 +# CONFIG_SPARSEMEM_STATIC is not set
25112 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
25113 +CONFIG_SPLIT_PTLOCK_CPUS=4
25114 +# CONFIG_RESOURCES_64BIT is not set
25115 +CONFIG_ZONE_DMA_FLAG=1
25116 +CONFIG_BOUNCE=y
25117 +CONFIG_VIRT_TO_BUS=y
25118 +CONFIG_PROC_DEVICETREE=y
25119 +# CONFIG_CMDLINE_BOOL is not set
25120 +# CONFIG_PM is not set
25121 +CONFIG_SECCOMP=y
25122 +CONFIG_ISA_DMA_API=y
25123 +
25124 +#
25125 +# Bus options
25126 +#
25127 +CONFIG_ZONE_DMA=y
25128 +CONFIG_GENERIC_ISA_DMA=y
25129 +CONFIG_PPC_INDIRECT_PCI=y
25130 +CONFIG_FSL_SOC=y
25131 +CONFIG_PCI=y
25132 +CONFIG_PCI_DOMAINS=y
25133 +CONFIG_PCI_SYSCALL=y
25134 +# CONFIG_PCIEPORTBUS is not set
25135 +CONFIG_ARCH_SUPPORTS_MSI=y
25136 +# CONFIG_PCI_MSI is not set
25137 +CONFIG_PCI_LEGACY=y
25138 +# CONFIG_PCCARD is not set
25139 +# CONFIG_HOTPLUG_PCI is not set
25140 +
25141 +#
25142 +# Advanced setup
25143 +#
25144 +# CONFIG_ADVANCED_OPTIONS is not set
25145 +
25146 +#
25147 +# Default settings for advanced configuration options are used
25148 +#
25149 +CONFIG_HIGHMEM_START=0xfe000000
25150 +CONFIG_LOWMEM_SIZE=0x30000000
25151 +CONFIG_KERNEL_START=0xc0000000
25152 +CONFIG_TASK_SIZE=0xc0000000
25153 +CONFIG_BOOT_LOAD=0x00800000
25154 +
25155 +#
25156 +# Networking
25157 +#
25158 +CONFIG_NET=y
25159 +
25160 +#
25161 +# Networking options
25162 +#
25163 +CONFIG_PACKET=y
25164 +# CONFIG_PACKET_MMAP is not set
25165 +CONFIG_UNIX=y
25166 +CONFIG_XFRM=y
25167 +# CONFIG_XFRM_USER is not set
25168 +# CONFIG_XFRM_SUB_POLICY is not set
25169 +# CONFIG_XFRM_MIGRATE is not set
25170 +# CONFIG_XFRM_STATISTICS is not set
25171 +# CONFIG_NET_KEY is not set
25172 +CONFIG_INET=y
25173 +CONFIG_IP_MULTICAST=y
25174 +# CONFIG_IP_ADVANCED_ROUTER is not set
25175 +CONFIG_IP_FIB_HASH=y
25176 +CONFIG_IP_PNP=y
25177 +CONFIG_IP_PNP_DHCP=y
25178 +CONFIG_IP_PNP_BOOTP=y
25179 +# CONFIG_IP_PNP_RARP is not set
25180 +# CONFIG_NET_IPIP is not set
25181 +# CONFIG_NET_IPGRE is not set
25182 +# CONFIG_IP_MROUTE is not set
25183 +# CONFIG_ARPD is not set
25184 +CONFIG_SYN_COOKIES=y
25185 +# CONFIG_INET_AH is not set
25186 +# CONFIG_INET_ESP is not set
25187 +# CONFIG_INET_IPCOMP is not set
25188 +# CONFIG_INET_XFRM_TUNNEL is not set
25189 +# CONFIG_INET_TUNNEL is not set
25190 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
25191 +CONFIG_INET_XFRM_MODE_TUNNEL=y
25192 +CONFIG_INET_XFRM_MODE_BEET=y
25193 +# CONFIG_INET_LRO is not set
25194 +CONFIG_INET_DIAG=y
25195 +CONFIG_INET_TCP_DIAG=y
25196 +# CONFIG_TCP_CONG_ADVANCED is not set
25197 +CONFIG_TCP_CONG_CUBIC=y
25198 +CONFIG_DEFAULT_TCP_CONG="cubic"
25199 +# CONFIG_TCP_MD5SIG is not set
25200 +# CONFIG_IPV6 is not set
25201 +# CONFIG_INET6_XFRM_TUNNEL is not set
25202 +# CONFIG_INET6_TUNNEL is not set
25203 +# CONFIG_NETWORK_SECMARK is not set
25204 +# CONFIG_NETFILTER is not set
25205 +# CONFIG_IP_DCCP is not set
25206 +# CONFIG_IP_SCTP is not set
25207 +# CONFIG_TIPC is not set
25208 +# CONFIG_ATM is not set
25209 +# CONFIG_BRIDGE is not set
25210 +# CONFIG_VLAN_8021Q is not set
25211 +# CONFIG_DECNET is not set
25212 +# CONFIG_LLC2 is not set
25213 +# CONFIG_IPX is not set
25214 +# CONFIG_ATALK is not set
25215 +# CONFIG_X25 is not set
25216 +# CONFIG_LAPB is not set
25217 +# CONFIG_ECONET is not set
25218 +# CONFIG_WAN_ROUTER is not set
25219 +# CONFIG_NET_SCHED is not set
25220 +
25221 +#
25222 +# Network testing
25223 +#
25224 +# CONFIG_NET_PKTGEN is not set
25225 +# CONFIG_HAMRADIO is not set
25226 +# CONFIG_CAN is not set
25227 +# CONFIG_IRDA is not set
25228 +# CONFIG_BT is not set
25229 +# CONFIG_AF_RXRPC is not set
25230 +
25231 +#
25232 +# Wireless
25233 +#
25234 +# CONFIG_CFG80211 is not set
25235 +# CONFIG_WIRELESS_EXT is not set
25236 +# CONFIG_MAC80211 is not set
25237 +# CONFIG_IEEE80211 is not set
25238 +# CONFIG_RFKILL is not set
25239 +# CONFIG_NET_9P is not set
25240 +
25241 +#
25242 +# Device Drivers
25243 +#
25244 +
25245 +#
25246 +# Generic Driver Options
25247 +#
25248 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
25249 +CONFIG_STANDALONE=y
25250 +CONFIG_PREVENT_FIRMWARE_BUILD=y
25251 +# CONFIG_FW_LOADER is not set
25252 +# CONFIG_SYS_HYPERVISOR is not set
25253 +# CONFIG_CONNECTOR is not set
25254 +# CONFIG_MTD is not set
25255 +CONFIG_OF_DEVICE=y
25256 +# CONFIG_PARPORT is not set
25257 +CONFIG_BLK_DEV=y
25258 +# CONFIG_BLK_DEV_FD is not set
25259 +# CONFIG_BLK_CPQ_DA is not set
25260 +# CONFIG_BLK_CPQ_CISS_DA is not set
25261 +# CONFIG_BLK_DEV_DAC960 is not set
25262 +# CONFIG_BLK_DEV_UMEM is not set
25263 +# CONFIG_BLK_DEV_COW_COMMON is not set
25264 +CONFIG_BLK_DEV_LOOP=y
25265 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
25266 +# CONFIG_BLK_DEV_NBD is not set
25267 +# CONFIG_BLK_DEV_SX8 is not set
25268 +# CONFIG_BLK_DEV_UB is not set
25269 +CONFIG_BLK_DEV_RAM=y
25270 +CONFIG_BLK_DEV_RAM_COUNT=16
25271 +CONFIG_BLK_DEV_RAM_SIZE=32768
25272 +# CONFIG_BLK_DEV_XIP is not set
25273 +# CONFIG_CDROM_PKTCDVD is not set
25274 +# CONFIG_ATA_OVER_ETH is not set
25275 +CONFIG_MISC_DEVICES=y
25276 +# CONFIG_PHANTOM is not set
25277 +# CONFIG_EEPROM_93CX6 is not set
25278 +# CONFIG_SGI_IOC4 is not set
25279 +# CONFIG_TIFM_CORE is not set
25280 +# CONFIG_ENCLOSURE_SERVICES is not set
25281 +CONFIG_HAVE_IDE=y
25282 +# CONFIG_IDE is not set
25283 +
25284 +#
25285 +# SCSI device support
25286 +#
25287 +# CONFIG_RAID_ATTRS is not set
25288 +CONFIG_SCSI=y
25289 +CONFIG_SCSI_DMA=y
25290 +# CONFIG_SCSI_TGT is not set
25291 +# CONFIG_SCSI_NETLINK is not set
25292 +CONFIG_SCSI_PROC_FS=y
25293 +
25294 +#
25295 +# SCSI support type (disk, tape, CD-ROM)
25296 +#
25297 +CONFIG_BLK_DEV_SD=y
25298 +# CONFIG_CHR_DEV_ST is not set
25299 +# CONFIG_CHR_DEV_OSST is not set
25300 +# CONFIG_BLK_DEV_SR is not set
25301 +# CONFIG_CHR_DEV_SG is not set
25302 +# CONFIG_CHR_DEV_SCH is not set
25303 +
25304 +#
25305 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
25306 +#
25307 +# CONFIG_SCSI_MULTI_LUN is not set
25308 +# CONFIG_SCSI_CONSTANTS is not set
25309 +# CONFIG_SCSI_LOGGING is not set
25310 +# CONFIG_SCSI_SCAN_ASYNC is not set
25311 +CONFIG_SCSI_WAIT_SCAN=m
25312 +
25313 +#
25314 +# SCSI Transports
25315 +#
25316 +# CONFIG_SCSI_SPI_ATTRS is not set
25317 +# CONFIG_SCSI_FC_ATTRS is not set
25318 +# CONFIG_SCSI_ISCSI_ATTRS is not set
25319 +# CONFIG_SCSI_SAS_LIBSAS is not set
25320 +# CONFIG_SCSI_SRP_ATTRS is not set
25321 +CONFIG_SCSI_LOWLEVEL=y
25322 +# CONFIG_ISCSI_TCP is not set
25323 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
25324 +# CONFIG_SCSI_3W_9XXX is not set
25325 +# CONFIG_SCSI_ACARD is not set
25326 +# CONFIG_SCSI_AACRAID is not set
25327 +# CONFIG_SCSI_AIC7XXX is not set
25328 +# CONFIG_SCSI_AIC7XXX_OLD is not set
25329 +# CONFIG_SCSI_AIC79XX is not set
25330 +# CONFIG_SCSI_AIC94XX is not set
25331 +# CONFIG_SCSI_DPT_I2O is not set
25332 +# CONFIG_SCSI_ADVANSYS is not set
25333 +# CONFIG_SCSI_ARCMSR is not set
25334 +# CONFIG_MEGARAID_NEWGEN is not set
25335 +# CONFIG_MEGARAID_LEGACY is not set
25336 +# CONFIG_MEGARAID_SAS is not set
25337 +# CONFIG_SCSI_HPTIOP is not set
25338 +# CONFIG_SCSI_BUSLOGIC is not set
25339 +# CONFIG_SCSI_DMX3191D is not set
25340 +# CONFIG_SCSI_EATA is not set
25341 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
25342 +# CONFIG_SCSI_GDTH is not set
25343 +# CONFIG_SCSI_IPS is not set
25344 +# CONFIG_SCSI_INITIO is not set
25345 +# CONFIG_SCSI_INIA100 is not set
25346 +# CONFIG_SCSI_MVSAS is not set
25347 +# CONFIG_SCSI_STEX is not set
25348 +# CONFIG_SCSI_SYM53C8XX_2 is not set
25349 +# CONFIG_SCSI_QLOGIC_1280 is not set
25350 +# CONFIG_SCSI_QLA_FC is not set
25351 +# CONFIG_SCSI_QLA_ISCSI is not set
25352 +# CONFIG_SCSI_LPFC is not set
25353 +# CONFIG_SCSI_DC395x is not set
25354 +# CONFIG_SCSI_DC390T is not set
25355 +# CONFIG_SCSI_NSP32 is not set
25356 +# CONFIG_SCSI_DEBUG is not set
25357 +# CONFIG_SCSI_SRP is not set
25358 +# CONFIG_ATA is not set
25359 +# CONFIG_MD is not set
25360 +# CONFIG_FUSION is not set
25361 +
25362 +#
25363 +# IEEE 1394 (FireWire) support
25364 +#
25365 +# CONFIG_FIREWIRE is not set
25366 +# CONFIG_IEEE1394 is not set
25367 +# CONFIG_I2O is not set
25368 +# CONFIG_MACINTOSH_DRIVERS is not set
25369 +CONFIG_NETDEVICES=y
25370 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
25371 +# CONFIG_DUMMY is not set
25372 +# CONFIG_BONDING is not set
25373 +# CONFIG_MACVLAN is not set
25374 +# CONFIG_EQUALIZER is not set
25375 +# CONFIG_TUN is not set
25376 +# CONFIG_VETH is not set
25377 +# CONFIG_ARCNET is not set
25378 +CONFIG_PHYLIB=y
25379 +
25380 +#
25381 +# MII PHY device drivers
25382 +#
25383 +# CONFIG_MARVELL_PHY is not set
25384 +# CONFIG_DAVICOM_PHY is not set
25385 +# CONFIG_QSEMI_PHY is not set
25386 +# CONFIG_LXT_PHY is not set
25387 +# CONFIG_CICADA_PHY is not set
25388 +# CONFIG_VITESSE_PHY is not set
25389 +# CONFIG_SMSC_PHY is not set
25390 +# CONFIG_BROADCOM_PHY is not set
25391 +CONFIG_ICPLUS_PHY=y
25392 +# CONFIG_REALTEK_PHY is not set
25393 +# CONFIG_FIXED_PHY is not set
25394 +# CONFIG_MDIO_BITBANG is not set
25395 +CONFIG_NET_ETHERNET=y
25396 +CONFIG_MII=y
25397 +# CONFIG_HAPPYMEAL is not set
25398 +# CONFIG_SUNGEM is not set
25399 +# CONFIG_CASSINI is not set
25400 +# CONFIG_NET_VENDOR_3COM is not set
25401 +# CONFIG_ENC28J60 is not set
25402 +# CONFIG_NET_TULIP is not set
25403 +# CONFIG_HP100 is not set
25404 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
25405 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
25406 +# CONFIG_IBM_NEW_EMAC_TAH is not set
25407 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
25408 +# CONFIG_NET_PCI is not set
25409 +# CONFIG_B44 is not set
25410 +CONFIG_NETDEV_1000=y
25411 +# CONFIG_ACENIC is not set
25412 +# CONFIG_DL2K is not set
25413 +CONFIG_E1000=y
25414 +# CONFIG_E1000_NAPI is not set
25415 +# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set
25416 +# CONFIG_E1000E is not set
25417 +# CONFIG_E1000E_ENABLED is not set
25418 +# CONFIG_IP1000 is not set
25419 +# CONFIG_IGB is not set
25420 +# CONFIG_NS83820 is not set
25421 +# CONFIG_HAMACHI is not set
25422 +# CONFIG_YELLOWFIN is not set
25423 +# CONFIG_R8169 is not set
25424 +# CONFIG_SIS190 is not set
25425 +# CONFIG_SKGE is not set
25426 +# CONFIG_SKY2 is not set
25427 +# CONFIG_SK98LIN is not set
25428 +# CONFIG_VIA_VELOCITY is not set
25429 +# CONFIG_TIGON3 is not set
25430 +# CONFIG_BNX2 is not set
25431 +# CONFIG_GIANFAR is not set
25432 +CONFIG_UCC_GETH=y
25433 +CONFIG_UGETH_NAPI=y
25434 +# CONFIG_UGETH_MAGIC_PACKET is not set
25435 +# CONFIG_UGETH_FILTERING is not set
25436 +# CONFIG_UGETH_TX_ON_DEMAND is not set
25437 +# CONFIG_QLA3XXX is not set
25438 +# CONFIG_ATL1 is not set
25439 +CONFIG_NETDEV_10000=y
25440 +# CONFIG_CHELSIO_T1 is not set
25441 +# CONFIG_CHELSIO_T3 is not set
25442 +# CONFIG_IXGBE is not set
25443 +# CONFIG_IXGB is not set
25444 +# CONFIG_S2IO is not set
25445 +# CONFIG_MYRI10GE is not set
25446 +# CONFIG_NETXEN_NIC is not set
25447 +# CONFIG_NIU is not set
25448 +# CONFIG_MLX4_CORE is not set
25449 +# CONFIG_TEHUTI is not set
25450 +# CONFIG_BNX2X is not set
25451 +# CONFIG_TR is not set
25452 +
25453 +#
25454 +# Wireless LAN
25455 +#
25456 +# CONFIG_WLAN_PRE80211 is not set
25457 +# CONFIG_WLAN_80211 is not set
25458 +
25459 +#
25460 +# USB Network Adapters
25461 +#
25462 +# CONFIG_USB_CATC is not set
25463 +# CONFIG_USB_KAWETH is not set
25464 +# CONFIG_USB_PEGASUS is not set
25465 +# CONFIG_USB_RTL8150 is not set
25466 +# CONFIG_USB_USBNET is not set
25467 +# CONFIG_WAN is not set
25468 +# CONFIG_FDDI is not set
25469 +# CONFIG_HIPPI is not set
25470 +# CONFIG_PPP is not set
25471 +# CONFIG_SLIP is not set
25472 +# CONFIG_NET_FC is not set
25473 +# CONFIG_NETCONSOLE is not set
25474 +# CONFIG_NETPOLL is not set
25475 +# CONFIG_NET_POLL_CONTROLLER is not set
25476 +# CONFIG_ISDN is not set
25477 +# CONFIG_PHONE is not set
25478 +
25479 +#
25480 +# Input device support
25481 +#
25482 +CONFIG_INPUT=y
25483 +# CONFIG_INPUT_FF_MEMLESS is not set
25484 +# CONFIG_INPUT_POLLDEV is not set
25485 +
25486 +#
25487 +# Userland interfaces
25488 +#
25489 +# CONFIG_INPUT_MOUSEDEV is not set
25490 +# CONFIG_INPUT_JOYDEV is not set
25491 +# CONFIG_INPUT_EVDEV is not set
25492 +# CONFIG_INPUT_EVBUG is not set
25493 +
25494 +#
25495 +# Input Device Drivers
25496 +#
25497 +# CONFIG_INPUT_KEYBOARD is not set
25498 +# CONFIG_INPUT_MOUSE is not set
25499 +# CONFIG_INPUT_JOYSTICK is not set
25500 +# CONFIG_INPUT_TABLET is not set
25501 +# CONFIG_INPUT_TOUCHSCREEN is not set
25502 +# CONFIG_INPUT_MISC is not set
25503 +
25504 +#
25505 +# Hardware I/O ports
25506 +#
25507 +# CONFIG_SERIO is not set
25508 +# CONFIG_GAMEPORT is not set
25509 +
25510 +#
25511 +# Character devices
25512 +#
25513 +# CONFIG_VT is not set
25514 +# CONFIG_SERIAL_NONSTANDARD is not set
25515 +# CONFIG_NOZOMI is not set
25516 +
25517 +#
25518 +# Serial drivers
25519 +#
25520 +CONFIG_SERIAL_8250=y
25521 +CONFIG_SERIAL_8250_CONSOLE=y
25522 +CONFIG_SERIAL_8250_PCI=y
25523 +CONFIG_SERIAL_8250_NR_UARTS=4
25524 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
25525 +# CONFIG_SERIAL_8250_EXTENDED is not set
25526 +
25527 +#
25528 +# Non-8250 serial port support
25529 +#
25530 +# CONFIG_SERIAL_UARTLITE is not set
25531 +CONFIG_SERIAL_CORE=y
25532 +CONFIG_SERIAL_CORE_CONSOLE=y
25533 +# CONFIG_SERIAL_JSM is not set
25534 +# CONFIG_SERIAL_OF_PLATFORM is not set
25535 +# CONFIG_SERIAL_QE is not set
25536 +CONFIG_UNIX98_PTYS=y
25537 +CONFIG_LEGACY_PTYS=y
25538 +CONFIG_LEGACY_PTY_COUNT=256
25539 +# CONFIG_IPMI_HANDLER is not set
25540 +CONFIG_HW_RANDOM=y
25541 +# CONFIG_NVRAM is not set
25542 +CONFIG_GEN_RTC=y
25543 +# CONFIG_GEN_RTC_X is not set
25544 +# CONFIG_R3964 is not set
25545 +# CONFIG_APPLICOM is not set
25546 +# CONFIG_RAW_DRIVER is not set
25547 +# CONFIG_TCG_TPM is not set
25548 +CONFIG_DEVPORT=y
25549 +CONFIG_I2C=y
25550 +CONFIG_I2C_BOARDINFO=y
25551 +CONFIG_I2C_CHARDEV=y
25552 +
25553 +#
25554 +# I2C Algorithms
25555 +#
25556 +# CONFIG_I2C_ALGOBIT is not set
25557 +# CONFIG_I2C_ALGOPCF is not set
25558 +# CONFIG_I2C_ALGOPCA is not set
25559 +
25560 +#
25561 +# I2C Hardware Bus support
25562 +#
25563 +# CONFIG_I2C_ALI1535 is not set
25564 +# CONFIG_I2C_ALI1563 is not set
25565 +# CONFIG_I2C_ALI15X3 is not set
25566 +# CONFIG_I2C_AMD756 is not set
25567 +# CONFIG_I2C_AMD8111 is not set
25568 +# CONFIG_I2C_I801 is not set
25569 +# CONFIG_I2C_I810 is not set
25570 +# CONFIG_I2C_PIIX4 is not set
25571 +CONFIG_I2C_MPC=y
25572 +# CONFIG_I2C_NFORCE2 is not set
25573 +# CONFIG_I2C_OCORES is not set
25574 +# CONFIG_I2C_PARPORT_LIGHT is not set
25575 +# CONFIG_I2C_PROSAVAGE is not set
25576 +# CONFIG_I2C_SAVAGE4 is not set
25577 +# CONFIG_I2C_SIMTEC is not set
25578 +# CONFIG_I2C_SIS5595 is not set
25579 +# CONFIG_I2C_SIS630 is not set
25580 +# CONFIG_I2C_SIS96X is not set
25581 +# CONFIG_I2C_TAOS_EVM is not set
25582 +# CONFIG_I2C_STUB is not set
25583 +# CONFIG_I2C_TINY_USB is not set
25584 +# CONFIG_I2C_VIA is not set
25585 +# CONFIG_I2C_VIAPRO is not set
25586 +# CONFIG_I2C_VOODOO3 is not set
25587 +
25588 +#
25589 +# Miscellaneous I2C Chip support
25590 +#
25591 +# CONFIG_DS1682 is not set
25592 +# CONFIG_SENSORS_EEPROM is not set
25593 +# CONFIG_SENSORS_PCF8574 is not set
25594 +# CONFIG_PCF8575 is not set
25595 +# CONFIG_SENSORS_PCF8591 is not set
25596 +# CONFIG_TPS65010 is not set
25597 +# CONFIG_SENSORS_MAX6875 is not set
25598 +# CONFIG_SENSORS_TSL2550 is not set
25599 +# CONFIG_I2C_DEBUG_CORE is not set
25600 +# CONFIG_I2C_DEBUG_ALGO is not set
25601 +# CONFIG_I2C_DEBUG_BUS is not set
25602 +# CONFIG_I2C_DEBUG_CHIP is not set
25603 +
25604 +#
25605 +# SPI support
25606 +#
25607 +CONFIG_SPI=y
25608 +CONFIG_SPI_MASTER=y
25609 +
25610 +#
25611 +# SPI Master Controller Drivers
25612 +#
25613 +CONFIG_SPI_BITBANG=y
25614 +CONFIG_SPI_MPC83xx=y
25615 +
25616 +#
25617 +# SPI Protocol Masters
25618 +#
25619 +# CONFIG_SPI_AT25 is not set
25620 +# CONFIG_SPI_SPIDEV is not set
25621 +# CONFIG_SPI_TLE62X0 is not set
25622 +# CONFIG_W1 is not set
25623 +# CONFIG_POWER_SUPPLY is not set
25624 +CONFIG_HWMON=y
25625 +# CONFIG_HWMON_VID is not set
25626 +# CONFIG_SENSORS_AD7418 is not set
25627 +# CONFIG_SENSORS_ADM1021 is not set
25628 +# CONFIG_SENSORS_ADM1025 is not set
25629 +# CONFIG_SENSORS_ADM1026 is not set
25630 +# CONFIG_SENSORS_ADM1029 is not set
25631 +# CONFIG_SENSORS_ADM1031 is not set
25632 +# CONFIG_SENSORS_ADM9240 is not set
25633 +# CONFIG_SENSORS_ADT7470 is not set
25634 +# CONFIG_SENSORS_ADT7473 is not set
25635 +# CONFIG_SENSORS_ATXP1 is not set
25636 +# CONFIG_SENSORS_DS1621 is not set
25637 +# CONFIG_SENSORS_I5K_AMB is not set
25638 +# CONFIG_SENSORS_F71805F is not set
25639 +# CONFIG_SENSORS_F71882FG is not set
25640 +# CONFIG_SENSORS_F75375S is not set
25641 +# CONFIG_SENSORS_GL518SM is not set
25642 +# CONFIG_SENSORS_GL520SM is not set
25643 +# CONFIG_SENSORS_IT87 is not set
25644 +# CONFIG_SENSORS_LM63 is not set
25645 +# CONFIG_SENSORS_LM70 is not set
25646 +# CONFIG_SENSORS_LM75 is not set
25647 +# CONFIG_SENSORS_LM77 is not set
25648 +# CONFIG_SENSORS_LM78 is not set
25649 +# CONFIG_SENSORS_LM80 is not set
25650 +# CONFIG_SENSORS_LM83 is not set
25651 +# CONFIG_SENSORS_LM85 is not set
25652 +# CONFIG_SENSORS_LM87 is not set
25653 +# CONFIG_SENSORS_LM90 is not set
25654 +# CONFIG_SENSORS_LM92 is not set
25655 +# CONFIG_SENSORS_LM93 is not set
25656 +# CONFIG_SENSORS_MAX1619 is not set
25657 +# CONFIG_SENSORS_MAX6650 is not set
25658 +# CONFIG_SENSORS_PC87360 is not set
25659 +# CONFIG_SENSORS_PC87427 is not set
25660 +# CONFIG_SENSORS_SIS5595 is not set
25661 +# CONFIG_SENSORS_DME1737 is not set
25662 +# CONFIG_SENSORS_SMSC47M1 is not set
25663 +# CONFIG_SENSORS_SMSC47M192 is not set
25664 +# CONFIG_SENSORS_SMSC47B397 is not set
25665 +# CONFIG_SENSORS_ADS7828 is not set
25666 +# CONFIG_SENSORS_THMC50 is not set
25667 +# CONFIG_SENSORS_VIA686A is not set
25668 +# CONFIG_SENSORS_VT1211 is not set
25669 +# CONFIG_SENSORS_VT8231 is not set
25670 +# CONFIG_SENSORS_W83781D is not set
25671 +# CONFIG_SENSORS_W83791D is not set
25672 +# CONFIG_SENSORS_W83792D is not set
25673 +# CONFIG_SENSORS_W83793 is not set
25674 +# CONFIG_SENSORS_W83L785TS is not set
25675 +# CONFIG_SENSORS_W83L786NG is not set
25676 +# CONFIG_SENSORS_W83627HF is not set
25677 +# CONFIG_SENSORS_W83627EHF is not set
25678 +# CONFIG_HWMON_DEBUG_CHIP is not set
25679 +# CONFIG_THERMAL is not set
25680 +CONFIG_WATCHDOG=y
25681 +# CONFIG_WATCHDOG_NOWAYOUT is not set
25682 +
25683 +#
25684 +# Watchdog Device Drivers
25685 +#
25686 +# CONFIG_SOFT_WATCHDOG is not set
25687 +CONFIG_83xx_WDT=y
25688 +
25689 +#
25690 +# PCI-based Watchdog Cards
25691 +#
25692 +# CONFIG_PCIPCWATCHDOG is not set
25693 +# CONFIG_WDTPCI is not set
25694 +
25695 +#
25696 +# USB-based Watchdog Cards
25697 +#
25698 +# CONFIG_USBPCWATCHDOG is not set
25699 +
25700 +#
25701 +# Sonics Silicon Backplane
25702 +#
25703 +CONFIG_SSB_POSSIBLE=y
25704 +# CONFIG_SSB is not set
25705 +
25706 +#
25707 +# Multifunction device drivers
25708 +#
25709 +# CONFIG_MFD_SM501 is not set
25710 +
25711 +#
25712 +# Multimedia devices
25713 +#
25714 +# CONFIG_VIDEO_DEV is not set
25715 +# CONFIG_DVB_CORE is not set
25716 +CONFIG_DAB=y
25717 +# CONFIG_USB_DABUSB is not set
25718 +
25719 +#
25720 +# Graphics support
25721 +#
25722 +# CONFIG_AGP is not set
25723 +# CONFIG_DRM is not set
25724 +# CONFIG_VGASTATE is not set
25725 +CONFIG_VIDEO_OUTPUT_CONTROL=m
25726 +# CONFIG_FB is not set
25727 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
25728 +
25729 +#
25730 +# Display device support
25731 +#
25732 +# CONFIG_DISPLAY_SUPPORT is not set
25733 +
25734 +#
25735 +# Sound
25736 +#
25737 +# CONFIG_SOUND is not set
25738 +CONFIG_HID_SUPPORT=y
25739 +CONFIG_HID=y
25740 +# CONFIG_HID_DEBUG is not set
25741 +# CONFIG_HIDRAW is not set
25742 +
25743 +#
25744 +# USB Input Devices
25745 +#
25746 +# CONFIG_USB_HID is not set
25747 +
25748 +#
25749 +# USB HID Boot Protocol drivers
25750 +#
25751 +# CONFIG_USB_KBD is not set
25752 +# CONFIG_USB_MOUSE is not set
25753 +CONFIG_USB_SUPPORT=y
25754 +CONFIG_USB_ARCH_HAS_HCD=y
25755 +CONFIG_USB_ARCH_HAS_OHCI=y
25756 +CONFIG_USB_ARCH_HAS_EHCI=y
25757 +CONFIG_USB=y
25758 +# CONFIG_USB_DEBUG is not set
25759 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
25760 +
25761 +#
25762 +# Miscellaneous USB options
25763 +#
25764 +CONFIG_USB_DEVICEFS=y
25765 +CONFIG_USB_DEVICE_CLASS=y
25766 +# CONFIG_USB_DYNAMIC_MINORS is not set
25767 +# CONFIG_USB_OTG is not set
25768 +
25769 +#
25770 +# USB Host Controller Drivers
25771 +#
25772 +CONFIG_USB_EHCI_HCD=y
25773 +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
25774 +# CONFIG_USB_EHCI_TT_NEWSCHED is not set
25775 +# CONFIG_USB_EHCI_FSL is not set
25776 +CONFIG_USB_EHCI_HCD_PPC_OF=y
25777 +# CONFIG_USB_ISP116X_HCD is not set
25778 +CONFIG_USB_OHCI_HCD=y
25779 +CONFIG_USB_OHCI_HCD_PPC_OF=y
25780 +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
25781 +# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set
25782 +CONFIG_USB_OHCI_HCD_PCI=y
25783 +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
25784 +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
25785 +CONFIG_USB_OHCI_LITTLE_ENDIAN=y
25786 +# CONFIG_USB_UHCI_HCD is not set
25787 +# CONFIG_USB_SL811_HCD is not set
25788 +# CONFIG_USB_R8A66597_HCD is not set
25789 +
25790 +#
25791 +# USB Device Class drivers
25792 +#
25793 +# CONFIG_USB_ACM is not set
25794 +# CONFIG_USB_PRINTER is not set
25795 +
25796 +#
25797 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
25798 +#
25799 +
25800 +#
25801 +# may also be needed; see USB_STORAGE Help for more information
25802 +#
25803 +CONFIG_USB_STORAGE=y
25804 +# CONFIG_USB_STORAGE_DEBUG is not set
25805 +# CONFIG_USB_STORAGE_DATAFAB is not set
25806 +# CONFIG_USB_STORAGE_FREECOM is not set
25807 +# CONFIG_USB_STORAGE_ISD200 is not set
25808 +# CONFIG_USB_STORAGE_DPCM is not set
25809 +# CONFIG_USB_STORAGE_USBAT is not set
25810 +# CONFIG_USB_STORAGE_SDDR09 is not set
25811 +# CONFIG_USB_STORAGE_SDDR55 is not set
25812 +# CONFIG_USB_STORAGE_JUMPSHOT is not set
25813 +# CONFIG_USB_STORAGE_ALAUDA is not set
25814 +# CONFIG_USB_STORAGE_KARMA is not set
25815 +# CONFIG_USB_LIBUSUAL is not set
25816 +
25817 +#
25818 +# USB Imaging devices
25819 +#
25820 +# CONFIG_USB_MDC800 is not set
25821 +# CONFIG_USB_MICROTEK is not set
25822 +CONFIG_USB_MON=y
25823 +
25824 +#
25825 +# USB port drivers
25826 +#
25827 +# CONFIG_USB_SERIAL is not set
25828 +
25829 +#
25830 +# USB Miscellaneous drivers
25831 +#
25832 +# CONFIG_USB_EMI62 is not set
25833 +# CONFIG_USB_EMI26 is not set
25834 +# CONFIG_USB_ADUTUX is not set
25835 +# CONFIG_USB_AUERSWALD is not set
25836 +# CONFIG_USB_RIO500 is not set
25837 +# CONFIG_USB_LEGOTOWER is not set
25838 +# CONFIG_USB_LCD is not set
25839 +# CONFIG_USB_BERRY_CHARGE is not set
25840 +# CONFIG_USB_LED is not set
25841 +# CONFIG_USB_CYPRESS_CY7C63 is not set
25842 +# CONFIG_USB_CYTHERM is not set
25843 +# CONFIG_USB_PHIDGET is not set
25844 +# CONFIG_USB_IDMOUSE is not set
25845 +# CONFIG_USB_FTDI_ELAN is not set
25846 +# CONFIG_USB_APPLEDISPLAY is not set
25847 +# CONFIG_USB_SISUSBVGA is not set
25848 +# CONFIG_USB_LD is not set
25849 +# CONFIG_USB_TRANCEVIBRATOR is not set
25850 +# CONFIG_USB_IOWARRIOR is not set
25851 +# CONFIG_USB_TEST is not set
25852 +# CONFIG_USB_GADGET is not set
25853 +CONFIG_MMC=y
25854 +# CONFIG_MMC_DEBUG is not set
25855 +# CONFIG_MMC_UNSAFE_RESUME is not set
25856 +
25857 +#
25858 +# MMC/SD Card Drivers
25859 +#
25860 +CONFIG_MMC_BLOCK=y
25861 +CONFIG_MMC_BLOCK_BOUNCE=y
25862 +# CONFIG_SDIO_UART is not set
25863 +
25864 +#
25865 +# MMC/SD Host Controller Drivers
25866 +#
25867 +# CONFIG_MMC_SDHCI is not set
25868 +# CONFIG_MMC_WBSD is not set
25869 +# CONFIG_MMC_TIFM_SD is not set
25870 +CONFIG_MMC_SPI=y
25871 +# CONFIG_MEMSTICK is not set
25872 +# CONFIG_NEW_LEDS is not set
25873 +# CONFIG_INFINIBAND is not set
25874 +# CONFIG_EDAC is not set
25875 +# CONFIG_RTC_CLASS is not set
25876 +# CONFIG_DMADEVICES is not set
25877 +
25878 +#
25879 +# Userspace I/O
25880 +#
25881 +# CONFIG_UIO is not set
25882 +
25883 +#
25884 +# File systems
25885 +#
25886 +CONFIG_EXT2_FS=y
25887 +# CONFIG_EXT2_FS_XATTR is not set
25888 +# CONFIG_EXT2_FS_XIP is not set
25889 +CONFIG_EXT3_FS=y
25890 +CONFIG_EXT3_FS_XATTR=y
25891 +# CONFIG_EXT3_FS_POSIX_ACL is not set
25892 +# CONFIG_EXT3_FS_SECURITY is not set
25893 +# CONFIG_EXT4DEV_FS is not set
25894 +CONFIG_JBD=y
25895 +CONFIG_FS_MBCACHE=y
25896 +# CONFIG_REISERFS_FS is not set
25897 +# CONFIG_JFS_FS is not set
25898 +# CONFIG_FS_POSIX_ACL is not set
25899 +# CONFIG_XFS_FS is not set
25900 +# CONFIG_GFS2_FS is not set
25901 +# CONFIG_OCFS2_FS is not set
25902 +CONFIG_DNOTIFY=y
25903 +CONFIG_INOTIFY=y
25904 +CONFIG_INOTIFY_USER=y
25905 +# CONFIG_QUOTA is not set
25906 +# CONFIG_AUTOFS_FS is not set
25907 +# CONFIG_AUTOFS4_FS is not set
25908 +# CONFIG_FUSE_FS is not set
25909 +
25910 +#
25911 +# CD-ROM/DVD Filesystems
25912 +#
25913 +# CONFIG_ISO9660_FS is not set
25914 +# CONFIG_UDF_FS is not set
25915 +
25916 +#
25917 +# DOS/FAT/NT Filesystems
25918 +#
25919 +CONFIG_FAT_FS=y
25920 +CONFIG_MSDOS_FS=y
25921 +CONFIG_VFAT_FS=y
25922 +CONFIG_FAT_DEFAULT_CODEPAGE=437
25923 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
25924 +# CONFIG_NTFS_FS is not set
25925 +
25926 +#
25927 +# Pseudo filesystems
25928 +#
25929 +CONFIG_PROC_FS=y
25930 +CONFIG_PROC_KCORE=y
25931 +CONFIG_PROC_SYSCTL=y
25932 +CONFIG_SYSFS=y
25933 +CONFIG_TMPFS=y
25934 +# CONFIG_TMPFS_POSIX_ACL is not set
25935 +# CONFIG_HUGETLB_PAGE is not set
25936 +# CONFIG_CONFIGFS_FS is not set
25937 +
25938 +#
25939 +# Miscellaneous filesystems
25940 +#
25941 +# CONFIG_ADFS_FS is not set
25942 +# CONFIG_AFFS_FS is not set
25943 +# CONFIG_HFS_FS is not set
25944 +# CONFIG_HFSPLUS_FS is not set
25945 +# CONFIG_BEFS_FS is not set
25946 +# CONFIG_BFS_FS is not set
25947 +# CONFIG_EFS_FS is not set
25948 +# CONFIG_CRAMFS is not set
25949 +# CONFIG_VXFS_FS is not set
25950 +# CONFIG_MINIX_FS is not set
25951 +# CONFIG_HPFS_FS is not set
25952 +# CONFIG_QNX4FS_FS is not set
25953 +# CONFIG_ROMFS_FS is not set
25954 +# CONFIG_SYSV_FS is not set
25955 +# CONFIG_UFS_FS is not set
25956 +CONFIG_NETWORK_FILESYSTEMS=y
25957 +CONFIG_NFS_FS=y
25958 +CONFIG_NFS_V3=y
25959 +# CONFIG_NFS_V3_ACL is not set
25960 +CONFIG_NFS_V4=y
25961 +# CONFIG_NFS_DIRECTIO is not set
25962 +# CONFIG_NFSD is not set
25963 +CONFIG_ROOT_NFS=y
25964 +CONFIG_LOCKD=y
25965 +CONFIG_LOCKD_V4=y
25966 +CONFIG_NFS_COMMON=y
25967 +CONFIG_SUNRPC=y
25968 +CONFIG_SUNRPC_GSS=y
25969 +# CONFIG_SUNRPC_BIND34 is not set
25970 +CONFIG_RPCSEC_GSS_KRB5=y
25971 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
25972 +# CONFIG_SMB_FS is not set
25973 +# CONFIG_CIFS is not set
25974 +# CONFIG_NCP_FS is not set
25975 +# CONFIG_CODA_FS is not set
25976 +# CONFIG_AFS_FS is not set
25977 +
25978 +#
25979 +# Partition Types
25980 +#
25981 +CONFIG_PARTITION_ADVANCED=y
25982 +# CONFIG_ACORN_PARTITION is not set
25983 +# CONFIG_OSF_PARTITION is not set
25984 +# CONFIG_AMIGA_PARTITION is not set
25985 +# CONFIG_ATARI_PARTITION is not set
25986 +# CONFIG_MAC_PARTITION is not set
25987 +CONFIG_MSDOS_PARTITION=y
25988 +# CONFIG_BSD_DISKLABEL is not set
25989 +# CONFIG_MINIX_SUBPARTITION is not set
25990 +# CONFIG_SOLARIS_X86_PARTITION is not set
25991 +# CONFIG_UNIXWARE_DISKLABEL is not set
25992 +CONFIG_LDM_PARTITION=y
25993 +# CONFIG_LDM_DEBUG is not set
25994 +# CONFIG_SGI_PARTITION is not set
25995 +# CONFIG_ULTRIX_PARTITION is not set
25996 +# CONFIG_SUN_PARTITION is not set
25997 +# CONFIG_KARMA_PARTITION is not set
25998 +# CONFIG_EFI_PARTITION is not set
25999 +# CONFIG_SYSV68_PARTITION is not set
26000 +CONFIG_NLS=y
26001 +CONFIG_NLS_DEFAULT="iso8859-1"
26002 +CONFIG_NLS_CODEPAGE_437=y
26003 +# CONFIG_NLS_CODEPAGE_737 is not set
26004 +# CONFIG_NLS_CODEPAGE_775 is not set
26005 +# CONFIG_NLS_CODEPAGE_850 is not set
26006 +# CONFIG_NLS_CODEPAGE_852 is not set
26007 +# CONFIG_NLS_CODEPAGE_855 is not set
26008 +# CONFIG_NLS_CODEPAGE_857 is not set
26009 +# CONFIG_NLS_CODEPAGE_860 is not set
26010 +# CONFIG_NLS_CODEPAGE_861 is not set
26011 +# CONFIG_NLS_CODEPAGE_862 is not set
26012 +# CONFIG_NLS_CODEPAGE_863 is not set
26013 +# CONFIG_NLS_CODEPAGE_864 is not set
26014 +# CONFIG_NLS_CODEPAGE_865 is not set
26015 +# CONFIG_NLS_CODEPAGE_866 is not set
26016 +# CONFIG_NLS_CODEPAGE_869 is not set
26017 +# CONFIG_NLS_CODEPAGE_936 is not set
26018 +# CONFIG_NLS_CODEPAGE_950 is not set
26019 +CONFIG_NLS_CODEPAGE_932=y
26020 +# CONFIG_NLS_CODEPAGE_949 is not set
26021 +# CONFIG_NLS_CODEPAGE_874 is not set
26022 +CONFIG_NLS_ISO8859_8=y
26023 +# CONFIG_NLS_CODEPAGE_1250 is not set
26024 +# CONFIG_NLS_CODEPAGE_1251 is not set
26025 +# CONFIG_NLS_ASCII is not set
26026 +CONFIG_NLS_ISO8859_1=y
26027 +# CONFIG_NLS_ISO8859_2 is not set
26028 +# CONFIG_NLS_ISO8859_3 is not set
26029 +# CONFIG_NLS_ISO8859_4 is not set
26030 +# CONFIG_NLS_ISO8859_5 is not set
26031 +# CONFIG_NLS_ISO8859_6 is not set
26032 +# CONFIG_NLS_ISO8859_7 is not set
26033 +# CONFIG_NLS_ISO8859_9 is not set
26034 +# CONFIG_NLS_ISO8859_13 is not set
26035 +# CONFIG_NLS_ISO8859_14 is not set
26036 +# CONFIG_NLS_ISO8859_15 is not set
26037 +# CONFIG_NLS_KOI8_R is not set
26038 +# CONFIG_NLS_KOI8_U is not set
26039 +# CONFIG_NLS_UTF8 is not set
26040 +# CONFIG_DLM is not set
26041 +CONFIG_UCC_FAST=y
26042 +CONFIG_UCC=y
26043 +
26044 +#
26045 +# Library routines
26046 +#
26047 +CONFIG_BITREVERSE=y
26048 +# CONFIG_CRC_CCITT is not set
26049 +# CONFIG_CRC16 is not set
26050 +CONFIG_CRC_ITU_T=y
26051 +CONFIG_CRC32=y
26052 +CONFIG_CRC7=y
26053 +# CONFIG_LIBCRC32C is not set
26054 +CONFIG_PLIST=y
26055 +CONFIG_HAS_IOMEM=y
26056 +CONFIG_HAS_IOPORT=y
26057 +CONFIG_HAS_DMA=y
26058 +
26059 +#
26060 +# Kernel hacking
26061 +#
26062 +# CONFIG_PRINTK_TIME is not set
26063 +CONFIG_ENABLE_WARN_DEPRECATED=y
26064 +CONFIG_ENABLE_MUST_CHECK=y
26065 +# CONFIG_MAGIC_SYSRQ is not set
26066 +# CONFIG_UNUSED_SYMBOLS is not set
26067 +# CONFIG_DEBUG_FS is not set
26068 +# CONFIG_HEADERS_CHECK is not set
26069 +# CONFIG_DEBUG_KERNEL is not set
26070 +# CONFIG_SLUB_DEBUG_ON is not set
26071 +# CONFIG_SLUB_STATS is not set
26072 +# CONFIG_DEBUG_BUGVERBOSE is not set
26073 +# CONFIG_SAMPLES is not set
26074 +# CONFIG_PPC_EARLY_DEBUG is not set
26075 +
26076 +#
26077 +# Security options
26078 +#
26079 +# CONFIG_KEYS is not set
26080 +# CONFIG_SECURITY is not set
26081 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
26082 +CONFIG_CRYPTO=y
26083 +CONFIG_CRYPTO_ALGAPI=y
26084 +CONFIG_CRYPTO_BLKCIPHER=y
26085 +# CONFIG_CRYPTO_SEQIV is not set
26086 +CONFIG_CRYPTO_MANAGER=y
26087 +# CONFIG_CRYPTO_HMAC is not set
26088 +# CONFIG_CRYPTO_XCBC is not set
26089 +# CONFIG_CRYPTO_NULL is not set
26090 +# CONFIG_CRYPTO_MD4 is not set
26091 +CONFIG_CRYPTO_MD5=y
26092 +# CONFIG_CRYPTO_SHA1 is not set
26093 +# CONFIG_CRYPTO_SHA256 is not set
26094 +# CONFIG_CRYPTO_SHA512 is not set
26095 +# CONFIG_CRYPTO_WP512 is not set
26096 +# CONFIG_CRYPTO_TGR192 is not set
26097 +# CONFIG_CRYPTO_GF128MUL is not set
26098 +CONFIG_CRYPTO_ECB=m
26099 +CONFIG_CRYPTO_CBC=y
26100 +CONFIG_CRYPTO_PCBC=m
26101 +# CONFIG_CRYPTO_LRW is not set
26102 +# CONFIG_CRYPTO_XTS is not set
26103 +# CONFIG_CRYPTO_CTR is not set
26104 +# CONFIG_CRYPTO_GCM is not set
26105 +# CONFIG_CRYPTO_CCM is not set
26106 +# CONFIG_CRYPTO_CRYPTD is not set
26107 +CONFIG_CRYPTO_DES=y
26108 +# CONFIG_CRYPTO_FCRYPT is not set
26109 +# CONFIG_CRYPTO_BLOWFISH is not set
26110 +# CONFIG_CRYPTO_TWOFISH is not set
26111 +# CONFIG_CRYPTO_SERPENT is not set
26112 +# CONFIG_CRYPTO_AES is not set
26113 +# CONFIG_CRYPTO_CAST5 is not set
26114 +# CONFIG_CRYPTO_CAST6 is not set
26115 +# CONFIG_CRYPTO_TEA is not set
26116 +# CONFIG_CRYPTO_ARC4 is not set
26117 +# CONFIG_CRYPTO_KHAZAD is not set
26118 +# CONFIG_CRYPTO_ANUBIS is not set
26119 +# CONFIG_CRYPTO_SEED is not set
26120 +# CONFIG_CRYPTO_SALSA20 is not set
26121 +# CONFIG_CRYPTO_DEFLATE is not set
26122 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
26123 +# CONFIG_CRYPTO_CRC32C is not set
26124 +# CONFIG_CRYPTO_CAMELLIA is not set
26125 +# CONFIG_CRYPTO_TEST is not set
26126 +# CONFIG_CRYPTO_AUTHENC is not set
26127 +# CONFIG_CRYPTO_LZO is not set
26128 +CONFIG_CRYPTO_HW=y
26129 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
26130 +# CONFIG_PPC_CLOCK is not set
26131 +CONFIG_PPC_LIB_RHEAP=y
26132 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc834x_itx_defconfig
26133 ===================================================================
26134 --- /dev/null
26135 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc834x_itx_defconfig
26136 @@ -0,0 +1,1295 @@
26137 +#
26138 +# Automatically generated make config: don't edit
26139 +# Linux kernel version: 2.6.25-rc6
26140 +# Mon Mar 24 08:48:17 2008
26141 +#
26142 +# CONFIG_PPC64 is not set
26143 +
26144 +#
26145 +# Processor support
26146 +#
26147 +CONFIG_6xx=y
26148 +# CONFIG_PPC_85xx is not set
26149 +# CONFIG_PPC_8xx is not set
26150 +# CONFIG_40x is not set
26151 +# CONFIG_44x is not set
26152 +# CONFIG_E200 is not set
26153 +CONFIG_PPC_FPU=y
26154 +# CONFIG_FSL_EMB_PERFMON is not set
26155 +CONFIG_PPC_STD_MMU=y
26156 +CONFIG_PPC_STD_MMU_32=y
26157 +# CONFIG_PPC_MM_SLICES is not set
26158 +# CONFIG_SMP is not set
26159 +CONFIG_PPC32=y
26160 +CONFIG_WORD_SIZE=32
26161 +CONFIG_PPC_MERGE=y
26162 +CONFIG_MMU=y
26163 +CONFIG_GENERIC_CMOS_UPDATE=y
26164 +CONFIG_GENERIC_TIME=y
26165 +CONFIG_GENERIC_TIME_VSYSCALL=y
26166 +CONFIG_GENERIC_CLOCKEVENTS=y
26167 +CONFIG_GENERIC_HARDIRQS=y
26168 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
26169 +CONFIG_IRQ_PER_CPU=y
26170 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
26171 +CONFIG_ARCH_HAS_ILOG2_U32=y
26172 +CONFIG_GENERIC_HWEIGHT=y
26173 +CONFIG_GENERIC_CALIBRATE_DELAY=y
26174 +CONFIG_GENERIC_FIND_NEXT_BIT=y
26175 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
26176 +CONFIG_PPC=y
26177 +CONFIG_EARLY_PRINTK=y
26178 +CONFIG_GENERIC_NVRAM=y
26179 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
26180 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
26181 +CONFIG_PPC_OF=y
26182 +CONFIG_OF=y
26183 +CONFIG_PPC_UDBG_16550=y
26184 +# CONFIG_GENERIC_TBSYNC is not set
26185 +CONFIG_AUDIT_ARCH=y
26186 +CONFIG_GENERIC_BUG=y
26187 +CONFIG_DEFAULT_UIMAGE=y
26188 +# CONFIG_PPC_DCR_NATIVE is not set
26189 +# CONFIG_PPC_DCR_MMIO is not set
26190 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
26191 +
26192 +#
26193 +# General setup
26194 +#
26195 +CONFIG_EXPERIMENTAL=y
26196 +CONFIG_BROKEN_ON_SMP=y
26197 +CONFIG_INIT_ENV_ARG_LIMIT=32
26198 +CONFIG_LOCALVERSION=""
26199 +CONFIG_LOCALVERSION_AUTO=y
26200 +CONFIG_SWAP=y
26201 +CONFIG_SYSVIPC=y
26202 +CONFIG_SYSVIPC_SYSCTL=y
26203 +# CONFIG_POSIX_MQUEUE is not set
26204 +# CONFIG_BSD_PROCESS_ACCT is not set
26205 +# CONFIG_TASKSTATS is not set
26206 +# CONFIG_AUDIT is not set
26207 +# CONFIG_IKCONFIG is not set
26208 +CONFIG_LOG_BUF_SHIFT=14
26209 +# CONFIG_CGROUPS is not set
26210 +CONFIG_GROUP_SCHED=y
26211 +# CONFIG_FAIR_GROUP_SCHED is not set
26212 +# CONFIG_RT_GROUP_SCHED is not set
26213 +CONFIG_USER_SCHED=y
26214 +# CONFIG_CGROUP_SCHED is not set
26215 +CONFIG_SYSFS_DEPRECATED=y
26216 +CONFIG_SYSFS_DEPRECATED_V2=y
26217 +# CONFIG_RELAY is not set
26218 +# CONFIG_NAMESPACES is not set
26219 +CONFIG_BLK_DEV_INITRD=y
26220 +CONFIG_INITRAMFS_SOURCE=""
26221 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
26222 +CONFIG_SYSCTL=y
26223 +CONFIG_EMBEDDED=y
26224 +CONFIG_SYSCTL_SYSCALL=y
26225 +# CONFIG_KALLSYMS is not set
26226 +CONFIG_HOTPLUG=y
26227 +CONFIG_PRINTK=y
26228 +CONFIG_BUG=y
26229 +CONFIG_ELF_CORE=y
26230 +CONFIG_COMPAT_BRK=y
26231 +CONFIG_BASE_FULL=y
26232 +CONFIG_FUTEX=y
26233 +CONFIG_ANON_INODES=y
26234 +# CONFIG_EPOLL is not set
26235 +CONFIG_SIGNALFD=y
26236 +CONFIG_TIMERFD=y
26237 +CONFIG_EVENTFD=y
26238 +CONFIG_SHMEM=y
26239 +CONFIG_VM_EVENT_COUNTERS=y
26240 +CONFIG_SLUB_DEBUG=y
26241 +# CONFIG_SLAB is not set
26242 +CONFIG_SLUB=y
26243 +# CONFIG_SLOB is not set
26244 +# CONFIG_PROFILING is not set
26245 +# CONFIG_MARKERS is not set
26246 +CONFIG_HAVE_OPROFILE=y
26247 +CONFIG_HAVE_KPROBES=y
26248 +CONFIG_HAVE_KRETPROBES=y
26249 +CONFIG_PROC_PAGE_MONITOR=y
26250 +CONFIG_SLABINFO=y
26251 +CONFIG_RT_MUTEXES=y
26252 +# CONFIG_TINY_SHMEM is not set
26253 +CONFIG_BASE_SMALL=0
26254 +CONFIG_MODULES=y
26255 +CONFIG_MODULE_UNLOAD=y
26256 +# CONFIG_MODULE_FORCE_UNLOAD is not set
26257 +# CONFIG_MODVERSIONS is not set
26258 +# CONFIG_MODULE_SRCVERSION_ALL is not set
26259 +# CONFIG_KMOD is not set
26260 +CONFIG_BLOCK=y
26261 +# CONFIG_LBD is not set
26262 +# CONFIG_BLK_DEV_IO_TRACE is not set
26263 +# CONFIG_LSF is not set
26264 +# CONFIG_BLK_DEV_BSG is not set
26265 +
26266 +#
26267 +# IO Schedulers
26268 +#
26269 +CONFIG_IOSCHED_NOOP=y
26270 +CONFIG_IOSCHED_AS=y
26271 +CONFIG_IOSCHED_DEADLINE=y
26272 +CONFIG_IOSCHED_CFQ=y
26273 +CONFIG_DEFAULT_AS=y
26274 +# CONFIG_DEFAULT_DEADLINE is not set
26275 +# CONFIG_DEFAULT_CFQ is not set
26276 +# CONFIG_DEFAULT_NOOP is not set
26277 +CONFIG_DEFAULT_IOSCHED="anticipatory"
26278 +CONFIG_CLASSIC_RCU=y
26279 +
26280 +#
26281 +# Platform support
26282 +#
26283 +# CONFIG_PPC_MULTIPLATFORM is not set
26284 +# CONFIG_PPC_82xx is not set
26285 +CONFIG_PPC_83xx=y
26286 +# CONFIG_PPC_86xx is not set
26287 +# CONFIG_PPC_MPC512x is not set
26288 +# CONFIG_PPC_MPC5121 is not set
26289 +# CONFIG_PPC_CELL is not set
26290 +# CONFIG_PPC_CELL_NATIVE is not set
26291 +# CONFIG_PQ2ADS is not set
26292 +CONFIG_MPC83xx=y
26293 +# CONFIG_MPC831x_RDB is not set
26294 +# CONFIG_MPC832x_MDS is not set
26295 +# CONFIG_MPC832x_RDB is not set
26296 +# CONFIG_MPC834x_MDS is not set
26297 +CONFIG_MPC834x_ITX=y
26298 +# CONFIG_MPC836x_MDS is not set
26299 +# CONFIG_MPC837x_MDS is not set
26300 +# CONFIG_MPC837x_RDB is not set
26301 +# CONFIG_SBC834x is not set
26302 +CONFIG_PPC_MPC834x=y
26303 +CONFIG_IPIC=y
26304 +# CONFIG_MPIC is not set
26305 +# CONFIG_MPIC_WEIRD is not set
26306 +# CONFIG_PPC_I8259 is not set
26307 +# CONFIG_PPC_RTAS is not set
26308 +# CONFIG_MMIO_NVRAM is not set
26309 +# CONFIG_PPC_MPC106 is not set
26310 +# CONFIG_PPC_970_NAP is not set
26311 +# CONFIG_PPC_INDIRECT_IO is not set
26312 +# CONFIG_GENERIC_IOMAP is not set
26313 +# CONFIG_CPU_FREQ is not set
26314 +# CONFIG_FSL_ULI1575 is not set
26315 +
26316 +#
26317 +# Kernel options
26318 +#
26319 +# CONFIG_HIGHMEM is not set
26320 +CONFIG_TICK_ONESHOT=y
26321 +CONFIG_NO_HZ=y
26322 +CONFIG_HIGH_RES_TIMERS=y
26323 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
26324 +# CONFIG_HZ_100 is not set
26325 +CONFIG_HZ_250=y
26326 +# CONFIG_HZ_300 is not set
26327 +# CONFIG_HZ_1000 is not set
26328 +CONFIG_HZ=250
26329 +# CONFIG_SCHED_HRTICK is not set
26330 +CONFIG_PREEMPT_NONE=y
26331 +# CONFIG_PREEMPT_VOLUNTARY is not set
26332 +# CONFIG_PREEMPT is not set
26333 +CONFIG_BINFMT_ELF=y
26334 +# CONFIG_BINFMT_MISC is not set
26335 +# CONFIG_IOMMU_HELPER is not set
26336 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
26337 +CONFIG_ARCH_HAS_WALK_MEMORY=y
26338 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
26339 +CONFIG_ARCH_FLATMEM_ENABLE=y
26340 +CONFIG_ARCH_POPULATES_NODE_MAP=y
26341 +CONFIG_SELECT_MEMORY_MODEL=y
26342 +CONFIG_FLATMEM_MANUAL=y
26343 +# CONFIG_DISCONTIGMEM_MANUAL is not set
26344 +# CONFIG_SPARSEMEM_MANUAL is not set
26345 +CONFIG_FLATMEM=y
26346 +CONFIG_FLAT_NODE_MEM_MAP=y
26347 +# CONFIG_SPARSEMEM_STATIC is not set
26348 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
26349 +CONFIG_SPLIT_PTLOCK_CPUS=4
26350 +# CONFIG_RESOURCES_64BIT is not set
26351 +CONFIG_ZONE_DMA_FLAG=1
26352 +CONFIG_BOUNCE=y
26353 +CONFIG_VIRT_TO_BUS=y
26354 +CONFIG_PROC_DEVICETREE=y
26355 +# CONFIG_CMDLINE_BOOL is not set
26356 +# CONFIG_PM is not set
26357 +CONFIG_SECCOMP=y
26358 +CONFIG_ISA_DMA_API=y
26359 +
26360 +#
26361 +# Bus options
26362 +#
26363 +CONFIG_ZONE_DMA=y
26364 +CONFIG_GENERIC_ISA_DMA=y
26365 +CONFIG_PPC_INDIRECT_PCI=y
26366 +CONFIG_FSL_SOC=y
26367 +CONFIG_PCI=y
26368 +CONFIG_PCI_DOMAINS=y
26369 +CONFIG_PCI_SYSCALL=y
26370 +# CONFIG_PCIEPORTBUS is not set
26371 +CONFIG_ARCH_SUPPORTS_MSI=y
26372 +# CONFIG_PCI_MSI is not set
26373 +CONFIG_PCI_LEGACY=y
26374 +# CONFIG_PCCARD is not set
26375 +# CONFIG_HOTPLUG_PCI is not set
26376 +
26377 +#
26378 +# Advanced setup
26379 +#
26380 +# CONFIG_ADVANCED_OPTIONS is not set
26381 +
26382 +#
26383 +# Default settings for advanced configuration options are used
26384 +#
26385 +CONFIG_HIGHMEM_START=0xfe000000
26386 +CONFIG_LOWMEM_SIZE=0x30000000
26387 +CONFIG_KERNEL_START=0xc0000000
26388 +CONFIG_TASK_SIZE=0xc0000000
26389 +CONFIG_BOOT_LOAD=0x00800000
26390 +
26391 +#
26392 +# Networking
26393 +#
26394 +CONFIG_NET=y
26395 +
26396 +#
26397 +# Networking options
26398 +#
26399 +CONFIG_PACKET=y
26400 +# CONFIG_PACKET_MMAP is not set
26401 +CONFIG_UNIX=y
26402 +CONFIG_XFRM=y
26403 +# CONFIG_XFRM_USER is not set
26404 +# CONFIG_XFRM_SUB_POLICY is not set
26405 +# CONFIG_XFRM_MIGRATE is not set
26406 +# CONFIG_XFRM_STATISTICS is not set
26407 +# CONFIG_NET_KEY is not set
26408 +CONFIG_INET=y
26409 +CONFIG_IP_MULTICAST=y
26410 +# CONFIG_IP_ADVANCED_ROUTER is not set
26411 +CONFIG_IP_FIB_HASH=y
26412 +CONFIG_IP_PNP=y
26413 +CONFIG_IP_PNP_DHCP=y
26414 +CONFIG_IP_PNP_BOOTP=y
26415 +# CONFIG_IP_PNP_RARP is not set
26416 +# CONFIG_NET_IPIP is not set
26417 +# CONFIG_NET_IPGRE is not set
26418 +# CONFIG_IP_MROUTE is not set
26419 +# CONFIG_ARPD is not set
26420 +CONFIG_SYN_COOKIES=y
26421 +# CONFIG_INET_AH is not set
26422 +# CONFIG_INET_ESP is not set
26423 +# CONFIG_INET_IPCOMP is not set
26424 +# CONFIG_INET_XFRM_TUNNEL is not set
26425 +# CONFIG_INET_TUNNEL is not set
26426 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
26427 +CONFIG_INET_XFRM_MODE_TUNNEL=y
26428 +CONFIG_INET_XFRM_MODE_BEET=y
26429 +# CONFIG_INET_LRO is not set
26430 +CONFIG_INET_DIAG=y
26431 +CONFIG_INET_TCP_DIAG=y
26432 +# CONFIG_TCP_CONG_ADVANCED is not set
26433 +CONFIG_TCP_CONG_CUBIC=y
26434 +CONFIG_DEFAULT_TCP_CONG="cubic"
26435 +# CONFIG_TCP_MD5SIG is not set
26436 +# CONFIG_IPV6 is not set
26437 +# CONFIG_INET6_XFRM_TUNNEL is not set
26438 +# CONFIG_INET6_TUNNEL is not set
26439 +# CONFIG_NETWORK_SECMARK is not set
26440 +# CONFIG_NETFILTER is not set
26441 +# CONFIG_IP_DCCP is not set
26442 +# CONFIG_IP_SCTP is not set
26443 +# CONFIG_TIPC is not set
26444 +# CONFIG_ATM is not set
26445 +# CONFIG_BRIDGE is not set
26446 +# CONFIG_VLAN_8021Q is not set
26447 +# CONFIG_DECNET is not set
26448 +# CONFIG_LLC2 is not set
26449 +# CONFIG_IPX is not set
26450 +# CONFIG_ATALK is not set
26451 +# CONFIG_X25 is not set
26452 +# CONFIG_LAPB is not set
26453 +# CONFIG_ECONET is not set
26454 +# CONFIG_WAN_ROUTER is not set
26455 +# CONFIG_NET_SCHED is not set
26456 +
26457 +#
26458 +# Network testing
26459 +#
26460 +# CONFIG_NET_PKTGEN is not set
26461 +# CONFIG_HAMRADIO is not set
26462 +# CONFIG_CAN is not set
26463 +# CONFIG_IRDA is not set
26464 +# CONFIG_BT is not set
26465 +# CONFIG_AF_RXRPC is not set
26466 +
26467 +#
26468 +# Wireless
26469 +#
26470 +# CONFIG_CFG80211 is not set
26471 +# CONFIG_WIRELESS_EXT is not set
26472 +# CONFIG_MAC80211 is not set
26473 +# CONFIG_IEEE80211 is not set
26474 +# CONFIG_RFKILL is not set
26475 +# CONFIG_NET_9P is not set
26476 +
26477 +#
26478 +# Device Drivers
26479 +#
26480 +
26481 +#
26482 +# Generic Driver Options
26483 +#
26484 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
26485 +CONFIG_STANDALONE=y
26486 +CONFIG_PREVENT_FIRMWARE_BUILD=y
26487 +# CONFIG_FW_LOADER is not set
26488 +# CONFIG_SYS_HYPERVISOR is not set
26489 +# CONFIG_CONNECTOR is not set
26490 +CONFIG_MTD=y
26491 +# CONFIG_MTD_DEBUG is not set
26492 +# CONFIG_MTD_CONCAT is not set
26493 +# CONFIG_MTD_PARTITIONS is not set
26494 +
26495 +#
26496 +# User Modules And Translation Layers
26497 +#
26498 +CONFIG_MTD_CHAR=y
26499 +# CONFIG_MTD_BLKDEVS is not set
26500 +# CONFIG_MTD_BLOCK is not set
26501 +# CONFIG_MTD_BLOCK_RO is not set
26502 +# CONFIG_FTL is not set
26503 +# CONFIG_NFTL is not set
26504 +# CONFIG_INFTL is not set
26505 +# CONFIG_RFD_FTL is not set
26506 +# CONFIG_SSFDC is not set
26507 +# CONFIG_MTD_OOPS is not set
26508 +
26509 +#
26510 +# RAM/ROM/Flash chip drivers
26511 +#
26512 +CONFIG_MTD_CFI=y
26513 +# CONFIG_MTD_JEDECPROBE is not set
26514 +CONFIG_MTD_GEN_PROBE=y
26515 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
26516 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
26517 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
26518 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
26519 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
26520 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
26521 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
26522 +CONFIG_MTD_CFI_I1=y
26523 +CONFIG_MTD_CFI_I2=y
26524 +# CONFIG_MTD_CFI_I4 is not set
26525 +# CONFIG_MTD_CFI_I8 is not set
26526 +# CONFIG_MTD_CFI_INTELEXT is not set
26527 +CONFIG_MTD_CFI_AMDSTD=y
26528 +# CONFIG_MTD_CFI_STAA is not set
26529 +CONFIG_MTD_CFI_UTIL=y
26530 +# CONFIG_MTD_RAM is not set
26531 +# CONFIG_MTD_ROM is not set
26532 +# CONFIG_MTD_ABSENT is not set
26533 +
26534 +#
26535 +# Mapping drivers for chip access
26536 +#
26537 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
26538 +CONFIG_MTD_PHYSMAP=y
26539 +CONFIG_MTD_PHYSMAP_START=0xfe000000
26540 +CONFIG_MTD_PHYSMAP_LEN=0x1000000
26541 +CONFIG_MTD_PHYSMAP_BANKWIDTH=2
26542 +# CONFIG_MTD_PHYSMAP_OF is not set
26543 +# CONFIG_MTD_INTEL_VR_NOR is not set
26544 +# CONFIG_MTD_PLATRAM is not set
26545 +
26546 +#
26547 +# Self-contained MTD device drivers
26548 +#
26549 +# CONFIG_MTD_PMC551 is not set
26550 +# CONFIG_MTD_DATAFLASH is not set
26551 +# CONFIG_MTD_M25P80 is not set
26552 +# CONFIG_MTD_SLRAM is not set
26553 +# CONFIG_MTD_PHRAM is not set
26554 +# CONFIG_MTD_MTDRAM is not set
26555 +# CONFIG_MTD_BLOCK2MTD is not set
26556 +
26557 +#
26558 +# Disk-On-Chip Device Drivers
26559 +#
26560 +# CONFIG_MTD_DOC2000 is not set
26561 +# CONFIG_MTD_DOC2001 is not set
26562 +# CONFIG_MTD_DOC2001PLUS is not set
26563 +# CONFIG_MTD_NAND is not set
26564 +# CONFIG_MTD_ONENAND is not set
26565 +
26566 +#
26567 +# UBI - Unsorted block images
26568 +#
26569 +# CONFIG_MTD_UBI is not set
26570 +CONFIG_OF_DEVICE=y
26571 +# CONFIG_PARPORT is not set
26572 +CONFIG_BLK_DEV=y
26573 +# CONFIG_BLK_DEV_FD is not set
26574 +# CONFIG_BLK_CPQ_DA is not set
26575 +# CONFIG_BLK_CPQ_CISS_DA is not set
26576 +# CONFIG_BLK_DEV_DAC960 is not set
26577 +# CONFIG_BLK_DEV_UMEM is not set
26578 +# CONFIG_BLK_DEV_COW_COMMON is not set
26579 +CONFIG_BLK_DEV_LOOP=y
26580 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
26581 +# CONFIG_BLK_DEV_NBD is not set
26582 +# CONFIG_BLK_DEV_SX8 is not set
26583 +# CONFIG_BLK_DEV_UB is not set
26584 +CONFIG_BLK_DEV_RAM=y
26585 +CONFIG_BLK_DEV_RAM_COUNT=16
26586 +CONFIG_BLK_DEV_RAM_SIZE=32768
26587 +# CONFIG_BLK_DEV_XIP is not set
26588 +# CONFIG_CDROM_PKTCDVD is not set
26589 +# CONFIG_ATA_OVER_ETH is not set
26590 +CONFIG_MISC_DEVICES=y
26591 +# CONFIG_PHANTOM is not set
26592 +# CONFIG_EEPROM_93CX6 is not set
26593 +# CONFIG_SGI_IOC4 is not set
26594 +# CONFIG_TIFM_CORE is not set
26595 +# CONFIG_ENCLOSURE_SERVICES is not set
26596 +CONFIG_HAVE_IDE=y
26597 +CONFIG_IDE=y
26598 +CONFIG_IDE_MAX_HWIFS=4
26599 +# CONFIG_BLK_DEV_IDE is not set
26600 +# CONFIG_BLK_DEV_HD_ONLY is not set
26601 +# CONFIG_BLK_DEV_HD is not set
26602 +
26603 +#
26604 +# SCSI device support
26605 +#
26606 +# CONFIG_RAID_ATTRS is not set
26607 +CONFIG_SCSI=y
26608 +CONFIG_SCSI_DMA=y
26609 +# CONFIG_SCSI_TGT is not set
26610 +# CONFIG_SCSI_NETLINK is not set
26611 +CONFIG_SCSI_PROC_FS=y
26612 +
26613 +#
26614 +# SCSI support type (disk, tape, CD-ROM)
26615 +#
26616 +CONFIG_BLK_DEV_SD=y
26617 +# CONFIG_CHR_DEV_ST is not set
26618 +# CONFIG_CHR_DEV_OSST is not set
26619 +# CONFIG_BLK_DEV_SR is not set
26620 +CONFIG_CHR_DEV_SG=y
26621 +# CONFIG_CHR_DEV_SCH is not set
26622 +
26623 +#
26624 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
26625 +#
26626 +# CONFIG_SCSI_MULTI_LUN is not set
26627 +# CONFIG_SCSI_CONSTANTS is not set
26628 +# CONFIG_SCSI_LOGGING is not set
26629 +# CONFIG_SCSI_SCAN_ASYNC is not set
26630 +CONFIG_SCSI_WAIT_SCAN=m
26631 +
26632 +#
26633 +# SCSI Transports
26634 +#
26635 +CONFIG_SCSI_SPI_ATTRS=y
26636 +# CONFIG_SCSI_FC_ATTRS is not set
26637 +# CONFIG_SCSI_ISCSI_ATTRS is not set
26638 +# CONFIG_SCSI_SAS_LIBSAS is not set
26639 +# CONFIG_SCSI_SRP_ATTRS is not set
26640 +CONFIG_SCSI_LOWLEVEL=y
26641 +# CONFIG_ISCSI_TCP is not set
26642 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
26643 +# CONFIG_SCSI_3W_9XXX is not set
26644 +# CONFIG_SCSI_ACARD is not set
26645 +# CONFIG_SCSI_AACRAID is not set
26646 +# CONFIG_SCSI_AIC7XXX is not set
26647 +# CONFIG_SCSI_AIC7XXX_OLD is not set
26648 +# CONFIG_SCSI_AIC79XX is not set
26649 +# CONFIG_SCSI_AIC94XX is not set
26650 +# CONFIG_SCSI_DPT_I2O is not set
26651 +# CONFIG_SCSI_ADVANSYS is not set
26652 +# CONFIG_SCSI_ARCMSR is not set
26653 +# CONFIG_MEGARAID_NEWGEN is not set
26654 +# CONFIG_MEGARAID_LEGACY is not set
26655 +# CONFIG_MEGARAID_SAS is not set
26656 +# CONFIG_SCSI_HPTIOP is not set
26657 +# CONFIG_SCSI_BUSLOGIC is not set
26658 +# CONFIG_SCSI_DMX3191D is not set
26659 +# CONFIG_SCSI_EATA is not set
26660 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
26661 +# CONFIG_SCSI_GDTH is not set
26662 +# CONFIG_SCSI_IPS is not set
26663 +# CONFIG_SCSI_INITIO is not set
26664 +# CONFIG_SCSI_INIA100 is not set
26665 +# CONFIG_SCSI_MVSAS is not set
26666 +# CONFIG_SCSI_STEX is not set
26667 +# CONFIG_SCSI_SYM53C8XX_2 is not set
26668 +# CONFIG_SCSI_IPR is not set
26669 +# CONFIG_SCSI_QLOGIC_1280 is not set
26670 +# CONFIG_SCSI_QLA_FC is not set
26671 +# CONFIG_SCSI_QLA_ISCSI is not set
26672 +# CONFIG_SCSI_LPFC is not set
26673 +# CONFIG_SCSI_DC395x is not set
26674 +# CONFIG_SCSI_DC390T is not set
26675 +# CONFIG_SCSI_NSP32 is not set
26676 +# CONFIG_SCSI_DEBUG is not set
26677 +# CONFIG_SCSI_SRP is not set
26678 +CONFIG_ATA=y
26679 +# CONFIG_ATA_NONSTANDARD is not set
26680 +# CONFIG_SATA_AHCI is not set
26681 +# CONFIG_SATA_SVW is not set
26682 +# CONFIG_ATA_PIIX is not set
26683 +# CONFIG_SATA_MV is not set
26684 +# CONFIG_SATA_NV is not set
26685 +# CONFIG_PDC_ADMA is not set
26686 +# CONFIG_SATA_QSTOR is not set
26687 +# CONFIG_SATA_PROMISE is not set
26688 +# CONFIG_SATA_SX4 is not set
26689 +CONFIG_SATA_SIL=y
26690 +# CONFIG_SATA_SIL24 is not set
26691 +# CONFIG_SATA_SIS is not set
26692 +# CONFIG_SATA_ULI is not set
26693 +# CONFIG_SATA_VIA is not set
26694 +# CONFIG_SATA_VITESSE is not set
26695 +# CONFIG_SATA_INIC162X is not set
26696 +# CONFIG_SATA_FSL is not set
26697 +# CONFIG_PATA_ALI is not set
26698 +# CONFIG_PATA_AMD is not set
26699 +# CONFIG_PATA_ARTOP is not set
26700 +# CONFIG_PATA_ATIIXP is not set
26701 +# CONFIG_PATA_CMD640_PCI is not set
26702 +# CONFIG_PATA_CMD64X is not set
26703 +# CONFIG_PATA_CS5520 is not set
26704 +# CONFIG_PATA_CS5530 is not set
26705 +# CONFIG_PATA_CYPRESS is not set
26706 +# CONFIG_PATA_EFAR is not set
26707 +# CONFIG_ATA_GENERIC is not set
26708 +# CONFIG_PATA_HPT366 is not set
26709 +# CONFIG_PATA_HPT37X is not set
26710 +# CONFIG_PATA_HPT3X2N is not set
26711 +# CONFIG_PATA_HPT3X3 is not set
26712 +# CONFIG_PATA_IT821X is not set
26713 +# CONFIG_PATA_IT8213 is not set
26714 +# CONFIG_PATA_JMICRON is not set
26715 +# CONFIG_PATA_TRIFLEX is not set
26716 +# CONFIG_PATA_MARVELL is not set
26717 +# CONFIG_PATA_MPIIX is not set
26718 +# CONFIG_PATA_OLDPIIX is not set
26719 +# CONFIG_PATA_NETCELL is not set
26720 +# CONFIG_PATA_NINJA32 is not set
26721 +# CONFIG_PATA_NS87410 is not set
26722 +# CONFIG_PATA_NS87415 is not set
26723 +# CONFIG_PATA_OPTI is not set
26724 +# CONFIG_PATA_OPTIDMA is not set
26725 +# CONFIG_PATA_PDC_OLD is not set
26726 +# CONFIG_PATA_RADISYS is not set
26727 +# CONFIG_PATA_RZ1000 is not set
26728 +# CONFIG_PATA_SC1200 is not set
26729 +# CONFIG_PATA_SERVERWORKS is not set
26730 +# CONFIG_PATA_PDC2027X is not set
26731 +# CONFIG_PATA_SIL680 is not set
26732 +# CONFIG_PATA_SIS is not set
26733 +# CONFIG_PATA_VIA is not set
26734 +# CONFIG_PATA_WINBOND is not set
26735 +CONFIG_PATA_PLATFORM=y
26736 +CONFIG_PATA_OF_PLATFORM=y
26737 +CONFIG_MD=y
26738 +CONFIG_BLK_DEV_MD=y
26739 +CONFIG_MD_LINEAR=y
26740 +CONFIG_MD_RAID0=y
26741 +CONFIG_MD_RAID1=y
26742 +# CONFIG_MD_RAID10 is not set
26743 +# CONFIG_MD_RAID456 is not set
26744 +# CONFIG_MD_MULTIPATH is not set
26745 +# CONFIG_MD_FAULTY is not set
26746 +# CONFIG_BLK_DEV_DM is not set
26747 +# CONFIG_FUSION is not set
26748 +
26749 +#
26750 +# IEEE 1394 (FireWire) support
26751 +#
26752 +# CONFIG_FIREWIRE is not set
26753 +# CONFIG_IEEE1394 is not set
26754 +# CONFIG_I2O is not set
26755 +# CONFIG_MACINTOSH_DRIVERS is not set
26756 +CONFIG_NETDEVICES=y
26757 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
26758 +# CONFIG_DUMMY is not set
26759 +# CONFIG_BONDING is not set
26760 +# CONFIG_MACVLAN is not set
26761 +# CONFIG_EQUALIZER is not set
26762 +# CONFIG_TUN is not set
26763 +# CONFIG_VETH is not set
26764 +# CONFIG_ARCNET is not set
26765 +CONFIG_PHYLIB=y
26766 +
26767 +#
26768 +# MII PHY device drivers
26769 +#
26770 +# CONFIG_MARVELL_PHY is not set
26771 +# CONFIG_DAVICOM_PHY is not set
26772 +# CONFIG_QSEMI_PHY is not set
26773 +# CONFIG_LXT_PHY is not set
26774 +CONFIG_CICADA_PHY=y
26775 +# CONFIG_VITESSE_PHY is not set
26776 +# CONFIG_SMSC_PHY is not set
26777 +# CONFIG_BROADCOM_PHY is not set
26778 +# CONFIG_ICPLUS_PHY is not set
26779 +# CONFIG_REALTEK_PHY is not set
26780 +# CONFIG_FIXED_PHY is not set
26781 +# CONFIG_MDIO_BITBANG is not set
26782 +# CONFIG_NET_ETHERNET is not set
26783 +CONFIG_NETDEV_1000=y
26784 +# CONFIG_ACENIC is not set
26785 +# CONFIG_DL2K is not set
26786 +# CONFIG_E1000 is not set
26787 +# CONFIG_E1000E is not set
26788 +# CONFIG_E1000E_ENABLED is not set
26789 +# CONFIG_IP1000 is not set
26790 +# CONFIG_IGB is not set
26791 +# CONFIG_NS83820 is not set
26792 +# CONFIG_HAMACHI is not set
26793 +# CONFIG_YELLOWFIN is not set
26794 +# CONFIG_R8169 is not set
26795 +# CONFIG_SIS190 is not set
26796 +# CONFIG_SKGE is not set
26797 +# CONFIG_SKY2 is not set
26798 +# CONFIG_SK98LIN is not set
26799 +# CONFIG_VIA_VELOCITY is not set
26800 +# CONFIG_TIGON3 is not set
26801 +# CONFIG_BNX2 is not set
26802 +CONFIG_GIANFAR=y
26803 +CONFIG_GFAR_NAPI=y
26804 +# CONFIG_QLA3XXX is not set
26805 +# CONFIG_ATL1 is not set
26806 +CONFIG_NETDEV_10000=y
26807 +# CONFIG_CHELSIO_T1 is not set
26808 +# CONFIG_CHELSIO_T3 is not set
26809 +# CONFIG_IXGBE is not set
26810 +# CONFIG_IXGB is not set
26811 +# CONFIG_S2IO is not set
26812 +# CONFIG_MYRI10GE is not set
26813 +# CONFIG_NETXEN_NIC is not set
26814 +# CONFIG_NIU is not set
26815 +# CONFIG_MLX4_CORE is not set
26816 +# CONFIG_TEHUTI is not set
26817 +# CONFIG_BNX2X is not set
26818 +# CONFIG_TR is not set
26819 +
26820 +#
26821 +# Wireless LAN
26822 +#
26823 +# CONFIG_WLAN_PRE80211 is not set
26824 +# CONFIG_WLAN_80211 is not set
26825 +
26826 +#
26827 +# USB Network Adapters
26828 +#
26829 +# CONFIG_USB_CATC is not set
26830 +# CONFIG_USB_KAWETH is not set
26831 +# CONFIG_USB_PEGASUS is not set
26832 +# CONFIG_USB_RTL8150 is not set
26833 +# CONFIG_USB_USBNET is not set
26834 +# CONFIG_WAN is not set
26835 +# CONFIG_FDDI is not set
26836 +# CONFIG_HIPPI is not set
26837 +# CONFIG_PPP is not set
26838 +# CONFIG_SLIP is not set
26839 +# CONFIG_NET_FC is not set
26840 +# CONFIG_NETCONSOLE is not set
26841 +# CONFIG_NETPOLL is not set
26842 +# CONFIG_NET_POLL_CONTROLLER is not set
26843 +# CONFIG_ISDN is not set
26844 +# CONFIG_PHONE is not set
26845 +
26846 +#
26847 +# Input device support
26848 +#
26849 +# CONFIG_INPUT is not set
26850 +
26851 +#
26852 +# Hardware I/O ports
26853 +#
26854 +# CONFIG_SERIO is not set
26855 +# CONFIG_GAMEPORT is not set
26856 +
26857 +#
26858 +# Character devices
26859 +#
26860 +# CONFIG_VT is not set
26861 +# CONFIG_SERIAL_NONSTANDARD is not set
26862 +# CONFIG_NOZOMI is not set
26863 +
26864 +#
26865 +# Serial drivers
26866 +#
26867 +CONFIG_SERIAL_8250=y
26868 +CONFIG_SERIAL_8250_CONSOLE=y
26869 +# CONFIG_SERIAL_8250_PCI is not set
26870 +CONFIG_SERIAL_8250_NR_UARTS=4
26871 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
26872 +# CONFIG_SERIAL_8250_EXTENDED is not set
26873 +
26874 +#
26875 +# Non-8250 serial port support
26876 +#
26877 +# CONFIG_SERIAL_UARTLITE is not set
26878 +CONFIG_SERIAL_CORE=y
26879 +CONFIG_SERIAL_CORE_CONSOLE=y
26880 +# CONFIG_SERIAL_JSM is not set
26881 +# CONFIG_SERIAL_OF_PLATFORM is not set
26882 +CONFIG_UNIX98_PTYS=y
26883 +CONFIG_LEGACY_PTYS=y
26884 +CONFIG_LEGACY_PTY_COUNT=256
26885 +# CONFIG_IPMI_HANDLER is not set
26886 +CONFIG_HW_RANDOM=y
26887 +# CONFIG_NVRAM is not set
26888 +# CONFIG_GEN_RTC is not set
26889 +# CONFIG_R3964 is not set
26890 +# CONFIG_APPLICOM is not set
26891 +# CONFIG_RAW_DRIVER is not set
26892 +# CONFIG_TCG_TPM is not set
26893 +CONFIG_DEVPORT=y
26894 +CONFIG_I2C=y
26895 +CONFIG_I2C_BOARDINFO=y
26896 +CONFIG_I2C_CHARDEV=y
26897 +
26898 +#
26899 +# I2C Algorithms
26900 +#
26901 +# CONFIG_I2C_ALGOBIT is not set
26902 +# CONFIG_I2C_ALGOPCF is not set
26903 +# CONFIG_I2C_ALGOPCA is not set
26904 +
26905 +#
26906 +# I2C Hardware Bus support
26907 +#
26908 +# CONFIG_I2C_ALI1535 is not set
26909 +# CONFIG_I2C_ALI1563 is not set
26910 +# CONFIG_I2C_ALI15X3 is not set
26911 +# CONFIG_I2C_AMD756 is not set
26912 +# CONFIG_I2C_AMD8111 is not set
26913 +# CONFIG_I2C_I801 is not set
26914 +# CONFIG_I2C_I810 is not set
26915 +# CONFIG_I2C_PIIX4 is not set
26916 +CONFIG_I2C_MPC=y
26917 +# CONFIG_I2C_NFORCE2 is not set
26918 +# CONFIG_I2C_OCORES is not set
26919 +# CONFIG_I2C_PARPORT_LIGHT is not set
26920 +# CONFIG_I2C_PROSAVAGE is not set
26921 +# CONFIG_I2C_SAVAGE4 is not set
26922 +# CONFIG_I2C_SIMTEC is not set
26923 +# CONFIG_I2C_SIS5595 is not set
26924 +# CONFIG_I2C_SIS630 is not set
26925 +# CONFIG_I2C_SIS96X is not set
26926 +# CONFIG_I2C_TAOS_EVM is not set
26927 +# CONFIG_I2C_STUB is not set
26928 +# CONFIG_I2C_TINY_USB is not set
26929 +# CONFIG_I2C_VIA is not set
26930 +# CONFIG_I2C_VIAPRO is not set
26931 +# CONFIG_I2C_VOODOO3 is not set
26932 +
26933 +#
26934 +# Miscellaneous I2C Chip support
26935 +#
26936 +# CONFIG_DS1682 is not set
26937 +# CONFIG_SENSORS_EEPROM is not set
26938 +CONFIG_SENSORS_PCF8574=y
26939 +# CONFIG_PCF8575 is not set
26940 +# CONFIG_SENSORS_PCF8591 is not set
26941 +# CONFIG_TPS65010 is not set
26942 +# CONFIG_SENSORS_MAX6875 is not set
26943 +# CONFIG_SENSORS_TSL2550 is not set
26944 +# CONFIG_I2C_DEBUG_CORE is not set
26945 +# CONFIG_I2C_DEBUG_ALGO is not set
26946 +# CONFIG_I2C_DEBUG_BUS is not set
26947 +# CONFIG_I2C_DEBUG_CHIP is not set
26948 +
26949 +#
26950 +# SPI support
26951 +#
26952 +CONFIG_SPI=y
26953 +CONFIG_SPI_MASTER=y
26954 +
26955 +#
26956 +# SPI Master Controller Drivers
26957 +#
26958 +CONFIG_SPI_BITBANG=y
26959 +CONFIG_SPI_MPC83xx=y
26960 +
26961 +#
26962 +# SPI Protocol Masters
26963 +#
26964 +# CONFIG_SPI_AT25 is not set
26965 +# CONFIG_SPI_SPIDEV is not set
26966 +# CONFIG_SPI_TLE62X0 is not set
26967 +# CONFIG_W1 is not set
26968 +# CONFIG_POWER_SUPPLY is not set
26969 +# CONFIG_HWMON is not set
26970 +# CONFIG_THERMAL is not set
26971 +CONFIG_WATCHDOG=y
26972 +# CONFIG_WATCHDOG_NOWAYOUT is not set
26973 +
26974 +#
26975 +# Watchdog Device Drivers
26976 +#
26977 +# CONFIG_SOFT_WATCHDOG is not set
26978 +CONFIG_83xx_WDT=y
26979 +
26980 +#
26981 +# PCI-based Watchdog Cards
26982 +#
26983 +# CONFIG_PCIPCWATCHDOG is not set
26984 +# CONFIG_WDTPCI is not set
26985 +
26986 +#
26987 +# USB-based Watchdog Cards
26988 +#
26989 +# CONFIG_USBPCWATCHDOG is not set
26990 +
26991 +#
26992 +# Sonics Silicon Backplane
26993 +#
26994 +CONFIG_SSB_POSSIBLE=y
26995 +# CONFIG_SSB is not set
26996 +
26997 +#
26998 +# Multifunction device drivers
26999 +#
27000 +# CONFIG_MFD_SM501 is not set
27001 +
27002 +#
27003 +# Multimedia devices
27004 +#
27005 +# CONFIG_VIDEO_DEV is not set
27006 +# CONFIG_DVB_CORE is not set
27007 +CONFIG_DAB=y
27008 +# CONFIG_USB_DABUSB is not set
27009 +
27010 +#
27011 +# Graphics support
27012 +#
27013 +# CONFIG_AGP is not set
27014 +# CONFIG_DRM is not set
27015 +# CONFIG_VGASTATE is not set
27016 +CONFIG_VIDEO_OUTPUT_CONTROL=m
27017 +# CONFIG_FB is not set
27018 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
27019 +
27020 +#
27021 +# Display device support
27022 +#
27023 +# CONFIG_DISPLAY_SUPPORT is not set
27024 +
27025 +#
27026 +# Sound
27027 +#
27028 +# CONFIG_SOUND is not set
27029 +CONFIG_USB_SUPPORT=y
27030 +CONFIG_USB_ARCH_HAS_HCD=y
27031 +CONFIG_USB_ARCH_HAS_OHCI=y
27032 +CONFIG_USB_ARCH_HAS_EHCI=y
27033 +CONFIG_USB=y
27034 +# CONFIG_USB_DEBUG is not set
27035 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
27036 +
27037 +#
27038 +# Miscellaneous USB options
27039 +#
27040 +CONFIG_USB_DEVICEFS=y
27041 +CONFIG_USB_DEVICE_CLASS=y
27042 +# CONFIG_USB_DYNAMIC_MINORS is not set
27043 +# CONFIG_USB_OTG is not set
27044 +
27045 +#
27046 +# USB Host Controller Drivers
27047 +#
27048 +CONFIG_USB_EHCI_HCD=y
27049 +CONFIG_USB_EHCI_ROOT_HUB_TT=y
27050 +# CONFIG_USB_EHCI_TT_NEWSCHED is not set
27051 +CONFIG_USB_EHCI_FSL=y
27052 +CONFIG_USB_EHCI_HCD_PPC_OF=y
27053 +# CONFIG_USB_ISP116X_HCD is not set
27054 +# CONFIG_USB_OHCI_HCD is not set
27055 +CONFIG_USB_UHCI_HCD=y
27056 +# CONFIG_USB_SL811_HCD is not set
27057 +# CONFIG_USB_R8A66597_HCD is not set
27058 +
27059 +#
27060 +# USB Device Class drivers
27061 +#
27062 +# CONFIG_USB_ACM is not set
27063 +# CONFIG_USB_PRINTER is not set
27064 +
27065 +#
27066 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
27067 +#
27068 +
27069 +#
27070 +# may also be needed; see USB_STORAGE Help for more information
27071 +#
27072 +CONFIG_USB_STORAGE=y
27073 +# CONFIG_USB_STORAGE_DEBUG is not set
27074 +# CONFIG_USB_STORAGE_DATAFAB is not set
27075 +# CONFIG_USB_STORAGE_FREECOM is not set
27076 +# CONFIG_USB_STORAGE_ISD200 is not set
27077 +# CONFIG_USB_STORAGE_DPCM is not set
27078 +# CONFIG_USB_STORAGE_USBAT is not set
27079 +# CONFIG_USB_STORAGE_SDDR09 is not set
27080 +# CONFIG_USB_STORAGE_SDDR55 is not set
27081 +# CONFIG_USB_STORAGE_JUMPSHOT is not set
27082 +# CONFIG_USB_STORAGE_ALAUDA is not set
27083 +# CONFIG_USB_STORAGE_KARMA is not set
27084 +# CONFIG_USB_LIBUSUAL is not set
27085 +
27086 +#
27087 +# USB Imaging devices
27088 +#
27089 +# CONFIG_USB_MDC800 is not set
27090 +# CONFIG_USB_MICROTEK is not set
27091 +CONFIG_USB_MON=y
27092 +
27093 +#
27094 +# USB port drivers
27095 +#
27096 +# CONFIG_USB_SERIAL is not set
27097 +
27098 +#
27099 +# USB Miscellaneous drivers
27100 +#
27101 +# CONFIG_USB_EMI62 is not set
27102 +# CONFIG_USB_EMI26 is not set
27103 +# CONFIG_USB_ADUTUX is not set
27104 +# CONFIG_USB_AUERSWALD is not set
27105 +# CONFIG_USB_RIO500 is not set
27106 +# CONFIG_USB_LEGOTOWER is not set
27107 +# CONFIG_USB_LCD is not set
27108 +# CONFIG_USB_BERRY_CHARGE is not set
27109 +# CONFIG_USB_LED is not set
27110 +# CONFIG_USB_CYPRESS_CY7C63 is not set
27111 +# CONFIG_USB_CYTHERM is not set
27112 +# CONFIG_USB_PHIDGET is not set
27113 +# CONFIG_USB_IDMOUSE is not set
27114 +# CONFIG_USB_FTDI_ELAN is not set
27115 +# CONFIG_USB_APPLEDISPLAY is not set
27116 +# CONFIG_USB_SISUSBVGA is not set
27117 +# CONFIG_USB_LD is not set
27118 +# CONFIG_USB_TRANCEVIBRATOR is not set
27119 +# CONFIG_USB_IOWARRIOR is not set
27120 +# CONFIG_USB_TEST is not set
27121 +# CONFIG_USB_GADGET is not set
27122 +# CONFIG_MMC is not set
27123 +# CONFIG_MEMSTICK is not set
27124 +# CONFIG_NEW_LEDS is not set
27125 +# CONFIG_INFINIBAND is not set
27126 +# CONFIG_EDAC is not set
27127 +CONFIG_RTC_LIB=y
27128 +CONFIG_RTC_CLASS=y
27129 +CONFIG_RTC_HCTOSYS=y
27130 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
27131 +# CONFIG_RTC_DEBUG is not set
27132 +
27133 +#
27134 +# RTC interfaces
27135 +#
27136 +CONFIG_RTC_INTF_SYSFS=y
27137 +CONFIG_RTC_INTF_PROC=y
27138 +CONFIG_RTC_INTF_DEV=y
27139 +CONFIG_RTC_INTF_DEV_UIE_EMUL=y
27140 +# CONFIG_RTC_DRV_TEST is not set
27141 +
27142 +#
27143 +# I2C RTC drivers
27144 +#
27145 +CONFIG_RTC_DRV_DS1307=y
27146 +# CONFIG_RTC_DRV_DS1374 is not set
27147 +# CONFIG_RTC_DRV_DS1672 is not set
27148 +# CONFIG_RTC_DRV_MAX6900 is not set
27149 +# CONFIG_RTC_DRV_RS5C372 is not set
27150 +# CONFIG_RTC_DRV_ISL1208 is not set
27151 +# CONFIG_RTC_DRV_X1205 is not set
27152 +# CONFIG_RTC_DRV_PCF8563 is not set
27153 +# CONFIG_RTC_DRV_PCF8583 is not set
27154 +# CONFIG_RTC_DRV_M41T80 is not set
27155 +# CONFIG_RTC_DRV_S35390A is not set
27156 +
27157 +#
27158 +# SPI RTC drivers
27159 +#
27160 +# CONFIG_RTC_DRV_MAX6902 is not set
27161 +# CONFIG_RTC_DRV_R9701 is not set
27162 +# CONFIG_RTC_DRV_RS5C348 is not set
27163 +
27164 +#
27165 +# Platform RTC drivers
27166 +#
27167 +# CONFIG_RTC_DRV_CMOS is not set
27168 +# CONFIG_RTC_DRV_DS1511 is not set
27169 +# CONFIG_RTC_DRV_DS1553 is not set
27170 +# CONFIG_RTC_DRV_DS1742 is not set
27171 +# CONFIG_RTC_DRV_STK17TA8 is not set
27172 +# CONFIG_RTC_DRV_M48T86 is not set
27173 +# CONFIG_RTC_DRV_M48T59 is not set
27174 +# CONFIG_RTC_DRV_V3020 is not set
27175 +
27176 +#
27177 +# on-CPU RTC drivers
27178 +#
27179 +# CONFIG_DMADEVICES is not set
27180 +
27181 +#
27182 +# Userspace I/O
27183 +#
27184 +# CONFIG_UIO is not set
27185 +
27186 +#
27187 +# File systems
27188 +#
27189 +CONFIG_EXT2_FS=y
27190 +# CONFIG_EXT2_FS_XATTR is not set
27191 +# CONFIG_EXT2_FS_XIP is not set
27192 +CONFIG_EXT3_FS=y
27193 +CONFIG_EXT3_FS_XATTR=y
27194 +# CONFIG_EXT3_FS_POSIX_ACL is not set
27195 +# CONFIG_EXT3_FS_SECURITY is not set
27196 +# CONFIG_EXT4DEV_FS is not set
27197 +CONFIG_JBD=y
27198 +CONFIG_FS_MBCACHE=y
27199 +# CONFIG_REISERFS_FS is not set
27200 +# CONFIG_JFS_FS is not set
27201 +# CONFIG_FS_POSIX_ACL is not set
27202 +# CONFIG_XFS_FS is not set
27203 +# CONFIG_GFS2_FS is not set
27204 +# CONFIG_OCFS2_FS is not set
27205 +CONFIG_DNOTIFY=y
27206 +CONFIG_INOTIFY=y
27207 +CONFIG_INOTIFY_USER=y
27208 +# CONFIG_QUOTA is not set
27209 +# CONFIG_AUTOFS_FS is not set
27210 +# CONFIG_AUTOFS4_FS is not set
27211 +# CONFIG_FUSE_FS is not set
27212 +
27213 +#
27214 +# CD-ROM/DVD Filesystems
27215 +#
27216 +# CONFIG_ISO9660_FS is not set
27217 +# CONFIG_UDF_FS is not set
27218 +
27219 +#
27220 +# DOS/FAT/NT Filesystems
27221 +#
27222 +CONFIG_FAT_FS=y
27223 +CONFIG_MSDOS_FS=y
27224 +CONFIG_VFAT_FS=y
27225 +CONFIG_FAT_DEFAULT_CODEPAGE=437
27226 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
27227 +# CONFIG_NTFS_FS is not set
27228 +
27229 +#
27230 +# Pseudo filesystems
27231 +#
27232 +CONFIG_PROC_FS=y
27233 +CONFIG_PROC_KCORE=y
27234 +CONFIG_PROC_SYSCTL=y
27235 +CONFIG_SYSFS=y
27236 +CONFIG_TMPFS=y
27237 +# CONFIG_TMPFS_POSIX_ACL is not set
27238 +# CONFIG_HUGETLB_PAGE is not set
27239 +# CONFIG_CONFIGFS_FS is not set
27240 +
27241 +#
27242 +# Miscellaneous filesystems
27243 +#
27244 +# CONFIG_ADFS_FS is not set
27245 +# CONFIG_AFFS_FS is not set
27246 +# CONFIG_HFS_FS is not set
27247 +# CONFIG_HFSPLUS_FS is not set
27248 +# CONFIG_BEFS_FS is not set
27249 +# CONFIG_BFS_FS is not set
27250 +# CONFIG_EFS_FS is not set
27251 +# CONFIG_JFFS2_FS is not set
27252 +# CONFIG_CRAMFS is not set
27253 +# CONFIG_VXFS_FS is not set
27254 +# CONFIG_MINIX_FS is not set
27255 +# CONFIG_HPFS_FS is not set
27256 +# CONFIG_QNX4FS_FS is not set
27257 +# CONFIG_ROMFS_FS is not set
27258 +# CONFIG_SYSV_FS is not set
27259 +# CONFIG_UFS_FS is not set
27260 +CONFIG_NETWORK_FILESYSTEMS=y
27261 +CONFIG_NFS_FS=y
27262 +CONFIG_NFS_V3=y
27263 +# CONFIG_NFS_V3_ACL is not set
27264 +CONFIG_NFS_V4=y
27265 +# CONFIG_NFS_DIRECTIO is not set
27266 +# CONFIG_NFSD is not set
27267 +CONFIG_ROOT_NFS=y
27268 +CONFIG_LOCKD=y
27269 +CONFIG_LOCKD_V4=y
27270 +CONFIG_NFS_COMMON=y
27271 +CONFIG_SUNRPC=y
27272 +CONFIG_SUNRPC_GSS=y
27273 +# CONFIG_SUNRPC_BIND34 is not set
27274 +CONFIG_RPCSEC_GSS_KRB5=y
27275 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
27276 +# CONFIG_SMB_FS is not set
27277 +# CONFIG_CIFS is not set
27278 +# CONFIG_NCP_FS is not set
27279 +# CONFIG_CODA_FS is not set
27280 +# CONFIG_AFS_FS is not set
27281 +
27282 +#
27283 +# Partition Types
27284 +#
27285 +CONFIG_PARTITION_ADVANCED=y
27286 +# CONFIG_ACORN_PARTITION is not set
27287 +# CONFIG_OSF_PARTITION is not set
27288 +# CONFIG_AMIGA_PARTITION is not set
27289 +# CONFIG_ATARI_PARTITION is not set
27290 +CONFIG_MAC_PARTITION=y
27291 +CONFIG_MSDOS_PARTITION=y
27292 +# CONFIG_BSD_DISKLABEL is not set
27293 +# CONFIG_MINIX_SUBPARTITION is not set
27294 +# CONFIG_SOLARIS_X86_PARTITION is not set
27295 +# CONFIG_UNIXWARE_DISKLABEL is not set
27296 +# CONFIG_LDM_PARTITION is not set
27297 +# CONFIG_SGI_PARTITION is not set
27298 +# CONFIG_ULTRIX_PARTITION is not set
27299 +# CONFIG_SUN_PARTITION is not set
27300 +# CONFIG_KARMA_PARTITION is not set
27301 +# CONFIG_EFI_PARTITION is not set
27302 +# CONFIG_SYSV68_PARTITION is not set
27303 +CONFIG_NLS=y
27304 +CONFIG_NLS_DEFAULT="iso8859-1"
27305 +# CONFIG_NLS_CODEPAGE_437 is not set
27306 +# CONFIG_NLS_CODEPAGE_737 is not set
27307 +# CONFIG_NLS_CODEPAGE_775 is not set
27308 +# CONFIG_NLS_CODEPAGE_850 is not set
27309 +# CONFIG_NLS_CODEPAGE_852 is not set
27310 +# CONFIG_NLS_CODEPAGE_855 is not set
27311 +# CONFIG_NLS_CODEPAGE_857 is not set
27312 +# CONFIG_NLS_CODEPAGE_860 is not set
27313 +# CONFIG_NLS_CODEPAGE_861 is not set
27314 +# CONFIG_NLS_CODEPAGE_862 is not set
27315 +# CONFIG_NLS_CODEPAGE_863 is not set
27316 +# CONFIG_NLS_CODEPAGE_864 is not set
27317 +# CONFIG_NLS_CODEPAGE_865 is not set
27318 +# CONFIG_NLS_CODEPAGE_866 is not set
27319 +# CONFIG_NLS_CODEPAGE_869 is not set
27320 +# CONFIG_NLS_CODEPAGE_936 is not set
27321 +# CONFIG_NLS_CODEPAGE_950 is not set
27322 +# CONFIG_NLS_CODEPAGE_932 is not set
27323 +# CONFIG_NLS_CODEPAGE_949 is not set
27324 +# CONFIG_NLS_CODEPAGE_874 is not set
27325 +# CONFIG_NLS_ISO8859_8 is not set
27326 +# CONFIG_NLS_CODEPAGE_1250 is not set
27327 +# CONFIG_NLS_CODEPAGE_1251 is not set
27328 +# CONFIG_NLS_ASCII is not set
27329 +# CONFIG_NLS_ISO8859_1 is not set
27330 +# CONFIG_NLS_ISO8859_2 is not set
27331 +# CONFIG_NLS_ISO8859_3 is not set
27332 +# CONFIG_NLS_ISO8859_4 is not set
27333 +# CONFIG_NLS_ISO8859_5 is not set
27334 +# CONFIG_NLS_ISO8859_6 is not set
27335 +# CONFIG_NLS_ISO8859_7 is not set
27336 +# CONFIG_NLS_ISO8859_9 is not set
27337 +# CONFIG_NLS_ISO8859_13 is not set
27338 +# CONFIG_NLS_ISO8859_14 is not set
27339 +# CONFIG_NLS_ISO8859_15 is not set
27340 +# CONFIG_NLS_KOI8_R is not set
27341 +# CONFIG_NLS_KOI8_U is not set
27342 +# CONFIG_NLS_UTF8 is not set
27343 +# CONFIG_DLM is not set
27344 +
27345 +#
27346 +# Library routines
27347 +#
27348 +CONFIG_BITREVERSE=y
27349 +# CONFIG_CRC_CCITT is not set
27350 +# CONFIG_CRC16 is not set
27351 +# CONFIG_CRC_ITU_T is not set
27352 +CONFIG_CRC32=y
27353 +# CONFIG_CRC7 is not set
27354 +# CONFIG_LIBCRC32C is not set
27355 +CONFIG_PLIST=y
27356 +CONFIG_HAS_IOMEM=y
27357 +CONFIG_HAS_IOPORT=y
27358 +CONFIG_HAS_DMA=y
27359 +
27360 +#
27361 +# Kernel hacking
27362 +#
27363 +# CONFIG_PRINTK_TIME is not set
27364 +CONFIG_ENABLE_WARN_DEPRECATED=y
27365 +CONFIG_ENABLE_MUST_CHECK=y
27366 +# CONFIG_MAGIC_SYSRQ is not set
27367 +# CONFIG_UNUSED_SYMBOLS is not set
27368 +# CONFIG_DEBUG_FS is not set
27369 +# CONFIG_HEADERS_CHECK is not set
27370 +# CONFIG_DEBUG_KERNEL is not set
27371 +# CONFIG_SLUB_DEBUG_ON is not set
27372 +# CONFIG_SLUB_STATS is not set
27373 +# CONFIG_DEBUG_BUGVERBOSE is not set
27374 +# CONFIG_SAMPLES is not set
27375 +# CONFIG_PPC_EARLY_DEBUG is not set
27376 +
27377 +#
27378 +# Security options
27379 +#
27380 +# CONFIG_KEYS is not set
27381 +# CONFIG_SECURITY is not set
27382 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
27383 +CONFIG_CRYPTO=y
27384 +CONFIG_CRYPTO_ALGAPI=y
27385 +CONFIG_CRYPTO_BLKCIPHER=y
27386 +# CONFIG_CRYPTO_SEQIV is not set
27387 +CONFIG_CRYPTO_MANAGER=y
27388 +# CONFIG_CRYPTO_HMAC is not set
27389 +# CONFIG_CRYPTO_XCBC is not set
27390 +# CONFIG_CRYPTO_NULL is not set
27391 +# CONFIG_CRYPTO_MD4 is not set
27392 +CONFIG_CRYPTO_MD5=y
27393 +# CONFIG_CRYPTO_SHA1 is not set
27394 +# CONFIG_CRYPTO_SHA256 is not set
27395 +# CONFIG_CRYPTO_SHA512 is not set
27396 +# CONFIG_CRYPTO_WP512 is not set
27397 +# CONFIG_CRYPTO_TGR192 is not set
27398 +# CONFIG_CRYPTO_GF128MUL is not set
27399 +# CONFIG_CRYPTO_ECB is not set
27400 +CONFIG_CRYPTO_CBC=y
27401 +CONFIG_CRYPTO_PCBC=m
27402 +# CONFIG_CRYPTO_LRW is not set
27403 +# CONFIG_CRYPTO_XTS is not set
27404 +# CONFIG_CRYPTO_CTR is not set
27405 +# CONFIG_CRYPTO_GCM is not set
27406 +# CONFIG_CRYPTO_CCM is not set
27407 +# CONFIG_CRYPTO_CRYPTD is not set
27408 +CONFIG_CRYPTO_DES=y
27409 +# CONFIG_CRYPTO_FCRYPT is not set
27410 +# CONFIG_CRYPTO_BLOWFISH is not set
27411 +# CONFIG_CRYPTO_TWOFISH is not set
27412 +# CONFIG_CRYPTO_SERPENT is not set
27413 +# CONFIG_CRYPTO_AES is not set
27414 +# CONFIG_CRYPTO_CAST5 is not set
27415 +# CONFIG_CRYPTO_CAST6 is not set
27416 +# CONFIG_CRYPTO_TEA is not set
27417 +# CONFIG_CRYPTO_ARC4 is not set
27418 +# CONFIG_CRYPTO_KHAZAD is not set
27419 +# CONFIG_CRYPTO_ANUBIS is not set
27420 +# CONFIG_CRYPTO_SEED is not set
27421 +# CONFIG_CRYPTO_SALSA20 is not set
27422 +# CONFIG_CRYPTO_DEFLATE is not set
27423 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
27424 +# CONFIG_CRYPTO_CRC32C is not set
27425 +# CONFIG_CRYPTO_CAMELLIA is not set
27426 +# CONFIG_CRYPTO_TEST is not set
27427 +# CONFIG_CRYPTO_AUTHENC is not set
27428 +# CONFIG_CRYPTO_LZO is not set
27429 +CONFIG_CRYPTO_HW=y
27430 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
27431 +# CONFIG_PPC_CLOCK is not set
27432 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig
27433 ===================================================================
27434 --- /dev/null
27435 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig
27436 @@ -0,0 +1,1222 @@
27437 +#
27438 +# Automatically generated make config: don't edit
27439 +# Linux kernel version: 2.6.25-rc6
27440 +# Mon Mar 24 08:48:18 2008
27441 +#
27442 +# CONFIG_PPC64 is not set
27443 +
27444 +#
27445 +# Processor support
27446 +#
27447 +CONFIG_6xx=y
27448 +# CONFIG_PPC_85xx is not set
27449 +# CONFIG_PPC_8xx is not set
27450 +# CONFIG_40x is not set
27451 +# CONFIG_44x is not set
27452 +# CONFIG_E200 is not set
27453 +CONFIG_PPC_FPU=y
27454 +# CONFIG_FSL_EMB_PERFMON is not set
27455 +CONFIG_PPC_STD_MMU=y
27456 +CONFIG_PPC_STD_MMU_32=y
27457 +# CONFIG_PPC_MM_SLICES is not set
27458 +# CONFIG_SMP is not set
27459 +CONFIG_PPC32=y
27460 +CONFIG_WORD_SIZE=32
27461 +CONFIG_PPC_MERGE=y
27462 +CONFIG_MMU=y
27463 +CONFIG_GENERIC_CMOS_UPDATE=y
27464 +CONFIG_GENERIC_TIME=y
27465 +CONFIG_GENERIC_TIME_VSYSCALL=y
27466 +CONFIG_GENERIC_CLOCKEVENTS=y
27467 +CONFIG_GENERIC_HARDIRQS=y
27468 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
27469 +CONFIG_IRQ_PER_CPU=y
27470 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
27471 +CONFIG_ARCH_HAS_ILOG2_U32=y
27472 +CONFIG_GENERIC_HWEIGHT=y
27473 +CONFIG_GENERIC_CALIBRATE_DELAY=y
27474 +CONFIG_GENERIC_FIND_NEXT_BIT=y
27475 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
27476 +CONFIG_PPC=y
27477 +CONFIG_EARLY_PRINTK=y
27478 +CONFIG_GENERIC_NVRAM=y
27479 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
27480 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
27481 +CONFIG_PPC_OF=y
27482 +CONFIG_OF=y
27483 +CONFIG_PPC_UDBG_16550=y
27484 +# CONFIG_GENERIC_TBSYNC is not set
27485 +CONFIG_AUDIT_ARCH=y
27486 +CONFIG_GENERIC_BUG=y
27487 +CONFIG_DEFAULT_UIMAGE=y
27488 +# CONFIG_PPC_DCR_NATIVE is not set
27489 +# CONFIG_PPC_DCR_MMIO is not set
27490 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
27491 +
27492 +#
27493 +# General setup
27494 +#
27495 +CONFIG_EXPERIMENTAL=y
27496 +CONFIG_BROKEN_ON_SMP=y
27497 +CONFIG_INIT_ENV_ARG_LIMIT=32
27498 +CONFIG_LOCALVERSION=""
27499 +CONFIG_LOCALVERSION_AUTO=y
27500 +CONFIG_SWAP=y
27501 +CONFIG_SYSVIPC=y
27502 +CONFIG_SYSVIPC_SYSCTL=y
27503 +# CONFIG_POSIX_MQUEUE is not set
27504 +# CONFIG_BSD_PROCESS_ACCT is not set
27505 +# CONFIG_TASKSTATS is not set
27506 +# CONFIG_AUDIT is not set
27507 +# CONFIG_IKCONFIG is not set
27508 +CONFIG_LOG_BUF_SHIFT=14
27509 +# CONFIG_CGROUPS is not set
27510 +CONFIG_GROUP_SCHED=y
27511 +# CONFIG_FAIR_GROUP_SCHED is not set
27512 +# CONFIG_RT_GROUP_SCHED is not set
27513 +CONFIG_USER_SCHED=y
27514 +# CONFIG_CGROUP_SCHED is not set
27515 +CONFIG_SYSFS_DEPRECATED=y
27516 +CONFIG_SYSFS_DEPRECATED_V2=y
27517 +# CONFIG_RELAY is not set
27518 +# CONFIG_NAMESPACES is not set
27519 +CONFIG_BLK_DEV_INITRD=y
27520 +CONFIG_INITRAMFS_SOURCE=""
27521 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
27522 +CONFIG_SYSCTL=y
27523 +CONFIG_EMBEDDED=y
27524 +CONFIG_SYSCTL_SYSCALL=y
27525 +# CONFIG_KALLSYMS is not set
27526 +CONFIG_HOTPLUG=y
27527 +CONFIG_PRINTK=y
27528 +CONFIG_BUG=y
27529 +CONFIG_ELF_CORE=y
27530 +CONFIG_COMPAT_BRK=y
27531 +CONFIG_BASE_FULL=y
27532 +CONFIG_FUTEX=y
27533 +CONFIG_ANON_INODES=y
27534 +# CONFIG_EPOLL is not set
27535 +CONFIG_SIGNALFD=y
27536 +CONFIG_TIMERFD=y
27537 +CONFIG_EVENTFD=y
27538 +CONFIG_SHMEM=y
27539 +CONFIG_VM_EVENT_COUNTERS=y
27540 +CONFIG_SLUB_DEBUG=y
27541 +# CONFIG_SLAB is not set
27542 +CONFIG_SLUB=y
27543 +# CONFIG_SLOB is not set
27544 +# CONFIG_PROFILING is not set
27545 +# CONFIG_MARKERS is not set
27546 +CONFIG_HAVE_OPROFILE=y
27547 +CONFIG_HAVE_KPROBES=y
27548 +CONFIG_HAVE_KRETPROBES=y
27549 +CONFIG_PROC_PAGE_MONITOR=y
27550 +CONFIG_SLABINFO=y
27551 +CONFIG_RT_MUTEXES=y
27552 +# CONFIG_TINY_SHMEM is not set
27553 +CONFIG_BASE_SMALL=0
27554 +CONFIG_MODULES=y
27555 +CONFIG_MODULE_UNLOAD=y
27556 +# CONFIG_MODULE_FORCE_UNLOAD is not set
27557 +# CONFIG_MODVERSIONS is not set
27558 +# CONFIG_MODULE_SRCVERSION_ALL is not set
27559 +# CONFIG_KMOD is not set
27560 +CONFIG_BLOCK=y
27561 +# CONFIG_LBD is not set
27562 +# CONFIG_BLK_DEV_IO_TRACE is not set
27563 +# CONFIG_LSF is not set
27564 +# CONFIG_BLK_DEV_BSG is not set
27565 +
27566 +#
27567 +# IO Schedulers
27568 +#
27569 +CONFIG_IOSCHED_NOOP=y
27570 +CONFIG_IOSCHED_AS=y
27571 +CONFIG_IOSCHED_DEADLINE=y
27572 +CONFIG_IOSCHED_CFQ=y
27573 +CONFIG_DEFAULT_AS=y
27574 +# CONFIG_DEFAULT_DEADLINE is not set
27575 +# CONFIG_DEFAULT_CFQ is not set
27576 +# CONFIG_DEFAULT_NOOP is not set
27577 +CONFIG_DEFAULT_IOSCHED="anticipatory"
27578 +CONFIG_CLASSIC_RCU=y
27579 +
27580 +#
27581 +# Platform support
27582 +#
27583 +# CONFIG_PPC_MULTIPLATFORM is not set
27584 +# CONFIG_PPC_82xx is not set
27585 +CONFIG_PPC_83xx=y
27586 +# CONFIG_PPC_86xx is not set
27587 +# CONFIG_PPC_MPC512x is not set
27588 +# CONFIG_PPC_MPC5121 is not set
27589 +# CONFIG_PPC_CELL is not set
27590 +# CONFIG_PPC_CELL_NATIVE is not set
27591 +# CONFIG_PQ2ADS is not set
27592 +CONFIG_MPC83xx=y
27593 +# CONFIG_MPC831x_RDB is not set
27594 +# CONFIG_MPC832x_MDS is not set
27595 +# CONFIG_MPC832x_RDB is not set
27596 +# CONFIG_MPC834x_MDS is not set
27597 +CONFIG_MPC834x_ITX=y
27598 +# CONFIG_MPC836x_MDS is not set
27599 +# CONFIG_MPC837x_MDS is not set
27600 +# CONFIG_MPC837x_RDB is not set
27601 +# CONFIG_SBC834x is not set
27602 +CONFIG_PPC_MPC834x=y
27603 +CONFIG_IPIC=y
27604 +# CONFIG_MPIC is not set
27605 +# CONFIG_MPIC_WEIRD is not set
27606 +# CONFIG_PPC_I8259 is not set
27607 +# CONFIG_PPC_RTAS is not set
27608 +# CONFIG_MMIO_NVRAM is not set
27609 +# CONFIG_PPC_MPC106 is not set
27610 +# CONFIG_PPC_970_NAP is not set
27611 +# CONFIG_PPC_INDIRECT_IO is not set
27612 +# CONFIG_GENERIC_IOMAP is not set
27613 +# CONFIG_CPU_FREQ is not set
27614 +# CONFIG_FSL_ULI1575 is not set
27615 +
27616 +#
27617 +# Kernel options
27618 +#
27619 +# CONFIG_HIGHMEM is not set
27620 +CONFIG_TICK_ONESHOT=y
27621 +CONFIG_NO_HZ=y
27622 +CONFIG_HIGH_RES_TIMERS=y
27623 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
27624 +# CONFIG_HZ_100 is not set
27625 +CONFIG_HZ_250=y
27626 +# CONFIG_HZ_300 is not set
27627 +# CONFIG_HZ_1000 is not set
27628 +CONFIG_HZ=250
27629 +# CONFIG_SCHED_HRTICK is not set
27630 +CONFIG_PREEMPT_NONE=y
27631 +# CONFIG_PREEMPT_VOLUNTARY is not set
27632 +# CONFIG_PREEMPT is not set
27633 +CONFIG_BINFMT_ELF=y
27634 +# CONFIG_BINFMT_MISC is not set
27635 +# CONFIG_IOMMU_HELPER is not set
27636 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
27637 +CONFIG_ARCH_HAS_WALK_MEMORY=y
27638 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
27639 +CONFIG_ARCH_FLATMEM_ENABLE=y
27640 +CONFIG_ARCH_POPULATES_NODE_MAP=y
27641 +CONFIG_SELECT_MEMORY_MODEL=y
27642 +CONFIG_FLATMEM_MANUAL=y
27643 +# CONFIG_DISCONTIGMEM_MANUAL is not set
27644 +# CONFIG_SPARSEMEM_MANUAL is not set
27645 +CONFIG_FLATMEM=y
27646 +CONFIG_FLAT_NODE_MEM_MAP=y
27647 +# CONFIG_SPARSEMEM_STATIC is not set
27648 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
27649 +CONFIG_SPLIT_PTLOCK_CPUS=4
27650 +# CONFIG_RESOURCES_64BIT is not set
27651 +CONFIG_ZONE_DMA_FLAG=1
27652 +CONFIG_BOUNCE=y
27653 +CONFIG_VIRT_TO_BUS=y
27654 +CONFIG_PROC_DEVICETREE=y
27655 +# CONFIG_CMDLINE_BOOL is not set
27656 +# CONFIG_PM is not set
27657 +CONFIG_SECCOMP=y
27658 +CONFIG_ISA_DMA_API=y
27659 +
27660 +#
27661 +# Bus options
27662 +#
27663 +CONFIG_ZONE_DMA=y
27664 +CONFIG_GENERIC_ISA_DMA=y
27665 +CONFIG_PPC_INDIRECT_PCI=y
27666 +CONFIG_FSL_SOC=y
27667 +CONFIG_PCI=y
27668 +CONFIG_PCI_DOMAINS=y
27669 +CONFIG_PCI_SYSCALL=y
27670 +# CONFIG_PCIEPORTBUS is not set
27671 +CONFIG_ARCH_SUPPORTS_MSI=y
27672 +# CONFIG_PCI_MSI is not set
27673 +CONFIG_PCI_LEGACY=y
27674 +# CONFIG_PCCARD is not set
27675 +# CONFIG_HOTPLUG_PCI is not set
27676 +
27677 +#
27678 +# Advanced setup
27679 +#
27680 +# CONFIG_ADVANCED_OPTIONS is not set
27681 +
27682 +#
27683 +# Default settings for advanced configuration options are used
27684 +#
27685 +CONFIG_HIGHMEM_START=0xfe000000
27686 +CONFIG_LOWMEM_SIZE=0x30000000
27687 +CONFIG_KERNEL_START=0xc0000000
27688 +CONFIG_TASK_SIZE=0xc0000000
27689 +CONFIG_BOOT_LOAD=0x00800000
27690 +
27691 +#
27692 +# Networking
27693 +#
27694 +CONFIG_NET=y
27695 +
27696 +#
27697 +# Networking options
27698 +#
27699 +CONFIG_PACKET=y
27700 +# CONFIG_PACKET_MMAP is not set
27701 +CONFIG_UNIX=y
27702 +CONFIG_XFRM=y
27703 +# CONFIG_XFRM_USER is not set
27704 +# CONFIG_XFRM_SUB_POLICY is not set
27705 +# CONFIG_XFRM_MIGRATE is not set
27706 +# CONFIG_XFRM_STATISTICS is not set
27707 +# CONFIG_NET_KEY is not set
27708 +CONFIG_INET=y
27709 +CONFIG_IP_MULTICAST=y
27710 +# CONFIG_IP_ADVANCED_ROUTER is not set
27711 +CONFIG_IP_FIB_HASH=y
27712 +CONFIG_IP_PNP=y
27713 +CONFIG_IP_PNP_DHCP=y
27714 +CONFIG_IP_PNP_BOOTP=y
27715 +# CONFIG_IP_PNP_RARP is not set
27716 +# CONFIG_NET_IPIP is not set
27717 +# CONFIG_NET_IPGRE is not set
27718 +# CONFIG_IP_MROUTE is not set
27719 +# CONFIG_ARPD is not set
27720 +CONFIG_SYN_COOKIES=y
27721 +# CONFIG_INET_AH is not set
27722 +# CONFIG_INET_ESP is not set
27723 +# CONFIG_INET_IPCOMP is not set
27724 +# CONFIG_INET_XFRM_TUNNEL is not set
27725 +# CONFIG_INET_TUNNEL is not set
27726 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
27727 +CONFIG_INET_XFRM_MODE_TUNNEL=y
27728 +CONFIG_INET_XFRM_MODE_BEET=y
27729 +# CONFIG_INET_LRO is not set
27730 +CONFIG_INET_DIAG=y
27731 +CONFIG_INET_TCP_DIAG=y
27732 +# CONFIG_TCP_CONG_ADVANCED is not set
27733 +CONFIG_TCP_CONG_CUBIC=y
27734 +CONFIG_DEFAULT_TCP_CONG="cubic"
27735 +# CONFIG_TCP_MD5SIG is not set
27736 +# CONFIG_IPV6 is not set
27737 +# CONFIG_INET6_XFRM_TUNNEL is not set
27738 +# CONFIG_INET6_TUNNEL is not set
27739 +# CONFIG_NETWORK_SECMARK is not set
27740 +# CONFIG_NETFILTER is not set
27741 +# CONFIG_IP_DCCP is not set
27742 +# CONFIG_IP_SCTP is not set
27743 +# CONFIG_TIPC is not set
27744 +# CONFIG_ATM is not set
27745 +# CONFIG_BRIDGE is not set
27746 +# CONFIG_VLAN_8021Q is not set
27747 +# CONFIG_DECNET is not set
27748 +# CONFIG_LLC2 is not set
27749 +# CONFIG_IPX is not set
27750 +# CONFIG_ATALK is not set
27751 +# CONFIG_X25 is not set
27752 +# CONFIG_LAPB is not set
27753 +# CONFIG_ECONET is not set
27754 +# CONFIG_WAN_ROUTER is not set
27755 +# CONFIG_NET_SCHED is not set
27756 +
27757 +#
27758 +# Network testing
27759 +#
27760 +# CONFIG_NET_PKTGEN is not set
27761 +# CONFIG_HAMRADIO is not set
27762 +# CONFIG_CAN is not set
27763 +# CONFIG_IRDA is not set
27764 +# CONFIG_BT is not set
27765 +# CONFIG_AF_RXRPC is not set
27766 +
27767 +#
27768 +# Wireless
27769 +#
27770 +# CONFIG_CFG80211 is not set
27771 +# CONFIG_WIRELESS_EXT is not set
27772 +# CONFIG_MAC80211 is not set
27773 +# CONFIG_IEEE80211 is not set
27774 +# CONFIG_RFKILL is not set
27775 +# CONFIG_NET_9P is not set
27776 +
27777 +#
27778 +# Device Drivers
27779 +#
27780 +
27781 +#
27782 +# Generic Driver Options
27783 +#
27784 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
27785 +CONFIG_STANDALONE=y
27786 +CONFIG_PREVENT_FIRMWARE_BUILD=y
27787 +# CONFIG_FW_LOADER is not set
27788 +# CONFIG_SYS_HYPERVISOR is not set
27789 +# CONFIG_CONNECTOR is not set
27790 +CONFIG_MTD=y
27791 +# CONFIG_MTD_DEBUG is not set
27792 +# CONFIG_MTD_CONCAT is not set
27793 +# CONFIG_MTD_PARTITIONS is not set
27794 +
27795 +#
27796 +# User Modules And Translation Layers
27797 +#
27798 +CONFIG_MTD_CHAR=y
27799 +# CONFIG_MTD_BLKDEVS is not set
27800 +# CONFIG_MTD_BLOCK is not set
27801 +# CONFIG_MTD_BLOCK_RO is not set
27802 +# CONFIG_FTL is not set
27803 +# CONFIG_NFTL is not set
27804 +# CONFIG_INFTL is not set
27805 +# CONFIG_RFD_FTL is not set
27806 +# CONFIG_SSFDC is not set
27807 +# CONFIG_MTD_OOPS is not set
27808 +
27809 +#
27810 +# RAM/ROM/Flash chip drivers
27811 +#
27812 +CONFIG_MTD_CFI=y
27813 +# CONFIG_MTD_JEDECPROBE is not set
27814 +CONFIG_MTD_GEN_PROBE=y
27815 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
27816 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
27817 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
27818 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
27819 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
27820 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
27821 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
27822 +CONFIG_MTD_CFI_I1=y
27823 +CONFIG_MTD_CFI_I2=y
27824 +# CONFIG_MTD_CFI_I4 is not set
27825 +# CONFIG_MTD_CFI_I8 is not set
27826 +# CONFIG_MTD_CFI_INTELEXT is not set
27827 +CONFIG_MTD_CFI_AMDSTD=y
27828 +# CONFIG_MTD_CFI_STAA is not set
27829 +CONFIG_MTD_CFI_UTIL=y
27830 +# CONFIG_MTD_RAM is not set
27831 +# CONFIG_MTD_ROM is not set
27832 +# CONFIG_MTD_ABSENT is not set
27833 +
27834 +#
27835 +# Mapping drivers for chip access
27836 +#
27837 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
27838 +CONFIG_MTD_PHYSMAP=y
27839 +CONFIG_MTD_PHYSMAP_START=0xfe000000
27840 +CONFIG_MTD_PHYSMAP_LEN=0x800000
27841 +CONFIG_MTD_PHYSMAP_BANKWIDTH=2
27842 +# CONFIG_MTD_PHYSMAP_OF is not set
27843 +# CONFIG_MTD_INTEL_VR_NOR is not set
27844 +# CONFIG_MTD_PLATRAM is not set
27845 +
27846 +#
27847 +# Self-contained MTD device drivers
27848 +#
27849 +# CONFIG_MTD_PMC551 is not set
27850 +# CONFIG_MTD_DATAFLASH is not set
27851 +# CONFIG_MTD_M25P80 is not set
27852 +# CONFIG_MTD_SLRAM is not set
27853 +# CONFIG_MTD_PHRAM is not set
27854 +# CONFIG_MTD_MTDRAM is not set
27855 +# CONFIG_MTD_BLOCK2MTD is not set
27856 +
27857 +#
27858 +# Disk-On-Chip Device Drivers
27859 +#
27860 +# CONFIG_MTD_DOC2000 is not set
27861 +# CONFIG_MTD_DOC2001 is not set
27862 +# CONFIG_MTD_DOC2001PLUS is not set
27863 +# CONFIG_MTD_NAND is not set
27864 +# CONFIG_MTD_ONENAND is not set
27865 +
27866 +#
27867 +# UBI - Unsorted block images
27868 +#
27869 +# CONFIG_MTD_UBI is not set
27870 +CONFIG_OF_DEVICE=y
27871 +# CONFIG_PARPORT is not set
27872 +CONFIG_BLK_DEV=y
27873 +# CONFIG_BLK_DEV_FD is not set
27874 +# CONFIG_BLK_CPQ_DA is not set
27875 +# CONFIG_BLK_CPQ_CISS_DA is not set
27876 +# CONFIG_BLK_DEV_DAC960 is not set
27877 +# CONFIG_BLK_DEV_UMEM is not set
27878 +# CONFIG_BLK_DEV_COW_COMMON is not set
27879 +CONFIG_BLK_DEV_LOOP=y
27880 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
27881 +# CONFIG_BLK_DEV_NBD is not set
27882 +# CONFIG_BLK_DEV_SX8 is not set
27883 +# CONFIG_BLK_DEV_UB is not set
27884 +CONFIG_BLK_DEV_RAM=y
27885 +CONFIG_BLK_DEV_RAM_COUNT=16
27886 +CONFIG_BLK_DEV_RAM_SIZE=32768
27887 +# CONFIG_BLK_DEV_XIP is not set
27888 +# CONFIG_CDROM_PKTCDVD is not set
27889 +# CONFIG_ATA_OVER_ETH is not set
27890 +CONFIG_MISC_DEVICES=y
27891 +# CONFIG_PHANTOM is not set
27892 +# CONFIG_EEPROM_93CX6 is not set
27893 +# CONFIG_SGI_IOC4 is not set
27894 +# CONFIG_TIFM_CORE is not set
27895 +# CONFIG_ENCLOSURE_SERVICES is not set
27896 +CONFIG_HAVE_IDE=y
27897 +# CONFIG_IDE is not set
27898 +
27899 +#
27900 +# SCSI device support
27901 +#
27902 +# CONFIG_RAID_ATTRS is not set
27903 +CONFIG_SCSI=y
27904 +CONFIG_SCSI_DMA=y
27905 +# CONFIG_SCSI_TGT is not set
27906 +# CONFIG_SCSI_NETLINK is not set
27907 +CONFIG_SCSI_PROC_FS=y
27908 +
27909 +#
27910 +# SCSI support type (disk, tape, CD-ROM)
27911 +#
27912 +CONFIG_BLK_DEV_SD=y
27913 +# CONFIG_CHR_DEV_ST is not set
27914 +# CONFIG_CHR_DEV_OSST is not set
27915 +# CONFIG_BLK_DEV_SR is not set
27916 +CONFIG_CHR_DEV_SG=y
27917 +# CONFIG_CHR_DEV_SCH is not set
27918 +
27919 +#
27920 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
27921 +#
27922 +# CONFIG_SCSI_MULTI_LUN is not set
27923 +# CONFIG_SCSI_CONSTANTS is not set
27924 +# CONFIG_SCSI_LOGGING is not set
27925 +# CONFIG_SCSI_SCAN_ASYNC is not set
27926 +CONFIG_SCSI_WAIT_SCAN=m
27927 +
27928 +#
27929 +# SCSI Transports
27930 +#
27931 +CONFIG_SCSI_SPI_ATTRS=y
27932 +# CONFIG_SCSI_FC_ATTRS is not set
27933 +# CONFIG_SCSI_ISCSI_ATTRS is not set
27934 +# CONFIG_SCSI_SAS_LIBSAS is not set
27935 +# CONFIG_SCSI_SRP_ATTRS is not set
27936 +CONFIG_SCSI_LOWLEVEL=y
27937 +# CONFIG_ISCSI_TCP is not set
27938 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
27939 +# CONFIG_SCSI_3W_9XXX is not set
27940 +# CONFIG_SCSI_ACARD is not set
27941 +# CONFIG_SCSI_AACRAID is not set
27942 +# CONFIG_SCSI_AIC7XXX is not set
27943 +# CONFIG_SCSI_AIC7XXX_OLD is not set
27944 +# CONFIG_SCSI_AIC79XX is not set
27945 +# CONFIG_SCSI_AIC94XX is not set
27946 +# CONFIG_SCSI_DPT_I2O is not set
27947 +# CONFIG_SCSI_ADVANSYS is not set
27948 +# CONFIG_SCSI_ARCMSR is not set
27949 +# CONFIG_MEGARAID_NEWGEN is not set
27950 +# CONFIG_MEGARAID_LEGACY is not set
27951 +# CONFIG_MEGARAID_SAS is not set
27952 +# CONFIG_SCSI_HPTIOP is not set
27953 +# CONFIG_SCSI_BUSLOGIC is not set
27954 +# CONFIG_SCSI_DMX3191D is not set
27955 +# CONFIG_SCSI_EATA is not set
27956 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
27957 +# CONFIG_SCSI_GDTH is not set
27958 +# CONFIG_SCSI_IPS is not set
27959 +# CONFIG_SCSI_INITIO is not set
27960 +# CONFIG_SCSI_INIA100 is not set
27961 +# CONFIG_SCSI_MVSAS is not set
27962 +# CONFIG_SCSI_STEX is not set
27963 +# CONFIG_SCSI_SYM53C8XX_2 is not set
27964 +# CONFIG_SCSI_QLOGIC_1280 is not set
27965 +# CONFIG_SCSI_QLA_FC is not set
27966 +# CONFIG_SCSI_QLA_ISCSI is not set
27967 +# CONFIG_SCSI_LPFC is not set
27968 +# CONFIG_SCSI_DC395x is not set
27969 +# CONFIG_SCSI_DC390T is not set
27970 +# CONFIG_SCSI_NSP32 is not set
27971 +# CONFIG_SCSI_DEBUG is not set
27972 +# CONFIG_SCSI_SRP is not set
27973 +# CONFIG_ATA is not set
27974 +# CONFIG_MD is not set
27975 +# CONFIG_FUSION is not set
27976 +
27977 +#
27978 +# IEEE 1394 (FireWire) support
27979 +#
27980 +# CONFIG_FIREWIRE is not set
27981 +# CONFIG_IEEE1394 is not set
27982 +# CONFIG_I2O is not set
27983 +# CONFIG_MACINTOSH_DRIVERS is not set
27984 +CONFIG_NETDEVICES=y
27985 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
27986 +# CONFIG_DUMMY is not set
27987 +# CONFIG_BONDING is not set
27988 +# CONFIG_MACVLAN is not set
27989 +# CONFIG_EQUALIZER is not set
27990 +# CONFIG_TUN is not set
27991 +# CONFIG_VETH is not set
27992 +# CONFIG_ARCNET is not set
27993 +CONFIG_PHYLIB=y
27994 +
27995 +#
27996 +# MII PHY device drivers
27997 +#
27998 +# CONFIG_MARVELL_PHY is not set
27999 +# CONFIG_DAVICOM_PHY is not set
28000 +# CONFIG_QSEMI_PHY is not set
28001 +# CONFIG_LXT_PHY is not set
28002 +CONFIG_CICADA_PHY=y
28003 +# CONFIG_VITESSE_PHY is not set
28004 +# CONFIG_SMSC_PHY is not set
28005 +# CONFIG_BROADCOM_PHY is not set
28006 +# CONFIG_ICPLUS_PHY is not set
28007 +# CONFIG_REALTEK_PHY is not set
28008 +# CONFIG_FIXED_PHY is not set
28009 +# CONFIG_MDIO_BITBANG is not set
28010 +# CONFIG_NET_ETHERNET is not set
28011 +CONFIG_NETDEV_1000=y
28012 +# CONFIG_ACENIC is not set
28013 +# CONFIG_DL2K is not set
28014 +# CONFIG_E1000 is not set
28015 +# CONFIG_E1000E is not set
28016 +# CONFIG_E1000E_ENABLED is not set
28017 +# CONFIG_IP1000 is not set
28018 +# CONFIG_IGB is not set
28019 +# CONFIG_NS83820 is not set
28020 +# CONFIG_HAMACHI is not set
28021 +# CONFIG_YELLOWFIN is not set
28022 +# CONFIG_R8169 is not set
28023 +# CONFIG_SIS190 is not set
28024 +# CONFIG_SKGE is not set
28025 +# CONFIG_SKY2 is not set
28026 +# CONFIG_SK98LIN is not set
28027 +# CONFIG_VIA_VELOCITY is not set
28028 +# CONFIG_TIGON3 is not set
28029 +# CONFIG_BNX2 is not set
28030 +CONFIG_GIANFAR=y
28031 +CONFIG_GFAR_NAPI=y
28032 +# CONFIG_QLA3XXX is not set
28033 +# CONFIG_ATL1 is not set
28034 +CONFIG_NETDEV_10000=y
28035 +# CONFIG_CHELSIO_T1 is not set
28036 +# CONFIG_CHELSIO_T3 is not set
28037 +# CONFIG_IXGBE is not set
28038 +# CONFIG_IXGB is not set
28039 +# CONFIG_S2IO is not set
28040 +# CONFIG_MYRI10GE is not set
28041 +# CONFIG_NETXEN_NIC is not set
28042 +# CONFIG_NIU is not set
28043 +# CONFIG_MLX4_CORE is not set
28044 +# CONFIG_TEHUTI is not set
28045 +# CONFIG_BNX2X is not set
28046 +# CONFIG_TR is not set
28047 +
28048 +#
28049 +# Wireless LAN
28050 +#
28051 +# CONFIG_WLAN_PRE80211 is not set
28052 +# CONFIG_WLAN_80211 is not set
28053 +
28054 +#
28055 +# USB Network Adapters
28056 +#
28057 +# CONFIG_USB_CATC is not set
28058 +# CONFIG_USB_KAWETH is not set
28059 +# CONFIG_USB_PEGASUS is not set
28060 +# CONFIG_USB_RTL8150 is not set
28061 +# CONFIG_USB_USBNET is not set
28062 +# CONFIG_WAN is not set
28063 +# CONFIG_FDDI is not set
28064 +# CONFIG_HIPPI is not set
28065 +# CONFIG_PPP is not set
28066 +# CONFIG_SLIP is not set
28067 +# CONFIG_NET_FC is not set
28068 +# CONFIG_NETCONSOLE is not set
28069 +# CONFIG_NETPOLL is not set
28070 +# CONFIG_NET_POLL_CONTROLLER is not set
28071 +# CONFIG_ISDN is not set
28072 +# CONFIG_PHONE is not set
28073 +
28074 +#
28075 +# Input device support
28076 +#
28077 +# CONFIG_INPUT is not set
28078 +
28079 +#
28080 +# Hardware I/O ports
28081 +#
28082 +# CONFIG_SERIO is not set
28083 +# CONFIG_GAMEPORT is not set
28084 +
28085 +#
28086 +# Character devices
28087 +#
28088 +# CONFIG_VT is not set
28089 +# CONFIG_SERIAL_NONSTANDARD is not set
28090 +# CONFIG_NOZOMI is not set
28091 +
28092 +#
28093 +# Serial drivers
28094 +#
28095 +CONFIG_SERIAL_8250=y
28096 +CONFIG_SERIAL_8250_CONSOLE=y
28097 +# CONFIG_SERIAL_8250_PCI is not set
28098 +CONFIG_SERIAL_8250_NR_UARTS=4
28099 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
28100 +# CONFIG_SERIAL_8250_EXTENDED is not set
28101 +
28102 +#
28103 +# Non-8250 serial port support
28104 +#
28105 +# CONFIG_SERIAL_UARTLITE is not set
28106 +CONFIG_SERIAL_CORE=y
28107 +CONFIG_SERIAL_CORE_CONSOLE=y
28108 +# CONFIG_SERIAL_JSM is not set
28109 +# CONFIG_SERIAL_OF_PLATFORM is not set
28110 +CONFIG_UNIX98_PTYS=y
28111 +CONFIG_LEGACY_PTYS=y
28112 +CONFIG_LEGACY_PTY_COUNT=256
28113 +# CONFIG_IPMI_HANDLER is not set
28114 +CONFIG_HW_RANDOM=y
28115 +# CONFIG_NVRAM is not set
28116 +# CONFIG_GEN_RTC is not set
28117 +# CONFIG_R3964 is not set
28118 +# CONFIG_APPLICOM is not set
28119 +# CONFIG_RAW_DRIVER is not set
28120 +# CONFIG_TCG_TPM is not set
28121 +CONFIG_DEVPORT=y
28122 +CONFIG_I2C=y
28123 +CONFIG_I2C_BOARDINFO=y
28124 +CONFIG_I2C_CHARDEV=y
28125 +
28126 +#
28127 +# I2C Algorithms
28128 +#
28129 +# CONFIG_I2C_ALGOBIT is not set
28130 +# CONFIG_I2C_ALGOPCF is not set
28131 +# CONFIG_I2C_ALGOPCA is not set
28132 +
28133 +#
28134 +# I2C Hardware Bus support
28135 +#
28136 +# CONFIG_I2C_ALI1535 is not set
28137 +# CONFIG_I2C_ALI1563 is not set
28138 +# CONFIG_I2C_ALI15X3 is not set
28139 +# CONFIG_I2C_AMD756 is not set
28140 +# CONFIG_I2C_AMD8111 is not set
28141 +# CONFIG_I2C_I801 is not set
28142 +# CONFIG_I2C_I810 is not set
28143 +# CONFIG_I2C_PIIX4 is not set
28144 +CONFIG_I2C_MPC=y
28145 +# CONFIG_I2C_NFORCE2 is not set
28146 +# CONFIG_I2C_OCORES is not set
28147 +# CONFIG_I2C_PARPORT_LIGHT is not set
28148 +# CONFIG_I2C_PROSAVAGE is not set
28149 +# CONFIG_I2C_SAVAGE4 is not set
28150 +# CONFIG_I2C_SIMTEC is not set
28151 +# CONFIG_I2C_SIS5595 is not set
28152 +# CONFIG_I2C_SIS630 is not set
28153 +# CONFIG_I2C_SIS96X is not set
28154 +# CONFIG_I2C_TAOS_EVM is not set
28155 +# CONFIG_I2C_STUB is not set
28156 +# CONFIG_I2C_TINY_USB is not set
28157 +# CONFIG_I2C_VIA is not set
28158 +# CONFIG_I2C_VIAPRO is not set
28159 +# CONFIG_I2C_VOODOO3 is not set
28160 +
28161 +#
28162 +# Miscellaneous I2C Chip support
28163 +#
28164 +# CONFIG_DS1682 is not set
28165 +# CONFIG_SENSORS_EEPROM is not set
28166 +CONFIG_SENSORS_PCF8574=y
28167 +# CONFIG_PCF8575 is not set
28168 +# CONFIG_SENSORS_PCF8591 is not set
28169 +# CONFIG_TPS65010 is not set
28170 +# CONFIG_SENSORS_MAX6875 is not set
28171 +# CONFIG_SENSORS_TSL2550 is not set
28172 +# CONFIG_I2C_DEBUG_CORE is not set
28173 +# CONFIG_I2C_DEBUG_ALGO is not set
28174 +# CONFIG_I2C_DEBUG_BUS is not set
28175 +# CONFIG_I2C_DEBUG_CHIP is not set
28176 +
28177 +#
28178 +# SPI support
28179 +#
28180 +CONFIG_SPI=y
28181 +CONFIG_SPI_MASTER=y
28182 +
28183 +#
28184 +# SPI Master Controller Drivers
28185 +#
28186 +CONFIG_SPI_BITBANG=y
28187 +CONFIG_SPI_MPC83xx=y
28188 +
28189 +#
28190 +# SPI Protocol Masters
28191 +#
28192 +# CONFIG_SPI_AT25 is not set
28193 +# CONFIG_SPI_SPIDEV is not set
28194 +# CONFIG_SPI_TLE62X0 is not set
28195 +# CONFIG_W1 is not set
28196 +# CONFIG_POWER_SUPPLY is not set
28197 +# CONFIG_HWMON is not set
28198 +# CONFIG_THERMAL is not set
28199 +CONFIG_WATCHDOG=y
28200 +# CONFIG_WATCHDOG_NOWAYOUT is not set
28201 +
28202 +#
28203 +# Watchdog Device Drivers
28204 +#
28205 +# CONFIG_SOFT_WATCHDOG is not set
28206 +CONFIG_83xx_WDT=y
28207 +
28208 +#
28209 +# PCI-based Watchdog Cards
28210 +#
28211 +# CONFIG_PCIPCWATCHDOG is not set
28212 +# CONFIG_WDTPCI is not set
28213 +
28214 +#
28215 +# USB-based Watchdog Cards
28216 +#
28217 +# CONFIG_USBPCWATCHDOG is not set
28218 +
28219 +#
28220 +# Sonics Silicon Backplane
28221 +#
28222 +CONFIG_SSB_POSSIBLE=y
28223 +# CONFIG_SSB is not set
28224 +
28225 +#
28226 +# Multifunction device drivers
28227 +#
28228 +# CONFIG_MFD_SM501 is not set
28229 +
28230 +#
28231 +# Multimedia devices
28232 +#
28233 +# CONFIG_VIDEO_DEV is not set
28234 +# CONFIG_DVB_CORE is not set
28235 +CONFIG_DAB=y
28236 +# CONFIG_USB_DABUSB is not set
28237 +
28238 +#
28239 +# Graphics support
28240 +#
28241 +# CONFIG_AGP is not set
28242 +# CONFIG_DRM is not set
28243 +# CONFIG_VGASTATE is not set
28244 +CONFIG_VIDEO_OUTPUT_CONTROL=m
28245 +# CONFIG_FB is not set
28246 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
28247 +
28248 +#
28249 +# Display device support
28250 +#
28251 +# CONFIG_DISPLAY_SUPPORT is not set
28252 +
28253 +#
28254 +# Sound
28255 +#
28256 +# CONFIG_SOUND is not set
28257 +CONFIG_USB_SUPPORT=y
28258 +CONFIG_USB_ARCH_HAS_HCD=y
28259 +CONFIG_USB_ARCH_HAS_OHCI=y
28260 +CONFIG_USB_ARCH_HAS_EHCI=y
28261 +CONFIG_USB=y
28262 +# CONFIG_USB_DEBUG is not set
28263 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
28264 +
28265 +#
28266 +# Miscellaneous USB options
28267 +#
28268 +# CONFIG_USB_DEVICEFS is not set
28269 +CONFIG_USB_DEVICE_CLASS=y
28270 +# CONFIG_USB_DYNAMIC_MINORS is not set
28271 +# CONFIG_USB_OTG is not set
28272 +
28273 +#
28274 +# USB Host Controller Drivers
28275 +#
28276 +CONFIG_USB_EHCI_HCD=y
28277 +CONFIG_USB_EHCI_ROOT_HUB_TT=y
28278 +# CONFIG_USB_EHCI_TT_NEWSCHED is not set
28279 +CONFIG_USB_EHCI_FSL=y
28280 +CONFIG_USB_EHCI_HCD_PPC_OF=y
28281 +# CONFIG_USB_ISP116X_HCD is not set
28282 +# CONFIG_USB_OHCI_HCD is not set
28283 +CONFIG_USB_UHCI_HCD=y
28284 +# CONFIG_USB_SL811_HCD is not set
28285 +# CONFIG_USB_R8A66597_HCD is not set
28286 +
28287 +#
28288 +# USB Device Class drivers
28289 +#
28290 +# CONFIG_USB_ACM is not set
28291 +# CONFIG_USB_PRINTER is not set
28292 +
28293 +#
28294 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
28295 +#
28296 +
28297 +#
28298 +# may also be needed; see USB_STORAGE Help for more information
28299 +#
28300 +CONFIG_USB_STORAGE=y
28301 +# CONFIG_USB_STORAGE_DEBUG is not set
28302 +# CONFIG_USB_STORAGE_DATAFAB is not set
28303 +# CONFIG_USB_STORAGE_FREECOM is not set
28304 +# CONFIG_USB_STORAGE_ISD200 is not set
28305 +# CONFIG_USB_STORAGE_DPCM is not set
28306 +# CONFIG_USB_STORAGE_USBAT is not set
28307 +# CONFIG_USB_STORAGE_SDDR09 is not set
28308 +# CONFIG_USB_STORAGE_SDDR55 is not set
28309 +# CONFIG_USB_STORAGE_JUMPSHOT is not set
28310 +# CONFIG_USB_STORAGE_ALAUDA is not set
28311 +# CONFIG_USB_STORAGE_KARMA is not set
28312 +# CONFIG_USB_LIBUSUAL is not set
28313 +
28314 +#
28315 +# USB Imaging devices
28316 +#
28317 +# CONFIG_USB_MDC800 is not set
28318 +# CONFIG_USB_MICROTEK is not set
28319 +CONFIG_USB_MON=y
28320 +
28321 +#
28322 +# USB port drivers
28323 +#
28324 +# CONFIG_USB_SERIAL is not set
28325 +
28326 +#
28327 +# USB Miscellaneous drivers
28328 +#
28329 +# CONFIG_USB_EMI62 is not set
28330 +# CONFIG_USB_EMI26 is not set
28331 +# CONFIG_USB_ADUTUX is not set
28332 +# CONFIG_USB_AUERSWALD is not set
28333 +# CONFIG_USB_RIO500 is not set
28334 +# CONFIG_USB_LEGOTOWER is not set
28335 +# CONFIG_USB_LCD is not set
28336 +# CONFIG_USB_BERRY_CHARGE is not set
28337 +# CONFIG_USB_LED is not set
28338 +# CONFIG_USB_CYPRESS_CY7C63 is not set
28339 +# CONFIG_USB_CYTHERM is not set
28340 +# CONFIG_USB_PHIDGET is not set
28341 +# CONFIG_USB_IDMOUSE is not set
28342 +# CONFIG_USB_FTDI_ELAN is not set
28343 +# CONFIG_USB_APPLEDISPLAY is not set
28344 +# CONFIG_USB_SISUSBVGA is not set
28345 +# CONFIG_USB_LD is not set
28346 +# CONFIG_USB_TRANCEVIBRATOR is not set
28347 +# CONFIG_USB_IOWARRIOR is not set
28348 +# CONFIG_USB_GADGET is not set
28349 +# CONFIG_MMC is not set
28350 +# CONFIG_MEMSTICK is not set
28351 +# CONFIG_NEW_LEDS is not set
28352 +# CONFIG_INFINIBAND is not set
28353 +# CONFIG_EDAC is not set
28354 +CONFIG_RTC_LIB=y
28355 +CONFIG_RTC_CLASS=y
28356 +CONFIG_RTC_HCTOSYS=y
28357 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
28358 +# CONFIG_RTC_DEBUG is not set
28359 +
28360 +#
28361 +# RTC interfaces
28362 +#
28363 +CONFIG_RTC_INTF_SYSFS=y
28364 +CONFIG_RTC_INTF_PROC=y
28365 +CONFIG_RTC_INTF_DEV=y
28366 +CONFIG_RTC_INTF_DEV_UIE_EMUL=y
28367 +# CONFIG_RTC_DRV_TEST is not set
28368 +
28369 +#
28370 +# I2C RTC drivers
28371 +#
28372 +CONFIG_RTC_DRV_DS1307=y
28373 +# CONFIG_RTC_DRV_DS1374 is not set
28374 +# CONFIG_RTC_DRV_DS1672 is not set
28375 +# CONFIG_RTC_DRV_MAX6900 is not set
28376 +# CONFIG_RTC_DRV_RS5C372 is not set
28377 +# CONFIG_RTC_DRV_ISL1208 is not set
28378 +# CONFIG_RTC_DRV_X1205 is not set
28379 +# CONFIG_RTC_DRV_PCF8563 is not set
28380 +# CONFIG_RTC_DRV_PCF8583 is not set
28381 +# CONFIG_RTC_DRV_M41T80 is not set
28382 +# CONFIG_RTC_DRV_S35390A is not set
28383 +
28384 +#
28385 +# SPI RTC drivers
28386 +#
28387 +# CONFIG_RTC_DRV_MAX6902 is not set
28388 +# CONFIG_RTC_DRV_R9701 is not set
28389 +# CONFIG_RTC_DRV_RS5C348 is not set
28390 +
28391 +#
28392 +# Platform RTC drivers
28393 +#
28394 +# CONFIG_RTC_DRV_CMOS is not set
28395 +# CONFIG_RTC_DRV_DS1511 is not set
28396 +# CONFIG_RTC_DRV_DS1553 is not set
28397 +# CONFIG_RTC_DRV_DS1742 is not set
28398 +# CONFIG_RTC_DRV_STK17TA8 is not set
28399 +# CONFIG_RTC_DRV_M48T86 is not set
28400 +# CONFIG_RTC_DRV_M48T59 is not set
28401 +# CONFIG_RTC_DRV_V3020 is not set
28402 +
28403 +#
28404 +# on-CPU RTC drivers
28405 +#
28406 +# CONFIG_DMADEVICES is not set
28407 +
28408 +#
28409 +# Userspace I/O
28410 +#
28411 +# CONFIG_UIO is not set
28412 +
28413 +#
28414 +# File systems
28415 +#
28416 +CONFIG_EXT2_FS=y
28417 +# CONFIG_EXT2_FS_XATTR is not set
28418 +# CONFIG_EXT2_FS_XIP is not set
28419 +CONFIG_EXT3_FS=y
28420 +CONFIG_EXT3_FS_XATTR=y
28421 +# CONFIG_EXT3_FS_POSIX_ACL is not set
28422 +# CONFIG_EXT3_FS_SECURITY is not set
28423 +# CONFIG_EXT4DEV_FS is not set
28424 +CONFIG_JBD=y
28425 +CONFIG_FS_MBCACHE=y
28426 +# CONFIG_REISERFS_FS is not set
28427 +# CONFIG_JFS_FS is not set
28428 +# CONFIG_FS_POSIX_ACL is not set
28429 +# CONFIG_XFS_FS is not set
28430 +# CONFIG_GFS2_FS is not set
28431 +# CONFIG_OCFS2_FS is not set
28432 +CONFIG_DNOTIFY=y
28433 +CONFIG_INOTIFY=y
28434 +CONFIG_INOTIFY_USER=y
28435 +# CONFIG_QUOTA is not set
28436 +# CONFIG_AUTOFS_FS is not set
28437 +# CONFIG_AUTOFS4_FS is not set
28438 +# CONFIG_FUSE_FS is not set
28439 +
28440 +#
28441 +# CD-ROM/DVD Filesystems
28442 +#
28443 +# CONFIG_ISO9660_FS is not set
28444 +# CONFIG_UDF_FS is not set
28445 +
28446 +#
28447 +# DOS/FAT/NT Filesystems
28448 +#
28449 +CONFIG_FAT_FS=y
28450 +CONFIG_MSDOS_FS=y
28451 +CONFIG_VFAT_FS=y
28452 +CONFIG_FAT_DEFAULT_CODEPAGE=437
28453 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
28454 +# CONFIG_NTFS_FS is not set
28455 +
28456 +#
28457 +# Pseudo filesystems
28458 +#
28459 +CONFIG_PROC_FS=y
28460 +CONFIG_PROC_KCORE=y
28461 +CONFIG_PROC_SYSCTL=y
28462 +CONFIG_SYSFS=y
28463 +CONFIG_TMPFS=y
28464 +# CONFIG_TMPFS_POSIX_ACL is not set
28465 +# CONFIG_HUGETLB_PAGE is not set
28466 +# CONFIG_CONFIGFS_FS is not set
28467 +
28468 +#
28469 +# Miscellaneous filesystems
28470 +#
28471 +# CONFIG_ADFS_FS is not set
28472 +# CONFIG_AFFS_FS is not set
28473 +# CONFIG_HFS_FS is not set
28474 +# CONFIG_HFSPLUS_FS is not set
28475 +# CONFIG_BEFS_FS is not set
28476 +# CONFIG_BFS_FS is not set
28477 +# CONFIG_EFS_FS is not set
28478 +# CONFIG_JFFS2_FS is not set
28479 +# CONFIG_CRAMFS is not set
28480 +# CONFIG_VXFS_FS is not set
28481 +# CONFIG_MINIX_FS is not set
28482 +# CONFIG_HPFS_FS is not set
28483 +# CONFIG_QNX4FS_FS is not set
28484 +# CONFIG_ROMFS_FS is not set
28485 +# CONFIG_SYSV_FS is not set
28486 +# CONFIG_UFS_FS is not set
28487 +CONFIG_NETWORK_FILESYSTEMS=y
28488 +CONFIG_NFS_FS=y
28489 +CONFIG_NFS_V3=y
28490 +# CONFIG_NFS_V3_ACL is not set
28491 +CONFIG_NFS_V4=y
28492 +# CONFIG_NFS_DIRECTIO is not set
28493 +# CONFIG_NFSD is not set
28494 +CONFIG_ROOT_NFS=y
28495 +CONFIG_LOCKD=y
28496 +CONFIG_LOCKD_V4=y
28497 +CONFIG_NFS_COMMON=y
28498 +CONFIG_SUNRPC=y
28499 +CONFIG_SUNRPC_GSS=y
28500 +# CONFIG_SUNRPC_BIND34 is not set
28501 +CONFIG_RPCSEC_GSS_KRB5=y
28502 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
28503 +# CONFIG_SMB_FS is not set
28504 +# CONFIG_CIFS is not set
28505 +# CONFIG_NCP_FS is not set
28506 +# CONFIG_CODA_FS is not set
28507 +# CONFIG_AFS_FS is not set
28508 +
28509 +#
28510 +# Partition Types
28511 +#
28512 +CONFIG_PARTITION_ADVANCED=y
28513 +# CONFIG_ACORN_PARTITION is not set
28514 +# CONFIG_OSF_PARTITION is not set
28515 +# CONFIG_AMIGA_PARTITION is not set
28516 +# CONFIG_ATARI_PARTITION is not set
28517 +CONFIG_MAC_PARTITION=y
28518 +CONFIG_MSDOS_PARTITION=y
28519 +# CONFIG_BSD_DISKLABEL is not set
28520 +# CONFIG_MINIX_SUBPARTITION is not set
28521 +# CONFIG_SOLARIS_X86_PARTITION is not set
28522 +# CONFIG_UNIXWARE_DISKLABEL is not set
28523 +# CONFIG_LDM_PARTITION is not set
28524 +# CONFIG_SGI_PARTITION is not set
28525 +# CONFIG_ULTRIX_PARTITION is not set
28526 +# CONFIG_SUN_PARTITION is not set
28527 +# CONFIG_KARMA_PARTITION is not set
28528 +# CONFIG_EFI_PARTITION is not set
28529 +# CONFIG_SYSV68_PARTITION is not set
28530 +CONFIG_NLS=y
28531 +CONFIG_NLS_DEFAULT="iso8859-1"
28532 +# CONFIG_NLS_CODEPAGE_437 is not set
28533 +# CONFIG_NLS_CODEPAGE_737 is not set
28534 +# CONFIG_NLS_CODEPAGE_775 is not set
28535 +# CONFIG_NLS_CODEPAGE_850 is not set
28536 +# CONFIG_NLS_CODEPAGE_852 is not set
28537 +# CONFIG_NLS_CODEPAGE_855 is not set
28538 +# CONFIG_NLS_CODEPAGE_857 is not set
28539 +# CONFIG_NLS_CODEPAGE_860 is not set
28540 +# CONFIG_NLS_CODEPAGE_861 is not set
28541 +# CONFIG_NLS_CODEPAGE_862 is not set
28542 +# CONFIG_NLS_CODEPAGE_863 is not set
28543 +# CONFIG_NLS_CODEPAGE_864 is not set
28544 +# CONFIG_NLS_CODEPAGE_865 is not set
28545 +# CONFIG_NLS_CODEPAGE_866 is not set
28546 +# CONFIG_NLS_CODEPAGE_869 is not set
28547 +# CONFIG_NLS_CODEPAGE_936 is not set
28548 +# CONFIG_NLS_CODEPAGE_950 is not set
28549 +# CONFIG_NLS_CODEPAGE_932 is not set
28550 +# CONFIG_NLS_CODEPAGE_949 is not set
28551 +# CONFIG_NLS_CODEPAGE_874 is not set
28552 +# CONFIG_NLS_ISO8859_8 is not set
28553 +# CONFIG_NLS_CODEPAGE_1250 is not set
28554 +# CONFIG_NLS_CODEPAGE_1251 is not set
28555 +# CONFIG_NLS_ASCII is not set
28556 +# CONFIG_NLS_ISO8859_1 is not set
28557 +# CONFIG_NLS_ISO8859_2 is not set
28558 +# CONFIG_NLS_ISO8859_3 is not set
28559 +# CONFIG_NLS_ISO8859_4 is not set
28560 +# CONFIG_NLS_ISO8859_5 is not set
28561 +# CONFIG_NLS_ISO8859_6 is not set
28562 +# CONFIG_NLS_ISO8859_7 is not set
28563 +# CONFIG_NLS_ISO8859_9 is not set
28564 +# CONFIG_NLS_ISO8859_13 is not set
28565 +# CONFIG_NLS_ISO8859_14 is not set
28566 +# CONFIG_NLS_ISO8859_15 is not set
28567 +# CONFIG_NLS_KOI8_R is not set
28568 +# CONFIG_NLS_KOI8_U is not set
28569 +# CONFIG_NLS_UTF8 is not set
28570 +# CONFIG_DLM is not set
28571 +
28572 +#
28573 +# Library routines
28574 +#
28575 +CONFIG_BITREVERSE=y
28576 +# CONFIG_CRC_CCITT is not set
28577 +# CONFIG_CRC16 is not set
28578 +# CONFIG_CRC_ITU_T is not set
28579 +CONFIG_CRC32=y
28580 +# CONFIG_CRC7 is not set
28581 +# CONFIG_LIBCRC32C is not set
28582 +CONFIG_PLIST=y
28583 +CONFIG_HAS_IOMEM=y
28584 +CONFIG_HAS_IOPORT=y
28585 +CONFIG_HAS_DMA=y
28586 +
28587 +#
28588 +# Kernel hacking
28589 +#
28590 +# CONFIG_PRINTK_TIME is not set
28591 +CONFIG_ENABLE_WARN_DEPRECATED=y
28592 +CONFIG_ENABLE_MUST_CHECK=y
28593 +# CONFIG_MAGIC_SYSRQ is not set
28594 +# CONFIG_UNUSED_SYMBOLS is not set
28595 +# CONFIG_DEBUG_FS is not set
28596 +# CONFIG_HEADERS_CHECK is not set
28597 +# CONFIG_DEBUG_KERNEL is not set
28598 +# CONFIG_SLUB_DEBUG_ON is not set
28599 +# CONFIG_SLUB_STATS is not set
28600 +# CONFIG_DEBUG_BUGVERBOSE is not set
28601 +# CONFIG_SAMPLES is not set
28602 +# CONFIG_PPC_EARLY_DEBUG is not set
28603 +
28604 +#
28605 +# Security options
28606 +#
28607 +# CONFIG_KEYS is not set
28608 +# CONFIG_SECURITY is not set
28609 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
28610 +CONFIG_CRYPTO=y
28611 +CONFIG_CRYPTO_ALGAPI=y
28612 +CONFIG_CRYPTO_BLKCIPHER=y
28613 +# CONFIG_CRYPTO_SEQIV is not set
28614 +CONFIG_CRYPTO_MANAGER=y
28615 +# CONFIG_CRYPTO_HMAC is not set
28616 +# CONFIG_CRYPTO_XCBC is not set
28617 +# CONFIG_CRYPTO_NULL is not set
28618 +# CONFIG_CRYPTO_MD4 is not set
28619 +CONFIG_CRYPTO_MD5=y
28620 +# CONFIG_CRYPTO_SHA1 is not set
28621 +# CONFIG_CRYPTO_SHA256 is not set
28622 +# CONFIG_CRYPTO_SHA512 is not set
28623 +# CONFIG_CRYPTO_WP512 is not set
28624 +# CONFIG_CRYPTO_TGR192 is not set
28625 +# CONFIG_CRYPTO_GF128MUL is not set
28626 +# CONFIG_CRYPTO_ECB is not set
28627 +CONFIG_CRYPTO_CBC=y
28628 +CONFIG_CRYPTO_PCBC=m
28629 +# CONFIG_CRYPTO_LRW is not set
28630 +# CONFIG_CRYPTO_XTS is not set
28631 +# CONFIG_CRYPTO_CTR is not set
28632 +# CONFIG_CRYPTO_GCM is not set
28633 +# CONFIG_CRYPTO_CCM is not set
28634 +# CONFIG_CRYPTO_CRYPTD is not set
28635 +CONFIG_CRYPTO_DES=y
28636 +# CONFIG_CRYPTO_FCRYPT is not set
28637 +# CONFIG_CRYPTO_BLOWFISH is not set
28638 +# CONFIG_CRYPTO_TWOFISH is not set
28639 +# CONFIG_CRYPTO_SERPENT is not set
28640 +# CONFIG_CRYPTO_AES is not set
28641 +# CONFIG_CRYPTO_CAST5 is not set
28642 +# CONFIG_CRYPTO_CAST6 is not set
28643 +# CONFIG_CRYPTO_TEA is not set
28644 +# CONFIG_CRYPTO_ARC4 is not set
28645 +# CONFIG_CRYPTO_KHAZAD is not set
28646 +# CONFIG_CRYPTO_ANUBIS is not set
28647 +# CONFIG_CRYPTO_SEED is not set
28648 +# CONFIG_CRYPTO_SALSA20 is not set
28649 +# CONFIG_CRYPTO_DEFLATE is not set
28650 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
28651 +# CONFIG_CRYPTO_CRC32C is not set
28652 +# CONFIG_CRYPTO_CAMELLIA is not set
28653 +# CONFIG_CRYPTO_TEST is not set
28654 +# CONFIG_CRYPTO_AUTHENC is not set
28655 +# CONFIG_CRYPTO_LZO is not set
28656 +CONFIG_CRYPTO_HW=y
28657 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
28658 +# CONFIG_PPC_CLOCK is not set
28659 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc834x_mds_defconfig
28660 ===================================================================
28661 --- /dev/null
28662 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc834x_mds_defconfig
28663 @@ -0,0 +1,1021 @@
28664 +#
28665 +# Automatically generated make config: don't edit
28666 +# Linux kernel version: 2.6.25-rc7
28667 +# Mon Mar 31 11:36:56 2008
28668 +#
28669 +# CONFIG_PPC64 is not set
28670 +
28671 +#
28672 +# Processor support
28673 +#
28674 +CONFIG_6xx=y
28675 +# CONFIG_PPC_85xx is not set
28676 +# CONFIG_PPC_8xx is not set
28677 +# CONFIG_40x is not set
28678 +# CONFIG_44x is not set
28679 +# CONFIG_E200 is not set
28680 +CONFIG_PPC_FPU=y
28681 +# CONFIG_FSL_EMB_PERFMON is not set
28682 +CONFIG_PPC_STD_MMU=y
28683 +CONFIG_PPC_STD_MMU_32=y
28684 +# CONFIG_PPC_MM_SLICES is not set
28685 +# CONFIG_SMP is not set
28686 +CONFIG_PPC32=y
28687 +CONFIG_WORD_SIZE=32
28688 +CONFIG_PPC_MERGE=y
28689 +CONFIG_MMU=y
28690 +CONFIG_GENERIC_CMOS_UPDATE=y
28691 +CONFIG_GENERIC_TIME=y
28692 +CONFIG_GENERIC_TIME_VSYSCALL=y
28693 +CONFIG_GENERIC_CLOCKEVENTS=y
28694 +CONFIG_GENERIC_HARDIRQS=y
28695 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
28696 +CONFIG_IRQ_PER_CPU=y
28697 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
28698 +CONFIG_ARCH_HAS_ILOG2_U32=y
28699 +CONFIG_GENERIC_HWEIGHT=y
28700 +CONFIG_GENERIC_CALIBRATE_DELAY=y
28701 +CONFIG_GENERIC_FIND_NEXT_BIT=y
28702 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
28703 +CONFIG_PPC=y
28704 +CONFIG_EARLY_PRINTK=y
28705 +CONFIG_GENERIC_NVRAM=y
28706 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
28707 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
28708 +CONFIG_PPC_OF=y
28709 +CONFIG_OF=y
28710 +CONFIG_PPC_UDBG_16550=y
28711 +# CONFIG_GENERIC_TBSYNC is not set
28712 +CONFIG_AUDIT_ARCH=y
28713 +CONFIG_GENERIC_BUG=y
28714 +CONFIG_DEFAULT_UIMAGE=y
28715 +# CONFIG_PPC_DCR_NATIVE is not set
28716 +# CONFIG_PPC_DCR_MMIO is not set
28717 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
28718 +
28719 +#
28720 +# General setup
28721 +#
28722 +CONFIG_EXPERIMENTAL=y
28723 +CONFIG_BROKEN_ON_SMP=y
28724 +CONFIG_INIT_ENV_ARG_LIMIT=32
28725 +CONFIG_LOCALVERSION=""
28726 +CONFIG_LOCALVERSION_AUTO=y
28727 +CONFIG_SWAP=y
28728 +CONFIG_SYSVIPC=y
28729 +CONFIG_SYSVIPC_SYSCTL=y
28730 +# CONFIG_POSIX_MQUEUE is not set
28731 +# CONFIG_BSD_PROCESS_ACCT is not set
28732 +# CONFIG_TASKSTATS is not set
28733 +# CONFIG_AUDIT is not set
28734 +# CONFIG_IKCONFIG is not set
28735 +CONFIG_LOG_BUF_SHIFT=14
28736 +# CONFIG_CGROUPS is not set
28737 +CONFIG_GROUP_SCHED=y
28738 +# CONFIG_FAIR_GROUP_SCHED is not set
28739 +# CONFIG_RT_GROUP_SCHED is not set
28740 +CONFIG_USER_SCHED=y
28741 +# CONFIG_CGROUP_SCHED is not set
28742 +CONFIG_SYSFS_DEPRECATED=y
28743 +CONFIG_SYSFS_DEPRECATED_V2=y
28744 +# CONFIG_RELAY is not set
28745 +# CONFIG_NAMESPACES is not set
28746 +CONFIG_BLK_DEV_INITRD=y
28747 +CONFIG_INITRAMFS_SOURCE=""
28748 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
28749 +CONFIG_SYSCTL=y
28750 +CONFIG_EMBEDDED=y
28751 +CONFIG_SYSCTL_SYSCALL=y
28752 +# CONFIG_KALLSYMS is not set
28753 +CONFIG_HOTPLUG=y
28754 +CONFIG_PRINTK=y
28755 +CONFIG_BUG=y
28756 +CONFIG_ELF_CORE=y
28757 +CONFIG_COMPAT_BRK=y
28758 +CONFIG_BASE_FULL=y
28759 +CONFIG_FUTEX=y
28760 +CONFIG_ANON_INODES=y
28761 +# CONFIG_EPOLL is not set
28762 +CONFIG_SIGNALFD=y
28763 +CONFIG_TIMERFD=y
28764 +CONFIG_EVENTFD=y
28765 +CONFIG_SHMEM=y
28766 +CONFIG_VM_EVENT_COUNTERS=y
28767 +CONFIG_SLUB_DEBUG=y
28768 +# CONFIG_SLAB is not set
28769 +CONFIG_SLUB=y
28770 +# CONFIG_SLOB is not set
28771 +# CONFIG_PROFILING is not set
28772 +# CONFIG_MARKERS is not set
28773 +CONFIG_HAVE_OPROFILE=y
28774 +CONFIG_HAVE_KPROBES=y
28775 +CONFIG_HAVE_KRETPROBES=y
28776 +CONFIG_PROC_PAGE_MONITOR=y
28777 +CONFIG_SLABINFO=y
28778 +CONFIG_RT_MUTEXES=y
28779 +# CONFIG_TINY_SHMEM is not set
28780 +CONFIG_BASE_SMALL=0
28781 +CONFIG_MODULES=y
28782 +CONFIG_MODULE_UNLOAD=y
28783 +# CONFIG_MODULE_FORCE_UNLOAD is not set
28784 +# CONFIG_MODVERSIONS is not set
28785 +# CONFIG_MODULE_SRCVERSION_ALL is not set
28786 +# CONFIG_KMOD is not set
28787 +CONFIG_BLOCK=y
28788 +# CONFIG_LBD is not set
28789 +# CONFIG_BLK_DEV_IO_TRACE is not set
28790 +# CONFIG_LSF is not set
28791 +# CONFIG_BLK_DEV_BSG is not set
28792 +
28793 +#
28794 +# IO Schedulers
28795 +#
28796 +CONFIG_IOSCHED_NOOP=y
28797 +CONFIG_IOSCHED_AS=y
28798 +CONFIG_IOSCHED_DEADLINE=y
28799 +CONFIG_IOSCHED_CFQ=y
28800 +CONFIG_DEFAULT_AS=y
28801 +# CONFIG_DEFAULT_DEADLINE is not set
28802 +# CONFIG_DEFAULT_CFQ is not set
28803 +# CONFIG_DEFAULT_NOOP is not set
28804 +CONFIG_DEFAULT_IOSCHED="anticipatory"
28805 +CONFIG_CLASSIC_RCU=y
28806 +
28807 +#
28808 +# Platform support
28809 +#
28810 +# CONFIG_PPC_MULTIPLATFORM is not set
28811 +# CONFIG_PPC_82xx is not set
28812 +CONFIG_PPC_83xx=y
28813 +# CONFIG_PPC_86xx is not set
28814 +# CONFIG_PPC_MPC512x is not set
28815 +# CONFIG_PPC_MPC5121 is not set
28816 +# CONFIG_PPC_CELL is not set
28817 +# CONFIG_PPC_CELL_NATIVE is not set
28818 +# CONFIG_PQ2ADS is not set
28819 +CONFIG_MPC83xx=y
28820 +# CONFIG_MPC831x_RDB is not set
28821 +# CONFIG_MPC832x_MDS is not set
28822 +# CONFIG_MPC832x_RDB is not set
28823 +CONFIG_MPC834x_MDS=y
28824 +# CONFIG_MPC834x_ITX is not set
28825 +# CONFIG_MPC836x_MDS is not set
28826 +# CONFIG_MPC837x_MDS is not set
28827 +# CONFIG_MPC837x_RDB is not set
28828 +# CONFIG_SBC834x is not set
28829 +CONFIG_PPC_MPC834x=y
28830 +CONFIG_IPIC=y
28831 +# CONFIG_MPIC is not set
28832 +# CONFIG_MPIC_WEIRD is not set
28833 +# CONFIG_PPC_I8259 is not set
28834 +# CONFIG_PPC_RTAS is not set
28835 +# CONFIG_MMIO_NVRAM is not set
28836 +# CONFIG_PPC_MPC106 is not set
28837 +# CONFIG_PPC_970_NAP is not set
28838 +# CONFIG_PPC_INDIRECT_IO is not set
28839 +# CONFIG_GENERIC_IOMAP is not set
28840 +# CONFIG_CPU_FREQ is not set
28841 +# CONFIG_FSL_ULI1575 is not set
28842 +
28843 +#
28844 +# Kernel options
28845 +#
28846 +# CONFIG_HIGHMEM is not set
28847 +CONFIG_TICK_ONESHOT=y
28848 +CONFIG_NO_HZ=y
28849 +CONFIG_HIGH_RES_TIMERS=y
28850 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
28851 +# CONFIG_HZ_100 is not set
28852 +CONFIG_HZ_250=y
28853 +# CONFIG_HZ_300 is not set
28854 +# CONFIG_HZ_1000 is not set
28855 +CONFIG_HZ=250
28856 +# CONFIG_SCHED_HRTICK is not set
28857 +CONFIG_PREEMPT_NONE=y
28858 +# CONFIG_PREEMPT_VOLUNTARY is not set
28859 +# CONFIG_PREEMPT is not set
28860 +CONFIG_BINFMT_ELF=y
28861 +# CONFIG_BINFMT_MISC is not set
28862 +# CONFIG_IOMMU_HELPER is not set
28863 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
28864 +CONFIG_ARCH_HAS_WALK_MEMORY=y
28865 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
28866 +CONFIG_ARCH_FLATMEM_ENABLE=y
28867 +CONFIG_ARCH_POPULATES_NODE_MAP=y
28868 +CONFIG_SELECT_MEMORY_MODEL=y
28869 +CONFIG_FLATMEM_MANUAL=y
28870 +# CONFIG_DISCONTIGMEM_MANUAL is not set
28871 +# CONFIG_SPARSEMEM_MANUAL is not set
28872 +CONFIG_FLATMEM=y
28873 +CONFIG_FLAT_NODE_MEM_MAP=y
28874 +# CONFIG_SPARSEMEM_STATIC is not set
28875 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
28876 +CONFIG_SPLIT_PTLOCK_CPUS=4
28877 +# CONFIG_RESOURCES_64BIT is not set
28878 +CONFIG_ZONE_DMA_FLAG=1
28879 +CONFIG_BOUNCE=y
28880 +CONFIG_VIRT_TO_BUS=y
28881 +CONFIG_PROC_DEVICETREE=y
28882 +# CONFIG_CMDLINE_BOOL is not set
28883 +# CONFIG_PM is not set
28884 +CONFIG_SECCOMP=y
28885 +CONFIG_ISA_DMA_API=y
28886 +
28887 +#
28888 +# Bus options
28889 +#
28890 +CONFIG_ZONE_DMA=y
28891 +CONFIG_GENERIC_ISA_DMA=y
28892 +CONFIG_PPC_INDIRECT_PCI=y
28893 +CONFIG_FSL_SOC=y
28894 +CONFIG_PCI=y
28895 +CONFIG_PCI_DOMAINS=y
28896 +CONFIG_PCI_SYSCALL=y
28897 +# CONFIG_PCIEPORTBUS is not set
28898 +CONFIG_ARCH_SUPPORTS_MSI=y
28899 +# CONFIG_PCI_MSI is not set
28900 +CONFIG_PCI_LEGACY=y
28901 +# CONFIG_PCCARD is not set
28902 +# CONFIG_HOTPLUG_PCI is not set
28903 +
28904 +#
28905 +# Advanced setup
28906 +#
28907 +# CONFIG_ADVANCED_OPTIONS is not set
28908 +
28909 +#
28910 +# Default settings for advanced configuration options are used
28911 +#
28912 +CONFIG_HIGHMEM_START=0xfe000000
28913 +CONFIG_LOWMEM_SIZE=0x30000000
28914 +CONFIG_KERNEL_START=0xc0000000
28915 +CONFIG_TASK_SIZE=0xc0000000
28916 +CONFIG_BOOT_LOAD=0x00800000
28917 +
28918 +#
28919 +# Networking
28920 +#
28921 +CONFIG_NET=y
28922 +
28923 +#
28924 +# Networking options
28925 +#
28926 +CONFIG_PACKET=y
28927 +# CONFIG_PACKET_MMAP is not set
28928 +CONFIG_UNIX=y
28929 +CONFIG_XFRM=y
28930 +CONFIG_XFRM_USER=m
28931 +# CONFIG_XFRM_SUB_POLICY is not set
28932 +# CONFIG_XFRM_MIGRATE is not set
28933 +# CONFIG_XFRM_STATISTICS is not set
28934 +# CONFIG_NET_KEY is not set
28935 +CONFIG_INET=y
28936 +CONFIG_IP_MULTICAST=y
28937 +# CONFIG_IP_ADVANCED_ROUTER is not set
28938 +CONFIG_IP_FIB_HASH=y
28939 +CONFIG_IP_PNP=y
28940 +CONFIG_IP_PNP_DHCP=y
28941 +CONFIG_IP_PNP_BOOTP=y
28942 +# CONFIG_IP_PNP_RARP is not set
28943 +# CONFIG_NET_IPIP is not set
28944 +# CONFIG_NET_IPGRE is not set
28945 +# CONFIG_IP_MROUTE is not set
28946 +# CONFIG_ARPD is not set
28947 +CONFIG_SYN_COOKIES=y
28948 +# CONFIG_INET_AH is not set
28949 +# CONFIG_INET_ESP is not set
28950 +# CONFIG_INET_IPCOMP is not set
28951 +# CONFIG_INET_XFRM_TUNNEL is not set
28952 +# CONFIG_INET_TUNNEL is not set
28953 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
28954 +CONFIG_INET_XFRM_MODE_TUNNEL=y
28955 +CONFIG_INET_XFRM_MODE_BEET=y
28956 +# CONFIG_INET_LRO is not set
28957 +CONFIG_INET_DIAG=y
28958 +CONFIG_INET_TCP_DIAG=y
28959 +# CONFIG_TCP_CONG_ADVANCED is not set
28960 +CONFIG_TCP_CONG_CUBIC=y
28961 +CONFIG_DEFAULT_TCP_CONG="cubic"
28962 +# CONFIG_TCP_MD5SIG is not set
28963 +# CONFIG_IPV6 is not set
28964 +# CONFIG_INET6_XFRM_TUNNEL is not set
28965 +# CONFIG_INET6_TUNNEL is not set
28966 +# CONFIG_NETWORK_SECMARK is not set
28967 +# CONFIG_NETFILTER is not set
28968 +# CONFIG_IP_DCCP is not set
28969 +# CONFIG_IP_SCTP is not set
28970 +# CONFIG_TIPC is not set
28971 +# CONFIG_ATM is not set
28972 +# CONFIG_BRIDGE is not set
28973 +# CONFIG_VLAN_8021Q is not set
28974 +# CONFIG_DECNET is not set
28975 +# CONFIG_LLC2 is not set
28976 +# CONFIG_IPX is not set
28977 +# CONFIG_ATALK is not set
28978 +# CONFIG_X25 is not set
28979 +# CONFIG_LAPB is not set
28980 +# CONFIG_ECONET is not set
28981 +# CONFIG_WAN_ROUTER is not set
28982 +# CONFIG_NET_SCHED is not set
28983 +
28984 +#
28985 +# Network testing
28986 +#
28987 +# CONFIG_NET_PKTGEN is not set
28988 +# CONFIG_HAMRADIO is not set
28989 +# CONFIG_CAN is not set
28990 +# CONFIG_IRDA is not set
28991 +# CONFIG_BT is not set
28992 +# CONFIG_AF_RXRPC is not set
28993 +
28994 +#
28995 +# Wireless
28996 +#
28997 +# CONFIG_CFG80211 is not set
28998 +# CONFIG_WIRELESS_EXT is not set
28999 +# CONFIG_MAC80211 is not set
29000 +# CONFIG_IEEE80211 is not set
29001 +# CONFIG_RFKILL is not set
29002 +# CONFIG_NET_9P is not set
29003 +
29004 +#
29005 +# Device Drivers
29006 +#
29007 +
29008 +#
29009 +# Generic Driver Options
29010 +#
29011 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
29012 +CONFIG_STANDALONE=y
29013 +CONFIG_PREVENT_FIRMWARE_BUILD=y
29014 +# CONFIG_FW_LOADER is not set
29015 +# CONFIG_SYS_HYPERVISOR is not set
29016 +# CONFIG_CONNECTOR is not set
29017 +# CONFIG_MTD is not set
29018 +CONFIG_OF_DEVICE=y
29019 +# CONFIG_PARPORT is not set
29020 +CONFIG_BLK_DEV=y
29021 +# CONFIG_BLK_DEV_FD is not set
29022 +# CONFIG_BLK_CPQ_DA is not set
29023 +# CONFIG_BLK_CPQ_CISS_DA is not set
29024 +# CONFIG_BLK_DEV_DAC960 is not set
29025 +# CONFIG_BLK_DEV_UMEM is not set
29026 +# CONFIG_BLK_DEV_COW_COMMON is not set
29027 +CONFIG_BLK_DEV_LOOP=y
29028 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
29029 +# CONFIG_BLK_DEV_NBD is not set
29030 +# CONFIG_BLK_DEV_SX8 is not set
29031 +CONFIG_BLK_DEV_RAM=y
29032 +CONFIG_BLK_DEV_RAM_COUNT=16
29033 +CONFIG_BLK_DEV_RAM_SIZE=32768
29034 +# CONFIG_BLK_DEV_XIP is not set
29035 +# CONFIG_CDROM_PKTCDVD is not set
29036 +# CONFIG_ATA_OVER_ETH is not set
29037 +CONFIG_MISC_DEVICES=y
29038 +# CONFIG_PHANTOM is not set
29039 +# CONFIG_EEPROM_93CX6 is not set
29040 +# CONFIG_SGI_IOC4 is not set
29041 +# CONFIG_TIFM_CORE is not set
29042 +# CONFIG_ENCLOSURE_SERVICES is not set
29043 +CONFIG_HAVE_IDE=y
29044 +# CONFIG_IDE is not set
29045 +
29046 +#
29047 +# SCSI device support
29048 +#
29049 +# CONFIG_RAID_ATTRS is not set
29050 +# CONFIG_SCSI is not set
29051 +# CONFIG_SCSI_DMA is not set
29052 +# CONFIG_SCSI_NETLINK is not set
29053 +# CONFIG_ATA is not set
29054 +# CONFIG_MD is not set
29055 +# CONFIG_FUSION is not set
29056 +
29057 +#
29058 +# IEEE 1394 (FireWire) support
29059 +#
29060 +# CONFIG_FIREWIRE is not set
29061 +# CONFIG_IEEE1394 is not set
29062 +# CONFIG_I2O is not set
29063 +# CONFIG_MACINTOSH_DRIVERS is not set
29064 +CONFIG_NETDEVICES=y
29065 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
29066 +# CONFIG_DUMMY is not set
29067 +# CONFIG_BONDING is not set
29068 +# CONFIG_MACVLAN is not set
29069 +# CONFIG_EQUALIZER is not set
29070 +# CONFIG_TUN is not set
29071 +# CONFIG_VETH is not set
29072 +# CONFIG_ARCNET is not set
29073 +CONFIG_PHYLIB=y
29074 +
29075 +#
29076 +# MII PHY device drivers
29077 +#
29078 +CONFIG_MARVELL_PHY=y
29079 +# CONFIG_DAVICOM_PHY is not set
29080 +# CONFIG_QSEMI_PHY is not set
29081 +# CONFIG_LXT_PHY is not set
29082 +# CONFIG_CICADA_PHY is not set
29083 +# CONFIG_VITESSE_PHY is not set
29084 +# CONFIG_SMSC_PHY is not set
29085 +# CONFIG_BROADCOM_PHY is not set
29086 +# CONFIG_ICPLUS_PHY is not set
29087 +# CONFIG_REALTEK_PHY is not set
29088 +# CONFIG_FIXED_PHY is not set
29089 +# CONFIG_MDIO_BITBANG is not set
29090 +CONFIG_NET_ETHERNET=y
29091 +CONFIG_MII=y
29092 +# CONFIG_HAPPYMEAL is not set
29093 +# CONFIG_SUNGEM is not set
29094 +# CONFIG_CASSINI is not set
29095 +# CONFIG_NET_VENDOR_3COM is not set
29096 +# CONFIG_NET_TULIP is not set
29097 +# CONFIG_HP100 is not set
29098 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
29099 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
29100 +# CONFIG_IBM_NEW_EMAC_TAH is not set
29101 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
29102 +CONFIG_NET_PCI=y
29103 +# CONFIG_PCNET32 is not set
29104 +# CONFIG_AMD8111_ETH is not set
29105 +# CONFIG_ADAPTEC_STARFIRE is not set
29106 +# CONFIG_B44 is not set
29107 +# CONFIG_FORCEDETH is not set
29108 +# CONFIG_EEPRO100 is not set
29109 +CONFIG_E100=y
29110 +# CONFIG_FEALNX is not set
29111 +# CONFIG_NATSEMI is not set
29112 +# CONFIG_NE2K_PCI is not set
29113 +# CONFIG_8139CP is not set
29114 +# CONFIG_8139TOO is not set
29115 +# CONFIG_R6040 is not set
29116 +# CONFIG_SIS900 is not set
29117 +# CONFIG_EPIC100 is not set
29118 +# CONFIG_SUNDANCE is not set
29119 +# CONFIG_TLAN is not set
29120 +# CONFIG_VIA_RHINE is not set
29121 +# CONFIG_SC92031 is not set
29122 +CONFIG_NETDEV_1000=y
29123 +# CONFIG_ACENIC is not set
29124 +# CONFIG_DL2K is not set
29125 +# CONFIG_E1000 is not set
29126 +# CONFIG_E1000E is not set
29127 +# CONFIG_E1000E_ENABLED is not set
29128 +# CONFIG_IP1000 is not set
29129 +# CONFIG_IGB is not set
29130 +# CONFIG_NS83820 is not set
29131 +# CONFIG_HAMACHI is not set
29132 +# CONFIG_YELLOWFIN is not set
29133 +# CONFIG_R8169 is not set
29134 +# CONFIG_SIS190 is not set
29135 +# CONFIG_SKGE is not set
29136 +# CONFIG_SKY2 is not set
29137 +# CONFIG_SK98LIN is not set
29138 +# CONFIG_VIA_VELOCITY is not set
29139 +# CONFIG_TIGON3 is not set
29140 +# CONFIG_BNX2 is not set
29141 +CONFIG_GIANFAR=y
29142 +# CONFIG_GFAR_NAPI is not set
29143 +# CONFIG_QLA3XXX is not set
29144 +# CONFIG_ATL1 is not set
29145 +CONFIG_NETDEV_10000=y
29146 +# CONFIG_CHELSIO_T1 is not set
29147 +# CONFIG_CHELSIO_T3 is not set
29148 +# CONFIG_IXGBE is not set
29149 +# CONFIG_IXGB is not set
29150 +# CONFIG_S2IO is not set
29151 +# CONFIG_MYRI10GE is not set
29152 +# CONFIG_NETXEN_NIC is not set
29153 +# CONFIG_NIU is not set
29154 +# CONFIG_MLX4_CORE is not set
29155 +# CONFIG_TEHUTI is not set
29156 +# CONFIG_BNX2X is not set
29157 +# CONFIG_TR is not set
29158 +
29159 +#
29160 +# Wireless LAN
29161 +#
29162 +# CONFIG_WLAN_PRE80211 is not set
29163 +# CONFIG_WLAN_80211 is not set
29164 +# CONFIG_WAN is not set
29165 +# CONFIG_FDDI is not set
29166 +# CONFIG_HIPPI is not set
29167 +# CONFIG_PPP is not set
29168 +# CONFIG_SLIP is not set
29169 +# CONFIG_NETCONSOLE is not set
29170 +# CONFIG_NETPOLL is not set
29171 +# CONFIG_NET_POLL_CONTROLLER is not set
29172 +# CONFIG_ISDN is not set
29173 +# CONFIG_PHONE is not set
29174 +
29175 +#
29176 +# Input device support
29177 +#
29178 +CONFIG_INPUT=y
29179 +# CONFIG_INPUT_FF_MEMLESS is not set
29180 +# CONFIG_INPUT_POLLDEV is not set
29181 +
29182 +#
29183 +# Userland interfaces
29184 +#
29185 +# CONFIG_INPUT_MOUSEDEV is not set
29186 +# CONFIG_INPUT_JOYDEV is not set
29187 +# CONFIG_INPUT_EVDEV is not set
29188 +# CONFIG_INPUT_EVBUG is not set
29189 +
29190 +#
29191 +# Input Device Drivers
29192 +#
29193 +# CONFIG_INPUT_KEYBOARD is not set
29194 +# CONFIG_INPUT_MOUSE is not set
29195 +# CONFIG_INPUT_JOYSTICK is not set
29196 +# CONFIG_INPUT_TABLET is not set
29197 +# CONFIG_INPUT_TOUCHSCREEN is not set
29198 +# CONFIG_INPUT_MISC is not set
29199 +
29200 +#
29201 +# Hardware I/O ports
29202 +#
29203 +# CONFIG_SERIO is not set
29204 +# CONFIG_GAMEPORT is not set
29205 +
29206 +#
29207 +# Character devices
29208 +#
29209 +# CONFIG_VT is not set
29210 +# CONFIG_SERIAL_NONSTANDARD is not set
29211 +# CONFIG_NOZOMI is not set
29212 +
29213 +#
29214 +# Serial drivers
29215 +#
29216 +CONFIG_SERIAL_8250=y
29217 +CONFIG_SERIAL_8250_CONSOLE=y
29218 +CONFIG_SERIAL_8250_PCI=y
29219 +CONFIG_SERIAL_8250_NR_UARTS=4
29220 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
29221 +# CONFIG_SERIAL_8250_EXTENDED is not set
29222 +
29223 +#
29224 +# Non-8250 serial port support
29225 +#
29226 +# CONFIG_SERIAL_UARTLITE is not set
29227 +CONFIG_SERIAL_CORE=y
29228 +CONFIG_SERIAL_CORE_CONSOLE=y
29229 +# CONFIG_SERIAL_JSM is not set
29230 +# CONFIG_SERIAL_OF_PLATFORM is not set
29231 +CONFIG_UNIX98_PTYS=y
29232 +CONFIG_LEGACY_PTYS=y
29233 +CONFIG_LEGACY_PTY_COUNT=256
29234 +# CONFIG_IPMI_HANDLER is not set
29235 +# CONFIG_HW_RANDOM is not set
29236 +# CONFIG_NVRAM is not set
29237 +# CONFIG_GEN_RTC is not set
29238 +# CONFIG_R3964 is not set
29239 +# CONFIG_APPLICOM is not set
29240 +# CONFIG_RAW_DRIVER is not set
29241 +# CONFIG_TCG_TPM is not set
29242 +CONFIG_DEVPORT=y
29243 +CONFIG_I2C=y
29244 +CONFIG_I2C_BOARDINFO=y
29245 +CONFIG_I2C_CHARDEV=y
29246 +
29247 +#
29248 +# I2C Algorithms
29249 +#
29250 +# CONFIG_I2C_ALGOBIT is not set
29251 +# CONFIG_I2C_ALGOPCF is not set
29252 +# CONFIG_I2C_ALGOPCA is not set
29253 +
29254 +#
29255 +# I2C Hardware Bus support
29256 +#
29257 +# CONFIG_I2C_ALI1535 is not set
29258 +# CONFIG_I2C_ALI1563 is not set
29259 +# CONFIG_I2C_ALI15X3 is not set
29260 +# CONFIG_I2C_AMD756 is not set
29261 +# CONFIG_I2C_AMD8111 is not set
29262 +# CONFIG_I2C_I801 is not set
29263 +# CONFIG_I2C_I810 is not set
29264 +# CONFIG_I2C_PIIX4 is not set
29265 +CONFIG_I2C_MPC=y
29266 +# CONFIG_I2C_NFORCE2 is not set
29267 +# CONFIG_I2C_OCORES is not set
29268 +# CONFIG_I2C_PARPORT_LIGHT is not set
29269 +# CONFIG_I2C_PROSAVAGE is not set
29270 +# CONFIG_I2C_SAVAGE4 is not set
29271 +# CONFIG_I2C_SIMTEC is not set
29272 +# CONFIG_I2C_SIS5595 is not set
29273 +# CONFIG_I2C_SIS630 is not set
29274 +# CONFIG_I2C_SIS96X is not set
29275 +# CONFIG_I2C_TAOS_EVM is not set
29276 +# CONFIG_I2C_STUB is not set
29277 +# CONFIG_I2C_VIA is not set
29278 +# CONFIG_I2C_VIAPRO is not set
29279 +# CONFIG_I2C_VOODOO3 is not set
29280 +
29281 +#
29282 +# Miscellaneous I2C Chip support
29283 +#
29284 +# CONFIG_DS1682 is not set
29285 +# CONFIG_SENSORS_EEPROM is not set
29286 +# CONFIG_SENSORS_PCF8574 is not set
29287 +# CONFIG_PCF8575 is not set
29288 +# CONFIG_SENSORS_PCF8591 is not set
29289 +# CONFIG_TPS65010 is not set
29290 +# CONFIG_SENSORS_MAX6875 is not set
29291 +# CONFIG_SENSORS_TSL2550 is not set
29292 +# CONFIG_I2C_DEBUG_CORE is not set
29293 +# CONFIG_I2C_DEBUG_ALGO is not set
29294 +# CONFIG_I2C_DEBUG_BUS is not set
29295 +# CONFIG_I2C_DEBUG_CHIP is not set
29296 +
29297 +#
29298 +# SPI support
29299 +#
29300 +# CONFIG_SPI is not set
29301 +# CONFIG_SPI_MASTER is not set
29302 +# CONFIG_W1 is not set
29303 +# CONFIG_POWER_SUPPLY is not set
29304 +CONFIG_HWMON=y
29305 +# CONFIG_HWMON_VID is not set
29306 +# CONFIG_SENSORS_AD7418 is not set
29307 +# CONFIG_SENSORS_ADM1021 is not set
29308 +# CONFIG_SENSORS_ADM1025 is not set
29309 +# CONFIG_SENSORS_ADM1026 is not set
29310 +# CONFIG_SENSORS_ADM1029 is not set
29311 +# CONFIG_SENSORS_ADM1031 is not set
29312 +# CONFIG_SENSORS_ADM9240 is not set
29313 +# CONFIG_SENSORS_ADT7470 is not set
29314 +# CONFIG_SENSORS_ADT7473 is not set
29315 +# CONFIG_SENSORS_ATXP1 is not set
29316 +# CONFIG_SENSORS_DS1621 is not set
29317 +# CONFIG_SENSORS_I5K_AMB is not set
29318 +# CONFIG_SENSORS_F71805F is not set
29319 +# CONFIG_SENSORS_F71882FG is not set
29320 +# CONFIG_SENSORS_F75375S is not set
29321 +# CONFIG_SENSORS_GL518SM is not set
29322 +# CONFIG_SENSORS_GL520SM is not set
29323 +# CONFIG_SENSORS_IT87 is not set
29324 +# CONFIG_SENSORS_LM63 is not set
29325 +# CONFIG_SENSORS_LM75 is not set
29326 +# CONFIG_SENSORS_LM77 is not set
29327 +# CONFIG_SENSORS_LM78 is not set
29328 +# CONFIG_SENSORS_LM80 is not set
29329 +# CONFIG_SENSORS_LM83 is not set
29330 +# CONFIG_SENSORS_LM85 is not set
29331 +# CONFIG_SENSORS_LM87 is not set
29332 +# CONFIG_SENSORS_LM90 is not set
29333 +# CONFIG_SENSORS_LM92 is not set
29334 +# CONFIG_SENSORS_LM93 is not set
29335 +# CONFIG_SENSORS_MAX1619 is not set
29336 +# CONFIG_SENSORS_MAX6650 is not set
29337 +# CONFIG_SENSORS_PC87360 is not set
29338 +# CONFIG_SENSORS_PC87427 is not set
29339 +# CONFIG_SENSORS_SIS5595 is not set
29340 +# CONFIG_SENSORS_DME1737 is not set
29341 +# CONFIG_SENSORS_SMSC47M1 is not set
29342 +# CONFIG_SENSORS_SMSC47M192 is not set
29343 +# CONFIG_SENSORS_SMSC47B397 is not set
29344 +# CONFIG_SENSORS_ADS7828 is not set
29345 +# CONFIG_SENSORS_THMC50 is not set
29346 +# CONFIG_SENSORS_VIA686A is not set
29347 +# CONFIG_SENSORS_VT1211 is not set
29348 +# CONFIG_SENSORS_VT8231 is not set
29349 +# CONFIG_SENSORS_W83781D is not set
29350 +# CONFIG_SENSORS_W83791D is not set
29351 +# CONFIG_SENSORS_W83792D is not set
29352 +# CONFIG_SENSORS_W83793 is not set
29353 +# CONFIG_SENSORS_W83L785TS is not set
29354 +# CONFIG_SENSORS_W83L786NG is not set
29355 +# CONFIG_SENSORS_W83627HF is not set
29356 +# CONFIG_SENSORS_W83627EHF is not set
29357 +# CONFIG_HWMON_DEBUG_CHIP is not set
29358 +# CONFIG_THERMAL is not set
29359 +CONFIG_WATCHDOG=y
29360 +# CONFIG_WATCHDOG_NOWAYOUT is not set
29361 +
29362 +#
29363 +# Watchdog Device Drivers
29364 +#
29365 +# CONFIG_SOFT_WATCHDOG is not set
29366 +CONFIG_83xx_WDT=y
29367 +
29368 +#
29369 +# PCI-based Watchdog Cards
29370 +#
29371 +# CONFIG_PCIPCWATCHDOG is not set
29372 +# CONFIG_WDTPCI is not set
29373 +
29374 +#
29375 +# Sonics Silicon Backplane
29376 +#
29377 +CONFIG_SSB_POSSIBLE=y
29378 +# CONFIG_SSB is not set
29379 +
29380 +#
29381 +# Multifunction device drivers
29382 +#
29383 +# CONFIG_MFD_SM501 is not set
29384 +
29385 +#
29386 +# Multimedia devices
29387 +#
29388 +# CONFIG_VIDEO_DEV is not set
29389 +# CONFIG_DVB_CORE is not set
29390 +CONFIG_DAB=y
29391 +
29392 +#
29393 +# Graphics support
29394 +#
29395 +# CONFIG_AGP is not set
29396 +# CONFIG_DRM is not set
29397 +# CONFIG_VGASTATE is not set
29398 +CONFIG_VIDEO_OUTPUT_CONTROL=m
29399 +# CONFIG_FB is not set
29400 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
29401 +
29402 +#
29403 +# Display device support
29404 +#
29405 +# CONFIG_DISPLAY_SUPPORT is not set
29406 +
29407 +#
29408 +# Sound
29409 +#
29410 +# CONFIG_SOUND is not set
29411 +CONFIG_HID_SUPPORT=y
29412 +CONFIG_HID=y
29413 +# CONFIG_HID_DEBUG is not set
29414 +# CONFIG_HIDRAW is not set
29415 +CONFIG_USB_SUPPORT=y
29416 +CONFIG_USB_ARCH_HAS_HCD=y
29417 +CONFIG_USB_ARCH_HAS_OHCI=y
29418 +CONFIG_USB_ARCH_HAS_EHCI=y
29419 +# CONFIG_USB is not set
29420 +
29421 +#
29422 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
29423 +#
29424 +# CONFIG_USB_GADGET is not set
29425 +# CONFIG_MMC is not set
29426 +# CONFIG_MEMSTICK is not set
29427 +# CONFIG_NEW_LEDS is not set
29428 +# CONFIG_INFINIBAND is not set
29429 +# CONFIG_EDAC is not set
29430 +CONFIG_RTC_LIB=y
29431 +CONFIG_RTC_CLASS=y
29432 +CONFIG_RTC_HCTOSYS=y
29433 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
29434 +# CONFIG_RTC_DEBUG is not set
29435 +
29436 +#
29437 +# RTC interfaces
29438 +#
29439 +CONFIG_RTC_INTF_SYSFS=y
29440 +CONFIG_RTC_INTF_PROC=y
29441 +CONFIG_RTC_INTF_DEV=y
29442 +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
29443 +# CONFIG_RTC_DRV_TEST is not set
29444 +
29445 +#
29446 +# I2C RTC drivers
29447 +#
29448 +# CONFIG_RTC_DRV_DS1307 is not set
29449 +CONFIG_RTC_DRV_DS1374=y
29450 +# CONFIG_RTC_DRV_DS1672 is not set
29451 +# CONFIG_RTC_DRV_MAX6900 is not set
29452 +# CONFIG_RTC_DRV_RS5C372 is not set
29453 +# CONFIG_RTC_DRV_ISL1208 is not set
29454 +# CONFIG_RTC_DRV_X1205 is not set
29455 +# CONFIG_RTC_DRV_PCF8563 is not set
29456 +# CONFIG_RTC_DRV_PCF8583 is not set
29457 +# CONFIG_RTC_DRV_M41T80 is not set
29458 +# CONFIG_RTC_DRV_S35390A is not set
29459 +
29460 +#
29461 +# SPI RTC drivers
29462 +#
29463 +
29464 +#
29465 +# Platform RTC drivers
29466 +#
29467 +# CONFIG_RTC_DRV_CMOS is not set
29468 +# CONFIG_RTC_DRV_DS1511 is not set
29469 +# CONFIG_RTC_DRV_DS1553 is not set
29470 +# CONFIG_RTC_DRV_DS1742 is not set
29471 +# CONFIG_RTC_DRV_STK17TA8 is not set
29472 +# CONFIG_RTC_DRV_M48T86 is not set
29473 +# CONFIG_RTC_DRV_M48T59 is not set
29474 +# CONFIG_RTC_DRV_V3020 is not set
29475 +
29476 +#
29477 +# on-CPU RTC drivers
29478 +#
29479 +# CONFIG_DMADEVICES is not set
29480 +
29481 +#
29482 +# Userspace I/O
29483 +#
29484 +# CONFIG_UIO is not set
29485 +
29486 +#
29487 +# File systems
29488 +#
29489 +CONFIG_EXT2_FS=y
29490 +# CONFIG_EXT2_FS_XATTR is not set
29491 +# CONFIG_EXT2_FS_XIP is not set
29492 +CONFIG_EXT3_FS=y
29493 +CONFIG_EXT3_FS_XATTR=y
29494 +# CONFIG_EXT3_FS_POSIX_ACL is not set
29495 +# CONFIG_EXT3_FS_SECURITY is not set
29496 +# CONFIG_EXT4DEV_FS is not set
29497 +CONFIG_JBD=y
29498 +CONFIG_FS_MBCACHE=y
29499 +# CONFIG_REISERFS_FS is not set
29500 +# CONFIG_JFS_FS is not set
29501 +# CONFIG_FS_POSIX_ACL is not set
29502 +# CONFIG_XFS_FS is not set
29503 +# CONFIG_GFS2_FS is not set
29504 +# CONFIG_OCFS2_FS is not set
29505 +CONFIG_DNOTIFY=y
29506 +CONFIG_INOTIFY=y
29507 +CONFIG_INOTIFY_USER=y
29508 +# CONFIG_QUOTA is not set
29509 +# CONFIG_AUTOFS_FS is not set
29510 +# CONFIG_AUTOFS4_FS is not set
29511 +# CONFIG_FUSE_FS is not set
29512 +
29513 +#
29514 +# CD-ROM/DVD Filesystems
29515 +#
29516 +# CONFIG_ISO9660_FS is not set
29517 +# CONFIG_UDF_FS is not set
29518 +
29519 +#
29520 +# DOS/FAT/NT Filesystems
29521 +#
29522 +# CONFIG_MSDOS_FS is not set
29523 +# CONFIG_VFAT_FS is not set
29524 +# CONFIG_NTFS_FS is not set
29525 +
29526 +#
29527 +# Pseudo filesystems
29528 +#
29529 +CONFIG_PROC_FS=y
29530 +CONFIG_PROC_KCORE=y
29531 +CONFIG_PROC_SYSCTL=y
29532 +CONFIG_SYSFS=y
29533 +CONFIG_TMPFS=y
29534 +# CONFIG_TMPFS_POSIX_ACL is not set
29535 +# CONFIG_HUGETLB_PAGE is not set
29536 +# CONFIG_CONFIGFS_FS is not set
29537 +
29538 +#
29539 +# Miscellaneous filesystems
29540 +#
29541 +# CONFIG_ADFS_FS is not set
29542 +# CONFIG_AFFS_FS is not set
29543 +# CONFIG_HFS_FS is not set
29544 +# CONFIG_HFSPLUS_FS is not set
29545 +# CONFIG_BEFS_FS is not set
29546 +# CONFIG_BFS_FS is not set
29547 +# CONFIG_EFS_FS is not set
29548 +# CONFIG_CRAMFS is not set
29549 +# CONFIG_VXFS_FS is not set
29550 +# CONFIG_MINIX_FS is not set
29551 +# CONFIG_HPFS_FS is not set
29552 +# CONFIG_QNX4FS_FS is not set
29553 +# CONFIG_ROMFS_FS is not set
29554 +# CONFIG_SYSV_FS is not set
29555 +# CONFIG_UFS_FS is not set
29556 +CONFIG_NETWORK_FILESYSTEMS=y
29557 +CONFIG_NFS_FS=y
29558 +CONFIG_NFS_V3=y
29559 +# CONFIG_NFS_V3_ACL is not set
29560 +CONFIG_NFS_V4=y
29561 +# CONFIG_NFS_DIRECTIO is not set
29562 +# CONFIG_NFSD is not set
29563 +CONFIG_ROOT_NFS=y
29564 +CONFIG_LOCKD=y
29565 +CONFIG_LOCKD_V4=y
29566 +CONFIG_NFS_COMMON=y
29567 +CONFIG_SUNRPC=y
29568 +CONFIG_SUNRPC_GSS=y
29569 +# CONFIG_SUNRPC_BIND34 is not set
29570 +CONFIG_RPCSEC_GSS_KRB5=y
29571 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
29572 +# CONFIG_SMB_FS is not set
29573 +# CONFIG_CIFS is not set
29574 +# CONFIG_NCP_FS is not set
29575 +# CONFIG_CODA_FS is not set
29576 +# CONFIG_AFS_FS is not set
29577 +
29578 +#
29579 +# Partition Types
29580 +#
29581 +CONFIG_PARTITION_ADVANCED=y
29582 +# CONFIG_ACORN_PARTITION is not set
29583 +# CONFIG_OSF_PARTITION is not set
29584 +# CONFIG_AMIGA_PARTITION is not set
29585 +# CONFIG_ATARI_PARTITION is not set
29586 +# CONFIG_MAC_PARTITION is not set
29587 +# CONFIG_MSDOS_PARTITION is not set
29588 +# CONFIG_LDM_PARTITION is not set
29589 +# CONFIG_SGI_PARTITION is not set
29590 +# CONFIG_ULTRIX_PARTITION is not set
29591 +# CONFIG_SUN_PARTITION is not set
29592 +# CONFIG_KARMA_PARTITION is not set
29593 +# CONFIG_EFI_PARTITION is not set
29594 +# CONFIG_SYSV68_PARTITION is not set
29595 +# CONFIG_NLS is not set
29596 +# CONFIG_DLM is not set
29597 +
29598 +#
29599 +# Library routines
29600 +#
29601 +CONFIG_BITREVERSE=y
29602 +# CONFIG_CRC_CCITT is not set
29603 +# CONFIG_CRC16 is not set
29604 +# CONFIG_CRC_ITU_T is not set
29605 +CONFIG_CRC32=y
29606 +# CONFIG_CRC7 is not set
29607 +# CONFIG_LIBCRC32C is not set
29608 +CONFIG_PLIST=y
29609 +CONFIG_HAS_IOMEM=y
29610 +CONFIG_HAS_IOPORT=y
29611 +CONFIG_HAS_DMA=y
29612 +
29613 +#
29614 +# Kernel hacking
29615 +#
29616 +# CONFIG_PRINTK_TIME is not set
29617 +CONFIG_ENABLE_WARN_DEPRECATED=y
29618 +CONFIG_ENABLE_MUST_CHECK=y
29619 +# CONFIG_MAGIC_SYSRQ is not set
29620 +# CONFIG_UNUSED_SYMBOLS is not set
29621 +# CONFIG_DEBUG_FS is not set
29622 +# CONFIG_HEADERS_CHECK is not set
29623 +# CONFIG_DEBUG_KERNEL is not set
29624 +# CONFIG_SLUB_DEBUG_ON is not set
29625 +# CONFIG_SLUB_STATS is not set
29626 +# CONFIG_DEBUG_BUGVERBOSE is not set
29627 +# CONFIG_SAMPLES is not set
29628 +# CONFIG_PPC_EARLY_DEBUG is not set
29629 +
29630 +#
29631 +# Security options
29632 +#
29633 +# CONFIG_KEYS is not set
29634 +# CONFIG_SECURITY is not set
29635 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
29636 +CONFIG_CRYPTO=y
29637 +CONFIG_CRYPTO_ALGAPI=y
29638 +CONFIG_CRYPTO_BLKCIPHER=y
29639 +# CONFIG_CRYPTO_SEQIV is not set
29640 +CONFIG_CRYPTO_MANAGER=y
29641 +# CONFIG_CRYPTO_HMAC is not set
29642 +# CONFIG_CRYPTO_XCBC is not set
29643 +# CONFIG_CRYPTO_NULL is not set
29644 +# CONFIG_CRYPTO_MD4 is not set
29645 +CONFIG_CRYPTO_MD5=y
29646 +# CONFIG_CRYPTO_SHA1 is not set
29647 +# CONFIG_CRYPTO_SHA256 is not set
29648 +# CONFIG_CRYPTO_SHA512 is not set
29649 +# CONFIG_CRYPTO_WP512 is not set
29650 +# CONFIG_CRYPTO_TGR192 is not set
29651 +# CONFIG_CRYPTO_GF128MUL is not set
29652 +CONFIG_CRYPTO_ECB=m
29653 +CONFIG_CRYPTO_CBC=y
29654 +CONFIG_CRYPTO_PCBC=m
29655 +# CONFIG_CRYPTO_LRW is not set
29656 +# CONFIG_CRYPTO_XTS is not set
29657 +# CONFIG_CRYPTO_CTR is not set
29658 +# CONFIG_CRYPTO_GCM is not set
29659 +# CONFIG_CRYPTO_CCM is not set
29660 +# CONFIG_CRYPTO_CRYPTD is not set
29661 +CONFIG_CRYPTO_DES=y
29662 +# CONFIG_CRYPTO_FCRYPT is not set
29663 +# CONFIG_CRYPTO_BLOWFISH is not set
29664 +# CONFIG_CRYPTO_TWOFISH is not set
29665 +# CONFIG_CRYPTO_SERPENT is not set
29666 +# CONFIG_CRYPTO_AES is not set
29667 +# CONFIG_CRYPTO_CAST5 is not set
29668 +# CONFIG_CRYPTO_CAST6 is not set
29669 +# CONFIG_CRYPTO_TEA is not set
29670 +# CONFIG_CRYPTO_ARC4 is not set
29671 +# CONFIG_CRYPTO_KHAZAD is not set
29672 +# CONFIG_CRYPTO_ANUBIS is not set
29673 +# CONFIG_CRYPTO_SEED is not set
29674 +# CONFIG_CRYPTO_SALSA20 is not set
29675 +# CONFIG_CRYPTO_DEFLATE is not set
29676 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
29677 +# CONFIG_CRYPTO_CRC32C is not set
29678 +# CONFIG_CRYPTO_CAMELLIA is not set
29679 +# CONFIG_CRYPTO_TEST is not set
29680 +# CONFIG_CRYPTO_AUTHENC is not set
29681 +# CONFIG_CRYPTO_LZO is not set
29682 +CONFIG_CRYPTO_HW=y
29683 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
29684 +# CONFIG_PPC_CLOCK is not set
29685 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc836x_mds_defconfig
29686 ===================================================================
29687 --- /dev/null
29688 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc836x_mds_defconfig
29689 @@ -0,0 +1,1079 @@
29690 +#
29691 +# Automatically generated make config: don't edit
29692 +# Linux kernel version: 2.6.25-rc7
29693 +# Mon Mar 31 11:36:57 2008
29694 +#
29695 +# CONFIG_PPC64 is not set
29696 +
29697 +#
29698 +# Processor support
29699 +#
29700 +CONFIG_6xx=y
29701 +# CONFIG_PPC_85xx is not set
29702 +# CONFIG_PPC_8xx is not set
29703 +# CONFIG_40x is not set
29704 +# CONFIG_44x is not set
29705 +# CONFIG_E200 is not set
29706 +CONFIG_PPC_FPU=y
29707 +# CONFIG_FSL_EMB_PERFMON is not set
29708 +CONFIG_PPC_STD_MMU=y
29709 +CONFIG_PPC_STD_MMU_32=y
29710 +# CONFIG_PPC_MM_SLICES is not set
29711 +# CONFIG_SMP is not set
29712 +CONFIG_PPC32=y
29713 +CONFIG_WORD_SIZE=32
29714 +CONFIG_PPC_MERGE=y
29715 +CONFIG_MMU=y
29716 +CONFIG_GENERIC_CMOS_UPDATE=y
29717 +CONFIG_GENERIC_TIME=y
29718 +CONFIG_GENERIC_TIME_VSYSCALL=y
29719 +CONFIG_GENERIC_CLOCKEVENTS=y
29720 +CONFIG_GENERIC_HARDIRQS=y
29721 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
29722 +CONFIG_IRQ_PER_CPU=y
29723 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
29724 +CONFIG_ARCH_HAS_ILOG2_U32=y
29725 +CONFIG_GENERIC_HWEIGHT=y
29726 +CONFIG_GENERIC_CALIBRATE_DELAY=y
29727 +CONFIG_GENERIC_FIND_NEXT_BIT=y
29728 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
29729 +CONFIG_PPC=y
29730 +CONFIG_EARLY_PRINTK=y
29731 +CONFIG_GENERIC_NVRAM=y
29732 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
29733 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
29734 +CONFIG_PPC_OF=y
29735 +CONFIG_OF=y
29736 +CONFIG_PPC_UDBG_16550=y
29737 +# CONFIG_GENERIC_TBSYNC is not set
29738 +CONFIG_AUDIT_ARCH=y
29739 +CONFIG_GENERIC_BUG=y
29740 +CONFIG_DEFAULT_UIMAGE=y
29741 +# CONFIG_PPC_DCR_NATIVE is not set
29742 +# CONFIG_PPC_DCR_MMIO is not set
29743 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
29744 +
29745 +#
29746 +# General setup
29747 +#
29748 +CONFIG_EXPERIMENTAL=y
29749 +CONFIG_BROKEN_ON_SMP=y
29750 +CONFIG_INIT_ENV_ARG_LIMIT=32
29751 +CONFIG_LOCALVERSION=""
29752 +CONFIG_LOCALVERSION_AUTO=y
29753 +CONFIG_SWAP=y
29754 +CONFIG_SYSVIPC=y
29755 +CONFIG_SYSVIPC_SYSCTL=y
29756 +# CONFIG_POSIX_MQUEUE is not set
29757 +# CONFIG_BSD_PROCESS_ACCT is not set
29758 +# CONFIG_TASKSTATS is not set
29759 +# CONFIG_AUDIT is not set
29760 +# CONFIG_IKCONFIG is not set
29761 +CONFIG_LOG_BUF_SHIFT=14
29762 +# CONFIG_CGROUPS is not set
29763 +CONFIG_GROUP_SCHED=y
29764 +# CONFIG_FAIR_GROUP_SCHED is not set
29765 +# CONFIG_RT_GROUP_SCHED is not set
29766 +CONFIG_USER_SCHED=y
29767 +# CONFIG_CGROUP_SCHED is not set
29768 +CONFIG_SYSFS_DEPRECATED=y
29769 +CONFIG_SYSFS_DEPRECATED_V2=y
29770 +# CONFIG_RELAY is not set
29771 +# CONFIG_NAMESPACES is not set
29772 +CONFIG_BLK_DEV_INITRD=y
29773 +CONFIG_INITRAMFS_SOURCE=""
29774 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
29775 +CONFIG_SYSCTL=y
29776 +CONFIG_EMBEDDED=y
29777 +CONFIG_SYSCTL_SYSCALL=y
29778 +# CONFIG_KALLSYMS is not set
29779 +CONFIG_HOTPLUG=y
29780 +CONFIG_PRINTK=y
29781 +CONFIG_BUG=y
29782 +CONFIG_ELF_CORE=y
29783 +CONFIG_COMPAT_BRK=y
29784 +CONFIG_BASE_FULL=y
29785 +CONFIG_FUTEX=y
29786 +CONFIG_ANON_INODES=y
29787 +# CONFIG_EPOLL is not set
29788 +CONFIG_SIGNALFD=y
29789 +CONFIG_TIMERFD=y
29790 +CONFIG_EVENTFD=y
29791 +CONFIG_SHMEM=y
29792 +CONFIG_VM_EVENT_COUNTERS=y
29793 +CONFIG_SLUB_DEBUG=y
29794 +# CONFIG_SLAB is not set
29795 +CONFIG_SLUB=y
29796 +# CONFIG_SLOB is not set
29797 +# CONFIG_PROFILING is not set
29798 +# CONFIG_MARKERS is not set
29799 +CONFIG_HAVE_OPROFILE=y
29800 +CONFIG_HAVE_KPROBES=y
29801 +CONFIG_HAVE_KRETPROBES=y
29802 +CONFIG_PROC_PAGE_MONITOR=y
29803 +CONFIG_SLABINFO=y
29804 +CONFIG_RT_MUTEXES=y
29805 +# CONFIG_TINY_SHMEM is not set
29806 +CONFIG_BASE_SMALL=0
29807 +CONFIG_MODULES=y
29808 +CONFIG_MODULE_UNLOAD=y
29809 +# CONFIG_MODULE_FORCE_UNLOAD is not set
29810 +# CONFIG_MODVERSIONS is not set
29811 +# CONFIG_MODULE_SRCVERSION_ALL is not set
29812 +# CONFIG_KMOD is not set
29813 +CONFIG_BLOCK=y
29814 +# CONFIG_LBD is not set
29815 +# CONFIG_BLK_DEV_IO_TRACE is not set
29816 +# CONFIG_LSF is not set
29817 +# CONFIG_BLK_DEV_BSG is not set
29818 +
29819 +#
29820 +# IO Schedulers
29821 +#
29822 +CONFIG_IOSCHED_NOOP=y
29823 +CONFIG_IOSCHED_AS=y
29824 +CONFIG_IOSCHED_DEADLINE=y
29825 +CONFIG_IOSCHED_CFQ=y
29826 +CONFIG_DEFAULT_AS=y
29827 +# CONFIG_DEFAULT_DEADLINE is not set
29828 +# CONFIG_DEFAULT_CFQ is not set
29829 +# CONFIG_DEFAULT_NOOP is not set
29830 +CONFIG_DEFAULT_IOSCHED="anticipatory"
29831 +CONFIG_CLASSIC_RCU=y
29832 +
29833 +#
29834 +# Platform support
29835 +#
29836 +# CONFIG_PPC_MULTIPLATFORM is not set
29837 +# CONFIG_PPC_82xx is not set
29838 +CONFIG_PPC_83xx=y
29839 +# CONFIG_PPC_86xx is not set
29840 +# CONFIG_PPC_MPC512x is not set
29841 +# CONFIG_PPC_MPC5121 is not set
29842 +# CONFIG_PPC_CELL is not set
29843 +# CONFIG_PPC_CELL_NATIVE is not set
29844 +# CONFIG_PQ2ADS is not set
29845 +CONFIG_MPC83xx=y
29846 +# CONFIG_MPC831x_RDB is not set
29847 +# CONFIG_MPC832x_MDS is not set
29848 +# CONFIG_MPC832x_RDB is not set
29849 +# CONFIG_MPC834x_MDS is not set
29850 +# CONFIG_MPC834x_ITX is not set
29851 +CONFIG_MPC836x_MDS=y
29852 +# CONFIG_MPC837x_MDS is not set
29853 +# CONFIG_MPC837x_RDB is not set
29854 +# CONFIG_SBC834x is not set
29855 +CONFIG_IPIC=y
29856 +# CONFIG_MPIC is not set
29857 +# CONFIG_MPIC_WEIRD is not set
29858 +# CONFIG_PPC_I8259 is not set
29859 +# CONFIG_PPC_RTAS is not set
29860 +# CONFIG_MMIO_NVRAM is not set
29861 +# CONFIG_PPC_MPC106 is not set
29862 +# CONFIG_PPC_970_NAP is not set
29863 +# CONFIG_PPC_INDIRECT_IO is not set
29864 +# CONFIG_GENERIC_IOMAP is not set
29865 +# CONFIG_CPU_FREQ is not set
29866 +CONFIG_QUICC_ENGINE=y
29867 +# CONFIG_FSL_ULI1575 is not set
29868 +
29869 +#
29870 +# Kernel options
29871 +#
29872 +# CONFIG_HIGHMEM is not set
29873 +CONFIG_TICK_ONESHOT=y
29874 +CONFIG_NO_HZ=y
29875 +CONFIG_HIGH_RES_TIMERS=y
29876 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
29877 +# CONFIG_HZ_100 is not set
29878 +CONFIG_HZ_250=y
29879 +# CONFIG_HZ_300 is not set
29880 +# CONFIG_HZ_1000 is not set
29881 +CONFIG_HZ=250
29882 +# CONFIG_SCHED_HRTICK is not set
29883 +CONFIG_PREEMPT_NONE=y
29884 +# CONFIG_PREEMPT_VOLUNTARY is not set
29885 +# CONFIG_PREEMPT is not set
29886 +CONFIG_BINFMT_ELF=y
29887 +# CONFIG_BINFMT_MISC is not set
29888 +# CONFIG_IOMMU_HELPER is not set
29889 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
29890 +CONFIG_ARCH_HAS_WALK_MEMORY=y
29891 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
29892 +CONFIG_ARCH_FLATMEM_ENABLE=y
29893 +CONFIG_ARCH_POPULATES_NODE_MAP=y
29894 +CONFIG_SELECT_MEMORY_MODEL=y
29895 +CONFIG_FLATMEM_MANUAL=y
29896 +# CONFIG_DISCONTIGMEM_MANUAL is not set
29897 +# CONFIG_SPARSEMEM_MANUAL is not set
29898 +CONFIG_FLATMEM=y
29899 +CONFIG_FLAT_NODE_MEM_MAP=y
29900 +# CONFIG_SPARSEMEM_STATIC is not set
29901 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
29902 +CONFIG_SPLIT_PTLOCK_CPUS=4
29903 +# CONFIG_RESOURCES_64BIT is not set
29904 +CONFIG_ZONE_DMA_FLAG=1
29905 +CONFIG_BOUNCE=y
29906 +CONFIG_VIRT_TO_BUS=y
29907 +CONFIG_PROC_DEVICETREE=y
29908 +# CONFIG_CMDLINE_BOOL is not set
29909 +# CONFIG_PM is not set
29910 +CONFIG_SECCOMP=y
29911 +CONFIG_ISA_DMA_API=y
29912 +
29913 +#
29914 +# Bus options
29915 +#
29916 +CONFIG_ZONE_DMA=y
29917 +CONFIG_GENERIC_ISA_DMA=y
29918 +CONFIG_PPC_INDIRECT_PCI=y
29919 +CONFIG_FSL_SOC=y
29920 +CONFIG_PCI=y
29921 +CONFIG_PCI_DOMAINS=y
29922 +CONFIG_PCI_SYSCALL=y
29923 +# CONFIG_PCIEPORTBUS is not set
29924 +CONFIG_ARCH_SUPPORTS_MSI=y
29925 +# CONFIG_PCI_MSI is not set
29926 +CONFIG_PCI_LEGACY=y
29927 +# CONFIG_PCCARD is not set
29928 +# CONFIG_HOTPLUG_PCI is not set
29929 +
29930 +#
29931 +# Advanced setup
29932 +#
29933 +# CONFIG_ADVANCED_OPTIONS is not set
29934 +
29935 +#
29936 +# Default settings for advanced configuration options are used
29937 +#
29938 +CONFIG_HIGHMEM_START=0xfe000000
29939 +CONFIG_LOWMEM_SIZE=0x30000000
29940 +CONFIG_KERNEL_START=0xc0000000
29941 +CONFIG_TASK_SIZE=0xc0000000
29942 +CONFIG_BOOT_LOAD=0x00800000
29943 +
29944 +#
29945 +# Networking
29946 +#
29947 +CONFIG_NET=y
29948 +
29949 +#
29950 +# Networking options
29951 +#
29952 +CONFIG_PACKET=y
29953 +# CONFIG_PACKET_MMAP is not set
29954 +CONFIG_UNIX=y
29955 +CONFIG_XFRM=y
29956 +# CONFIG_XFRM_USER is not set
29957 +# CONFIG_XFRM_SUB_POLICY is not set
29958 +# CONFIG_XFRM_MIGRATE is not set
29959 +# CONFIG_XFRM_STATISTICS is not set
29960 +# CONFIG_NET_KEY is not set
29961 +CONFIG_INET=y
29962 +CONFIG_IP_MULTICAST=y
29963 +# CONFIG_IP_ADVANCED_ROUTER is not set
29964 +CONFIG_IP_FIB_HASH=y
29965 +CONFIG_IP_PNP=y
29966 +CONFIG_IP_PNP_DHCP=y
29967 +CONFIG_IP_PNP_BOOTP=y
29968 +# CONFIG_IP_PNP_RARP is not set
29969 +# CONFIG_NET_IPIP is not set
29970 +# CONFIG_NET_IPGRE is not set
29971 +# CONFIG_IP_MROUTE is not set
29972 +# CONFIG_ARPD is not set
29973 +CONFIG_SYN_COOKIES=y
29974 +# CONFIG_INET_AH is not set
29975 +# CONFIG_INET_ESP is not set
29976 +# CONFIG_INET_IPCOMP is not set
29977 +# CONFIG_INET_XFRM_TUNNEL is not set
29978 +# CONFIG_INET_TUNNEL is not set
29979 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
29980 +CONFIG_INET_XFRM_MODE_TUNNEL=y
29981 +CONFIG_INET_XFRM_MODE_BEET=y
29982 +# CONFIG_INET_LRO is not set
29983 +CONFIG_INET_DIAG=y
29984 +CONFIG_INET_TCP_DIAG=y
29985 +# CONFIG_TCP_CONG_ADVANCED is not set
29986 +CONFIG_TCP_CONG_CUBIC=y
29987 +CONFIG_DEFAULT_TCP_CONG="cubic"
29988 +# CONFIG_TCP_MD5SIG is not set
29989 +# CONFIG_IPV6 is not set
29990 +# CONFIG_INET6_XFRM_TUNNEL is not set
29991 +# CONFIG_INET6_TUNNEL is not set
29992 +# CONFIG_NETWORK_SECMARK is not set
29993 +# CONFIG_NETFILTER is not set
29994 +# CONFIG_IP_DCCP is not set
29995 +# CONFIG_IP_SCTP is not set
29996 +# CONFIG_TIPC is not set
29997 +# CONFIG_ATM is not set
29998 +# CONFIG_BRIDGE is not set
29999 +# CONFIG_VLAN_8021Q is not set
30000 +# CONFIG_DECNET is not set
30001 +# CONFIG_LLC2 is not set
30002 +# CONFIG_IPX is not set
30003 +# CONFIG_ATALK is not set
30004 +# CONFIG_X25 is not set
30005 +# CONFIG_LAPB is not set
30006 +# CONFIG_ECONET is not set
30007 +# CONFIG_WAN_ROUTER is not set
30008 +# CONFIG_NET_SCHED is not set
30009 +
30010 +#
30011 +# Network testing
30012 +#
30013 +# CONFIG_NET_PKTGEN is not set
30014 +# CONFIG_HAMRADIO is not set
30015 +# CONFIG_CAN is not set
30016 +# CONFIG_IRDA is not set
30017 +# CONFIG_BT is not set
30018 +# CONFIG_AF_RXRPC is not set
30019 +
30020 +#
30021 +# Wireless
30022 +#
30023 +# CONFIG_CFG80211 is not set
30024 +# CONFIG_WIRELESS_EXT is not set
30025 +# CONFIG_MAC80211 is not set
30026 +# CONFIG_IEEE80211 is not set
30027 +# CONFIG_RFKILL is not set
30028 +# CONFIG_NET_9P is not set
30029 +
30030 +#
30031 +# Device Drivers
30032 +#
30033 +
30034 +#
30035 +# Generic Driver Options
30036 +#
30037 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
30038 +CONFIG_STANDALONE=y
30039 +CONFIG_PREVENT_FIRMWARE_BUILD=y
30040 +# CONFIG_FW_LOADER is not set
30041 +# CONFIG_SYS_HYPERVISOR is not set
30042 +# CONFIG_CONNECTOR is not set
30043 +# CONFIG_MTD is not set
30044 +CONFIG_OF_DEVICE=y
30045 +# CONFIG_PARPORT is not set
30046 +CONFIG_BLK_DEV=y
30047 +# CONFIG_BLK_DEV_FD is not set
30048 +# CONFIG_BLK_CPQ_DA is not set
30049 +# CONFIG_BLK_CPQ_CISS_DA is not set
30050 +# CONFIG_BLK_DEV_DAC960 is not set
30051 +# CONFIG_BLK_DEV_UMEM is not set
30052 +# CONFIG_BLK_DEV_COW_COMMON is not set
30053 +CONFIG_BLK_DEV_LOOP=y
30054 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
30055 +# CONFIG_BLK_DEV_NBD is not set
30056 +# CONFIG_BLK_DEV_SX8 is not set
30057 +CONFIG_BLK_DEV_RAM=y
30058 +CONFIG_BLK_DEV_RAM_COUNT=16
30059 +CONFIG_BLK_DEV_RAM_SIZE=32768
30060 +# CONFIG_BLK_DEV_XIP is not set
30061 +# CONFIG_CDROM_PKTCDVD is not set
30062 +# CONFIG_ATA_OVER_ETH is not set
30063 +CONFIG_MISC_DEVICES=y
30064 +# CONFIG_PHANTOM is not set
30065 +# CONFIG_EEPROM_93CX6 is not set
30066 +# CONFIG_SGI_IOC4 is not set
30067 +# CONFIG_TIFM_CORE is not set
30068 +# CONFIG_ENCLOSURE_SERVICES is not set
30069 +CONFIG_HAVE_IDE=y
30070 +# CONFIG_IDE is not set
30071 +
30072 +#
30073 +# SCSI device support
30074 +#
30075 +# CONFIG_RAID_ATTRS is not set
30076 +CONFIG_SCSI=y
30077 +CONFIG_SCSI_DMA=y
30078 +# CONFIG_SCSI_TGT is not set
30079 +# CONFIG_SCSI_NETLINK is not set
30080 +CONFIG_SCSI_PROC_FS=y
30081 +
30082 +#
30083 +# SCSI support type (disk, tape, CD-ROM)
30084 +#
30085 +# CONFIG_BLK_DEV_SD is not set
30086 +# CONFIG_CHR_DEV_ST is not set
30087 +# CONFIG_CHR_DEV_OSST is not set
30088 +# CONFIG_BLK_DEV_SR is not set
30089 +# CONFIG_CHR_DEV_SG is not set
30090 +# CONFIG_CHR_DEV_SCH is not set
30091 +
30092 +#
30093 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
30094 +#
30095 +# CONFIG_SCSI_MULTI_LUN is not set
30096 +# CONFIG_SCSI_CONSTANTS is not set
30097 +# CONFIG_SCSI_LOGGING is not set
30098 +# CONFIG_SCSI_SCAN_ASYNC is not set
30099 +CONFIG_SCSI_WAIT_SCAN=m
30100 +
30101 +#
30102 +# SCSI Transports
30103 +#
30104 +# CONFIG_SCSI_SPI_ATTRS is not set
30105 +# CONFIG_SCSI_FC_ATTRS is not set
30106 +# CONFIG_SCSI_ISCSI_ATTRS is not set
30107 +# CONFIG_SCSI_SAS_LIBSAS is not set
30108 +# CONFIG_SCSI_SRP_ATTRS is not set
30109 +CONFIG_SCSI_LOWLEVEL=y
30110 +# CONFIG_ISCSI_TCP is not set
30111 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
30112 +# CONFIG_SCSI_3W_9XXX is not set
30113 +# CONFIG_SCSI_ACARD is not set
30114 +# CONFIG_SCSI_AACRAID is not set
30115 +# CONFIG_SCSI_AIC7XXX is not set
30116 +# CONFIG_SCSI_AIC7XXX_OLD is not set
30117 +# CONFIG_SCSI_AIC79XX is not set
30118 +# CONFIG_SCSI_AIC94XX is not set
30119 +# CONFIG_SCSI_DPT_I2O is not set
30120 +# CONFIG_SCSI_ADVANSYS is not set
30121 +# CONFIG_SCSI_ARCMSR is not set
30122 +# CONFIG_MEGARAID_NEWGEN is not set
30123 +# CONFIG_MEGARAID_LEGACY is not set
30124 +# CONFIG_MEGARAID_SAS is not set
30125 +# CONFIG_SCSI_HPTIOP is not set
30126 +# CONFIG_SCSI_BUSLOGIC is not set
30127 +# CONFIG_SCSI_DMX3191D is not set
30128 +# CONFIG_SCSI_EATA is not set
30129 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
30130 +# CONFIG_SCSI_GDTH is not set
30131 +# CONFIG_SCSI_IPS is not set
30132 +# CONFIG_SCSI_INITIO is not set
30133 +# CONFIG_SCSI_INIA100 is not set
30134 +# CONFIG_SCSI_MVSAS is not set
30135 +# CONFIG_SCSI_STEX is not set
30136 +# CONFIG_SCSI_SYM53C8XX_2 is not set
30137 +# CONFIG_SCSI_QLOGIC_1280 is not set
30138 +# CONFIG_SCSI_QLA_FC is not set
30139 +# CONFIG_SCSI_QLA_ISCSI is not set
30140 +# CONFIG_SCSI_LPFC is not set
30141 +# CONFIG_SCSI_DC395x is not set
30142 +# CONFIG_SCSI_DC390T is not set
30143 +# CONFIG_SCSI_NSP32 is not set
30144 +# CONFIG_SCSI_DEBUG is not set
30145 +# CONFIG_SCSI_SRP is not set
30146 +# CONFIG_ATA is not set
30147 +# CONFIG_MD is not set
30148 +# CONFIG_FUSION is not set
30149 +
30150 +#
30151 +# IEEE 1394 (FireWire) support
30152 +#
30153 +# CONFIG_FIREWIRE is not set
30154 +# CONFIG_IEEE1394 is not set
30155 +# CONFIG_I2O is not set
30156 +# CONFIG_MACINTOSH_DRIVERS is not set
30157 +CONFIG_NETDEVICES=y
30158 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
30159 +# CONFIG_DUMMY is not set
30160 +# CONFIG_BONDING is not set
30161 +# CONFIG_MACVLAN is not set
30162 +# CONFIG_EQUALIZER is not set
30163 +# CONFIG_TUN is not set
30164 +# CONFIG_VETH is not set
30165 +# CONFIG_ARCNET is not set
30166 +CONFIG_PHYLIB=y
30167 +
30168 +#
30169 +# MII PHY device drivers
30170 +#
30171 +CONFIG_MARVELL_PHY=y
30172 +# CONFIG_DAVICOM_PHY is not set
30173 +# CONFIG_QSEMI_PHY is not set
30174 +# CONFIG_LXT_PHY is not set
30175 +# CONFIG_CICADA_PHY is not set
30176 +# CONFIG_VITESSE_PHY is not set
30177 +# CONFIG_SMSC_PHY is not set
30178 +# CONFIG_BROADCOM_PHY is not set
30179 +# CONFIG_ICPLUS_PHY is not set
30180 +# CONFIG_REALTEK_PHY is not set
30181 +# CONFIG_FIXED_PHY is not set
30182 +# CONFIG_MDIO_BITBANG is not set
30183 +CONFIG_NET_ETHERNET=y
30184 +CONFIG_MII=y
30185 +# CONFIG_HAPPYMEAL is not set
30186 +# CONFIG_SUNGEM is not set
30187 +# CONFIG_CASSINI is not set
30188 +# CONFIG_NET_VENDOR_3COM is not set
30189 +# CONFIG_NET_TULIP is not set
30190 +# CONFIG_HP100 is not set
30191 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
30192 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
30193 +# CONFIG_IBM_NEW_EMAC_TAH is not set
30194 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
30195 +# CONFIG_NET_PCI is not set
30196 +# CONFIG_B44 is not set
30197 +CONFIG_NETDEV_1000=y
30198 +# CONFIG_ACENIC is not set
30199 +# CONFIG_DL2K is not set
30200 +# CONFIG_E1000 is not set
30201 +# CONFIG_E1000E is not set
30202 +# CONFIG_E1000E_ENABLED is not set
30203 +# CONFIG_IP1000 is not set
30204 +# CONFIG_IGB is not set
30205 +# CONFIG_NS83820 is not set
30206 +# CONFIG_HAMACHI is not set
30207 +# CONFIG_YELLOWFIN is not set
30208 +# CONFIG_R8169 is not set
30209 +# CONFIG_SIS190 is not set
30210 +# CONFIG_SKGE is not set
30211 +# CONFIG_SKY2 is not set
30212 +# CONFIG_SK98LIN is not set
30213 +# CONFIG_VIA_VELOCITY is not set
30214 +# CONFIG_TIGON3 is not set
30215 +# CONFIG_BNX2 is not set
30216 +# CONFIG_GIANFAR is not set
30217 +CONFIG_UCC_GETH=y
30218 +# CONFIG_UGETH_NAPI is not set
30219 +# CONFIG_UGETH_MAGIC_PACKET is not set
30220 +# CONFIG_UGETH_FILTERING is not set
30221 +# CONFIG_UGETH_TX_ON_DEMAND is not set
30222 +# CONFIG_QLA3XXX is not set
30223 +# CONFIG_ATL1 is not set
30224 +CONFIG_NETDEV_10000=y
30225 +# CONFIG_CHELSIO_T1 is not set
30226 +# CONFIG_CHELSIO_T3 is not set
30227 +# CONFIG_IXGBE is not set
30228 +# CONFIG_IXGB is not set
30229 +# CONFIG_S2IO is not set
30230 +# CONFIG_MYRI10GE is not set
30231 +# CONFIG_NETXEN_NIC is not set
30232 +# CONFIG_NIU is not set
30233 +# CONFIG_MLX4_CORE is not set
30234 +# CONFIG_TEHUTI is not set
30235 +# CONFIG_BNX2X is not set
30236 +# CONFIG_TR is not set
30237 +
30238 +#
30239 +# Wireless LAN
30240 +#
30241 +# CONFIG_WLAN_PRE80211 is not set
30242 +# CONFIG_WLAN_80211 is not set
30243 +# CONFIG_WAN is not set
30244 +# CONFIG_FDDI is not set
30245 +# CONFIG_HIPPI is not set
30246 +# CONFIG_PPP is not set
30247 +# CONFIG_SLIP is not set
30248 +# CONFIG_NET_FC is not set
30249 +# CONFIG_NETCONSOLE is not set
30250 +# CONFIG_NETPOLL is not set
30251 +# CONFIG_NET_POLL_CONTROLLER is not set
30252 +# CONFIG_ISDN is not set
30253 +# CONFIG_PHONE is not set
30254 +
30255 +#
30256 +# Input device support
30257 +#
30258 +CONFIG_INPUT=y
30259 +# CONFIG_INPUT_FF_MEMLESS is not set
30260 +# CONFIG_INPUT_POLLDEV is not set
30261 +
30262 +#
30263 +# Userland interfaces
30264 +#
30265 +# CONFIG_INPUT_MOUSEDEV is not set
30266 +# CONFIG_INPUT_JOYDEV is not set
30267 +# CONFIG_INPUT_EVDEV is not set
30268 +# CONFIG_INPUT_EVBUG is not set
30269 +
30270 +#
30271 +# Input Device Drivers
30272 +#
30273 +# CONFIG_INPUT_KEYBOARD is not set
30274 +# CONFIG_INPUT_MOUSE is not set
30275 +# CONFIG_INPUT_JOYSTICK is not set
30276 +# CONFIG_INPUT_TABLET is not set
30277 +# CONFIG_INPUT_TOUCHSCREEN is not set
30278 +# CONFIG_INPUT_MISC is not set
30279 +
30280 +#
30281 +# Hardware I/O ports
30282 +#
30283 +# CONFIG_SERIO is not set
30284 +# CONFIG_GAMEPORT is not set
30285 +
30286 +#
30287 +# Character devices
30288 +#
30289 +# CONFIG_VT is not set
30290 +# CONFIG_SERIAL_NONSTANDARD is not set
30291 +# CONFIG_NOZOMI is not set
30292 +
30293 +#
30294 +# Serial drivers
30295 +#
30296 +CONFIG_SERIAL_8250=y
30297 +CONFIG_SERIAL_8250_CONSOLE=y
30298 +CONFIG_SERIAL_8250_PCI=y
30299 +CONFIG_SERIAL_8250_NR_UARTS=4
30300 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
30301 +# CONFIG_SERIAL_8250_EXTENDED is not set
30302 +
30303 +#
30304 +# Non-8250 serial port support
30305 +#
30306 +# CONFIG_SERIAL_UARTLITE is not set
30307 +CONFIG_SERIAL_CORE=y
30308 +CONFIG_SERIAL_CORE_CONSOLE=y
30309 +# CONFIG_SERIAL_JSM is not set
30310 +# CONFIG_SERIAL_OF_PLATFORM is not set
30311 +# CONFIG_SERIAL_QE is not set
30312 +CONFIG_UNIX98_PTYS=y
30313 +CONFIG_LEGACY_PTYS=y
30314 +CONFIG_LEGACY_PTY_COUNT=256
30315 +# CONFIG_IPMI_HANDLER is not set
30316 +CONFIG_HW_RANDOM=y
30317 +# CONFIG_NVRAM is not set
30318 +# CONFIG_GEN_RTC is not set
30319 +# CONFIG_R3964 is not set
30320 +# CONFIG_APPLICOM is not set
30321 +# CONFIG_RAW_DRIVER is not set
30322 +# CONFIG_TCG_TPM is not set
30323 +CONFIG_DEVPORT=y
30324 +CONFIG_I2C=y
30325 +CONFIG_I2C_BOARDINFO=y
30326 +CONFIG_I2C_CHARDEV=y
30327 +
30328 +#
30329 +# I2C Algorithms
30330 +#
30331 +# CONFIG_I2C_ALGOBIT is not set
30332 +# CONFIG_I2C_ALGOPCF is not set
30333 +# CONFIG_I2C_ALGOPCA is not set
30334 +
30335 +#
30336 +# I2C Hardware Bus support
30337 +#
30338 +# CONFIG_I2C_ALI1535 is not set
30339 +# CONFIG_I2C_ALI1563 is not set
30340 +# CONFIG_I2C_ALI15X3 is not set
30341 +# CONFIG_I2C_AMD756 is not set
30342 +# CONFIG_I2C_AMD8111 is not set
30343 +# CONFIG_I2C_I801 is not set
30344 +# CONFIG_I2C_I810 is not set
30345 +# CONFIG_I2C_PIIX4 is not set
30346 +CONFIG_I2C_MPC=y
30347 +# CONFIG_I2C_NFORCE2 is not set
30348 +# CONFIG_I2C_OCORES is not set
30349 +# CONFIG_I2C_PARPORT_LIGHT is not set
30350 +# CONFIG_I2C_PROSAVAGE is not set
30351 +# CONFIG_I2C_SAVAGE4 is not set
30352 +# CONFIG_I2C_SIMTEC is not set
30353 +# CONFIG_I2C_SIS5595 is not set
30354 +# CONFIG_I2C_SIS630 is not set
30355 +# CONFIG_I2C_SIS96X is not set
30356 +# CONFIG_I2C_TAOS_EVM is not set
30357 +# CONFIG_I2C_STUB is not set
30358 +# CONFIG_I2C_VIA is not set
30359 +# CONFIG_I2C_VIAPRO is not set
30360 +# CONFIG_I2C_VOODOO3 is not set
30361 +
30362 +#
30363 +# Miscellaneous I2C Chip support
30364 +#
30365 +# CONFIG_DS1682 is not set
30366 +# CONFIG_SENSORS_EEPROM is not set
30367 +# CONFIG_SENSORS_PCF8574 is not set
30368 +# CONFIG_PCF8575 is not set
30369 +# CONFIG_SENSORS_PCF8591 is not set
30370 +# CONFIG_TPS65010 is not set
30371 +# CONFIG_SENSORS_MAX6875 is not set
30372 +# CONFIG_SENSORS_TSL2550 is not set
30373 +# CONFIG_I2C_DEBUG_CORE is not set
30374 +# CONFIG_I2C_DEBUG_ALGO is not set
30375 +# CONFIG_I2C_DEBUG_BUS is not set
30376 +# CONFIG_I2C_DEBUG_CHIP is not set
30377 +
30378 +#
30379 +# SPI support
30380 +#
30381 +# CONFIG_SPI is not set
30382 +# CONFIG_SPI_MASTER is not set
30383 +# CONFIG_W1 is not set
30384 +# CONFIG_POWER_SUPPLY is not set
30385 +CONFIG_HWMON=y
30386 +# CONFIG_HWMON_VID is not set
30387 +# CONFIG_SENSORS_AD7418 is not set
30388 +# CONFIG_SENSORS_ADM1021 is not set
30389 +# CONFIG_SENSORS_ADM1025 is not set
30390 +# CONFIG_SENSORS_ADM1026 is not set
30391 +# CONFIG_SENSORS_ADM1029 is not set
30392 +# CONFIG_SENSORS_ADM1031 is not set
30393 +# CONFIG_SENSORS_ADM9240 is not set
30394 +# CONFIG_SENSORS_ADT7470 is not set
30395 +# CONFIG_SENSORS_ADT7473 is not set
30396 +# CONFIG_SENSORS_ATXP1 is not set
30397 +# CONFIG_SENSORS_DS1621 is not set
30398 +# CONFIG_SENSORS_I5K_AMB is not set
30399 +# CONFIG_SENSORS_F71805F is not set
30400 +# CONFIG_SENSORS_F71882FG is not set
30401 +# CONFIG_SENSORS_F75375S is not set
30402 +# CONFIG_SENSORS_GL518SM is not set
30403 +# CONFIG_SENSORS_GL520SM is not set
30404 +# CONFIG_SENSORS_IT87 is not set
30405 +# CONFIG_SENSORS_LM63 is not set
30406 +# CONFIG_SENSORS_LM75 is not set
30407 +# CONFIG_SENSORS_LM77 is not set
30408 +# CONFIG_SENSORS_LM78 is not set
30409 +# CONFIG_SENSORS_LM80 is not set
30410 +# CONFIG_SENSORS_LM83 is not set
30411 +# CONFIG_SENSORS_LM85 is not set
30412 +# CONFIG_SENSORS_LM87 is not set
30413 +# CONFIG_SENSORS_LM90 is not set
30414 +# CONFIG_SENSORS_LM92 is not set
30415 +# CONFIG_SENSORS_LM93 is not set
30416 +# CONFIG_SENSORS_MAX1619 is not set
30417 +# CONFIG_SENSORS_MAX6650 is not set
30418 +# CONFIG_SENSORS_PC87360 is not set
30419 +# CONFIG_SENSORS_PC87427 is not set
30420 +# CONFIG_SENSORS_SIS5595 is not set
30421 +# CONFIG_SENSORS_DME1737 is not set
30422 +# CONFIG_SENSORS_SMSC47M1 is not set
30423 +# CONFIG_SENSORS_SMSC47M192 is not set
30424 +# CONFIG_SENSORS_SMSC47B397 is not set
30425 +# CONFIG_SENSORS_ADS7828 is not set
30426 +# CONFIG_SENSORS_THMC50 is not set
30427 +# CONFIG_SENSORS_VIA686A is not set
30428 +# CONFIG_SENSORS_VT1211 is not set
30429 +# CONFIG_SENSORS_VT8231 is not set
30430 +# CONFIG_SENSORS_W83781D is not set
30431 +# CONFIG_SENSORS_W83791D is not set
30432 +# CONFIG_SENSORS_W83792D is not set
30433 +# CONFIG_SENSORS_W83793 is not set
30434 +# CONFIG_SENSORS_W83L785TS is not set
30435 +# CONFIG_SENSORS_W83L786NG is not set
30436 +# CONFIG_SENSORS_W83627HF is not set
30437 +# CONFIG_SENSORS_W83627EHF is not set
30438 +# CONFIG_HWMON_DEBUG_CHIP is not set
30439 +# CONFIG_THERMAL is not set
30440 +CONFIG_WATCHDOG=y
30441 +# CONFIG_WATCHDOG_NOWAYOUT is not set
30442 +
30443 +#
30444 +# Watchdog Device Drivers
30445 +#
30446 +# CONFIG_SOFT_WATCHDOG is not set
30447 +CONFIG_83xx_WDT=y
30448 +
30449 +#
30450 +# PCI-based Watchdog Cards
30451 +#
30452 +# CONFIG_PCIPCWATCHDOG is not set
30453 +# CONFIG_WDTPCI is not set
30454 +
30455 +#
30456 +# Sonics Silicon Backplane
30457 +#
30458 +CONFIG_SSB_POSSIBLE=y
30459 +# CONFIG_SSB is not set
30460 +
30461 +#
30462 +# Multifunction device drivers
30463 +#
30464 +# CONFIG_MFD_SM501 is not set
30465 +
30466 +#
30467 +# Multimedia devices
30468 +#
30469 +# CONFIG_VIDEO_DEV is not set
30470 +# CONFIG_DVB_CORE is not set
30471 +CONFIG_DAB=y
30472 +
30473 +#
30474 +# Graphics support
30475 +#
30476 +# CONFIG_AGP is not set
30477 +# CONFIG_DRM is not set
30478 +# CONFIG_VGASTATE is not set
30479 +CONFIG_VIDEO_OUTPUT_CONTROL=m
30480 +# CONFIG_FB is not set
30481 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
30482 +
30483 +#
30484 +# Display device support
30485 +#
30486 +# CONFIG_DISPLAY_SUPPORT is not set
30487 +
30488 +#
30489 +# Sound
30490 +#
30491 +# CONFIG_SOUND is not set
30492 +CONFIG_HID_SUPPORT=y
30493 +CONFIG_HID=y
30494 +# CONFIG_HID_DEBUG is not set
30495 +# CONFIG_HIDRAW is not set
30496 +CONFIG_USB_SUPPORT=y
30497 +CONFIG_USB_ARCH_HAS_HCD=y
30498 +CONFIG_USB_ARCH_HAS_OHCI=y
30499 +CONFIG_USB_ARCH_HAS_EHCI=y
30500 +# CONFIG_USB is not set
30501 +
30502 +#
30503 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
30504 +#
30505 +# CONFIG_USB_GADGET is not set
30506 +# CONFIG_MMC is not set
30507 +# CONFIG_MEMSTICK is not set
30508 +# CONFIG_NEW_LEDS is not set
30509 +# CONFIG_INFINIBAND is not set
30510 +# CONFIG_EDAC is not set
30511 +CONFIG_RTC_LIB=y
30512 +CONFIG_RTC_CLASS=y
30513 +CONFIG_RTC_HCTOSYS=y
30514 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
30515 +# CONFIG_RTC_DEBUG is not set
30516 +
30517 +#
30518 +# RTC interfaces
30519 +#
30520 +CONFIG_RTC_INTF_SYSFS=y
30521 +CONFIG_RTC_INTF_PROC=y
30522 +CONFIG_RTC_INTF_DEV=y
30523 +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
30524 +# CONFIG_RTC_DRV_TEST is not set
30525 +
30526 +#
30527 +# I2C RTC drivers
30528 +#
30529 +# CONFIG_RTC_DRV_DS1307 is not set
30530 +CONFIG_RTC_DRV_DS1374=y
30531 +# CONFIG_RTC_DRV_DS1672 is not set
30532 +# CONFIG_RTC_DRV_MAX6900 is not set
30533 +# CONFIG_RTC_DRV_RS5C372 is not set
30534 +# CONFIG_RTC_DRV_ISL1208 is not set
30535 +# CONFIG_RTC_DRV_X1205 is not set
30536 +# CONFIG_RTC_DRV_PCF8563 is not set
30537 +# CONFIG_RTC_DRV_PCF8583 is not set
30538 +# CONFIG_RTC_DRV_M41T80 is not set
30539 +# CONFIG_RTC_DRV_S35390A is not set
30540 +
30541 +#
30542 +# SPI RTC drivers
30543 +#
30544 +
30545 +#
30546 +# Platform RTC drivers
30547 +#
30548 +# CONFIG_RTC_DRV_CMOS is not set
30549 +# CONFIG_RTC_DRV_DS1511 is not set
30550 +# CONFIG_RTC_DRV_DS1553 is not set
30551 +# CONFIG_RTC_DRV_DS1742 is not set
30552 +# CONFIG_RTC_DRV_STK17TA8 is not set
30553 +# CONFIG_RTC_DRV_M48T86 is not set
30554 +# CONFIG_RTC_DRV_M48T59 is not set
30555 +# CONFIG_RTC_DRV_V3020 is not set
30556 +
30557 +#
30558 +# on-CPU RTC drivers
30559 +#
30560 +# CONFIG_DMADEVICES is not set
30561 +
30562 +#
30563 +# Userspace I/O
30564 +#
30565 +# CONFIG_UIO is not set
30566 +
30567 +#
30568 +# File systems
30569 +#
30570 +CONFIG_EXT2_FS=y
30571 +# CONFIG_EXT2_FS_XATTR is not set
30572 +# CONFIG_EXT2_FS_XIP is not set
30573 +CONFIG_EXT3_FS=y
30574 +CONFIG_EXT3_FS_XATTR=y
30575 +# CONFIG_EXT3_FS_POSIX_ACL is not set
30576 +# CONFIG_EXT3_FS_SECURITY is not set
30577 +# CONFIG_EXT4DEV_FS is not set
30578 +CONFIG_JBD=y
30579 +CONFIG_FS_MBCACHE=y
30580 +# CONFIG_REISERFS_FS is not set
30581 +# CONFIG_JFS_FS is not set
30582 +# CONFIG_FS_POSIX_ACL is not set
30583 +# CONFIG_XFS_FS is not set
30584 +# CONFIG_GFS2_FS is not set
30585 +# CONFIG_OCFS2_FS is not set
30586 +CONFIG_DNOTIFY=y
30587 +CONFIG_INOTIFY=y
30588 +CONFIG_INOTIFY_USER=y
30589 +# CONFIG_QUOTA is not set
30590 +# CONFIG_AUTOFS_FS is not set
30591 +# CONFIG_AUTOFS4_FS is not set
30592 +# CONFIG_FUSE_FS is not set
30593 +
30594 +#
30595 +# CD-ROM/DVD Filesystems
30596 +#
30597 +# CONFIG_ISO9660_FS is not set
30598 +# CONFIG_UDF_FS is not set
30599 +
30600 +#
30601 +# DOS/FAT/NT Filesystems
30602 +#
30603 +# CONFIG_MSDOS_FS is not set
30604 +# CONFIG_VFAT_FS is not set
30605 +# CONFIG_NTFS_FS is not set
30606 +
30607 +#
30608 +# Pseudo filesystems
30609 +#
30610 +CONFIG_PROC_FS=y
30611 +CONFIG_PROC_KCORE=y
30612 +CONFIG_PROC_SYSCTL=y
30613 +CONFIG_SYSFS=y
30614 +CONFIG_TMPFS=y
30615 +# CONFIG_TMPFS_POSIX_ACL is not set
30616 +# CONFIG_HUGETLB_PAGE is not set
30617 +# CONFIG_CONFIGFS_FS is not set
30618 +
30619 +#
30620 +# Miscellaneous filesystems
30621 +#
30622 +# CONFIG_ADFS_FS is not set
30623 +# CONFIG_AFFS_FS is not set
30624 +# CONFIG_HFS_FS is not set
30625 +# CONFIG_HFSPLUS_FS is not set
30626 +# CONFIG_BEFS_FS is not set
30627 +# CONFIG_BFS_FS is not set
30628 +# CONFIG_EFS_FS is not set
30629 +# CONFIG_CRAMFS is not set
30630 +# CONFIG_VXFS_FS is not set
30631 +# CONFIG_MINIX_FS is not set
30632 +# CONFIG_HPFS_FS is not set
30633 +# CONFIG_QNX4FS_FS is not set
30634 +# CONFIG_ROMFS_FS is not set
30635 +# CONFIG_SYSV_FS is not set
30636 +# CONFIG_UFS_FS is not set
30637 +CONFIG_NETWORK_FILESYSTEMS=y
30638 +CONFIG_NFS_FS=y
30639 +CONFIG_NFS_V3=y
30640 +# CONFIG_NFS_V3_ACL is not set
30641 +CONFIG_NFS_V4=y
30642 +# CONFIG_NFS_DIRECTIO is not set
30643 +# CONFIG_NFSD is not set
30644 +CONFIG_ROOT_NFS=y
30645 +CONFIG_LOCKD=y
30646 +CONFIG_LOCKD_V4=y
30647 +CONFIG_NFS_COMMON=y
30648 +CONFIG_SUNRPC=y
30649 +CONFIG_SUNRPC_GSS=y
30650 +# CONFIG_SUNRPC_BIND34 is not set
30651 +CONFIG_RPCSEC_GSS_KRB5=y
30652 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
30653 +# CONFIG_SMB_FS is not set
30654 +# CONFIG_CIFS is not set
30655 +# CONFIG_NCP_FS is not set
30656 +# CONFIG_CODA_FS is not set
30657 +# CONFIG_AFS_FS is not set
30658 +
30659 +#
30660 +# Partition Types
30661 +#
30662 +CONFIG_PARTITION_ADVANCED=y
30663 +# CONFIG_ACORN_PARTITION is not set
30664 +# CONFIG_OSF_PARTITION is not set
30665 +# CONFIG_AMIGA_PARTITION is not set
30666 +# CONFIG_ATARI_PARTITION is not set
30667 +# CONFIG_MAC_PARTITION is not set
30668 +# CONFIG_MSDOS_PARTITION is not set
30669 +# CONFIG_LDM_PARTITION is not set
30670 +# CONFIG_SGI_PARTITION is not set
30671 +# CONFIG_ULTRIX_PARTITION is not set
30672 +# CONFIG_SUN_PARTITION is not set
30673 +# CONFIG_KARMA_PARTITION is not set
30674 +# CONFIG_EFI_PARTITION is not set
30675 +# CONFIG_SYSV68_PARTITION is not set
30676 +# CONFIG_NLS is not set
30677 +# CONFIG_DLM is not set
30678 +CONFIG_UCC_FAST=y
30679 +CONFIG_UCC=y
30680 +
30681 +#
30682 +# Library routines
30683 +#
30684 +CONFIG_BITREVERSE=y
30685 +# CONFIG_CRC_CCITT is not set
30686 +# CONFIG_CRC16 is not set
30687 +# CONFIG_CRC_ITU_T is not set
30688 +CONFIG_CRC32=y
30689 +# CONFIG_CRC7 is not set
30690 +# CONFIG_LIBCRC32C is not set
30691 +CONFIG_PLIST=y
30692 +CONFIG_HAS_IOMEM=y
30693 +CONFIG_HAS_IOPORT=y
30694 +CONFIG_HAS_DMA=y
30695 +
30696 +#
30697 +# Kernel hacking
30698 +#
30699 +# CONFIG_PRINTK_TIME is not set
30700 +CONFIG_ENABLE_WARN_DEPRECATED=y
30701 +CONFIG_ENABLE_MUST_CHECK=y
30702 +# CONFIG_MAGIC_SYSRQ is not set
30703 +# CONFIG_UNUSED_SYMBOLS is not set
30704 +# CONFIG_DEBUG_FS is not set
30705 +# CONFIG_HEADERS_CHECK is not set
30706 +# CONFIG_DEBUG_KERNEL is not set
30707 +# CONFIG_SLUB_DEBUG_ON is not set
30708 +# CONFIG_SLUB_STATS is not set
30709 +# CONFIG_DEBUG_BUGVERBOSE is not set
30710 +# CONFIG_SAMPLES is not set
30711 +# CONFIG_PPC_EARLY_DEBUG is not set
30712 +
30713 +#
30714 +# Security options
30715 +#
30716 +# CONFIG_KEYS is not set
30717 +# CONFIG_SECURITY is not set
30718 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
30719 +CONFIG_CRYPTO=y
30720 +CONFIG_CRYPTO_ALGAPI=y
30721 +CONFIG_CRYPTO_BLKCIPHER=y
30722 +# CONFIG_CRYPTO_SEQIV is not set
30723 +CONFIG_CRYPTO_MANAGER=y
30724 +# CONFIG_CRYPTO_HMAC is not set
30725 +# CONFIG_CRYPTO_XCBC is not set
30726 +# CONFIG_CRYPTO_NULL is not set
30727 +# CONFIG_CRYPTO_MD4 is not set
30728 +CONFIG_CRYPTO_MD5=y
30729 +# CONFIG_CRYPTO_SHA1 is not set
30730 +# CONFIG_CRYPTO_SHA256 is not set
30731 +# CONFIG_CRYPTO_SHA512 is not set
30732 +# CONFIG_CRYPTO_WP512 is not set
30733 +# CONFIG_CRYPTO_TGR192 is not set
30734 +# CONFIG_CRYPTO_GF128MUL is not set
30735 +CONFIG_CRYPTO_ECB=m
30736 +CONFIG_CRYPTO_CBC=y
30737 +CONFIG_CRYPTO_PCBC=m
30738 +# CONFIG_CRYPTO_LRW is not set
30739 +# CONFIG_CRYPTO_XTS is not set
30740 +# CONFIG_CRYPTO_CTR is not set
30741 +# CONFIG_CRYPTO_GCM is not set
30742 +# CONFIG_CRYPTO_CCM is not set
30743 +# CONFIG_CRYPTO_CRYPTD is not set
30744 +CONFIG_CRYPTO_DES=y
30745 +# CONFIG_CRYPTO_FCRYPT is not set
30746 +# CONFIG_CRYPTO_BLOWFISH is not set
30747 +# CONFIG_CRYPTO_TWOFISH is not set
30748 +# CONFIG_CRYPTO_SERPENT is not set
30749 +# CONFIG_CRYPTO_AES is not set
30750 +# CONFIG_CRYPTO_CAST5 is not set
30751 +# CONFIG_CRYPTO_CAST6 is not set
30752 +# CONFIG_CRYPTO_TEA is not set
30753 +# CONFIG_CRYPTO_ARC4 is not set
30754 +# CONFIG_CRYPTO_KHAZAD is not set
30755 +# CONFIG_CRYPTO_ANUBIS is not set
30756 +# CONFIG_CRYPTO_SEED is not set
30757 +# CONFIG_CRYPTO_SALSA20 is not set
30758 +# CONFIG_CRYPTO_DEFLATE is not set
30759 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
30760 +# CONFIG_CRYPTO_CRC32C is not set
30761 +# CONFIG_CRYPTO_CAMELLIA is not set
30762 +# CONFIG_CRYPTO_TEST is not set
30763 +# CONFIG_CRYPTO_AUTHENC is not set
30764 +# CONFIG_CRYPTO_LZO is not set
30765 +CONFIG_CRYPTO_HW=y
30766 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
30767 +# CONFIG_PPC_CLOCK is not set
30768 +CONFIG_PPC_LIB_RHEAP=y
30769 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc837x_mds_defconfig
30770 ===================================================================
30771 --- /dev/null
30772 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc837x_mds_defconfig
30773 @@ -0,0 +1,899 @@
30774 +#
30775 +# Automatically generated make config: don't edit
30776 +# Linux kernel version: 2.6.25-rc6
30777 +# Mon Mar 24 08:48:23 2008
30778 +#
30779 +# CONFIG_PPC64 is not set
30780 +
30781 +#
30782 +# Processor support
30783 +#
30784 +CONFIG_6xx=y
30785 +# CONFIG_PPC_85xx is not set
30786 +# CONFIG_PPC_8xx is not set
30787 +# CONFIG_40x is not set
30788 +# CONFIG_44x is not set
30789 +# CONFIG_E200 is not set
30790 +CONFIG_PPC_FPU=y
30791 +# CONFIG_FSL_EMB_PERFMON is not set
30792 +CONFIG_PPC_STD_MMU=y
30793 +CONFIG_PPC_STD_MMU_32=y
30794 +# CONFIG_PPC_MM_SLICES is not set
30795 +# CONFIG_SMP is not set
30796 +CONFIG_PPC32=y
30797 +CONFIG_WORD_SIZE=32
30798 +CONFIG_PPC_MERGE=y
30799 +CONFIG_MMU=y
30800 +CONFIG_GENERIC_CMOS_UPDATE=y
30801 +CONFIG_GENERIC_TIME=y
30802 +CONFIG_GENERIC_TIME_VSYSCALL=y
30803 +CONFIG_GENERIC_CLOCKEVENTS=y
30804 +CONFIG_GENERIC_HARDIRQS=y
30805 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
30806 +CONFIG_IRQ_PER_CPU=y
30807 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
30808 +CONFIG_ARCH_HAS_ILOG2_U32=y
30809 +CONFIG_GENERIC_HWEIGHT=y
30810 +CONFIG_GENERIC_CALIBRATE_DELAY=y
30811 +CONFIG_GENERIC_FIND_NEXT_BIT=y
30812 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
30813 +CONFIG_PPC=y
30814 +CONFIG_EARLY_PRINTK=y
30815 +CONFIG_GENERIC_NVRAM=y
30816 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
30817 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
30818 +CONFIG_PPC_OF=y
30819 +CONFIG_OF=y
30820 +CONFIG_PPC_UDBG_16550=y
30821 +# CONFIG_GENERIC_TBSYNC is not set
30822 +CONFIG_AUDIT_ARCH=y
30823 +CONFIG_GENERIC_BUG=y
30824 +CONFIG_DEFAULT_UIMAGE=y
30825 +# CONFIG_PPC_DCR_NATIVE is not set
30826 +# CONFIG_PPC_DCR_MMIO is not set
30827 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
30828 +
30829 +#
30830 +# General setup
30831 +#
30832 +CONFIG_EXPERIMENTAL=y
30833 +CONFIG_BROKEN_ON_SMP=y
30834 +CONFIG_INIT_ENV_ARG_LIMIT=32
30835 +CONFIG_LOCALVERSION=""
30836 +CONFIG_LOCALVERSION_AUTO=y
30837 +CONFIG_SWAP=y
30838 +CONFIG_SYSVIPC=y
30839 +CONFIG_SYSVIPC_SYSCTL=y
30840 +# CONFIG_POSIX_MQUEUE is not set
30841 +# CONFIG_BSD_PROCESS_ACCT is not set
30842 +# CONFIG_TASKSTATS is not set
30843 +# CONFIG_AUDIT is not set
30844 +# CONFIG_IKCONFIG is not set
30845 +CONFIG_LOG_BUF_SHIFT=14
30846 +# CONFIG_CGROUPS is not set
30847 +CONFIG_GROUP_SCHED=y
30848 +CONFIG_FAIR_GROUP_SCHED=y
30849 +# CONFIG_RT_GROUP_SCHED is not set
30850 +CONFIG_USER_SCHED=y
30851 +# CONFIG_CGROUP_SCHED is not set
30852 +CONFIG_SYSFS_DEPRECATED=y
30853 +CONFIG_SYSFS_DEPRECATED_V2=y
30854 +# CONFIG_RELAY is not set
30855 +# CONFIG_NAMESPACES is not set
30856 +CONFIG_BLK_DEV_INITRD=y
30857 +CONFIG_INITRAMFS_SOURCE=""
30858 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
30859 +CONFIG_SYSCTL=y
30860 +CONFIG_EMBEDDED=y
30861 +CONFIG_SYSCTL_SYSCALL=y
30862 +CONFIG_KALLSYMS=y
30863 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
30864 +CONFIG_HOTPLUG=y
30865 +CONFIG_PRINTK=y
30866 +CONFIG_BUG=y
30867 +CONFIG_ELF_CORE=y
30868 +CONFIG_COMPAT_BRK=y
30869 +CONFIG_BASE_FULL=y
30870 +CONFIG_FUTEX=y
30871 +CONFIG_ANON_INODES=y
30872 +# CONFIG_EPOLL is not set
30873 +CONFIG_SIGNALFD=y
30874 +CONFIG_TIMERFD=y
30875 +CONFIG_EVENTFD=y
30876 +CONFIG_SHMEM=y
30877 +CONFIG_VM_EVENT_COUNTERS=y
30878 +CONFIG_SLAB=y
30879 +# CONFIG_SLUB is not set
30880 +# CONFIG_SLOB is not set
30881 +# CONFIG_PROFILING is not set
30882 +# CONFIG_MARKERS is not set
30883 +CONFIG_HAVE_OPROFILE=y
30884 +# CONFIG_KPROBES is not set
30885 +CONFIG_HAVE_KPROBES=y
30886 +CONFIG_HAVE_KRETPROBES=y
30887 +CONFIG_PROC_PAGE_MONITOR=y
30888 +CONFIG_SLABINFO=y
30889 +CONFIG_RT_MUTEXES=y
30890 +# CONFIG_TINY_SHMEM is not set
30891 +CONFIG_BASE_SMALL=0
30892 +CONFIG_MODULES=y
30893 +CONFIG_MODULE_UNLOAD=y
30894 +# CONFIG_MODULE_FORCE_UNLOAD is not set
30895 +# CONFIG_MODVERSIONS is not set
30896 +# CONFIG_MODULE_SRCVERSION_ALL is not set
30897 +# CONFIG_KMOD is not set
30898 +CONFIG_BLOCK=y
30899 +# CONFIG_LBD is not set
30900 +# CONFIG_BLK_DEV_IO_TRACE is not set
30901 +# CONFIG_LSF is not set
30902 +# CONFIG_BLK_DEV_BSG is not set
30903 +
30904 +#
30905 +# IO Schedulers
30906 +#
30907 +CONFIG_IOSCHED_NOOP=y
30908 +CONFIG_IOSCHED_AS=y
30909 +CONFIG_IOSCHED_DEADLINE=y
30910 +CONFIG_IOSCHED_CFQ=y
30911 +CONFIG_DEFAULT_AS=y
30912 +# CONFIG_DEFAULT_DEADLINE is not set
30913 +# CONFIG_DEFAULT_CFQ is not set
30914 +# CONFIG_DEFAULT_NOOP is not set
30915 +CONFIG_DEFAULT_IOSCHED="anticipatory"
30916 +CONFIG_CLASSIC_RCU=y
30917 +
30918 +#
30919 +# Platform support
30920 +#
30921 +# CONFIG_PPC_MULTIPLATFORM is not set
30922 +# CONFIG_PPC_82xx is not set
30923 +CONFIG_PPC_83xx=y
30924 +# CONFIG_PPC_86xx is not set
30925 +# CONFIG_PPC_MPC512x is not set
30926 +# CONFIG_PPC_MPC5121 is not set
30927 +# CONFIG_PPC_CELL is not set
30928 +# CONFIG_PPC_CELL_NATIVE is not set
30929 +# CONFIG_PQ2ADS is not set
30930 +CONFIG_MPC83xx=y
30931 +# CONFIG_MPC831x_RDB is not set
30932 +# CONFIG_MPC832x_MDS is not set
30933 +# CONFIG_MPC832x_RDB is not set
30934 +# CONFIG_MPC834x_MDS is not set
30935 +# CONFIG_MPC834x_ITX is not set
30936 +# CONFIG_MPC836x_MDS is not set
30937 +CONFIG_MPC837x_MDS=y
30938 +# CONFIG_MPC837x_RDB is not set
30939 +# CONFIG_SBC834x is not set
30940 +CONFIG_PPC_MPC837x=y
30941 +CONFIG_IPIC=y
30942 +# CONFIG_MPIC is not set
30943 +# CONFIG_MPIC_WEIRD is not set
30944 +# CONFIG_PPC_I8259 is not set
30945 +# CONFIG_PPC_RTAS is not set
30946 +# CONFIG_MMIO_NVRAM is not set
30947 +# CONFIG_PPC_MPC106 is not set
30948 +# CONFIG_PPC_970_NAP is not set
30949 +# CONFIG_PPC_INDIRECT_IO is not set
30950 +# CONFIG_GENERIC_IOMAP is not set
30951 +# CONFIG_CPU_FREQ is not set
30952 +# CONFIG_FSL_ULI1575 is not set
30953 +
30954 +#
30955 +# Kernel options
30956 +#
30957 +# CONFIG_HIGHMEM is not set
30958 +# CONFIG_TICK_ONESHOT is not set
30959 +# CONFIG_NO_HZ is not set
30960 +# CONFIG_HIGH_RES_TIMERS is not set
30961 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
30962 +# CONFIG_HZ_100 is not set
30963 +CONFIG_HZ_250=y
30964 +# CONFIG_HZ_300 is not set
30965 +# CONFIG_HZ_1000 is not set
30966 +CONFIG_HZ=250
30967 +# CONFIG_SCHED_HRTICK is not set
30968 +CONFIG_PREEMPT_NONE=y
30969 +# CONFIG_PREEMPT_VOLUNTARY is not set
30970 +# CONFIG_PREEMPT is not set
30971 +CONFIG_BINFMT_ELF=y
30972 +# CONFIG_BINFMT_MISC is not set
30973 +# CONFIG_IOMMU_HELPER is not set
30974 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
30975 +CONFIG_ARCH_HAS_WALK_MEMORY=y
30976 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
30977 +CONFIG_ARCH_FLATMEM_ENABLE=y
30978 +CONFIG_ARCH_POPULATES_NODE_MAP=y
30979 +CONFIG_SELECT_MEMORY_MODEL=y
30980 +CONFIG_FLATMEM_MANUAL=y
30981 +# CONFIG_DISCONTIGMEM_MANUAL is not set
30982 +# CONFIG_SPARSEMEM_MANUAL is not set
30983 +CONFIG_FLATMEM=y
30984 +CONFIG_FLAT_NODE_MEM_MAP=y
30985 +# CONFIG_SPARSEMEM_STATIC is not set
30986 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
30987 +CONFIG_SPLIT_PTLOCK_CPUS=4
30988 +# CONFIG_RESOURCES_64BIT is not set
30989 +CONFIG_ZONE_DMA_FLAG=1
30990 +CONFIG_BOUNCE=y
30991 +CONFIG_VIRT_TO_BUS=y
30992 +CONFIG_PROC_DEVICETREE=y
30993 +# CONFIG_CMDLINE_BOOL is not set
30994 +# CONFIG_PM is not set
30995 +CONFIG_SECCOMP=y
30996 +CONFIG_ISA_DMA_API=y
30997 +
30998 +#
30999 +# Bus options
31000 +#
31001 +CONFIG_ZONE_DMA=y
31002 +CONFIG_GENERIC_ISA_DMA=y
31003 +CONFIG_PPC_INDIRECT_PCI=y
31004 +CONFIG_FSL_SOC=y
31005 +# CONFIG_PCI is not set
31006 +# CONFIG_PCI_DOMAINS is not set
31007 +# CONFIG_PCI_SYSCALL is not set
31008 +# CONFIG_ARCH_SUPPORTS_MSI is not set
31009 +# CONFIG_PCCARD is not set
31010 +
31011 +#
31012 +# Advanced setup
31013 +#
31014 +# CONFIG_ADVANCED_OPTIONS is not set
31015 +
31016 +#
31017 +# Default settings for advanced configuration options are used
31018 +#
31019 +CONFIG_HIGHMEM_START=0xfe000000
31020 +CONFIG_LOWMEM_SIZE=0x30000000
31021 +CONFIG_KERNEL_START=0xc0000000
31022 +CONFIG_TASK_SIZE=0xc0000000
31023 +CONFIG_BOOT_LOAD=0x00800000
31024 +
31025 +#
31026 +# Networking
31027 +#
31028 +CONFIG_NET=y
31029 +
31030 +#
31031 +# Networking options
31032 +#
31033 +CONFIG_PACKET=y
31034 +# CONFIG_PACKET_MMAP is not set
31035 +CONFIG_UNIX=y
31036 +CONFIG_XFRM=y
31037 +CONFIG_XFRM_USER=m
31038 +# CONFIG_XFRM_SUB_POLICY is not set
31039 +# CONFIG_XFRM_MIGRATE is not set
31040 +# CONFIG_XFRM_STATISTICS is not set
31041 +# CONFIG_NET_KEY is not set
31042 +CONFIG_INET=y
31043 +CONFIG_IP_MULTICAST=y
31044 +# CONFIG_IP_ADVANCED_ROUTER is not set
31045 +CONFIG_IP_FIB_HASH=y
31046 +CONFIG_IP_PNP=y
31047 +CONFIG_IP_PNP_DHCP=y
31048 +CONFIG_IP_PNP_BOOTP=y
31049 +# CONFIG_IP_PNP_RARP is not set
31050 +# CONFIG_NET_IPIP is not set
31051 +# CONFIG_NET_IPGRE is not set
31052 +# CONFIG_IP_MROUTE is not set
31053 +# CONFIG_ARPD is not set
31054 +CONFIG_SYN_COOKIES=y
31055 +# CONFIG_INET_AH is not set
31056 +# CONFIG_INET_ESP is not set
31057 +# CONFIG_INET_IPCOMP is not set
31058 +# CONFIG_INET_XFRM_TUNNEL is not set
31059 +# CONFIG_INET_TUNNEL is not set
31060 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
31061 +CONFIG_INET_XFRM_MODE_TUNNEL=y
31062 +CONFIG_INET_XFRM_MODE_BEET=y
31063 +# CONFIG_INET_LRO is not set
31064 +CONFIG_INET_DIAG=y
31065 +CONFIG_INET_TCP_DIAG=y
31066 +# CONFIG_TCP_CONG_ADVANCED is not set
31067 +CONFIG_TCP_CONG_CUBIC=y
31068 +CONFIG_DEFAULT_TCP_CONG="cubic"
31069 +# CONFIG_TCP_MD5SIG is not set
31070 +# CONFIG_IPV6 is not set
31071 +# CONFIG_INET6_XFRM_TUNNEL is not set
31072 +# CONFIG_INET6_TUNNEL is not set
31073 +# CONFIG_NETWORK_SECMARK is not set
31074 +# CONFIG_NETFILTER is not set
31075 +# CONFIG_IP_DCCP is not set
31076 +# CONFIG_IP_SCTP is not set
31077 +# CONFIG_TIPC is not set
31078 +# CONFIG_ATM is not set
31079 +# CONFIG_BRIDGE is not set
31080 +# CONFIG_VLAN_8021Q is not set
31081 +# CONFIG_DECNET is not set
31082 +# CONFIG_LLC2 is not set
31083 +# CONFIG_IPX is not set
31084 +# CONFIG_ATALK is not set
31085 +# CONFIG_X25 is not set
31086 +# CONFIG_LAPB is not set
31087 +# CONFIG_ECONET is not set
31088 +# CONFIG_WAN_ROUTER is not set
31089 +# CONFIG_NET_SCHED is not set
31090 +
31091 +#
31092 +# Network testing
31093 +#
31094 +# CONFIG_NET_PKTGEN is not set
31095 +# CONFIG_HAMRADIO is not set
31096 +# CONFIG_CAN is not set
31097 +# CONFIG_IRDA is not set
31098 +# CONFIG_BT is not set
31099 +# CONFIG_AF_RXRPC is not set
31100 +
31101 +#
31102 +# Wireless
31103 +#
31104 +# CONFIG_CFG80211 is not set
31105 +# CONFIG_WIRELESS_EXT is not set
31106 +# CONFIG_MAC80211 is not set
31107 +# CONFIG_IEEE80211 is not set
31108 +# CONFIG_RFKILL is not set
31109 +# CONFIG_NET_9P is not set
31110 +
31111 +#
31112 +# Device Drivers
31113 +#
31114 +
31115 +#
31116 +# Generic Driver Options
31117 +#
31118 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
31119 +CONFIG_STANDALONE=y
31120 +CONFIG_PREVENT_FIRMWARE_BUILD=y
31121 +# CONFIG_FW_LOADER is not set
31122 +# CONFIG_SYS_HYPERVISOR is not set
31123 +# CONFIG_CONNECTOR is not set
31124 +# CONFIG_MTD is not set
31125 +CONFIG_OF_DEVICE=y
31126 +# CONFIG_PARPORT is not set
31127 +CONFIG_BLK_DEV=y
31128 +# CONFIG_BLK_DEV_FD is not set
31129 +# CONFIG_BLK_DEV_COW_COMMON is not set
31130 +CONFIG_BLK_DEV_LOOP=y
31131 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
31132 +# CONFIG_BLK_DEV_NBD is not set
31133 +CONFIG_BLK_DEV_RAM=y
31134 +CONFIG_BLK_DEV_RAM_COUNT=16
31135 +CONFIG_BLK_DEV_RAM_SIZE=32768
31136 +# CONFIG_BLK_DEV_XIP is not set
31137 +# CONFIG_CDROM_PKTCDVD is not set
31138 +# CONFIG_ATA_OVER_ETH is not set
31139 +CONFIG_MISC_DEVICES=y
31140 +# CONFIG_EEPROM_93CX6 is not set
31141 +# CONFIG_ENCLOSURE_SERVICES is not set
31142 +CONFIG_HAVE_IDE=y
31143 +# CONFIG_IDE is not set
31144 +
31145 +#
31146 +# SCSI device support
31147 +#
31148 +# CONFIG_RAID_ATTRS is not set
31149 +CONFIG_SCSI=y
31150 +CONFIG_SCSI_DMA=y
31151 +# CONFIG_SCSI_TGT is not set
31152 +# CONFIG_SCSI_NETLINK is not set
31153 +CONFIG_SCSI_PROC_FS=y
31154 +
31155 +#
31156 +# SCSI support type (disk, tape, CD-ROM)
31157 +#
31158 +CONFIG_BLK_DEV_SD=y
31159 +# CONFIG_CHR_DEV_ST is not set
31160 +# CONFIG_CHR_DEV_OSST is not set
31161 +# CONFIG_BLK_DEV_SR is not set
31162 +CONFIG_CHR_DEV_SG=y
31163 +# CONFIG_CHR_DEV_SCH is not set
31164 +
31165 +#
31166 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
31167 +#
31168 +# CONFIG_SCSI_MULTI_LUN is not set
31169 +# CONFIG_SCSI_CONSTANTS is not set
31170 +# CONFIG_SCSI_LOGGING is not set
31171 +# CONFIG_SCSI_SCAN_ASYNC is not set
31172 +CONFIG_SCSI_WAIT_SCAN=m
31173 +
31174 +#
31175 +# SCSI Transports
31176 +#
31177 +# CONFIG_SCSI_SPI_ATTRS is not set
31178 +# CONFIG_SCSI_FC_ATTRS is not set
31179 +# CONFIG_SCSI_ISCSI_ATTRS is not set
31180 +# CONFIG_SCSI_SAS_LIBSAS is not set
31181 +# CONFIG_SCSI_SRP_ATTRS is not set
31182 +CONFIG_SCSI_LOWLEVEL=y
31183 +# CONFIG_ISCSI_TCP is not set
31184 +# CONFIG_SCSI_DEBUG is not set
31185 +CONFIG_ATA=y
31186 +# CONFIG_ATA_NONSTANDARD is not set
31187 +# CONFIG_SATA_MV is not set
31188 +CONFIG_SATA_FSL=y
31189 +# CONFIG_PATA_PLATFORM is not set
31190 +# CONFIG_MD is not set
31191 +# CONFIG_MACINTOSH_DRIVERS is not set
31192 +CONFIG_NETDEVICES=y
31193 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
31194 +# CONFIG_DUMMY is not set
31195 +# CONFIG_BONDING is not set
31196 +# CONFIG_MACVLAN is not set
31197 +# CONFIG_EQUALIZER is not set
31198 +# CONFIG_TUN is not set
31199 +# CONFIG_VETH is not set
31200 +CONFIG_PHYLIB=y
31201 +
31202 +#
31203 +# MII PHY device drivers
31204 +#
31205 +CONFIG_MARVELL_PHY=y
31206 +# CONFIG_DAVICOM_PHY is not set
31207 +# CONFIG_QSEMI_PHY is not set
31208 +# CONFIG_LXT_PHY is not set
31209 +# CONFIG_CICADA_PHY is not set
31210 +# CONFIG_VITESSE_PHY is not set
31211 +# CONFIG_SMSC_PHY is not set
31212 +# CONFIG_BROADCOM_PHY is not set
31213 +# CONFIG_ICPLUS_PHY is not set
31214 +# CONFIG_REALTEK_PHY is not set
31215 +# CONFIG_FIXED_PHY is not set
31216 +# CONFIG_MDIO_BITBANG is not set
31217 +CONFIG_NET_ETHERNET=y
31218 +CONFIG_MII=y
31219 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
31220 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
31221 +# CONFIG_IBM_NEW_EMAC_TAH is not set
31222 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
31223 +# CONFIG_B44 is not set
31224 +CONFIG_NETDEV_1000=y
31225 +# CONFIG_E1000E_ENABLED is not set
31226 +CONFIG_GIANFAR=y
31227 +# CONFIG_GFAR_NAPI is not set
31228 +CONFIG_NETDEV_10000=y
31229 +
31230 +#
31231 +# Wireless LAN
31232 +#
31233 +# CONFIG_WLAN_PRE80211 is not set
31234 +# CONFIG_WLAN_80211 is not set
31235 +# CONFIG_WAN is not set
31236 +# CONFIG_PPP is not set
31237 +# CONFIG_SLIP is not set
31238 +# CONFIG_NETCONSOLE is not set
31239 +# CONFIG_NETPOLL is not set
31240 +# CONFIG_NET_POLL_CONTROLLER is not set
31241 +# CONFIG_ISDN is not set
31242 +# CONFIG_PHONE is not set
31243 +
31244 +#
31245 +# Input device support
31246 +#
31247 +CONFIG_INPUT=y
31248 +# CONFIG_INPUT_FF_MEMLESS is not set
31249 +# CONFIG_INPUT_POLLDEV is not set
31250 +
31251 +#
31252 +# Userland interfaces
31253 +#
31254 +# CONFIG_INPUT_MOUSEDEV is not set
31255 +# CONFIG_INPUT_JOYDEV is not set
31256 +# CONFIG_INPUT_EVDEV is not set
31257 +# CONFIG_INPUT_EVBUG is not set
31258 +
31259 +#
31260 +# Input Device Drivers
31261 +#
31262 +# CONFIG_INPUT_KEYBOARD is not set
31263 +# CONFIG_INPUT_MOUSE is not set
31264 +# CONFIG_INPUT_JOYSTICK is not set
31265 +# CONFIG_INPUT_TABLET is not set
31266 +# CONFIG_INPUT_TOUCHSCREEN is not set
31267 +# CONFIG_INPUT_MISC is not set
31268 +
31269 +#
31270 +# Hardware I/O ports
31271 +#
31272 +# CONFIG_SERIO is not set
31273 +# CONFIG_GAMEPORT is not set
31274 +
31275 +#
31276 +# Character devices
31277 +#
31278 +# CONFIG_VT is not set
31279 +# CONFIG_SERIAL_NONSTANDARD is not set
31280 +
31281 +#
31282 +# Serial drivers
31283 +#
31284 +CONFIG_SERIAL_8250=y
31285 +CONFIG_SERIAL_8250_CONSOLE=y
31286 +CONFIG_SERIAL_8250_NR_UARTS=4
31287 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
31288 +# CONFIG_SERIAL_8250_EXTENDED is not set
31289 +
31290 +#
31291 +# Non-8250 serial port support
31292 +#
31293 +# CONFIG_SERIAL_UARTLITE is not set
31294 +CONFIG_SERIAL_CORE=y
31295 +CONFIG_SERIAL_CORE_CONSOLE=y
31296 +# CONFIG_SERIAL_OF_PLATFORM is not set
31297 +CONFIG_UNIX98_PTYS=y
31298 +CONFIG_LEGACY_PTYS=y
31299 +CONFIG_LEGACY_PTY_COUNT=256
31300 +# CONFIG_IPMI_HANDLER is not set
31301 +# CONFIG_HW_RANDOM is not set
31302 +# CONFIG_NVRAM is not set
31303 +CONFIG_GEN_RTC=y
31304 +# CONFIG_GEN_RTC_X is not set
31305 +# CONFIG_R3964 is not set
31306 +# CONFIG_RAW_DRIVER is not set
31307 +# CONFIG_TCG_TPM is not set
31308 +CONFIG_I2C=y
31309 +CONFIG_I2C_BOARDINFO=y
31310 +CONFIG_I2C_CHARDEV=y
31311 +
31312 +#
31313 +# I2C Algorithms
31314 +#
31315 +# CONFIG_I2C_ALGOBIT is not set
31316 +# CONFIG_I2C_ALGOPCF is not set
31317 +# CONFIG_I2C_ALGOPCA is not set
31318 +
31319 +#
31320 +# I2C Hardware Bus support
31321 +#
31322 +CONFIG_I2C_MPC=y
31323 +# CONFIG_I2C_OCORES is not set
31324 +# CONFIG_I2C_PARPORT_LIGHT is not set
31325 +# CONFIG_I2C_SIMTEC is not set
31326 +# CONFIG_I2C_TAOS_EVM is not set
31327 +# CONFIG_I2C_STUB is not set
31328 +
31329 +#
31330 +# Miscellaneous I2C Chip support
31331 +#
31332 +# CONFIG_DS1682 is not set
31333 +# CONFIG_SENSORS_EEPROM is not set
31334 +# CONFIG_SENSORS_PCF8574 is not set
31335 +# CONFIG_PCF8575 is not set
31336 +# CONFIG_SENSORS_PCF8591 is not set
31337 +# CONFIG_TPS65010 is not set
31338 +# CONFIG_SENSORS_MAX6875 is not set
31339 +# CONFIG_SENSORS_TSL2550 is not set
31340 +# CONFIG_I2C_DEBUG_CORE is not set
31341 +# CONFIG_I2C_DEBUG_ALGO is not set
31342 +# CONFIG_I2C_DEBUG_BUS is not set
31343 +# CONFIG_I2C_DEBUG_CHIP is not set
31344 +
31345 +#
31346 +# SPI support
31347 +#
31348 +# CONFIG_SPI is not set
31349 +# CONFIG_SPI_MASTER is not set
31350 +# CONFIG_W1 is not set
31351 +# CONFIG_POWER_SUPPLY is not set
31352 +CONFIG_HWMON=y
31353 +# CONFIG_HWMON_VID is not set
31354 +# CONFIG_SENSORS_AD7418 is not set
31355 +# CONFIG_SENSORS_ADM1021 is not set
31356 +# CONFIG_SENSORS_ADM1025 is not set
31357 +# CONFIG_SENSORS_ADM1026 is not set
31358 +# CONFIG_SENSORS_ADM1029 is not set
31359 +# CONFIG_SENSORS_ADM1031 is not set
31360 +# CONFIG_SENSORS_ADM9240 is not set
31361 +# CONFIG_SENSORS_ADT7470 is not set
31362 +# CONFIG_SENSORS_ADT7473 is not set
31363 +# CONFIG_SENSORS_ATXP1 is not set
31364 +# CONFIG_SENSORS_DS1621 is not set
31365 +# CONFIG_SENSORS_F71805F is not set
31366 +# CONFIG_SENSORS_F71882FG is not set
31367 +# CONFIG_SENSORS_F75375S is not set
31368 +# CONFIG_SENSORS_GL518SM is not set
31369 +# CONFIG_SENSORS_GL520SM is not set
31370 +# CONFIG_SENSORS_IT87 is not set
31371 +# CONFIG_SENSORS_LM63 is not set
31372 +# CONFIG_SENSORS_LM75 is not set
31373 +# CONFIG_SENSORS_LM77 is not set
31374 +# CONFIG_SENSORS_LM78 is not set
31375 +# CONFIG_SENSORS_LM80 is not set
31376 +# CONFIG_SENSORS_LM83 is not set
31377 +# CONFIG_SENSORS_LM85 is not set
31378 +# CONFIG_SENSORS_LM87 is not set
31379 +# CONFIG_SENSORS_LM90 is not set
31380 +# CONFIG_SENSORS_LM92 is not set
31381 +# CONFIG_SENSORS_LM93 is not set
31382 +# CONFIG_SENSORS_MAX1619 is not set
31383 +# CONFIG_SENSORS_MAX6650 is not set
31384 +# CONFIG_SENSORS_PC87360 is not set
31385 +# CONFIG_SENSORS_PC87427 is not set
31386 +# CONFIG_SENSORS_DME1737 is not set
31387 +# CONFIG_SENSORS_SMSC47M1 is not set
31388 +# CONFIG_SENSORS_SMSC47M192 is not set
31389 +# CONFIG_SENSORS_SMSC47B397 is not set
31390 +# CONFIG_SENSORS_ADS7828 is not set
31391 +# CONFIG_SENSORS_THMC50 is not set
31392 +# CONFIG_SENSORS_VT1211 is not set
31393 +# CONFIG_SENSORS_W83781D is not set
31394 +# CONFIG_SENSORS_W83791D is not set
31395 +# CONFIG_SENSORS_W83792D is not set
31396 +# CONFIG_SENSORS_W83793 is not set
31397 +# CONFIG_SENSORS_W83L785TS is not set
31398 +# CONFIG_SENSORS_W83L786NG is not set
31399 +# CONFIG_SENSORS_W83627HF is not set
31400 +# CONFIG_SENSORS_W83627EHF is not set
31401 +# CONFIG_HWMON_DEBUG_CHIP is not set
31402 +# CONFIG_THERMAL is not set
31403 +CONFIG_WATCHDOG=y
31404 +# CONFIG_WATCHDOG_NOWAYOUT is not set
31405 +
31406 +#
31407 +# Watchdog Device Drivers
31408 +#
31409 +# CONFIG_SOFT_WATCHDOG is not set
31410 +CONFIG_83xx_WDT=y
31411 +
31412 +#
31413 +# Sonics Silicon Backplane
31414 +#
31415 +CONFIG_SSB_POSSIBLE=y
31416 +# CONFIG_SSB is not set
31417 +
31418 +#
31419 +# Multifunction device drivers
31420 +#
31421 +# CONFIG_MFD_SM501 is not set
31422 +
31423 +#
31424 +# Multimedia devices
31425 +#
31426 +# CONFIG_VIDEO_DEV is not set
31427 +# CONFIG_DVB_CORE is not set
31428 +CONFIG_DAB=y
31429 +
31430 +#
31431 +# Graphics support
31432 +#
31433 +# CONFIG_VGASTATE is not set
31434 +CONFIG_VIDEO_OUTPUT_CONTROL=m
31435 +# CONFIG_FB is not set
31436 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
31437 +
31438 +#
31439 +# Display device support
31440 +#
31441 +# CONFIG_DISPLAY_SUPPORT is not set
31442 +
31443 +#
31444 +# Sound
31445 +#
31446 +# CONFIG_SOUND is not set
31447 +CONFIG_HID_SUPPORT=y
31448 +CONFIG_HID=y
31449 +# CONFIG_HID_DEBUG is not set
31450 +# CONFIG_HIDRAW is not set
31451 +CONFIG_USB_SUPPORT=y
31452 +CONFIG_USB_ARCH_HAS_HCD=y
31453 +# CONFIG_USB_ARCH_HAS_OHCI is not set
31454 +CONFIG_USB_ARCH_HAS_EHCI=y
31455 +# CONFIG_USB is not set
31456 +
31457 +#
31458 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
31459 +#
31460 +# CONFIG_USB_GADGET is not set
31461 +# CONFIG_MMC is not set
31462 +# CONFIG_MEMSTICK is not set
31463 +# CONFIG_NEW_LEDS is not set
31464 +# CONFIG_EDAC is not set
31465 +# CONFIG_RTC_CLASS is not set
31466 +# CONFIG_DMADEVICES is not set
31467 +
31468 +#
31469 +# Userspace I/O
31470 +#
31471 +# CONFIG_UIO is not set
31472 +
31473 +#
31474 +# File systems
31475 +#
31476 +CONFIG_EXT2_FS=y
31477 +# CONFIG_EXT2_FS_XATTR is not set
31478 +# CONFIG_EXT2_FS_XIP is not set
31479 +CONFIG_EXT3_FS=y
31480 +CONFIG_EXT3_FS_XATTR=y
31481 +# CONFIG_EXT3_FS_POSIX_ACL is not set
31482 +# CONFIG_EXT3_FS_SECURITY is not set
31483 +# CONFIG_EXT4DEV_FS is not set
31484 +CONFIG_JBD=y
31485 +CONFIG_FS_MBCACHE=y
31486 +# CONFIG_REISERFS_FS is not set
31487 +# CONFIG_JFS_FS is not set
31488 +# CONFIG_FS_POSIX_ACL is not set
31489 +# CONFIG_XFS_FS is not set
31490 +# CONFIG_GFS2_FS is not set
31491 +# CONFIG_OCFS2_FS is not set
31492 +CONFIG_DNOTIFY=y
31493 +CONFIG_INOTIFY=y
31494 +CONFIG_INOTIFY_USER=y
31495 +# CONFIG_QUOTA is not set
31496 +# CONFIG_AUTOFS_FS is not set
31497 +# CONFIG_AUTOFS4_FS is not set
31498 +# CONFIG_FUSE_FS is not set
31499 +
31500 +#
31501 +# CD-ROM/DVD Filesystems
31502 +#
31503 +# CONFIG_ISO9660_FS is not set
31504 +# CONFIG_UDF_FS is not set
31505 +
31506 +#
31507 +# DOS/FAT/NT Filesystems
31508 +#
31509 +# CONFIG_MSDOS_FS is not set
31510 +# CONFIG_VFAT_FS is not set
31511 +# CONFIG_NTFS_FS is not set
31512 +
31513 +#
31514 +# Pseudo filesystems
31515 +#
31516 +CONFIG_PROC_FS=y
31517 +CONFIG_PROC_KCORE=y
31518 +CONFIG_PROC_SYSCTL=y
31519 +CONFIG_SYSFS=y
31520 +CONFIG_TMPFS=y
31521 +# CONFIG_TMPFS_POSIX_ACL is not set
31522 +# CONFIG_HUGETLB_PAGE is not set
31523 +# CONFIG_CONFIGFS_FS is not set
31524 +
31525 +#
31526 +# Miscellaneous filesystems
31527 +#
31528 +# CONFIG_ADFS_FS is not set
31529 +# CONFIG_AFFS_FS is not set
31530 +# CONFIG_HFS_FS is not set
31531 +# CONFIG_HFSPLUS_FS is not set
31532 +# CONFIG_BEFS_FS is not set
31533 +# CONFIG_BFS_FS is not set
31534 +# CONFIG_EFS_FS is not set
31535 +# CONFIG_CRAMFS is not set
31536 +# CONFIG_VXFS_FS is not set
31537 +# CONFIG_MINIX_FS is not set
31538 +# CONFIG_HPFS_FS is not set
31539 +# CONFIG_QNX4FS_FS is not set
31540 +# CONFIG_ROMFS_FS is not set
31541 +# CONFIG_SYSV_FS is not set
31542 +# CONFIG_UFS_FS is not set
31543 +CONFIG_NETWORK_FILESYSTEMS=y
31544 +CONFIG_NFS_FS=y
31545 +CONFIG_NFS_V3=y
31546 +# CONFIG_NFS_V3_ACL is not set
31547 +CONFIG_NFS_V4=y
31548 +# CONFIG_NFS_DIRECTIO is not set
31549 +# CONFIG_NFSD is not set
31550 +CONFIG_ROOT_NFS=y
31551 +CONFIG_LOCKD=y
31552 +CONFIG_LOCKD_V4=y
31553 +CONFIG_NFS_COMMON=y
31554 +CONFIG_SUNRPC=y
31555 +CONFIG_SUNRPC_GSS=y
31556 +# CONFIG_SUNRPC_BIND34 is not set
31557 +CONFIG_RPCSEC_GSS_KRB5=y
31558 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
31559 +# CONFIG_SMB_FS is not set
31560 +# CONFIG_CIFS is not set
31561 +# CONFIG_NCP_FS is not set
31562 +# CONFIG_CODA_FS is not set
31563 +# CONFIG_AFS_FS is not set
31564 +
31565 +#
31566 +# Partition Types
31567 +#
31568 +CONFIG_PARTITION_ADVANCED=y
31569 +# CONFIG_ACORN_PARTITION is not set
31570 +# CONFIG_OSF_PARTITION is not set
31571 +# CONFIG_AMIGA_PARTITION is not set
31572 +# CONFIG_ATARI_PARTITION is not set
31573 +# CONFIG_MAC_PARTITION is not set
31574 +CONFIG_MSDOS_PARTITION=y
31575 +# CONFIG_BSD_DISKLABEL is not set
31576 +# CONFIG_MINIX_SUBPARTITION is not set
31577 +# CONFIG_SOLARIS_X86_PARTITION is not set
31578 +# CONFIG_UNIXWARE_DISKLABEL is not set
31579 +# CONFIG_LDM_PARTITION is not set
31580 +# CONFIG_SGI_PARTITION is not set
31581 +# CONFIG_ULTRIX_PARTITION is not set
31582 +# CONFIG_SUN_PARTITION is not set
31583 +# CONFIG_KARMA_PARTITION is not set
31584 +# CONFIG_EFI_PARTITION is not set
31585 +# CONFIG_SYSV68_PARTITION is not set
31586 +# CONFIG_NLS is not set
31587 +# CONFIG_DLM is not set
31588 +
31589 +#
31590 +# Library routines
31591 +#
31592 +CONFIG_BITREVERSE=y
31593 +# CONFIG_CRC_CCITT is not set
31594 +# CONFIG_CRC16 is not set
31595 +# CONFIG_CRC_ITU_T is not set
31596 +CONFIG_CRC32=y
31597 +# CONFIG_CRC7 is not set
31598 +# CONFIG_LIBCRC32C is not set
31599 +CONFIG_PLIST=y
31600 +CONFIG_HAS_IOMEM=y
31601 +CONFIG_HAS_IOPORT=y
31602 +CONFIG_HAS_DMA=y
31603 +
31604 +#
31605 +# Kernel hacking
31606 +#
31607 +# CONFIG_PRINTK_TIME is not set
31608 +CONFIG_ENABLE_WARN_DEPRECATED=y
31609 +CONFIG_ENABLE_MUST_CHECK=y
31610 +# CONFIG_MAGIC_SYSRQ is not set
31611 +# CONFIG_UNUSED_SYMBOLS is not set
31612 +# CONFIG_DEBUG_FS is not set
31613 +# CONFIG_HEADERS_CHECK is not set
31614 +# CONFIG_DEBUG_KERNEL is not set
31615 +# CONFIG_DEBUG_BUGVERBOSE is not set
31616 +# CONFIG_SAMPLES is not set
31617 +# CONFIG_PPC_EARLY_DEBUG is not set
31618 +
31619 +#
31620 +# Security options
31621 +#
31622 +# CONFIG_KEYS is not set
31623 +# CONFIG_SECURITY is not set
31624 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
31625 +CONFIG_CRYPTO=y
31626 +CONFIG_CRYPTO_ALGAPI=y
31627 +CONFIG_CRYPTO_BLKCIPHER=y
31628 +# CONFIG_CRYPTO_SEQIV is not set
31629 +CONFIG_CRYPTO_MANAGER=y
31630 +# CONFIG_CRYPTO_HMAC is not set
31631 +# CONFIG_CRYPTO_XCBC is not set
31632 +# CONFIG_CRYPTO_NULL is not set
31633 +# CONFIG_CRYPTO_MD4 is not set
31634 +CONFIG_CRYPTO_MD5=y
31635 +# CONFIG_CRYPTO_SHA1 is not set
31636 +# CONFIG_CRYPTO_SHA256 is not set
31637 +# CONFIG_CRYPTO_SHA512 is not set
31638 +# CONFIG_CRYPTO_WP512 is not set
31639 +# CONFIG_CRYPTO_TGR192 is not set
31640 +# CONFIG_CRYPTO_GF128MUL is not set
31641 +CONFIG_CRYPTO_ECB=m
31642 +CONFIG_CRYPTO_CBC=y
31643 +CONFIG_CRYPTO_PCBC=m
31644 +# CONFIG_CRYPTO_LRW is not set
31645 +# CONFIG_CRYPTO_XTS is not set
31646 +# CONFIG_CRYPTO_CTR is not set
31647 +# CONFIG_CRYPTO_GCM is not set
31648 +# CONFIG_CRYPTO_CCM is not set
31649 +# CONFIG_CRYPTO_CRYPTD is not set
31650 +CONFIG_CRYPTO_DES=y
31651 +# CONFIG_CRYPTO_FCRYPT is not set
31652 +# CONFIG_CRYPTO_BLOWFISH is not set
31653 +# CONFIG_CRYPTO_TWOFISH is not set
31654 +# CONFIG_CRYPTO_SERPENT is not set
31655 +# CONFIG_CRYPTO_AES is not set
31656 +# CONFIG_CRYPTO_CAST5 is not set
31657 +# CONFIG_CRYPTO_CAST6 is not set
31658 +# CONFIG_CRYPTO_TEA is not set
31659 +# CONFIG_CRYPTO_ARC4 is not set
31660 +# CONFIG_CRYPTO_KHAZAD is not set
31661 +# CONFIG_CRYPTO_ANUBIS is not set
31662 +# CONFIG_CRYPTO_SEED is not set
31663 +# CONFIG_CRYPTO_SALSA20 is not set
31664 +# CONFIG_CRYPTO_DEFLATE is not set
31665 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
31666 +# CONFIG_CRYPTO_CRC32C is not set
31667 +# CONFIG_CRYPTO_CAMELLIA is not set
31668 +# CONFIG_CRYPTO_TEST is not set
31669 +# CONFIG_CRYPTO_AUTHENC is not set
31670 +# CONFIG_CRYPTO_LZO is not set
31671 +CONFIG_CRYPTO_HW=y
31672 +# CONFIG_PPC_CLOCK is not set
31673 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig
31674 ===================================================================
31675 --- /dev/null
31676 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig
31677 @@ -0,0 +1,930 @@
31678 +#
31679 +# Automatically generated make config: don't edit
31680 +# Linux kernel version: 2.6.25-rc6
31681 +# Mon Mar 24 08:48:24 2008
31682 +#
31683 +# CONFIG_PPC64 is not set
31684 +
31685 +#
31686 +# Processor support
31687 +#
31688 +CONFIG_6xx=y
31689 +# CONFIG_PPC_85xx is not set
31690 +# CONFIG_PPC_8xx is not set
31691 +# CONFIG_40x is not set
31692 +# CONFIG_44x is not set
31693 +# CONFIG_E200 is not set
31694 +CONFIG_PPC_FPU=y
31695 +# CONFIG_FSL_EMB_PERFMON is not set
31696 +CONFIG_PPC_STD_MMU=y
31697 +CONFIG_PPC_STD_MMU_32=y
31698 +# CONFIG_PPC_MM_SLICES is not set
31699 +# CONFIG_SMP is not set
31700 +CONFIG_PPC32=y
31701 +CONFIG_WORD_SIZE=32
31702 +CONFIG_PPC_MERGE=y
31703 +CONFIG_MMU=y
31704 +CONFIG_GENERIC_CMOS_UPDATE=y
31705 +CONFIG_GENERIC_TIME=y
31706 +CONFIG_GENERIC_TIME_VSYSCALL=y
31707 +CONFIG_GENERIC_CLOCKEVENTS=y
31708 +CONFIG_GENERIC_HARDIRQS=y
31709 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
31710 +CONFIG_IRQ_PER_CPU=y
31711 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
31712 +CONFIG_ARCH_HAS_ILOG2_U32=y
31713 +CONFIG_GENERIC_HWEIGHT=y
31714 +CONFIG_GENERIC_CALIBRATE_DELAY=y
31715 +CONFIG_GENERIC_FIND_NEXT_BIT=y
31716 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
31717 +CONFIG_PPC=y
31718 +CONFIG_EARLY_PRINTK=y
31719 +CONFIG_GENERIC_NVRAM=y
31720 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
31721 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
31722 +CONFIG_PPC_OF=y
31723 +CONFIG_OF=y
31724 +CONFIG_PPC_UDBG_16550=y
31725 +# CONFIG_GENERIC_TBSYNC is not set
31726 +CONFIG_AUDIT_ARCH=y
31727 +CONFIG_GENERIC_BUG=y
31728 +CONFIG_DEFAULT_UIMAGE=y
31729 +# CONFIG_PPC_DCR_NATIVE is not set
31730 +# CONFIG_PPC_DCR_MMIO is not set
31731 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
31732 +
31733 +#
31734 +# General setup
31735 +#
31736 +CONFIG_EXPERIMENTAL=y
31737 +CONFIG_BROKEN_ON_SMP=y
31738 +CONFIG_INIT_ENV_ARG_LIMIT=32
31739 +CONFIG_LOCALVERSION=""
31740 +CONFIG_LOCALVERSION_AUTO=y
31741 +CONFIG_SWAP=y
31742 +CONFIG_SYSVIPC=y
31743 +CONFIG_SYSVIPC_SYSCTL=y
31744 +# CONFIG_POSIX_MQUEUE is not set
31745 +# CONFIG_BSD_PROCESS_ACCT is not set
31746 +# CONFIG_TASKSTATS is not set
31747 +# CONFIG_AUDIT is not set
31748 +# CONFIG_IKCONFIG is not set
31749 +CONFIG_LOG_BUF_SHIFT=14
31750 +# CONFIG_CGROUPS is not set
31751 +CONFIG_GROUP_SCHED=y
31752 +CONFIG_FAIR_GROUP_SCHED=y
31753 +# CONFIG_RT_GROUP_SCHED is not set
31754 +CONFIG_USER_SCHED=y
31755 +# CONFIG_CGROUP_SCHED is not set
31756 +CONFIG_SYSFS_DEPRECATED=y
31757 +CONFIG_SYSFS_DEPRECATED_V2=y
31758 +# CONFIG_RELAY is not set
31759 +# CONFIG_NAMESPACES is not set
31760 +CONFIG_BLK_DEV_INITRD=y
31761 +CONFIG_INITRAMFS_SOURCE=""
31762 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
31763 +CONFIG_SYSCTL=y
31764 +CONFIG_EMBEDDED=y
31765 +CONFIG_SYSCTL_SYSCALL=y
31766 +CONFIG_KALLSYMS=y
31767 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
31768 +CONFIG_HOTPLUG=y
31769 +CONFIG_PRINTK=y
31770 +CONFIG_BUG=y
31771 +CONFIG_ELF_CORE=y
31772 +CONFIG_COMPAT_BRK=y
31773 +CONFIG_BASE_FULL=y
31774 +CONFIG_FUTEX=y
31775 +CONFIG_ANON_INODES=y
31776 +# CONFIG_EPOLL is not set
31777 +CONFIG_SIGNALFD=y
31778 +CONFIG_TIMERFD=y
31779 +CONFIG_EVENTFD=y
31780 +CONFIG_SHMEM=y
31781 +CONFIG_VM_EVENT_COUNTERS=y
31782 +CONFIG_SLAB=y
31783 +# CONFIG_SLUB is not set
31784 +# CONFIG_SLOB is not set
31785 +# CONFIG_PROFILING is not set
31786 +# CONFIG_MARKERS is not set
31787 +CONFIG_HAVE_OPROFILE=y
31788 +# CONFIG_KPROBES is not set
31789 +CONFIG_HAVE_KPROBES=y
31790 +CONFIG_HAVE_KRETPROBES=y
31791 +CONFIG_PROC_PAGE_MONITOR=y
31792 +CONFIG_SLABINFO=y
31793 +CONFIG_RT_MUTEXES=y
31794 +# CONFIG_TINY_SHMEM is not set
31795 +CONFIG_BASE_SMALL=0
31796 +CONFIG_MODULES=y
31797 +CONFIG_MODULE_UNLOAD=y
31798 +# CONFIG_MODULE_FORCE_UNLOAD is not set
31799 +# CONFIG_MODVERSIONS is not set
31800 +# CONFIG_MODULE_SRCVERSION_ALL is not set
31801 +# CONFIG_KMOD is not set
31802 +CONFIG_BLOCK=y
31803 +# CONFIG_LBD is not set
31804 +# CONFIG_BLK_DEV_IO_TRACE is not set
31805 +# CONFIG_LSF is not set
31806 +# CONFIG_BLK_DEV_BSG is not set
31807 +
31808 +#
31809 +# IO Schedulers
31810 +#
31811 +CONFIG_IOSCHED_NOOP=y
31812 +CONFIG_IOSCHED_AS=y
31813 +CONFIG_IOSCHED_DEADLINE=y
31814 +CONFIG_IOSCHED_CFQ=y
31815 +CONFIG_DEFAULT_AS=y
31816 +# CONFIG_DEFAULT_DEADLINE is not set
31817 +# CONFIG_DEFAULT_CFQ is not set
31818 +# CONFIG_DEFAULT_NOOP is not set
31819 +CONFIG_DEFAULT_IOSCHED="anticipatory"
31820 +CONFIG_CLASSIC_RCU=y
31821 +
31822 +#
31823 +# Platform support
31824 +#
31825 +# CONFIG_PPC_MULTIPLATFORM is not set
31826 +# CONFIG_PPC_82xx is not set
31827 +CONFIG_PPC_83xx=y
31828 +# CONFIG_PPC_86xx is not set
31829 +# CONFIG_PPC_MPC512x is not set
31830 +# CONFIG_PPC_MPC5121 is not set
31831 +# CONFIG_PPC_CELL is not set
31832 +# CONFIG_PPC_CELL_NATIVE is not set
31833 +# CONFIG_PQ2ADS is not set
31834 +CONFIG_MPC83xx=y
31835 +# CONFIG_MPC831x_RDB is not set
31836 +# CONFIG_MPC832x_MDS is not set
31837 +# CONFIG_MPC832x_RDB is not set
31838 +# CONFIG_MPC834x_MDS is not set
31839 +# CONFIG_MPC834x_ITX is not set
31840 +# CONFIG_MPC836x_MDS is not set
31841 +# CONFIG_MPC837x_MDS is not set
31842 +CONFIG_MPC837x_RDB=y
31843 +# CONFIG_SBC834x is not set
31844 +CONFIG_PPC_MPC837x=y
31845 +CONFIG_IPIC=y
31846 +# CONFIG_MPIC is not set
31847 +# CONFIG_MPIC_WEIRD is not set
31848 +# CONFIG_PPC_I8259 is not set
31849 +# CONFIG_PPC_RTAS is not set
31850 +# CONFIG_MMIO_NVRAM is not set
31851 +# CONFIG_PPC_MPC106 is not set
31852 +# CONFIG_PPC_970_NAP is not set
31853 +# CONFIG_PPC_INDIRECT_IO is not set
31854 +# CONFIG_GENERIC_IOMAP is not set
31855 +# CONFIG_CPU_FREQ is not set
31856 +# CONFIG_FSL_ULI1575 is not set
31857 +
31858 +#
31859 +# Kernel options
31860 +#
31861 +# CONFIG_HIGHMEM is not set
31862 +# CONFIG_TICK_ONESHOT is not set
31863 +# CONFIG_NO_HZ is not set
31864 +# CONFIG_HIGH_RES_TIMERS is not set
31865 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
31866 +# CONFIG_HZ_100 is not set
31867 +CONFIG_HZ_250=y
31868 +# CONFIG_HZ_300 is not set
31869 +# CONFIG_HZ_1000 is not set
31870 +CONFIG_HZ=250
31871 +# CONFIG_SCHED_HRTICK is not set
31872 +CONFIG_PREEMPT_NONE=y
31873 +# CONFIG_PREEMPT_VOLUNTARY is not set
31874 +# CONFIG_PREEMPT is not set
31875 +CONFIG_BINFMT_ELF=y
31876 +# CONFIG_BINFMT_MISC is not set
31877 +# CONFIG_IOMMU_HELPER is not set
31878 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
31879 +CONFIG_ARCH_HAS_WALK_MEMORY=y
31880 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
31881 +CONFIG_ARCH_FLATMEM_ENABLE=y
31882 +CONFIG_ARCH_POPULATES_NODE_MAP=y
31883 +CONFIG_SELECT_MEMORY_MODEL=y
31884 +CONFIG_FLATMEM_MANUAL=y
31885 +# CONFIG_DISCONTIGMEM_MANUAL is not set
31886 +# CONFIG_SPARSEMEM_MANUAL is not set
31887 +CONFIG_FLATMEM=y
31888 +CONFIG_FLAT_NODE_MEM_MAP=y
31889 +# CONFIG_SPARSEMEM_STATIC is not set
31890 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
31891 +CONFIG_SPLIT_PTLOCK_CPUS=4
31892 +# CONFIG_RESOURCES_64BIT is not set
31893 +CONFIG_ZONE_DMA_FLAG=1
31894 +CONFIG_BOUNCE=y
31895 +CONFIG_VIRT_TO_BUS=y
31896 +CONFIG_PROC_DEVICETREE=y
31897 +# CONFIG_CMDLINE_BOOL is not set
31898 +# CONFIG_PM is not set
31899 +CONFIG_SECCOMP=y
31900 +CONFIG_ISA_DMA_API=y
31901 +
31902 +#
31903 +# Bus options
31904 +#
31905 +CONFIG_ZONE_DMA=y
31906 +CONFIG_GENERIC_ISA_DMA=y
31907 +CONFIG_PPC_INDIRECT_PCI=y
31908 +CONFIG_FSL_SOC=y
31909 +# CONFIG_PCI is not set
31910 +# CONFIG_PCI_DOMAINS is not set
31911 +# CONFIG_PCI_SYSCALL is not set
31912 +# CONFIG_ARCH_SUPPORTS_MSI is not set
31913 +# CONFIG_PCCARD is not set
31914 +
31915 +#
31916 +# Advanced setup
31917 +#
31918 +# CONFIG_ADVANCED_OPTIONS is not set
31919 +
31920 +#
31921 +# Default settings for advanced configuration options are used
31922 +#
31923 +CONFIG_HIGHMEM_START=0xfe000000
31924 +CONFIG_LOWMEM_SIZE=0x30000000
31925 +CONFIG_KERNEL_START=0xc0000000
31926 +CONFIG_TASK_SIZE=0xc0000000
31927 +CONFIG_BOOT_LOAD=0x00800000
31928 +
31929 +#
31930 +# Networking
31931 +#
31932 +CONFIG_NET=y
31933 +
31934 +#
31935 +# Networking options
31936 +#
31937 +CONFIG_PACKET=y
31938 +# CONFIG_PACKET_MMAP is not set
31939 +CONFIG_UNIX=y
31940 +# CONFIG_NET_KEY is not set
31941 +CONFIG_INET=y
31942 +CONFIG_IP_MULTICAST=y
31943 +# CONFIG_IP_ADVANCED_ROUTER is not set
31944 +CONFIG_IP_FIB_HASH=y
31945 +CONFIG_IP_PNP=y
31946 +CONFIG_IP_PNP_DHCP=y
31947 +CONFIG_IP_PNP_BOOTP=y
31948 +# CONFIG_IP_PNP_RARP is not set
31949 +# CONFIG_NET_IPIP is not set
31950 +# CONFIG_NET_IPGRE is not set
31951 +# CONFIG_IP_MROUTE is not set
31952 +# CONFIG_ARPD is not set
31953 +CONFIG_SYN_COOKIES=y
31954 +# CONFIG_INET_AH is not set
31955 +# CONFIG_INET_ESP is not set
31956 +# CONFIG_INET_IPCOMP is not set
31957 +# CONFIG_INET_XFRM_TUNNEL is not set
31958 +# CONFIG_INET_TUNNEL is not set
31959 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
31960 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
31961 +# CONFIG_INET_XFRM_MODE_BEET is not set
31962 +# CONFIG_INET_LRO is not set
31963 +CONFIG_INET_DIAG=y
31964 +CONFIG_INET_TCP_DIAG=y
31965 +# CONFIG_TCP_CONG_ADVANCED is not set
31966 +CONFIG_TCP_CONG_CUBIC=y
31967 +CONFIG_DEFAULT_TCP_CONG="cubic"
31968 +# CONFIG_TCP_MD5SIG is not set
31969 +# CONFIG_IPV6 is not set
31970 +# CONFIG_INET6_XFRM_TUNNEL is not set
31971 +# CONFIG_INET6_TUNNEL is not set
31972 +# CONFIG_NETWORK_SECMARK is not set
31973 +# CONFIG_NETFILTER is not set
31974 +# CONFIG_IP_DCCP is not set
31975 +# CONFIG_IP_SCTP is not set
31976 +# CONFIG_TIPC is not set
31977 +# CONFIG_ATM is not set
31978 +# CONFIG_BRIDGE is not set
31979 +# CONFIG_VLAN_8021Q is not set
31980 +# CONFIG_DECNET is not set
31981 +# CONFIG_LLC2 is not set
31982 +# CONFIG_IPX is not set
31983 +# CONFIG_ATALK is not set
31984 +# CONFIG_X25 is not set
31985 +# CONFIG_LAPB is not set
31986 +# CONFIG_ECONET is not set
31987 +# CONFIG_WAN_ROUTER is not set
31988 +# CONFIG_NET_SCHED is not set
31989 +
31990 +#
31991 +# Network testing
31992 +#
31993 +# CONFIG_NET_PKTGEN is not set
31994 +# CONFIG_HAMRADIO is not set
31995 +# CONFIG_CAN is not set
31996 +# CONFIG_IRDA is not set
31997 +# CONFIG_BT is not set
31998 +# CONFIG_AF_RXRPC is not set
31999 +
32000 +#
32001 +# Wireless
32002 +#
32003 +# CONFIG_CFG80211 is not set
32004 +# CONFIG_WIRELESS_EXT is not set
32005 +# CONFIG_MAC80211 is not set
32006 +# CONFIG_IEEE80211 is not set
32007 +# CONFIG_RFKILL is not set
32008 +# CONFIG_NET_9P is not set
32009 +
32010 +#
32011 +# Device Drivers
32012 +#
32013 +
32014 +#
32015 +# Generic Driver Options
32016 +#
32017 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
32018 +CONFIG_STANDALONE=y
32019 +CONFIG_PREVENT_FIRMWARE_BUILD=y
32020 +# CONFIG_FW_LOADER is not set
32021 +# CONFIG_SYS_HYPERVISOR is not set
32022 +# CONFIG_CONNECTOR is not set
32023 +# CONFIG_MTD is not set
32024 +CONFIG_OF_DEVICE=y
32025 +# CONFIG_PARPORT is not set
32026 +CONFIG_BLK_DEV=y
32027 +# CONFIG_BLK_DEV_FD is not set
32028 +# CONFIG_BLK_DEV_COW_COMMON is not set
32029 +CONFIG_BLK_DEV_LOOP=y
32030 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
32031 +# CONFIG_BLK_DEV_NBD is not set
32032 +CONFIG_BLK_DEV_RAM=y
32033 +CONFIG_BLK_DEV_RAM_COUNT=16
32034 +CONFIG_BLK_DEV_RAM_SIZE=32768
32035 +# CONFIG_BLK_DEV_XIP is not set
32036 +# CONFIG_CDROM_PKTCDVD is not set
32037 +# CONFIG_ATA_OVER_ETH is not set
32038 +CONFIG_MISC_DEVICES=y
32039 +# CONFIG_EEPROM_93CX6 is not set
32040 +# CONFIG_ENCLOSURE_SERVICES is not set
32041 +CONFIG_HAVE_IDE=y
32042 +# CONFIG_IDE is not set
32043 +
32044 +#
32045 +# SCSI device support
32046 +#
32047 +# CONFIG_RAID_ATTRS is not set
32048 +CONFIG_SCSI=y
32049 +CONFIG_SCSI_DMA=y
32050 +# CONFIG_SCSI_TGT is not set
32051 +# CONFIG_SCSI_NETLINK is not set
32052 +CONFIG_SCSI_PROC_FS=y
32053 +
32054 +#
32055 +# SCSI support type (disk, tape, CD-ROM)
32056 +#
32057 +CONFIG_BLK_DEV_SD=y
32058 +# CONFIG_CHR_DEV_ST is not set
32059 +# CONFIG_CHR_DEV_OSST is not set
32060 +# CONFIG_BLK_DEV_SR is not set
32061 +CONFIG_CHR_DEV_SG=y
32062 +# CONFIG_CHR_DEV_SCH is not set
32063 +
32064 +#
32065 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
32066 +#
32067 +# CONFIG_SCSI_MULTI_LUN is not set
32068 +# CONFIG_SCSI_CONSTANTS is not set
32069 +# CONFIG_SCSI_LOGGING is not set
32070 +# CONFIG_SCSI_SCAN_ASYNC is not set
32071 +CONFIG_SCSI_WAIT_SCAN=m
32072 +
32073 +#
32074 +# SCSI Transports
32075 +#
32076 +# CONFIG_SCSI_SPI_ATTRS is not set
32077 +# CONFIG_SCSI_FC_ATTRS is not set
32078 +# CONFIG_SCSI_ISCSI_ATTRS is not set
32079 +# CONFIG_SCSI_SAS_LIBSAS is not set
32080 +# CONFIG_SCSI_SRP_ATTRS is not set
32081 +CONFIG_SCSI_LOWLEVEL=y
32082 +# CONFIG_ISCSI_TCP is not set
32083 +# CONFIG_SCSI_DEBUG is not set
32084 +CONFIG_ATA=y
32085 +# CONFIG_ATA_NONSTANDARD is not set
32086 +# CONFIG_SATA_MV is not set
32087 +CONFIG_SATA_FSL=y
32088 +# CONFIG_PATA_PLATFORM is not set
32089 +CONFIG_MD=y
32090 +CONFIG_BLK_DEV_MD=y
32091 +# CONFIG_MD_LINEAR is not set
32092 +# CONFIG_MD_RAID0 is not set
32093 +CONFIG_MD_RAID1=y
32094 +# CONFIG_MD_RAID10 is not set
32095 +CONFIG_MD_RAID456=y
32096 +CONFIG_MD_RAID5_RESHAPE=y
32097 +# CONFIG_MD_MULTIPATH is not set
32098 +# CONFIG_MD_FAULTY is not set
32099 +# CONFIG_BLK_DEV_DM is not set
32100 +# CONFIG_MACINTOSH_DRIVERS is not set
32101 +CONFIG_NETDEVICES=y
32102 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
32103 +# CONFIG_DUMMY is not set
32104 +# CONFIG_BONDING is not set
32105 +# CONFIG_MACVLAN is not set
32106 +# CONFIG_EQUALIZER is not set
32107 +# CONFIG_TUN is not set
32108 +# CONFIG_VETH is not set
32109 +CONFIG_PHYLIB=y
32110 +
32111 +#
32112 +# MII PHY device drivers
32113 +#
32114 +CONFIG_MARVELL_PHY=y
32115 +# CONFIG_DAVICOM_PHY is not set
32116 +# CONFIG_QSEMI_PHY is not set
32117 +# CONFIG_LXT_PHY is not set
32118 +# CONFIG_CICADA_PHY is not set
32119 +# CONFIG_VITESSE_PHY is not set
32120 +# CONFIG_SMSC_PHY is not set
32121 +# CONFIG_BROADCOM_PHY is not set
32122 +# CONFIG_ICPLUS_PHY is not set
32123 +# CONFIG_REALTEK_PHY is not set
32124 +# CONFIG_FIXED_PHY is not set
32125 +# CONFIG_MDIO_BITBANG is not set
32126 +CONFIG_NET_ETHERNET=y
32127 +CONFIG_MII=y
32128 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
32129 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
32130 +# CONFIG_IBM_NEW_EMAC_TAH is not set
32131 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
32132 +# CONFIG_B44 is not set
32133 +CONFIG_NETDEV_1000=y
32134 +# CONFIG_E1000E_ENABLED is not set
32135 +CONFIG_GIANFAR=y
32136 +CONFIG_GFAR_NAPI=y
32137 +# CONFIG_NETDEV_10000 is not set
32138 +
32139 +#
32140 +# Wireless LAN
32141 +#
32142 +# CONFIG_WLAN_PRE80211 is not set
32143 +# CONFIG_WLAN_80211 is not set
32144 +# CONFIG_WAN is not set
32145 +# CONFIG_PPP is not set
32146 +# CONFIG_SLIP is not set
32147 +# CONFIG_NETCONSOLE is not set
32148 +# CONFIG_NETPOLL is not set
32149 +# CONFIG_NET_POLL_CONTROLLER is not set
32150 +# CONFIG_ISDN is not set
32151 +# CONFIG_PHONE is not set
32152 +
32153 +#
32154 +# Input device support
32155 +#
32156 +CONFIG_INPUT=y
32157 +# CONFIG_INPUT_FF_MEMLESS is not set
32158 +# CONFIG_INPUT_POLLDEV is not set
32159 +
32160 +#
32161 +# Userland interfaces
32162 +#
32163 +# CONFIG_INPUT_MOUSEDEV is not set
32164 +# CONFIG_INPUT_JOYDEV is not set
32165 +# CONFIG_INPUT_EVDEV is not set
32166 +# CONFIG_INPUT_EVBUG is not set
32167 +
32168 +#
32169 +# Input Device Drivers
32170 +#
32171 +# CONFIG_INPUT_KEYBOARD is not set
32172 +# CONFIG_INPUT_MOUSE is not set
32173 +# CONFIG_INPUT_JOYSTICK is not set
32174 +# CONFIG_INPUT_TABLET is not set
32175 +# CONFIG_INPUT_TOUCHSCREEN is not set
32176 +# CONFIG_INPUT_MISC is not set
32177 +
32178 +#
32179 +# Hardware I/O ports
32180 +#
32181 +# CONFIG_SERIO is not set
32182 +# CONFIG_GAMEPORT is not set
32183 +
32184 +#
32185 +# Character devices
32186 +#
32187 +# CONFIG_VT is not set
32188 +# CONFIG_SERIAL_NONSTANDARD is not set
32189 +
32190 +#
32191 +# Serial drivers
32192 +#
32193 +CONFIG_SERIAL_8250=y
32194 +CONFIG_SERIAL_8250_CONSOLE=y
32195 +CONFIG_SERIAL_8250_NR_UARTS=4
32196 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
32197 +# CONFIG_SERIAL_8250_EXTENDED is not set
32198 +
32199 +#
32200 +# Non-8250 serial port support
32201 +#
32202 +# CONFIG_SERIAL_UARTLITE is not set
32203 +CONFIG_SERIAL_CORE=y
32204 +CONFIG_SERIAL_CORE_CONSOLE=y
32205 +# CONFIG_SERIAL_OF_PLATFORM is not set
32206 +CONFIG_UNIX98_PTYS=y
32207 +CONFIG_LEGACY_PTYS=y
32208 +CONFIG_LEGACY_PTY_COUNT=256
32209 +# CONFIG_IPMI_HANDLER is not set
32210 +# CONFIG_HW_RANDOM is not set
32211 +# CONFIG_NVRAM is not set
32212 +CONFIG_GEN_RTC=y
32213 +# CONFIG_GEN_RTC_X is not set
32214 +# CONFIG_R3964 is not set
32215 +# CONFIG_RAW_DRIVER is not set
32216 +# CONFIG_TCG_TPM is not set
32217 +CONFIG_I2C=y
32218 +CONFIG_I2C_BOARDINFO=y
32219 +CONFIG_I2C_CHARDEV=y
32220 +
32221 +#
32222 +# I2C Algorithms
32223 +#
32224 +# CONFIG_I2C_ALGOBIT is not set
32225 +# CONFIG_I2C_ALGOPCF is not set
32226 +# CONFIG_I2C_ALGOPCA is not set
32227 +
32228 +#
32229 +# I2C Hardware Bus support
32230 +#
32231 +CONFIG_I2C_MPC=y
32232 +# CONFIG_I2C_OCORES is not set
32233 +# CONFIG_I2C_PARPORT_LIGHT is not set
32234 +# CONFIG_I2C_SIMTEC is not set
32235 +# CONFIG_I2C_TAOS_EVM is not set
32236 +# CONFIG_I2C_STUB is not set
32237 +
32238 +#
32239 +# Miscellaneous I2C Chip support
32240 +#
32241 +# CONFIG_DS1682 is not set
32242 +# CONFIG_SENSORS_EEPROM is not set
32243 +# CONFIG_SENSORS_PCF8574 is not set
32244 +# CONFIG_PCF8575 is not set
32245 +# CONFIG_SENSORS_PCF8591 is not set
32246 +# CONFIG_TPS65010 is not set
32247 +# CONFIG_SENSORS_MAX6875 is not set
32248 +# CONFIG_SENSORS_TSL2550 is not set
32249 +# CONFIG_I2C_DEBUG_CORE is not set
32250 +# CONFIG_I2C_DEBUG_ALGO is not set
32251 +# CONFIG_I2C_DEBUG_BUS is not set
32252 +# CONFIG_I2C_DEBUG_CHIP is not set
32253 +
32254 +#
32255 +# SPI support
32256 +#
32257 +# CONFIG_SPI is not set
32258 +# CONFIG_SPI_MASTER is not set
32259 +# CONFIG_W1 is not set
32260 +# CONFIG_POWER_SUPPLY is not set
32261 +CONFIG_HWMON=y
32262 +# CONFIG_HWMON_VID is not set
32263 +# CONFIG_SENSORS_AD7418 is not set
32264 +# CONFIG_SENSORS_ADM1021 is not set
32265 +# CONFIG_SENSORS_ADM1025 is not set
32266 +# CONFIG_SENSORS_ADM1026 is not set
32267 +# CONFIG_SENSORS_ADM1029 is not set
32268 +# CONFIG_SENSORS_ADM1031 is not set
32269 +# CONFIG_SENSORS_ADM9240 is not set
32270 +# CONFIG_SENSORS_ADT7470 is not set
32271 +# CONFIG_SENSORS_ADT7473 is not set
32272 +# CONFIG_SENSORS_ATXP1 is not set
32273 +# CONFIG_SENSORS_DS1621 is not set
32274 +# CONFIG_SENSORS_F71805F is not set
32275 +# CONFIG_SENSORS_F71882FG is not set
32276 +# CONFIG_SENSORS_F75375S is not set
32277 +# CONFIG_SENSORS_GL518SM is not set
32278 +# CONFIG_SENSORS_GL520SM is not set
32279 +# CONFIG_SENSORS_IT87 is not set
32280 +# CONFIG_SENSORS_LM63 is not set
32281 +# CONFIG_SENSORS_LM75 is not set
32282 +# CONFIG_SENSORS_LM77 is not set
32283 +# CONFIG_SENSORS_LM78 is not set
32284 +# CONFIG_SENSORS_LM80 is not set
32285 +# CONFIG_SENSORS_LM83 is not set
32286 +# CONFIG_SENSORS_LM85 is not set
32287 +# CONFIG_SENSORS_LM87 is not set
32288 +# CONFIG_SENSORS_LM90 is not set
32289 +# CONFIG_SENSORS_LM92 is not set
32290 +# CONFIG_SENSORS_LM93 is not set
32291 +# CONFIG_SENSORS_MAX1619 is not set
32292 +# CONFIG_SENSORS_MAX6650 is not set
32293 +# CONFIG_SENSORS_PC87360 is not set
32294 +# CONFIG_SENSORS_PC87427 is not set
32295 +# CONFIG_SENSORS_DME1737 is not set
32296 +# CONFIG_SENSORS_SMSC47M1 is not set
32297 +# CONFIG_SENSORS_SMSC47M192 is not set
32298 +# CONFIG_SENSORS_SMSC47B397 is not set
32299 +# CONFIG_SENSORS_ADS7828 is not set
32300 +# CONFIG_SENSORS_THMC50 is not set
32301 +# CONFIG_SENSORS_VT1211 is not set
32302 +# CONFIG_SENSORS_W83781D is not set
32303 +# CONFIG_SENSORS_W83791D is not set
32304 +# CONFIG_SENSORS_W83792D is not set
32305 +# CONFIG_SENSORS_W83793 is not set
32306 +# CONFIG_SENSORS_W83L785TS is not set
32307 +# CONFIG_SENSORS_W83L786NG is not set
32308 +# CONFIG_SENSORS_W83627HF is not set
32309 +# CONFIG_SENSORS_W83627EHF is not set
32310 +# CONFIG_HWMON_DEBUG_CHIP is not set
32311 +# CONFIG_THERMAL is not set
32312 +CONFIG_WATCHDOG=y
32313 +# CONFIG_WATCHDOG_NOWAYOUT is not set
32314 +
32315 +#
32316 +# Watchdog Device Drivers
32317 +#
32318 +# CONFIG_SOFT_WATCHDOG is not set
32319 +CONFIG_83xx_WDT=y
32320 +
32321 +#
32322 +# Sonics Silicon Backplane
32323 +#
32324 +CONFIG_SSB_POSSIBLE=y
32325 +# CONFIG_SSB is not set
32326 +
32327 +#
32328 +# Multifunction device drivers
32329 +#
32330 +# CONFIG_MFD_SM501 is not set
32331 +
32332 +#
32333 +# Multimedia devices
32334 +#
32335 +# CONFIG_VIDEO_DEV is not set
32336 +# CONFIG_DVB_CORE is not set
32337 +CONFIG_DAB=y
32338 +
32339 +#
32340 +# Graphics support
32341 +#
32342 +# CONFIG_VGASTATE is not set
32343 +CONFIG_VIDEO_OUTPUT_CONTROL=m
32344 +# CONFIG_FB is not set
32345 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
32346 +
32347 +#
32348 +# Display device support
32349 +#
32350 +# CONFIG_DISPLAY_SUPPORT is not set
32351 +
32352 +#
32353 +# Sound
32354 +#
32355 +# CONFIG_SOUND is not set
32356 +CONFIG_HID_SUPPORT=y
32357 +CONFIG_HID=y
32358 +# CONFIG_HID_DEBUG is not set
32359 +# CONFIG_HIDRAW is not set
32360 +CONFIG_USB_SUPPORT=y
32361 +CONFIG_USB_ARCH_HAS_HCD=y
32362 +# CONFIG_USB_ARCH_HAS_OHCI is not set
32363 +CONFIG_USB_ARCH_HAS_EHCI=y
32364 +CONFIG_USB=y
32365 +# CONFIG_USB_DEBUG is not set
32366 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
32367 +
32368 +#
32369 +# Miscellaneous USB options
32370 +#
32371 +# CONFIG_USB_DEVICEFS is not set
32372 +CONFIG_USB_DEVICE_CLASS=y
32373 +# CONFIG_USB_DYNAMIC_MINORS is not set
32374 +# CONFIG_USB_OTG is not set
32375 +
32376 +#
32377 +# USB Host Controller Drivers
32378 +#
32379 +CONFIG_USB_EHCI_HCD=y
32380 +CONFIG_USB_EHCI_ROOT_HUB_TT=y
32381 +# CONFIG_USB_EHCI_TT_NEWSCHED is not set
32382 +CONFIG_USB_EHCI_FSL=y
32383 +CONFIG_USB_EHCI_HCD_PPC_OF=y
32384 +# CONFIG_USB_ISP116X_HCD is not set
32385 +# CONFIG_USB_SL811_HCD is not set
32386 +# CONFIG_USB_R8A66597_HCD is not set
32387 +
32388 +#
32389 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
32390 +#
32391 +# CONFIG_USB_GADGET is not set
32392 +# CONFIG_MMC is not set
32393 +# CONFIG_MEMSTICK is not set
32394 +# CONFIG_NEW_LEDS is not set
32395 +# CONFIG_EDAC is not set
32396 +# CONFIG_RTC_CLASS is not set
32397 +# CONFIG_DMADEVICES is not set
32398 +
32399 +#
32400 +# Userspace I/O
32401 +#
32402 +# CONFIG_UIO is not set
32403 +
32404 +#
32405 +# File systems
32406 +#
32407 +CONFIG_EXT2_FS=y
32408 +# CONFIG_EXT2_FS_XATTR is not set
32409 +# CONFIG_EXT2_FS_XIP is not set
32410 +CONFIG_EXT3_FS=y
32411 +CONFIG_EXT3_FS_XATTR=y
32412 +# CONFIG_EXT3_FS_POSIX_ACL is not set
32413 +# CONFIG_EXT3_FS_SECURITY is not set
32414 +# CONFIG_EXT4DEV_FS is not set
32415 +CONFIG_JBD=y
32416 +CONFIG_FS_MBCACHE=y
32417 +# CONFIG_REISERFS_FS is not set
32418 +# CONFIG_JFS_FS is not set
32419 +# CONFIG_FS_POSIX_ACL is not set
32420 +# CONFIG_XFS_FS is not set
32421 +# CONFIG_GFS2_FS is not set
32422 +# CONFIG_OCFS2_FS is not set
32423 +CONFIG_DNOTIFY=y
32424 +CONFIG_INOTIFY=y
32425 +CONFIG_INOTIFY_USER=y
32426 +# CONFIG_QUOTA is not set
32427 +# CONFIG_AUTOFS_FS is not set
32428 +# CONFIG_AUTOFS4_FS is not set
32429 +# CONFIG_FUSE_FS is not set
32430 +
32431 +#
32432 +# CD-ROM/DVD Filesystems
32433 +#
32434 +# CONFIG_ISO9660_FS is not set
32435 +# CONFIG_UDF_FS is not set
32436 +
32437 +#
32438 +# DOS/FAT/NT Filesystems
32439 +#
32440 +# CONFIG_MSDOS_FS is not set
32441 +# CONFIG_VFAT_FS is not set
32442 +# CONFIG_NTFS_FS is not set
32443 +
32444 +#
32445 +# Pseudo filesystems
32446 +#
32447 +CONFIG_PROC_FS=y
32448 +CONFIG_PROC_KCORE=y
32449 +CONFIG_PROC_SYSCTL=y
32450 +CONFIG_SYSFS=y
32451 +CONFIG_TMPFS=y
32452 +# CONFIG_TMPFS_POSIX_ACL is not set
32453 +# CONFIG_HUGETLB_PAGE is not set
32454 +# CONFIG_CONFIGFS_FS is not set
32455 +
32456 +#
32457 +# Miscellaneous filesystems
32458 +#
32459 +# CONFIG_ADFS_FS is not set
32460 +# CONFIG_AFFS_FS is not set
32461 +# CONFIG_HFS_FS is not set
32462 +# CONFIG_HFSPLUS_FS is not set
32463 +# CONFIG_BEFS_FS is not set
32464 +# CONFIG_BFS_FS is not set
32465 +# CONFIG_EFS_FS is not set
32466 +# CONFIG_CRAMFS is not set
32467 +# CONFIG_VXFS_FS is not set
32468 +# CONFIG_MINIX_FS is not set
32469 +# CONFIG_HPFS_FS is not set
32470 +# CONFIG_QNX4FS_FS is not set
32471 +# CONFIG_ROMFS_FS is not set
32472 +# CONFIG_SYSV_FS is not set
32473 +# CONFIG_UFS_FS is not set
32474 +CONFIG_NETWORK_FILESYSTEMS=y
32475 +CONFIG_NFS_FS=y
32476 +CONFIG_NFS_V3=y
32477 +# CONFIG_NFS_V3_ACL is not set
32478 +CONFIG_NFS_V4=y
32479 +# CONFIG_NFS_DIRECTIO is not set
32480 +# CONFIG_NFSD is not set
32481 +CONFIG_ROOT_NFS=y
32482 +CONFIG_LOCKD=y
32483 +CONFIG_LOCKD_V4=y
32484 +CONFIG_NFS_COMMON=y
32485 +CONFIG_SUNRPC=y
32486 +CONFIG_SUNRPC_GSS=y
32487 +# CONFIG_SUNRPC_BIND34 is not set
32488 +CONFIG_RPCSEC_GSS_KRB5=y
32489 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
32490 +# CONFIG_SMB_FS is not set
32491 +# CONFIG_CIFS is not set
32492 +# CONFIG_NCP_FS is not set
32493 +# CONFIG_CODA_FS is not set
32494 +# CONFIG_AFS_FS is not set
32495 +
32496 +#
32497 +# Partition Types
32498 +#
32499 +CONFIG_PARTITION_ADVANCED=y
32500 +# CONFIG_ACORN_PARTITION is not set
32501 +# CONFIG_OSF_PARTITION is not set
32502 +# CONFIG_AMIGA_PARTITION is not set
32503 +# CONFIG_ATARI_PARTITION is not set
32504 +# CONFIG_MAC_PARTITION is not set
32505 +CONFIG_MSDOS_PARTITION=y
32506 +# CONFIG_BSD_DISKLABEL is not set
32507 +# CONFIG_MINIX_SUBPARTITION is not set
32508 +# CONFIG_SOLARIS_X86_PARTITION is not set
32509 +# CONFIG_UNIXWARE_DISKLABEL is not set
32510 +# CONFIG_LDM_PARTITION is not set
32511 +# CONFIG_SGI_PARTITION is not set
32512 +# CONFIG_ULTRIX_PARTITION is not set
32513 +# CONFIG_SUN_PARTITION is not set
32514 +# CONFIG_KARMA_PARTITION is not set
32515 +# CONFIG_EFI_PARTITION is not set
32516 +# CONFIG_SYSV68_PARTITION is not set
32517 +# CONFIG_NLS is not set
32518 +# CONFIG_DLM is not set
32519 +
32520 +#
32521 +# Library routines
32522 +#
32523 +CONFIG_BITREVERSE=y
32524 +# CONFIG_CRC_CCITT is not set
32525 +# CONFIG_CRC16 is not set
32526 +# CONFIG_CRC_ITU_T is not set
32527 +CONFIG_CRC32=y
32528 +# CONFIG_CRC7 is not set
32529 +# CONFIG_LIBCRC32C is not set
32530 +CONFIG_PLIST=y
32531 +CONFIG_HAS_IOMEM=y
32532 +CONFIG_HAS_IOPORT=y
32533 +CONFIG_HAS_DMA=y
32534 +
32535 +#
32536 +# Kernel hacking
32537 +#
32538 +# CONFIG_PRINTK_TIME is not set
32539 +CONFIG_ENABLE_WARN_DEPRECATED=y
32540 +# CONFIG_ENABLE_MUST_CHECK is not set
32541 +# CONFIG_MAGIC_SYSRQ is not set
32542 +# CONFIG_UNUSED_SYMBOLS is not set
32543 +# CONFIG_DEBUG_FS is not set
32544 +# CONFIG_HEADERS_CHECK is not set
32545 +# CONFIG_DEBUG_KERNEL is not set
32546 +# CONFIG_DEBUG_BUGVERBOSE is not set
32547 +# CONFIG_SAMPLES is not set
32548 +# CONFIG_PPC_EARLY_DEBUG is not set
32549 +
32550 +#
32551 +# Security options
32552 +#
32553 +# CONFIG_KEYS is not set
32554 +# CONFIG_SECURITY is not set
32555 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
32556 +CONFIG_XOR_BLOCKS=y
32557 +CONFIG_ASYNC_CORE=y
32558 +CONFIG_ASYNC_MEMCPY=y
32559 +CONFIG_ASYNC_XOR=y
32560 +CONFIG_CRYPTO=y
32561 +CONFIG_CRYPTO_ALGAPI=y
32562 +CONFIG_CRYPTO_BLKCIPHER=y
32563 +# CONFIG_CRYPTO_SEQIV is not set
32564 +CONFIG_CRYPTO_MANAGER=y
32565 +# CONFIG_CRYPTO_HMAC is not set
32566 +# CONFIG_CRYPTO_XCBC is not set
32567 +# CONFIG_CRYPTO_NULL is not set
32568 +# CONFIG_CRYPTO_MD4 is not set
32569 +CONFIG_CRYPTO_MD5=y
32570 +# CONFIG_CRYPTO_SHA1 is not set
32571 +# CONFIG_CRYPTO_SHA256 is not set
32572 +# CONFIG_CRYPTO_SHA512 is not set
32573 +# CONFIG_CRYPTO_WP512 is not set
32574 +# CONFIG_CRYPTO_TGR192 is not set
32575 +# CONFIG_CRYPTO_GF128MUL is not set
32576 +CONFIG_CRYPTO_ECB=m
32577 +CONFIG_CRYPTO_CBC=y
32578 +CONFIG_CRYPTO_PCBC=m
32579 +# CONFIG_CRYPTO_LRW is not set
32580 +# CONFIG_CRYPTO_XTS is not set
32581 +# CONFIG_CRYPTO_CTR is not set
32582 +# CONFIG_CRYPTO_GCM is not set
32583 +# CONFIG_CRYPTO_CCM is not set
32584 +# CONFIG_CRYPTO_CRYPTD is not set
32585 +CONFIG_CRYPTO_DES=y
32586 +# CONFIG_CRYPTO_FCRYPT is not set
32587 +# CONFIG_CRYPTO_BLOWFISH is not set
32588 +# CONFIG_CRYPTO_TWOFISH is not set
32589 +# CONFIG_CRYPTO_SERPENT is not set
32590 +# CONFIG_CRYPTO_AES is not set
32591 +# CONFIG_CRYPTO_CAST5 is not set
32592 +# CONFIG_CRYPTO_CAST6 is not set
32593 +# CONFIG_CRYPTO_TEA is not set
32594 +# CONFIG_CRYPTO_ARC4 is not set
32595 +# CONFIG_CRYPTO_KHAZAD is not set
32596 +# CONFIG_CRYPTO_ANUBIS is not set
32597 +# CONFIG_CRYPTO_SEED is not set
32598 +# CONFIG_CRYPTO_SALSA20 is not set
32599 +# CONFIG_CRYPTO_DEFLATE is not set
32600 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
32601 +# CONFIG_CRYPTO_CRC32C is not set
32602 +# CONFIG_CRYPTO_CAMELLIA is not set
32603 +# CONFIG_CRYPTO_TEST is not set
32604 +# CONFIG_CRYPTO_AUTHENC is not set
32605 +# CONFIG_CRYPTO_LZO is not set
32606 +CONFIG_CRYPTO_HW=y
32607 +# CONFIG_PPC_CLOCK is not set
32608 Index: linux-2.6.25.4/arch/powerpc/configs/83xx/sbc834x_defconfig
32609 ===================================================================
32610 --- /dev/null
32611 +++ linux-2.6.25.4/arch/powerpc/configs/83xx/sbc834x_defconfig
32612 @@ -0,0 +1,828 @@
32613 +#
32614 +# Automatically generated make config: don't edit
32615 +# Linux kernel version: 2.6.25-rc6
32616 +# Mon Mar 24 08:48:38 2008
32617 +#
32618 +# CONFIG_PPC64 is not set
32619 +
32620 +#
32621 +# Processor support
32622 +#
32623 +CONFIG_6xx=y
32624 +# CONFIG_PPC_85xx is not set
32625 +# CONFIG_PPC_8xx is not set
32626 +# CONFIG_40x is not set
32627 +# CONFIG_44x is not set
32628 +# CONFIG_E200 is not set
32629 +CONFIG_PPC_FPU=y
32630 +# CONFIG_FSL_EMB_PERFMON is not set
32631 +CONFIG_PPC_STD_MMU=y
32632 +CONFIG_PPC_STD_MMU_32=y
32633 +# CONFIG_PPC_MM_SLICES is not set
32634 +# CONFIG_SMP is not set
32635 +CONFIG_PPC32=y
32636 +CONFIG_WORD_SIZE=32
32637 +CONFIG_PPC_MERGE=y
32638 +CONFIG_MMU=y
32639 +CONFIG_GENERIC_CMOS_UPDATE=y
32640 +CONFIG_GENERIC_TIME=y
32641 +CONFIG_GENERIC_TIME_VSYSCALL=y
32642 +CONFIG_GENERIC_CLOCKEVENTS=y
32643 +CONFIG_GENERIC_HARDIRQS=y
32644 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
32645 +CONFIG_IRQ_PER_CPU=y
32646 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
32647 +CONFIG_ARCH_HAS_ILOG2_U32=y
32648 +CONFIG_GENERIC_HWEIGHT=y
32649 +CONFIG_GENERIC_CALIBRATE_DELAY=y
32650 +CONFIG_GENERIC_FIND_NEXT_BIT=y
32651 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
32652 +CONFIG_PPC=y
32653 +CONFIG_EARLY_PRINTK=y
32654 +CONFIG_GENERIC_NVRAM=y
32655 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
32656 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
32657 +CONFIG_PPC_OF=y
32658 +CONFIG_OF=y
32659 +CONFIG_PPC_UDBG_16550=y
32660 +# CONFIG_GENERIC_TBSYNC is not set
32661 +CONFIG_AUDIT_ARCH=y
32662 +CONFIG_GENERIC_BUG=y
32663 +CONFIG_DEFAULT_UIMAGE=y
32664 +# CONFIG_PPC_DCR_NATIVE is not set
32665 +# CONFIG_PPC_DCR_MMIO is not set
32666 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
32667 +
32668 +#
32669 +# General setup
32670 +#
32671 +CONFIG_EXPERIMENTAL=y
32672 +CONFIG_BROKEN_ON_SMP=y
32673 +CONFIG_INIT_ENV_ARG_LIMIT=32
32674 +CONFIG_LOCALVERSION=""
32675 +CONFIG_LOCALVERSION_AUTO=y
32676 +CONFIG_SWAP=y
32677 +CONFIG_SYSVIPC=y
32678 +CONFIG_SYSVIPC_SYSCTL=y
32679 +# CONFIG_POSIX_MQUEUE is not set
32680 +# CONFIG_BSD_PROCESS_ACCT is not set
32681 +# CONFIG_TASKSTATS is not set
32682 +# CONFIG_AUDIT is not set
32683 +# CONFIG_IKCONFIG is not set
32684 +CONFIG_LOG_BUF_SHIFT=14
32685 +# CONFIG_CGROUPS is not set
32686 +CONFIG_GROUP_SCHED=y
32687 +CONFIG_FAIR_GROUP_SCHED=y
32688 +# CONFIG_RT_GROUP_SCHED is not set
32689 +CONFIG_USER_SCHED=y
32690 +# CONFIG_CGROUP_SCHED is not set
32691 +CONFIG_SYSFS_DEPRECATED=y
32692 +CONFIG_SYSFS_DEPRECATED_V2=y
32693 +# CONFIG_RELAY is not set
32694 +# CONFIG_NAMESPACES is not set
32695 +CONFIG_BLK_DEV_INITRD=y
32696 +CONFIG_INITRAMFS_SOURCE=""
32697 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
32698 +CONFIG_SYSCTL=y
32699 +CONFIG_EMBEDDED=y
32700 +CONFIG_SYSCTL_SYSCALL=y
32701 +# CONFIG_KALLSYMS is not set
32702 +CONFIG_HOTPLUG=y
32703 +CONFIG_PRINTK=y
32704 +CONFIG_BUG=y
32705 +CONFIG_ELF_CORE=y
32706 +CONFIG_COMPAT_BRK=y
32707 +CONFIG_BASE_FULL=y
32708 +CONFIG_FUTEX=y
32709 +CONFIG_ANON_INODES=y
32710 +# CONFIG_EPOLL is not set
32711 +CONFIG_SIGNALFD=y
32712 +CONFIG_TIMERFD=y
32713 +CONFIG_EVENTFD=y
32714 +CONFIG_SHMEM=y
32715 +CONFIG_VM_EVENT_COUNTERS=y
32716 +CONFIG_SLAB=y
32717 +# CONFIG_SLUB is not set
32718 +# CONFIG_SLOB is not set
32719 +# CONFIG_PROFILING is not set
32720 +# CONFIG_MARKERS is not set
32721 +CONFIG_HAVE_OPROFILE=y
32722 +CONFIG_HAVE_KPROBES=y
32723 +CONFIG_HAVE_KRETPROBES=y
32724 +CONFIG_PROC_PAGE_MONITOR=y
32725 +CONFIG_SLABINFO=y
32726 +CONFIG_RT_MUTEXES=y
32727 +# CONFIG_TINY_SHMEM is not set
32728 +CONFIG_BASE_SMALL=0
32729 +CONFIG_MODULES=y
32730 +CONFIG_MODULE_UNLOAD=y
32731 +# CONFIG_MODULE_FORCE_UNLOAD is not set
32732 +# CONFIG_MODVERSIONS is not set
32733 +# CONFIG_MODULE_SRCVERSION_ALL is not set
32734 +# CONFIG_KMOD is not set
32735 +CONFIG_BLOCK=y
32736 +# CONFIG_LBD is not set
32737 +# CONFIG_BLK_DEV_IO_TRACE is not set
32738 +# CONFIG_LSF is not set
32739 +# CONFIG_BLK_DEV_BSG is not set
32740 +
32741 +#
32742 +# IO Schedulers
32743 +#
32744 +CONFIG_IOSCHED_NOOP=y
32745 +CONFIG_IOSCHED_AS=y
32746 +CONFIG_IOSCHED_DEADLINE=y
32747 +CONFIG_IOSCHED_CFQ=y
32748 +CONFIG_DEFAULT_AS=y
32749 +# CONFIG_DEFAULT_DEADLINE is not set
32750 +# CONFIG_DEFAULT_CFQ is not set
32751 +# CONFIG_DEFAULT_NOOP is not set
32752 +CONFIG_DEFAULT_IOSCHED="anticipatory"
32753 +CONFIG_CLASSIC_RCU=y
32754 +
32755 +#
32756 +# Platform support
32757 +#
32758 +# CONFIG_PPC_MULTIPLATFORM is not set
32759 +# CONFIG_PPC_82xx is not set
32760 +CONFIG_PPC_83xx=y
32761 +# CONFIG_PPC_86xx is not set
32762 +# CONFIG_PPC_MPC512x is not set
32763 +# CONFIG_PPC_MPC5121 is not set
32764 +# CONFIG_PPC_CELL is not set
32765 +# CONFIG_PPC_CELL_NATIVE is not set
32766 +# CONFIG_PQ2ADS is not set
32767 +CONFIG_MPC83xx=y
32768 +# CONFIG_MPC831x_RDB is not set
32769 +# CONFIG_MPC832x_MDS is not set
32770 +# CONFIG_MPC832x_RDB is not set
32771 +# CONFIG_MPC834x_MDS is not set
32772 +# CONFIG_MPC834x_ITX is not set
32773 +# CONFIG_MPC836x_MDS is not set
32774 +# CONFIG_MPC837x_MDS is not set
32775 +# CONFIG_MPC837x_RDB is not set
32776 +CONFIG_SBC834x=y
32777 +CONFIG_PPC_MPC834x=y
32778 +CONFIG_IPIC=y
32779 +# CONFIG_MPIC is not set
32780 +# CONFIG_MPIC_WEIRD is not set
32781 +# CONFIG_PPC_I8259 is not set
32782 +# CONFIG_PPC_RTAS is not set
32783 +# CONFIG_MMIO_NVRAM is not set
32784 +# CONFIG_PPC_MPC106 is not set
32785 +# CONFIG_PPC_970_NAP is not set
32786 +# CONFIG_PPC_INDIRECT_IO is not set
32787 +# CONFIG_GENERIC_IOMAP is not set
32788 +# CONFIG_CPU_FREQ is not set
32789 +# CONFIG_FSL_ULI1575 is not set
32790 +
32791 +#
32792 +# Kernel options
32793 +#
32794 +# CONFIG_HIGHMEM is not set
32795 +# CONFIG_TICK_ONESHOT is not set
32796 +# CONFIG_NO_HZ is not set
32797 +# CONFIG_HIGH_RES_TIMERS is not set
32798 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
32799 +# CONFIG_HZ_100 is not set
32800 +CONFIG_HZ_250=y
32801 +# CONFIG_HZ_300 is not set
32802 +# CONFIG_HZ_1000 is not set
32803 +CONFIG_HZ=250
32804 +# CONFIG_SCHED_HRTICK is not set
32805 +CONFIG_PREEMPT_NONE=y
32806 +# CONFIG_PREEMPT_VOLUNTARY is not set
32807 +# CONFIG_PREEMPT is not set
32808 +CONFIG_BINFMT_ELF=y
32809 +# CONFIG_BINFMT_MISC is not set
32810 +# CONFIG_IOMMU_HELPER is not set
32811 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
32812 +CONFIG_ARCH_HAS_WALK_MEMORY=y
32813 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
32814 +CONFIG_ARCH_FLATMEM_ENABLE=y
32815 +CONFIG_ARCH_POPULATES_NODE_MAP=y
32816 +CONFIG_SELECT_MEMORY_MODEL=y
32817 +CONFIG_FLATMEM_MANUAL=y
32818 +# CONFIG_DISCONTIGMEM_MANUAL is not set
32819 +# CONFIG_SPARSEMEM_MANUAL is not set
32820 +CONFIG_FLATMEM=y
32821 +CONFIG_FLAT_NODE_MEM_MAP=y
32822 +# CONFIG_SPARSEMEM_STATIC is not set
32823 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
32824 +CONFIG_SPLIT_PTLOCK_CPUS=4
32825 +# CONFIG_RESOURCES_64BIT is not set
32826 +CONFIG_ZONE_DMA_FLAG=1
32827 +CONFIG_BOUNCE=y
32828 +CONFIG_VIRT_TO_BUS=y
32829 +CONFIG_PROC_DEVICETREE=y
32830 +# CONFIG_CMDLINE_BOOL is not set
32831 +# CONFIG_PM is not set
32832 +CONFIG_SECCOMP=y
32833 +CONFIG_ISA_DMA_API=y
32834 +
32835 +#
32836 +# Bus options
32837 +#
32838 +CONFIG_ZONE_DMA=y
32839 +CONFIG_GENERIC_ISA_DMA=y
32840 +CONFIG_PPC_INDIRECT_PCI=y
32841 +CONFIG_FSL_SOC=y
32842 +# CONFIG_PCI is not set
32843 +# CONFIG_PCI_DOMAINS is not set
32844 +# CONFIG_PCI_SYSCALL is not set
32845 +# CONFIG_ARCH_SUPPORTS_MSI is not set
32846 +# CONFIG_PCCARD is not set
32847 +
32848 +#
32849 +# Advanced setup
32850 +#
32851 +# CONFIG_ADVANCED_OPTIONS is not set
32852 +
32853 +#
32854 +# Default settings for advanced configuration options are used
32855 +#
32856 +CONFIG_HIGHMEM_START=0xfe000000
32857 +CONFIG_LOWMEM_SIZE=0x30000000
32858 +CONFIG_KERNEL_START=0xc0000000
32859 +CONFIG_TASK_SIZE=0xc0000000
32860 +CONFIG_BOOT_LOAD=0x00800000
32861 +
32862 +#
32863 +# Networking
32864 +#
32865 +CONFIG_NET=y
32866 +
32867 +#
32868 +# Networking options
32869 +#
32870 +CONFIG_PACKET=y
32871 +# CONFIG_PACKET_MMAP is not set
32872 +CONFIG_UNIX=y
32873 +CONFIG_XFRM=y
32874 +CONFIG_XFRM_USER=m
32875 +# CONFIG_XFRM_SUB_POLICY is not set
32876 +# CONFIG_XFRM_MIGRATE is not set
32877 +# CONFIG_XFRM_STATISTICS is not set
32878 +# CONFIG_NET_KEY is not set
32879 +CONFIG_INET=y
32880 +CONFIG_IP_MULTICAST=y
32881 +# CONFIG_IP_ADVANCED_ROUTER is not set
32882 +CONFIG_IP_FIB_HASH=y
32883 +CONFIG_IP_PNP=y
32884 +CONFIG_IP_PNP_DHCP=y
32885 +CONFIG_IP_PNP_BOOTP=y
32886 +# CONFIG_IP_PNP_RARP is not set
32887 +# CONFIG_NET_IPIP is not set
32888 +# CONFIG_NET_IPGRE is not set
32889 +# CONFIG_IP_MROUTE is not set
32890 +# CONFIG_ARPD is not set
32891 +CONFIG_SYN_COOKIES=y
32892 +# CONFIG_INET_AH is not set
32893 +# CONFIG_INET_ESP is not set
32894 +# CONFIG_INET_IPCOMP is not set
32895 +# CONFIG_INET_XFRM_TUNNEL is not set
32896 +# CONFIG_INET_TUNNEL is not set
32897 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
32898 +CONFIG_INET_XFRM_MODE_TUNNEL=y
32899 +CONFIG_INET_XFRM_MODE_BEET=y
32900 +# CONFIG_INET_LRO is not set
32901 +CONFIG_INET_DIAG=y
32902 +CONFIG_INET_TCP_DIAG=y
32903 +# CONFIG_TCP_CONG_ADVANCED is not set
32904 +CONFIG_TCP_CONG_CUBIC=y
32905 +CONFIG_DEFAULT_TCP_CONG="cubic"
32906 +# CONFIG_TCP_MD5SIG is not set
32907 +# CONFIG_IPV6 is not set
32908 +# CONFIG_INET6_XFRM_TUNNEL is not set
32909 +# CONFIG_INET6_TUNNEL is not set
32910 +# CONFIG_NETWORK_SECMARK is not set
32911 +# CONFIG_NETFILTER is not set
32912 +# CONFIG_IP_DCCP is not set
32913 +# CONFIG_IP_SCTP is not set
32914 +# CONFIG_TIPC is not set
32915 +# CONFIG_ATM is not set
32916 +# CONFIG_BRIDGE is not set
32917 +# CONFIG_VLAN_8021Q is not set
32918 +# CONFIG_DECNET is not set
32919 +# CONFIG_LLC2 is not set
32920 +# CONFIG_IPX is not set
32921 +# CONFIG_ATALK is not set
32922 +# CONFIG_X25 is not set
32923 +# CONFIG_LAPB is not set
32924 +# CONFIG_ECONET is not set
32925 +# CONFIG_WAN_ROUTER is not set
32926 +# CONFIG_NET_SCHED is not set
32927 +
32928 +#
32929 +# Network testing
32930 +#
32931 +# CONFIG_NET_PKTGEN is not set
32932 +# CONFIG_HAMRADIO is not set
32933 +# CONFIG_CAN is not set
32934 +# CONFIG_IRDA is not set
32935 +# CONFIG_BT is not set
32936 +# CONFIG_AF_RXRPC is not set
32937 +
32938 +#
32939 +# Wireless
32940 +#
32941 +# CONFIG_CFG80211 is not set
32942 +# CONFIG_WIRELESS_EXT is not set
32943 +# CONFIG_MAC80211 is not set
32944 +# CONFIG_IEEE80211 is not set
32945 +# CONFIG_RFKILL is not set
32946 +# CONFIG_NET_9P is not set
32947 +
32948 +#
32949 +# Device Drivers
32950 +#
32951 +
32952 +#
32953 +# Generic Driver Options
32954 +#
32955 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
32956 +CONFIG_STANDALONE=y
32957 +CONFIG_PREVENT_FIRMWARE_BUILD=y
32958 +# CONFIG_FW_LOADER is not set
32959 +# CONFIG_SYS_HYPERVISOR is not set
32960 +# CONFIG_CONNECTOR is not set
32961 +# CONFIG_MTD is not set
32962 +CONFIG_OF_DEVICE=y
32963 +# CONFIG_PARPORT is not set
32964 +CONFIG_BLK_DEV=y
32965 +# CONFIG_BLK_DEV_FD is not set
32966 +# CONFIG_BLK_DEV_COW_COMMON is not set
32967 +CONFIG_BLK_DEV_LOOP=y
32968 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
32969 +# CONFIG_BLK_DEV_NBD is not set
32970 +CONFIG_BLK_DEV_RAM=y
32971 +CONFIG_BLK_DEV_RAM_COUNT=16
32972 +CONFIG_BLK_DEV_RAM_SIZE=32768
32973 +# CONFIG_BLK_DEV_XIP is not set
32974 +# CONFIG_CDROM_PKTCDVD is not set
32975 +# CONFIG_ATA_OVER_ETH is not set
32976 +CONFIG_MISC_DEVICES=y
32977 +# CONFIG_EEPROM_93CX6 is not set
32978 +# CONFIG_ENCLOSURE_SERVICES is not set
32979 +CONFIG_HAVE_IDE=y
32980 +# CONFIG_IDE is not set
32981 +
32982 +#
32983 +# SCSI device support
32984 +#
32985 +# CONFIG_RAID_ATTRS is not set
32986 +# CONFIG_SCSI is not set
32987 +# CONFIG_SCSI_DMA is not set
32988 +# CONFIG_SCSI_NETLINK is not set
32989 +# CONFIG_ATA is not set
32990 +# CONFIG_MD is not set
32991 +# CONFIG_MACINTOSH_DRIVERS is not set
32992 +CONFIG_NETDEVICES=y
32993 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
32994 +# CONFIG_DUMMY is not set
32995 +# CONFIG_BONDING is not set
32996 +# CONFIG_MACVLAN is not set
32997 +# CONFIG_EQUALIZER is not set
32998 +# CONFIG_TUN is not set
32999 +# CONFIG_VETH is not set
33000 +CONFIG_PHYLIB=y
33001 +
33002 +#
33003 +# MII PHY device drivers
33004 +#
33005 +# CONFIG_MARVELL_PHY is not set
33006 +# CONFIG_DAVICOM_PHY is not set
33007 +# CONFIG_QSEMI_PHY is not set
33008 +# CONFIG_LXT_PHY is not set
33009 +# CONFIG_CICADA_PHY is not set
33010 +# CONFIG_VITESSE_PHY is not set
33011 +# CONFIG_SMSC_PHY is not set
33012 +CONFIG_BROADCOM_PHY=y
33013 +# CONFIG_ICPLUS_PHY is not set
33014 +# CONFIG_REALTEK_PHY is not set
33015 +# CONFIG_FIXED_PHY is not set
33016 +# CONFIG_MDIO_BITBANG is not set
33017 +CONFIG_NET_ETHERNET=y
33018 +CONFIG_MII=y
33019 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
33020 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
33021 +# CONFIG_IBM_NEW_EMAC_TAH is not set
33022 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
33023 +# CONFIG_B44 is not set
33024 +CONFIG_NETDEV_1000=y
33025 +# CONFIG_E1000E_ENABLED is not set
33026 +CONFIG_GIANFAR=y
33027 +# CONFIG_GFAR_NAPI is not set
33028 +# CONFIG_NETDEV_10000 is not set
33029 +
33030 +#
33031 +# Wireless LAN
33032 +#
33033 +# CONFIG_WLAN_PRE80211 is not set
33034 +# CONFIG_WLAN_80211 is not set
33035 +# CONFIG_WAN is not set
33036 +# CONFIG_PPP is not set
33037 +# CONFIG_SLIP is not set
33038 +# CONFIG_NETCONSOLE is not set
33039 +# CONFIG_NETPOLL is not set
33040 +# CONFIG_NET_POLL_CONTROLLER is not set
33041 +# CONFIG_ISDN is not set
33042 +# CONFIG_PHONE is not set
33043 +
33044 +#
33045 +# Input device support
33046 +#
33047 +CONFIG_INPUT=y
33048 +# CONFIG_INPUT_FF_MEMLESS is not set
33049 +# CONFIG_INPUT_POLLDEV is not set
33050 +
33051 +#
33052 +# Userland interfaces
33053 +#
33054 +# CONFIG_INPUT_MOUSEDEV is not set
33055 +# CONFIG_INPUT_JOYDEV is not set
33056 +# CONFIG_INPUT_EVDEV is not set
33057 +# CONFIG_INPUT_EVBUG is not set
33058 +
33059 +#
33060 +# Input Device Drivers
33061 +#
33062 +# CONFIG_INPUT_KEYBOARD is not set
33063 +# CONFIG_INPUT_MOUSE is not set
33064 +# CONFIG_INPUT_JOYSTICK is not set
33065 +# CONFIG_INPUT_TABLET is not set
33066 +# CONFIG_INPUT_TOUCHSCREEN is not set
33067 +# CONFIG_INPUT_MISC is not set
33068 +
33069 +#
33070 +# Hardware I/O ports
33071 +#
33072 +# CONFIG_SERIO is not set
33073 +# CONFIG_GAMEPORT is not set
33074 +
33075 +#
33076 +# Character devices
33077 +#
33078 +# CONFIG_VT is not set
33079 +# CONFIG_SERIAL_NONSTANDARD is not set
33080 +
33081 +#
33082 +# Serial drivers
33083 +#
33084 +CONFIG_SERIAL_8250=y
33085 +CONFIG_SERIAL_8250_CONSOLE=y
33086 +CONFIG_SERIAL_8250_NR_UARTS=4
33087 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
33088 +# CONFIG_SERIAL_8250_EXTENDED is not set
33089 +
33090 +#
33091 +# Non-8250 serial port support
33092 +#
33093 +# CONFIG_SERIAL_UARTLITE is not set
33094 +CONFIG_SERIAL_CORE=y
33095 +CONFIG_SERIAL_CORE_CONSOLE=y
33096 +# CONFIG_SERIAL_OF_PLATFORM is not set
33097 +CONFIG_UNIX98_PTYS=y
33098 +CONFIG_LEGACY_PTYS=y
33099 +CONFIG_LEGACY_PTY_COUNT=256
33100 +# CONFIG_IPMI_HANDLER is not set
33101 +# CONFIG_HW_RANDOM is not set
33102 +# CONFIG_NVRAM is not set
33103 +CONFIG_GEN_RTC=y
33104 +# CONFIG_GEN_RTC_X is not set
33105 +# CONFIG_R3964 is not set
33106 +# CONFIG_RAW_DRIVER is not set
33107 +# CONFIG_TCG_TPM is not set
33108 +CONFIG_I2C=y
33109 +CONFIG_I2C_BOARDINFO=y
33110 +CONFIG_I2C_CHARDEV=y
33111 +
33112 +#
33113 +# I2C Algorithms
33114 +#
33115 +# CONFIG_I2C_ALGOBIT is not set
33116 +# CONFIG_I2C_ALGOPCF is not set
33117 +# CONFIG_I2C_ALGOPCA is not set
33118 +
33119 +#
33120 +# I2C Hardware Bus support
33121 +#
33122 +CONFIG_I2C_MPC=y
33123 +# CONFIG_I2C_OCORES is not set
33124 +# CONFIG_I2C_PARPORT_LIGHT is not set
33125 +# CONFIG_I2C_SIMTEC is not set
33126 +# CONFIG_I2C_TAOS_EVM is not set
33127 +# CONFIG_I2C_STUB is not set
33128 +
33129 +#
33130 +# Miscellaneous I2C Chip support
33131 +#
33132 +# CONFIG_DS1682 is not set
33133 +# CONFIG_SENSORS_EEPROM is not set
33134 +# CONFIG_SENSORS_PCF8574 is not set
33135 +# CONFIG_PCF8575 is not set
33136 +# CONFIG_SENSORS_PCF8591 is not set
33137 +# CONFIG_TPS65010 is not set
33138 +# CONFIG_SENSORS_MAX6875 is not set
33139 +# CONFIG_SENSORS_TSL2550 is not set
33140 +# CONFIG_I2C_DEBUG_CORE is not set
33141 +# CONFIG_I2C_DEBUG_ALGO is not set
33142 +# CONFIG_I2C_DEBUG_BUS is not set
33143 +# CONFIG_I2C_DEBUG_CHIP is not set
33144 +
33145 +#
33146 +# SPI support
33147 +#
33148 +# CONFIG_SPI is not set
33149 +# CONFIG_SPI_MASTER is not set
33150 +# CONFIG_W1 is not set
33151 +# CONFIG_POWER_SUPPLY is not set
33152 +CONFIG_HWMON=y
33153 +# CONFIG_HWMON_VID is not set
33154 +# CONFIG_SENSORS_AD7418 is not set
33155 +# CONFIG_SENSORS_ADM1021 is not set
33156 +# CONFIG_SENSORS_ADM1025 is not set
33157 +# CONFIG_SENSORS_ADM1026 is not set
33158 +# CONFIG_SENSORS_ADM1029 is not set
33159 +# CONFIG_SENSORS_ADM1031 is not set
33160 +# CONFIG_SENSORS_ADM9240 is not set
33161 +# CONFIG_SENSORS_ADT7470 is not set
33162 +# CONFIG_SENSORS_ADT7473 is not set
33163 +# CONFIG_SENSORS_ATXP1 is not set
33164 +# CONFIG_SENSORS_DS1621 is not set
33165 +# CONFIG_SENSORS_F71805F is not set
33166 +# CONFIG_SENSORS_F71882FG is not set
33167 +# CONFIG_SENSORS_F75375S is not set
33168 +# CONFIG_SENSORS_GL518SM is not set
33169 +# CONFIG_SENSORS_GL520SM is not set
33170 +# CONFIG_SENSORS_IT87 is not set
33171 +# CONFIG_SENSORS_LM63 is not set
33172 +# CONFIG_SENSORS_LM75 is not set
33173 +# CONFIG_SENSORS_LM77 is not set
33174 +# CONFIG_SENSORS_LM78 is not set
33175 +# CONFIG_SENSORS_LM80 is not set
33176 +# CONFIG_SENSORS_LM83 is not set
33177 +# CONFIG_SENSORS_LM85 is not set
33178 +# CONFIG_SENSORS_LM87 is not set
33179 +# CONFIG_SENSORS_LM90 is not set
33180 +# CONFIG_SENSORS_LM92 is not set
33181 +# CONFIG_SENSORS_LM93 is not set
33182 +# CONFIG_SENSORS_MAX1619 is not set
33183 +# CONFIG_SENSORS_MAX6650 is not set
33184 +# CONFIG_SENSORS_PC87360 is not set
33185 +# CONFIG_SENSORS_PC87427 is not set
33186 +# CONFIG_SENSORS_DME1737 is not set
33187 +# CONFIG_SENSORS_SMSC47M1 is not set
33188 +# CONFIG_SENSORS_SMSC47M192 is not set
33189 +# CONFIG_SENSORS_SMSC47B397 is not set
33190 +# CONFIG_SENSORS_ADS7828 is not set
33191 +# CONFIG_SENSORS_THMC50 is not set
33192 +# CONFIG_SENSORS_VT1211 is not set
33193 +# CONFIG_SENSORS_W83781D is not set
33194 +# CONFIG_SENSORS_W83791D is not set
33195 +# CONFIG_SENSORS_W83792D is not set
33196 +# CONFIG_SENSORS_W83793 is not set
33197 +# CONFIG_SENSORS_W83L785TS is not set
33198 +# CONFIG_SENSORS_W83L786NG is not set
33199 +# CONFIG_SENSORS_W83627HF is not set
33200 +# CONFIG_SENSORS_W83627EHF is not set
33201 +# CONFIG_HWMON_DEBUG_CHIP is not set
33202 +# CONFIG_THERMAL is not set
33203 +CONFIG_WATCHDOG=y
33204 +# CONFIG_WATCHDOG_NOWAYOUT is not set
33205 +
33206 +#
33207 +# Watchdog Device Drivers
33208 +#
33209 +# CONFIG_SOFT_WATCHDOG is not set
33210 +CONFIG_83xx_WDT=y
33211 +
33212 +#
33213 +# Sonics Silicon Backplane
33214 +#
33215 +CONFIG_SSB_POSSIBLE=y
33216 +# CONFIG_SSB is not set
33217 +
33218 +#
33219 +# Multifunction device drivers
33220 +#
33221 +# CONFIG_MFD_SM501 is not set
33222 +
33223 +#
33224 +# Multimedia devices
33225 +#
33226 +# CONFIG_VIDEO_DEV is not set
33227 +# CONFIG_DVB_CORE is not set
33228 +# CONFIG_DAB is not set
33229 +
33230 +#
33231 +# Graphics support
33232 +#
33233 +# CONFIG_VGASTATE is not set
33234 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
33235 +# CONFIG_FB is not set
33236 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
33237 +
33238 +#
33239 +# Display device support
33240 +#
33241 +# CONFIG_DISPLAY_SUPPORT is not set
33242 +
33243 +#
33244 +# Sound
33245 +#
33246 +# CONFIG_SOUND is not set
33247 +CONFIG_HID_SUPPORT=y
33248 +CONFIG_HID=y
33249 +# CONFIG_HID_DEBUG is not set
33250 +# CONFIG_HIDRAW is not set
33251 +# CONFIG_USB_SUPPORT is not set
33252 +# CONFIG_MMC is not set
33253 +# CONFIG_MEMSTICK is not set
33254 +# CONFIG_NEW_LEDS is not set
33255 +# CONFIG_EDAC is not set
33256 +# CONFIG_RTC_CLASS is not set
33257 +# CONFIG_DMADEVICES is not set
33258 +
33259 +#
33260 +# Userspace I/O
33261 +#
33262 +# CONFIG_UIO is not set
33263 +
33264 +#
33265 +# File systems
33266 +#
33267 +# CONFIG_EXT2_FS is not set
33268 +# CONFIG_EXT3_FS is not set
33269 +# CONFIG_EXT4DEV_FS is not set
33270 +# CONFIG_REISERFS_FS is not set
33271 +# CONFIG_JFS_FS is not set
33272 +# CONFIG_FS_POSIX_ACL is not set
33273 +# CONFIG_XFS_FS is not set
33274 +# CONFIG_GFS2_FS is not set
33275 +# CONFIG_OCFS2_FS is not set
33276 +CONFIG_DNOTIFY=y
33277 +CONFIG_INOTIFY=y
33278 +CONFIG_INOTIFY_USER=y
33279 +# CONFIG_QUOTA is not set
33280 +# CONFIG_AUTOFS_FS is not set
33281 +# CONFIG_AUTOFS4_FS is not set
33282 +# CONFIG_FUSE_FS is not set
33283 +
33284 +#
33285 +# CD-ROM/DVD Filesystems
33286 +#
33287 +# CONFIG_ISO9660_FS is not set
33288 +# CONFIG_UDF_FS is not set
33289 +
33290 +#
33291 +# DOS/FAT/NT Filesystems
33292 +#
33293 +# CONFIG_MSDOS_FS is not set
33294 +# CONFIG_VFAT_FS is not set
33295 +# CONFIG_NTFS_FS is not set
33296 +
33297 +#
33298 +# Pseudo filesystems
33299 +#
33300 +CONFIG_PROC_FS=y
33301 +CONFIG_PROC_KCORE=y
33302 +CONFIG_PROC_SYSCTL=y
33303 +CONFIG_SYSFS=y
33304 +CONFIG_TMPFS=y
33305 +# CONFIG_TMPFS_POSIX_ACL is not set
33306 +# CONFIG_HUGETLB_PAGE is not set
33307 +# CONFIG_CONFIGFS_FS is not set
33308 +
33309 +#
33310 +# Miscellaneous filesystems
33311 +#
33312 +# CONFIG_ADFS_FS is not set
33313 +# CONFIG_AFFS_FS is not set
33314 +# CONFIG_HFS_FS is not set
33315 +# CONFIG_HFSPLUS_FS is not set
33316 +# CONFIG_BEFS_FS is not set
33317 +# CONFIG_BFS_FS is not set
33318 +# CONFIG_EFS_FS is not set
33319 +# CONFIG_CRAMFS is not set
33320 +# CONFIG_VXFS_FS is not set
33321 +# CONFIG_MINIX_FS is not set
33322 +# CONFIG_HPFS_FS is not set
33323 +# CONFIG_QNX4FS_FS is not set
33324 +# CONFIG_ROMFS_FS is not set
33325 +# CONFIG_SYSV_FS is not set
33326 +# CONFIG_UFS_FS is not set
33327 +CONFIG_NETWORK_FILESYSTEMS=y
33328 +CONFIG_NFS_FS=y
33329 +CONFIG_NFS_V3=y
33330 +# CONFIG_NFS_V3_ACL is not set
33331 +CONFIG_NFS_V4=y
33332 +# CONFIG_NFS_DIRECTIO is not set
33333 +# CONFIG_NFSD is not set
33334 +CONFIG_ROOT_NFS=y
33335 +CONFIG_LOCKD=y
33336 +CONFIG_LOCKD_V4=y
33337 +CONFIG_NFS_COMMON=y
33338 +CONFIG_SUNRPC=y
33339 +CONFIG_SUNRPC_GSS=y
33340 +# CONFIG_SUNRPC_BIND34 is not set
33341 +CONFIG_RPCSEC_GSS_KRB5=y
33342 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
33343 +# CONFIG_SMB_FS is not set
33344 +# CONFIG_CIFS is not set
33345 +# CONFIG_NCP_FS is not set
33346 +# CONFIG_CODA_FS is not set
33347 +# CONFIG_AFS_FS is not set
33348 +
33349 +#
33350 +# Partition Types
33351 +#
33352 +# CONFIG_PARTITION_ADVANCED is not set
33353 +CONFIG_MSDOS_PARTITION=y
33354 +# CONFIG_NLS is not set
33355 +# CONFIG_DLM is not set
33356 +
33357 +#
33358 +# Library routines
33359 +#
33360 +CONFIG_BITREVERSE=y
33361 +# CONFIG_CRC_CCITT is not set
33362 +# CONFIG_CRC16 is not set
33363 +# CONFIG_CRC_ITU_T is not set
33364 +CONFIG_CRC32=y
33365 +# CONFIG_CRC7 is not set
33366 +# CONFIG_LIBCRC32C is not set
33367 +CONFIG_PLIST=y
33368 +CONFIG_HAS_IOMEM=y
33369 +CONFIG_HAS_IOPORT=y
33370 +CONFIG_HAS_DMA=y
33371 +
33372 +#
33373 +# Kernel hacking
33374 +#
33375 +# CONFIG_PRINTK_TIME is not set
33376 +CONFIG_ENABLE_WARN_DEPRECATED=y
33377 +CONFIG_ENABLE_MUST_CHECK=y
33378 +# CONFIG_MAGIC_SYSRQ is not set
33379 +# CONFIG_UNUSED_SYMBOLS is not set
33380 +# CONFIG_DEBUG_FS is not set
33381 +# CONFIG_HEADERS_CHECK is not set
33382 +# CONFIG_DEBUG_KERNEL is not set
33383 +# CONFIG_DEBUG_BUGVERBOSE is not set
33384 +# CONFIG_SAMPLES is not set
33385 +# CONFIG_PPC_EARLY_DEBUG is not set
33386 +
33387 +#
33388 +# Security options
33389 +#
33390 +# CONFIG_KEYS is not set
33391 +# CONFIG_SECURITY is not set
33392 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
33393 +CONFIG_CRYPTO=y
33394 +CONFIG_CRYPTO_ALGAPI=y
33395 +CONFIG_CRYPTO_BLKCIPHER=y
33396 +# CONFIG_CRYPTO_SEQIV is not set
33397 +CONFIG_CRYPTO_MANAGER=y
33398 +# CONFIG_CRYPTO_HMAC is not set
33399 +# CONFIG_CRYPTO_XCBC is not set
33400 +# CONFIG_CRYPTO_NULL is not set
33401 +# CONFIG_CRYPTO_MD4 is not set
33402 +CONFIG_CRYPTO_MD5=y
33403 +# CONFIG_CRYPTO_SHA1 is not set
33404 +# CONFIG_CRYPTO_SHA256 is not set
33405 +# CONFIG_CRYPTO_SHA512 is not set
33406 +# CONFIG_CRYPTO_WP512 is not set
33407 +# CONFIG_CRYPTO_TGR192 is not set
33408 +# CONFIG_CRYPTO_GF128MUL is not set
33409 +CONFIG_CRYPTO_ECB=m
33410 +CONFIG_CRYPTO_CBC=y
33411 +CONFIG_CRYPTO_PCBC=m
33412 +# CONFIG_CRYPTO_LRW is not set
33413 +# CONFIG_CRYPTO_XTS is not set
33414 +# CONFIG_CRYPTO_CTR is not set
33415 +# CONFIG_CRYPTO_GCM is not set
33416 +# CONFIG_CRYPTO_CCM is not set
33417 +# CONFIG_CRYPTO_CRYPTD is not set
33418 +CONFIG_CRYPTO_DES=y
33419 +# CONFIG_CRYPTO_FCRYPT is not set
33420 +# CONFIG_CRYPTO_BLOWFISH is not set
33421 +# CONFIG_CRYPTO_TWOFISH is not set
33422 +# CONFIG_CRYPTO_SERPENT is not set
33423 +# CONFIG_CRYPTO_AES is not set
33424 +# CONFIG_CRYPTO_CAST5 is not set
33425 +# CONFIG_CRYPTO_CAST6 is not set
33426 +# CONFIG_CRYPTO_TEA is not set
33427 +# CONFIG_CRYPTO_ARC4 is not set
33428 +# CONFIG_CRYPTO_KHAZAD is not set
33429 +# CONFIG_CRYPTO_ANUBIS is not set
33430 +# CONFIG_CRYPTO_SEED is not set
33431 +# CONFIG_CRYPTO_SALSA20 is not set
33432 +# CONFIG_CRYPTO_DEFLATE is not set
33433 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
33434 +# CONFIG_CRYPTO_CRC32C is not set
33435 +# CONFIG_CRYPTO_CAMELLIA is not set
33436 +# CONFIG_CRYPTO_TEST is not set
33437 +# CONFIG_CRYPTO_AUTHENC is not set
33438 +# CONFIG_CRYPTO_LZO is not set
33439 +# CONFIG_CRYPTO_HW is not set
33440 +# CONFIG_PPC_CLOCK is not set
33441 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/ksi8560_defconfig
33442 ===================================================================
33443 --- /dev/null
33444 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/ksi8560_defconfig
33445 @@ -0,0 +1,899 @@
33446 +#
33447 +# Automatically generated make config: don't edit
33448 +# Linux kernel version: 2.6.24
33449 +# Mon Feb 11 16:25:19 2008
33450 +#
33451 +# CONFIG_PPC64 is not set
33452 +
33453 +#
33454 +# Processor support
33455 +#
33456 +# CONFIG_6xx is not set
33457 +CONFIG_PPC_85xx=y
33458 +# CONFIG_PPC_8xx is not set
33459 +# CONFIG_40x is not set
33460 +# CONFIG_44x is not set
33461 +# CONFIG_E200 is not set
33462 +CONFIG_E500=y
33463 +CONFIG_BOOKE=y
33464 +CONFIG_FSL_BOOKE=y
33465 +CONFIG_FSL_EMB_PERFMON=y
33466 +# CONFIG_PHYS_64BIT is not set
33467 +CONFIG_SPE=y
33468 +# CONFIG_PPC_MM_SLICES is not set
33469 +CONFIG_PPC32=y
33470 +CONFIG_WORD_SIZE=32
33471 +CONFIG_PPC_MERGE=y
33472 +CONFIG_MMU=y
33473 +CONFIG_GENERIC_CMOS_UPDATE=y
33474 +CONFIG_GENERIC_TIME=y
33475 +CONFIG_GENERIC_TIME_VSYSCALL=y
33476 +CONFIG_GENERIC_CLOCKEVENTS=y
33477 +CONFIG_GENERIC_HARDIRQS=y
33478 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
33479 +CONFIG_IRQ_PER_CPU=y
33480 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
33481 +CONFIG_ARCH_HAS_ILOG2_U32=y
33482 +CONFIG_GENERIC_HWEIGHT=y
33483 +CONFIG_GENERIC_CALIBRATE_DELAY=y
33484 +CONFIG_GENERIC_FIND_NEXT_BIT=y
33485 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
33486 +CONFIG_PPC=y
33487 +CONFIG_EARLY_PRINTK=y
33488 +CONFIG_GENERIC_NVRAM=y
33489 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
33490 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
33491 +CONFIG_PPC_OF=y
33492 +CONFIG_OF=y
33493 +CONFIG_PPC_UDBG_16550=y
33494 +# CONFIG_GENERIC_TBSYNC is not set
33495 +CONFIG_AUDIT_ARCH=y
33496 +CONFIG_GENERIC_BUG=y
33497 +CONFIG_DEFAULT_UIMAGE=y
33498 +# CONFIG_PPC_DCR_NATIVE is not set
33499 +# CONFIG_PPC_DCR_MMIO is not set
33500 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
33501 +
33502 +#
33503 +# General setup
33504 +#
33505 +CONFIG_EXPERIMENTAL=y
33506 +CONFIG_BROKEN_ON_SMP=y
33507 +CONFIG_INIT_ENV_ARG_LIMIT=32
33508 +CONFIG_LOCALVERSION=""
33509 +CONFIG_LOCALVERSION_AUTO=y
33510 +CONFIG_SWAP=y
33511 +CONFIG_SYSVIPC=y
33512 +CONFIG_SYSVIPC_SYSCTL=y
33513 +# CONFIG_POSIX_MQUEUE is not set
33514 +# CONFIG_BSD_PROCESS_ACCT is not set
33515 +# CONFIG_TASKSTATS is not set
33516 +# CONFIG_USER_NS is not set
33517 +# CONFIG_PID_NS is not set
33518 +# CONFIG_AUDIT is not set
33519 +# CONFIG_IKCONFIG is not set
33520 +CONFIG_LOG_BUF_SHIFT=14
33521 +# CONFIG_CGROUPS is not set
33522 +CONFIG_FAIR_GROUP_SCHED=y
33523 +CONFIG_FAIR_USER_SCHED=y
33524 +# CONFIG_FAIR_CGROUP_SCHED is not set
33525 +CONFIG_SYSFS_DEPRECATED=y
33526 +# CONFIG_RELAY is not set
33527 +CONFIG_BLK_DEV_INITRD=y
33528 +CONFIG_INITRAMFS_SOURCE=""
33529 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
33530 +CONFIG_SYSCTL=y
33531 +CONFIG_EMBEDDED=y
33532 +CONFIG_SYSCTL_SYSCALL=y
33533 +CONFIG_KALLSYMS=y
33534 +# CONFIG_KALLSYMS_ALL is not set
33535 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
33536 +CONFIG_HOTPLUG=y
33537 +CONFIG_PRINTK=y
33538 +CONFIG_BUG=y
33539 +CONFIG_ELF_CORE=y
33540 +CONFIG_BASE_FULL=y
33541 +CONFIG_FUTEX=y
33542 +CONFIG_ANON_INODES=y
33543 +CONFIG_EPOLL=y
33544 +CONFIG_SIGNALFD=y
33545 +CONFIG_TIMERFD=y
33546 +CONFIG_EVENTFD=y
33547 +CONFIG_SHMEM=y
33548 +CONFIG_VM_EVENT_COUNTERS=y
33549 +CONFIG_SLUB_DEBUG=y
33550 +# CONFIG_SLAB is not set
33551 +CONFIG_SLUB=y
33552 +# CONFIG_SLOB is not set
33553 +# CONFIG_PROFILING is not set
33554 +# CONFIG_MARKERS is not set
33555 +CONFIG_HAVE_OPROFILE=y
33556 +CONFIG_HAVE_KPROBES=y
33557 +CONFIG_PROC_PAGE_MONITOR=y
33558 +CONFIG_SLABINFO=y
33559 +CONFIG_RT_MUTEXES=y
33560 +# CONFIG_TINY_SHMEM is not set
33561 +CONFIG_BASE_SMALL=0
33562 +# CONFIG_MODULES is not set
33563 +CONFIG_BLOCK=y
33564 +# CONFIG_LBD is not set
33565 +# CONFIG_BLK_DEV_IO_TRACE is not set
33566 +# CONFIG_LSF is not set
33567 +# CONFIG_BLK_DEV_BSG is not set
33568 +
33569 +#
33570 +# IO Schedulers
33571 +#
33572 +CONFIG_IOSCHED_NOOP=y
33573 +CONFIG_IOSCHED_AS=y
33574 +CONFIG_IOSCHED_DEADLINE=y
33575 +CONFIG_IOSCHED_CFQ=y
33576 +CONFIG_DEFAULT_AS=y
33577 +# CONFIG_DEFAULT_DEADLINE is not set
33578 +# CONFIG_DEFAULT_CFQ is not set
33579 +# CONFIG_DEFAULT_NOOP is not set
33580 +CONFIG_DEFAULT_IOSCHED="anticipatory"
33581 +CONFIG_CLASSIC_RCU=y
33582 +# CONFIG_PREEMPT_RCU is not set
33583 +
33584 +#
33585 +# Platform support
33586 +#
33587 +# CONFIG_PPC_MPC512x is not set
33588 +# CONFIG_PPC_MPC5121 is not set
33589 +# CONFIG_PPC_CELL is not set
33590 +# CONFIG_PPC_CELL_NATIVE is not set
33591 +# CONFIG_PQ2ADS is not set
33592 +CONFIG_MPC85xx=y
33593 +# CONFIG_MPC8540_ADS is not set
33594 +# CONFIG_MPC8560_ADS is not set
33595 +# CONFIG_MPC85xx_CDS is not set
33596 +# CONFIG_MPC85xx_MDS is not set
33597 +# CONFIG_MPC85xx_DS is not set
33598 +CONFIG_KSI8560=y
33599 +# CONFIG_STX_GP3 is not set
33600 +# CONFIG_TQM8540 is not set
33601 +# CONFIG_TQM8541 is not set
33602 +# CONFIG_TQM8555 is not set
33603 +# CONFIG_TQM8560 is not set
33604 +# CONFIG_SBC8548 is not set
33605 +# CONFIG_SBC8560 is not set
33606 +# CONFIG_IPIC is not set
33607 +CONFIG_MPIC=y
33608 +# CONFIG_MPIC_WEIRD is not set
33609 +# CONFIG_PPC_I8259 is not set
33610 +# CONFIG_PPC_RTAS is not set
33611 +# CONFIG_MMIO_NVRAM is not set
33612 +# CONFIG_PPC_MPC106 is not set
33613 +# CONFIG_PPC_970_NAP is not set
33614 +# CONFIG_PPC_INDIRECT_IO is not set
33615 +# CONFIG_GENERIC_IOMAP is not set
33616 +# CONFIG_CPU_FREQ is not set
33617 +CONFIG_CPM2=y
33618 +CONFIG_PPC_CPM_NEW_BINDING=y
33619 +# CONFIG_FSL_ULI1575 is not set
33620 +CONFIG_CPM=y
33621 +
33622 +#
33623 +# Kernel options
33624 +#
33625 +CONFIG_HIGHMEM=y
33626 +# CONFIG_TICK_ONESHOT is not set
33627 +# CONFIG_NO_HZ is not set
33628 +# CONFIG_HIGH_RES_TIMERS is not set
33629 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
33630 +# CONFIG_HZ_100 is not set
33631 +CONFIG_HZ_250=y
33632 +# CONFIG_HZ_300 is not set
33633 +# CONFIG_HZ_1000 is not set
33634 +CONFIG_HZ=250
33635 +# CONFIG_SCHED_HRTICK is not set
33636 +CONFIG_PREEMPT_NONE=y
33637 +# CONFIG_PREEMPT_VOLUNTARY is not set
33638 +# CONFIG_PREEMPT is not set
33639 +CONFIG_RCU_TRACE=y
33640 +CONFIG_BINFMT_ELF=y
33641 +CONFIG_BINFMT_MISC=y
33642 +CONFIG_MATH_EMULATION=y
33643 +# CONFIG_IOMMU_HELPER is not set
33644 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
33645 +CONFIG_ARCH_FLATMEM_ENABLE=y
33646 +CONFIG_ARCH_POPULATES_NODE_MAP=y
33647 +CONFIG_SELECT_MEMORY_MODEL=y
33648 +CONFIG_FLATMEM_MANUAL=y
33649 +# CONFIG_DISCONTIGMEM_MANUAL is not set
33650 +# CONFIG_SPARSEMEM_MANUAL is not set
33651 +CONFIG_FLATMEM=y
33652 +CONFIG_FLAT_NODE_MEM_MAP=y
33653 +# CONFIG_SPARSEMEM_STATIC is not set
33654 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
33655 +CONFIG_SPLIT_PTLOCK_CPUS=4
33656 +# CONFIG_RESOURCES_64BIT is not set
33657 +CONFIG_ZONE_DMA_FLAG=1
33658 +CONFIG_BOUNCE=y
33659 +CONFIG_VIRT_TO_BUS=y
33660 +# CONFIG_PROC_DEVICETREE is not set
33661 +# CONFIG_CMDLINE_BOOL is not set
33662 +# CONFIG_PM is not set
33663 +# CONFIG_SECCOMP is not set
33664 +CONFIG_WANT_DEVICE_TREE=y
33665 +CONFIG_ISA_DMA_API=y
33666 +
33667 +#
33668 +# Bus options
33669 +#
33670 +CONFIG_ZONE_DMA=y
33671 +CONFIG_FSL_SOC=y
33672 +# CONFIG_PCI is not set
33673 +# CONFIG_PCI_DOMAINS is not set
33674 +# CONFIG_PCI_SYSCALL is not set
33675 +# CONFIG_ARCH_SUPPORTS_MSI is not set
33676 +# CONFIG_PCCARD is not set
33677 +
33678 +#
33679 +# Advanced setup
33680 +#
33681 +# CONFIG_ADVANCED_OPTIONS is not set
33682 +
33683 +#
33684 +# Default settings for advanced configuration options are used
33685 +#
33686 +CONFIG_HIGHMEM_START=0xfe000000
33687 +CONFIG_LOWMEM_SIZE=0x30000000
33688 +CONFIG_KERNEL_START=0xc0000000
33689 +CONFIG_TASK_SIZE=0xc0000000
33690 +CONFIG_BOOT_LOAD=0x00800000
33691 +
33692 +#
33693 +# Networking
33694 +#
33695 +CONFIG_NET=y
33696 +
33697 +#
33698 +# Networking options
33699 +#
33700 +CONFIG_PACKET=y
33701 +# CONFIG_PACKET_MMAP is not set
33702 +CONFIG_UNIX=y
33703 +CONFIG_XFRM=y
33704 +# CONFIG_XFRM_USER is not set
33705 +# CONFIG_XFRM_SUB_POLICY is not set
33706 +# CONFIG_XFRM_MIGRATE is not set
33707 +# CONFIG_XFRM_STATISTICS is not set
33708 +# CONFIG_NET_KEY is not set
33709 +CONFIG_INET=y
33710 +CONFIG_IP_MULTICAST=y
33711 +# CONFIG_IP_ADVANCED_ROUTER is not set
33712 +CONFIG_IP_FIB_HASH=y
33713 +CONFIG_IP_PNP=y
33714 +CONFIG_IP_PNP_DHCP=y
33715 +CONFIG_IP_PNP_BOOTP=y
33716 +# CONFIG_IP_PNP_RARP is not set
33717 +# CONFIG_NET_IPIP is not set
33718 +# CONFIG_NET_IPGRE is not set
33719 +# CONFIG_IP_MROUTE is not set
33720 +# CONFIG_ARPD is not set
33721 +CONFIG_SYN_COOKIES=y
33722 +# CONFIG_INET_AH is not set
33723 +# CONFIG_INET_ESP is not set
33724 +# CONFIG_INET_IPCOMP is not set
33725 +# CONFIG_INET_XFRM_TUNNEL is not set
33726 +# CONFIG_INET_TUNNEL is not set
33727 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
33728 +CONFIG_INET_XFRM_MODE_TUNNEL=y
33729 +CONFIG_INET_XFRM_MODE_BEET=y
33730 +# CONFIG_INET_LRO is not set
33731 +CONFIG_INET_DIAG=y
33732 +CONFIG_INET_TCP_DIAG=y
33733 +# CONFIG_TCP_CONG_ADVANCED is not set
33734 +CONFIG_TCP_CONG_CUBIC=y
33735 +CONFIG_DEFAULT_TCP_CONG="cubic"
33736 +# CONFIG_TCP_MD5SIG is not set
33737 +# CONFIG_IPV6 is not set
33738 +# CONFIG_INET6_XFRM_TUNNEL is not set
33739 +# CONFIG_INET6_TUNNEL is not set
33740 +# CONFIG_NETWORK_SECMARK is not set
33741 +# CONFIG_NETFILTER is not set
33742 +# CONFIG_IP_DCCP is not set
33743 +# CONFIG_IP_SCTP is not set
33744 +# CONFIG_TIPC is not set
33745 +# CONFIG_ATM is not set
33746 +# CONFIG_BRIDGE is not set
33747 +# CONFIG_VLAN_8021Q is not set
33748 +# CONFIG_DECNET is not set
33749 +# CONFIG_LLC2 is not set
33750 +# CONFIG_IPX is not set
33751 +# CONFIG_ATALK is not set
33752 +# CONFIG_X25 is not set
33753 +# CONFIG_LAPB is not set
33754 +# CONFIG_ECONET is not set
33755 +# CONFIG_WAN_ROUTER is not set
33756 +# CONFIG_NET_SCHED is not set
33757 +
33758 +#
33759 +# Network testing
33760 +#
33761 +# CONFIG_NET_PKTGEN is not set
33762 +# CONFIG_HAMRADIO is not set
33763 +# CONFIG_CAN is not set
33764 +# CONFIG_IRDA is not set
33765 +# CONFIG_BT is not set
33766 +# CONFIG_AF_RXRPC is not set
33767 +
33768 +#
33769 +# Wireless
33770 +#
33771 +# CONFIG_CFG80211 is not set
33772 +# CONFIG_WIRELESS_EXT is not set
33773 +# CONFIG_MAC80211 is not set
33774 +# CONFIG_IEEE80211 is not set
33775 +# CONFIG_RFKILL is not set
33776 +# CONFIG_NET_9P is not set
33777 +
33778 +#
33779 +# Device Drivers
33780 +#
33781 +
33782 +#
33783 +# Generic Driver Options
33784 +#
33785 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
33786 +CONFIG_STANDALONE=y
33787 +CONFIG_PREVENT_FIRMWARE_BUILD=y
33788 +# CONFIG_FW_LOADER is not set
33789 +# CONFIG_DEBUG_DRIVER is not set
33790 +# CONFIG_DEBUG_DEVRES is not set
33791 +# CONFIG_SYS_HYPERVISOR is not set
33792 +# CONFIG_CONNECTOR is not set
33793 +CONFIG_MTD=y
33794 +# CONFIG_MTD_DEBUG is not set
33795 +CONFIG_MTD_CONCAT=y
33796 +CONFIG_MTD_PARTITIONS=y
33797 +# CONFIG_MTD_REDBOOT_PARTS is not set
33798 +# CONFIG_MTD_CMDLINE_PARTS is not set
33799 +
33800 +#
33801 +# User Modules And Translation Layers
33802 +#
33803 +CONFIG_MTD_CHAR=y
33804 +CONFIG_MTD_BLKDEVS=y
33805 +CONFIG_MTD_BLOCK=y
33806 +# CONFIG_FTL is not set
33807 +# CONFIG_NFTL is not set
33808 +# CONFIG_INFTL is not set
33809 +# CONFIG_RFD_FTL is not set
33810 +# CONFIG_SSFDC is not set
33811 +# CONFIG_MTD_OOPS is not set
33812 +
33813 +#
33814 +# RAM/ROM/Flash chip drivers
33815 +#
33816 +CONFIG_MTD_CFI=y
33817 +CONFIG_MTD_JEDECPROBE=y
33818 +CONFIG_MTD_GEN_PROBE=y
33819 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
33820 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
33821 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
33822 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
33823 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
33824 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
33825 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
33826 +CONFIG_MTD_CFI_I1=y
33827 +CONFIG_MTD_CFI_I2=y
33828 +# CONFIG_MTD_CFI_I4 is not set
33829 +# CONFIG_MTD_CFI_I8 is not set
33830 +# CONFIG_MTD_CFI_INTELEXT is not set
33831 +CONFIG_MTD_CFI_AMDSTD=y
33832 +# CONFIG_MTD_CFI_STAA is not set
33833 +CONFIG_MTD_CFI_UTIL=y
33834 +# CONFIG_MTD_RAM is not set
33835 +# CONFIG_MTD_ROM is not set
33836 +# CONFIG_MTD_ABSENT is not set
33837 +
33838 +#
33839 +# Mapping drivers for chip access
33840 +#
33841 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
33842 +# CONFIG_MTD_PHYSMAP is not set
33843 +CONFIG_MTD_PHYSMAP_OF=y
33844 +# CONFIG_MTD_PLATRAM is not set
33845 +
33846 +#
33847 +# Self-contained MTD device drivers
33848 +#
33849 +# CONFIG_MTD_SLRAM is not set
33850 +# CONFIG_MTD_PHRAM is not set
33851 +# CONFIG_MTD_MTDRAM is not set
33852 +# CONFIG_MTD_BLOCK2MTD is not set
33853 +
33854 +#
33855 +# Disk-On-Chip Device Drivers
33856 +#
33857 +# CONFIG_MTD_DOC2000 is not set
33858 +# CONFIG_MTD_DOC2001 is not set
33859 +# CONFIG_MTD_DOC2001PLUS is not set
33860 +# CONFIG_MTD_NAND is not set
33861 +# CONFIG_MTD_ONENAND is not set
33862 +
33863 +#
33864 +# UBI - Unsorted block images
33865 +#
33866 +# CONFIG_MTD_UBI is not set
33867 +CONFIG_OF_DEVICE=y
33868 +# CONFIG_PARPORT is not set
33869 +CONFIG_BLK_DEV=y
33870 +# CONFIG_BLK_DEV_FD is not set
33871 +# CONFIG_BLK_DEV_COW_COMMON is not set
33872 +CONFIG_BLK_DEV_LOOP=y
33873 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
33874 +# CONFIG_BLK_DEV_NBD is not set
33875 +CONFIG_BLK_DEV_RAM=y
33876 +CONFIG_BLK_DEV_RAM_COUNT=16
33877 +CONFIG_BLK_DEV_RAM_SIZE=32768
33878 +CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
33879 +# CONFIG_CDROM_PKTCDVD is not set
33880 +# CONFIG_ATA_OVER_ETH is not set
33881 +CONFIG_MISC_DEVICES=y
33882 +# CONFIG_EEPROM_93CX6 is not set
33883 +CONFIG_IDE=y
33884 +CONFIG_IDE_MAX_HWIFS=4
33885 +CONFIG_BLK_DEV_IDE=y
33886 +
33887 +#
33888 +# Please see Documentation/ide.txt for help/info on IDE drives
33889 +#
33890 +# CONFIG_BLK_DEV_IDE_SATA is not set
33891 +# CONFIG_BLK_DEV_IDEDISK is not set
33892 +# CONFIG_IDEDISK_MULTI_MODE is not set
33893 +# CONFIG_BLK_DEV_IDECD is not set
33894 +# CONFIG_BLK_DEV_IDETAPE is not set
33895 +# CONFIG_BLK_DEV_IDEFLOPPY is not set
33896 +# CONFIG_IDE_TASK_IOCTL is not set
33897 +CONFIG_IDE_PROC_FS=y
33898 +
33899 +#
33900 +# IDE chipset support/bugfixes
33901 +#
33902 +CONFIG_IDE_GENERIC=y
33903 +# CONFIG_BLK_DEV_PLATFORM is not set
33904 +# CONFIG_BLK_DEV_IDEDMA is not set
33905 +CONFIG_IDE_ARCH_OBSOLETE_INIT=y
33906 +# CONFIG_BLK_DEV_HD is not set
33907 +
33908 +#
33909 +# SCSI device support
33910 +#
33911 +# CONFIG_RAID_ATTRS is not set
33912 +# CONFIG_SCSI is not set
33913 +# CONFIG_SCSI_DMA is not set
33914 +# CONFIG_SCSI_NETLINK is not set
33915 +# CONFIG_ATA is not set
33916 +# CONFIG_MD is not set
33917 +# CONFIG_MACINTOSH_DRIVERS is not set
33918 +CONFIG_NETDEVICES=y
33919 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
33920 +# CONFIG_DUMMY is not set
33921 +# CONFIG_BONDING is not set
33922 +# CONFIG_MACVLAN is not set
33923 +# CONFIG_EQUALIZER is not set
33924 +# CONFIG_TUN is not set
33925 +# CONFIG_VETH is not set
33926 +CONFIG_PHYLIB=y
33927 +
33928 +#
33929 +# MII PHY device drivers
33930 +#
33931 +CONFIG_MARVELL_PHY=y
33932 +# CONFIG_DAVICOM_PHY is not set
33933 +# CONFIG_QSEMI_PHY is not set
33934 +# CONFIG_LXT_PHY is not set
33935 +# CONFIG_CICADA_PHY is not set
33936 +# CONFIG_VITESSE_PHY is not set
33937 +# CONFIG_SMSC_PHY is not set
33938 +# CONFIG_BROADCOM_PHY is not set
33939 +# CONFIG_ICPLUS_PHY is not set
33940 +# CONFIG_REALTEK_PHY is not set
33941 +# CONFIG_FIXED_PHY is not set
33942 +CONFIG_MDIO_BITBANG=y
33943 +CONFIG_NET_ETHERNET=y
33944 +CONFIG_MII=y
33945 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
33946 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
33947 +# CONFIG_IBM_NEW_EMAC_TAH is not set
33948 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
33949 +# CONFIG_B44 is not set
33950 +CONFIG_FS_ENET=y
33951 +# CONFIG_FS_ENET_HAS_SCC is not set
33952 +CONFIG_FS_ENET_HAS_FCC=y
33953 +CONFIG_FS_ENET_MDIO_FCC=y
33954 +CONFIG_NETDEV_1000=y
33955 +# CONFIG_E1000E_ENABLED is not set
33956 +CONFIG_GIANFAR=y
33957 +CONFIG_GFAR_NAPI=y
33958 +CONFIG_NETDEV_10000=y
33959 +
33960 +#
33961 +# Wireless LAN
33962 +#
33963 +# CONFIG_WLAN_PRE80211 is not set
33964 +# CONFIG_WLAN_80211 is not set
33965 +# CONFIG_WAN is not set
33966 +# CONFIG_PPP is not set
33967 +# CONFIG_SLIP is not set
33968 +# CONFIG_NETCONSOLE is not set
33969 +# CONFIG_NETPOLL is not set
33970 +# CONFIG_NET_POLL_CONTROLLER is not set
33971 +# CONFIG_ISDN is not set
33972 +# CONFIG_PHONE is not set
33973 +
33974 +#
33975 +# Input device support
33976 +#
33977 +CONFIG_INPUT=y
33978 +# CONFIG_INPUT_FF_MEMLESS is not set
33979 +# CONFIG_INPUT_POLLDEV is not set
33980 +
33981 +#
33982 +# Userland interfaces
33983 +#
33984 +# CONFIG_INPUT_MOUSEDEV is not set
33985 +# CONFIG_INPUT_JOYDEV is not set
33986 +# CONFIG_INPUT_EVDEV is not set
33987 +# CONFIG_INPUT_EVBUG is not set
33988 +
33989 +#
33990 +# Input Device Drivers
33991 +#
33992 +# CONFIG_INPUT_KEYBOARD is not set
33993 +# CONFIG_INPUT_MOUSE is not set
33994 +# CONFIG_INPUT_JOYSTICK is not set
33995 +# CONFIG_INPUT_TABLET is not set
33996 +# CONFIG_INPUT_TOUCHSCREEN is not set
33997 +# CONFIG_INPUT_MISC is not set
33998 +
33999 +#
34000 +# Hardware I/O ports
34001 +#
34002 +# CONFIG_SERIO is not set
34003 +# CONFIG_GAMEPORT is not set
34004 +
34005 +#
34006 +# Character devices
34007 +#
34008 +# CONFIG_VT is not set
34009 +# CONFIG_SERIAL_NONSTANDARD is not set
34010 +
34011 +#
34012 +# Serial drivers
34013 +#
34014 +# CONFIG_SERIAL_8250 is not set
34015 +
34016 +#
34017 +# Non-8250 serial port support
34018 +#
34019 +# CONFIG_SERIAL_UARTLITE is not set
34020 +CONFIG_SERIAL_CORE=y
34021 +CONFIG_SERIAL_CORE_CONSOLE=y
34022 +CONFIG_SERIAL_CPM=y
34023 +CONFIG_SERIAL_CPM_CONSOLE=y
34024 +CONFIG_SERIAL_CPM_SCC1=y
34025 +# CONFIG_SERIAL_CPM_SCC2 is not set
34026 +# CONFIG_SERIAL_CPM_SCC3 is not set
34027 +# CONFIG_SERIAL_CPM_SCC4 is not set
34028 +# CONFIG_SERIAL_CPM_SMC1 is not set
34029 +# CONFIG_SERIAL_CPM_SMC2 is not set
34030 +CONFIG_UNIX98_PTYS=y
34031 +CONFIG_LEGACY_PTYS=y
34032 +CONFIG_LEGACY_PTY_COUNT=256
34033 +# CONFIG_IPMI_HANDLER is not set
34034 +CONFIG_HW_RANDOM=y
34035 +# CONFIG_NVRAM is not set
34036 +CONFIG_GEN_RTC=y
34037 +# CONFIG_GEN_RTC_X is not set
34038 +# CONFIG_R3964 is not set
34039 +# CONFIG_RAW_DRIVER is not set
34040 +# CONFIG_TCG_TPM is not set
34041 +# CONFIG_I2C is not set
34042 +
34043 +#
34044 +# SPI support
34045 +#
34046 +# CONFIG_SPI is not set
34047 +# CONFIG_SPI_MASTER is not set
34048 +# CONFIG_W1 is not set
34049 +# CONFIG_POWER_SUPPLY is not set
34050 +CONFIG_HWMON=y
34051 +# CONFIG_HWMON_VID is not set
34052 +# CONFIG_SENSORS_F71805F is not set
34053 +# CONFIG_SENSORS_F71882FG is not set
34054 +# CONFIG_SENSORS_IT87 is not set
34055 +# CONFIG_SENSORS_PC87360 is not set
34056 +# CONFIG_SENSORS_PC87427 is not set
34057 +# CONFIG_SENSORS_SMSC47M1 is not set
34058 +# CONFIG_SENSORS_SMSC47B397 is not set
34059 +# CONFIG_SENSORS_VT1211 is not set
34060 +# CONFIG_SENSORS_W83627HF is not set
34061 +# CONFIG_SENSORS_W83627EHF is not set
34062 +# CONFIG_HWMON_DEBUG_CHIP is not set
34063 +# CONFIG_WATCHDOG is not set
34064 +
34065 +#
34066 +# Sonics Silicon Backplane
34067 +#
34068 +CONFIG_SSB_POSSIBLE=y
34069 +# CONFIG_SSB is not set
34070 +
34071 +#
34072 +# Multifunction device drivers
34073 +#
34074 +# CONFIG_MFD_SM501 is not set
34075 +
34076 +#
34077 +# Multimedia devices
34078 +#
34079 +# CONFIG_VIDEO_DEV is not set
34080 +# CONFIG_DVB_CORE is not set
34081 +CONFIG_DAB=y
34082 +
34083 +#
34084 +# Graphics support
34085 +#
34086 +# CONFIG_VGASTATE is not set
34087 +CONFIG_VIDEO_OUTPUT_CONTROL=y
34088 +# CONFIG_FB is not set
34089 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
34090 +
34091 +#
34092 +# Display device support
34093 +#
34094 +# CONFIG_DISPLAY_SUPPORT is not set
34095 +
34096 +#
34097 +# Sound
34098 +#
34099 +# CONFIG_SOUND is not set
34100 +CONFIG_HID_SUPPORT=y
34101 +CONFIG_HID=y
34102 +# CONFIG_HID_DEBUG is not set
34103 +# CONFIG_HIDRAW is not set
34104 +CONFIG_USB_SUPPORT=y
34105 +# CONFIG_USB_ARCH_HAS_HCD is not set
34106 +# CONFIG_USB_ARCH_HAS_OHCI is not set
34107 +# CONFIG_USB_ARCH_HAS_EHCI is not set
34108 +
34109 +#
34110 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
34111 +#
34112 +# CONFIG_USB_GADGET is not set
34113 +# CONFIG_MMC is not set
34114 +# CONFIG_NEW_LEDS is not set
34115 +# CONFIG_EDAC is not set
34116 +# CONFIG_RTC_CLASS is not set
34117 +
34118 +#
34119 +# Userspace I/O
34120 +#
34121 +# CONFIG_UIO is not set
34122 +
34123 +#
34124 +# File systems
34125 +#
34126 +CONFIG_EXT2_FS=y
34127 +# CONFIG_EXT2_FS_XATTR is not set
34128 +# CONFIG_EXT2_FS_XIP is not set
34129 +CONFIG_EXT3_FS=y
34130 +CONFIG_EXT3_FS_XATTR=y
34131 +# CONFIG_EXT3_FS_POSIX_ACL is not set
34132 +# CONFIG_EXT3_FS_SECURITY is not set
34133 +# CONFIG_EXT4DEV_FS is not set
34134 +CONFIG_JBD=y
34135 +# CONFIG_JBD_DEBUG is not set
34136 +CONFIG_FS_MBCACHE=y
34137 +# CONFIG_REISERFS_FS is not set
34138 +# CONFIG_JFS_FS is not set
34139 +# CONFIG_FS_POSIX_ACL is not set
34140 +# CONFIG_XFS_FS is not set
34141 +# CONFIG_GFS2_FS is not set
34142 +# CONFIG_OCFS2_FS is not set
34143 +# CONFIG_MINIX_FS is not set
34144 +# CONFIG_ROMFS_FS is not set
34145 +CONFIG_INOTIFY=y
34146 +CONFIG_INOTIFY_USER=y
34147 +# CONFIG_QUOTA is not set
34148 +CONFIG_DNOTIFY=y
34149 +# CONFIG_AUTOFS_FS is not set
34150 +# CONFIG_AUTOFS4_FS is not set
34151 +# CONFIG_FUSE_FS is not set
34152 +
34153 +#
34154 +# CD-ROM/DVD Filesystems
34155 +#
34156 +# CONFIG_ISO9660_FS is not set
34157 +# CONFIG_UDF_FS is not set
34158 +
34159 +#
34160 +# DOS/FAT/NT Filesystems
34161 +#
34162 +# CONFIG_MSDOS_FS is not set
34163 +# CONFIG_VFAT_FS is not set
34164 +# CONFIG_NTFS_FS is not set
34165 +
34166 +#
34167 +# Pseudo filesystems
34168 +#
34169 +CONFIG_PROC_FS=y
34170 +CONFIG_PROC_KCORE=y
34171 +CONFIG_PROC_SYSCTL=y
34172 +CONFIG_SYSFS=y
34173 +CONFIG_TMPFS=y
34174 +# CONFIG_TMPFS_POSIX_ACL is not set
34175 +# CONFIG_HUGETLB_PAGE is not set
34176 +# CONFIG_CONFIGFS_FS is not set
34177 +
34178 +#
34179 +# Miscellaneous filesystems
34180 +#
34181 +# CONFIG_ADFS_FS is not set
34182 +# CONFIG_AFFS_FS is not set
34183 +# CONFIG_HFS_FS is not set
34184 +# CONFIG_HFSPLUS_FS is not set
34185 +# CONFIG_BEFS_FS is not set
34186 +# CONFIG_BFS_FS is not set
34187 +# CONFIG_EFS_FS is not set
34188 +# CONFIG_JFFS2_FS is not set
34189 +# CONFIG_CRAMFS is not set
34190 +# CONFIG_VXFS_FS is not set
34191 +# CONFIG_HPFS_FS is not set
34192 +# CONFIG_QNX4FS_FS is not set
34193 +# CONFIG_SYSV_FS is not set
34194 +# CONFIG_UFS_FS is not set
34195 +CONFIG_NETWORK_FILESYSTEMS=y
34196 +CONFIG_NFS_FS=y
34197 +# CONFIG_NFS_V3 is not set
34198 +# CONFIG_NFS_V4 is not set
34199 +# CONFIG_NFS_DIRECTIO is not set
34200 +# CONFIG_NFSD is not set
34201 +CONFIG_ROOT_NFS=y
34202 +CONFIG_LOCKD=y
34203 +CONFIG_NFS_COMMON=y
34204 +CONFIG_SUNRPC=y
34205 +# CONFIG_SUNRPC_BIND34 is not set
34206 +# CONFIG_RPCSEC_GSS_KRB5 is not set
34207 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
34208 +# CONFIG_SMB_FS is not set
34209 +# CONFIG_CIFS is not set
34210 +# CONFIG_NCP_FS is not set
34211 +# CONFIG_CODA_FS is not set
34212 +# CONFIG_AFS_FS is not set
34213 +
34214 +#
34215 +# Partition Types
34216 +#
34217 +CONFIG_PARTITION_ADVANCED=y
34218 +# CONFIG_ACORN_PARTITION is not set
34219 +# CONFIG_OSF_PARTITION is not set
34220 +# CONFIG_AMIGA_PARTITION is not set
34221 +# CONFIG_ATARI_PARTITION is not set
34222 +# CONFIG_MAC_PARTITION is not set
34223 +# CONFIG_MSDOS_PARTITION is not set
34224 +# CONFIG_LDM_PARTITION is not set
34225 +# CONFIG_SGI_PARTITION is not set
34226 +# CONFIG_ULTRIX_PARTITION is not set
34227 +# CONFIG_SUN_PARTITION is not set
34228 +# CONFIG_KARMA_PARTITION is not set
34229 +# CONFIG_EFI_PARTITION is not set
34230 +# CONFIG_SYSV68_PARTITION is not set
34231 +# CONFIG_NLS is not set
34232 +# CONFIG_DLM is not set
34233 +
34234 +#
34235 +# Library routines
34236 +#
34237 +CONFIG_BITREVERSE=y
34238 +# CONFIG_CRC_CCITT is not set
34239 +# CONFIG_CRC16 is not set
34240 +# CONFIG_CRC_ITU_T is not set
34241 +CONFIG_CRC32=y
34242 +# CONFIG_CRC7 is not set
34243 +# CONFIG_LIBCRC32C is not set
34244 +CONFIG_PLIST=y
34245 +CONFIG_HAS_IOMEM=y
34246 +CONFIG_HAS_IOPORT=y
34247 +CONFIG_HAS_DMA=y
34248 +
34249 +#
34250 +# Kernel hacking
34251 +#
34252 +# CONFIG_PRINTK_TIME is not set
34253 +CONFIG_ENABLE_WARN_DEPRECATED=y
34254 +CONFIG_ENABLE_MUST_CHECK=y
34255 +# CONFIG_MAGIC_SYSRQ is not set
34256 +# CONFIG_UNUSED_SYMBOLS is not set
34257 +CONFIG_DEBUG_FS=y
34258 +# CONFIG_HEADERS_CHECK is not set
34259 +CONFIG_DEBUG_KERNEL=y
34260 +# CONFIG_DEBUG_SHIRQ is not set
34261 +CONFIG_DETECT_SOFTLOCKUP=y
34262 +CONFIG_SCHED_DEBUG=y
34263 +# CONFIG_SCHEDSTATS is not set
34264 +# CONFIG_TIMER_STATS is not set
34265 +# CONFIG_SLUB_DEBUG_ON is not set
34266 +# CONFIG_DEBUG_RT_MUTEXES is not set
34267 +# CONFIG_RT_MUTEX_TESTER is not set
34268 +# CONFIG_DEBUG_SPINLOCK is not set
34269 +CONFIG_DEBUG_MUTEXES=y
34270 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
34271 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
34272 +# CONFIG_DEBUG_KOBJECT is not set
34273 +# CONFIG_DEBUG_HIGHMEM is not set
34274 +# CONFIG_DEBUG_BUGVERBOSE is not set
34275 +# CONFIG_DEBUG_INFO is not set
34276 +# CONFIG_DEBUG_VM is not set
34277 +# CONFIG_DEBUG_LIST is not set
34278 +# CONFIG_DEBUG_SG is not set
34279 +CONFIG_FORCED_INLINING=y
34280 +# CONFIG_BOOT_PRINTK_DELAY is not set
34281 +# CONFIG_BACKTRACE_SELF_TEST is not set
34282 +# CONFIG_FAULT_INJECTION is not set
34283 +# CONFIG_SAMPLES is not set
34284 +# CONFIG_DEBUG_STACKOVERFLOW is not set
34285 +# CONFIG_DEBUG_STACK_USAGE is not set
34286 +# CONFIG_DEBUG_PAGEALLOC is not set
34287 +# CONFIG_DEBUGGER is not set
34288 +# CONFIG_KGDB_CONSOLE is not set
34289 +# CONFIG_VIRQ_DEBUG is not set
34290 +# CONFIG_BDI_SWITCH is not set
34291 +# CONFIG_PPC_EARLY_DEBUG is not set
34292 +
34293 +#
34294 +# Security options
34295 +#
34296 +# CONFIG_KEYS is not set
34297 +# CONFIG_SECURITY is not set
34298 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
34299 +CONFIG_CRYPTO=y
34300 +# CONFIG_CRYPTO_SEQIV is not set
34301 +# CONFIG_CRYPTO_MANAGER is not set
34302 +# CONFIG_CRYPTO_HMAC is not set
34303 +# CONFIG_CRYPTO_XCBC is not set
34304 +# CONFIG_CRYPTO_NULL is not set
34305 +# CONFIG_CRYPTO_MD4 is not set
34306 +# CONFIG_CRYPTO_MD5 is not set
34307 +# CONFIG_CRYPTO_SHA1 is not set
34308 +# CONFIG_CRYPTO_SHA256 is not set
34309 +# CONFIG_CRYPTO_SHA512 is not set
34310 +# CONFIG_CRYPTO_WP512 is not set
34311 +# CONFIG_CRYPTO_TGR192 is not set
34312 +# CONFIG_CRYPTO_GF128MUL is not set
34313 +# CONFIG_CRYPTO_ECB is not set
34314 +# CONFIG_CRYPTO_CBC is not set
34315 +# CONFIG_CRYPTO_PCBC is not set
34316 +# CONFIG_CRYPTO_LRW is not set
34317 +# CONFIG_CRYPTO_XTS is not set
34318 +# CONFIG_CRYPTO_CTR is not set
34319 +# CONFIG_CRYPTO_GCM is not set
34320 +# CONFIG_CRYPTO_CCM is not set
34321 +# CONFIG_CRYPTO_CRYPTD is not set
34322 +# CONFIG_CRYPTO_DES is not set
34323 +# CONFIG_CRYPTO_FCRYPT is not set
34324 +# CONFIG_CRYPTO_BLOWFISH is not set
34325 +# CONFIG_CRYPTO_TWOFISH is not set
34326 +# CONFIG_CRYPTO_SERPENT is not set
34327 +# CONFIG_CRYPTO_AES is not set
34328 +# CONFIG_CRYPTO_CAST5 is not set
34329 +# CONFIG_CRYPTO_CAST6 is not set
34330 +# CONFIG_CRYPTO_TEA is not set
34331 +# CONFIG_CRYPTO_ARC4 is not set
34332 +# CONFIG_CRYPTO_KHAZAD is not set
34333 +# CONFIG_CRYPTO_ANUBIS is not set
34334 +# CONFIG_CRYPTO_SEED is not set
34335 +# CONFIG_CRYPTO_SALSA20 is not set
34336 +# CONFIG_CRYPTO_DEFLATE is not set
34337 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
34338 +# CONFIG_CRYPTO_CRC32C is not set
34339 +# CONFIG_CRYPTO_CAMELLIA is not set
34340 +# CONFIG_CRYPTO_AUTHENC is not set
34341 +# CONFIG_CRYPTO_LZO is not set
34342 +CONFIG_CRYPTO_HW=y
34343 +# CONFIG_PPC_CLOCK is not set
34344 +CONFIG_PPC_LIB_RHEAP=y
34345 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8540_ads_defconfig
34346 ===================================================================
34347 --- /dev/null
34348 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8540_ads_defconfig
34349 @@ -0,0 +1,796 @@
34350 +#
34351 +# Automatically generated make config: don't edit
34352 +# Linux kernel version: 2.6.25-rc6
34353 +# Mon Mar 24 08:48:25 2008
34354 +#
34355 +# CONFIG_PPC64 is not set
34356 +
34357 +#
34358 +# Processor support
34359 +#
34360 +# CONFIG_6xx is not set
34361 +CONFIG_PPC_85xx=y
34362 +# CONFIG_PPC_8xx is not set
34363 +# CONFIG_40x is not set
34364 +# CONFIG_44x is not set
34365 +# CONFIG_E200 is not set
34366 +CONFIG_E500=y
34367 +CONFIG_BOOKE=y
34368 +CONFIG_FSL_BOOKE=y
34369 +CONFIG_FSL_EMB_PERFMON=y
34370 +# CONFIG_PHYS_64BIT is not set
34371 +CONFIG_SPE=y
34372 +# CONFIG_PPC_MM_SLICES is not set
34373 +CONFIG_PPC32=y
34374 +CONFIG_WORD_SIZE=32
34375 +CONFIG_PPC_MERGE=y
34376 +CONFIG_MMU=y
34377 +CONFIG_GENERIC_CMOS_UPDATE=y
34378 +CONFIG_GENERIC_TIME=y
34379 +CONFIG_GENERIC_TIME_VSYSCALL=y
34380 +CONFIG_GENERIC_CLOCKEVENTS=y
34381 +CONFIG_GENERIC_HARDIRQS=y
34382 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
34383 +CONFIG_IRQ_PER_CPU=y
34384 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
34385 +CONFIG_ARCH_HAS_ILOG2_U32=y
34386 +CONFIG_GENERIC_HWEIGHT=y
34387 +CONFIG_GENERIC_CALIBRATE_DELAY=y
34388 +CONFIG_GENERIC_FIND_NEXT_BIT=y
34389 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
34390 +CONFIG_PPC=y
34391 +CONFIG_EARLY_PRINTK=y
34392 +CONFIG_GENERIC_NVRAM=y
34393 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
34394 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
34395 +CONFIG_PPC_OF=y
34396 +CONFIG_OF=y
34397 +CONFIG_PPC_UDBG_16550=y
34398 +# CONFIG_GENERIC_TBSYNC is not set
34399 +CONFIG_AUDIT_ARCH=y
34400 +CONFIG_GENERIC_BUG=y
34401 +CONFIG_DEFAULT_UIMAGE=y
34402 +# CONFIG_PPC_DCR_NATIVE is not set
34403 +# CONFIG_PPC_DCR_MMIO is not set
34404 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
34405 +
34406 +#
34407 +# General setup
34408 +#
34409 +CONFIG_EXPERIMENTAL=y
34410 +CONFIG_BROKEN_ON_SMP=y
34411 +CONFIG_INIT_ENV_ARG_LIMIT=32
34412 +CONFIG_LOCALVERSION=""
34413 +CONFIG_LOCALVERSION_AUTO=y
34414 +CONFIG_SWAP=y
34415 +CONFIG_SYSVIPC=y
34416 +CONFIG_SYSVIPC_SYSCTL=y
34417 +# CONFIG_POSIX_MQUEUE is not set
34418 +# CONFIG_BSD_PROCESS_ACCT is not set
34419 +# CONFIG_TASKSTATS is not set
34420 +# CONFIG_AUDIT is not set
34421 +# CONFIG_IKCONFIG is not set
34422 +CONFIG_LOG_BUF_SHIFT=14
34423 +# CONFIG_CGROUPS is not set
34424 +CONFIG_GROUP_SCHED=y
34425 +# CONFIG_FAIR_GROUP_SCHED is not set
34426 +# CONFIG_RT_GROUP_SCHED is not set
34427 +CONFIG_USER_SCHED=y
34428 +# CONFIG_CGROUP_SCHED is not set
34429 +CONFIG_SYSFS_DEPRECATED=y
34430 +CONFIG_SYSFS_DEPRECATED_V2=y
34431 +# CONFIG_RELAY is not set
34432 +# CONFIG_NAMESPACES is not set
34433 +CONFIG_BLK_DEV_INITRD=y
34434 +CONFIG_INITRAMFS_SOURCE=""
34435 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
34436 +CONFIG_SYSCTL=y
34437 +CONFIG_EMBEDDED=y
34438 +CONFIG_SYSCTL_SYSCALL=y
34439 +CONFIG_KALLSYMS=y
34440 +# CONFIG_KALLSYMS_ALL is not set
34441 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
34442 +CONFIG_HOTPLUG=y
34443 +CONFIG_PRINTK=y
34444 +CONFIG_BUG=y
34445 +CONFIG_ELF_CORE=y
34446 +CONFIG_COMPAT_BRK=y
34447 +CONFIG_BASE_FULL=y
34448 +CONFIG_FUTEX=y
34449 +CONFIG_ANON_INODES=y
34450 +CONFIG_EPOLL=y
34451 +CONFIG_SIGNALFD=y
34452 +CONFIG_TIMERFD=y
34453 +CONFIG_EVENTFD=y
34454 +CONFIG_SHMEM=y
34455 +CONFIG_VM_EVENT_COUNTERS=y
34456 +CONFIG_SLUB_DEBUG=y
34457 +# CONFIG_SLAB is not set
34458 +CONFIG_SLUB=y
34459 +# CONFIG_SLOB is not set
34460 +# CONFIG_PROFILING is not set
34461 +# CONFIG_MARKERS is not set
34462 +CONFIG_HAVE_OPROFILE=y
34463 +CONFIG_HAVE_KPROBES=y
34464 +CONFIG_HAVE_KRETPROBES=y
34465 +CONFIG_PROC_PAGE_MONITOR=y
34466 +CONFIG_SLABINFO=y
34467 +CONFIG_RT_MUTEXES=y
34468 +# CONFIG_TINY_SHMEM is not set
34469 +CONFIG_BASE_SMALL=0
34470 +# CONFIG_MODULES is not set
34471 +CONFIG_BLOCK=y
34472 +# CONFIG_LBD is not set
34473 +# CONFIG_BLK_DEV_IO_TRACE is not set
34474 +# CONFIG_LSF is not set
34475 +# CONFIG_BLK_DEV_BSG is not set
34476 +
34477 +#
34478 +# IO Schedulers
34479 +#
34480 +CONFIG_IOSCHED_NOOP=y
34481 +CONFIG_IOSCHED_AS=y
34482 +CONFIG_IOSCHED_DEADLINE=y
34483 +CONFIG_IOSCHED_CFQ=y
34484 +CONFIG_DEFAULT_AS=y
34485 +# CONFIG_DEFAULT_DEADLINE is not set
34486 +# CONFIG_DEFAULT_CFQ is not set
34487 +# CONFIG_DEFAULT_NOOP is not set
34488 +CONFIG_DEFAULT_IOSCHED="anticipatory"
34489 +CONFIG_CLASSIC_RCU=y
34490 +
34491 +#
34492 +# Platform support
34493 +#
34494 +# CONFIG_PPC_MPC512x is not set
34495 +# CONFIG_PPC_MPC5121 is not set
34496 +# CONFIG_PPC_CELL is not set
34497 +# CONFIG_PPC_CELL_NATIVE is not set
34498 +# CONFIG_PQ2ADS is not set
34499 +CONFIG_MPC85xx=y
34500 +CONFIG_MPC8540_ADS=y
34501 +# CONFIG_MPC8560_ADS is not set
34502 +# CONFIG_MPC85xx_CDS is not set
34503 +# CONFIG_MPC85xx_MDS is not set
34504 +# CONFIG_MPC85xx_DS is not set
34505 +# CONFIG_STX_GP3 is not set
34506 +# CONFIG_TQM8540 is not set
34507 +# CONFIG_TQM8541 is not set
34508 +# CONFIG_TQM8555 is not set
34509 +# CONFIG_TQM8560 is not set
34510 +# CONFIG_SBC8548 is not set
34511 +# CONFIG_SBC8560 is not set
34512 +# CONFIG_IPIC is not set
34513 +CONFIG_MPIC=y
34514 +# CONFIG_MPIC_WEIRD is not set
34515 +# CONFIG_PPC_I8259 is not set
34516 +# CONFIG_PPC_RTAS is not set
34517 +# CONFIG_MMIO_NVRAM is not set
34518 +# CONFIG_PPC_MPC106 is not set
34519 +# CONFIG_PPC_970_NAP is not set
34520 +# CONFIG_PPC_INDIRECT_IO is not set
34521 +# CONFIG_GENERIC_IOMAP is not set
34522 +# CONFIG_CPU_FREQ is not set
34523 +# CONFIG_CPM2 is not set
34524 +# CONFIG_FSL_ULI1575 is not set
34525 +
34526 +#
34527 +# Kernel options
34528 +#
34529 +# CONFIG_HIGHMEM is not set
34530 +CONFIG_TICK_ONESHOT=y
34531 +CONFIG_NO_HZ=y
34532 +CONFIG_HIGH_RES_TIMERS=y
34533 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
34534 +# CONFIG_HZ_100 is not set
34535 +CONFIG_HZ_250=y
34536 +# CONFIG_HZ_300 is not set
34537 +# CONFIG_HZ_1000 is not set
34538 +CONFIG_HZ=250
34539 +# CONFIG_SCHED_HRTICK is not set
34540 +CONFIG_PREEMPT_NONE=y
34541 +# CONFIG_PREEMPT_VOLUNTARY is not set
34542 +# CONFIG_PREEMPT is not set
34543 +CONFIG_BINFMT_ELF=y
34544 +CONFIG_BINFMT_MISC=y
34545 +CONFIG_MATH_EMULATION=y
34546 +# CONFIG_IOMMU_HELPER is not set
34547 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
34548 +CONFIG_ARCH_HAS_WALK_MEMORY=y
34549 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
34550 +CONFIG_ARCH_FLATMEM_ENABLE=y
34551 +CONFIG_ARCH_POPULATES_NODE_MAP=y
34552 +CONFIG_SELECT_MEMORY_MODEL=y
34553 +CONFIG_FLATMEM_MANUAL=y
34554 +# CONFIG_DISCONTIGMEM_MANUAL is not set
34555 +# CONFIG_SPARSEMEM_MANUAL is not set
34556 +CONFIG_FLATMEM=y
34557 +CONFIG_FLAT_NODE_MEM_MAP=y
34558 +# CONFIG_SPARSEMEM_STATIC is not set
34559 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
34560 +CONFIG_SPLIT_PTLOCK_CPUS=4
34561 +# CONFIG_RESOURCES_64BIT is not set
34562 +CONFIG_ZONE_DMA_FLAG=1
34563 +CONFIG_BOUNCE=y
34564 +CONFIG_VIRT_TO_BUS=y
34565 +CONFIG_PROC_DEVICETREE=y
34566 +# CONFIG_CMDLINE_BOOL is not set
34567 +# CONFIG_PM is not set
34568 +# CONFIG_SECCOMP is not set
34569 +CONFIG_ISA_DMA_API=y
34570 +
34571 +#
34572 +# Bus options
34573 +#
34574 +CONFIG_ZONE_DMA=y
34575 +CONFIG_FSL_SOC=y
34576 +# CONFIG_PCI is not set
34577 +# CONFIG_PCI_DOMAINS is not set
34578 +# CONFIG_PCI_SYSCALL is not set
34579 +# CONFIG_ARCH_SUPPORTS_MSI is not set
34580 +# CONFIG_PCCARD is not set
34581 +
34582 +#
34583 +# Advanced setup
34584 +#
34585 +# CONFIG_ADVANCED_OPTIONS is not set
34586 +
34587 +#
34588 +# Default settings for advanced configuration options are used
34589 +#
34590 +CONFIG_HIGHMEM_START=0xfe000000
34591 +CONFIG_LOWMEM_SIZE=0x30000000
34592 +CONFIG_KERNEL_START=0xc0000000
34593 +CONFIG_TASK_SIZE=0xc0000000
34594 +CONFIG_BOOT_LOAD=0x00800000
34595 +
34596 +#
34597 +# Networking
34598 +#
34599 +CONFIG_NET=y
34600 +
34601 +#
34602 +# Networking options
34603 +#
34604 +CONFIG_PACKET=y
34605 +# CONFIG_PACKET_MMAP is not set
34606 +CONFIG_UNIX=y
34607 +CONFIG_XFRM=y
34608 +CONFIG_XFRM_USER=y
34609 +# CONFIG_XFRM_SUB_POLICY is not set
34610 +# CONFIG_XFRM_MIGRATE is not set
34611 +# CONFIG_XFRM_STATISTICS is not set
34612 +# CONFIG_NET_KEY is not set
34613 +CONFIG_INET=y
34614 +CONFIG_IP_MULTICAST=y
34615 +# CONFIG_IP_ADVANCED_ROUTER is not set
34616 +CONFIG_IP_FIB_HASH=y
34617 +CONFIG_IP_PNP=y
34618 +CONFIG_IP_PNP_DHCP=y
34619 +CONFIG_IP_PNP_BOOTP=y
34620 +# CONFIG_IP_PNP_RARP is not set
34621 +# CONFIG_NET_IPIP is not set
34622 +# CONFIG_NET_IPGRE is not set
34623 +# CONFIG_IP_MROUTE is not set
34624 +# CONFIG_ARPD is not set
34625 +CONFIG_SYN_COOKIES=y
34626 +# CONFIG_INET_AH is not set
34627 +# CONFIG_INET_ESP is not set
34628 +# CONFIG_INET_IPCOMP is not set
34629 +# CONFIG_INET_XFRM_TUNNEL is not set
34630 +# CONFIG_INET_TUNNEL is not set
34631 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
34632 +CONFIG_INET_XFRM_MODE_TUNNEL=y
34633 +CONFIG_INET_XFRM_MODE_BEET=y
34634 +# CONFIG_INET_LRO is not set
34635 +CONFIG_INET_DIAG=y
34636 +CONFIG_INET_TCP_DIAG=y
34637 +# CONFIG_TCP_CONG_ADVANCED is not set
34638 +CONFIG_TCP_CONG_CUBIC=y
34639 +CONFIG_DEFAULT_TCP_CONG="cubic"
34640 +# CONFIG_TCP_MD5SIG is not set
34641 +# CONFIG_IPV6 is not set
34642 +# CONFIG_INET6_XFRM_TUNNEL is not set
34643 +# CONFIG_INET6_TUNNEL is not set
34644 +# CONFIG_NETWORK_SECMARK is not set
34645 +# CONFIG_NETFILTER is not set
34646 +# CONFIG_IP_DCCP is not set
34647 +# CONFIG_IP_SCTP is not set
34648 +# CONFIG_TIPC is not set
34649 +# CONFIG_ATM is not set
34650 +# CONFIG_BRIDGE is not set
34651 +# CONFIG_VLAN_8021Q is not set
34652 +# CONFIG_DECNET is not set
34653 +# CONFIG_LLC2 is not set
34654 +# CONFIG_IPX is not set
34655 +# CONFIG_ATALK is not set
34656 +# CONFIG_X25 is not set
34657 +# CONFIG_LAPB is not set
34658 +# CONFIG_ECONET is not set
34659 +# CONFIG_WAN_ROUTER is not set
34660 +# CONFIG_NET_SCHED is not set
34661 +
34662 +#
34663 +# Network testing
34664 +#
34665 +# CONFIG_NET_PKTGEN is not set
34666 +# CONFIG_HAMRADIO is not set
34667 +# CONFIG_CAN is not set
34668 +# CONFIG_IRDA is not set
34669 +# CONFIG_BT is not set
34670 +# CONFIG_AF_RXRPC is not set
34671 +
34672 +#
34673 +# Wireless
34674 +#
34675 +# CONFIG_CFG80211 is not set
34676 +# CONFIG_WIRELESS_EXT is not set
34677 +# CONFIG_MAC80211 is not set
34678 +# CONFIG_IEEE80211 is not set
34679 +# CONFIG_RFKILL is not set
34680 +# CONFIG_NET_9P is not set
34681 +
34682 +#
34683 +# Device Drivers
34684 +#
34685 +
34686 +#
34687 +# Generic Driver Options
34688 +#
34689 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
34690 +CONFIG_STANDALONE=y
34691 +CONFIG_PREVENT_FIRMWARE_BUILD=y
34692 +# CONFIG_FW_LOADER is not set
34693 +# CONFIG_DEBUG_DRIVER is not set
34694 +# CONFIG_DEBUG_DEVRES is not set
34695 +# CONFIG_SYS_HYPERVISOR is not set
34696 +# CONFIG_CONNECTOR is not set
34697 +# CONFIG_MTD is not set
34698 +CONFIG_OF_DEVICE=y
34699 +# CONFIG_PARPORT is not set
34700 +CONFIG_BLK_DEV=y
34701 +# CONFIG_BLK_DEV_FD is not set
34702 +# CONFIG_BLK_DEV_COW_COMMON is not set
34703 +CONFIG_BLK_DEV_LOOP=y
34704 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
34705 +# CONFIG_BLK_DEV_NBD is not set
34706 +CONFIG_BLK_DEV_RAM=y
34707 +CONFIG_BLK_DEV_RAM_COUNT=16
34708 +CONFIG_BLK_DEV_RAM_SIZE=32768
34709 +# CONFIG_BLK_DEV_XIP is not set
34710 +# CONFIG_CDROM_PKTCDVD is not set
34711 +# CONFIG_ATA_OVER_ETH is not set
34712 +CONFIG_MISC_DEVICES=y
34713 +# CONFIG_EEPROM_93CX6 is not set
34714 +# CONFIG_ENCLOSURE_SERVICES is not set
34715 +CONFIG_HAVE_IDE=y
34716 +# CONFIG_IDE is not set
34717 +
34718 +#
34719 +# SCSI device support
34720 +#
34721 +# CONFIG_RAID_ATTRS is not set
34722 +# CONFIG_SCSI is not set
34723 +# CONFIG_SCSI_DMA is not set
34724 +# CONFIG_SCSI_NETLINK is not set
34725 +# CONFIG_ATA is not set
34726 +# CONFIG_MD is not set
34727 +# CONFIG_MACINTOSH_DRIVERS is not set
34728 +CONFIG_NETDEVICES=y
34729 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
34730 +# CONFIG_DUMMY is not set
34731 +# CONFIG_BONDING is not set
34732 +# CONFIG_MACVLAN is not set
34733 +# CONFIG_EQUALIZER is not set
34734 +# CONFIG_TUN is not set
34735 +# CONFIG_VETH is not set
34736 +CONFIG_PHYLIB=y
34737 +
34738 +#
34739 +# MII PHY device drivers
34740 +#
34741 +# CONFIG_MARVELL_PHY is not set
34742 +# CONFIG_DAVICOM_PHY is not set
34743 +# CONFIG_QSEMI_PHY is not set
34744 +# CONFIG_LXT_PHY is not set
34745 +# CONFIG_CICADA_PHY is not set
34746 +# CONFIG_VITESSE_PHY is not set
34747 +# CONFIG_SMSC_PHY is not set
34748 +# CONFIG_BROADCOM_PHY is not set
34749 +# CONFIG_ICPLUS_PHY is not set
34750 +# CONFIG_REALTEK_PHY is not set
34751 +# CONFIG_FIXED_PHY is not set
34752 +# CONFIG_MDIO_BITBANG is not set
34753 +CONFIG_NET_ETHERNET=y
34754 +CONFIG_MII=y
34755 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
34756 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
34757 +# CONFIG_IBM_NEW_EMAC_TAH is not set
34758 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
34759 +# CONFIG_B44 is not set
34760 +CONFIG_NETDEV_1000=y
34761 +# CONFIG_E1000E_ENABLED is not set
34762 +CONFIG_GIANFAR=y
34763 +CONFIG_GFAR_NAPI=y
34764 +CONFIG_NETDEV_10000=y
34765 +
34766 +#
34767 +# Wireless LAN
34768 +#
34769 +# CONFIG_WLAN_PRE80211 is not set
34770 +# CONFIG_WLAN_80211 is not set
34771 +# CONFIG_WAN is not set
34772 +# CONFIG_PPP is not set
34773 +# CONFIG_SLIP is not set
34774 +# CONFIG_NETCONSOLE is not set
34775 +# CONFIG_NETPOLL is not set
34776 +# CONFIG_NET_POLL_CONTROLLER is not set
34777 +# CONFIG_ISDN is not set
34778 +# CONFIG_PHONE is not set
34779 +
34780 +#
34781 +# Input device support
34782 +#
34783 +CONFIG_INPUT=y
34784 +# CONFIG_INPUT_FF_MEMLESS is not set
34785 +# CONFIG_INPUT_POLLDEV is not set
34786 +
34787 +#
34788 +# Userland interfaces
34789 +#
34790 +# CONFIG_INPUT_MOUSEDEV is not set
34791 +# CONFIG_INPUT_JOYDEV is not set
34792 +# CONFIG_INPUT_EVDEV is not set
34793 +# CONFIG_INPUT_EVBUG is not set
34794 +
34795 +#
34796 +# Input Device Drivers
34797 +#
34798 +# CONFIG_INPUT_KEYBOARD is not set
34799 +# CONFIG_INPUT_MOUSE is not set
34800 +# CONFIG_INPUT_JOYSTICK is not set
34801 +# CONFIG_INPUT_TABLET is not set
34802 +# CONFIG_INPUT_TOUCHSCREEN is not set
34803 +# CONFIG_INPUT_MISC is not set
34804 +
34805 +#
34806 +# Hardware I/O ports
34807 +#
34808 +# CONFIG_SERIO is not set
34809 +# CONFIG_GAMEPORT is not set
34810 +
34811 +#
34812 +# Character devices
34813 +#
34814 +# CONFIG_VT is not set
34815 +# CONFIG_SERIAL_NONSTANDARD is not set
34816 +
34817 +#
34818 +# Serial drivers
34819 +#
34820 +CONFIG_SERIAL_8250=y
34821 +CONFIG_SERIAL_8250_CONSOLE=y
34822 +CONFIG_SERIAL_8250_NR_UARTS=4
34823 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
34824 +# CONFIG_SERIAL_8250_EXTENDED is not set
34825 +CONFIG_SERIAL_8250_SHARE_IRQ=y
34826 +
34827 +#
34828 +# Non-8250 serial port support
34829 +#
34830 +# CONFIG_SERIAL_UARTLITE is not set
34831 +CONFIG_SERIAL_CORE=y
34832 +CONFIG_SERIAL_CORE_CONSOLE=y
34833 +# CONFIG_SERIAL_OF_PLATFORM is not set
34834 +CONFIG_UNIX98_PTYS=y
34835 +CONFIG_LEGACY_PTYS=y
34836 +CONFIG_LEGACY_PTY_COUNT=256
34837 +# CONFIG_IPMI_HANDLER is not set
34838 +# CONFIG_HW_RANDOM is not set
34839 +# CONFIG_NVRAM is not set
34840 +CONFIG_GEN_RTC=y
34841 +# CONFIG_GEN_RTC_X is not set
34842 +# CONFIG_R3964 is not set
34843 +# CONFIG_RAW_DRIVER is not set
34844 +# CONFIG_TCG_TPM is not set
34845 +# CONFIG_I2C is not set
34846 +
34847 +#
34848 +# SPI support
34849 +#
34850 +# CONFIG_SPI is not set
34851 +# CONFIG_SPI_MASTER is not set
34852 +# CONFIG_W1 is not set
34853 +# CONFIG_POWER_SUPPLY is not set
34854 +CONFIG_HWMON=y
34855 +# CONFIG_HWMON_VID is not set
34856 +# CONFIG_SENSORS_F71805F is not set
34857 +# CONFIG_SENSORS_F71882FG is not set
34858 +# CONFIG_SENSORS_IT87 is not set
34859 +# CONFIG_SENSORS_PC87360 is not set
34860 +# CONFIG_SENSORS_PC87427 is not set
34861 +# CONFIG_SENSORS_SMSC47M1 is not set
34862 +# CONFIG_SENSORS_SMSC47B397 is not set
34863 +# CONFIG_SENSORS_VT1211 is not set
34864 +# CONFIG_SENSORS_W83627HF is not set
34865 +# CONFIG_SENSORS_W83627EHF is not set
34866 +# CONFIG_HWMON_DEBUG_CHIP is not set
34867 +# CONFIG_THERMAL is not set
34868 +# CONFIG_WATCHDOG is not set
34869 +
34870 +#
34871 +# Sonics Silicon Backplane
34872 +#
34873 +CONFIG_SSB_POSSIBLE=y
34874 +# CONFIG_SSB is not set
34875 +
34876 +#
34877 +# Multifunction device drivers
34878 +#
34879 +# CONFIG_MFD_SM501 is not set
34880 +
34881 +#
34882 +# Multimedia devices
34883 +#
34884 +# CONFIG_VIDEO_DEV is not set
34885 +# CONFIG_DVB_CORE is not set
34886 +CONFIG_DAB=y
34887 +
34888 +#
34889 +# Graphics support
34890 +#
34891 +# CONFIG_VGASTATE is not set
34892 +CONFIG_VIDEO_OUTPUT_CONTROL=y
34893 +# CONFIG_FB is not set
34894 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
34895 +
34896 +#
34897 +# Display device support
34898 +#
34899 +# CONFIG_DISPLAY_SUPPORT is not set
34900 +
34901 +#
34902 +# Sound
34903 +#
34904 +# CONFIG_SOUND is not set
34905 +CONFIG_HID_SUPPORT=y
34906 +CONFIG_HID=y
34907 +# CONFIG_HID_DEBUG is not set
34908 +# CONFIG_HIDRAW is not set
34909 +CONFIG_USB_SUPPORT=y
34910 +# CONFIG_USB_ARCH_HAS_HCD is not set
34911 +# CONFIG_USB_ARCH_HAS_OHCI is not set
34912 +# CONFIG_USB_ARCH_HAS_EHCI is not set
34913 +
34914 +#
34915 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
34916 +#
34917 +# CONFIG_USB_GADGET is not set
34918 +# CONFIG_MMC is not set
34919 +# CONFIG_MEMSTICK is not set
34920 +# CONFIG_NEW_LEDS is not set
34921 +# CONFIG_EDAC is not set
34922 +# CONFIG_RTC_CLASS is not set
34923 +# CONFIG_DMADEVICES is not set
34924 +
34925 +#
34926 +# Userspace I/O
34927 +#
34928 +# CONFIG_UIO is not set
34929 +
34930 +#
34931 +# File systems
34932 +#
34933 +CONFIG_EXT2_FS=y
34934 +# CONFIG_EXT2_FS_XATTR is not set
34935 +# CONFIG_EXT2_FS_XIP is not set
34936 +CONFIG_EXT3_FS=y
34937 +CONFIG_EXT3_FS_XATTR=y
34938 +# CONFIG_EXT3_FS_POSIX_ACL is not set
34939 +# CONFIG_EXT3_FS_SECURITY is not set
34940 +# CONFIG_EXT4DEV_FS is not set
34941 +CONFIG_JBD=y
34942 +CONFIG_FS_MBCACHE=y
34943 +# CONFIG_REISERFS_FS is not set
34944 +# CONFIG_JFS_FS is not set
34945 +# CONFIG_FS_POSIX_ACL is not set
34946 +# CONFIG_XFS_FS is not set
34947 +# CONFIG_GFS2_FS is not set
34948 +# CONFIG_OCFS2_FS is not set
34949 +CONFIG_DNOTIFY=y
34950 +CONFIG_INOTIFY=y
34951 +CONFIG_INOTIFY_USER=y
34952 +# CONFIG_QUOTA is not set
34953 +# CONFIG_AUTOFS_FS is not set
34954 +# CONFIG_AUTOFS4_FS is not set
34955 +# CONFIG_FUSE_FS is not set
34956 +
34957 +#
34958 +# CD-ROM/DVD Filesystems
34959 +#
34960 +# CONFIG_ISO9660_FS is not set
34961 +# CONFIG_UDF_FS is not set
34962 +
34963 +#
34964 +# DOS/FAT/NT Filesystems
34965 +#
34966 +# CONFIG_MSDOS_FS is not set
34967 +# CONFIG_VFAT_FS is not set
34968 +# CONFIG_NTFS_FS is not set
34969 +
34970 +#
34971 +# Pseudo filesystems
34972 +#
34973 +CONFIG_PROC_FS=y
34974 +CONFIG_PROC_KCORE=y
34975 +CONFIG_PROC_SYSCTL=y
34976 +CONFIG_SYSFS=y
34977 +CONFIG_TMPFS=y
34978 +# CONFIG_TMPFS_POSIX_ACL is not set
34979 +# CONFIG_HUGETLB_PAGE is not set
34980 +# CONFIG_CONFIGFS_FS is not set
34981 +
34982 +#
34983 +# Miscellaneous filesystems
34984 +#
34985 +# CONFIG_ADFS_FS is not set
34986 +# CONFIG_AFFS_FS is not set
34987 +# CONFIG_HFS_FS is not set
34988 +# CONFIG_HFSPLUS_FS is not set
34989 +# CONFIG_BEFS_FS is not set
34990 +# CONFIG_BFS_FS is not set
34991 +# CONFIG_EFS_FS is not set
34992 +# CONFIG_CRAMFS is not set
34993 +# CONFIG_VXFS_FS is not set
34994 +# CONFIG_MINIX_FS is not set
34995 +# CONFIG_HPFS_FS is not set
34996 +# CONFIG_QNX4FS_FS is not set
34997 +# CONFIG_ROMFS_FS is not set
34998 +# CONFIG_SYSV_FS is not set
34999 +# CONFIG_UFS_FS is not set
35000 +CONFIG_NETWORK_FILESYSTEMS=y
35001 +CONFIG_NFS_FS=y
35002 +# CONFIG_NFS_V3 is not set
35003 +# CONFIG_NFS_V4 is not set
35004 +# CONFIG_NFS_DIRECTIO is not set
35005 +# CONFIG_NFSD is not set
35006 +CONFIG_ROOT_NFS=y
35007 +CONFIG_LOCKD=y
35008 +CONFIG_NFS_COMMON=y
35009 +CONFIG_SUNRPC=y
35010 +# CONFIG_SUNRPC_BIND34 is not set
35011 +# CONFIG_RPCSEC_GSS_KRB5 is not set
35012 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
35013 +# CONFIG_SMB_FS is not set
35014 +# CONFIG_CIFS is not set
35015 +# CONFIG_NCP_FS is not set
35016 +# CONFIG_CODA_FS is not set
35017 +# CONFIG_AFS_FS is not set
35018 +
35019 +#
35020 +# Partition Types
35021 +#
35022 +CONFIG_PARTITION_ADVANCED=y
35023 +# CONFIG_ACORN_PARTITION is not set
35024 +# CONFIG_OSF_PARTITION is not set
35025 +# CONFIG_AMIGA_PARTITION is not set
35026 +# CONFIG_ATARI_PARTITION is not set
35027 +# CONFIG_MAC_PARTITION is not set
35028 +# CONFIG_MSDOS_PARTITION is not set
35029 +# CONFIG_LDM_PARTITION is not set
35030 +# CONFIG_SGI_PARTITION is not set
35031 +# CONFIG_ULTRIX_PARTITION is not set
35032 +# CONFIG_SUN_PARTITION is not set
35033 +# CONFIG_KARMA_PARTITION is not set
35034 +# CONFIG_EFI_PARTITION is not set
35035 +# CONFIG_SYSV68_PARTITION is not set
35036 +# CONFIG_NLS is not set
35037 +# CONFIG_DLM is not set
35038 +
35039 +#
35040 +# Library routines
35041 +#
35042 +CONFIG_BITREVERSE=y
35043 +# CONFIG_CRC_CCITT is not set
35044 +# CONFIG_CRC16 is not set
35045 +# CONFIG_CRC_ITU_T is not set
35046 +CONFIG_CRC32=y
35047 +# CONFIG_CRC7 is not set
35048 +# CONFIG_LIBCRC32C is not set
35049 +CONFIG_PLIST=y
35050 +CONFIG_HAS_IOMEM=y
35051 +CONFIG_HAS_IOPORT=y
35052 +CONFIG_HAS_DMA=y
35053 +
35054 +#
35055 +# Kernel hacking
35056 +#
35057 +# CONFIG_PRINTK_TIME is not set
35058 +CONFIG_ENABLE_WARN_DEPRECATED=y
35059 +CONFIG_ENABLE_MUST_CHECK=y
35060 +# CONFIG_MAGIC_SYSRQ is not set
35061 +# CONFIG_UNUSED_SYMBOLS is not set
35062 +# CONFIG_DEBUG_FS is not set
35063 +# CONFIG_HEADERS_CHECK is not set
35064 +CONFIG_DEBUG_KERNEL=y
35065 +# CONFIG_DEBUG_SHIRQ is not set
35066 +CONFIG_DETECT_SOFTLOCKUP=y
35067 +CONFIG_SCHED_DEBUG=y
35068 +# CONFIG_SCHEDSTATS is not set
35069 +# CONFIG_TIMER_STATS is not set
35070 +# CONFIG_SLUB_DEBUG_ON is not set
35071 +# CONFIG_SLUB_STATS is not set
35072 +# CONFIG_DEBUG_RT_MUTEXES is not set
35073 +# CONFIG_RT_MUTEX_TESTER is not set
35074 +# CONFIG_DEBUG_SPINLOCK is not set
35075 +CONFIG_DEBUG_MUTEXES=y
35076 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
35077 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
35078 +# CONFIG_DEBUG_KOBJECT is not set
35079 +# CONFIG_DEBUG_BUGVERBOSE is not set
35080 +# CONFIG_DEBUG_INFO is not set
35081 +# CONFIG_DEBUG_VM is not set
35082 +# CONFIG_DEBUG_LIST is not set
35083 +# CONFIG_DEBUG_SG is not set
35084 +# CONFIG_BOOT_PRINTK_DELAY is not set
35085 +# CONFIG_BACKTRACE_SELF_TEST is not set
35086 +# CONFIG_FAULT_INJECTION is not set
35087 +# CONFIG_SAMPLES is not set
35088 +# CONFIG_DEBUG_STACKOVERFLOW is not set
35089 +# CONFIG_DEBUG_STACK_USAGE is not set
35090 +# CONFIG_DEBUG_PAGEALLOC is not set
35091 +# CONFIG_DEBUGGER is not set
35092 +# CONFIG_BDI_SWITCH is not set
35093 +# CONFIG_PPC_EARLY_DEBUG is not set
35094 +
35095 +#
35096 +# Security options
35097 +#
35098 +# CONFIG_KEYS is not set
35099 +# CONFIG_SECURITY is not set
35100 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
35101 +CONFIG_CRYPTO=y
35102 +# CONFIG_CRYPTO_SEQIV is not set
35103 +# CONFIG_CRYPTO_MANAGER is not set
35104 +# CONFIG_CRYPTO_HMAC is not set
35105 +# CONFIG_CRYPTO_XCBC is not set
35106 +# CONFIG_CRYPTO_NULL is not set
35107 +# CONFIG_CRYPTO_MD4 is not set
35108 +# CONFIG_CRYPTO_MD5 is not set
35109 +# CONFIG_CRYPTO_SHA1 is not set
35110 +# CONFIG_CRYPTO_SHA256 is not set
35111 +# CONFIG_CRYPTO_SHA512 is not set
35112 +# CONFIG_CRYPTO_WP512 is not set
35113 +# CONFIG_CRYPTO_TGR192 is not set
35114 +# CONFIG_CRYPTO_GF128MUL is not set
35115 +# CONFIG_CRYPTO_ECB is not set
35116 +# CONFIG_CRYPTO_CBC is not set
35117 +# CONFIG_CRYPTO_PCBC is not set
35118 +# CONFIG_CRYPTO_LRW is not set
35119 +# CONFIG_CRYPTO_XTS is not set
35120 +# CONFIG_CRYPTO_CTR is not set
35121 +# CONFIG_CRYPTO_GCM is not set
35122 +# CONFIG_CRYPTO_CCM is not set
35123 +# CONFIG_CRYPTO_CRYPTD is not set
35124 +# CONFIG_CRYPTO_DES is not set
35125 +# CONFIG_CRYPTO_FCRYPT is not set
35126 +# CONFIG_CRYPTO_BLOWFISH is not set
35127 +# CONFIG_CRYPTO_TWOFISH is not set
35128 +# CONFIG_CRYPTO_SERPENT is not set
35129 +# CONFIG_CRYPTO_AES is not set
35130 +# CONFIG_CRYPTO_CAST5 is not set
35131 +# CONFIG_CRYPTO_CAST6 is not set
35132 +# CONFIG_CRYPTO_TEA is not set
35133 +# CONFIG_CRYPTO_ARC4 is not set
35134 +# CONFIG_CRYPTO_KHAZAD is not set
35135 +# CONFIG_CRYPTO_ANUBIS is not set
35136 +# CONFIG_CRYPTO_SEED is not set
35137 +# CONFIG_CRYPTO_SALSA20 is not set
35138 +# CONFIG_CRYPTO_DEFLATE is not set
35139 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
35140 +# CONFIG_CRYPTO_CRC32C is not set
35141 +# CONFIG_CRYPTO_CAMELLIA is not set
35142 +# CONFIG_CRYPTO_AUTHENC is not set
35143 +# CONFIG_CRYPTO_LZO is not set
35144 +CONFIG_CRYPTO_HW=y
35145 +# CONFIG_PPC_CLOCK is not set
35146 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8544_ds_defconfig
35147 ===================================================================
35148 --- /dev/null
35149 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8544_ds_defconfig
35150 @@ -0,0 +1,1564 @@
35151 +#
35152 +# Automatically generated make config: don't edit
35153 +# Linux kernel version: 2.6.25-rc7
35154 +# Mon Mar 31 11:37:03 2008
35155 +#
35156 +# CONFIG_PPC64 is not set
35157 +
35158 +#
35159 +# Processor support
35160 +#
35161 +# CONFIG_6xx is not set
35162 +CONFIG_PPC_85xx=y
35163 +# CONFIG_PPC_8xx is not set
35164 +# CONFIG_40x is not set
35165 +# CONFIG_44x is not set
35166 +# CONFIG_E200 is not set
35167 +CONFIG_E500=y
35168 +CONFIG_BOOKE=y
35169 +CONFIG_FSL_BOOKE=y
35170 +CONFIG_FSL_EMB_PERFMON=y
35171 +# CONFIG_PHYS_64BIT is not set
35172 +CONFIG_SPE=y
35173 +# CONFIG_PPC_MM_SLICES is not set
35174 +CONFIG_PPC32=y
35175 +CONFIG_WORD_SIZE=32
35176 +CONFIG_PPC_MERGE=y
35177 +CONFIG_MMU=y
35178 +CONFIG_GENERIC_CMOS_UPDATE=y
35179 +CONFIG_GENERIC_TIME=y
35180 +CONFIG_GENERIC_TIME_VSYSCALL=y
35181 +CONFIG_GENERIC_CLOCKEVENTS=y
35182 +CONFIG_GENERIC_HARDIRQS=y
35183 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
35184 +CONFIG_IRQ_PER_CPU=y
35185 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
35186 +CONFIG_ARCH_HAS_ILOG2_U32=y
35187 +CONFIG_GENERIC_HWEIGHT=y
35188 +CONFIG_GENERIC_CALIBRATE_DELAY=y
35189 +CONFIG_GENERIC_FIND_NEXT_BIT=y
35190 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
35191 +CONFIG_PPC=y
35192 +CONFIG_EARLY_PRINTK=y
35193 +CONFIG_GENERIC_NVRAM=y
35194 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
35195 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
35196 +CONFIG_PPC_OF=y
35197 +CONFIG_OF=y
35198 +CONFIG_PPC_UDBG_16550=y
35199 +# CONFIG_GENERIC_TBSYNC is not set
35200 +CONFIG_AUDIT_ARCH=y
35201 +CONFIG_GENERIC_BUG=y
35202 +CONFIG_DEFAULT_UIMAGE=y
35203 +# CONFIG_PPC_DCR_NATIVE is not set
35204 +# CONFIG_PPC_DCR_MMIO is not set
35205 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
35206 +
35207 +#
35208 +# General setup
35209 +#
35210 +CONFIG_EXPERIMENTAL=y
35211 +CONFIG_BROKEN_ON_SMP=y
35212 +CONFIG_INIT_ENV_ARG_LIMIT=32
35213 +CONFIG_LOCALVERSION=""
35214 +CONFIG_LOCALVERSION_AUTO=y
35215 +CONFIG_SWAP=y
35216 +CONFIG_SYSVIPC=y
35217 +CONFIG_SYSVIPC_SYSCTL=y
35218 +CONFIG_POSIX_MQUEUE=y
35219 +CONFIG_BSD_PROCESS_ACCT=y
35220 +# CONFIG_BSD_PROCESS_ACCT_V3 is not set
35221 +# CONFIG_TASKSTATS is not set
35222 +CONFIG_AUDIT=y
35223 +# CONFIG_AUDITSYSCALL is not set
35224 +CONFIG_IKCONFIG=y
35225 +CONFIG_IKCONFIG_PROC=y
35226 +CONFIG_LOG_BUF_SHIFT=14
35227 +# CONFIG_CGROUPS is not set
35228 +CONFIG_GROUP_SCHED=y
35229 +# CONFIG_FAIR_GROUP_SCHED is not set
35230 +# CONFIG_RT_GROUP_SCHED is not set
35231 +CONFIG_USER_SCHED=y
35232 +# CONFIG_CGROUP_SCHED is not set
35233 +CONFIG_SYSFS_DEPRECATED=y
35234 +CONFIG_SYSFS_DEPRECATED_V2=y
35235 +# CONFIG_RELAY is not set
35236 +# CONFIG_NAMESPACES is not set
35237 +CONFIG_BLK_DEV_INITRD=y
35238 +CONFIG_INITRAMFS_SOURCE=""
35239 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
35240 +CONFIG_SYSCTL=y
35241 +CONFIG_EMBEDDED=y
35242 +CONFIG_SYSCTL_SYSCALL=y
35243 +CONFIG_KALLSYMS=y
35244 +CONFIG_KALLSYMS_ALL=y
35245 +CONFIG_KALLSYMS_EXTRA_PASS=y
35246 +CONFIG_HOTPLUG=y
35247 +CONFIG_PRINTK=y
35248 +CONFIG_BUG=y
35249 +CONFIG_ELF_CORE=y
35250 +CONFIG_COMPAT_BRK=y
35251 +CONFIG_BASE_FULL=y
35252 +CONFIG_FUTEX=y
35253 +CONFIG_ANON_INODES=y
35254 +CONFIG_EPOLL=y
35255 +CONFIG_SIGNALFD=y
35256 +CONFIG_TIMERFD=y
35257 +CONFIG_EVENTFD=y
35258 +CONFIG_SHMEM=y
35259 +CONFIG_VM_EVENT_COUNTERS=y
35260 +CONFIG_SLUB_DEBUG=y
35261 +# CONFIG_SLAB is not set
35262 +CONFIG_SLUB=y
35263 +# CONFIG_SLOB is not set
35264 +# CONFIG_PROFILING is not set
35265 +# CONFIG_MARKERS is not set
35266 +CONFIG_HAVE_OPROFILE=y
35267 +# CONFIG_KPROBES is not set
35268 +CONFIG_HAVE_KPROBES=y
35269 +CONFIG_HAVE_KRETPROBES=y
35270 +CONFIG_PROC_PAGE_MONITOR=y
35271 +CONFIG_SLABINFO=y
35272 +CONFIG_RT_MUTEXES=y
35273 +# CONFIG_TINY_SHMEM is not set
35274 +CONFIG_BASE_SMALL=0
35275 +CONFIG_MODULES=y
35276 +CONFIG_MODULE_UNLOAD=y
35277 +CONFIG_MODULE_FORCE_UNLOAD=y
35278 +CONFIG_MODVERSIONS=y
35279 +# CONFIG_MODULE_SRCVERSION_ALL is not set
35280 +CONFIG_KMOD=y
35281 +CONFIG_BLOCK=y
35282 +CONFIG_LBD=y
35283 +# CONFIG_BLK_DEV_IO_TRACE is not set
35284 +# CONFIG_LSF is not set
35285 +# CONFIG_BLK_DEV_BSG is not set
35286 +
35287 +#
35288 +# IO Schedulers
35289 +#
35290 +CONFIG_IOSCHED_NOOP=y
35291 +CONFIG_IOSCHED_AS=y
35292 +CONFIG_IOSCHED_DEADLINE=y
35293 +CONFIG_IOSCHED_CFQ=y
35294 +# CONFIG_DEFAULT_AS is not set
35295 +# CONFIG_DEFAULT_DEADLINE is not set
35296 +CONFIG_DEFAULT_CFQ=y
35297 +# CONFIG_DEFAULT_NOOP is not set
35298 +CONFIG_DEFAULT_IOSCHED="cfq"
35299 +CONFIG_CLASSIC_RCU=y
35300 +
35301 +#
35302 +# Platform support
35303 +#
35304 +# CONFIG_PPC_MPC512x is not set
35305 +# CONFIG_PPC_MPC5121 is not set
35306 +# CONFIG_PPC_CELL is not set
35307 +# CONFIG_PPC_CELL_NATIVE is not set
35308 +# CONFIG_PQ2ADS is not set
35309 +CONFIG_MPC85xx=y
35310 +# CONFIG_MPC8540_ADS is not set
35311 +# CONFIG_MPC8560_ADS is not set
35312 +# CONFIG_MPC85xx_CDS is not set
35313 +# CONFIG_MPC85xx_MDS is not set
35314 +CONFIG_MPC85xx_DS=y
35315 +# CONFIG_KSI8560 is not set
35316 +# CONFIG_STX_GP3 is not set
35317 +# CONFIG_TQM8540 is not set
35318 +# CONFIG_TQM8541 is not set
35319 +# CONFIG_TQM8555 is not set
35320 +# CONFIG_TQM8560 is not set
35321 +# CONFIG_SBC8548 is not set
35322 +# CONFIG_SBC8560 is not set
35323 +# CONFIG_IPIC is not set
35324 +CONFIG_MPIC=y
35325 +# CONFIG_MPIC_WEIRD is not set
35326 +CONFIG_PPC_I8259=y
35327 +# CONFIG_PPC_RTAS is not set
35328 +# CONFIG_MMIO_NVRAM is not set
35329 +# CONFIG_PPC_MPC106 is not set
35330 +# CONFIG_PPC_970_NAP is not set
35331 +# CONFIG_PPC_INDIRECT_IO is not set
35332 +# CONFIG_GENERIC_IOMAP is not set
35333 +# CONFIG_CPU_FREQ is not set
35334 +# CONFIG_CPM2 is not set
35335 +CONFIG_FSL_ULI1575=y
35336 +
35337 +#
35338 +# Kernel options
35339 +#
35340 +CONFIG_HIGHMEM=y
35341 +CONFIG_TICK_ONESHOT=y
35342 +CONFIG_NO_HZ=y
35343 +CONFIG_HIGH_RES_TIMERS=y
35344 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
35345 +# CONFIG_HZ_100 is not set
35346 +CONFIG_HZ_250=y
35347 +# CONFIG_HZ_300 is not set
35348 +# CONFIG_HZ_1000 is not set
35349 +CONFIG_HZ=250
35350 +# CONFIG_SCHED_HRTICK is not set
35351 +CONFIG_PREEMPT_NONE=y
35352 +# CONFIG_PREEMPT_VOLUNTARY is not set
35353 +# CONFIG_PREEMPT is not set
35354 +CONFIG_BINFMT_ELF=y
35355 +CONFIG_BINFMT_MISC=m
35356 +CONFIG_FORCE_MAX_ZONEORDER=11
35357 +CONFIG_MATH_EMULATION=y
35358 +# CONFIG_IOMMU_HELPER is not set
35359 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
35360 +CONFIG_ARCH_HAS_WALK_MEMORY=y
35361 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
35362 +CONFIG_ARCH_FLATMEM_ENABLE=y
35363 +CONFIG_ARCH_POPULATES_NODE_MAP=y
35364 +CONFIG_SELECT_MEMORY_MODEL=y
35365 +CONFIG_FLATMEM_MANUAL=y
35366 +# CONFIG_DISCONTIGMEM_MANUAL is not set
35367 +# CONFIG_SPARSEMEM_MANUAL is not set
35368 +CONFIG_FLATMEM=y
35369 +CONFIG_FLAT_NODE_MEM_MAP=y
35370 +# CONFIG_SPARSEMEM_STATIC is not set
35371 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
35372 +CONFIG_SPLIT_PTLOCK_CPUS=4
35373 +# CONFIG_RESOURCES_64BIT is not set
35374 +CONFIG_ZONE_DMA_FLAG=1
35375 +CONFIG_BOUNCE=y
35376 +CONFIG_VIRT_TO_BUS=y
35377 +CONFIG_PROC_DEVICETREE=y
35378 +# CONFIG_CMDLINE_BOOL is not set
35379 +# CONFIG_PM is not set
35380 +CONFIG_SECCOMP=y
35381 +CONFIG_ISA_DMA_API=y
35382 +
35383 +#
35384 +# Bus options
35385 +#
35386 +CONFIG_ZONE_DMA=y
35387 +CONFIG_GENERIC_ISA_DMA=y
35388 +CONFIG_PPC_INDIRECT_PCI=y
35389 +CONFIG_FSL_SOC=y
35390 +CONFIG_FSL_PCI=y
35391 +CONFIG_PCI=y
35392 +CONFIG_PCI_DOMAINS=y
35393 +CONFIG_PCI_SYSCALL=y
35394 +# CONFIG_PCIEPORTBUS is not set
35395 +CONFIG_ARCH_SUPPORTS_MSI=y
35396 +# CONFIG_PCI_MSI is not set
35397 +CONFIG_PCI_LEGACY=y
35398 +# CONFIG_PCI_DEBUG is not set
35399 +# CONFIG_PCCARD is not set
35400 +# CONFIG_HOTPLUG_PCI is not set
35401 +
35402 +#
35403 +# Advanced setup
35404 +#
35405 +# CONFIG_ADVANCED_OPTIONS is not set
35406 +
35407 +#
35408 +# Default settings for advanced configuration options are used
35409 +#
35410 +CONFIG_HIGHMEM_START=0xfe000000
35411 +CONFIG_LOWMEM_SIZE=0x30000000
35412 +CONFIG_KERNEL_START=0xc0000000
35413 +CONFIG_TASK_SIZE=0xc0000000
35414 +CONFIG_BOOT_LOAD=0x00800000
35415 +
35416 +#
35417 +# Networking
35418 +#
35419 +CONFIG_NET=y
35420 +
35421 +#
35422 +# Networking options
35423 +#
35424 +CONFIG_PACKET=y
35425 +# CONFIG_PACKET_MMAP is not set
35426 +CONFIG_UNIX=y
35427 +CONFIG_XFRM=y
35428 +CONFIG_XFRM_USER=y
35429 +# CONFIG_XFRM_SUB_POLICY is not set
35430 +# CONFIG_XFRM_MIGRATE is not set
35431 +# CONFIG_XFRM_STATISTICS is not set
35432 +CONFIG_NET_KEY=m
35433 +# CONFIG_NET_KEY_MIGRATE is not set
35434 +CONFIG_INET=y
35435 +CONFIG_IP_MULTICAST=y
35436 +CONFIG_IP_ADVANCED_ROUTER=y
35437 +CONFIG_ASK_IP_FIB_HASH=y
35438 +# CONFIG_IP_FIB_TRIE is not set
35439 +CONFIG_IP_FIB_HASH=y
35440 +CONFIG_IP_MULTIPLE_TABLES=y
35441 +CONFIG_IP_ROUTE_MULTIPATH=y
35442 +CONFIG_IP_ROUTE_VERBOSE=y
35443 +CONFIG_IP_PNP=y
35444 +CONFIG_IP_PNP_DHCP=y
35445 +CONFIG_IP_PNP_BOOTP=y
35446 +CONFIG_IP_PNP_RARP=y
35447 +CONFIG_NET_IPIP=y
35448 +CONFIG_NET_IPGRE=y
35449 +CONFIG_NET_IPGRE_BROADCAST=y
35450 +CONFIG_IP_MROUTE=y
35451 +CONFIG_IP_PIMSM_V1=y
35452 +CONFIG_IP_PIMSM_V2=y
35453 +CONFIG_ARPD=y
35454 +# CONFIG_SYN_COOKIES is not set
35455 +# CONFIG_INET_AH is not set
35456 +# CONFIG_INET_ESP is not set
35457 +# CONFIG_INET_IPCOMP is not set
35458 +# CONFIG_INET_XFRM_TUNNEL is not set
35459 +CONFIG_INET_TUNNEL=y
35460 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
35461 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
35462 +# CONFIG_INET_XFRM_MODE_BEET is not set
35463 +# CONFIG_INET_LRO is not set
35464 +CONFIG_INET_DIAG=y
35465 +CONFIG_INET_TCP_DIAG=y
35466 +# CONFIG_TCP_CONG_ADVANCED is not set
35467 +CONFIG_TCP_CONG_CUBIC=y
35468 +CONFIG_DEFAULT_TCP_CONG="cubic"
35469 +# CONFIG_TCP_MD5SIG is not set
35470 +CONFIG_IPV6=y
35471 +# CONFIG_IPV6_PRIVACY is not set
35472 +# CONFIG_IPV6_ROUTER_PREF is not set
35473 +# CONFIG_IPV6_OPTIMISTIC_DAD is not set
35474 +# CONFIG_INET6_AH is not set
35475 +# CONFIG_INET6_ESP is not set
35476 +# CONFIG_INET6_IPCOMP is not set
35477 +# CONFIG_IPV6_MIP6 is not set
35478 +# CONFIG_INET6_XFRM_TUNNEL is not set
35479 +# CONFIG_INET6_TUNNEL is not set
35480 +CONFIG_INET6_XFRM_MODE_TRANSPORT=y
35481 +CONFIG_INET6_XFRM_MODE_TUNNEL=y
35482 +CONFIG_INET6_XFRM_MODE_BEET=y
35483 +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
35484 +CONFIG_IPV6_SIT=y
35485 +# CONFIG_IPV6_TUNNEL is not set
35486 +# CONFIG_IPV6_MULTIPLE_TABLES is not set
35487 +# CONFIG_NETWORK_SECMARK is not set
35488 +# CONFIG_NETFILTER is not set
35489 +# CONFIG_IP_DCCP is not set
35490 +CONFIG_IP_SCTP=m
35491 +# CONFIG_SCTP_DBG_MSG is not set
35492 +# CONFIG_SCTP_DBG_OBJCNT is not set
35493 +# CONFIG_SCTP_HMAC_NONE is not set
35494 +# CONFIG_SCTP_HMAC_SHA1 is not set
35495 +CONFIG_SCTP_HMAC_MD5=y
35496 +# CONFIG_TIPC is not set
35497 +# CONFIG_ATM is not set
35498 +# CONFIG_BRIDGE is not set
35499 +# CONFIG_VLAN_8021Q is not set
35500 +# CONFIG_DECNET is not set
35501 +# CONFIG_LLC2 is not set
35502 +# CONFIG_IPX is not set
35503 +# CONFIG_ATALK is not set
35504 +# CONFIG_X25 is not set
35505 +# CONFIG_LAPB is not set
35506 +# CONFIG_ECONET is not set
35507 +# CONFIG_WAN_ROUTER is not set
35508 +# CONFIG_NET_SCHED is not set
35509 +
35510 +#
35511 +# Network testing
35512 +#
35513 +# CONFIG_NET_PKTGEN is not set
35514 +# CONFIG_HAMRADIO is not set
35515 +# CONFIG_CAN is not set
35516 +# CONFIG_IRDA is not set
35517 +# CONFIG_BT is not set
35518 +# CONFIG_AF_RXRPC is not set
35519 +CONFIG_FIB_RULES=y
35520 +
35521 +#
35522 +# Wireless
35523 +#
35524 +# CONFIG_CFG80211 is not set
35525 +# CONFIG_WIRELESS_EXT is not set
35526 +# CONFIG_MAC80211 is not set
35527 +# CONFIG_IEEE80211 is not set
35528 +# CONFIG_RFKILL is not set
35529 +# CONFIG_NET_9P is not set
35530 +
35531 +#
35532 +# Device Drivers
35533 +#
35534 +
35535 +#
35536 +# Generic Driver Options
35537 +#
35538 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
35539 +CONFIG_STANDALONE=y
35540 +CONFIG_PREVENT_FIRMWARE_BUILD=y
35541 +CONFIG_FW_LOADER=y
35542 +# CONFIG_DEBUG_DRIVER is not set
35543 +# CONFIG_DEBUG_DEVRES is not set
35544 +# CONFIG_SYS_HYPERVISOR is not set
35545 +# CONFIG_CONNECTOR is not set
35546 +# CONFIG_MTD is not set
35547 +CONFIG_OF_DEVICE=y
35548 +# CONFIG_PARPORT is not set
35549 +CONFIG_BLK_DEV=y
35550 +# CONFIG_BLK_DEV_FD is not set
35551 +# CONFIG_BLK_CPQ_DA is not set
35552 +# CONFIG_BLK_CPQ_CISS_DA is not set
35553 +# CONFIG_BLK_DEV_DAC960 is not set
35554 +# CONFIG_BLK_DEV_UMEM is not set
35555 +# CONFIG_BLK_DEV_COW_COMMON is not set
35556 +CONFIG_BLK_DEV_LOOP=y
35557 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
35558 +CONFIG_BLK_DEV_NBD=y
35559 +# CONFIG_BLK_DEV_SX8 is not set
35560 +# CONFIG_BLK_DEV_UB is not set
35561 +CONFIG_BLK_DEV_RAM=y
35562 +CONFIG_BLK_DEV_RAM_COUNT=16
35563 +CONFIG_BLK_DEV_RAM_SIZE=131072
35564 +# CONFIG_BLK_DEV_XIP is not set
35565 +# CONFIG_CDROM_PKTCDVD is not set
35566 +# CONFIG_ATA_OVER_ETH is not set
35567 +CONFIG_MISC_DEVICES=y
35568 +# CONFIG_PHANTOM is not set
35569 +# CONFIG_EEPROM_93CX6 is not set
35570 +# CONFIG_SGI_IOC4 is not set
35571 +# CONFIG_TIFM_CORE is not set
35572 +# CONFIG_ENCLOSURE_SERVICES is not set
35573 +CONFIG_HAVE_IDE=y
35574 +# CONFIG_IDE is not set
35575 +
35576 +#
35577 +# SCSI device support
35578 +#
35579 +# CONFIG_RAID_ATTRS is not set
35580 +CONFIG_SCSI=y
35581 +CONFIG_SCSI_DMA=y
35582 +# CONFIG_SCSI_TGT is not set
35583 +# CONFIG_SCSI_NETLINK is not set
35584 +CONFIG_SCSI_PROC_FS=y
35585 +
35586 +#
35587 +# SCSI support type (disk, tape, CD-ROM)
35588 +#
35589 +CONFIG_BLK_DEV_SD=y
35590 +CONFIG_CHR_DEV_ST=y
35591 +# CONFIG_CHR_DEV_OSST is not set
35592 +CONFIG_BLK_DEV_SR=y
35593 +# CONFIG_BLK_DEV_SR_VENDOR is not set
35594 +CONFIG_CHR_DEV_SG=y
35595 +# CONFIG_CHR_DEV_SCH is not set
35596 +
35597 +#
35598 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
35599 +#
35600 +CONFIG_SCSI_MULTI_LUN=y
35601 +# CONFIG_SCSI_CONSTANTS is not set
35602 +CONFIG_SCSI_LOGGING=y
35603 +# CONFIG_SCSI_SCAN_ASYNC is not set
35604 +CONFIG_SCSI_WAIT_SCAN=m
35605 +
35606 +#
35607 +# SCSI Transports
35608 +#
35609 +# CONFIG_SCSI_SPI_ATTRS is not set
35610 +# CONFIG_SCSI_FC_ATTRS is not set
35611 +# CONFIG_SCSI_ISCSI_ATTRS is not set
35612 +# CONFIG_SCSI_SAS_LIBSAS is not set
35613 +# CONFIG_SCSI_SRP_ATTRS is not set
35614 +CONFIG_SCSI_LOWLEVEL=y
35615 +# CONFIG_ISCSI_TCP is not set
35616 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
35617 +# CONFIG_SCSI_3W_9XXX is not set
35618 +# CONFIG_SCSI_ACARD is not set
35619 +# CONFIG_SCSI_AACRAID is not set
35620 +# CONFIG_SCSI_AIC7XXX is not set
35621 +# CONFIG_SCSI_AIC7XXX_OLD is not set
35622 +# CONFIG_SCSI_AIC79XX is not set
35623 +# CONFIG_SCSI_AIC94XX is not set
35624 +# CONFIG_SCSI_DPT_I2O is not set
35625 +# CONFIG_SCSI_ADVANSYS is not set
35626 +# CONFIG_SCSI_ARCMSR is not set
35627 +# CONFIG_MEGARAID_NEWGEN is not set
35628 +# CONFIG_MEGARAID_LEGACY is not set
35629 +# CONFIG_MEGARAID_SAS is not set
35630 +# CONFIG_SCSI_HPTIOP is not set
35631 +# CONFIG_SCSI_BUSLOGIC is not set
35632 +# CONFIG_SCSI_DMX3191D is not set
35633 +# CONFIG_SCSI_EATA is not set
35634 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
35635 +# CONFIG_SCSI_GDTH is not set
35636 +# CONFIG_SCSI_IPS is not set
35637 +# CONFIG_SCSI_INITIO is not set
35638 +# CONFIG_SCSI_INIA100 is not set
35639 +# CONFIG_SCSI_MVSAS is not set
35640 +# CONFIG_SCSI_STEX is not set
35641 +# CONFIG_SCSI_SYM53C8XX_2 is not set
35642 +# CONFIG_SCSI_IPR is not set
35643 +# CONFIG_SCSI_QLOGIC_1280 is not set
35644 +# CONFIG_SCSI_QLA_FC is not set
35645 +# CONFIG_SCSI_QLA_ISCSI is not set
35646 +# CONFIG_SCSI_LPFC is not set
35647 +# CONFIG_SCSI_DC395x is not set
35648 +# CONFIG_SCSI_DC390T is not set
35649 +# CONFIG_SCSI_NSP32 is not set
35650 +# CONFIG_SCSI_DEBUG is not set
35651 +# CONFIG_SCSI_SRP is not set
35652 +CONFIG_ATA=y
35653 +# CONFIG_ATA_NONSTANDARD is not set
35654 +CONFIG_SATA_AHCI=y
35655 +# CONFIG_SATA_SVW is not set
35656 +# CONFIG_ATA_PIIX is not set
35657 +# CONFIG_SATA_MV is not set
35658 +# CONFIG_SATA_NV is not set
35659 +# CONFIG_PDC_ADMA is not set
35660 +# CONFIG_SATA_QSTOR is not set
35661 +# CONFIG_SATA_PROMISE is not set
35662 +# CONFIG_SATA_SX4 is not set
35663 +# CONFIG_SATA_SIL is not set
35664 +# CONFIG_SATA_SIL24 is not set
35665 +# CONFIG_SATA_SIS is not set
35666 +# CONFIG_SATA_ULI is not set
35667 +# CONFIG_SATA_VIA is not set
35668 +# CONFIG_SATA_VITESSE is not set
35669 +# CONFIG_SATA_INIC162X is not set
35670 +# CONFIG_SATA_FSL is not set
35671 +CONFIG_PATA_ALI=y
35672 +# CONFIG_PATA_AMD is not set
35673 +# CONFIG_PATA_ARTOP is not set
35674 +# CONFIG_PATA_ATIIXP is not set
35675 +# CONFIG_PATA_CMD640_PCI is not set
35676 +# CONFIG_PATA_CMD64X is not set
35677 +# CONFIG_PATA_CS5520 is not set
35678 +# CONFIG_PATA_CS5530 is not set
35679 +# CONFIG_PATA_CYPRESS is not set
35680 +# CONFIG_PATA_EFAR is not set
35681 +# CONFIG_ATA_GENERIC is not set
35682 +# CONFIG_PATA_HPT366 is not set
35683 +# CONFIG_PATA_HPT37X is not set
35684 +# CONFIG_PATA_HPT3X2N is not set
35685 +# CONFIG_PATA_HPT3X3 is not set
35686 +# CONFIG_PATA_IT821X is not set
35687 +# CONFIG_PATA_IT8213 is not set
35688 +# CONFIG_PATA_JMICRON is not set
35689 +# CONFIG_PATA_TRIFLEX is not set
35690 +# CONFIG_PATA_MARVELL is not set
35691 +# CONFIG_PATA_MPIIX is not set
35692 +# CONFIG_PATA_OLDPIIX is not set
35693 +# CONFIG_PATA_NETCELL is not set
35694 +# CONFIG_PATA_NINJA32 is not set
35695 +# CONFIG_PATA_NS87410 is not set
35696 +# CONFIG_PATA_NS87415 is not set
35697 +# CONFIG_PATA_OPTI is not set
35698 +# CONFIG_PATA_OPTIDMA is not set
35699 +# CONFIG_PATA_PDC_OLD is not set
35700 +# CONFIG_PATA_RADISYS is not set
35701 +# CONFIG_PATA_RZ1000 is not set
35702 +# CONFIG_PATA_SC1200 is not set
35703 +# CONFIG_PATA_SERVERWORKS is not set
35704 +# CONFIG_PATA_PDC2027X is not set
35705 +# CONFIG_PATA_SIL680 is not set
35706 +# CONFIG_PATA_SIS is not set
35707 +# CONFIG_PATA_VIA is not set
35708 +# CONFIG_PATA_WINBOND is not set
35709 +# CONFIG_PATA_PLATFORM is not set
35710 +# CONFIG_MD is not set
35711 +# CONFIG_FUSION is not set
35712 +
35713 +#
35714 +# IEEE 1394 (FireWire) support
35715 +#
35716 +# CONFIG_FIREWIRE is not set
35717 +# CONFIG_IEEE1394 is not set
35718 +# CONFIG_I2O is not set
35719 +# CONFIG_MACINTOSH_DRIVERS is not set
35720 +CONFIG_NETDEVICES=y
35721 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
35722 +CONFIG_DUMMY=y
35723 +# CONFIG_BONDING is not set
35724 +# CONFIG_MACVLAN is not set
35725 +# CONFIG_EQUALIZER is not set
35726 +# CONFIG_TUN is not set
35727 +# CONFIG_VETH is not set
35728 +# CONFIG_ARCNET is not set
35729 +CONFIG_PHYLIB=y
35730 +
35731 +#
35732 +# MII PHY device drivers
35733 +#
35734 +# CONFIG_MARVELL_PHY is not set
35735 +# CONFIG_DAVICOM_PHY is not set
35736 +# CONFIG_QSEMI_PHY is not set
35737 +# CONFIG_LXT_PHY is not set
35738 +# CONFIG_CICADA_PHY is not set
35739 +CONFIG_VITESSE_PHY=y
35740 +# CONFIG_SMSC_PHY is not set
35741 +# CONFIG_BROADCOM_PHY is not set
35742 +# CONFIG_ICPLUS_PHY is not set
35743 +# CONFIG_REALTEK_PHY is not set
35744 +# CONFIG_FIXED_PHY is not set
35745 +# CONFIG_MDIO_BITBANG is not set
35746 +CONFIG_NET_ETHERNET=y
35747 +CONFIG_MII=y
35748 +# CONFIG_HAPPYMEAL is not set
35749 +# CONFIG_SUNGEM is not set
35750 +# CONFIG_CASSINI is not set
35751 +# CONFIG_NET_VENDOR_3COM is not set
35752 +# CONFIG_NET_TULIP is not set
35753 +# CONFIG_HP100 is not set
35754 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
35755 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
35756 +# CONFIG_IBM_NEW_EMAC_TAH is not set
35757 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
35758 +# CONFIG_NET_PCI is not set
35759 +# CONFIG_B44 is not set
35760 +CONFIG_NETDEV_1000=y
35761 +# CONFIG_ACENIC is not set
35762 +# CONFIG_DL2K is not set
35763 +# CONFIG_E1000 is not set
35764 +# CONFIG_E1000E is not set
35765 +# CONFIG_E1000E_ENABLED is not set
35766 +# CONFIG_IP1000 is not set
35767 +# CONFIG_IGB is not set
35768 +# CONFIG_NS83820 is not set
35769 +# CONFIG_HAMACHI is not set
35770 +# CONFIG_YELLOWFIN is not set
35771 +# CONFIG_R8169 is not set
35772 +# CONFIG_SIS190 is not set
35773 +# CONFIG_SKGE is not set
35774 +# CONFIG_SKY2 is not set
35775 +# CONFIG_SK98LIN is not set
35776 +# CONFIG_VIA_VELOCITY is not set
35777 +# CONFIG_TIGON3 is not set
35778 +# CONFIG_BNX2 is not set
35779 +CONFIG_GIANFAR=y
35780 +CONFIG_GFAR_NAPI=y
35781 +# CONFIG_QLA3XXX is not set
35782 +# CONFIG_ATL1 is not set
35783 +CONFIG_NETDEV_10000=y
35784 +# CONFIG_CHELSIO_T1 is not set
35785 +# CONFIG_CHELSIO_T3 is not set
35786 +# CONFIG_IXGBE is not set
35787 +# CONFIG_IXGB is not set
35788 +# CONFIG_S2IO is not set
35789 +# CONFIG_MYRI10GE is not set
35790 +# CONFIG_NETXEN_NIC is not set
35791 +# CONFIG_NIU is not set
35792 +# CONFIG_MLX4_CORE is not set
35793 +# CONFIG_TEHUTI is not set
35794 +# CONFIG_BNX2X is not set
35795 +# CONFIG_TR is not set
35796 +
35797 +#
35798 +# Wireless LAN
35799 +#
35800 +# CONFIG_WLAN_PRE80211 is not set
35801 +# CONFIG_WLAN_80211 is not set
35802 +
35803 +#
35804 +# USB Network Adapters
35805 +#
35806 +# CONFIG_USB_CATC is not set
35807 +# CONFIG_USB_KAWETH is not set
35808 +# CONFIG_USB_PEGASUS is not set
35809 +# CONFIG_USB_RTL8150 is not set
35810 +# CONFIG_USB_USBNET is not set
35811 +# CONFIG_WAN is not set
35812 +# CONFIG_FDDI is not set
35813 +# CONFIG_HIPPI is not set
35814 +# CONFIG_PPP is not set
35815 +# CONFIG_SLIP is not set
35816 +# CONFIG_NET_FC is not set
35817 +# CONFIG_NETCONSOLE is not set
35818 +# CONFIG_NETPOLL is not set
35819 +# CONFIG_NET_POLL_CONTROLLER is not set
35820 +# CONFIG_ISDN is not set
35821 +# CONFIG_PHONE is not set
35822 +
35823 +#
35824 +# Input device support
35825 +#
35826 +CONFIG_INPUT=y
35827 +# CONFIG_INPUT_FF_MEMLESS is not set
35828 +# CONFIG_INPUT_POLLDEV is not set
35829 +
35830 +#
35831 +# Userland interfaces
35832 +#
35833 +# CONFIG_INPUT_MOUSEDEV is not set
35834 +# CONFIG_INPUT_JOYDEV is not set
35835 +# CONFIG_INPUT_EVDEV is not set
35836 +# CONFIG_INPUT_EVBUG is not set
35837 +
35838 +#
35839 +# Input Device Drivers
35840 +#
35841 +# CONFIG_INPUT_KEYBOARD is not set
35842 +# CONFIG_INPUT_MOUSE is not set
35843 +# CONFIG_INPUT_JOYSTICK is not set
35844 +# CONFIG_INPUT_TABLET is not set
35845 +# CONFIG_INPUT_TOUCHSCREEN is not set
35846 +# CONFIG_INPUT_MISC is not set
35847 +
35848 +#
35849 +# Hardware I/O ports
35850 +#
35851 +CONFIG_SERIO=y
35852 +CONFIG_SERIO_I8042=y
35853 +CONFIG_SERIO_SERPORT=y
35854 +# CONFIG_SERIO_PCIPS2 is not set
35855 +CONFIG_SERIO_LIBPS2=y
35856 +# CONFIG_SERIO_RAW is not set
35857 +# CONFIG_GAMEPORT is not set
35858 +
35859 +#
35860 +# Character devices
35861 +#
35862 +CONFIG_VT=y
35863 +CONFIG_VT_CONSOLE=y
35864 +CONFIG_HW_CONSOLE=y
35865 +# CONFIG_VT_HW_CONSOLE_BINDING is not set
35866 +# CONFIG_SERIAL_NONSTANDARD is not set
35867 +# CONFIG_NOZOMI is not set
35868 +
35869 +#
35870 +# Serial drivers
35871 +#
35872 +CONFIG_SERIAL_8250=y
35873 +CONFIG_SERIAL_8250_CONSOLE=y
35874 +CONFIG_SERIAL_8250_PCI=y
35875 +CONFIG_SERIAL_8250_NR_UARTS=2
35876 +CONFIG_SERIAL_8250_RUNTIME_UARTS=2
35877 +CONFIG_SERIAL_8250_EXTENDED=y
35878 +CONFIG_SERIAL_8250_MANY_PORTS=y
35879 +CONFIG_SERIAL_8250_SHARE_IRQ=y
35880 +CONFIG_SERIAL_8250_DETECT_IRQ=y
35881 +CONFIG_SERIAL_8250_RSA=y
35882 +
35883 +#
35884 +# Non-8250 serial port support
35885 +#
35886 +# CONFIG_SERIAL_UARTLITE is not set
35887 +CONFIG_SERIAL_CORE=y
35888 +CONFIG_SERIAL_CORE_CONSOLE=y
35889 +# CONFIG_SERIAL_JSM is not set
35890 +# CONFIG_SERIAL_OF_PLATFORM is not set
35891 +CONFIG_UNIX98_PTYS=y
35892 +CONFIG_LEGACY_PTYS=y
35893 +CONFIG_LEGACY_PTY_COUNT=256
35894 +# CONFIG_IPMI_HANDLER is not set
35895 +# CONFIG_HW_RANDOM is not set
35896 +CONFIG_NVRAM=y
35897 +# CONFIG_GEN_RTC is not set
35898 +# CONFIG_R3964 is not set
35899 +# CONFIG_APPLICOM is not set
35900 +# CONFIG_RAW_DRIVER is not set
35901 +# CONFIG_TCG_TPM is not set
35902 +CONFIG_DEVPORT=y
35903 +CONFIG_I2C=y
35904 +CONFIG_I2C_BOARDINFO=y
35905 +# CONFIG_I2C_CHARDEV is not set
35906 +
35907 +#
35908 +# I2C Algorithms
35909 +#
35910 +# CONFIG_I2C_ALGOBIT is not set
35911 +# CONFIG_I2C_ALGOPCF is not set
35912 +# CONFIG_I2C_ALGOPCA is not set
35913 +
35914 +#
35915 +# I2C Hardware Bus support
35916 +#
35917 +# CONFIG_I2C_ALI1535 is not set
35918 +# CONFIG_I2C_ALI1563 is not set
35919 +# CONFIG_I2C_ALI15X3 is not set
35920 +# CONFIG_I2C_AMD756 is not set
35921 +# CONFIG_I2C_AMD8111 is not set
35922 +# CONFIG_I2C_I801 is not set
35923 +# CONFIG_I2C_I810 is not set
35924 +# CONFIG_I2C_PIIX4 is not set
35925 +CONFIG_I2C_MPC=y
35926 +# CONFIG_I2C_NFORCE2 is not set
35927 +# CONFIG_I2C_OCORES is not set
35928 +# CONFIG_I2C_PARPORT_LIGHT is not set
35929 +# CONFIG_I2C_PROSAVAGE is not set
35930 +# CONFIG_I2C_SAVAGE4 is not set
35931 +# CONFIG_I2C_SIMTEC is not set
35932 +# CONFIG_I2C_SIS5595 is not set
35933 +# CONFIG_I2C_SIS630 is not set
35934 +# CONFIG_I2C_SIS96X is not set
35935 +# CONFIG_I2C_TAOS_EVM is not set
35936 +# CONFIG_I2C_STUB is not set
35937 +# CONFIG_I2C_TINY_USB is not set
35938 +# CONFIG_I2C_VIA is not set
35939 +# CONFIG_I2C_VIAPRO is not set
35940 +# CONFIG_I2C_VOODOO3 is not set
35941 +
35942 +#
35943 +# Miscellaneous I2C Chip support
35944 +#
35945 +# CONFIG_DS1682 is not set
35946 +CONFIG_SENSORS_EEPROM=y
35947 +# CONFIG_SENSORS_PCF8574 is not set
35948 +# CONFIG_PCF8575 is not set
35949 +# CONFIG_SENSORS_PCF8591 is not set
35950 +# CONFIG_TPS65010 is not set
35951 +# CONFIG_SENSORS_MAX6875 is not set
35952 +# CONFIG_SENSORS_TSL2550 is not set
35953 +# CONFIG_I2C_DEBUG_CORE is not set
35954 +# CONFIG_I2C_DEBUG_ALGO is not set
35955 +# CONFIG_I2C_DEBUG_BUS is not set
35956 +# CONFIG_I2C_DEBUG_CHIP is not set
35957 +
35958 +#
35959 +# SPI support
35960 +#
35961 +# CONFIG_SPI is not set
35962 +# CONFIG_SPI_MASTER is not set
35963 +# CONFIG_W1 is not set
35964 +# CONFIG_POWER_SUPPLY is not set
35965 +# CONFIG_HWMON is not set
35966 +# CONFIG_THERMAL is not set
35967 +# CONFIG_WATCHDOG is not set
35968 +
35969 +#
35970 +# Sonics Silicon Backplane
35971 +#
35972 +CONFIG_SSB_POSSIBLE=y
35973 +# CONFIG_SSB is not set
35974 +
35975 +#
35976 +# Multifunction device drivers
35977 +#
35978 +# CONFIG_MFD_SM501 is not set
35979 +
35980 +#
35981 +# Multimedia devices
35982 +#
35983 +# CONFIG_VIDEO_DEV is not set
35984 +CONFIG_DVB_CORE=m
35985 +# CONFIG_DVB_CORE_ATTACH is not set
35986 +CONFIG_DVB_CAPTURE_DRIVERS=y
35987 +
35988 +#
35989 +# Supported SAA7146 based PCI Adapters
35990 +#
35991 +# CONFIG_TTPCI_EEPROM is not set
35992 +# CONFIG_DVB_BUDGET_CORE is not set
35993 +
35994 +#
35995 +# Supported USB Adapters
35996 +#
35997 +# CONFIG_DVB_USB is not set
35998 +# CONFIG_DVB_TTUSB_BUDGET is not set
35999 +# CONFIG_DVB_TTUSB_DEC is not set
36000 +# CONFIG_DVB_CINERGYT2 is not set
36001 +
36002 +#
36003 +# Supported FlexCopII (B2C2) Adapters
36004 +#
36005 +# CONFIG_DVB_B2C2_FLEXCOP is not set
36006 +
36007 +#
36008 +# Supported BT878 Adapters
36009 +#
36010 +
36011 +#
36012 +# Supported Pluto2 Adapters
36013 +#
36014 +# CONFIG_DVB_PLUTO2 is not set
36015 +
36016 +#
36017 +# Supported DVB Frontends
36018 +#
36019 +
36020 +#
36021 +# Customise DVB Frontends
36022 +#
36023 +# CONFIG_DVB_FE_CUSTOMISE is not set
36024 +
36025 +#
36026 +# DVB-S (satellite) frontends
36027 +#
36028 +# CONFIG_DVB_STV0299 is not set
36029 +# CONFIG_DVB_CX24110 is not set
36030 +# CONFIG_DVB_CX24123 is not set
36031 +# CONFIG_DVB_TDA8083 is not set
36032 +# CONFIG_DVB_MT312 is not set
36033 +# CONFIG_DVB_VES1X93 is not set
36034 +# CONFIG_DVB_S5H1420 is not set
36035 +# CONFIG_DVB_TDA10086 is not set
36036 +
36037 +#
36038 +# DVB-T (terrestrial) frontends
36039 +#
36040 +# CONFIG_DVB_SP8870 is not set
36041 +# CONFIG_DVB_SP887X is not set
36042 +# CONFIG_DVB_CX22700 is not set
36043 +# CONFIG_DVB_CX22702 is not set
36044 +# CONFIG_DVB_L64781 is not set
36045 +# CONFIG_DVB_TDA1004X is not set
36046 +# CONFIG_DVB_NXT6000 is not set
36047 +# CONFIG_DVB_MT352 is not set
36048 +# CONFIG_DVB_ZL10353 is not set
36049 +# CONFIG_DVB_DIB3000MB is not set
36050 +# CONFIG_DVB_DIB3000MC is not set
36051 +# CONFIG_DVB_DIB7000M is not set
36052 +# CONFIG_DVB_DIB7000P is not set
36053 +
36054 +#
36055 +# DVB-C (cable) frontends
36056 +#
36057 +# CONFIG_DVB_VES1820 is not set
36058 +# CONFIG_DVB_TDA10021 is not set
36059 +# CONFIG_DVB_TDA10023 is not set
36060 +# CONFIG_DVB_STV0297 is not set
36061 +
36062 +#
36063 +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
36064 +#
36065 +# CONFIG_DVB_NXT200X is not set
36066 +# CONFIG_DVB_OR51211 is not set
36067 +# CONFIG_DVB_OR51132 is not set
36068 +# CONFIG_DVB_BCM3510 is not set
36069 +# CONFIG_DVB_LGDT330X is not set
36070 +# CONFIG_DVB_S5H1409 is not set
36071 +
36072 +#
36073 +# Tuners/PLL support
36074 +#
36075 +# CONFIG_DVB_PLL is not set
36076 +# CONFIG_DVB_TDA826X is not set
36077 +# CONFIG_DVB_TDA827X is not set
36078 +# CONFIG_DVB_TDA18271 is not set
36079 +# CONFIG_DVB_TUNER_QT1010 is not set
36080 +# CONFIG_DVB_TUNER_MT2060 is not set
36081 +# CONFIG_DVB_TUNER_MT2266 is not set
36082 +# CONFIG_DVB_TUNER_MT2131 is not set
36083 +# CONFIG_DVB_TUNER_DIB0070 is not set
36084 +# CONFIG_DVB_TUNER_XC5000 is not set
36085 +
36086 +#
36087 +# Miscellaneous devices
36088 +#
36089 +# CONFIG_DVB_LNBP21 is not set
36090 +# CONFIG_DVB_ISL6421 is not set
36091 +# CONFIG_DVB_TUA6100 is not set
36092 +CONFIG_DAB=y
36093 +# CONFIG_USB_DABUSB is not set
36094 +
36095 +#
36096 +# Graphics support
36097 +#
36098 +# CONFIG_AGP is not set
36099 +# CONFIG_DRM is not set
36100 +# CONFIG_VGASTATE is not set
36101 +CONFIG_VIDEO_OUTPUT_CONTROL=y
36102 +# CONFIG_FB is not set
36103 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
36104 +
36105 +#
36106 +# Display device support
36107 +#
36108 +# CONFIG_DISPLAY_SUPPORT is not set
36109 +
36110 +#
36111 +# Console display driver support
36112 +#
36113 +CONFIG_VGA_CONSOLE=y
36114 +# CONFIG_VGACON_SOFT_SCROLLBACK is not set
36115 +CONFIG_DUMMY_CONSOLE=y
36116 +
36117 +#
36118 +# Sound
36119 +#
36120 +CONFIG_SOUND=y
36121 +
36122 +#
36123 +# Advanced Linux Sound Architecture
36124 +#
36125 +CONFIG_SND=y
36126 +CONFIG_SND_TIMER=y
36127 +CONFIG_SND_PCM=y
36128 +# CONFIG_SND_SEQUENCER is not set
36129 +# CONFIG_SND_MIXER_OSS is not set
36130 +# CONFIG_SND_PCM_OSS is not set
36131 +# CONFIG_SND_DYNAMIC_MINORS is not set
36132 +CONFIG_SND_SUPPORT_OLD_API=y
36133 +CONFIG_SND_VERBOSE_PROCFS=y
36134 +# CONFIG_SND_VERBOSE_PRINTK is not set
36135 +# CONFIG_SND_DEBUG is not set
36136 +
36137 +#
36138 +# Generic devices
36139 +#
36140 +CONFIG_SND_AC97_CODEC=y
36141 +# CONFIG_SND_DUMMY is not set
36142 +# CONFIG_SND_MTPAV is not set
36143 +# CONFIG_SND_SERIAL_U16550 is not set
36144 +# CONFIG_SND_MPU401 is not set
36145 +
36146 +#
36147 +# PCI devices
36148 +#
36149 +# CONFIG_SND_AD1889 is not set
36150 +# CONFIG_SND_ALS300 is not set
36151 +# CONFIG_SND_ALS4000 is not set
36152 +# CONFIG_SND_ALI5451 is not set
36153 +# CONFIG_SND_ATIIXP is not set
36154 +# CONFIG_SND_ATIIXP_MODEM is not set
36155 +# CONFIG_SND_AU8810 is not set
36156 +# CONFIG_SND_AU8820 is not set
36157 +# CONFIG_SND_AU8830 is not set
36158 +# CONFIG_SND_AZT3328 is not set
36159 +# CONFIG_SND_BT87X is not set
36160 +# CONFIG_SND_CA0106 is not set
36161 +# CONFIG_SND_CMIPCI is not set
36162 +# CONFIG_SND_OXYGEN is not set
36163 +# CONFIG_SND_CS4281 is not set
36164 +# CONFIG_SND_CS46XX is not set
36165 +# CONFIG_SND_CS5530 is not set
36166 +# CONFIG_SND_DARLA20 is not set
36167 +# CONFIG_SND_GINA20 is not set
36168 +# CONFIG_SND_LAYLA20 is not set
36169 +# CONFIG_SND_DARLA24 is not set
36170 +# CONFIG_SND_GINA24 is not set
36171 +# CONFIG_SND_LAYLA24 is not set
36172 +# CONFIG_SND_MONA is not set
36173 +# CONFIG_SND_MIA is not set
36174 +# CONFIG_SND_ECHO3G is not set
36175 +# CONFIG_SND_INDIGO is not set
36176 +# CONFIG_SND_INDIGOIO is not set
36177 +# CONFIG_SND_INDIGODJ is not set
36178 +# CONFIG_SND_EMU10K1 is not set
36179 +# CONFIG_SND_EMU10K1X is not set
36180 +# CONFIG_SND_ENS1370 is not set
36181 +# CONFIG_SND_ENS1371 is not set
36182 +# CONFIG_SND_ES1938 is not set
36183 +# CONFIG_SND_ES1968 is not set
36184 +# CONFIG_SND_FM801 is not set
36185 +# CONFIG_SND_HDA_INTEL is not set
36186 +# CONFIG_SND_HDSP is not set
36187 +# CONFIG_SND_HDSPM is not set
36188 +# CONFIG_SND_HIFIER is not set
36189 +# CONFIG_SND_ICE1712 is not set
36190 +# CONFIG_SND_ICE1724 is not set
36191 +CONFIG_SND_INTEL8X0=y
36192 +# CONFIG_SND_INTEL8X0M is not set
36193 +# CONFIG_SND_KORG1212 is not set
36194 +# CONFIG_SND_MAESTRO3 is not set
36195 +# CONFIG_SND_MIXART is not set
36196 +# CONFIG_SND_NM256 is not set
36197 +# CONFIG_SND_PCXHR is not set
36198 +# CONFIG_SND_RIPTIDE is not set
36199 +# CONFIG_SND_RME32 is not set
36200 +# CONFIG_SND_RME96 is not set
36201 +# CONFIG_SND_RME9652 is not set
36202 +# CONFIG_SND_SONICVIBES is not set
36203 +# CONFIG_SND_TRIDENT is not set
36204 +# CONFIG_SND_VIA82XX is not set
36205 +# CONFIG_SND_VIA82XX_MODEM is not set
36206 +# CONFIG_SND_VIRTUOSO is not set
36207 +# CONFIG_SND_VX222 is not set
36208 +# CONFIG_SND_YMFPCI is not set
36209 +# CONFIG_SND_AC97_POWER_SAVE is not set
36210 +
36211 +#
36212 +# ALSA PowerMac devices
36213 +#
36214 +
36215 +#
36216 +# ALSA PowerPC devices
36217 +#
36218 +
36219 +#
36220 +# USB devices
36221 +#
36222 +# CONFIG_SND_USB_AUDIO is not set
36223 +# CONFIG_SND_USB_USX2Y is not set
36224 +# CONFIG_SND_USB_CAIAQ is not set
36225 +
36226 +#
36227 +# System on Chip audio support
36228 +#
36229 +# CONFIG_SND_SOC is not set
36230 +
36231 +#
36232 +# SoC Audio support for SuperH
36233 +#
36234 +
36235 +#
36236 +# ALSA SoC audio for Freescale SOCs
36237 +#
36238 +
36239 +#
36240 +# Open Sound System
36241 +#
36242 +# CONFIG_SOUND_PRIME is not set
36243 +CONFIG_AC97_BUS=y
36244 +CONFIG_HID_SUPPORT=y
36245 +CONFIG_HID=y
36246 +# CONFIG_HID_DEBUG is not set
36247 +# CONFIG_HIDRAW is not set
36248 +
36249 +#
36250 +# USB Input Devices
36251 +#
36252 +CONFIG_USB_HID=y
36253 +# CONFIG_USB_HIDINPUT_POWERBOOK is not set
36254 +# CONFIG_HID_FF is not set
36255 +# CONFIG_USB_HIDDEV is not set
36256 +CONFIG_USB_SUPPORT=y
36257 +CONFIG_USB_ARCH_HAS_HCD=y
36258 +CONFIG_USB_ARCH_HAS_OHCI=y
36259 +CONFIG_USB_ARCH_HAS_EHCI=y
36260 +CONFIG_USB=y
36261 +# CONFIG_USB_DEBUG is not set
36262 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
36263 +
36264 +#
36265 +# Miscellaneous USB options
36266 +#
36267 +CONFIG_USB_DEVICEFS=y
36268 +CONFIG_USB_DEVICE_CLASS=y
36269 +# CONFIG_USB_DYNAMIC_MINORS is not set
36270 +# CONFIG_USB_OTG is not set
36271 +
36272 +#
36273 +# USB Host Controller Drivers
36274 +#
36275 +CONFIG_USB_EHCI_HCD=y
36276 +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
36277 +# CONFIG_USB_EHCI_TT_NEWSCHED is not set
36278 +# CONFIG_USB_EHCI_FSL is not set
36279 +CONFIG_USB_EHCI_HCD_PPC_OF=y
36280 +# CONFIG_USB_ISP116X_HCD is not set
36281 +CONFIG_USB_OHCI_HCD=y
36282 +CONFIG_USB_OHCI_HCD_PPC_OF=y
36283 +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
36284 +CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
36285 +CONFIG_USB_OHCI_HCD_PCI=y
36286 +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
36287 +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
36288 +CONFIG_USB_OHCI_LITTLE_ENDIAN=y
36289 +# CONFIG_USB_UHCI_HCD is not set
36290 +# CONFIG_USB_SL811_HCD is not set
36291 +# CONFIG_USB_R8A66597_HCD is not set
36292 +
36293 +#
36294 +# USB Device Class drivers
36295 +#
36296 +# CONFIG_USB_ACM is not set
36297 +# CONFIG_USB_PRINTER is not set
36298 +
36299 +#
36300 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
36301 +#
36302 +
36303 +#
36304 +# may also be needed; see USB_STORAGE Help for more information
36305 +#
36306 +CONFIG_USB_STORAGE=y
36307 +# CONFIG_USB_STORAGE_DEBUG is not set
36308 +# CONFIG_USB_STORAGE_DATAFAB is not set
36309 +# CONFIG_USB_STORAGE_FREECOM is not set
36310 +# CONFIG_USB_STORAGE_ISD200 is not set
36311 +# CONFIG_USB_STORAGE_DPCM is not set
36312 +# CONFIG_USB_STORAGE_USBAT is not set
36313 +# CONFIG_USB_STORAGE_SDDR09 is not set
36314 +# CONFIG_USB_STORAGE_SDDR55 is not set
36315 +# CONFIG_USB_STORAGE_JUMPSHOT is not set
36316 +# CONFIG_USB_STORAGE_ALAUDA is not set
36317 +# CONFIG_USB_STORAGE_KARMA is not set
36318 +# CONFIG_USB_LIBUSUAL is not set
36319 +
36320 +#
36321 +# USB Imaging devices
36322 +#
36323 +# CONFIG_USB_MDC800 is not set
36324 +# CONFIG_USB_MICROTEK is not set
36325 +CONFIG_USB_MON=y
36326 +
36327 +#
36328 +# USB port drivers
36329 +#
36330 +# CONFIG_USB_SERIAL is not set
36331 +
36332 +#
36333 +# USB Miscellaneous drivers
36334 +#
36335 +# CONFIG_USB_EMI62 is not set
36336 +# CONFIG_USB_EMI26 is not set
36337 +# CONFIG_USB_ADUTUX is not set
36338 +# CONFIG_USB_AUERSWALD is not set
36339 +# CONFIG_USB_RIO500 is not set
36340 +# CONFIG_USB_LEGOTOWER is not set
36341 +# CONFIG_USB_LCD is not set
36342 +# CONFIG_USB_BERRY_CHARGE is not set
36343 +# CONFIG_USB_LED is not set
36344 +# CONFIG_USB_CYPRESS_CY7C63 is not set
36345 +# CONFIG_USB_CYTHERM is not set
36346 +# CONFIG_USB_PHIDGET is not set
36347 +# CONFIG_USB_IDMOUSE is not set
36348 +# CONFIG_USB_FTDI_ELAN is not set
36349 +# CONFIG_USB_APPLEDISPLAY is not set
36350 +# CONFIG_USB_SISUSBVGA is not set
36351 +# CONFIG_USB_LD is not set
36352 +# CONFIG_USB_TRANCEVIBRATOR is not set
36353 +# CONFIG_USB_IOWARRIOR is not set
36354 +# CONFIG_USB_TEST is not set
36355 +# CONFIG_USB_GADGET is not set
36356 +# CONFIG_MMC is not set
36357 +# CONFIG_MEMSTICK is not set
36358 +# CONFIG_NEW_LEDS is not set
36359 +# CONFIG_INFINIBAND is not set
36360 +# CONFIG_EDAC is not set
36361 +CONFIG_RTC_LIB=y
36362 +CONFIG_RTC_CLASS=y
36363 +CONFIG_RTC_HCTOSYS=y
36364 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
36365 +# CONFIG_RTC_DEBUG is not set
36366 +
36367 +#
36368 +# RTC interfaces
36369 +#
36370 +CONFIG_RTC_INTF_SYSFS=y
36371 +CONFIG_RTC_INTF_PROC=y
36372 +CONFIG_RTC_INTF_DEV=y
36373 +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
36374 +# CONFIG_RTC_DRV_TEST is not set
36375 +
36376 +#
36377 +# I2C RTC drivers
36378 +#
36379 +# CONFIG_RTC_DRV_DS1307 is not set
36380 +# CONFIG_RTC_DRV_DS1374 is not set
36381 +# CONFIG_RTC_DRV_DS1672 is not set
36382 +# CONFIG_RTC_DRV_MAX6900 is not set
36383 +# CONFIG_RTC_DRV_RS5C372 is not set
36384 +# CONFIG_RTC_DRV_ISL1208 is not set
36385 +# CONFIG_RTC_DRV_X1205 is not set
36386 +# CONFIG_RTC_DRV_PCF8563 is not set
36387 +# CONFIG_RTC_DRV_PCF8583 is not set
36388 +# CONFIG_RTC_DRV_M41T80 is not set
36389 +# CONFIG_RTC_DRV_S35390A is not set
36390 +
36391 +#
36392 +# SPI RTC drivers
36393 +#
36394 +
36395 +#
36396 +# Platform RTC drivers
36397 +#
36398 +CONFIG_RTC_DRV_CMOS=y
36399 +# CONFIG_RTC_DRV_DS1511 is not set
36400 +# CONFIG_RTC_DRV_DS1553 is not set
36401 +# CONFIG_RTC_DRV_DS1742 is not set
36402 +# CONFIG_RTC_DRV_STK17TA8 is not set
36403 +# CONFIG_RTC_DRV_M48T86 is not set
36404 +# CONFIG_RTC_DRV_M48T59 is not set
36405 +# CONFIG_RTC_DRV_V3020 is not set
36406 +
36407 +#
36408 +# on-CPU RTC drivers
36409 +#
36410 +CONFIG_DMADEVICES=y
36411 +
36412 +#
36413 +# DMA Devices
36414 +#
36415 +CONFIG_FSL_DMA=y
36416 +# CONFIG_FSL_DMA_SELFTEST is not set
36417 +CONFIG_DMA_ENGINE=y
36418 +
36419 +#
36420 +# DMA Clients
36421 +#
36422 +# CONFIG_NET_DMA is not set
36423 +
36424 +#
36425 +# Userspace I/O
36426 +#
36427 +# CONFIG_UIO is not set
36428 +
36429 +#
36430 +# File systems
36431 +#
36432 +CONFIG_EXT2_FS=y
36433 +# CONFIG_EXT2_FS_XATTR is not set
36434 +# CONFIG_EXT2_FS_XIP is not set
36435 +CONFIG_EXT3_FS=y
36436 +CONFIG_EXT3_FS_XATTR=y
36437 +# CONFIG_EXT3_FS_POSIX_ACL is not set
36438 +# CONFIG_EXT3_FS_SECURITY is not set
36439 +# CONFIG_EXT4DEV_FS is not set
36440 +CONFIG_JBD=y
36441 +CONFIG_FS_MBCACHE=y
36442 +# CONFIG_REISERFS_FS is not set
36443 +# CONFIG_JFS_FS is not set
36444 +# CONFIG_FS_POSIX_ACL is not set
36445 +# CONFIG_XFS_FS is not set
36446 +# CONFIG_GFS2_FS is not set
36447 +# CONFIG_OCFS2_FS is not set
36448 +CONFIG_DNOTIFY=y
36449 +CONFIG_INOTIFY=y
36450 +CONFIG_INOTIFY_USER=y
36451 +# CONFIG_QUOTA is not set
36452 +# CONFIG_AUTOFS_FS is not set
36453 +# CONFIG_AUTOFS4_FS is not set
36454 +# CONFIG_FUSE_FS is not set
36455 +
36456 +#
36457 +# CD-ROM/DVD Filesystems
36458 +#
36459 +CONFIG_ISO9660_FS=m
36460 +CONFIG_JOLIET=y
36461 +CONFIG_ZISOFS=y
36462 +CONFIG_UDF_FS=m
36463 +CONFIG_UDF_NLS=y
36464 +
36465 +#
36466 +# DOS/FAT/NT Filesystems
36467 +#
36468 +CONFIG_FAT_FS=y
36469 +CONFIG_MSDOS_FS=m
36470 +CONFIG_VFAT_FS=y
36471 +CONFIG_FAT_DEFAULT_CODEPAGE=437
36472 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
36473 +CONFIG_NTFS_FS=y
36474 +# CONFIG_NTFS_DEBUG is not set
36475 +# CONFIG_NTFS_RW is not set
36476 +
36477 +#
36478 +# Pseudo filesystems
36479 +#
36480 +CONFIG_PROC_FS=y
36481 +CONFIG_PROC_KCORE=y
36482 +CONFIG_PROC_SYSCTL=y
36483 +CONFIG_SYSFS=y
36484 +CONFIG_TMPFS=y
36485 +# CONFIG_TMPFS_POSIX_ACL is not set
36486 +# CONFIG_HUGETLB_PAGE is not set
36487 +# CONFIG_CONFIGFS_FS is not set
36488 +
36489 +#
36490 +# Miscellaneous filesystems
36491 +#
36492 +CONFIG_ADFS_FS=m
36493 +# CONFIG_ADFS_FS_RW is not set
36494 +CONFIG_AFFS_FS=m
36495 +CONFIG_HFS_FS=m
36496 +CONFIG_HFSPLUS_FS=m
36497 +CONFIG_BEFS_FS=m
36498 +# CONFIG_BEFS_DEBUG is not set
36499 +CONFIG_BFS_FS=m
36500 +CONFIG_EFS_FS=m
36501 +CONFIG_CRAMFS=y
36502 +CONFIG_VXFS_FS=m
36503 +# CONFIG_MINIX_FS is not set
36504 +CONFIG_HPFS_FS=m
36505 +CONFIG_QNX4FS_FS=m
36506 +# CONFIG_ROMFS_FS is not set
36507 +CONFIG_SYSV_FS=m
36508 +CONFIG_UFS_FS=m
36509 +# CONFIG_UFS_FS_WRITE is not set
36510 +# CONFIG_UFS_DEBUG is not set
36511 +CONFIG_NETWORK_FILESYSTEMS=y
36512 +CONFIG_NFS_FS=y
36513 +CONFIG_NFS_V3=y
36514 +# CONFIG_NFS_V3_ACL is not set
36515 +CONFIG_NFS_V4=y
36516 +# CONFIG_NFS_DIRECTIO is not set
36517 +CONFIG_NFSD=y
36518 +# CONFIG_NFSD_V3 is not set
36519 +CONFIG_NFSD_TCP=y
36520 +CONFIG_ROOT_NFS=y
36521 +CONFIG_LOCKD=y
36522 +CONFIG_LOCKD_V4=y
36523 +CONFIG_EXPORTFS=y
36524 +CONFIG_NFS_COMMON=y
36525 +CONFIG_SUNRPC=y
36526 +CONFIG_SUNRPC_GSS=y
36527 +# CONFIG_SUNRPC_BIND34 is not set
36528 +CONFIG_RPCSEC_GSS_KRB5=y
36529 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
36530 +# CONFIG_SMB_FS is not set
36531 +# CONFIG_CIFS is not set
36532 +# CONFIG_NCP_FS is not set
36533 +# CONFIG_CODA_FS is not set
36534 +# CONFIG_AFS_FS is not set
36535 +
36536 +#
36537 +# Partition Types
36538 +#
36539 +CONFIG_PARTITION_ADVANCED=y
36540 +# CONFIG_ACORN_PARTITION is not set
36541 +# CONFIG_OSF_PARTITION is not set
36542 +# CONFIG_AMIGA_PARTITION is not set
36543 +# CONFIG_ATARI_PARTITION is not set
36544 +CONFIG_MAC_PARTITION=y
36545 +CONFIG_MSDOS_PARTITION=y
36546 +# CONFIG_BSD_DISKLABEL is not set
36547 +# CONFIG_MINIX_SUBPARTITION is not set
36548 +# CONFIG_SOLARIS_X86_PARTITION is not set
36549 +# CONFIG_UNIXWARE_DISKLABEL is not set
36550 +# CONFIG_LDM_PARTITION is not set
36551 +# CONFIG_SGI_PARTITION is not set
36552 +# CONFIG_ULTRIX_PARTITION is not set
36553 +# CONFIG_SUN_PARTITION is not set
36554 +# CONFIG_KARMA_PARTITION is not set
36555 +# CONFIG_EFI_PARTITION is not set
36556 +# CONFIG_SYSV68_PARTITION is not set
36557 +CONFIG_NLS=y
36558 +CONFIG_NLS_DEFAULT="iso8859-1"
36559 +# CONFIG_NLS_CODEPAGE_437 is not set
36560 +# CONFIG_NLS_CODEPAGE_737 is not set
36561 +# CONFIG_NLS_CODEPAGE_775 is not set
36562 +# CONFIG_NLS_CODEPAGE_850 is not set
36563 +# CONFIG_NLS_CODEPAGE_852 is not set
36564 +# CONFIG_NLS_CODEPAGE_855 is not set
36565 +# CONFIG_NLS_CODEPAGE_857 is not set
36566 +# CONFIG_NLS_CODEPAGE_860 is not set
36567 +# CONFIG_NLS_CODEPAGE_861 is not set
36568 +# CONFIG_NLS_CODEPAGE_862 is not set
36569 +# CONFIG_NLS_CODEPAGE_863 is not set
36570 +# CONFIG_NLS_CODEPAGE_864 is not set
36571 +# CONFIG_NLS_CODEPAGE_865 is not set
36572 +# CONFIG_NLS_CODEPAGE_866 is not set
36573 +# CONFIG_NLS_CODEPAGE_869 is not set
36574 +# CONFIG_NLS_CODEPAGE_936 is not set
36575 +# CONFIG_NLS_CODEPAGE_950 is not set
36576 +# CONFIG_NLS_CODEPAGE_932 is not set
36577 +# CONFIG_NLS_CODEPAGE_949 is not set
36578 +# CONFIG_NLS_CODEPAGE_874 is not set
36579 +# CONFIG_NLS_ISO8859_8 is not set
36580 +# CONFIG_NLS_CODEPAGE_1250 is not set
36581 +# CONFIG_NLS_CODEPAGE_1251 is not set
36582 +# CONFIG_NLS_ASCII is not set
36583 +# CONFIG_NLS_ISO8859_1 is not set
36584 +# CONFIG_NLS_ISO8859_2 is not set
36585 +# CONFIG_NLS_ISO8859_3 is not set
36586 +# CONFIG_NLS_ISO8859_4 is not set
36587 +# CONFIG_NLS_ISO8859_5 is not set
36588 +# CONFIG_NLS_ISO8859_6 is not set
36589 +# CONFIG_NLS_ISO8859_7 is not set
36590 +# CONFIG_NLS_ISO8859_9 is not set
36591 +# CONFIG_NLS_ISO8859_13 is not set
36592 +# CONFIG_NLS_ISO8859_14 is not set
36593 +# CONFIG_NLS_ISO8859_15 is not set
36594 +# CONFIG_NLS_KOI8_R is not set
36595 +# CONFIG_NLS_KOI8_U is not set
36596 +CONFIG_NLS_UTF8=m
36597 +# CONFIG_DLM is not set
36598 +
36599 +#
36600 +# Library routines
36601 +#
36602 +CONFIG_BITREVERSE=y
36603 +# CONFIG_CRC_CCITT is not set
36604 +# CONFIG_CRC16 is not set
36605 +# CONFIG_CRC_ITU_T is not set
36606 +CONFIG_CRC32=y
36607 +# CONFIG_CRC7 is not set
36608 +CONFIG_LIBCRC32C=m
36609 +CONFIG_ZLIB_INFLATE=y
36610 +CONFIG_PLIST=y
36611 +CONFIG_HAS_IOMEM=y
36612 +CONFIG_HAS_IOPORT=y
36613 +CONFIG_HAS_DMA=y
36614 +CONFIG_HAVE_LMB=y
36615 +
36616 +#
36617 +# Kernel hacking
36618 +#
36619 +# CONFIG_PRINTK_TIME is not set
36620 +CONFIG_ENABLE_WARN_DEPRECATED=y
36621 +CONFIG_ENABLE_MUST_CHECK=y
36622 +# CONFIG_MAGIC_SYSRQ is not set
36623 +# CONFIG_UNUSED_SYMBOLS is not set
36624 +# CONFIG_DEBUG_FS is not set
36625 +# CONFIG_HEADERS_CHECK is not set
36626 +CONFIG_DEBUG_KERNEL=y
36627 +# CONFIG_DEBUG_SHIRQ is not set
36628 +CONFIG_DETECT_SOFTLOCKUP=y
36629 +CONFIG_SCHED_DEBUG=y
36630 +# CONFIG_SCHEDSTATS is not set
36631 +# CONFIG_TIMER_STATS is not set
36632 +# CONFIG_SLUB_DEBUG_ON is not set
36633 +# CONFIG_SLUB_STATS is not set
36634 +# CONFIG_DEBUG_RT_MUTEXES is not set
36635 +# CONFIG_RT_MUTEX_TESTER is not set
36636 +# CONFIG_DEBUG_SPINLOCK is not set
36637 +# CONFIG_DEBUG_MUTEXES is not set
36638 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
36639 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
36640 +# CONFIG_DEBUG_KOBJECT is not set
36641 +# CONFIG_DEBUG_HIGHMEM is not set
36642 +# CONFIG_DEBUG_BUGVERBOSE is not set
36643 +CONFIG_DEBUG_INFO=y
36644 +# CONFIG_DEBUG_VM is not set
36645 +# CONFIG_DEBUG_LIST is not set
36646 +# CONFIG_DEBUG_SG is not set
36647 +# CONFIG_BOOT_PRINTK_DELAY is not set
36648 +# CONFIG_RCU_TORTURE_TEST is not set
36649 +# CONFIG_BACKTRACE_SELF_TEST is not set
36650 +# CONFIG_FAULT_INJECTION is not set
36651 +# CONFIG_SAMPLES is not set
36652 +# CONFIG_DEBUG_STACKOVERFLOW is not set
36653 +# CONFIG_DEBUG_STACK_USAGE is not set
36654 +# CONFIG_DEBUG_PAGEALLOC is not set
36655 +# CONFIG_DEBUGGER is not set
36656 +# CONFIG_BDI_SWITCH is not set
36657 +# CONFIG_PPC_EARLY_DEBUG is not set
36658 +
36659 +#
36660 +# Security options
36661 +#
36662 +# CONFIG_KEYS is not set
36663 +# CONFIG_SECURITY is not set
36664 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
36665 +CONFIG_CRYPTO=y
36666 +CONFIG_CRYPTO_ALGAPI=y
36667 +CONFIG_CRYPTO_BLKCIPHER=y
36668 +# CONFIG_CRYPTO_SEQIV is not set
36669 +CONFIG_CRYPTO_HASH=y
36670 +CONFIG_CRYPTO_MANAGER=y
36671 +CONFIG_CRYPTO_HMAC=y
36672 +# CONFIG_CRYPTO_XCBC is not set
36673 +# CONFIG_CRYPTO_NULL is not set
36674 +# CONFIG_CRYPTO_MD4 is not set
36675 +CONFIG_CRYPTO_MD5=y
36676 +CONFIG_CRYPTO_SHA1=m
36677 +# CONFIG_CRYPTO_SHA256 is not set
36678 +# CONFIG_CRYPTO_SHA512 is not set
36679 +# CONFIG_CRYPTO_WP512 is not set
36680 +# CONFIG_CRYPTO_TGR192 is not set
36681 +# CONFIG_CRYPTO_GF128MUL is not set
36682 +# CONFIG_CRYPTO_ECB is not set
36683 +CONFIG_CRYPTO_CBC=y
36684 +CONFIG_CRYPTO_PCBC=m
36685 +# CONFIG_CRYPTO_LRW is not set
36686 +# CONFIG_CRYPTO_XTS is not set
36687 +# CONFIG_CRYPTO_CTR is not set
36688 +# CONFIG_CRYPTO_GCM is not set
36689 +# CONFIG_CRYPTO_CCM is not set
36690 +# CONFIG_CRYPTO_CRYPTD is not set
36691 +CONFIG_CRYPTO_DES=y
36692 +# CONFIG_CRYPTO_FCRYPT is not set
36693 +# CONFIG_CRYPTO_BLOWFISH is not set
36694 +# CONFIG_CRYPTO_TWOFISH is not set
36695 +# CONFIG_CRYPTO_SERPENT is not set
36696 +# CONFIG_CRYPTO_AES is not set
36697 +# CONFIG_CRYPTO_CAST5 is not set
36698 +# CONFIG_CRYPTO_CAST6 is not set
36699 +# CONFIG_CRYPTO_TEA is not set
36700 +# CONFIG_CRYPTO_ARC4 is not set
36701 +# CONFIG_CRYPTO_KHAZAD is not set
36702 +# CONFIG_CRYPTO_ANUBIS is not set
36703 +# CONFIG_CRYPTO_SEED is not set
36704 +# CONFIG_CRYPTO_SALSA20 is not set
36705 +# CONFIG_CRYPTO_DEFLATE is not set
36706 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
36707 +# CONFIG_CRYPTO_CRC32C is not set
36708 +# CONFIG_CRYPTO_CAMELLIA is not set
36709 +# CONFIG_CRYPTO_TEST is not set
36710 +# CONFIG_CRYPTO_AUTHENC is not set
36711 +# CONFIG_CRYPTO_LZO is not set
36712 +CONFIG_CRYPTO_HW=y
36713 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
36714 +# CONFIG_PPC_CLOCK is not set
36715 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8560_ads_defconfig
36716 ===================================================================
36717 --- /dev/null
36718 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8560_ads_defconfig
36719 @@ -0,0 +1,885 @@
36720 +#
36721 +# Automatically generated make config: don't edit
36722 +# Linux kernel version: 2.6.25-rc6
36723 +# Mon Mar 24 08:48:27 2008
36724 +#
36725 +# CONFIG_PPC64 is not set
36726 +
36727 +#
36728 +# Processor support
36729 +#
36730 +# CONFIG_6xx is not set
36731 +CONFIG_PPC_85xx=y
36732 +# CONFIG_PPC_8xx is not set
36733 +# CONFIG_40x is not set
36734 +# CONFIG_44x is not set
36735 +# CONFIG_E200 is not set
36736 +CONFIG_E500=y
36737 +CONFIG_BOOKE=y
36738 +CONFIG_FSL_BOOKE=y
36739 +CONFIG_FSL_EMB_PERFMON=y
36740 +# CONFIG_PHYS_64BIT is not set
36741 +CONFIG_SPE=y
36742 +# CONFIG_PPC_MM_SLICES is not set
36743 +CONFIG_PPC32=y
36744 +CONFIG_WORD_SIZE=32
36745 +CONFIG_PPC_MERGE=y
36746 +CONFIG_MMU=y
36747 +CONFIG_GENERIC_CMOS_UPDATE=y
36748 +CONFIG_GENERIC_TIME=y
36749 +CONFIG_GENERIC_TIME_VSYSCALL=y
36750 +CONFIG_GENERIC_CLOCKEVENTS=y
36751 +CONFIG_GENERIC_HARDIRQS=y
36752 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
36753 +CONFIG_IRQ_PER_CPU=y
36754 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
36755 +CONFIG_ARCH_HAS_ILOG2_U32=y
36756 +CONFIG_GENERIC_HWEIGHT=y
36757 +CONFIG_GENERIC_CALIBRATE_DELAY=y
36758 +CONFIG_GENERIC_FIND_NEXT_BIT=y
36759 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
36760 +CONFIG_PPC=y
36761 +CONFIG_EARLY_PRINTK=y
36762 +CONFIG_GENERIC_NVRAM=y
36763 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
36764 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
36765 +CONFIG_PPC_OF=y
36766 +CONFIG_OF=y
36767 +CONFIG_PPC_UDBG_16550=y
36768 +# CONFIG_GENERIC_TBSYNC is not set
36769 +CONFIG_AUDIT_ARCH=y
36770 +CONFIG_GENERIC_BUG=y
36771 +CONFIG_DEFAULT_UIMAGE=y
36772 +# CONFIG_PPC_DCR_NATIVE is not set
36773 +# CONFIG_PPC_DCR_MMIO is not set
36774 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
36775 +
36776 +#
36777 +# General setup
36778 +#
36779 +CONFIG_EXPERIMENTAL=y
36780 +CONFIG_BROKEN_ON_SMP=y
36781 +CONFIG_INIT_ENV_ARG_LIMIT=32
36782 +CONFIG_LOCALVERSION=""
36783 +CONFIG_LOCALVERSION_AUTO=y
36784 +CONFIG_SWAP=y
36785 +CONFIG_SYSVIPC=y
36786 +CONFIG_SYSVIPC_SYSCTL=y
36787 +# CONFIG_POSIX_MQUEUE is not set
36788 +# CONFIG_BSD_PROCESS_ACCT is not set
36789 +# CONFIG_TASKSTATS is not set
36790 +# CONFIG_AUDIT is not set
36791 +# CONFIG_IKCONFIG is not set
36792 +CONFIG_LOG_BUF_SHIFT=14
36793 +# CONFIG_CGROUPS is not set
36794 +CONFIG_GROUP_SCHED=y
36795 +# CONFIG_FAIR_GROUP_SCHED is not set
36796 +# CONFIG_RT_GROUP_SCHED is not set
36797 +CONFIG_USER_SCHED=y
36798 +# CONFIG_CGROUP_SCHED is not set
36799 +CONFIG_SYSFS_DEPRECATED=y
36800 +CONFIG_SYSFS_DEPRECATED_V2=y
36801 +# CONFIG_RELAY is not set
36802 +# CONFIG_NAMESPACES is not set
36803 +CONFIG_BLK_DEV_INITRD=y
36804 +CONFIG_INITRAMFS_SOURCE=""
36805 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
36806 +CONFIG_SYSCTL=y
36807 +CONFIG_EMBEDDED=y
36808 +CONFIG_SYSCTL_SYSCALL=y
36809 +CONFIG_KALLSYMS=y
36810 +# CONFIG_KALLSYMS_ALL is not set
36811 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
36812 +CONFIG_HOTPLUG=y
36813 +CONFIG_PRINTK=y
36814 +CONFIG_BUG=y
36815 +CONFIG_ELF_CORE=y
36816 +CONFIG_COMPAT_BRK=y
36817 +CONFIG_BASE_FULL=y
36818 +CONFIG_FUTEX=y
36819 +CONFIG_ANON_INODES=y
36820 +CONFIG_EPOLL=y
36821 +CONFIG_SIGNALFD=y
36822 +CONFIG_TIMERFD=y
36823 +CONFIG_EVENTFD=y
36824 +CONFIG_SHMEM=y
36825 +CONFIG_VM_EVENT_COUNTERS=y
36826 +CONFIG_SLUB_DEBUG=y
36827 +# CONFIG_SLAB is not set
36828 +CONFIG_SLUB=y
36829 +# CONFIG_SLOB is not set
36830 +# CONFIG_PROFILING is not set
36831 +# CONFIG_MARKERS is not set
36832 +CONFIG_HAVE_OPROFILE=y
36833 +CONFIG_HAVE_KPROBES=y
36834 +CONFIG_HAVE_KRETPROBES=y
36835 +CONFIG_PROC_PAGE_MONITOR=y
36836 +CONFIG_SLABINFO=y
36837 +CONFIG_RT_MUTEXES=y
36838 +# CONFIG_TINY_SHMEM is not set
36839 +CONFIG_BASE_SMALL=0
36840 +# CONFIG_MODULES is not set
36841 +CONFIG_BLOCK=y
36842 +# CONFIG_LBD is not set
36843 +# CONFIG_BLK_DEV_IO_TRACE is not set
36844 +# CONFIG_LSF is not set
36845 +# CONFIG_BLK_DEV_BSG is not set
36846 +
36847 +#
36848 +# IO Schedulers
36849 +#
36850 +CONFIG_IOSCHED_NOOP=y
36851 +CONFIG_IOSCHED_AS=y
36852 +CONFIG_IOSCHED_DEADLINE=y
36853 +CONFIG_IOSCHED_CFQ=y
36854 +CONFIG_DEFAULT_AS=y
36855 +# CONFIG_DEFAULT_DEADLINE is not set
36856 +# CONFIG_DEFAULT_CFQ is not set
36857 +# CONFIG_DEFAULT_NOOP is not set
36858 +CONFIG_DEFAULT_IOSCHED="anticipatory"
36859 +CONFIG_CLASSIC_RCU=y
36860 +
36861 +#
36862 +# Platform support
36863 +#
36864 +# CONFIG_PPC_MPC512x is not set
36865 +# CONFIG_PPC_MPC5121 is not set
36866 +# CONFIG_PPC_CELL is not set
36867 +# CONFIG_PPC_CELL_NATIVE is not set
36868 +# CONFIG_PQ2ADS is not set
36869 +CONFIG_MPC85xx=y
36870 +# CONFIG_MPC8540_ADS is not set
36871 +CONFIG_MPC8560_ADS=y
36872 +# CONFIG_MPC85xx_CDS is not set
36873 +# CONFIG_MPC85xx_MDS is not set
36874 +# CONFIG_MPC85xx_DS is not set
36875 +# CONFIG_STX_GP3 is not set
36876 +# CONFIG_TQM8540 is not set
36877 +# CONFIG_TQM8541 is not set
36878 +# CONFIG_TQM8555 is not set
36879 +# CONFIG_TQM8560 is not set
36880 +# CONFIG_SBC8548 is not set
36881 +# CONFIG_SBC8560 is not set
36882 +# CONFIG_IPIC is not set
36883 +CONFIG_MPIC=y
36884 +# CONFIG_MPIC_WEIRD is not set
36885 +# CONFIG_PPC_I8259 is not set
36886 +# CONFIG_PPC_RTAS is not set
36887 +# CONFIG_MMIO_NVRAM is not set
36888 +# CONFIG_PPC_MPC106 is not set
36889 +# CONFIG_PPC_970_NAP is not set
36890 +# CONFIG_PPC_INDIRECT_IO is not set
36891 +# CONFIG_GENERIC_IOMAP is not set
36892 +# CONFIG_CPU_FREQ is not set
36893 +CONFIG_CPM2=y
36894 +CONFIG_PPC_CPM_NEW_BINDING=y
36895 +# CONFIG_FSL_ULI1575 is not set
36896 +CONFIG_CPM=y
36897 +
36898 +#
36899 +# Kernel options
36900 +#
36901 +# CONFIG_HIGHMEM is not set
36902 +# CONFIG_TICK_ONESHOT is not set
36903 +# CONFIG_NO_HZ is not set
36904 +# CONFIG_HIGH_RES_TIMERS is not set
36905 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
36906 +# CONFIG_HZ_100 is not set
36907 +CONFIG_HZ_250=y
36908 +# CONFIG_HZ_300 is not set
36909 +# CONFIG_HZ_1000 is not set
36910 +CONFIG_HZ=250
36911 +# CONFIG_SCHED_HRTICK is not set
36912 +CONFIG_PREEMPT_NONE=y
36913 +# CONFIG_PREEMPT_VOLUNTARY is not set
36914 +# CONFIG_PREEMPT is not set
36915 +CONFIG_BINFMT_ELF=y
36916 +CONFIG_BINFMT_MISC=y
36917 +CONFIG_MATH_EMULATION=y
36918 +# CONFIG_IOMMU_HELPER is not set
36919 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
36920 +CONFIG_ARCH_HAS_WALK_MEMORY=y
36921 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
36922 +CONFIG_ARCH_FLATMEM_ENABLE=y
36923 +CONFIG_ARCH_POPULATES_NODE_MAP=y
36924 +CONFIG_SELECT_MEMORY_MODEL=y
36925 +CONFIG_FLATMEM_MANUAL=y
36926 +# CONFIG_DISCONTIGMEM_MANUAL is not set
36927 +# CONFIG_SPARSEMEM_MANUAL is not set
36928 +CONFIG_FLATMEM=y
36929 +CONFIG_FLAT_NODE_MEM_MAP=y
36930 +# CONFIG_SPARSEMEM_STATIC is not set
36931 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
36932 +CONFIG_SPLIT_PTLOCK_CPUS=4
36933 +# CONFIG_RESOURCES_64BIT is not set
36934 +CONFIG_ZONE_DMA_FLAG=1
36935 +CONFIG_BOUNCE=y
36936 +CONFIG_VIRT_TO_BUS=y
36937 +# CONFIG_PROC_DEVICETREE is not set
36938 +# CONFIG_CMDLINE_BOOL is not set
36939 +# CONFIG_PM is not set
36940 +# CONFIG_SECCOMP is not set
36941 +CONFIG_ISA_DMA_API=y
36942 +
36943 +#
36944 +# Bus options
36945 +#
36946 +CONFIG_ZONE_DMA=y
36947 +CONFIG_PPC_INDIRECT_PCI=y
36948 +CONFIG_FSL_SOC=y
36949 +CONFIG_FSL_PCI=y
36950 +CONFIG_PCI=y
36951 +CONFIG_PCI_DOMAINS=y
36952 +CONFIG_PCI_SYSCALL=y
36953 +# CONFIG_PCIEPORTBUS is not set
36954 +CONFIG_ARCH_SUPPORTS_MSI=y
36955 +# CONFIG_PCI_MSI is not set
36956 +CONFIG_PCI_LEGACY=y
36957 +CONFIG_PCI_DEBUG=y
36958 +# CONFIG_PCCARD is not set
36959 +# CONFIG_HOTPLUG_PCI is not set
36960 +
36961 +#
36962 +# Advanced setup
36963 +#
36964 +# CONFIG_ADVANCED_OPTIONS is not set
36965 +
36966 +#
36967 +# Default settings for advanced configuration options are used
36968 +#
36969 +CONFIG_HIGHMEM_START=0xfe000000
36970 +CONFIG_LOWMEM_SIZE=0x30000000
36971 +CONFIG_KERNEL_START=0xc0000000
36972 +CONFIG_TASK_SIZE=0xc0000000
36973 +CONFIG_BOOT_LOAD=0x00800000
36974 +
36975 +#
36976 +# Networking
36977 +#
36978 +CONFIG_NET=y
36979 +
36980 +#
36981 +# Networking options
36982 +#
36983 +CONFIG_PACKET=y
36984 +# CONFIG_PACKET_MMAP is not set
36985 +CONFIG_UNIX=y
36986 +CONFIG_XFRM=y
36987 +# CONFIG_XFRM_USER is not set
36988 +# CONFIG_XFRM_SUB_POLICY is not set
36989 +# CONFIG_XFRM_MIGRATE is not set
36990 +# CONFIG_XFRM_STATISTICS is not set
36991 +# CONFIG_NET_KEY is not set
36992 +CONFIG_INET=y
36993 +CONFIG_IP_MULTICAST=y
36994 +# CONFIG_IP_ADVANCED_ROUTER is not set
36995 +CONFIG_IP_FIB_HASH=y
36996 +CONFIG_IP_PNP=y
36997 +CONFIG_IP_PNP_DHCP=y
36998 +CONFIG_IP_PNP_BOOTP=y
36999 +# CONFIG_IP_PNP_RARP is not set
37000 +# CONFIG_NET_IPIP is not set
37001 +# CONFIG_NET_IPGRE is not set
37002 +# CONFIG_IP_MROUTE is not set
37003 +# CONFIG_ARPD is not set
37004 +CONFIG_SYN_COOKIES=y
37005 +# CONFIG_INET_AH is not set
37006 +# CONFIG_INET_ESP is not set
37007 +# CONFIG_INET_IPCOMP is not set
37008 +# CONFIG_INET_XFRM_TUNNEL is not set
37009 +# CONFIG_INET_TUNNEL is not set
37010 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
37011 +CONFIG_INET_XFRM_MODE_TUNNEL=y
37012 +CONFIG_INET_XFRM_MODE_BEET=y
37013 +# CONFIG_INET_LRO is not set
37014 +CONFIG_INET_DIAG=y
37015 +CONFIG_INET_TCP_DIAG=y
37016 +# CONFIG_TCP_CONG_ADVANCED is not set
37017 +CONFIG_TCP_CONG_CUBIC=y
37018 +CONFIG_DEFAULT_TCP_CONG="cubic"
37019 +# CONFIG_TCP_MD5SIG is not set
37020 +# CONFIG_IPV6 is not set
37021 +# CONFIG_INET6_XFRM_TUNNEL is not set
37022 +# CONFIG_INET6_TUNNEL is not set
37023 +# CONFIG_NETWORK_SECMARK is not set
37024 +# CONFIG_NETFILTER is not set
37025 +# CONFIG_IP_DCCP is not set
37026 +# CONFIG_IP_SCTP is not set
37027 +# CONFIG_TIPC is not set
37028 +# CONFIG_ATM is not set
37029 +# CONFIG_BRIDGE is not set
37030 +# CONFIG_VLAN_8021Q is not set
37031 +# CONFIG_DECNET is not set
37032 +# CONFIG_LLC2 is not set
37033 +# CONFIG_IPX is not set
37034 +# CONFIG_ATALK is not set
37035 +# CONFIG_X25 is not set
37036 +# CONFIG_LAPB is not set
37037 +# CONFIG_ECONET is not set
37038 +# CONFIG_WAN_ROUTER is not set
37039 +# CONFIG_NET_SCHED is not set
37040 +
37041 +#
37042 +# Network testing
37043 +#
37044 +# CONFIG_NET_PKTGEN is not set
37045 +# CONFIG_HAMRADIO is not set
37046 +# CONFIG_CAN is not set
37047 +# CONFIG_IRDA is not set
37048 +# CONFIG_BT is not set
37049 +# CONFIG_AF_RXRPC is not set
37050 +
37051 +#
37052 +# Wireless
37053 +#
37054 +# CONFIG_CFG80211 is not set
37055 +# CONFIG_WIRELESS_EXT is not set
37056 +# CONFIG_MAC80211 is not set
37057 +# CONFIG_IEEE80211 is not set
37058 +# CONFIG_RFKILL is not set
37059 +# CONFIG_NET_9P is not set
37060 +
37061 +#
37062 +# Device Drivers
37063 +#
37064 +
37065 +#
37066 +# Generic Driver Options
37067 +#
37068 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
37069 +CONFIG_STANDALONE=y
37070 +CONFIG_PREVENT_FIRMWARE_BUILD=y
37071 +# CONFIG_FW_LOADER is not set
37072 +# CONFIG_DEBUG_DRIVER is not set
37073 +# CONFIG_DEBUG_DEVRES is not set
37074 +# CONFIG_SYS_HYPERVISOR is not set
37075 +# CONFIG_CONNECTOR is not set
37076 +# CONFIG_MTD is not set
37077 +CONFIG_OF_DEVICE=y
37078 +# CONFIG_PARPORT is not set
37079 +CONFIG_BLK_DEV=y
37080 +# CONFIG_BLK_DEV_FD is not set
37081 +# CONFIG_BLK_CPQ_DA is not set
37082 +# CONFIG_BLK_CPQ_CISS_DA is not set
37083 +# CONFIG_BLK_DEV_DAC960 is not set
37084 +# CONFIG_BLK_DEV_UMEM is not set
37085 +# CONFIG_BLK_DEV_COW_COMMON is not set
37086 +CONFIG_BLK_DEV_LOOP=y
37087 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
37088 +# CONFIG_BLK_DEV_NBD is not set
37089 +# CONFIG_BLK_DEV_SX8 is not set
37090 +CONFIG_BLK_DEV_RAM=y
37091 +CONFIG_BLK_DEV_RAM_COUNT=16
37092 +CONFIG_BLK_DEV_RAM_SIZE=32768
37093 +# CONFIG_BLK_DEV_XIP is not set
37094 +# CONFIG_CDROM_PKTCDVD is not set
37095 +# CONFIG_ATA_OVER_ETH is not set
37096 +CONFIG_MISC_DEVICES=y
37097 +# CONFIG_PHANTOM is not set
37098 +# CONFIG_EEPROM_93CX6 is not set
37099 +# CONFIG_SGI_IOC4 is not set
37100 +# CONFIG_TIFM_CORE is not set
37101 +# CONFIG_ENCLOSURE_SERVICES is not set
37102 +CONFIG_HAVE_IDE=y
37103 +# CONFIG_IDE is not set
37104 +
37105 +#
37106 +# SCSI device support
37107 +#
37108 +# CONFIG_RAID_ATTRS is not set
37109 +# CONFIG_SCSI is not set
37110 +# CONFIG_SCSI_DMA is not set
37111 +# CONFIG_SCSI_NETLINK is not set
37112 +# CONFIG_ATA is not set
37113 +# CONFIG_MD is not set
37114 +# CONFIG_FUSION is not set
37115 +
37116 +#
37117 +# IEEE 1394 (FireWire) support
37118 +#
37119 +# CONFIG_FIREWIRE is not set
37120 +# CONFIG_IEEE1394 is not set
37121 +# CONFIG_I2O is not set
37122 +# CONFIG_MACINTOSH_DRIVERS is not set
37123 +CONFIG_NETDEVICES=y
37124 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
37125 +# CONFIG_DUMMY is not set
37126 +# CONFIG_BONDING is not set
37127 +# CONFIG_MACVLAN is not set
37128 +# CONFIG_EQUALIZER is not set
37129 +# CONFIG_TUN is not set
37130 +# CONFIG_VETH is not set
37131 +# CONFIG_ARCNET is not set
37132 +CONFIG_PHYLIB=y
37133 +
37134 +#
37135 +# MII PHY device drivers
37136 +#
37137 +CONFIG_MARVELL_PHY=y
37138 +CONFIG_DAVICOM_PHY=y
37139 +# CONFIG_QSEMI_PHY is not set
37140 +# CONFIG_LXT_PHY is not set
37141 +# CONFIG_CICADA_PHY is not set
37142 +# CONFIG_VITESSE_PHY is not set
37143 +# CONFIG_SMSC_PHY is not set
37144 +# CONFIG_BROADCOM_PHY is not set
37145 +# CONFIG_ICPLUS_PHY is not set
37146 +# CONFIG_REALTEK_PHY is not set
37147 +# CONFIG_FIXED_PHY is not set
37148 +# CONFIG_MDIO_BITBANG is not set
37149 +CONFIG_NET_ETHERNET=y
37150 +CONFIG_MII=y
37151 +# CONFIG_HAPPYMEAL is not set
37152 +# CONFIG_SUNGEM is not set
37153 +# CONFIG_CASSINI is not set
37154 +# CONFIG_NET_VENDOR_3COM is not set
37155 +# CONFIG_NET_TULIP is not set
37156 +# CONFIG_HP100 is not set
37157 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
37158 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
37159 +# CONFIG_IBM_NEW_EMAC_TAH is not set
37160 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
37161 +# CONFIG_NET_PCI is not set
37162 +# CONFIG_B44 is not set
37163 +CONFIG_FS_ENET=y
37164 +# CONFIG_FS_ENET_HAS_SCC is not set
37165 +CONFIG_FS_ENET_HAS_FCC=y
37166 +# CONFIG_FS_ENET_MDIO_FCC is not set
37167 +CONFIG_NETDEV_1000=y
37168 +# CONFIG_ACENIC is not set
37169 +# CONFIG_DL2K is not set
37170 +CONFIG_E1000=y
37171 +CONFIG_E1000_NAPI=y
37172 +# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set
37173 +# CONFIG_E1000E is not set
37174 +# CONFIG_E1000E_ENABLED is not set
37175 +# CONFIG_IP1000 is not set
37176 +# CONFIG_IGB is not set
37177 +# CONFIG_NS83820 is not set
37178 +# CONFIG_HAMACHI is not set
37179 +# CONFIG_YELLOWFIN is not set
37180 +# CONFIG_R8169 is not set
37181 +# CONFIG_SIS190 is not set
37182 +# CONFIG_SKGE is not set
37183 +# CONFIG_SKY2 is not set
37184 +# CONFIG_SK98LIN is not set
37185 +# CONFIG_VIA_VELOCITY is not set
37186 +# CONFIG_TIGON3 is not set
37187 +# CONFIG_BNX2 is not set
37188 +CONFIG_GIANFAR=y
37189 +CONFIG_GFAR_NAPI=y
37190 +# CONFIG_QLA3XXX is not set
37191 +# CONFIG_ATL1 is not set
37192 +CONFIG_NETDEV_10000=y
37193 +# CONFIG_CHELSIO_T1 is not set
37194 +# CONFIG_CHELSIO_T3 is not set
37195 +# CONFIG_IXGBE is not set
37196 +# CONFIG_IXGB is not set
37197 +# CONFIG_S2IO is not set
37198 +# CONFIG_MYRI10GE is not set
37199 +# CONFIG_NETXEN_NIC is not set
37200 +# CONFIG_NIU is not set
37201 +# CONFIG_MLX4_CORE is not set
37202 +# CONFIG_TEHUTI is not set
37203 +# CONFIG_BNX2X is not set
37204 +# CONFIG_TR is not set
37205 +
37206 +#
37207 +# Wireless LAN
37208 +#
37209 +# CONFIG_WLAN_PRE80211 is not set
37210 +# CONFIG_WLAN_80211 is not set
37211 +# CONFIG_WAN is not set
37212 +# CONFIG_FDDI is not set
37213 +# CONFIG_HIPPI is not set
37214 +# CONFIG_PPP is not set
37215 +# CONFIG_SLIP is not set
37216 +# CONFIG_NETCONSOLE is not set
37217 +# CONFIG_NETPOLL is not set
37218 +# CONFIG_NET_POLL_CONTROLLER is not set
37219 +# CONFIG_ISDN is not set
37220 +# CONFIG_PHONE is not set
37221 +
37222 +#
37223 +# Input device support
37224 +#
37225 +CONFIG_INPUT=y
37226 +# CONFIG_INPUT_FF_MEMLESS is not set
37227 +# CONFIG_INPUT_POLLDEV is not set
37228 +
37229 +#
37230 +# Userland interfaces
37231 +#
37232 +# CONFIG_INPUT_MOUSEDEV is not set
37233 +# CONFIG_INPUT_JOYDEV is not set
37234 +# CONFIG_INPUT_EVDEV is not set
37235 +# CONFIG_INPUT_EVBUG is not set
37236 +
37237 +#
37238 +# Input Device Drivers
37239 +#
37240 +# CONFIG_INPUT_KEYBOARD is not set
37241 +# CONFIG_INPUT_MOUSE is not set
37242 +# CONFIG_INPUT_JOYSTICK is not set
37243 +# CONFIG_INPUT_TABLET is not set
37244 +# CONFIG_INPUT_TOUCHSCREEN is not set
37245 +# CONFIG_INPUT_MISC is not set
37246 +
37247 +#
37248 +# Hardware I/O ports
37249 +#
37250 +# CONFIG_SERIO is not set
37251 +# CONFIG_GAMEPORT is not set
37252 +
37253 +#
37254 +# Character devices
37255 +#
37256 +# CONFIG_VT is not set
37257 +# CONFIG_SERIAL_NONSTANDARD is not set
37258 +# CONFIG_NOZOMI is not set
37259 +
37260 +#
37261 +# Serial drivers
37262 +#
37263 +# CONFIG_SERIAL_8250 is not set
37264 +
37265 +#
37266 +# Non-8250 serial port support
37267 +#
37268 +# CONFIG_SERIAL_UARTLITE is not set
37269 +CONFIG_SERIAL_CORE=y
37270 +CONFIG_SERIAL_CORE_CONSOLE=y
37271 +CONFIG_SERIAL_CPM=y
37272 +CONFIG_SERIAL_CPM_CONSOLE=y
37273 +CONFIG_SERIAL_CPM_SCC1=y
37274 +CONFIG_SERIAL_CPM_SCC2=y
37275 +# CONFIG_SERIAL_CPM_SCC3 is not set
37276 +# CONFIG_SERIAL_CPM_SCC4 is not set
37277 +# CONFIG_SERIAL_CPM_SMC1 is not set
37278 +# CONFIG_SERIAL_CPM_SMC2 is not set
37279 +# CONFIG_SERIAL_JSM is not set
37280 +CONFIG_UNIX98_PTYS=y
37281 +CONFIG_LEGACY_PTYS=y
37282 +CONFIG_LEGACY_PTY_COUNT=256
37283 +# CONFIG_IPMI_HANDLER is not set
37284 +CONFIG_HW_RANDOM=y
37285 +# CONFIG_NVRAM is not set
37286 +CONFIG_GEN_RTC=y
37287 +# CONFIG_GEN_RTC_X is not set
37288 +# CONFIG_R3964 is not set
37289 +# CONFIG_APPLICOM is not set
37290 +# CONFIG_RAW_DRIVER is not set
37291 +# CONFIG_TCG_TPM is not set
37292 +CONFIG_DEVPORT=y
37293 +# CONFIG_I2C is not set
37294 +
37295 +#
37296 +# SPI support
37297 +#
37298 +# CONFIG_SPI is not set
37299 +# CONFIG_SPI_MASTER is not set
37300 +# CONFIG_W1 is not set
37301 +# CONFIG_POWER_SUPPLY is not set
37302 +CONFIG_HWMON=y
37303 +# CONFIG_HWMON_VID is not set
37304 +# CONFIG_SENSORS_I5K_AMB is not set
37305 +# CONFIG_SENSORS_F71805F is not set
37306 +# CONFIG_SENSORS_F71882FG is not set
37307 +# CONFIG_SENSORS_IT87 is not set
37308 +# CONFIG_SENSORS_PC87360 is not set
37309 +# CONFIG_SENSORS_PC87427 is not set
37310 +# CONFIG_SENSORS_SIS5595 is not set
37311 +# CONFIG_SENSORS_SMSC47M1 is not set
37312 +# CONFIG_SENSORS_SMSC47B397 is not set
37313 +# CONFIG_SENSORS_VIA686A is not set
37314 +# CONFIG_SENSORS_VT1211 is not set
37315 +# CONFIG_SENSORS_VT8231 is not set
37316 +# CONFIG_SENSORS_W83627HF is not set
37317 +# CONFIG_SENSORS_W83627EHF is not set
37318 +# CONFIG_HWMON_DEBUG_CHIP is not set
37319 +# CONFIG_THERMAL is not set
37320 +# CONFIG_WATCHDOG is not set
37321 +
37322 +#
37323 +# Sonics Silicon Backplane
37324 +#
37325 +CONFIG_SSB_POSSIBLE=y
37326 +# CONFIG_SSB is not set
37327 +
37328 +#
37329 +# Multifunction device drivers
37330 +#
37331 +# CONFIG_MFD_SM501 is not set
37332 +
37333 +#
37334 +# Multimedia devices
37335 +#
37336 +# CONFIG_VIDEO_DEV is not set
37337 +# CONFIG_DVB_CORE is not set
37338 +CONFIG_DAB=y
37339 +
37340 +#
37341 +# Graphics support
37342 +#
37343 +# CONFIG_AGP is not set
37344 +# CONFIG_DRM is not set
37345 +# CONFIG_VGASTATE is not set
37346 +CONFIG_VIDEO_OUTPUT_CONTROL=y
37347 +# CONFIG_FB is not set
37348 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
37349 +
37350 +#
37351 +# Display device support
37352 +#
37353 +# CONFIG_DISPLAY_SUPPORT is not set
37354 +
37355 +#
37356 +# Sound
37357 +#
37358 +# CONFIG_SOUND is not set
37359 +CONFIG_HID_SUPPORT=y
37360 +CONFIG_HID=y
37361 +# CONFIG_HID_DEBUG is not set
37362 +# CONFIG_HIDRAW is not set
37363 +CONFIG_USB_SUPPORT=y
37364 +CONFIG_USB_ARCH_HAS_HCD=y
37365 +CONFIG_USB_ARCH_HAS_OHCI=y
37366 +CONFIG_USB_ARCH_HAS_EHCI=y
37367 +# CONFIG_USB is not set
37368 +
37369 +#
37370 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
37371 +#
37372 +# CONFIG_USB_GADGET is not set
37373 +# CONFIG_MMC is not set
37374 +# CONFIG_MEMSTICK is not set
37375 +# CONFIG_NEW_LEDS is not set
37376 +# CONFIG_INFINIBAND is not set
37377 +# CONFIG_EDAC is not set
37378 +# CONFIG_RTC_CLASS is not set
37379 +# CONFIG_DMADEVICES is not set
37380 +
37381 +#
37382 +# Userspace I/O
37383 +#
37384 +# CONFIG_UIO is not set
37385 +
37386 +#
37387 +# File systems
37388 +#
37389 +CONFIG_EXT2_FS=y
37390 +# CONFIG_EXT2_FS_XATTR is not set
37391 +# CONFIG_EXT2_FS_XIP is not set
37392 +CONFIG_EXT3_FS=y
37393 +CONFIG_EXT3_FS_XATTR=y
37394 +# CONFIG_EXT3_FS_POSIX_ACL is not set
37395 +# CONFIG_EXT3_FS_SECURITY is not set
37396 +# CONFIG_EXT4DEV_FS is not set
37397 +CONFIG_JBD=y
37398 +CONFIG_FS_MBCACHE=y
37399 +# CONFIG_REISERFS_FS is not set
37400 +# CONFIG_JFS_FS is not set
37401 +# CONFIG_FS_POSIX_ACL is not set
37402 +# CONFIG_XFS_FS is not set
37403 +# CONFIG_GFS2_FS is not set
37404 +# CONFIG_OCFS2_FS is not set
37405 +CONFIG_DNOTIFY=y
37406 +CONFIG_INOTIFY=y
37407 +CONFIG_INOTIFY_USER=y
37408 +# CONFIG_QUOTA is not set
37409 +# CONFIG_AUTOFS_FS is not set
37410 +# CONFIG_AUTOFS4_FS is not set
37411 +# CONFIG_FUSE_FS is not set
37412 +
37413 +#
37414 +# CD-ROM/DVD Filesystems
37415 +#
37416 +# CONFIG_ISO9660_FS is not set
37417 +# CONFIG_UDF_FS is not set
37418 +
37419 +#
37420 +# DOS/FAT/NT Filesystems
37421 +#
37422 +# CONFIG_MSDOS_FS is not set
37423 +# CONFIG_VFAT_FS is not set
37424 +# CONFIG_NTFS_FS is not set
37425 +
37426 +#
37427 +# Pseudo filesystems
37428 +#
37429 +CONFIG_PROC_FS=y
37430 +CONFIG_PROC_KCORE=y
37431 +CONFIG_PROC_SYSCTL=y
37432 +CONFIG_SYSFS=y
37433 +CONFIG_TMPFS=y
37434 +# CONFIG_TMPFS_POSIX_ACL is not set
37435 +# CONFIG_HUGETLB_PAGE is not set
37436 +# CONFIG_CONFIGFS_FS is not set
37437 +
37438 +#
37439 +# Miscellaneous filesystems
37440 +#
37441 +# CONFIG_ADFS_FS is not set
37442 +# CONFIG_AFFS_FS is not set
37443 +# CONFIG_HFS_FS is not set
37444 +# CONFIG_HFSPLUS_FS is not set
37445 +# CONFIG_BEFS_FS is not set
37446 +# CONFIG_BFS_FS is not set
37447 +# CONFIG_EFS_FS is not set
37448 +# CONFIG_CRAMFS is not set
37449 +# CONFIG_VXFS_FS is not set
37450 +# CONFIG_MINIX_FS is not set
37451 +# CONFIG_HPFS_FS is not set
37452 +# CONFIG_QNX4FS_FS is not set
37453 +# CONFIG_ROMFS_FS is not set
37454 +# CONFIG_SYSV_FS is not set
37455 +# CONFIG_UFS_FS is not set
37456 +CONFIG_NETWORK_FILESYSTEMS=y
37457 +CONFIG_NFS_FS=y
37458 +# CONFIG_NFS_V3 is not set
37459 +# CONFIG_NFS_V4 is not set
37460 +# CONFIG_NFS_DIRECTIO is not set
37461 +# CONFIG_NFSD is not set
37462 +CONFIG_ROOT_NFS=y
37463 +CONFIG_LOCKD=y
37464 +CONFIG_NFS_COMMON=y
37465 +CONFIG_SUNRPC=y
37466 +# CONFIG_SUNRPC_BIND34 is not set
37467 +# CONFIG_RPCSEC_GSS_KRB5 is not set
37468 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
37469 +# CONFIG_SMB_FS is not set
37470 +# CONFIG_CIFS is not set
37471 +# CONFIG_NCP_FS is not set
37472 +# CONFIG_CODA_FS is not set
37473 +# CONFIG_AFS_FS is not set
37474 +
37475 +#
37476 +# Partition Types
37477 +#
37478 +CONFIG_PARTITION_ADVANCED=y
37479 +# CONFIG_ACORN_PARTITION is not set
37480 +# CONFIG_OSF_PARTITION is not set
37481 +# CONFIG_AMIGA_PARTITION is not set
37482 +# CONFIG_ATARI_PARTITION is not set
37483 +# CONFIG_MAC_PARTITION is not set
37484 +# CONFIG_MSDOS_PARTITION is not set
37485 +# CONFIG_LDM_PARTITION is not set
37486 +# CONFIG_SGI_PARTITION is not set
37487 +# CONFIG_ULTRIX_PARTITION is not set
37488 +# CONFIG_SUN_PARTITION is not set
37489 +# CONFIG_KARMA_PARTITION is not set
37490 +# CONFIG_EFI_PARTITION is not set
37491 +# CONFIG_SYSV68_PARTITION is not set
37492 +# CONFIG_NLS is not set
37493 +# CONFIG_DLM is not set
37494 +
37495 +#
37496 +# Library routines
37497 +#
37498 +CONFIG_BITREVERSE=y
37499 +# CONFIG_CRC_CCITT is not set
37500 +# CONFIG_CRC16 is not set
37501 +# CONFIG_CRC_ITU_T is not set
37502 +CONFIG_CRC32=y
37503 +# CONFIG_CRC7 is not set
37504 +# CONFIG_LIBCRC32C is not set
37505 +CONFIG_PLIST=y
37506 +CONFIG_HAS_IOMEM=y
37507 +CONFIG_HAS_IOPORT=y
37508 +CONFIG_HAS_DMA=y
37509 +
37510 +#
37511 +# Kernel hacking
37512 +#
37513 +# CONFIG_PRINTK_TIME is not set
37514 +CONFIG_ENABLE_WARN_DEPRECATED=y
37515 +CONFIG_ENABLE_MUST_CHECK=y
37516 +# CONFIG_MAGIC_SYSRQ is not set
37517 +# CONFIG_UNUSED_SYMBOLS is not set
37518 +# CONFIG_DEBUG_FS is not set
37519 +# CONFIG_HEADERS_CHECK is not set
37520 +CONFIG_DEBUG_KERNEL=y
37521 +# CONFIG_DEBUG_SHIRQ is not set
37522 +CONFIG_DETECT_SOFTLOCKUP=y
37523 +CONFIG_SCHED_DEBUG=y
37524 +# CONFIG_SCHEDSTATS is not set
37525 +# CONFIG_TIMER_STATS is not set
37526 +# CONFIG_SLUB_DEBUG_ON is not set
37527 +# CONFIG_SLUB_STATS is not set
37528 +# CONFIG_DEBUG_RT_MUTEXES is not set
37529 +# CONFIG_RT_MUTEX_TESTER is not set
37530 +# CONFIG_DEBUG_SPINLOCK is not set
37531 +CONFIG_DEBUG_MUTEXES=y
37532 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
37533 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
37534 +# CONFIG_DEBUG_KOBJECT is not set
37535 +# CONFIG_DEBUG_BUGVERBOSE is not set
37536 +# CONFIG_DEBUG_INFO is not set
37537 +# CONFIG_DEBUG_VM is not set
37538 +# CONFIG_DEBUG_LIST is not set
37539 +# CONFIG_DEBUG_SG is not set
37540 +# CONFIG_BOOT_PRINTK_DELAY is not set
37541 +# CONFIG_BACKTRACE_SELF_TEST is not set
37542 +# CONFIG_FAULT_INJECTION is not set
37543 +# CONFIG_SAMPLES is not set
37544 +# CONFIG_DEBUG_STACKOVERFLOW is not set
37545 +# CONFIG_DEBUG_STACK_USAGE is not set
37546 +# CONFIG_DEBUG_PAGEALLOC is not set
37547 +# CONFIG_DEBUGGER is not set
37548 +# CONFIG_KGDB_CONSOLE is not set
37549 +# CONFIG_BDI_SWITCH is not set
37550 +# CONFIG_PPC_EARLY_DEBUG is not set
37551 +
37552 +#
37553 +# Security options
37554 +#
37555 +# CONFIG_KEYS is not set
37556 +# CONFIG_SECURITY is not set
37557 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
37558 +CONFIG_CRYPTO=y
37559 +# CONFIG_CRYPTO_SEQIV is not set
37560 +# CONFIG_CRYPTO_MANAGER is not set
37561 +# CONFIG_CRYPTO_HMAC is not set
37562 +# CONFIG_CRYPTO_XCBC is not set
37563 +# CONFIG_CRYPTO_NULL is not set
37564 +# CONFIG_CRYPTO_MD4 is not set
37565 +# CONFIG_CRYPTO_MD5 is not set
37566 +# CONFIG_CRYPTO_SHA1 is not set
37567 +# CONFIG_CRYPTO_SHA256 is not set
37568 +# CONFIG_CRYPTO_SHA512 is not set
37569 +# CONFIG_CRYPTO_WP512 is not set
37570 +# CONFIG_CRYPTO_TGR192 is not set
37571 +# CONFIG_CRYPTO_GF128MUL is not set
37572 +# CONFIG_CRYPTO_ECB is not set
37573 +# CONFIG_CRYPTO_CBC is not set
37574 +# CONFIG_CRYPTO_PCBC is not set
37575 +# CONFIG_CRYPTO_LRW is not set
37576 +# CONFIG_CRYPTO_XTS is not set
37577 +# CONFIG_CRYPTO_CTR is not set
37578 +# CONFIG_CRYPTO_GCM is not set
37579 +# CONFIG_CRYPTO_CCM is not set
37580 +# CONFIG_CRYPTO_CRYPTD is not set
37581 +# CONFIG_CRYPTO_DES is not set
37582 +# CONFIG_CRYPTO_FCRYPT is not set
37583 +# CONFIG_CRYPTO_BLOWFISH is not set
37584 +# CONFIG_CRYPTO_TWOFISH is not set
37585 +# CONFIG_CRYPTO_SERPENT is not set
37586 +# CONFIG_CRYPTO_AES is not set
37587 +# CONFIG_CRYPTO_CAST5 is not set
37588 +# CONFIG_CRYPTO_CAST6 is not set
37589 +# CONFIG_CRYPTO_TEA is not set
37590 +# CONFIG_CRYPTO_ARC4 is not set
37591 +# CONFIG_CRYPTO_KHAZAD is not set
37592 +# CONFIG_CRYPTO_ANUBIS is not set
37593 +# CONFIG_CRYPTO_SEED is not set
37594 +# CONFIG_CRYPTO_SALSA20 is not set
37595 +# CONFIG_CRYPTO_DEFLATE is not set
37596 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
37597 +# CONFIG_CRYPTO_CRC32C is not set
37598 +# CONFIG_CRYPTO_CAMELLIA is not set
37599 +# CONFIG_CRYPTO_AUTHENC is not set
37600 +# CONFIG_CRYPTO_LZO is not set
37601 +CONFIG_CRYPTO_HW=y
37602 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
37603 +# CONFIG_PPC_CLOCK is not set
37604 +CONFIG_PPC_LIB_RHEAP=y
37605 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8568mds_defconfig
37606 ===================================================================
37607 --- /dev/null
37608 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8568mds_defconfig
37609 @@ -0,0 +1,1117 @@
37610 +#
37611 +# Automatically generated make config: don't edit
37612 +# Linux kernel version: 2.6.25-rc7
37613 +# Mon Mar 31 11:37:05 2008
37614 +#
37615 +# CONFIG_PPC64 is not set
37616 +
37617 +#
37618 +# Processor support
37619 +#
37620 +# CONFIG_6xx is not set
37621 +CONFIG_PPC_85xx=y
37622 +# CONFIG_PPC_8xx is not set
37623 +# CONFIG_40x is not set
37624 +# CONFIG_44x is not set
37625 +# CONFIG_E200 is not set
37626 +CONFIG_E500=y
37627 +CONFIG_BOOKE=y
37628 +CONFIG_FSL_BOOKE=y
37629 +CONFIG_FSL_EMB_PERFMON=y
37630 +# CONFIG_PHYS_64BIT is not set
37631 +CONFIG_SPE=y
37632 +# CONFIG_PPC_MM_SLICES is not set
37633 +CONFIG_PPC32=y
37634 +CONFIG_WORD_SIZE=32
37635 +CONFIG_PPC_MERGE=y
37636 +CONFIG_MMU=y
37637 +CONFIG_GENERIC_CMOS_UPDATE=y
37638 +CONFIG_GENERIC_TIME=y
37639 +CONFIG_GENERIC_TIME_VSYSCALL=y
37640 +CONFIG_GENERIC_CLOCKEVENTS=y
37641 +CONFIG_GENERIC_HARDIRQS=y
37642 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
37643 +CONFIG_IRQ_PER_CPU=y
37644 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
37645 +CONFIG_ARCH_HAS_ILOG2_U32=y
37646 +CONFIG_GENERIC_HWEIGHT=y
37647 +CONFIG_GENERIC_CALIBRATE_DELAY=y
37648 +CONFIG_GENERIC_FIND_NEXT_BIT=y
37649 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
37650 +CONFIG_PPC=y
37651 +CONFIG_EARLY_PRINTK=y
37652 +CONFIG_GENERIC_NVRAM=y
37653 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
37654 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
37655 +CONFIG_PPC_OF=y
37656 +CONFIG_OF=y
37657 +CONFIG_PPC_UDBG_16550=y
37658 +# CONFIG_GENERIC_TBSYNC is not set
37659 +CONFIG_AUDIT_ARCH=y
37660 +CONFIG_GENERIC_BUG=y
37661 +CONFIG_DEFAULT_UIMAGE=y
37662 +# CONFIG_PPC_DCR_NATIVE is not set
37663 +# CONFIG_PPC_DCR_MMIO is not set
37664 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
37665 +
37666 +#
37667 +# General setup
37668 +#
37669 +CONFIG_EXPERIMENTAL=y
37670 +CONFIG_BROKEN_ON_SMP=y
37671 +CONFIG_INIT_ENV_ARG_LIMIT=32
37672 +CONFIG_LOCALVERSION=""
37673 +CONFIG_LOCALVERSION_AUTO=y
37674 +CONFIG_SWAP=y
37675 +CONFIG_SYSVIPC=y
37676 +CONFIG_SYSVIPC_SYSCTL=y
37677 +# CONFIG_POSIX_MQUEUE is not set
37678 +# CONFIG_BSD_PROCESS_ACCT is not set
37679 +# CONFIG_TASKSTATS is not set
37680 +# CONFIG_AUDIT is not set
37681 +# CONFIG_IKCONFIG is not set
37682 +CONFIG_LOG_BUF_SHIFT=14
37683 +# CONFIG_CGROUPS is not set
37684 +CONFIG_GROUP_SCHED=y
37685 +# CONFIG_FAIR_GROUP_SCHED is not set
37686 +# CONFIG_RT_GROUP_SCHED is not set
37687 +CONFIG_USER_SCHED=y
37688 +# CONFIG_CGROUP_SCHED is not set
37689 +CONFIG_SYSFS_DEPRECATED=y
37690 +CONFIG_SYSFS_DEPRECATED_V2=y
37691 +# CONFIG_RELAY is not set
37692 +# CONFIG_NAMESPACES is not set
37693 +CONFIG_BLK_DEV_INITRD=y
37694 +CONFIG_INITRAMFS_SOURCE=""
37695 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
37696 +CONFIG_SYSCTL=y
37697 +CONFIG_EMBEDDED=y
37698 +CONFIG_SYSCTL_SYSCALL=y
37699 +# CONFIG_KALLSYMS is not set
37700 +CONFIG_HOTPLUG=y
37701 +CONFIG_PRINTK=y
37702 +CONFIG_BUG=y
37703 +CONFIG_ELF_CORE=y
37704 +CONFIG_COMPAT_BRK=y
37705 +CONFIG_BASE_FULL=y
37706 +CONFIG_FUTEX=y
37707 +CONFIG_ANON_INODES=y
37708 +# CONFIG_EPOLL is not set
37709 +CONFIG_SIGNALFD=y
37710 +CONFIG_TIMERFD=y
37711 +CONFIG_EVENTFD=y
37712 +CONFIG_SHMEM=y
37713 +CONFIG_VM_EVENT_COUNTERS=y
37714 +CONFIG_SLUB_DEBUG=y
37715 +# CONFIG_SLAB is not set
37716 +CONFIG_SLUB=y
37717 +# CONFIG_SLOB is not set
37718 +# CONFIG_PROFILING is not set
37719 +# CONFIG_MARKERS is not set
37720 +CONFIG_HAVE_OPROFILE=y
37721 +CONFIG_HAVE_KPROBES=y
37722 +CONFIG_HAVE_KRETPROBES=y
37723 +CONFIG_PROC_PAGE_MONITOR=y
37724 +CONFIG_SLABINFO=y
37725 +CONFIG_RT_MUTEXES=y
37726 +# CONFIG_TINY_SHMEM is not set
37727 +CONFIG_BASE_SMALL=0
37728 +CONFIG_MODULES=y
37729 +CONFIG_MODULE_UNLOAD=y
37730 +# CONFIG_MODULE_FORCE_UNLOAD is not set
37731 +# CONFIG_MODVERSIONS is not set
37732 +# CONFIG_MODULE_SRCVERSION_ALL is not set
37733 +# CONFIG_KMOD is not set
37734 +CONFIG_BLOCK=y
37735 +# CONFIG_LBD is not set
37736 +# CONFIG_BLK_DEV_IO_TRACE is not set
37737 +# CONFIG_LSF is not set
37738 +# CONFIG_BLK_DEV_BSG is not set
37739 +
37740 +#
37741 +# IO Schedulers
37742 +#
37743 +CONFIG_IOSCHED_NOOP=y
37744 +CONFIG_IOSCHED_AS=y
37745 +CONFIG_IOSCHED_DEADLINE=y
37746 +CONFIG_IOSCHED_CFQ=y
37747 +CONFIG_DEFAULT_AS=y
37748 +# CONFIG_DEFAULT_DEADLINE is not set
37749 +# CONFIG_DEFAULT_CFQ is not set
37750 +# CONFIG_DEFAULT_NOOP is not set
37751 +CONFIG_DEFAULT_IOSCHED="anticipatory"
37752 +CONFIG_CLASSIC_RCU=y
37753 +
37754 +#
37755 +# Platform support
37756 +#
37757 +# CONFIG_PPC_MPC512x is not set
37758 +# CONFIG_PPC_MPC5121 is not set
37759 +# CONFIG_PPC_CELL is not set
37760 +# CONFIG_PPC_CELL_NATIVE is not set
37761 +# CONFIG_PQ2ADS is not set
37762 +CONFIG_MPC85xx=y
37763 +# CONFIG_MPC8540_ADS is not set
37764 +# CONFIG_MPC8560_ADS is not set
37765 +# CONFIG_MPC85xx_CDS is not set
37766 +CONFIG_MPC85xx_MDS=y
37767 +# CONFIG_MPC85xx_DS is not set
37768 +# CONFIG_STX_GP3 is not set
37769 +# CONFIG_TQM8540 is not set
37770 +# CONFIG_TQM8541 is not set
37771 +# CONFIG_TQM8555 is not set
37772 +# CONFIG_TQM8560 is not set
37773 +# CONFIG_SBC8548 is not set
37774 +# CONFIG_SBC8560 is not set
37775 +# CONFIG_IPIC is not set
37776 +CONFIG_MPIC=y
37777 +# CONFIG_MPIC_WEIRD is not set
37778 +# CONFIG_PPC_I8259 is not set
37779 +# CONFIG_PPC_RTAS is not set
37780 +# CONFIG_MMIO_NVRAM is not set
37781 +# CONFIG_PPC_MPC106 is not set
37782 +# CONFIG_PPC_970_NAP is not set
37783 +# CONFIG_PPC_INDIRECT_IO is not set
37784 +# CONFIG_GENERIC_IOMAP is not set
37785 +# CONFIG_CPU_FREQ is not set
37786 +CONFIG_QUICC_ENGINE=y
37787 +# CONFIG_CPM2 is not set
37788 +# CONFIG_FSL_ULI1575 is not set
37789 +
37790 +#
37791 +# Kernel options
37792 +#
37793 +# CONFIG_HIGHMEM is not set
37794 +CONFIG_TICK_ONESHOT=y
37795 +CONFIG_NO_HZ=y
37796 +CONFIG_HIGH_RES_TIMERS=y
37797 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
37798 +# CONFIG_HZ_100 is not set
37799 +CONFIG_HZ_250=y
37800 +# CONFIG_HZ_300 is not set
37801 +# CONFIG_HZ_1000 is not set
37802 +CONFIG_HZ=250
37803 +# CONFIG_SCHED_HRTICK is not set
37804 +CONFIG_PREEMPT_NONE=y
37805 +# CONFIG_PREEMPT_VOLUNTARY is not set
37806 +# CONFIG_PREEMPT is not set
37807 +CONFIG_BINFMT_ELF=y
37808 +# CONFIG_BINFMT_MISC is not set
37809 +CONFIG_MATH_EMULATION=y
37810 +# CONFIG_IOMMU_HELPER is not set
37811 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
37812 +CONFIG_ARCH_HAS_WALK_MEMORY=y
37813 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
37814 +CONFIG_ARCH_FLATMEM_ENABLE=y
37815 +CONFIG_ARCH_POPULATES_NODE_MAP=y
37816 +CONFIG_SELECT_MEMORY_MODEL=y
37817 +CONFIG_FLATMEM_MANUAL=y
37818 +# CONFIG_DISCONTIGMEM_MANUAL is not set
37819 +# CONFIG_SPARSEMEM_MANUAL is not set
37820 +CONFIG_FLATMEM=y
37821 +CONFIG_FLAT_NODE_MEM_MAP=y
37822 +# CONFIG_SPARSEMEM_STATIC is not set
37823 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
37824 +CONFIG_SPLIT_PTLOCK_CPUS=4
37825 +# CONFIG_RESOURCES_64BIT is not set
37826 +CONFIG_ZONE_DMA_FLAG=1
37827 +CONFIG_BOUNCE=y
37828 +CONFIG_VIRT_TO_BUS=y
37829 +CONFIG_PROC_DEVICETREE=y
37830 +# CONFIG_CMDLINE_BOOL is not set
37831 +# CONFIG_PM is not set
37832 +CONFIG_SECCOMP=y
37833 +CONFIG_ISA_DMA_API=y
37834 +
37835 +#
37836 +# Bus options
37837 +#
37838 +CONFIG_ZONE_DMA=y
37839 +CONFIG_PPC_INDIRECT_PCI=y
37840 +CONFIG_FSL_SOC=y
37841 +CONFIG_FSL_PCI=y
37842 +CONFIG_PCI=y
37843 +CONFIG_PCI_DOMAINS=y
37844 +CONFIG_PCI_SYSCALL=y
37845 +# CONFIG_PCIEPORTBUS is not set
37846 +CONFIG_ARCH_SUPPORTS_MSI=y
37847 +# CONFIG_PCI_MSI is not set
37848 +CONFIG_PCI_LEGACY=y
37849 +# CONFIG_PCI_DEBUG is not set
37850 +# CONFIG_PCCARD is not set
37851 +# CONFIG_HOTPLUG_PCI is not set
37852 +
37853 +#
37854 +# Advanced setup
37855 +#
37856 +# CONFIG_ADVANCED_OPTIONS is not set
37857 +
37858 +#
37859 +# Default settings for advanced configuration options are used
37860 +#
37861 +CONFIG_HIGHMEM_START=0xfe000000
37862 +CONFIG_LOWMEM_SIZE=0x30000000
37863 +CONFIG_KERNEL_START=0xc0000000
37864 +CONFIG_TASK_SIZE=0xc0000000
37865 +CONFIG_BOOT_LOAD=0x00800000
37866 +
37867 +#
37868 +# Networking
37869 +#
37870 +CONFIG_NET=y
37871 +
37872 +#
37873 +# Networking options
37874 +#
37875 +CONFIG_PACKET=y
37876 +# CONFIG_PACKET_MMAP is not set
37877 +CONFIG_UNIX=y
37878 +CONFIG_XFRM=y
37879 +# CONFIG_XFRM_USER is not set
37880 +# CONFIG_XFRM_SUB_POLICY is not set
37881 +# CONFIG_XFRM_MIGRATE is not set
37882 +# CONFIG_XFRM_STATISTICS is not set
37883 +# CONFIG_NET_KEY is not set
37884 +CONFIG_INET=y
37885 +CONFIG_IP_MULTICAST=y
37886 +# CONFIG_IP_ADVANCED_ROUTER is not set
37887 +CONFIG_IP_FIB_HASH=y
37888 +CONFIG_IP_PNP=y
37889 +CONFIG_IP_PNP_DHCP=y
37890 +CONFIG_IP_PNP_BOOTP=y
37891 +# CONFIG_IP_PNP_RARP is not set
37892 +# CONFIG_NET_IPIP is not set
37893 +# CONFIG_NET_IPGRE is not set
37894 +# CONFIG_IP_MROUTE is not set
37895 +# CONFIG_ARPD is not set
37896 +CONFIG_SYN_COOKIES=y
37897 +# CONFIG_INET_AH is not set
37898 +# CONFIG_INET_ESP is not set
37899 +# CONFIG_INET_IPCOMP is not set
37900 +# CONFIG_INET_XFRM_TUNNEL is not set
37901 +# CONFIG_INET_TUNNEL is not set
37902 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
37903 +CONFIG_INET_XFRM_MODE_TUNNEL=y
37904 +CONFIG_INET_XFRM_MODE_BEET=y
37905 +# CONFIG_INET_LRO is not set
37906 +CONFIG_INET_DIAG=y
37907 +CONFIG_INET_TCP_DIAG=y
37908 +# CONFIG_TCP_CONG_ADVANCED is not set
37909 +CONFIG_TCP_CONG_CUBIC=y
37910 +CONFIG_DEFAULT_TCP_CONG="cubic"
37911 +# CONFIG_TCP_MD5SIG is not set
37912 +# CONFIG_IPV6 is not set
37913 +# CONFIG_INET6_XFRM_TUNNEL is not set
37914 +# CONFIG_INET6_TUNNEL is not set
37915 +# CONFIG_NETWORK_SECMARK is not set
37916 +# CONFIG_NETFILTER is not set
37917 +# CONFIG_IP_DCCP is not set
37918 +# CONFIG_IP_SCTP is not set
37919 +# CONFIG_TIPC is not set
37920 +# CONFIG_ATM is not set
37921 +# CONFIG_BRIDGE is not set
37922 +# CONFIG_VLAN_8021Q is not set
37923 +# CONFIG_DECNET is not set
37924 +# CONFIG_LLC2 is not set
37925 +# CONFIG_IPX is not set
37926 +# CONFIG_ATALK is not set
37927 +# CONFIG_X25 is not set
37928 +# CONFIG_LAPB is not set
37929 +# CONFIG_ECONET is not set
37930 +# CONFIG_WAN_ROUTER is not set
37931 +# CONFIG_NET_SCHED is not set
37932 +
37933 +#
37934 +# Network testing
37935 +#
37936 +# CONFIG_NET_PKTGEN is not set
37937 +# CONFIG_HAMRADIO is not set
37938 +# CONFIG_CAN is not set
37939 +# CONFIG_IRDA is not set
37940 +# CONFIG_BT is not set
37941 +# CONFIG_AF_RXRPC is not set
37942 +
37943 +#
37944 +# Wireless
37945 +#
37946 +# CONFIG_CFG80211 is not set
37947 +# CONFIG_WIRELESS_EXT is not set
37948 +# CONFIG_MAC80211 is not set
37949 +# CONFIG_IEEE80211 is not set
37950 +# CONFIG_RFKILL is not set
37951 +# CONFIG_NET_9P is not set
37952 +
37953 +#
37954 +# Device Drivers
37955 +#
37956 +
37957 +#
37958 +# Generic Driver Options
37959 +#
37960 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
37961 +CONFIG_STANDALONE=y
37962 +CONFIG_PREVENT_FIRMWARE_BUILD=y
37963 +# CONFIG_FW_LOADER is not set
37964 +# CONFIG_DEBUG_DRIVER is not set
37965 +# CONFIG_DEBUG_DEVRES is not set
37966 +# CONFIG_SYS_HYPERVISOR is not set
37967 +# CONFIG_CONNECTOR is not set
37968 +# CONFIG_MTD is not set
37969 +CONFIG_OF_DEVICE=y
37970 +# CONFIG_PARPORT is not set
37971 +CONFIG_BLK_DEV=y
37972 +# CONFIG_BLK_DEV_FD is not set
37973 +# CONFIG_BLK_CPQ_DA is not set
37974 +# CONFIG_BLK_CPQ_CISS_DA is not set
37975 +# CONFIG_BLK_DEV_DAC960 is not set
37976 +# CONFIG_BLK_DEV_UMEM is not set
37977 +# CONFIG_BLK_DEV_COW_COMMON is not set
37978 +CONFIG_BLK_DEV_LOOP=y
37979 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
37980 +# CONFIG_BLK_DEV_NBD is not set
37981 +# CONFIG_BLK_DEV_SX8 is not set
37982 +CONFIG_BLK_DEV_RAM=y
37983 +CONFIG_BLK_DEV_RAM_COUNT=16
37984 +CONFIG_BLK_DEV_RAM_SIZE=32768
37985 +# CONFIG_BLK_DEV_XIP is not set
37986 +# CONFIG_CDROM_PKTCDVD is not set
37987 +# CONFIG_ATA_OVER_ETH is not set
37988 +CONFIG_MISC_DEVICES=y
37989 +# CONFIG_PHANTOM is not set
37990 +# CONFIG_EEPROM_93CX6 is not set
37991 +# CONFIG_SGI_IOC4 is not set
37992 +# CONFIG_TIFM_CORE is not set
37993 +# CONFIG_ENCLOSURE_SERVICES is not set
37994 +CONFIG_HAVE_IDE=y
37995 +# CONFIG_IDE is not set
37996 +
37997 +#
37998 +# SCSI device support
37999 +#
38000 +# CONFIG_RAID_ATTRS is not set
38001 +CONFIG_SCSI=y
38002 +CONFIG_SCSI_DMA=y
38003 +# CONFIG_SCSI_TGT is not set
38004 +# CONFIG_SCSI_NETLINK is not set
38005 +CONFIG_SCSI_PROC_FS=y
38006 +
38007 +#
38008 +# SCSI support type (disk, tape, CD-ROM)
38009 +#
38010 +# CONFIG_BLK_DEV_SD is not set
38011 +# CONFIG_CHR_DEV_ST is not set
38012 +# CONFIG_CHR_DEV_OSST is not set
38013 +# CONFIG_BLK_DEV_SR is not set
38014 +# CONFIG_CHR_DEV_SG is not set
38015 +# CONFIG_CHR_DEV_SCH is not set
38016 +
38017 +#
38018 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
38019 +#
38020 +# CONFIG_SCSI_MULTI_LUN is not set
38021 +# CONFIG_SCSI_CONSTANTS is not set
38022 +# CONFIG_SCSI_LOGGING is not set
38023 +# CONFIG_SCSI_SCAN_ASYNC is not set
38024 +CONFIG_SCSI_WAIT_SCAN=m
38025 +
38026 +#
38027 +# SCSI Transports
38028 +#
38029 +# CONFIG_SCSI_SPI_ATTRS is not set
38030 +# CONFIG_SCSI_FC_ATTRS is not set
38031 +# CONFIG_SCSI_ISCSI_ATTRS is not set
38032 +# CONFIG_SCSI_SAS_LIBSAS is not set
38033 +# CONFIG_SCSI_SRP_ATTRS is not set
38034 +CONFIG_SCSI_LOWLEVEL=y
38035 +# CONFIG_ISCSI_TCP is not set
38036 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
38037 +# CONFIG_SCSI_3W_9XXX is not set
38038 +# CONFIG_SCSI_ACARD is not set
38039 +# CONFIG_SCSI_AACRAID is not set
38040 +# CONFIG_SCSI_AIC7XXX is not set
38041 +# CONFIG_SCSI_AIC7XXX_OLD is not set
38042 +# CONFIG_SCSI_AIC79XX is not set
38043 +# CONFIG_SCSI_AIC94XX is not set
38044 +# CONFIG_SCSI_DPT_I2O is not set
38045 +# CONFIG_SCSI_ADVANSYS is not set
38046 +# CONFIG_SCSI_ARCMSR is not set
38047 +# CONFIG_MEGARAID_NEWGEN is not set
38048 +# CONFIG_MEGARAID_LEGACY is not set
38049 +# CONFIG_MEGARAID_SAS is not set
38050 +# CONFIG_SCSI_HPTIOP is not set
38051 +# CONFIG_SCSI_BUSLOGIC is not set
38052 +# CONFIG_SCSI_DMX3191D is not set
38053 +# CONFIG_SCSI_EATA is not set
38054 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
38055 +# CONFIG_SCSI_GDTH is not set
38056 +# CONFIG_SCSI_IPS is not set
38057 +# CONFIG_SCSI_INITIO is not set
38058 +# CONFIG_SCSI_INIA100 is not set
38059 +# CONFIG_SCSI_MVSAS is not set
38060 +# CONFIG_SCSI_STEX is not set
38061 +# CONFIG_SCSI_SYM53C8XX_2 is not set
38062 +# CONFIG_SCSI_QLOGIC_1280 is not set
38063 +# CONFIG_SCSI_QLA_FC is not set
38064 +# CONFIG_SCSI_QLA_ISCSI is not set
38065 +# CONFIG_SCSI_LPFC is not set
38066 +# CONFIG_SCSI_DC395x is not set
38067 +# CONFIG_SCSI_DC390T is not set
38068 +# CONFIG_SCSI_NSP32 is not set
38069 +# CONFIG_SCSI_DEBUG is not set
38070 +# CONFIG_SCSI_SRP is not set
38071 +# CONFIG_ATA is not set
38072 +# CONFIG_MD is not set
38073 +# CONFIG_FUSION is not set
38074 +
38075 +#
38076 +# IEEE 1394 (FireWire) support
38077 +#
38078 +# CONFIG_FIREWIRE is not set
38079 +# CONFIG_IEEE1394 is not set
38080 +# CONFIG_I2O is not set
38081 +# CONFIG_MACINTOSH_DRIVERS is not set
38082 +CONFIG_NETDEVICES=y
38083 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
38084 +# CONFIG_DUMMY is not set
38085 +# CONFIG_BONDING is not set
38086 +# CONFIG_MACVLAN is not set
38087 +# CONFIG_EQUALIZER is not set
38088 +# CONFIG_TUN is not set
38089 +# CONFIG_VETH is not set
38090 +# CONFIG_ARCNET is not set
38091 +CONFIG_PHYLIB=y
38092 +
38093 +#
38094 +# MII PHY device drivers
38095 +#
38096 +CONFIG_MARVELL_PHY=y
38097 +# CONFIG_DAVICOM_PHY is not set
38098 +# CONFIG_QSEMI_PHY is not set
38099 +# CONFIG_LXT_PHY is not set
38100 +# CONFIG_CICADA_PHY is not set
38101 +# CONFIG_VITESSE_PHY is not set
38102 +# CONFIG_SMSC_PHY is not set
38103 +# CONFIG_BROADCOM_PHY is not set
38104 +# CONFIG_ICPLUS_PHY is not set
38105 +# CONFIG_REALTEK_PHY is not set
38106 +# CONFIG_FIXED_PHY is not set
38107 +# CONFIG_MDIO_BITBANG is not set
38108 +CONFIG_NET_ETHERNET=y
38109 +CONFIG_MII=y
38110 +# CONFIG_HAPPYMEAL is not set
38111 +# CONFIG_SUNGEM is not set
38112 +# CONFIG_CASSINI is not set
38113 +# CONFIG_NET_VENDOR_3COM is not set
38114 +# CONFIG_NET_TULIP is not set
38115 +# CONFIG_HP100 is not set
38116 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
38117 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
38118 +# CONFIG_IBM_NEW_EMAC_TAH is not set
38119 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
38120 +# CONFIG_NET_PCI is not set
38121 +# CONFIG_B44 is not set
38122 +CONFIG_NETDEV_1000=y
38123 +# CONFIG_ACENIC is not set
38124 +# CONFIG_DL2K is not set
38125 +# CONFIG_E1000 is not set
38126 +# CONFIG_E1000E is not set
38127 +# CONFIG_E1000E_ENABLED is not set
38128 +# CONFIG_IP1000 is not set
38129 +# CONFIG_IGB is not set
38130 +# CONFIG_NS83820 is not set
38131 +# CONFIG_HAMACHI is not set
38132 +# CONFIG_YELLOWFIN is not set
38133 +# CONFIG_R8169 is not set
38134 +# CONFIG_SIS190 is not set
38135 +# CONFIG_SKGE is not set
38136 +# CONFIG_SKY2 is not set
38137 +# CONFIG_SK98LIN is not set
38138 +# CONFIG_VIA_VELOCITY is not set
38139 +# CONFIG_TIGON3 is not set
38140 +# CONFIG_BNX2 is not set
38141 +CONFIG_GIANFAR=y
38142 +CONFIG_GFAR_NAPI=y
38143 +# CONFIG_UCC_GETH is not set
38144 +# CONFIG_QLA3XXX is not set
38145 +# CONFIG_ATL1 is not set
38146 +CONFIG_NETDEV_10000=y
38147 +# CONFIG_CHELSIO_T1 is not set
38148 +# CONFIG_CHELSIO_T3 is not set
38149 +# CONFIG_IXGBE is not set
38150 +# CONFIG_IXGB is not set
38151 +# CONFIG_S2IO is not set
38152 +# CONFIG_MYRI10GE is not set
38153 +# CONFIG_NETXEN_NIC is not set
38154 +# CONFIG_NIU is not set
38155 +# CONFIG_MLX4_CORE is not set
38156 +# CONFIG_TEHUTI is not set
38157 +# CONFIG_BNX2X is not set
38158 +# CONFIG_TR is not set
38159 +
38160 +#
38161 +# Wireless LAN
38162 +#
38163 +# CONFIG_WLAN_PRE80211 is not set
38164 +# CONFIG_WLAN_80211 is not set
38165 +# CONFIG_WAN is not set
38166 +# CONFIG_FDDI is not set
38167 +# CONFIG_HIPPI is not set
38168 +# CONFIG_PPP is not set
38169 +# CONFIG_SLIP is not set
38170 +# CONFIG_NET_FC is not set
38171 +# CONFIG_NETCONSOLE is not set
38172 +# CONFIG_NETPOLL is not set
38173 +# CONFIG_NET_POLL_CONTROLLER is not set
38174 +# CONFIG_ISDN is not set
38175 +# CONFIG_PHONE is not set
38176 +
38177 +#
38178 +# Input device support
38179 +#
38180 +CONFIG_INPUT=y
38181 +# CONFIG_INPUT_FF_MEMLESS is not set
38182 +# CONFIG_INPUT_POLLDEV is not set
38183 +
38184 +#
38185 +# Userland interfaces
38186 +#
38187 +# CONFIG_INPUT_MOUSEDEV is not set
38188 +# CONFIG_INPUT_JOYDEV is not set
38189 +# CONFIG_INPUT_EVDEV is not set
38190 +# CONFIG_INPUT_EVBUG is not set
38191 +
38192 +#
38193 +# Input Device Drivers
38194 +#
38195 +# CONFIG_INPUT_KEYBOARD is not set
38196 +# CONFIG_INPUT_MOUSE is not set
38197 +# CONFIG_INPUT_JOYSTICK is not set
38198 +# CONFIG_INPUT_TABLET is not set
38199 +# CONFIG_INPUT_TOUCHSCREEN is not set
38200 +# CONFIG_INPUT_MISC is not set
38201 +
38202 +#
38203 +# Hardware I/O ports
38204 +#
38205 +# CONFIG_SERIO is not set
38206 +# CONFIG_GAMEPORT is not set
38207 +
38208 +#
38209 +# Character devices
38210 +#
38211 +# CONFIG_VT is not set
38212 +# CONFIG_SERIAL_NONSTANDARD is not set
38213 +# CONFIG_NOZOMI is not set
38214 +
38215 +#
38216 +# Serial drivers
38217 +#
38218 +CONFIG_SERIAL_8250=y
38219 +CONFIG_SERIAL_8250_CONSOLE=y
38220 +CONFIG_SERIAL_8250_PCI=y
38221 +CONFIG_SERIAL_8250_NR_UARTS=4
38222 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
38223 +# CONFIG_SERIAL_8250_EXTENDED is not set
38224 +CONFIG_SERIAL_8250_SHARE_IRQ=y
38225 +
38226 +#
38227 +# Non-8250 serial port support
38228 +#
38229 +# CONFIG_SERIAL_UARTLITE is not set
38230 +CONFIG_SERIAL_CORE=y
38231 +CONFIG_SERIAL_CORE_CONSOLE=y
38232 +# CONFIG_SERIAL_JSM is not set
38233 +# CONFIG_SERIAL_OF_PLATFORM is not set
38234 +# CONFIG_SERIAL_QE is not set
38235 +CONFIG_UNIX98_PTYS=y
38236 +CONFIG_LEGACY_PTYS=y
38237 +CONFIG_LEGACY_PTY_COUNT=256
38238 +# CONFIG_IPMI_HANDLER is not set
38239 +CONFIG_HW_RANDOM=y
38240 +# CONFIG_NVRAM is not set
38241 +# CONFIG_GEN_RTC is not set
38242 +# CONFIG_R3964 is not set
38243 +# CONFIG_APPLICOM is not set
38244 +# CONFIG_RAW_DRIVER is not set
38245 +# CONFIG_TCG_TPM is not set
38246 +CONFIG_DEVPORT=y
38247 +CONFIG_I2C=y
38248 +CONFIG_I2C_BOARDINFO=y
38249 +CONFIG_I2C_CHARDEV=y
38250 +
38251 +#
38252 +# I2C Algorithms
38253 +#
38254 +# CONFIG_I2C_ALGOBIT is not set
38255 +# CONFIG_I2C_ALGOPCF is not set
38256 +# CONFIG_I2C_ALGOPCA is not set
38257 +
38258 +#
38259 +# I2C Hardware Bus support
38260 +#
38261 +# CONFIG_I2C_ALI1535 is not set
38262 +# CONFIG_I2C_ALI1563 is not set
38263 +# CONFIG_I2C_ALI15X3 is not set
38264 +# CONFIG_I2C_AMD756 is not set
38265 +# CONFIG_I2C_AMD8111 is not set
38266 +# CONFIG_I2C_I801 is not set
38267 +# CONFIG_I2C_I810 is not set
38268 +# CONFIG_I2C_PIIX4 is not set
38269 +CONFIG_I2C_MPC=y
38270 +# CONFIG_I2C_NFORCE2 is not set
38271 +# CONFIG_I2C_OCORES is not set
38272 +# CONFIG_I2C_PARPORT_LIGHT is not set
38273 +# CONFIG_I2C_PROSAVAGE is not set
38274 +# CONFIG_I2C_SAVAGE4 is not set
38275 +# CONFIG_I2C_SIMTEC is not set
38276 +# CONFIG_I2C_SIS5595 is not set
38277 +# CONFIG_I2C_SIS630 is not set
38278 +# CONFIG_I2C_SIS96X is not set
38279 +# CONFIG_I2C_TAOS_EVM is not set
38280 +# CONFIG_I2C_STUB is not set
38281 +# CONFIG_I2C_VIA is not set
38282 +# CONFIG_I2C_VIAPRO is not set
38283 +# CONFIG_I2C_VOODOO3 is not set
38284 +
38285 +#
38286 +# Miscellaneous I2C Chip support
38287 +#
38288 +# CONFIG_DS1682 is not set
38289 +# CONFIG_SENSORS_EEPROM is not set
38290 +# CONFIG_SENSORS_PCF8574 is not set
38291 +# CONFIG_PCF8575 is not set
38292 +# CONFIG_SENSORS_PCF8591 is not set
38293 +# CONFIG_TPS65010 is not set
38294 +# CONFIG_SENSORS_MAX6875 is not set
38295 +# CONFIG_SENSORS_TSL2550 is not set
38296 +# CONFIG_I2C_DEBUG_CORE is not set
38297 +# CONFIG_I2C_DEBUG_ALGO is not set
38298 +# CONFIG_I2C_DEBUG_BUS is not set
38299 +# CONFIG_I2C_DEBUG_CHIP is not set
38300 +
38301 +#
38302 +# SPI support
38303 +#
38304 +# CONFIG_SPI is not set
38305 +# CONFIG_SPI_MASTER is not set
38306 +# CONFIG_W1 is not set
38307 +# CONFIG_POWER_SUPPLY is not set
38308 +CONFIG_HWMON=y
38309 +# CONFIG_HWMON_VID is not set
38310 +# CONFIG_SENSORS_AD7418 is not set
38311 +# CONFIG_SENSORS_ADM1021 is not set
38312 +# CONFIG_SENSORS_ADM1025 is not set
38313 +# CONFIG_SENSORS_ADM1026 is not set
38314 +# CONFIG_SENSORS_ADM1029 is not set
38315 +# CONFIG_SENSORS_ADM1031 is not set
38316 +# CONFIG_SENSORS_ADM9240 is not set
38317 +# CONFIG_SENSORS_ADT7470 is not set
38318 +# CONFIG_SENSORS_ADT7473 is not set
38319 +# CONFIG_SENSORS_ATXP1 is not set
38320 +# CONFIG_SENSORS_DS1621 is not set
38321 +# CONFIG_SENSORS_I5K_AMB is not set
38322 +# CONFIG_SENSORS_F71805F is not set
38323 +# CONFIG_SENSORS_F71882FG is not set
38324 +# CONFIG_SENSORS_F75375S is not set
38325 +# CONFIG_SENSORS_GL518SM is not set
38326 +# CONFIG_SENSORS_GL520SM is not set
38327 +# CONFIG_SENSORS_IT87 is not set
38328 +# CONFIG_SENSORS_LM63 is not set
38329 +# CONFIG_SENSORS_LM75 is not set
38330 +# CONFIG_SENSORS_LM77 is not set
38331 +# CONFIG_SENSORS_LM78 is not set
38332 +# CONFIG_SENSORS_LM80 is not set
38333 +# CONFIG_SENSORS_LM83 is not set
38334 +# CONFIG_SENSORS_LM85 is not set
38335 +# CONFIG_SENSORS_LM87 is not set
38336 +# CONFIG_SENSORS_LM90 is not set
38337 +# CONFIG_SENSORS_LM92 is not set
38338 +# CONFIG_SENSORS_LM93 is not set
38339 +# CONFIG_SENSORS_MAX1619 is not set
38340 +# CONFIG_SENSORS_MAX6650 is not set
38341 +# CONFIG_SENSORS_PC87360 is not set
38342 +# CONFIG_SENSORS_PC87427 is not set
38343 +# CONFIG_SENSORS_SIS5595 is not set
38344 +# CONFIG_SENSORS_DME1737 is not set
38345 +# CONFIG_SENSORS_SMSC47M1 is not set
38346 +# CONFIG_SENSORS_SMSC47M192 is not set
38347 +# CONFIG_SENSORS_SMSC47B397 is not set
38348 +# CONFIG_SENSORS_ADS7828 is not set
38349 +# CONFIG_SENSORS_THMC50 is not set
38350 +# CONFIG_SENSORS_VIA686A is not set
38351 +# CONFIG_SENSORS_VT1211 is not set
38352 +# CONFIG_SENSORS_VT8231 is not set
38353 +# CONFIG_SENSORS_W83781D is not set
38354 +# CONFIG_SENSORS_W83791D is not set
38355 +# CONFIG_SENSORS_W83792D is not set
38356 +# CONFIG_SENSORS_W83793 is not set
38357 +# CONFIG_SENSORS_W83L785TS is not set
38358 +# CONFIG_SENSORS_W83L786NG is not set
38359 +# CONFIG_SENSORS_W83627HF is not set
38360 +# CONFIG_SENSORS_W83627EHF is not set
38361 +# CONFIG_HWMON_DEBUG_CHIP is not set
38362 +# CONFIG_THERMAL is not set
38363 +CONFIG_WATCHDOG=y
38364 +# CONFIG_WATCHDOG_NOWAYOUT is not set
38365 +
38366 +#
38367 +# Watchdog Device Drivers
38368 +#
38369 +# CONFIG_SOFT_WATCHDOG is not set
38370 +# CONFIG_BOOKE_WDT is not set
38371 +
38372 +#
38373 +# PCI-based Watchdog Cards
38374 +#
38375 +# CONFIG_PCIPCWATCHDOG is not set
38376 +# CONFIG_WDTPCI is not set
38377 +
38378 +#
38379 +# Sonics Silicon Backplane
38380 +#
38381 +CONFIG_SSB_POSSIBLE=y
38382 +# CONFIG_SSB is not set
38383 +
38384 +#
38385 +# Multifunction device drivers
38386 +#
38387 +# CONFIG_MFD_SM501 is not set
38388 +
38389 +#
38390 +# Multimedia devices
38391 +#
38392 +# CONFIG_VIDEO_DEV is not set
38393 +# CONFIG_DVB_CORE is not set
38394 +CONFIG_DAB=y
38395 +
38396 +#
38397 +# Graphics support
38398 +#
38399 +# CONFIG_AGP is not set
38400 +# CONFIG_DRM is not set
38401 +# CONFIG_VGASTATE is not set
38402 +CONFIG_VIDEO_OUTPUT_CONTROL=m
38403 +# CONFIG_FB is not set
38404 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
38405 +
38406 +#
38407 +# Display device support
38408 +#
38409 +# CONFIG_DISPLAY_SUPPORT is not set
38410 +
38411 +#
38412 +# Sound
38413 +#
38414 +# CONFIG_SOUND is not set
38415 +CONFIG_HID_SUPPORT=y
38416 +CONFIG_HID=y
38417 +# CONFIG_HID_DEBUG is not set
38418 +# CONFIG_HIDRAW is not set
38419 +CONFIG_USB_SUPPORT=y
38420 +CONFIG_USB_ARCH_HAS_HCD=y
38421 +CONFIG_USB_ARCH_HAS_OHCI=y
38422 +CONFIG_USB_ARCH_HAS_EHCI=y
38423 +# CONFIG_USB is not set
38424 +
38425 +#
38426 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
38427 +#
38428 +# CONFIG_USB_GADGET is not set
38429 +# CONFIG_MMC is not set
38430 +# CONFIG_MEMSTICK is not set
38431 +# CONFIG_NEW_LEDS is not set
38432 +# CONFIG_INFINIBAND is not set
38433 +# CONFIG_EDAC is not set
38434 +CONFIG_RTC_LIB=y
38435 +CONFIG_RTC_CLASS=y
38436 +CONFIG_RTC_HCTOSYS=y
38437 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
38438 +# CONFIG_RTC_DEBUG is not set
38439 +
38440 +#
38441 +# RTC interfaces
38442 +#
38443 +CONFIG_RTC_INTF_SYSFS=y
38444 +CONFIG_RTC_INTF_PROC=y
38445 +CONFIG_RTC_INTF_DEV=y
38446 +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
38447 +# CONFIG_RTC_DRV_TEST is not set
38448 +
38449 +#
38450 +# I2C RTC drivers
38451 +#
38452 +# CONFIG_RTC_DRV_DS1307 is not set
38453 +CONFIG_RTC_DRV_DS1374=y
38454 +# CONFIG_RTC_DRV_DS1672 is not set
38455 +# CONFIG_RTC_DRV_MAX6900 is not set
38456 +# CONFIG_RTC_DRV_RS5C372 is not set
38457 +# CONFIG_RTC_DRV_ISL1208 is not set
38458 +# CONFIG_RTC_DRV_X1205 is not set
38459 +# CONFIG_RTC_DRV_PCF8563 is not set
38460 +# CONFIG_RTC_DRV_PCF8583 is not set
38461 +# CONFIG_RTC_DRV_M41T80 is not set
38462 +# CONFIG_RTC_DRV_S35390A is not set
38463 +
38464 +#
38465 +# SPI RTC drivers
38466 +#
38467 +
38468 +#
38469 +# Platform RTC drivers
38470 +#
38471 +# CONFIG_RTC_DRV_CMOS is not set
38472 +# CONFIG_RTC_DRV_DS1511 is not set
38473 +# CONFIG_RTC_DRV_DS1553 is not set
38474 +# CONFIG_RTC_DRV_DS1742 is not set
38475 +# CONFIG_RTC_DRV_STK17TA8 is not set
38476 +# CONFIG_RTC_DRV_M48T86 is not set
38477 +# CONFIG_RTC_DRV_M48T59 is not set
38478 +# CONFIG_RTC_DRV_V3020 is not set
38479 +
38480 +#
38481 +# on-CPU RTC drivers
38482 +#
38483 +# CONFIG_DMADEVICES is not set
38484 +
38485 +#
38486 +# Userspace I/O
38487 +#
38488 +# CONFIG_UIO is not set
38489 +
38490 +#
38491 +# File systems
38492 +#
38493 +CONFIG_EXT2_FS=y
38494 +# CONFIG_EXT2_FS_XATTR is not set
38495 +# CONFIG_EXT2_FS_XIP is not set
38496 +CONFIG_EXT3_FS=y
38497 +CONFIG_EXT3_FS_XATTR=y
38498 +# CONFIG_EXT3_FS_POSIX_ACL is not set
38499 +# CONFIG_EXT3_FS_SECURITY is not set
38500 +# CONFIG_EXT4DEV_FS is not set
38501 +CONFIG_JBD=y
38502 +CONFIG_FS_MBCACHE=y
38503 +# CONFIG_REISERFS_FS is not set
38504 +# CONFIG_JFS_FS is not set
38505 +# CONFIG_FS_POSIX_ACL is not set
38506 +# CONFIG_XFS_FS is not set
38507 +# CONFIG_GFS2_FS is not set
38508 +# CONFIG_OCFS2_FS is not set
38509 +CONFIG_DNOTIFY=y
38510 +CONFIG_INOTIFY=y
38511 +CONFIG_INOTIFY_USER=y
38512 +# CONFIG_QUOTA is not set
38513 +# CONFIG_AUTOFS_FS is not set
38514 +# CONFIG_AUTOFS4_FS is not set
38515 +# CONFIG_FUSE_FS is not set
38516 +
38517 +#
38518 +# CD-ROM/DVD Filesystems
38519 +#
38520 +# CONFIG_ISO9660_FS is not set
38521 +# CONFIG_UDF_FS is not set
38522 +
38523 +#
38524 +# DOS/FAT/NT Filesystems
38525 +#
38526 +# CONFIG_MSDOS_FS is not set
38527 +# CONFIG_VFAT_FS is not set
38528 +# CONFIG_NTFS_FS is not set
38529 +
38530 +#
38531 +# Pseudo filesystems
38532 +#
38533 +CONFIG_PROC_FS=y
38534 +CONFIG_PROC_KCORE=y
38535 +CONFIG_PROC_SYSCTL=y
38536 +CONFIG_SYSFS=y
38537 +CONFIG_TMPFS=y
38538 +# CONFIG_TMPFS_POSIX_ACL is not set
38539 +# CONFIG_HUGETLB_PAGE is not set
38540 +# CONFIG_CONFIGFS_FS is not set
38541 +
38542 +#
38543 +# Miscellaneous filesystems
38544 +#
38545 +# CONFIG_ADFS_FS is not set
38546 +# CONFIG_AFFS_FS is not set
38547 +# CONFIG_HFS_FS is not set
38548 +# CONFIG_HFSPLUS_FS is not set
38549 +# CONFIG_BEFS_FS is not set
38550 +# CONFIG_BFS_FS is not set
38551 +# CONFIG_EFS_FS is not set
38552 +# CONFIG_CRAMFS is not set
38553 +# CONFIG_VXFS_FS is not set
38554 +# CONFIG_MINIX_FS is not set
38555 +# CONFIG_HPFS_FS is not set
38556 +# CONFIG_QNX4FS_FS is not set
38557 +# CONFIG_ROMFS_FS is not set
38558 +# CONFIG_SYSV_FS is not set
38559 +# CONFIG_UFS_FS is not set
38560 +CONFIG_NETWORK_FILESYSTEMS=y
38561 +CONFIG_NFS_FS=y
38562 +CONFIG_NFS_V3=y
38563 +# CONFIG_NFS_V3_ACL is not set
38564 +CONFIG_NFS_V4=y
38565 +# CONFIG_NFS_DIRECTIO is not set
38566 +# CONFIG_NFSD is not set
38567 +CONFIG_ROOT_NFS=y
38568 +CONFIG_LOCKD=y
38569 +CONFIG_LOCKD_V4=y
38570 +CONFIG_NFS_COMMON=y
38571 +CONFIG_SUNRPC=y
38572 +CONFIG_SUNRPC_GSS=y
38573 +# CONFIG_SUNRPC_BIND34 is not set
38574 +CONFIG_RPCSEC_GSS_KRB5=y
38575 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
38576 +# CONFIG_SMB_FS is not set
38577 +# CONFIG_CIFS is not set
38578 +# CONFIG_NCP_FS is not set
38579 +# CONFIG_CODA_FS is not set
38580 +# CONFIG_AFS_FS is not set
38581 +
38582 +#
38583 +# Partition Types
38584 +#
38585 +CONFIG_PARTITION_ADVANCED=y
38586 +# CONFIG_ACORN_PARTITION is not set
38587 +# CONFIG_OSF_PARTITION is not set
38588 +# CONFIG_AMIGA_PARTITION is not set
38589 +# CONFIG_ATARI_PARTITION is not set
38590 +# CONFIG_MAC_PARTITION is not set
38591 +# CONFIG_MSDOS_PARTITION is not set
38592 +# CONFIG_LDM_PARTITION is not set
38593 +# CONFIG_SGI_PARTITION is not set
38594 +# CONFIG_ULTRIX_PARTITION is not set
38595 +# CONFIG_SUN_PARTITION is not set
38596 +# CONFIG_KARMA_PARTITION is not set
38597 +# CONFIG_EFI_PARTITION is not set
38598 +# CONFIG_SYSV68_PARTITION is not set
38599 +# CONFIG_NLS is not set
38600 +# CONFIG_DLM is not set
38601 +
38602 +#
38603 +# Library routines
38604 +#
38605 +CONFIG_BITREVERSE=y
38606 +# CONFIG_CRC_CCITT is not set
38607 +# CONFIG_CRC16 is not set
38608 +# CONFIG_CRC_ITU_T is not set
38609 +CONFIG_CRC32=y
38610 +# CONFIG_CRC7 is not set
38611 +# CONFIG_LIBCRC32C is not set
38612 +CONFIG_PLIST=y
38613 +CONFIG_HAS_IOMEM=y
38614 +CONFIG_HAS_IOPORT=y
38615 +CONFIG_HAS_DMA=y
38616 +
38617 +#
38618 +# Kernel hacking
38619 +#
38620 +# CONFIG_PRINTK_TIME is not set
38621 +CONFIG_ENABLE_WARN_DEPRECATED=y
38622 +CONFIG_ENABLE_MUST_CHECK=y
38623 +# CONFIG_MAGIC_SYSRQ is not set
38624 +# CONFIG_UNUSED_SYMBOLS is not set
38625 +# CONFIG_DEBUG_FS is not set
38626 +# CONFIG_HEADERS_CHECK is not set
38627 +CONFIG_DEBUG_KERNEL=y
38628 +# CONFIG_DEBUG_SHIRQ is not set
38629 +CONFIG_DETECT_SOFTLOCKUP=y
38630 +CONFIG_SCHED_DEBUG=y
38631 +# CONFIG_SCHEDSTATS is not set
38632 +# CONFIG_TIMER_STATS is not set
38633 +# CONFIG_SLUB_DEBUG_ON is not set
38634 +# CONFIG_SLUB_STATS is not set
38635 +# CONFIG_DEBUG_RT_MUTEXES is not set
38636 +# CONFIG_RT_MUTEX_TESTER is not set
38637 +# CONFIG_DEBUG_SPINLOCK is not set
38638 +# CONFIG_DEBUG_MUTEXES is not set
38639 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
38640 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
38641 +# CONFIG_DEBUG_KOBJECT is not set
38642 +# CONFIG_DEBUG_BUGVERBOSE is not set
38643 +# CONFIG_DEBUG_INFO is not set
38644 +# CONFIG_DEBUG_VM is not set
38645 +# CONFIG_DEBUG_LIST is not set
38646 +# CONFIG_DEBUG_SG is not set
38647 +# CONFIG_BOOT_PRINTK_DELAY is not set
38648 +# CONFIG_RCU_TORTURE_TEST is not set
38649 +# CONFIG_BACKTRACE_SELF_TEST is not set
38650 +# CONFIG_FAULT_INJECTION is not set
38651 +# CONFIG_SAMPLES is not set
38652 +# CONFIG_DEBUG_STACKOVERFLOW is not set
38653 +# CONFIG_DEBUG_STACK_USAGE is not set
38654 +# CONFIG_DEBUG_PAGEALLOC is not set
38655 +CONFIG_DEBUGGER=y
38656 +# CONFIG_XMON is not set
38657 +# CONFIG_BDI_SWITCH is not set
38658 +CONFIG_PPC_EARLY_DEBUG=y
38659 +# CONFIG_PPC_EARLY_DEBUG_LPAR is not set
38660 +# CONFIG_PPC_EARLY_DEBUG_G5 is not set
38661 +# CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set
38662 +# CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set
38663 +# CONFIG_PPC_EARLY_DEBUG_MAPLE is not set
38664 +# CONFIG_PPC_EARLY_DEBUG_ISERIES is not set
38665 +# CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set
38666 +# CONFIG_PPC_EARLY_DEBUG_BEAT is not set
38667 +# CONFIG_PPC_EARLY_DEBUG_44x is not set
38668 +# CONFIG_PPC_EARLY_DEBUG_40x is not set
38669 +# CONFIG_PPC_EARLY_DEBUG_CPM is not set
38670 +
38671 +#
38672 +# Security options
38673 +#
38674 +# CONFIG_KEYS is not set
38675 +# CONFIG_SECURITY is not set
38676 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
38677 +CONFIG_CRYPTO=y
38678 +CONFIG_CRYPTO_ALGAPI=y
38679 +CONFIG_CRYPTO_BLKCIPHER=y
38680 +# CONFIG_CRYPTO_SEQIV is not set
38681 +CONFIG_CRYPTO_MANAGER=y
38682 +# CONFIG_CRYPTO_HMAC is not set
38683 +# CONFIG_CRYPTO_XCBC is not set
38684 +# CONFIG_CRYPTO_NULL is not set
38685 +# CONFIG_CRYPTO_MD4 is not set
38686 +CONFIG_CRYPTO_MD5=y
38687 +# CONFIG_CRYPTO_SHA1 is not set
38688 +# CONFIG_CRYPTO_SHA256 is not set
38689 +# CONFIG_CRYPTO_SHA512 is not set
38690 +# CONFIG_CRYPTO_WP512 is not set
38691 +# CONFIG_CRYPTO_TGR192 is not set
38692 +# CONFIG_CRYPTO_GF128MUL is not set
38693 +CONFIG_CRYPTO_ECB=m
38694 +CONFIG_CRYPTO_CBC=y
38695 +CONFIG_CRYPTO_PCBC=m
38696 +# CONFIG_CRYPTO_LRW is not set
38697 +# CONFIG_CRYPTO_XTS is not set
38698 +# CONFIG_CRYPTO_CTR is not set
38699 +# CONFIG_CRYPTO_GCM is not set
38700 +# CONFIG_CRYPTO_CCM is not set
38701 +# CONFIG_CRYPTO_CRYPTD is not set
38702 +CONFIG_CRYPTO_DES=y
38703 +# CONFIG_CRYPTO_FCRYPT is not set
38704 +# CONFIG_CRYPTO_BLOWFISH is not set
38705 +# CONFIG_CRYPTO_TWOFISH is not set
38706 +# CONFIG_CRYPTO_SERPENT is not set
38707 +# CONFIG_CRYPTO_AES is not set
38708 +# CONFIG_CRYPTO_CAST5 is not set
38709 +# CONFIG_CRYPTO_CAST6 is not set
38710 +# CONFIG_CRYPTO_TEA is not set
38711 +# CONFIG_CRYPTO_ARC4 is not set
38712 +# CONFIG_CRYPTO_KHAZAD is not set
38713 +# CONFIG_CRYPTO_ANUBIS is not set
38714 +# CONFIG_CRYPTO_SEED is not set
38715 +# CONFIG_CRYPTO_SALSA20 is not set
38716 +# CONFIG_CRYPTO_DEFLATE is not set
38717 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
38718 +# CONFIG_CRYPTO_CRC32C is not set
38719 +# CONFIG_CRYPTO_CAMELLIA is not set
38720 +# CONFIG_CRYPTO_TEST is not set
38721 +# CONFIG_CRYPTO_AUTHENC is not set
38722 +# CONFIG_CRYPTO_LZO is not set
38723 +CONFIG_CRYPTO_HW=y
38724 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
38725 +# CONFIG_PPC_CLOCK is not set
38726 +CONFIG_PPC_LIB_RHEAP=y
38727 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8572_ds_defconfig
38728 ===================================================================
38729 --- /dev/null
38730 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/mpc8572_ds_defconfig
38731 @@ -0,0 +1,1549 @@
38732 +#
38733 +# Automatically generated make config: don't edit
38734 +# Linux kernel version: 2.6.25-rc7
38735 +# Mon Mar 31 11:37:06 2008
38736 +#
38737 +# CONFIG_PPC64 is not set
38738 +
38739 +#
38740 +# Processor support
38741 +#
38742 +# CONFIG_6xx is not set
38743 +CONFIG_PPC_85xx=y
38744 +# CONFIG_PPC_8xx is not set
38745 +# CONFIG_40x is not set
38746 +# CONFIG_44x is not set
38747 +# CONFIG_E200 is not set
38748 +CONFIG_E500=y
38749 +CONFIG_BOOKE=y
38750 +CONFIG_FSL_BOOKE=y
38751 +CONFIG_FSL_EMB_PERFMON=y
38752 +# CONFIG_PHYS_64BIT is not set
38753 +CONFIG_SPE=y
38754 +# CONFIG_PPC_MM_SLICES is not set
38755 +CONFIG_PPC32=y
38756 +CONFIG_WORD_SIZE=32
38757 +CONFIG_PPC_MERGE=y
38758 +CONFIG_MMU=y
38759 +CONFIG_GENERIC_CMOS_UPDATE=y
38760 +CONFIG_GENERIC_TIME=y
38761 +CONFIG_GENERIC_TIME_VSYSCALL=y
38762 +CONFIG_GENERIC_CLOCKEVENTS=y
38763 +CONFIG_GENERIC_HARDIRQS=y
38764 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
38765 +CONFIG_IRQ_PER_CPU=y
38766 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
38767 +CONFIG_ARCH_HAS_ILOG2_U32=y
38768 +CONFIG_GENERIC_HWEIGHT=y
38769 +CONFIG_GENERIC_CALIBRATE_DELAY=y
38770 +CONFIG_GENERIC_FIND_NEXT_BIT=y
38771 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
38772 +CONFIG_PPC=y
38773 +CONFIG_EARLY_PRINTK=y
38774 +CONFIG_GENERIC_NVRAM=y
38775 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
38776 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
38777 +CONFIG_PPC_OF=y
38778 +CONFIG_OF=y
38779 +CONFIG_PPC_UDBG_16550=y
38780 +# CONFIG_GENERIC_TBSYNC is not set
38781 +CONFIG_AUDIT_ARCH=y
38782 +CONFIG_GENERIC_BUG=y
38783 +CONFIG_DEFAULT_UIMAGE=y
38784 +# CONFIG_PPC_DCR_NATIVE is not set
38785 +# CONFIG_PPC_DCR_MMIO is not set
38786 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
38787 +
38788 +#
38789 +# General setup
38790 +#
38791 +CONFIG_EXPERIMENTAL=y
38792 +CONFIG_BROKEN_ON_SMP=y
38793 +CONFIG_INIT_ENV_ARG_LIMIT=32
38794 +CONFIG_LOCALVERSION=""
38795 +CONFIG_LOCALVERSION_AUTO=y
38796 +CONFIG_SWAP=y
38797 +CONFIG_SYSVIPC=y
38798 +CONFIG_SYSVIPC_SYSCTL=y
38799 +CONFIG_POSIX_MQUEUE=y
38800 +CONFIG_BSD_PROCESS_ACCT=y
38801 +# CONFIG_BSD_PROCESS_ACCT_V3 is not set
38802 +# CONFIG_TASKSTATS is not set
38803 +CONFIG_AUDIT=y
38804 +# CONFIG_AUDITSYSCALL is not set
38805 +CONFIG_IKCONFIG=y
38806 +CONFIG_IKCONFIG_PROC=y
38807 +CONFIG_LOG_BUF_SHIFT=14
38808 +# CONFIG_CGROUPS is not set
38809 +CONFIG_GROUP_SCHED=y
38810 +# CONFIG_FAIR_GROUP_SCHED is not set
38811 +# CONFIG_RT_GROUP_SCHED is not set
38812 +CONFIG_USER_SCHED=y
38813 +# CONFIG_CGROUP_SCHED is not set
38814 +CONFIG_SYSFS_DEPRECATED=y
38815 +CONFIG_SYSFS_DEPRECATED_V2=y
38816 +# CONFIG_RELAY is not set
38817 +# CONFIG_NAMESPACES is not set
38818 +CONFIG_BLK_DEV_INITRD=y
38819 +CONFIG_INITRAMFS_SOURCE=""
38820 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
38821 +CONFIG_SYSCTL=y
38822 +CONFIG_EMBEDDED=y
38823 +CONFIG_SYSCTL_SYSCALL=y
38824 +CONFIG_KALLSYMS=y
38825 +CONFIG_KALLSYMS_ALL=y
38826 +CONFIG_KALLSYMS_EXTRA_PASS=y
38827 +CONFIG_HOTPLUG=y
38828 +CONFIG_PRINTK=y
38829 +CONFIG_BUG=y
38830 +CONFIG_ELF_CORE=y
38831 +CONFIG_COMPAT_BRK=y
38832 +CONFIG_BASE_FULL=y
38833 +CONFIG_FUTEX=y
38834 +CONFIG_ANON_INODES=y
38835 +CONFIG_EPOLL=y
38836 +CONFIG_SIGNALFD=y
38837 +CONFIG_TIMERFD=y
38838 +CONFIG_EVENTFD=y
38839 +CONFIG_SHMEM=y
38840 +CONFIG_VM_EVENT_COUNTERS=y
38841 +CONFIG_SLUB_DEBUG=y
38842 +# CONFIG_SLAB is not set
38843 +CONFIG_SLUB=y
38844 +# CONFIG_SLOB is not set
38845 +# CONFIG_PROFILING is not set
38846 +# CONFIG_MARKERS is not set
38847 +CONFIG_HAVE_OPROFILE=y
38848 +# CONFIG_KPROBES is not set
38849 +CONFIG_HAVE_KPROBES=y
38850 +CONFIG_HAVE_KRETPROBES=y
38851 +CONFIG_PROC_PAGE_MONITOR=y
38852 +CONFIG_SLABINFO=y
38853 +CONFIG_RT_MUTEXES=y
38854 +# CONFIG_TINY_SHMEM is not set
38855 +CONFIG_BASE_SMALL=0
38856 +CONFIG_MODULES=y
38857 +CONFIG_MODULE_UNLOAD=y
38858 +CONFIG_MODULE_FORCE_UNLOAD=y
38859 +CONFIG_MODVERSIONS=y
38860 +# CONFIG_MODULE_SRCVERSION_ALL is not set
38861 +CONFIG_KMOD=y
38862 +CONFIG_BLOCK=y
38863 +CONFIG_LBD=y
38864 +# CONFIG_BLK_DEV_IO_TRACE is not set
38865 +# CONFIG_LSF is not set
38866 +# CONFIG_BLK_DEV_BSG is not set
38867 +
38868 +#
38869 +# IO Schedulers
38870 +#
38871 +CONFIG_IOSCHED_NOOP=y
38872 +CONFIG_IOSCHED_AS=y
38873 +CONFIG_IOSCHED_DEADLINE=y
38874 +CONFIG_IOSCHED_CFQ=y
38875 +# CONFIG_DEFAULT_AS is not set
38876 +# CONFIG_DEFAULT_DEADLINE is not set
38877 +CONFIG_DEFAULT_CFQ=y
38878 +# CONFIG_DEFAULT_NOOP is not set
38879 +CONFIG_DEFAULT_IOSCHED="cfq"
38880 +CONFIG_CLASSIC_RCU=y
38881 +
38882 +#
38883 +# Platform support
38884 +#
38885 +# CONFIG_PPC_MPC512x is not set
38886 +# CONFIG_PPC_MPC5121 is not set
38887 +# CONFIG_PPC_CELL is not set
38888 +# CONFIG_PPC_CELL_NATIVE is not set
38889 +# CONFIG_PQ2ADS is not set
38890 +CONFIG_MPC85xx=y
38891 +# CONFIG_MPC8540_ADS is not set
38892 +# CONFIG_MPC8560_ADS is not set
38893 +# CONFIG_MPC85xx_CDS is not set
38894 +# CONFIG_MPC85xx_MDS is not set
38895 +CONFIG_MPC85xx_DS=y
38896 +# CONFIG_STX_GP3 is not set
38897 +# CONFIG_TQM8540 is not set
38898 +# CONFIG_TQM8541 is not set
38899 +# CONFIG_TQM8555 is not set
38900 +# CONFIG_TQM8560 is not set
38901 +# CONFIG_SBC8548 is not set
38902 +# CONFIG_SBC8560 is not set
38903 +# CONFIG_IPIC is not set
38904 +CONFIG_MPIC=y
38905 +# CONFIG_MPIC_WEIRD is not set
38906 +CONFIG_PPC_I8259=y
38907 +# CONFIG_PPC_RTAS is not set
38908 +# CONFIG_MMIO_NVRAM is not set
38909 +# CONFIG_PPC_MPC106 is not set
38910 +# CONFIG_PPC_970_NAP is not set
38911 +# CONFIG_PPC_INDIRECT_IO is not set
38912 +# CONFIG_GENERIC_IOMAP is not set
38913 +# CONFIG_CPU_FREQ is not set
38914 +# CONFIG_CPM2 is not set
38915 +CONFIG_FSL_ULI1575=y
38916 +
38917 +#
38918 +# Kernel options
38919 +#
38920 +CONFIG_HIGHMEM=y
38921 +CONFIG_TICK_ONESHOT=y
38922 +CONFIG_NO_HZ=y
38923 +CONFIG_HIGH_RES_TIMERS=y
38924 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
38925 +# CONFIG_HZ_100 is not set
38926 +CONFIG_HZ_250=y
38927 +# CONFIG_HZ_300 is not set
38928 +# CONFIG_HZ_1000 is not set
38929 +CONFIG_HZ=250
38930 +# CONFIG_SCHED_HRTICK is not set
38931 +CONFIG_PREEMPT_NONE=y
38932 +# CONFIG_PREEMPT_VOLUNTARY is not set
38933 +# CONFIG_PREEMPT is not set
38934 +CONFIG_BINFMT_ELF=y
38935 +CONFIG_BINFMT_MISC=m
38936 +CONFIG_MATH_EMULATION=y
38937 +# CONFIG_IOMMU_HELPER is not set
38938 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
38939 +CONFIG_ARCH_HAS_WALK_MEMORY=y
38940 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
38941 +CONFIG_ARCH_FLATMEM_ENABLE=y
38942 +CONFIG_ARCH_POPULATES_NODE_MAP=y
38943 +CONFIG_SELECT_MEMORY_MODEL=y
38944 +CONFIG_FLATMEM_MANUAL=y
38945 +# CONFIG_DISCONTIGMEM_MANUAL is not set
38946 +# CONFIG_SPARSEMEM_MANUAL is not set
38947 +CONFIG_FLATMEM=y
38948 +CONFIG_FLAT_NODE_MEM_MAP=y
38949 +# CONFIG_SPARSEMEM_STATIC is not set
38950 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
38951 +CONFIG_SPLIT_PTLOCK_CPUS=4
38952 +# CONFIG_RESOURCES_64BIT is not set
38953 +CONFIG_ZONE_DMA_FLAG=1
38954 +CONFIG_BOUNCE=y
38955 +CONFIG_VIRT_TO_BUS=y
38956 +CONFIG_PROC_DEVICETREE=y
38957 +# CONFIG_CMDLINE_BOOL is not set
38958 +# CONFIG_PM is not set
38959 +CONFIG_SECCOMP=y
38960 +CONFIG_ISA_DMA_API=y
38961 +
38962 +#
38963 +# Bus options
38964 +#
38965 +CONFIG_ZONE_DMA=y
38966 +CONFIG_GENERIC_ISA_DMA=y
38967 +CONFIG_PPC_INDIRECT_PCI=y
38968 +CONFIG_FSL_SOC=y
38969 +CONFIG_FSL_PCI=y
38970 +CONFIG_PCI=y
38971 +CONFIG_PCI_DOMAINS=y
38972 +CONFIG_PCI_SYSCALL=y
38973 +# CONFIG_PCIEPORTBUS is not set
38974 +CONFIG_ARCH_SUPPORTS_MSI=y
38975 +# CONFIG_PCI_MSI is not set
38976 +CONFIG_PCI_LEGACY=y
38977 +# CONFIG_PCI_DEBUG is not set
38978 +# CONFIG_PCCARD is not set
38979 +# CONFIG_HOTPLUG_PCI is not set
38980 +
38981 +#
38982 +# Advanced setup
38983 +#
38984 +# CONFIG_ADVANCED_OPTIONS is not set
38985 +
38986 +#
38987 +# Default settings for advanced configuration options are used
38988 +#
38989 +CONFIG_HIGHMEM_START=0xfe000000
38990 +CONFIG_LOWMEM_SIZE=0x30000000
38991 +CONFIG_KERNEL_START=0xc0000000
38992 +CONFIG_TASK_SIZE=0xc0000000
38993 +CONFIG_BOOT_LOAD=0x00800000
38994 +
38995 +#
38996 +# Networking
38997 +#
38998 +CONFIG_NET=y
38999 +
39000 +#
39001 +# Networking options
39002 +#
39003 +CONFIG_PACKET=y
39004 +# CONFIG_PACKET_MMAP is not set
39005 +CONFIG_UNIX=y
39006 +CONFIG_XFRM=y
39007 +CONFIG_XFRM_USER=y
39008 +# CONFIG_XFRM_SUB_POLICY is not set
39009 +# CONFIG_XFRM_MIGRATE is not set
39010 +# CONFIG_XFRM_STATISTICS is not set
39011 +CONFIG_NET_KEY=m
39012 +# CONFIG_NET_KEY_MIGRATE is not set
39013 +CONFIG_INET=y
39014 +CONFIG_IP_MULTICAST=y
39015 +CONFIG_IP_ADVANCED_ROUTER=y
39016 +CONFIG_ASK_IP_FIB_HASH=y
39017 +# CONFIG_IP_FIB_TRIE is not set
39018 +CONFIG_IP_FIB_HASH=y
39019 +CONFIG_IP_MULTIPLE_TABLES=y
39020 +CONFIG_IP_ROUTE_MULTIPATH=y
39021 +CONFIG_IP_ROUTE_VERBOSE=y
39022 +CONFIG_IP_PNP=y
39023 +CONFIG_IP_PNP_DHCP=y
39024 +CONFIG_IP_PNP_BOOTP=y
39025 +CONFIG_IP_PNP_RARP=y
39026 +CONFIG_NET_IPIP=y
39027 +CONFIG_NET_IPGRE=y
39028 +CONFIG_NET_IPGRE_BROADCAST=y
39029 +CONFIG_IP_MROUTE=y
39030 +CONFIG_IP_PIMSM_V1=y
39031 +CONFIG_IP_PIMSM_V2=y
39032 +CONFIG_ARPD=y
39033 +# CONFIG_SYN_COOKIES is not set
39034 +# CONFIG_INET_AH is not set
39035 +# CONFIG_INET_ESP is not set
39036 +# CONFIG_INET_IPCOMP is not set
39037 +# CONFIG_INET_XFRM_TUNNEL is not set
39038 +CONFIG_INET_TUNNEL=y
39039 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
39040 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
39041 +# CONFIG_INET_XFRM_MODE_BEET is not set
39042 +# CONFIG_INET_LRO is not set
39043 +CONFIG_INET_DIAG=y
39044 +CONFIG_INET_TCP_DIAG=y
39045 +# CONFIG_TCP_CONG_ADVANCED is not set
39046 +CONFIG_TCP_CONG_CUBIC=y
39047 +CONFIG_DEFAULT_TCP_CONG="cubic"
39048 +# CONFIG_TCP_MD5SIG is not set
39049 +CONFIG_IPV6=y
39050 +# CONFIG_IPV6_PRIVACY is not set
39051 +# CONFIG_IPV6_ROUTER_PREF is not set
39052 +# CONFIG_IPV6_OPTIMISTIC_DAD is not set
39053 +# CONFIG_INET6_AH is not set
39054 +# CONFIG_INET6_ESP is not set
39055 +# CONFIG_INET6_IPCOMP is not set
39056 +# CONFIG_IPV6_MIP6 is not set
39057 +# CONFIG_INET6_XFRM_TUNNEL is not set
39058 +# CONFIG_INET6_TUNNEL is not set
39059 +CONFIG_INET6_XFRM_MODE_TRANSPORT=y
39060 +CONFIG_INET6_XFRM_MODE_TUNNEL=y
39061 +CONFIG_INET6_XFRM_MODE_BEET=y
39062 +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
39063 +CONFIG_IPV6_SIT=y
39064 +# CONFIG_IPV6_TUNNEL is not set
39065 +# CONFIG_IPV6_MULTIPLE_TABLES is not set
39066 +# CONFIG_NETWORK_SECMARK is not set
39067 +# CONFIG_NETFILTER is not set
39068 +# CONFIG_IP_DCCP is not set
39069 +CONFIG_IP_SCTP=m
39070 +# CONFIG_SCTP_DBG_MSG is not set
39071 +# CONFIG_SCTP_DBG_OBJCNT is not set
39072 +# CONFIG_SCTP_HMAC_NONE is not set
39073 +# CONFIG_SCTP_HMAC_SHA1 is not set
39074 +CONFIG_SCTP_HMAC_MD5=y
39075 +# CONFIG_TIPC is not set
39076 +# CONFIG_ATM is not set
39077 +# CONFIG_BRIDGE is not set
39078 +# CONFIG_VLAN_8021Q is not set
39079 +# CONFIG_DECNET is not set
39080 +# CONFIG_LLC2 is not set
39081 +# CONFIG_IPX is not set
39082 +# CONFIG_ATALK is not set
39083 +# CONFIG_X25 is not set
39084 +# CONFIG_LAPB is not set
39085 +# CONFIG_ECONET is not set
39086 +# CONFIG_WAN_ROUTER is not set
39087 +# CONFIG_NET_SCHED is not set
39088 +
39089 +#
39090 +# Network testing
39091 +#
39092 +# CONFIG_NET_PKTGEN is not set
39093 +# CONFIG_HAMRADIO is not set
39094 +# CONFIG_CAN is not set
39095 +# CONFIG_IRDA is not set
39096 +# CONFIG_BT is not set
39097 +# CONFIG_AF_RXRPC is not set
39098 +CONFIG_FIB_RULES=y
39099 +
39100 +#
39101 +# Wireless
39102 +#
39103 +# CONFIG_CFG80211 is not set
39104 +# CONFIG_WIRELESS_EXT is not set
39105 +# CONFIG_MAC80211 is not set
39106 +# CONFIG_IEEE80211 is not set
39107 +# CONFIG_RFKILL is not set
39108 +# CONFIG_NET_9P is not set
39109 +
39110 +#
39111 +# Device Drivers
39112 +#
39113 +
39114 +#
39115 +# Generic Driver Options
39116 +#
39117 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
39118 +CONFIG_STANDALONE=y
39119 +CONFIG_PREVENT_FIRMWARE_BUILD=y
39120 +CONFIG_FW_LOADER=y
39121 +# CONFIG_DEBUG_DRIVER is not set
39122 +# CONFIG_DEBUG_DEVRES is not set
39123 +# CONFIG_SYS_HYPERVISOR is not set
39124 +# CONFIG_CONNECTOR is not set
39125 +# CONFIG_MTD is not set
39126 +CONFIG_OF_DEVICE=y
39127 +# CONFIG_PARPORT is not set
39128 +CONFIG_BLK_DEV=y
39129 +# CONFIG_BLK_DEV_FD is not set
39130 +# CONFIG_BLK_CPQ_DA is not set
39131 +# CONFIG_BLK_CPQ_CISS_DA is not set
39132 +# CONFIG_BLK_DEV_DAC960 is not set
39133 +# CONFIG_BLK_DEV_UMEM is not set
39134 +# CONFIG_BLK_DEV_COW_COMMON is not set
39135 +CONFIG_BLK_DEV_LOOP=y
39136 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
39137 +CONFIG_BLK_DEV_NBD=y
39138 +# CONFIG_BLK_DEV_SX8 is not set
39139 +# CONFIG_BLK_DEV_UB is not set
39140 +CONFIG_BLK_DEV_RAM=y
39141 +CONFIG_BLK_DEV_RAM_COUNT=16
39142 +CONFIG_BLK_DEV_RAM_SIZE=131072
39143 +# CONFIG_BLK_DEV_XIP is not set
39144 +# CONFIG_CDROM_PKTCDVD is not set
39145 +# CONFIG_ATA_OVER_ETH is not set
39146 +CONFIG_MISC_DEVICES=y
39147 +# CONFIG_PHANTOM is not set
39148 +# CONFIG_EEPROM_93CX6 is not set
39149 +# CONFIG_SGI_IOC4 is not set
39150 +# CONFIG_TIFM_CORE is not set
39151 +# CONFIG_ENCLOSURE_SERVICES is not set
39152 +CONFIG_HAVE_IDE=y
39153 +# CONFIG_IDE is not set
39154 +
39155 +#
39156 +# SCSI device support
39157 +#
39158 +# CONFIG_RAID_ATTRS is not set
39159 +CONFIG_SCSI=y
39160 +CONFIG_SCSI_DMA=y
39161 +# CONFIG_SCSI_TGT is not set
39162 +# CONFIG_SCSI_NETLINK is not set
39163 +CONFIG_SCSI_PROC_FS=y
39164 +
39165 +#
39166 +# SCSI support type (disk, tape, CD-ROM)
39167 +#
39168 +CONFIG_BLK_DEV_SD=y
39169 +CONFIG_CHR_DEV_ST=y
39170 +# CONFIG_CHR_DEV_OSST is not set
39171 +CONFIG_BLK_DEV_SR=y
39172 +# CONFIG_BLK_DEV_SR_VENDOR is not set
39173 +CONFIG_CHR_DEV_SG=y
39174 +# CONFIG_CHR_DEV_SCH is not set
39175 +
39176 +#
39177 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
39178 +#
39179 +CONFIG_SCSI_MULTI_LUN=y
39180 +# CONFIG_SCSI_CONSTANTS is not set
39181 +CONFIG_SCSI_LOGGING=y
39182 +# CONFIG_SCSI_SCAN_ASYNC is not set
39183 +CONFIG_SCSI_WAIT_SCAN=m
39184 +
39185 +#
39186 +# SCSI Transports
39187 +#
39188 +# CONFIG_SCSI_SPI_ATTRS is not set
39189 +# CONFIG_SCSI_FC_ATTRS is not set
39190 +# CONFIG_SCSI_ISCSI_ATTRS is not set
39191 +# CONFIG_SCSI_SAS_LIBSAS is not set
39192 +# CONFIG_SCSI_SRP_ATTRS is not set
39193 +CONFIG_SCSI_LOWLEVEL=y
39194 +# CONFIG_ISCSI_TCP is not set
39195 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
39196 +# CONFIG_SCSI_3W_9XXX is not set
39197 +# CONFIG_SCSI_ACARD is not set
39198 +# CONFIG_SCSI_AACRAID is not set
39199 +# CONFIG_SCSI_AIC7XXX is not set
39200 +# CONFIG_SCSI_AIC7XXX_OLD is not set
39201 +# CONFIG_SCSI_AIC79XX is not set
39202 +# CONFIG_SCSI_AIC94XX is not set
39203 +# CONFIG_SCSI_DPT_I2O is not set
39204 +# CONFIG_SCSI_ADVANSYS is not set
39205 +# CONFIG_SCSI_ARCMSR is not set
39206 +# CONFIG_MEGARAID_NEWGEN is not set
39207 +# CONFIG_MEGARAID_LEGACY is not set
39208 +# CONFIG_MEGARAID_SAS is not set
39209 +# CONFIG_SCSI_HPTIOP is not set
39210 +# CONFIG_SCSI_BUSLOGIC is not set
39211 +# CONFIG_SCSI_DMX3191D is not set
39212 +# CONFIG_SCSI_EATA is not set
39213 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
39214 +# CONFIG_SCSI_GDTH is not set
39215 +# CONFIG_SCSI_IPS is not set
39216 +# CONFIG_SCSI_INITIO is not set
39217 +# CONFIG_SCSI_INIA100 is not set
39218 +# CONFIG_SCSI_MVSAS is not set
39219 +# CONFIG_SCSI_STEX is not set
39220 +# CONFIG_SCSI_SYM53C8XX_2 is not set
39221 +# CONFIG_SCSI_IPR is not set
39222 +# CONFIG_SCSI_QLOGIC_1280 is not set
39223 +# CONFIG_SCSI_QLA_FC is not set
39224 +# CONFIG_SCSI_QLA_ISCSI is not set
39225 +# CONFIG_SCSI_LPFC is not set
39226 +# CONFIG_SCSI_DC395x is not set
39227 +# CONFIG_SCSI_DC390T is not set
39228 +# CONFIG_SCSI_NSP32 is not set
39229 +# CONFIG_SCSI_DEBUG is not set
39230 +# CONFIG_SCSI_SRP is not set
39231 +CONFIG_ATA=y
39232 +# CONFIG_ATA_NONSTANDARD is not set
39233 +CONFIG_SATA_AHCI=y
39234 +# CONFIG_SATA_SVW is not set
39235 +# CONFIG_ATA_PIIX is not set
39236 +# CONFIG_SATA_MV is not set
39237 +# CONFIG_SATA_NV is not set
39238 +# CONFIG_PDC_ADMA is not set
39239 +# CONFIG_SATA_QSTOR is not set
39240 +# CONFIG_SATA_PROMISE is not set
39241 +# CONFIG_SATA_SX4 is not set
39242 +# CONFIG_SATA_SIL is not set
39243 +# CONFIG_SATA_SIL24 is not set
39244 +# CONFIG_SATA_SIS is not set
39245 +# CONFIG_SATA_ULI is not set
39246 +# CONFIG_SATA_VIA is not set
39247 +# CONFIG_SATA_VITESSE is not set
39248 +# CONFIG_SATA_INIC162X is not set
39249 +# CONFIG_SATA_FSL is not set
39250 +CONFIG_PATA_ALI=y
39251 +# CONFIG_PATA_AMD is not set
39252 +# CONFIG_PATA_ARTOP is not set
39253 +# CONFIG_PATA_ATIIXP is not set
39254 +# CONFIG_PATA_CMD640_PCI is not set
39255 +# CONFIG_PATA_CMD64X is not set
39256 +# CONFIG_PATA_CS5520 is not set
39257 +# CONFIG_PATA_CS5530 is not set
39258 +# CONFIG_PATA_CYPRESS is not set
39259 +# CONFIG_PATA_EFAR is not set
39260 +# CONFIG_ATA_GENERIC is not set
39261 +# CONFIG_PATA_HPT366 is not set
39262 +# CONFIG_PATA_HPT37X is not set
39263 +# CONFIG_PATA_HPT3X2N is not set
39264 +# CONFIG_PATA_HPT3X3 is not set
39265 +# CONFIG_PATA_IT821X is not set
39266 +# CONFIG_PATA_IT8213 is not set
39267 +# CONFIG_PATA_JMICRON is not set
39268 +# CONFIG_PATA_TRIFLEX is not set
39269 +# CONFIG_PATA_MARVELL is not set
39270 +# CONFIG_PATA_MPIIX is not set
39271 +# CONFIG_PATA_OLDPIIX is not set
39272 +# CONFIG_PATA_NETCELL is not set
39273 +# CONFIG_PATA_NINJA32 is not set
39274 +# CONFIG_PATA_NS87410 is not set
39275 +# CONFIG_PATA_NS87415 is not set
39276 +# CONFIG_PATA_OPTI is not set
39277 +# CONFIG_PATA_OPTIDMA is not set
39278 +# CONFIG_PATA_PDC_OLD is not set
39279 +# CONFIG_PATA_RADISYS is not set
39280 +# CONFIG_PATA_RZ1000 is not set
39281 +# CONFIG_PATA_SC1200 is not set
39282 +# CONFIG_PATA_SERVERWORKS is not set
39283 +# CONFIG_PATA_PDC2027X is not set
39284 +# CONFIG_PATA_SIL680 is not set
39285 +# CONFIG_PATA_SIS is not set
39286 +# CONFIG_PATA_VIA is not set
39287 +# CONFIG_PATA_WINBOND is not set
39288 +# CONFIG_PATA_PLATFORM is not set
39289 +# CONFIG_MD is not set
39290 +# CONFIG_FUSION is not set
39291 +
39292 +#
39293 +# IEEE 1394 (FireWire) support
39294 +#
39295 +# CONFIG_FIREWIRE is not set
39296 +# CONFIG_IEEE1394 is not set
39297 +# CONFIG_I2O is not set
39298 +# CONFIG_MACINTOSH_DRIVERS is not set
39299 +CONFIG_NETDEVICES=y
39300 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
39301 +CONFIG_DUMMY=y
39302 +# CONFIG_BONDING is not set
39303 +# CONFIG_MACVLAN is not set
39304 +# CONFIG_EQUALIZER is not set
39305 +# CONFIG_TUN is not set
39306 +# CONFIG_VETH is not set
39307 +# CONFIG_ARCNET is not set
39308 +CONFIG_PHYLIB=y
39309 +
39310 +#
39311 +# MII PHY device drivers
39312 +#
39313 +# CONFIG_MARVELL_PHY is not set
39314 +# CONFIG_DAVICOM_PHY is not set
39315 +# CONFIG_QSEMI_PHY is not set
39316 +# CONFIG_LXT_PHY is not set
39317 +# CONFIG_CICADA_PHY is not set
39318 +CONFIG_VITESSE_PHY=y
39319 +# CONFIG_SMSC_PHY is not set
39320 +# CONFIG_BROADCOM_PHY is not set
39321 +# CONFIG_ICPLUS_PHY is not set
39322 +# CONFIG_REALTEK_PHY is not set
39323 +# CONFIG_FIXED_PHY is not set
39324 +# CONFIG_MDIO_BITBANG is not set
39325 +CONFIG_NET_ETHERNET=y
39326 +CONFIG_MII=y
39327 +# CONFIG_HAPPYMEAL is not set
39328 +# CONFIG_SUNGEM is not set
39329 +# CONFIG_CASSINI is not set
39330 +# CONFIG_NET_VENDOR_3COM is not set
39331 +# CONFIG_NET_TULIP is not set
39332 +# CONFIG_HP100 is not set
39333 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
39334 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
39335 +# CONFIG_IBM_NEW_EMAC_TAH is not set
39336 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
39337 +# CONFIG_NET_PCI is not set
39338 +# CONFIG_B44 is not set
39339 +CONFIG_NETDEV_1000=y
39340 +# CONFIG_ACENIC is not set
39341 +# CONFIG_DL2K is not set
39342 +# CONFIG_E1000 is not set
39343 +# CONFIG_E1000E is not set
39344 +# CONFIG_E1000E_ENABLED is not set
39345 +# CONFIG_IP1000 is not set
39346 +# CONFIG_IGB is not set
39347 +# CONFIG_NS83820 is not set
39348 +# CONFIG_HAMACHI is not set
39349 +# CONFIG_YELLOWFIN is not set
39350 +# CONFIG_R8169 is not set
39351 +# CONFIG_SIS190 is not set
39352 +# CONFIG_SKGE is not set
39353 +# CONFIG_SKY2 is not set
39354 +# CONFIG_SK98LIN is not set
39355 +# CONFIG_VIA_VELOCITY is not set
39356 +# CONFIG_TIGON3 is not set
39357 +# CONFIG_BNX2 is not set
39358 +CONFIG_GIANFAR=y
39359 +CONFIG_GFAR_NAPI=y
39360 +# CONFIG_QLA3XXX is not set
39361 +# CONFIG_ATL1 is not set
39362 +CONFIG_NETDEV_10000=y
39363 +# CONFIG_CHELSIO_T1 is not set
39364 +# CONFIG_CHELSIO_T3 is not set
39365 +# CONFIG_IXGBE is not set
39366 +# CONFIG_IXGB is not set
39367 +# CONFIG_S2IO is not set
39368 +# CONFIG_MYRI10GE is not set
39369 +# CONFIG_NETXEN_NIC is not set
39370 +# CONFIG_NIU is not set
39371 +# CONFIG_MLX4_CORE is not set
39372 +# CONFIG_TEHUTI is not set
39373 +# CONFIG_BNX2X is not set
39374 +# CONFIG_TR is not set
39375 +
39376 +#
39377 +# Wireless LAN
39378 +#
39379 +# CONFIG_WLAN_PRE80211 is not set
39380 +# CONFIG_WLAN_80211 is not set
39381 +
39382 +#
39383 +# USB Network Adapters
39384 +#
39385 +# CONFIG_USB_CATC is not set
39386 +# CONFIG_USB_KAWETH is not set
39387 +# CONFIG_USB_PEGASUS is not set
39388 +# CONFIG_USB_RTL8150 is not set
39389 +# CONFIG_USB_USBNET is not set
39390 +# CONFIG_WAN is not set
39391 +# CONFIG_FDDI is not set
39392 +# CONFIG_HIPPI is not set
39393 +# CONFIG_PPP is not set
39394 +# CONFIG_SLIP is not set
39395 +# CONFIG_NET_FC is not set
39396 +# CONFIG_NETCONSOLE is not set
39397 +# CONFIG_NETPOLL is not set
39398 +# CONFIG_NET_POLL_CONTROLLER is not set
39399 +# CONFIG_ISDN is not set
39400 +# CONFIG_PHONE is not set
39401 +
39402 +#
39403 +# Input device support
39404 +#
39405 +CONFIG_INPUT=y
39406 +# CONFIG_INPUT_FF_MEMLESS is not set
39407 +# CONFIG_INPUT_POLLDEV is not set
39408 +
39409 +#
39410 +# Userland interfaces
39411 +#
39412 +# CONFIG_INPUT_MOUSEDEV is not set
39413 +# CONFIG_INPUT_JOYDEV is not set
39414 +# CONFIG_INPUT_EVDEV is not set
39415 +# CONFIG_INPUT_EVBUG is not set
39416 +
39417 +#
39418 +# Input Device Drivers
39419 +#
39420 +# CONFIG_INPUT_KEYBOARD is not set
39421 +# CONFIG_INPUT_MOUSE is not set
39422 +# CONFIG_INPUT_JOYSTICK is not set
39423 +# CONFIG_INPUT_TABLET is not set
39424 +# CONFIG_INPUT_TOUCHSCREEN is not set
39425 +# CONFIG_INPUT_MISC is not set
39426 +
39427 +#
39428 +# Hardware I/O ports
39429 +#
39430 +CONFIG_SERIO=y
39431 +CONFIG_SERIO_I8042=y
39432 +CONFIG_SERIO_SERPORT=y
39433 +# CONFIG_SERIO_PCIPS2 is not set
39434 +CONFIG_SERIO_LIBPS2=y
39435 +# CONFIG_SERIO_RAW is not set
39436 +# CONFIG_GAMEPORT is not set
39437 +
39438 +#
39439 +# Character devices
39440 +#
39441 +CONFIG_VT=y
39442 +CONFIG_VT_CONSOLE=y
39443 +CONFIG_HW_CONSOLE=y
39444 +# CONFIG_VT_HW_CONSOLE_BINDING is not set
39445 +# CONFIG_SERIAL_NONSTANDARD is not set
39446 +# CONFIG_NOZOMI is not set
39447 +
39448 +#
39449 +# Serial drivers
39450 +#
39451 +CONFIG_SERIAL_8250=y
39452 +CONFIG_SERIAL_8250_CONSOLE=y
39453 +CONFIG_SERIAL_8250_PCI=y
39454 +CONFIG_SERIAL_8250_NR_UARTS=2
39455 +CONFIG_SERIAL_8250_RUNTIME_UARTS=2
39456 +CONFIG_SERIAL_8250_EXTENDED=y
39457 +CONFIG_SERIAL_8250_MANY_PORTS=y
39458 +CONFIG_SERIAL_8250_SHARE_IRQ=y
39459 +CONFIG_SERIAL_8250_DETECT_IRQ=y
39460 +CONFIG_SERIAL_8250_RSA=y
39461 +
39462 +#
39463 +# Non-8250 serial port support
39464 +#
39465 +# CONFIG_SERIAL_UARTLITE is not set
39466 +CONFIG_SERIAL_CORE=y
39467 +CONFIG_SERIAL_CORE_CONSOLE=y
39468 +# CONFIG_SERIAL_JSM is not set
39469 +# CONFIG_SERIAL_OF_PLATFORM is not set
39470 +CONFIG_UNIX98_PTYS=y
39471 +CONFIG_LEGACY_PTYS=y
39472 +CONFIG_LEGACY_PTY_COUNT=256
39473 +# CONFIG_IPMI_HANDLER is not set
39474 +# CONFIG_HW_RANDOM is not set
39475 +CONFIG_NVRAM=y
39476 +# CONFIG_GEN_RTC is not set
39477 +# CONFIG_R3964 is not set
39478 +# CONFIG_APPLICOM is not set
39479 +# CONFIG_RAW_DRIVER is not set
39480 +# CONFIG_TCG_TPM is not set
39481 +CONFIG_DEVPORT=y
39482 +CONFIG_I2C=y
39483 +CONFIG_I2C_BOARDINFO=y
39484 +# CONFIG_I2C_CHARDEV is not set
39485 +
39486 +#
39487 +# I2C Algorithms
39488 +#
39489 +# CONFIG_I2C_ALGOBIT is not set
39490 +# CONFIG_I2C_ALGOPCF is not set
39491 +# CONFIG_I2C_ALGOPCA is not set
39492 +
39493 +#
39494 +# I2C Hardware Bus support
39495 +#
39496 +# CONFIG_I2C_ALI1535 is not set
39497 +# CONFIG_I2C_ALI1563 is not set
39498 +# CONFIG_I2C_ALI15X3 is not set
39499 +# CONFIG_I2C_AMD756 is not set
39500 +# CONFIG_I2C_AMD8111 is not set
39501 +# CONFIG_I2C_I801 is not set
39502 +# CONFIG_I2C_I810 is not set
39503 +# CONFIG_I2C_PIIX4 is not set
39504 +CONFIG_I2C_MPC=y
39505 +# CONFIG_I2C_NFORCE2 is not set
39506 +# CONFIG_I2C_OCORES is not set
39507 +# CONFIG_I2C_PARPORT_LIGHT is not set
39508 +# CONFIG_I2C_PROSAVAGE is not set
39509 +# CONFIG_I2C_SAVAGE4 is not set
39510 +# CONFIG_I2C_SIMTEC is not set
39511 +# CONFIG_I2C_SIS5595 is not set
39512 +# CONFIG_I2C_SIS630 is not set
39513 +# CONFIG_I2C_SIS96X is not set
39514 +# CONFIG_I2C_TAOS_EVM is not set
39515 +# CONFIG_I2C_STUB is not set
39516 +# CONFIG_I2C_TINY_USB is not set
39517 +# CONFIG_I2C_VIA is not set
39518 +# CONFIG_I2C_VIAPRO is not set
39519 +# CONFIG_I2C_VOODOO3 is not set
39520 +
39521 +#
39522 +# Miscellaneous I2C Chip support
39523 +#
39524 +# CONFIG_DS1682 is not set
39525 +CONFIG_SENSORS_EEPROM=y
39526 +# CONFIG_SENSORS_PCF8574 is not set
39527 +# CONFIG_PCF8575 is not set
39528 +# CONFIG_SENSORS_PCF8591 is not set
39529 +# CONFIG_TPS65010 is not set
39530 +# CONFIG_SENSORS_MAX6875 is not set
39531 +# CONFIG_SENSORS_TSL2550 is not set
39532 +# CONFIG_I2C_DEBUG_CORE is not set
39533 +# CONFIG_I2C_DEBUG_ALGO is not set
39534 +# CONFIG_I2C_DEBUG_BUS is not set
39535 +# CONFIG_I2C_DEBUG_CHIP is not set
39536 +
39537 +#
39538 +# SPI support
39539 +#
39540 +# CONFIG_SPI is not set
39541 +# CONFIG_SPI_MASTER is not set
39542 +# CONFIG_W1 is not set
39543 +# CONFIG_POWER_SUPPLY is not set
39544 +# CONFIG_HWMON is not set
39545 +# CONFIG_THERMAL is not set
39546 +# CONFIG_WATCHDOG is not set
39547 +
39548 +#
39549 +# Sonics Silicon Backplane
39550 +#
39551 +CONFIG_SSB_POSSIBLE=y
39552 +# CONFIG_SSB is not set
39553 +
39554 +#
39555 +# Multifunction device drivers
39556 +#
39557 +# CONFIG_MFD_SM501 is not set
39558 +
39559 +#
39560 +# Multimedia devices
39561 +#
39562 +# CONFIG_VIDEO_DEV is not set
39563 +CONFIG_DVB_CORE=m
39564 +# CONFIG_DVB_CORE_ATTACH is not set
39565 +CONFIG_DVB_CAPTURE_DRIVERS=y
39566 +
39567 +#
39568 +# Supported SAA7146 based PCI Adapters
39569 +#
39570 +# CONFIG_TTPCI_EEPROM is not set
39571 +# CONFIG_DVB_BUDGET_CORE is not set
39572 +
39573 +#
39574 +# Supported USB Adapters
39575 +#
39576 +# CONFIG_DVB_USB is not set
39577 +# CONFIG_DVB_TTUSB_BUDGET is not set
39578 +# CONFIG_DVB_TTUSB_DEC is not set
39579 +# CONFIG_DVB_CINERGYT2 is not set
39580 +
39581 +#
39582 +# Supported FlexCopII (B2C2) Adapters
39583 +#
39584 +# CONFIG_DVB_B2C2_FLEXCOP is not set
39585 +
39586 +#
39587 +# Supported BT878 Adapters
39588 +#
39589 +
39590 +#
39591 +# Supported Pluto2 Adapters
39592 +#
39593 +# CONFIG_DVB_PLUTO2 is not set
39594 +
39595 +#
39596 +# Supported DVB Frontends
39597 +#
39598 +
39599 +#
39600 +# Customise DVB Frontends
39601 +#
39602 +# CONFIG_DVB_FE_CUSTOMISE is not set
39603 +
39604 +#
39605 +# DVB-S (satellite) frontends
39606 +#
39607 +# CONFIG_DVB_STV0299 is not set
39608 +# CONFIG_DVB_CX24110 is not set
39609 +# CONFIG_DVB_CX24123 is not set
39610 +# CONFIG_DVB_TDA8083 is not set
39611 +# CONFIG_DVB_MT312 is not set
39612 +# CONFIG_DVB_VES1X93 is not set
39613 +# CONFIG_DVB_S5H1420 is not set
39614 +# CONFIG_DVB_TDA10086 is not set
39615 +
39616 +#
39617 +# DVB-T (terrestrial) frontends
39618 +#
39619 +# CONFIG_DVB_SP8870 is not set
39620 +# CONFIG_DVB_SP887X is not set
39621 +# CONFIG_DVB_CX22700 is not set
39622 +# CONFIG_DVB_CX22702 is not set
39623 +# CONFIG_DVB_L64781 is not set
39624 +# CONFIG_DVB_TDA1004X is not set
39625 +# CONFIG_DVB_NXT6000 is not set
39626 +# CONFIG_DVB_MT352 is not set
39627 +# CONFIG_DVB_ZL10353 is not set
39628 +# CONFIG_DVB_DIB3000MB is not set
39629 +# CONFIG_DVB_DIB3000MC is not set
39630 +# CONFIG_DVB_DIB7000M is not set
39631 +# CONFIG_DVB_DIB7000P is not set
39632 +
39633 +#
39634 +# DVB-C (cable) frontends
39635 +#
39636 +# CONFIG_DVB_VES1820 is not set
39637 +# CONFIG_DVB_TDA10021 is not set
39638 +# CONFIG_DVB_TDA10023 is not set
39639 +# CONFIG_DVB_STV0297 is not set
39640 +
39641 +#
39642 +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
39643 +#
39644 +# CONFIG_DVB_NXT200X is not set
39645 +# CONFIG_DVB_OR51211 is not set
39646 +# CONFIG_DVB_OR51132 is not set
39647 +# CONFIG_DVB_BCM3510 is not set
39648 +# CONFIG_DVB_LGDT330X is not set
39649 +# CONFIG_DVB_S5H1409 is not set
39650 +
39651 +#
39652 +# Tuners/PLL support
39653 +#
39654 +# CONFIG_DVB_PLL is not set
39655 +# CONFIG_DVB_TDA826X is not set
39656 +# CONFIG_DVB_TDA827X is not set
39657 +# CONFIG_DVB_TDA18271 is not set
39658 +# CONFIG_DVB_TUNER_QT1010 is not set
39659 +# CONFIG_DVB_TUNER_MT2060 is not set
39660 +# CONFIG_DVB_TUNER_MT2266 is not set
39661 +# CONFIG_DVB_TUNER_MT2131 is not set
39662 +# CONFIG_DVB_TUNER_DIB0070 is not set
39663 +# CONFIG_DVB_TUNER_XC5000 is not set
39664 +
39665 +#
39666 +# Miscellaneous devices
39667 +#
39668 +# CONFIG_DVB_LNBP21 is not set
39669 +# CONFIG_DVB_ISL6421 is not set
39670 +# CONFIG_DVB_TUA6100 is not set
39671 +CONFIG_DAB=y
39672 +# CONFIG_USB_DABUSB is not set
39673 +
39674 +#
39675 +# Graphics support
39676 +#
39677 +# CONFIG_AGP is not set
39678 +# CONFIG_DRM is not set
39679 +# CONFIG_VGASTATE is not set
39680 +CONFIG_VIDEO_OUTPUT_CONTROL=y
39681 +# CONFIG_FB is not set
39682 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
39683 +
39684 +#
39685 +# Display device support
39686 +#
39687 +# CONFIG_DISPLAY_SUPPORT is not set
39688 +
39689 +#
39690 +# Console display driver support
39691 +#
39692 +CONFIG_VGA_CONSOLE=y
39693 +# CONFIG_VGACON_SOFT_SCROLLBACK is not set
39694 +CONFIG_DUMMY_CONSOLE=y
39695 +
39696 +#
39697 +# Sound
39698 +#
39699 +CONFIG_SOUND=y
39700 +
39701 +#
39702 +# Advanced Linux Sound Architecture
39703 +#
39704 +CONFIG_SND=y
39705 +CONFIG_SND_TIMER=y
39706 +CONFIG_SND_PCM=y
39707 +# CONFIG_SND_SEQUENCER is not set
39708 +# CONFIG_SND_MIXER_OSS is not set
39709 +# CONFIG_SND_PCM_OSS is not set
39710 +# CONFIG_SND_DYNAMIC_MINORS is not set
39711 +CONFIG_SND_SUPPORT_OLD_API=y
39712 +CONFIG_SND_VERBOSE_PROCFS=y
39713 +# CONFIG_SND_VERBOSE_PRINTK is not set
39714 +# CONFIG_SND_DEBUG is not set
39715 +
39716 +#
39717 +# Generic devices
39718 +#
39719 +CONFIG_SND_AC97_CODEC=y
39720 +# CONFIG_SND_DUMMY is not set
39721 +# CONFIG_SND_MTPAV is not set
39722 +# CONFIG_SND_SERIAL_U16550 is not set
39723 +# CONFIG_SND_MPU401 is not set
39724 +
39725 +#
39726 +# PCI devices
39727 +#
39728 +# CONFIG_SND_AD1889 is not set
39729 +# CONFIG_SND_ALS300 is not set
39730 +# CONFIG_SND_ALS4000 is not set
39731 +# CONFIG_SND_ALI5451 is not set
39732 +# CONFIG_SND_ATIIXP is not set
39733 +# CONFIG_SND_ATIIXP_MODEM is not set
39734 +# CONFIG_SND_AU8810 is not set
39735 +# CONFIG_SND_AU8820 is not set
39736 +# CONFIG_SND_AU8830 is not set
39737 +# CONFIG_SND_AZT3328 is not set
39738 +# CONFIG_SND_BT87X is not set
39739 +# CONFIG_SND_CA0106 is not set
39740 +# CONFIG_SND_CMIPCI is not set
39741 +# CONFIG_SND_OXYGEN is not set
39742 +# CONFIG_SND_CS4281 is not set
39743 +# CONFIG_SND_CS46XX is not set
39744 +# CONFIG_SND_CS5530 is not set
39745 +# CONFIG_SND_DARLA20 is not set
39746 +# CONFIG_SND_GINA20 is not set
39747 +# CONFIG_SND_LAYLA20 is not set
39748 +# CONFIG_SND_DARLA24 is not set
39749 +# CONFIG_SND_GINA24 is not set
39750 +# CONFIG_SND_LAYLA24 is not set
39751 +# CONFIG_SND_MONA is not set
39752 +# CONFIG_SND_MIA is not set
39753 +# CONFIG_SND_ECHO3G is not set
39754 +# CONFIG_SND_INDIGO is not set
39755 +# CONFIG_SND_INDIGOIO is not set
39756 +# CONFIG_SND_INDIGODJ is not set
39757 +# CONFIG_SND_EMU10K1 is not set
39758 +# CONFIG_SND_EMU10K1X is not set
39759 +# CONFIG_SND_ENS1370 is not set
39760 +# CONFIG_SND_ENS1371 is not set
39761 +# CONFIG_SND_ES1938 is not set
39762 +# CONFIG_SND_ES1968 is not set
39763 +# CONFIG_SND_FM801 is not set
39764 +# CONFIG_SND_HDA_INTEL is not set
39765 +# CONFIG_SND_HDSP is not set
39766 +# CONFIG_SND_HDSPM is not set
39767 +# CONFIG_SND_HIFIER is not set
39768 +# CONFIG_SND_ICE1712 is not set
39769 +# CONFIG_SND_ICE1724 is not set
39770 +CONFIG_SND_INTEL8X0=y
39771 +# CONFIG_SND_INTEL8X0M is not set
39772 +# CONFIG_SND_KORG1212 is not set
39773 +# CONFIG_SND_MAESTRO3 is not set
39774 +# CONFIG_SND_MIXART is not set
39775 +# CONFIG_SND_NM256 is not set
39776 +# CONFIG_SND_PCXHR is not set
39777 +# CONFIG_SND_RIPTIDE is not set
39778 +# CONFIG_SND_RME32 is not set
39779 +# CONFIG_SND_RME96 is not set
39780 +# CONFIG_SND_RME9652 is not set
39781 +# CONFIG_SND_SONICVIBES is not set
39782 +# CONFIG_SND_TRIDENT is not set
39783 +# CONFIG_SND_VIA82XX is not set
39784 +# CONFIG_SND_VIA82XX_MODEM is not set
39785 +# CONFIG_SND_VIRTUOSO is not set
39786 +# CONFIG_SND_VX222 is not set
39787 +# CONFIG_SND_YMFPCI is not set
39788 +# CONFIG_SND_AC97_POWER_SAVE is not set
39789 +
39790 +#
39791 +# ALSA PowerMac devices
39792 +#
39793 +
39794 +#
39795 +# ALSA PowerPC devices
39796 +#
39797 +
39798 +#
39799 +# USB devices
39800 +#
39801 +# CONFIG_SND_USB_AUDIO is not set
39802 +# CONFIG_SND_USB_USX2Y is not set
39803 +# CONFIG_SND_USB_CAIAQ is not set
39804 +
39805 +#
39806 +# System on Chip audio support
39807 +#
39808 +# CONFIG_SND_SOC is not set
39809 +
39810 +#
39811 +# SoC Audio support for SuperH
39812 +#
39813 +
39814 +#
39815 +# ALSA SoC audio for Freescale SOCs
39816 +#
39817 +
39818 +#
39819 +# Open Sound System
39820 +#
39821 +# CONFIG_SOUND_PRIME is not set
39822 +CONFIG_AC97_BUS=y
39823 +CONFIG_HID_SUPPORT=y
39824 +CONFIG_HID=y
39825 +# CONFIG_HID_DEBUG is not set
39826 +# CONFIG_HIDRAW is not set
39827 +
39828 +#
39829 +# USB Input Devices
39830 +#
39831 +CONFIG_USB_HID=y
39832 +# CONFIG_USB_HIDINPUT_POWERBOOK is not set
39833 +# CONFIG_HID_FF is not set
39834 +# CONFIG_USB_HIDDEV is not set
39835 +CONFIG_USB_SUPPORT=y
39836 +CONFIG_USB_ARCH_HAS_HCD=y
39837 +CONFIG_USB_ARCH_HAS_OHCI=y
39838 +CONFIG_USB_ARCH_HAS_EHCI=y
39839 +CONFIG_USB=y
39840 +# CONFIG_USB_DEBUG is not set
39841 +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
39842 +
39843 +#
39844 +# Miscellaneous USB options
39845 +#
39846 +CONFIG_USB_DEVICEFS=y
39847 +CONFIG_USB_DEVICE_CLASS=y
39848 +# CONFIG_USB_DYNAMIC_MINORS is not set
39849 +# CONFIG_USB_OTG is not set
39850 +
39851 +#
39852 +# USB Host Controller Drivers
39853 +#
39854 +CONFIG_USB_EHCI_HCD=y
39855 +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
39856 +# CONFIG_USB_EHCI_TT_NEWSCHED is not set
39857 +# CONFIG_USB_EHCI_FSL is not set
39858 +CONFIG_USB_EHCI_HCD_PPC_OF=y
39859 +# CONFIG_USB_ISP116X_HCD is not set
39860 +CONFIG_USB_OHCI_HCD=y
39861 +CONFIG_USB_OHCI_HCD_PPC_OF=y
39862 +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
39863 +CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
39864 +CONFIG_USB_OHCI_HCD_PCI=y
39865 +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
39866 +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
39867 +CONFIG_USB_OHCI_LITTLE_ENDIAN=y
39868 +# CONFIG_USB_UHCI_HCD is not set
39869 +# CONFIG_USB_SL811_HCD is not set
39870 +# CONFIG_USB_R8A66597_HCD is not set
39871 +
39872 +#
39873 +# USB Device Class drivers
39874 +#
39875 +# CONFIG_USB_ACM is not set
39876 +# CONFIG_USB_PRINTER is not set
39877 +
39878 +#
39879 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
39880 +#
39881 +
39882 +#
39883 +# may also be needed; see USB_STORAGE Help for more information
39884 +#
39885 +CONFIG_USB_STORAGE=y
39886 +# CONFIG_USB_STORAGE_DEBUG is not set
39887 +# CONFIG_USB_STORAGE_DATAFAB is not set
39888 +# CONFIG_USB_STORAGE_FREECOM is not set
39889 +# CONFIG_USB_STORAGE_ISD200 is not set
39890 +# CONFIG_USB_STORAGE_DPCM is not set
39891 +# CONFIG_USB_STORAGE_USBAT is not set
39892 +# CONFIG_USB_STORAGE_SDDR09 is not set
39893 +# CONFIG_USB_STORAGE_SDDR55 is not set
39894 +# CONFIG_USB_STORAGE_JUMPSHOT is not set
39895 +# CONFIG_USB_STORAGE_ALAUDA is not set
39896 +# CONFIG_USB_STORAGE_KARMA is not set
39897 +# CONFIG_USB_LIBUSUAL is not set
39898 +
39899 +#
39900 +# USB Imaging devices
39901 +#
39902 +# CONFIG_USB_MDC800 is not set
39903 +# CONFIG_USB_MICROTEK is not set
39904 +CONFIG_USB_MON=y
39905 +
39906 +#
39907 +# USB port drivers
39908 +#
39909 +# CONFIG_USB_SERIAL is not set
39910 +
39911 +#
39912 +# USB Miscellaneous drivers
39913 +#
39914 +# CONFIG_USB_EMI62 is not set
39915 +# CONFIG_USB_EMI26 is not set
39916 +# CONFIG_USB_ADUTUX is not set
39917 +# CONFIG_USB_AUERSWALD is not set
39918 +# CONFIG_USB_RIO500 is not set
39919 +# CONFIG_USB_LEGOTOWER is not set
39920 +# CONFIG_USB_LCD is not set
39921 +# CONFIG_USB_BERRY_CHARGE is not set
39922 +# CONFIG_USB_LED is not set
39923 +# CONFIG_USB_CYPRESS_CY7C63 is not set
39924 +# CONFIG_USB_CYTHERM is not set
39925 +# CONFIG_USB_PHIDGET is not set
39926 +# CONFIG_USB_IDMOUSE is not set
39927 +# CONFIG_USB_FTDI_ELAN is not set
39928 +# CONFIG_USB_APPLEDISPLAY is not set
39929 +# CONFIG_USB_SISUSBVGA is not set
39930 +# CONFIG_USB_LD is not set
39931 +# CONFIG_USB_TRANCEVIBRATOR is not set
39932 +# CONFIG_USB_IOWARRIOR is not set
39933 +# CONFIG_USB_TEST is not set
39934 +# CONFIG_USB_GADGET is not set
39935 +# CONFIG_MMC is not set
39936 +# CONFIG_MEMSTICK is not set
39937 +# CONFIG_NEW_LEDS is not set
39938 +# CONFIG_INFINIBAND is not set
39939 +# CONFIG_EDAC is not set
39940 +CONFIG_RTC_LIB=y
39941 +CONFIG_RTC_CLASS=y
39942 +CONFIG_RTC_HCTOSYS=y
39943 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
39944 +# CONFIG_RTC_DEBUG is not set
39945 +
39946 +#
39947 +# RTC interfaces
39948 +#
39949 +CONFIG_RTC_INTF_SYSFS=y
39950 +CONFIG_RTC_INTF_PROC=y
39951 +CONFIG_RTC_INTF_DEV=y
39952 +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
39953 +# CONFIG_RTC_DRV_TEST is not set
39954 +
39955 +#
39956 +# I2C RTC drivers
39957 +#
39958 +# CONFIG_RTC_DRV_DS1307 is not set
39959 +# CONFIG_RTC_DRV_DS1374 is not set
39960 +# CONFIG_RTC_DRV_DS1672 is not set
39961 +# CONFIG_RTC_DRV_MAX6900 is not set
39962 +# CONFIG_RTC_DRV_RS5C372 is not set
39963 +# CONFIG_RTC_DRV_ISL1208 is not set
39964 +# CONFIG_RTC_DRV_X1205 is not set
39965 +# CONFIG_RTC_DRV_PCF8563 is not set
39966 +# CONFIG_RTC_DRV_PCF8583 is not set
39967 +# CONFIG_RTC_DRV_M41T80 is not set
39968 +# CONFIG_RTC_DRV_S35390A is not set
39969 +
39970 +#
39971 +# SPI RTC drivers
39972 +#
39973 +
39974 +#
39975 +# Platform RTC drivers
39976 +#
39977 +CONFIG_RTC_DRV_CMOS=y
39978 +# CONFIG_RTC_DRV_DS1511 is not set
39979 +# CONFIG_RTC_DRV_DS1553 is not set
39980 +# CONFIG_RTC_DRV_DS1742 is not set
39981 +# CONFIG_RTC_DRV_STK17TA8 is not set
39982 +# CONFIG_RTC_DRV_M48T86 is not set
39983 +# CONFIG_RTC_DRV_M48T59 is not set
39984 +# CONFIG_RTC_DRV_V3020 is not set
39985 +
39986 +#
39987 +# on-CPU RTC drivers
39988 +#
39989 +# CONFIG_DMADEVICES is not set
39990 +
39991 +#
39992 +# Userspace I/O
39993 +#
39994 +# CONFIG_UIO is not set
39995 +
39996 +#
39997 +# File systems
39998 +#
39999 +CONFIG_EXT2_FS=y
40000 +# CONFIG_EXT2_FS_XATTR is not set
40001 +# CONFIG_EXT2_FS_XIP is not set
40002 +CONFIG_EXT3_FS=y
40003 +CONFIG_EXT3_FS_XATTR=y
40004 +# CONFIG_EXT3_FS_POSIX_ACL is not set
40005 +# CONFIG_EXT3_FS_SECURITY is not set
40006 +# CONFIG_EXT4DEV_FS is not set
40007 +CONFIG_JBD=y
40008 +CONFIG_FS_MBCACHE=y
40009 +# CONFIG_REISERFS_FS is not set
40010 +# CONFIG_JFS_FS is not set
40011 +# CONFIG_FS_POSIX_ACL is not set
40012 +# CONFIG_XFS_FS is not set
40013 +# CONFIG_GFS2_FS is not set
40014 +# CONFIG_OCFS2_FS is not set
40015 +CONFIG_DNOTIFY=y
40016 +CONFIG_INOTIFY=y
40017 +CONFIG_INOTIFY_USER=y
40018 +# CONFIG_QUOTA is not set
40019 +# CONFIG_AUTOFS_FS is not set
40020 +# CONFIG_AUTOFS4_FS is not set
40021 +# CONFIG_FUSE_FS is not set
40022 +
40023 +#
40024 +# CD-ROM/DVD Filesystems
40025 +#
40026 +CONFIG_ISO9660_FS=m
40027 +CONFIG_JOLIET=y
40028 +CONFIG_ZISOFS=y
40029 +CONFIG_UDF_FS=m
40030 +CONFIG_UDF_NLS=y
40031 +
40032 +#
40033 +# DOS/FAT/NT Filesystems
40034 +#
40035 +CONFIG_FAT_FS=y
40036 +CONFIG_MSDOS_FS=m
40037 +CONFIG_VFAT_FS=y
40038 +CONFIG_FAT_DEFAULT_CODEPAGE=437
40039 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
40040 +CONFIG_NTFS_FS=y
40041 +# CONFIG_NTFS_DEBUG is not set
40042 +# CONFIG_NTFS_RW is not set
40043 +
40044 +#
40045 +# Pseudo filesystems
40046 +#
40047 +CONFIG_PROC_FS=y
40048 +CONFIG_PROC_KCORE=y
40049 +CONFIG_PROC_SYSCTL=y
40050 +CONFIG_SYSFS=y
40051 +CONFIG_TMPFS=y
40052 +# CONFIG_TMPFS_POSIX_ACL is not set
40053 +# CONFIG_HUGETLB_PAGE is not set
40054 +# CONFIG_CONFIGFS_FS is not set
40055 +
40056 +#
40057 +# Miscellaneous filesystems
40058 +#
40059 +CONFIG_ADFS_FS=m
40060 +# CONFIG_ADFS_FS_RW is not set
40061 +CONFIG_AFFS_FS=m
40062 +CONFIG_HFS_FS=m
40063 +CONFIG_HFSPLUS_FS=m
40064 +CONFIG_BEFS_FS=m
40065 +# CONFIG_BEFS_DEBUG is not set
40066 +CONFIG_BFS_FS=m
40067 +CONFIG_EFS_FS=m
40068 +CONFIG_CRAMFS=y
40069 +CONFIG_VXFS_FS=m
40070 +# CONFIG_MINIX_FS is not set
40071 +CONFIG_HPFS_FS=m
40072 +CONFIG_QNX4FS_FS=m
40073 +# CONFIG_ROMFS_FS is not set
40074 +CONFIG_SYSV_FS=m
40075 +CONFIG_UFS_FS=m
40076 +# CONFIG_UFS_FS_WRITE is not set
40077 +# CONFIG_UFS_DEBUG is not set
40078 +CONFIG_NETWORK_FILESYSTEMS=y
40079 +CONFIG_NFS_FS=y
40080 +CONFIG_NFS_V3=y
40081 +# CONFIG_NFS_V3_ACL is not set
40082 +CONFIG_NFS_V4=y
40083 +# CONFIG_NFS_DIRECTIO is not set
40084 +CONFIG_NFSD=y
40085 +# CONFIG_NFSD_V3 is not set
40086 +CONFIG_NFSD_TCP=y
40087 +CONFIG_ROOT_NFS=y
40088 +CONFIG_LOCKD=y
40089 +CONFIG_LOCKD_V4=y
40090 +CONFIG_EXPORTFS=y
40091 +CONFIG_NFS_COMMON=y
40092 +CONFIG_SUNRPC=y
40093 +CONFIG_SUNRPC_GSS=y
40094 +# CONFIG_SUNRPC_BIND34 is not set
40095 +CONFIG_RPCSEC_GSS_KRB5=y
40096 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
40097 +# CONFIG_SMB_FS is not set
40098 +# CONFIG_CIFS is not set
40099 +# CONFIG_NCP_FS is not set
40100 +# CONFIG_CODA_FS is not set
40101 +# CONFIG_AFS_FS is not set
40102 +
40103 +#
40104 +# Partition Types
40105 +#
40106 +CONFIG_PARTITION_ADVANCED=y
40107 +# CONFIG_ACORN_PARTITION is not set
40108 +# CONFIG_OSF_PARTITION is not set
40109 +# CONFIG_AMIGA_PARTITION is not set
40110 +# CONFIG_ATARI_PARTITION is not set
40111 +CONFIG_MAC_PARTITION=y
40112 +CONFIG_MSDOS_PARTITION=y
40113 +# CONFIG_BSD_DISKLABEL is not set
40114 +# CONFIG_MINIX_SUBPARTITION is not set
40115 +# CONFIG_SOLARIS_X86_PARTITION is not set
40116 +# CONFIG_UNIXWARE_DISKLABEL is not set
40117 +# CONFIG_LDM_PARTITION is not set
40118 +# CONFIG_SGI_PARTITION is not set
40119 +# CONFIG_ULTRIX_PARTITION is not set
40120 +# CONFIG_SUN_PARTITION is not set
40121 +# CONFIG_KARMA_PARTITION is not set
40122 +# CONFIG_EFI_PARTITION is not set
40123 +# CONFIG_SYSV68_PARTITION is not set
40124 +CONFIG_NLS=y
40125 +CONFIG_NLS_DEFAULT="iso8859-1"
40126 +# CONFIG_NLS_CODEPAGE_437 is not set
40127 +# CONFIG_NLS_CODEPAGE_737 is not set
40128 +# CONFIG_NLS_CODEPAGE_775 is not set
40129 +# CONFIG_NLS_CODEPAGE_850 is not set
40130 +# CONFIG_NLS_CODEPAGE_852 is not set
40131 +# CONFIG_NLS_CODEPAGE_855 is not set
40132 +# CONFIG_NLS_CODEPAGE_857 is not set
40133 +# CONFIG_NLS_CODEPAGE_860 is not set
40134 +# CONFIG_NLS_CODEPAGE_861 is not set
40135 +# CONFIG_NLS_CODEPAGE_862 is not set
40136 +# CONFIG_NLS_CODEPAGE_863 is not set
40137 +# CONFIG_NLS_CODEPAGE_864 is not set
40138 +# CONFIG_NLS_CODEPAGE_865 is not set
40139 +# CONFIG_NLS_CODEPAGE_866 is not set
40140 +# CONFIG_NLS_CODEPAGE_869 is not set
40141 +# CONFIG_NLS_CODEPAGE_936 is not set
40142 +# CONFIG_NLS_CODEPAGE_950 is not set
40143 +# CONFIG_NLS_CODEPAGE_932 is not set
40144 +# CONFIG_NLS_CODEPAGE_949 is not set
40145 +# CONFIG_NLS_CODEPAGE_874 is not set
40146 +# CONFIG_NLS_ISO8859_8 is not set
40147 +# CONFIG_NLS_CODEPAGE_1250 is not set
40148 +# CONFIG_NLS_CODEPAGE_1251 is not set
40149 +# CONFIG_NLS_ASCII is not set
40150 +# CONFIG_NLS_ISO8859_1 is not set
40151 +# CONFIG_NLS_ISO8859_2 is not set
40152 +# CONFIG_NLS_ISO8859_3 is not set
40153 +# CONFIG_NLS_ISO8859_4 is not set
40154 +# CONFIG_NLS_ISO8859_5 is not set
40155 +# CONFIG_NLS_ISO8859_6 is not set
40156 +# CONFIG_NLS_ISO8859_7 is not set
40157 +# CONFIG_NLS_ISO8859_9 is not set
40158 +# CONFIG_NLS_ISO8859_13 is not set
40159 +# CONFIG_NLS_ISO8859_14 is not set
40160 +# CONFIG_NLS_ISO8859_15 is not set
40161 +# CONFIG_NLS_KOI8_R is not set
40162 +# CONFIG_NLS_KOI8_U is not set
40163 +CONFIG_NLS_UTF8=m
40164 +# CONFIG_DLM is not set
40165 +
40166 +#
40167 +# Library routines
40168 +#
40169 +CONFIG_BITREVERSE=y
40170 +# CONFIG_CRC_CCITT is not set
40171 +# CONFIG_CRC16 is not set
40172 +# CONFIG_CRC_ITU_T is not set
40173 +CONFIG_CRC32=y
40174 +# CONFIG_CRC7 is not set
40175 +CONFIG_LIBCRC32C=m
40176 +CONFIG_ZLIB_INFLATE=y
40177 +CONFIG_PLIST=y
40178 +CONFIG_HAS_IOMEM=y
40179 +CONFIG_HAS_IOPORT=y
40180 +CONFIG_HAS_DMA=y
40181 +
40182 +#
40183 +# Kernel hacking
40184 +#
40185 +# CONFIG_PRINTK_TIME is not set
40186 +CONFIG_ENABLE_WARN_DEPRECATED=y
40187 +CONFIG_ENABLE_MUST_CHECK=y
40188 +# CONFIG_MAGIC_SYSRQ is not set
40189 +# CONFIG_UNUSED_SYMBOLS is not set
40190 +# CONFIG_DEBUG_FS is not set
40191 +# CONFIG_HEADERS_CHECK is not set
40192 +CONFIG_DEBUG_KERNEL=y
40193 +# CONFIG_DEBUG_SHIRQ is not set
40194 +CONFIG_DETECT_SOFTLOCKUP=y
40195 +CONFIG_SCHED_DEBUG=y
40196 +# CONFIG_SCHEDSTATS is not set
40197 +# CONFIG_TIMER_STATS is not set
40198 +# CONFIG_SLUB_DEBUG_ON is not set
40199 +# CONFIG_SLUB_STATS is not set
40200 +# CONFIG_DEBUG_RT_MUTEXES is not set
40201 +# CONFIG_RT_MUTEX_TESTER is not set
40202 +# CONFIG_DEBUG_SPINLOCK is not set
40203 +# CONFIG_DEBUG_MUTEXES is not set
40204 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
40205 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
40206 +# CONFIG_DEBUG_KOBJECT is not set
40207 +# CONFIG_DEBUG_HIGHMEM is not set
40208 +# CONFIG_DEBUG_BUGVERBOSE is not set
40209 +CONFIG_DEBUG_INFO=y
40210 +# CONFIG_DEBUG_VM is not set
40211 +# CONFIG_DEBUG_LIST is not set
40212 +# CONFIG_DEBUG_SG is not set
40213 +# CONFIG_BOOT_PRINTK_DELAY is not set
40214 +# CONFIG_RCU_TORTURE_TEST is not set
40215 +# CONFIG_BACKTRACE_SELF_TEST is not set
40216 +# CONFIG_FAULT_INJECTION is not set
40217 +# CONFIG_SAMPLES is not set
40218 +# CONFIG_DEBUG_STACKOVERFLOW is not set
40219 +# CONFIG_DEBUG_STACK_USAGE is not set
40220 +# CONFIG_DEBUG_PAGEALLOC is not set
40221 +# CONFIG_DEBUGGER is not set
40222 +# CONFIG_BDI_SWITCH is not set
40223 +# CONFIG_PPC_EARLY_DEBUG is not set
40224 +
40225 +#
40226 +# Security options
40227 +#
40228 +# CONFIG_KEYS is not set
40229 +# CONFIG_SECURITY is not set
40230 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
40231 +CONFIG_CRYPTO=y
40232 +CONFIG_CRYPTO_ALGAPI=y
40233 +CONFIG_CRYPTO_BLKCIPHER=y
40234 +# CONFIG_CRYPTO_SEQIV is not set
40235 +CONFIG_CRYPTO_HASH=y
40236 +CONFIG_CRYPTO_MANAGER=y
40237 +CONFIG_CRYPTO_HMAC=y
40238 +# CONFIG_CRYPTO_XCBC is not set
40239 +# CONFIG_CRYPTO_NULL is not set
40240 +# CONFIG_CRYPTO_MD4 is not set
40241 +CONFIG_CRYPTO_MD5=y
40242 +CONFIG_CRYPTO_SHA1=m
40243 +# CONFIG_CRYPTO_SHA256 is not set
40244 +# CONFIG_CRYPTO_SHA512 is not set
40245 +# CONFIG_CRYPTO_WP512 is not set
40246 +# CONFIG_CRYPTO_TGR192 is not set
40247 +# CONFIG_CRYPTO_GF128MUL is not set
40248 +# CONFIG_CRYPTO_ECB is not set
40249 +CONFIG_CRYPTO_CBC=y
40250 +CONFIG_CRYPTO_PCBC=m
40251 +# CONFIG_CRYPTO_LRW is not set
40252 +# CONFIG_CRYPTO_XTS is not set
40253 +# CONFIG_CRYPTO_CTR is not set
40254 +# CONFIG_CRYPTO_GCM is not set
40255 +# CONFIG_CRYPTO_CCM is not set
40256 +# CONFIG_CRYPTO_CRYPTD is not set
40257 +CONFIG_CRYPTO_DES=y
40258 +# CONFIG_CRYPTO_FCRYPT is not set
40259 +# CONFIG_CRYPTO_BLOWFISH is not set
40260 +# CONFIG_CRYPTO_TWOFISH is not set
40261 +# CONFIG_CRYPTO_SERPENT is not set
40262 +# CONFIG_CRYPTO_AES is not set
40263 +# CONFIG_CRYPTO_CAST5 is not set
40264 +# CONFIG_CRYPTO_CAST6 is not set
40265 +# CONFIG_CRYPTO_TEA is not set
40266 +# CONFIG_CRYPTO_ARC4 is not set
40267 +# CONFIG_CRYPTO_KHAZAD is not set
40268 +# CONFIG_CRYPTO_ANUBIS is not set
40269 +# CONFIG_CRYPTO_SEED is not set
40270 +# CONFIG_CRYPTO_SALSA20 is not set
40271 +# CONFIG_CRYPTO_DEFLATE is not set
40272 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
40273 +# CONFIG_CRYPTO_CRC32C is not set
40274 +# CONFIG_CRYPTO_CAMELLIA is not set
40275 +# CONFIG_CRYPTO_TEST is not set
40276 +# CONFIG_CRYPTO_AUTHENC is not set
40277 +# CONFIG_CRYPTO_LZO is not set
40278 +CONFIG_CRYPTO_HW=y
40279 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
40280 +# CONFIG_PPC_CLOCK is not set
40281 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig
40282 ===================================================================
40283 --- /dev/null
40284 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig
40285 @@ -0,0 +1,935 @@
40286 +#
40287 +# Automatically generated make config: don't edit
40288 +# Linux kernel version: 2.6.25-rc6
40289 +# Mon Mar 24 08:48:30 2008
40290 +#
40291 +# CONFIG_PPC64 is not set
40292 +
40293 +#
40294 +# Processor support
40295 +#
40296 +# CONFIG_6xx is not set
40297 +CONFIG_PPC_85xx=y
40298 +# CONFIG_PPC_8xx is not set
40299 +# CONFIG_40x is not set
40300 +# CONFIG_44x is not set
40301 +# CONFIG_E200 is not set
40302 +CONFIG_E500=y
40303 +CONFIG_BOOKE=y
40304 +CONFIG_FSL_BOOKE=y
40305 +CONFIG_FSL_EMB_PERFMON=y
40306 +# CONFIG_PHYS_64BIT is not set
40307 +CONFIG_SPE=y
40308 +# CONFIG_PPC_MM_SLICES is not set
40309 +CONFIG_PPC32=y
40310 +CONFIG_WORD_SIZE=32
40311 +CONFIG_PPC_MERGE=y
40312 +CONFIG_MMU=y
40313 +CONFIG_GENERIC_CMOS_UPDATE=y
40314 +CONFIG_GENERIC_TIME=y
40315 +CONFIG_GENERIC_TIME_VSYSCALL=y
40316 +CONFIG_GENERIC_CLOCKEVENTS=y
40317 +CONFIG_GENERIC_HARDIRQS=y
40318 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
40319 +CONFIG_IRQ_PER_CPU=y
40320 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
40321 +CONFIG_ARCH_HAS_ILOG2_U32=y
40322 +CONFIG_GENERIC_HWEIGHT=y
40323 +CONFIG_GENERIC_CALIBRATE_DELAY=y
40324 +CONFIG_GENERIC_FIND_NEXT_BIT=y
40325 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
40326 +CONFIG_PPC=y
40327 +CONFIG_EARLY_PRINTK=y
40328 +CONFIG_GENERIC_NVRAM=y
40329 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
40330 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
40331 +CONFIG_PPC_OF=y
40332 +CONFIG_OF=y
40333 +CONFIG_PPC_UDBG_16550=y
40334 +# CONFIG_GENERIC_TBSYNC is not set
40335 +CONFIG_AUDIT_ARCH=y
40336 +CONFIG_GENERIC_BUG=y
40337 +CONFIG_DEFAULT_UIMAGE=y
40338 +# CONFIG_PPC_DCR_NATIVE is not set
40339 +# CONFIG_PPC_DCR_MMIO is not set
40340 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
40341 +
40342 +#
40343 +# General setup
40344 +#
40345 +CONFIG_EXPERIMENTAL=y
40346 +CONFIG_BROKEN_ON_SMP=y
40347 +CONFIG_INIT_ENV_ARG_LIMIT=32
40348 +CONFIG_LOCALVERSION=""
40349 +CONFIG_LOCALVERSION_AUTO=y
40350 +CONFIG_SWAP=y
40351 +CONFIG_SYSVIPC=y
40352 +CONFIG_SYSVIPC_SYSCTL=y
40353 +# CONFIG_POSIX_MQUEUE is not set
40354 +# CONFIG_BSD_PROCESS_ACCT is not set
40355 +# CONFIG_TASKSTATS is not set
40356 +# CONFIG_AUDIT is not set
40357 +# CONFIG_IKCONFIG is not set
40358 +CONFIG_LOG_BUF_SHIFT=14
40359 +# CONFIG_CGROUPS is not set
40360 +CONFIG_GROUP_SCHED=y
40361 +# CONFIG_FAIR_GROUP_SCHED is not set
40362 +# CONFIG_RT_GROUP_SCHED is not set
40363 +CONFIG_USER_SCHED=y
40364 +# CONFIG_CGROUP_SCHED is not set
40365 +CONFIG_SYSFS_DEPRECATED=y
40366 +CONFIG_SYSFS_DEPRECATED_V2=y
40367 +# CONFIG_RELAY is not set
40368 +# CONFIG_NAMESPACES is not set
40369 +CONFIG_BLK_DEV_INITRD=y
40370 +CONFIG_INITRAMFS_SOURCE=""
40371 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
40372 +CONFIG_SYSCTL=y
40373 +CONFIG_EMBEDDED=y
40374 +CONFIG_SYSCTL_SYSCALL=y
40375 +CONFIG_KALLSYMS=y
40376 +# CONFIG_KALLSYMS_ALL is not set
40377 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
40378 +CONFIG_HOTPLUG=y
40379 +CONFIG_PRINTK=y
40380 +CONFIG_BUG=y
40381 +CONFIG_ELF_CORE=y
40382 +CONFIG_COMPAT_BRK=y
40383 +CONFIG_BASE_FULL=y
40384 +CONFIG_FUTEX=y
40385 +CONFIG_ANON_INODES=y
40386 +CONFIG_EPOLL=y
40387 +CONFIG_SIGNALFD=y
40388 +CONFIG_TIMERFD=y
40389 +CONFIG_EVENTFD=y
40390 +CONFIG_SHMEM=y
40391 +CONFIG_VM_EVENT_COUNTERS=y
40392 +CONFIG_SLUB_DEBUG=y
40393 +# CONFIG_SLAB is not set
40394 +CONFIG_SLUB=y
40395 +# CONFIG_SLOB is not set
40396 +# CONFIG_PROFILING is not set
40397 +# CONFIG_MARKERS is not set
40398 +CONFIG_HAVE_OPROFILE=y
40399 +CONFIG_HAVE_KPROBES=y
40400 +CONFIG_HAVE_KRETPROBES=y
40401 +CONFIG_PROC_PAGE_MONITOR=y
40402 +CONFIG_SLABINFO=y
40403 +CONFIG_RT_MUTEXES=y
40404 +# CONFIG_TINY_SHMEM is not set
40405 +CONFIG_BASE_SMALL=0
40406 +# CONFIG_MODULES is not set
40407 +CONFIG_BLOCK=y
40408 +# CONFIG_LBD is not set
40409 +# CONFIG_BLK_DEV_IO_TRACE is not set
40410 +# CONFIG_LSF is not set
40411 +# CONFIG_BLK_DEV_BSG is not set
40412 +
40413 +#
40414 +# IO Schedulers
40415 +#
40416 +CONFIG_IOSCHED_NOOP=y
40417 +CONFIG_IOSCHED_AS=y
40418 +CONFIG_IOSCHED_DEADLINE=y
40419 +CONFIG_IOSCHED_CFQ=y
40420 +CONFIG_DEFAULT_AS=y
40421 +# CONFIG_DEFAULT_DEADLINE is not set
40422 +# CONFIG_DEFAULT_CFQ is not set
40423 +# CONFIG_DEFAULT_NOOP is not set
40424 +CONFIG_DEFAULT_IOSCHED="anticipatory"
40425 +CONFIG_CLASSIC_RCU=y
40426 +
40427 +#
40428 +# Platform support
40429 +#
40430 +# CONFIG_PPC_MPC512x is not set
40431 +# CONFIG_PPC_MPC5121 is not set
40432 +# CONFIG_PPC_CELL is not set
40433 +# CONFIG_PPC_CELL_NATIVE is not set
40434 +# CONFIG_PQ2ADS is not set
40435 +CONFIG_MPC85xx=y
40436 +# CONFIG_MPC8540_ADS is not set
40437 +# CONFIG_MPC8560_ADS is not set
40438 +CONFIG_MPC85xx_CDS=y
40439 +# CONFIG_MPC85xx_MDS is not set
40440 +# CONFIG_MPC85xx_DS is not set
40441 +# CONFIG_STX_GP3 is not set
40442 +# CONFIG_TQM8540 is not set
40443 +# CONFIG_TQM8541 is not set
40444 +# CONFIG_TQM8555 is not set
40445 +# CONFIG_TQM8560 is not set
40446 +# CONFIG_SBC8548 is not set
40447 +# CONFIG_SBC8560 is not set
40448 +# CONFIG_IPIC is not set
40449 +CONFIG_MPIC=y
40450 +# CONFIG_MPIC_WEIRD is not set
40451 +CONFIG_PPC_I8259=y
40452 +# CONFIG_PPC_RTAS is not set
40453 +# CONFIG_MMIO_NVRAM is not set
40454 +# CONFIG_PPC_MPC106 is not set
40455 +# CONFIG_PPC_970_NAP is not set
40456 +# CONFIG_PPC_INDIRECT_IO is not set
40457 +# CONFIG_GENERIC_IOMAP is not set
40458 +# CONFIG_CPU_FREQ is not set
40459 +# CONFIG_CPM2 is not set
40460 +# CONFIG_FSL_ULI1575 is not set
40461 +
40462 +#
40463 +# Kernel options
40464 +#
40465 +# CONFIG_HIGHMEM is not set
40466 +CONFIG_TICK_ONESHOT=y
40467 +CONFIG_NO_HZ=y
40468 +CONFIG_HIGH_RES_TIMERS=y
40469 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
40470 +# CONFIG_HZ_100 is not set
40471 +CONFIG_HZ_250=y
40472 +# CONFIG_HZ_300 is not set
40473 +# CONFIG_HZ_1000 is not set
40474 +CONFIG_HZ=250
40475 +# CONFIG_SCHED_HRTICK is not set
40476 +CONFIG_PREEMPT_NONE=y
40477 +# CONFIG_PREEMPT_VOLUNTARY is not set
40478 +# CONFIG_PREEMPT is not set
40479 +CONFIG_BINFMT_ELF=y
40480 +CONFIG_BINFMT_MISC=y
40481 +CONFIG_MATH_EMULATION=y
40482 +# CONFIG_IOMMU_HELPER is not set
40483 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
40484 +CONFIG_ARCH_HAS_WALK_MEMORY=y
40485 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
40486 +CONFIG_ARCH_FLATMEM_ENABLE=y
40487 +CONFIG_ARCH_POPULATES_NODE_MAP=y
40488 +CONFIG_SELECT_MEMORY_MODEL=y
40489 +CONFIG_FLATMEM_MANUAL=y
40490 +# CONFIG_DISCONTIGMEM_MANUAL is not set
40491 +# CONFIG_SPARSEMEM_MANUAL is not set
40492 +CONFIG_FLATMEM=y
40493 +CONFIG_FLAT_NODE_MEM_MAP=y
40494 +# CONFIG_SPARSEMEM_STATIC is not set
40495 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
40496 +CONFIG_SPLIT_PTLOCK_CPUS=4
40497 +# CONFIG_RESOURCES_64BIT is not set
40498 +CONFIG_ZONE_DMA_FLAG=1
40499 +CONFIG_BOUNCE=y
40500 +CONFIG_VIRT_TO_BUS=y
40501 +CONFIG_PROC_DEVICETREE=y
40502 +# CONFIG_CMDLINE_BOOL is not set
40503 +# CONFIG_PM is not set
40504 +# CONFIG_SECCOMP is not set
40505 +CONFIG_ISA_DMA_API=y
40506 +
40507 +#
40508 +# Bus options
40509 +#
40510 +CONFIG_ZONE_DMA=y
40511 +CONFIG_PPC_INDIRECT_PCI=y
40512 +CONFIG_FSL_SOC=y
40513 +CONFIG_FSL_PCI=y
40514 +CONFIG_PCI=y
40515 +CONFIG_PCI_DOMAINS=y
40516 +CONFIG_PCI_SYSCALL=y
40517 +# CONFIG_PCIEPORTBUS is not set
40518 +CONFIG_ARCH_SUPPORTS_MSI=y
40519 +# CONFIG_PCI_MSI is not set
40520 +CONFIG_PCI_LEGACY=y
40521 +# CONFIG_PCI_DEBUG is not set
40522 +# CONFIG_PCCARD is not set
40523 +# CONFIG_HOTPLUG_PCI is not set
40524 +
40525 +#
40526 +# Advanced setup
40527 +#
40528 +# CONFIG_ADVANCED_OPTIONS is not set
40529 +
40530 +#
40531 +# Default settings for advanced configuration options are used
40532 +#
40533 +CONFIG_HIGHMEM_START=0xfe000000
40534 +CONFIG_LOWMEM_SIZE=0x30000000
40535 +CONFIG_KERNEL_START=0xc0000000
40536 +CONFIG_TASK_SIZE=0xc0000000
40537 +CONFIG_BOOT_LOAD=0x00800000
40538 +
40539 +#
40540 +# Networking
40541 +#
40542 +CONFIG_NET=y
40543 +
40544 +#
40545 +# Networking options
40546 +#
40547 +CONFIG_PACKET=y
40548 +# CONFIG_PACKET_MMAP is not set
40549 +CONFIG_UNIX=y
40550 +CONFIG_XFRM=y
40551 +CONFIG_XFRM_USER=y
40552 +# CONFIG_XFRM_SUB_POLICY is not set
40553 +# CONFIG_XFRM_MIGRATE is not set
40554 +# CONFIG_XFRM_STATISTICS is not set
40555 +# CONFIG_NET_KEY is not set
40556 +CONFIG_INET=y
40557 +CONFIG_IP_MULTICAST=y
40558 +# CONFIG_IP_ADVANCED_ROUTER is not set
40559 +CONFIG_IP_FIB_HASH=y
40560 +CONFIG_IP_PNP=y
40561 +CONFIG_IP_PNP_DHCP=y
40562 +CONFIG_IP_PNP_BOOTP=y
40563 +# CONFIG_IP_PNP_RARP is not set
40564 +# CONFIG_NET_IPIP is not set
40565 +# CONFIG_NET_IPGRE is not set
40566 +# CONFIG_IP_MROUTE is not set
40567 +# CONFIG_ARPD is not set
40568 +CONFIG_SYN_COOKIES=y
40569 +# CONFIG_INET_AH is not set
40570 +# CONFIG_INET_ESP is not set
40571 +# CONFIG_INET_IPCOMP is not set
40572 +# CONFIG_INET_XFRM_TUNNEL is not set
40573 +# CONFIG_INET_TUNNEL is not set
40574 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
40575 +CONFIG_INET_XFRM_MODE_TUNNEL=y
40576 +CONFIG_INET_XFRM_MODE_BEET=y
40577 +# CONFIG_INET_LRO is not set
40578 +CONFIG_INET_DIAG=y
40579 +CONFIG_INET_TCP_DIAG=y
40580 +# CONFIG_TCP_CONG_ADVANCED is not set
40581 +CONFIG_TCP_CONG_CUBIC=y
40582 +CONFIG_DEFAULT_TCP_CONG="cubic"
40583 +# CONFIG_TCP_MD5SIG is not set
40584 +# CONFIG_IPV6 is not set
40585 +# CONFIG_INET6_XFRM_TUNNEL is not set
40586 +# CONFIG_INET6_TUNNEL is not set
40587 +# CONFIG_NETWORK_SECMARK is not set
40588 +# CONFIG_NETFILTER is not set
40589 +# CONFIG_IP_DCCP is not set
40590 +# CONFIG_IP_SCTP is not set
40591 +# CONFIG_TIPC is not set
40592 +# CONFIG_ATM is not set
40593 +# CONFIG_BRIDGE is not set
40594 +# CONFIG_VLAN_8021Q is not set
40595 +# CONFIG_DECNET is not set
40596 +# CONFIG_LLC2 is not set
40597 +# CONFIG_IPX is not set
40598 +# CONFIG_ATALK is not set
40599 +# CONFIG_X25 is not set
40600 +# CONFIG_LAPB is not set
40601 +# CONFIG_ECONET is not set
40602 +# CONFIG_WAN_ROUTER is not set
40603 +# CONFIG_NET_SCHED is not set
40604 +
40605 +#
40606 +# Network testing
40607 +#
40608 +# CONFIG_NET_PKTGEN is not set
40609 +# CONFIG_HAMRADIO is not set
40610 +# CONFIG_CAN is not set
40611 +# CONFIG_IRDA is not set
40612 +# CONFIG_BT is not set
40613 +# CONFIG_AF_RXRPC is not set
40614 +
40615 +#
40616 +# Wireless
40617 +#
40618 +# CONFIG_CFG80211 is not set
40619 +# CONFIG_WIRELESS_EXT is not set
40620 +# CONFIG_MAC80211 is not set
40621 +# CONFIG_IEEE80211 is not set
40622 +# CONFIG_RFKILL is not set
40623 +# CONFIG_NET_9P is not set
40624 +
40625 +#
40626 +# Device Drivers
40627 +#
40628 +
40629 +#
40630 +# Generic Driver Options
40631 +#
40632 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
40633 +CONFIG_STANDALONE=y
40634 +CONFIG_PREVENT_FIRMWARE_BUILD=y
40635 +# CONFIG_FW_LOADER is not set
40636 +# CONFIG_DEBUG_DRIVER is not set
40637 +# CONFIG_DEBUG_DEVRES is not set
40638 +# CONFIG_SYS_HYPERVISOR is not set
40639 +# CONFIG_CONNECTOR is not set
40640 +# CONFIG_MTD is not set
40641 +CONFIG_OF_DEVICE=y
40642 +# CONFIG_PARPORT is not set
40643 +CONFIG_BLK_DEV=y
40644 +# CONFIG_BLK_DEV_FD is not set
40645 +# CONFIG_BLK_CPQ_DA is not set
40646 +# CONFIG_BLK_CPQ_CISS_DA is not set
40647 +# CONFIG_BLK_DEV_DAC960 is not set
40648 +# CONFIG_BLK_DEV_UMEM is not set
40649 +# CONFIG_BLK_DEV_COW_COMMON is not set
40650 +CONFIG_BLK_DEV_LOOP=y
40651 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
40652 +# CONFIG_BLK_DEV_NBD is not set
40653 +# CONFIG_BLK_DEV_SX8 is not set
40654 +CONFIG_BLK_DEV_RAM=y
40655 +CONFIG_BLK_DEV_RAM_COUNT=16
40656 +CONFIG_BLK_DEV_RAM_SIZE=32768
40657 +# CONFIG_BLK_DEV_XIP is not set
40658 +# CONFIG_CDROM_PKTCDVD is not set
40659 +# CONFIG_ATA_OVER_ETH is not set
40660 +CONFIG_MISC_DEVICES=y
40661 +# CONFIG_PHANTOM is not set
40662 +# CONFIG_EEPROM_93CX6 is not set
40663 +# CONFIG_SGI_IOC4 is not set
40664 +# CONFIG_TIFM_CORE is not set
40665 +# CONFIG_ENCLOSURE_SERVICES is not set
40666 +CONFIG_HAVE_IDE=y
40667 +CONFIG_IDE=y
40668 +CONFIG_IDE_MAX_HWIFS=4
40669 +CONFIG_BLK_DEV_IDE=y
40670 +
40671 +#
40672 +# Please see Documentation/ide/ide.txt for help/info on IDE drives
40673 +#
40674 +# CONFIG_BLK_DEV_IDE_SATA is not set
40675 +# CONFIG_BLK_DEV_IDEDISK is not set
40676 +# CONFIG_IDEDISK_MULTI_MODE is not set
40677 +# CONFIG_BLK_DEV_IDECD is not set
40678 +# CONFIG_BLK_DEV_IDETAPE is not set
40679 +# CONFIG_BLK_DEV_IDEFLOPPY is not set
40680 +# CONFIG_IDE_TASK_IOCTL is not set
40681 +CONFIG_IDE_PROC_FS=y
40682 +
40683 +#
40684 +# IDE chipset support/bugfixes
40685 +#
40686 +CONFIG_IDE_GENERIC=y
40687 +# CONFIG_BLK_DEV_PLATFORM is not set
40688 +CONFIG_BLK_DEV_IDEDMA_SFF=y
40689 +
40690 +#
40691 +# PCI IDE chipsets support
40692 +#
40693 +CONFIG_BLK_DEV_IDEPCI=y
40694 +CONFIG_IDEPCI_PCIBUS_ORDER=y
40695 +# CONFIG_BLK_DEV_OFFBOARD is not set
40696 +CONFIG_BLK_DEV_GENERIC=y
40697 +# CONFIG_BLK_DEV_OPTI621 is not set
40698 +CONFIG_BLK_DEV_IDEDMA_PCI=y
40699 +# CONFIG_BLK_DEV_AEC62XX is not set
40700 +# CONFIG_BLK_DEV_ALI15X3 is not set
40701 +# CONFIG_BLK_DEV_AMD74XX is not set
40702 +# CONFIG_BLK_DEV_CMD64X is not set
40703 +# CONFIG_BLK_DEV_TRIFLEX is not set
40704 +# CONFIG_BLK_DEV_CY82C693 is not set
40705 +# CONFIG_BLK_DEV_CS5520 is not set
40706 +# CONFIG_BLK_DEV_CS5530 is not set
40707 +# CONFIG_BLK_DEV_HPT34X is not set
40708 +# CONFIG_BLK_DEV_HPT366 is not set
40709 +# CONFIG_BLK_DEV_JMICRON is not set
40710 +# CONFIG_BLK_DEV_SC1200 is not set
40711 +# CONFIG_BLK_DEV_PIIX is not set
40712 +# CONFIG_BLK_DEV_IT8213 is not set
40713 +# CONFIG_BLK_DEV_IT821X is not set
40714 +# CONFIG_BLK_DEV_NS87415 is not set
40715 +# CONFIG_BLK_DEV_PDC202XX_OLD is not set
40716 +# CONFIG_BLK_DEV_PDC202XX_NEW is not set
40717 +# CONFIG_BLK_DEV_SVWKS is not set
40718 +# CONFIG_BLK_DEV_SIIMAGE is not set
40719 +# CONFIG_BLK_DEV_SL82C105 is not set
40720 +# CONFIG_BLK_DEV_SLC90E66 is not set
40721 +# CONFIG_BLK_DEV_TRM290 is not set
40722 +CONFIG_BLK_DEV_VIA82CXXX=y
40723 +# CONFIG_BLK_DEV_TC86C001 is not set
40724 +CONFIG_BLK_DEV_IDEDMA=y
40725 +CONFIG_IDE_ARCH_OBSOLETE_INIT=y
40726 +# CONFIG_BLK_DEV_HD is not set
40727 +
40728 +#
40729 +# SCSI device support
40730 +#
40731 +# CONFIG_RAID_ATTRS is not set
40732 +# CONFIG_SCSI is not set
40733 +# CONFIG_SCSI_DMA is not set
40734 +# CONFIG_SCSI_NETLINK is not set
40735 +# CONFIG_ATA is not set
40736 +# CONFIG_MD is not set
40737 +# CONFIG_FUSION is not set
40738 +
40739 +#
40740 +# IEEE 1394 (FireWire) support
40741 +#
40742 +# CONFIG_FIREWIRE is not set
40743 +# CONFIG_IEEE1394 is not set
40744 +# CONFIG_I2O is not set
40745 +# CONFIG_MACINTOSH_DRIVERS is not set
40746 +CONFIG_NETDEVICES=y
40747 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
40748 +# CONFIG_DUMMY is not set
40749 +# CONFIG_BONDING is not set
40750 +# CONFIG_MACVLAN is not set
40751 +# CONFIG_EQUALIZER is not set
40752 +# CONFIG_TUN is not set
40753 +# CONFIG_VETH is not set
40754 +# CONFIG_ARCNET is not set
40755 +CONFIG_PHYLIB=y
40756 +
40757 +#
40758 +# MII PHY device drivers
40759 +#
40760 +# CONFIG_MARVELL_PHY is not set
40761 +# CONFIG_DAVICOM_PHY is not set
40762 +# CONFIG_QSEMI_PHY is not set
40763 +# CONFIG_LXT_PHY is not set
40764 +# CONFIG_CICADA_PHY is not set
40765 +# CONFIG_VITESSE_PHY is not set
40766 +# CONFIG_SMSC_PHY is not set
40767 +# CONFIG_BROADCOM_PHY is not set
40768 +# CONFIG_ICPLUS_PHY is not set
40769 +# CONFIG_REALTEK_PHY is not set
40770 +# CONFIG_FIXED_PHY is not set
40771 +# CONFIG_MDIO_BITBANG is not set
40772 +CONFIG_NET_ETHERNET=y
40773 +CONFIG_MII=y
40774 +# CONFIG_HAPPYMEAL is not set
40775 +# CONFIG_SUNGEM is not set
40776 +# CONFIG_CASSINI is not set
40777 +# CONFIG_NET_VENDOR_3COM is not set
40778 +# CONFIG_NET_TULIP is not set
40779 +# CONFIG_HP100 is not set
40780 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
40781 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
40782 +# CONFIG_IBM_NEW_EMAC_TAH is not set
40783 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
40784 +# CONFIG_NET_PCI is not set
40785 +# CONFIG_B44 is not set
40786 +CONFIG_NETDEV_1000=y
40787 +# CONFIG_ACENIC is not set
40788 +# CONFIG_DL2K is not set
40789 +CONFIG_E1000=y
40790 +CONFIG_E1000_NAPI=y
40791 +# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set
40792 +# CONFIG_E1000E is not set
40793 +# CONFIG_E1000E_ENABLED is not set
40794 +# CONFIG_IP1000 is not set
40795 +# CONFIG_IGB is not set
40796 +# CONFIG_NS83820 is not set
40797 +# CONFIG_HAMACHI is not set
40798 +# CONFIG_YELLOWFIN is not set
40799 +# CONFIG_R8169 is not set
40800 +# CONFIG_SIS190 is not set
40801 +# CONFIG_SKGE is not set
40802 +# CONFIG_SKY2 is not set
40803 +# CONFIG_SK98LIN is not set
40804 +# CONFIG_VIA_VELOCITY is not set
40805 +# CONFIG_TIGON3 is not set
40806 +# CONFIG_BNX2 is not set
40807 +CONFIG_GIANFAR=y
40808 +CONFIG_GFAR_NAPI=y
40809 +# CONFIG_QLA3XXX is not set
40810 +# CONFIG_ATL1 is not set
40811 +CONFIG_NETDEV_10000=y
40812 +# CONFIG_CHELSIO_T1 is not set
40813 +# CONFIG_CHELSIO_T3 is not set
40814 +# CONFIG_IXGBE is not set
40815 +# CONFIG_IXGB is not set
40816 +# CONFIG_S2IO is not set
40817 +# CONFIG_MYRI10GE is not set
40818 +# CONFIG_NETXEN_NIC is not set
40819 +# CONFIG_NIU is not set
40820 +# CONFIG_MLX4_CORE is not set
40821 +# CONFIG_TEHUTI is not set
40822 +# CONFIG_BNX2X is not set
40823 +# CONFIG_TR is not set
40824 +
40825 +#
40826 +# Wireless LAN
40827 +#
40828 +# CONFIG_WLAN_PRE80211 is not set
40829 +# CONFIG_WLAN_80211 is not set
40830 +# CONFIG_WAN is not set
40831 +# CONFIG_FDDI is not set
40832 +# CONFIG_HIPPI is not set
40833 +# CONFIG_PPP is not set
40834 +# CONFIG_SLIP is not set
40835 +# CONFIG_NETCONSOLE is not set
40836 +# CONFIG_NETPOLL is not set
40837 +# CONFIG_NET_POLL_CONTROLLER is not set
40838 +# CONFIG_ISDN is not set
40839 +# CONFIG_PHONE is not set
40840 +
40841 +#
40842 +# Input device support
40843 +#
40844 +CONFIG_INPUT=y
40845 +# CONFIG_INPUT_FF_MEMLESS is not set
40846 +# CONFIG_INPUT_POLLDEV is not set
40847 +
40848 +#
40849 +# Userland interfaces
40850 +#
40851 +# CONFIG_INPUT_MOUSEDEV is not set
40852 +# CONFIG_INPUT_JOYDEV is not set
40853 +# CONFIG_INPUT_EVDEV is not set
40854 +# CONFIG_INPUT_EVBUG is not set
40855 +
40856 +#
40857 +# Input Device Drivers
40858 +#
40859 +# CONFIG_INPUT_KEYBOARD is not set
40860 +# CONFIG_INPUT_MOUSE is not set
40861 +# CONFIG_INPUT_JOYSTICK is not set
40862 +# CONFIG_INPUT_TABLET is not set
40863 +# CONFIG_INPUT_TOUCHSCREEN is not set
40864 +# CONFIG_INPUT_MISC is not set
40865 +
40866 +#
40867 +# Hardware I/O ports
40868 +#
40869 +# CONFIG_SERIO is not set
40870 +# CONFIG_GAMEPORT is not set
40871 +
40872 +#
40873 +# Character devices
40874 +#
40875 +# CONFIG_VT is not set
40876 +# CONFIG_SERIAL_NONSTANDARD is not set
40877 +# CONFIG_NOZOMI is not set
40878 +
40879 +#
40880 +# Serial drivers
40881 +#
40882 +CONFIG_SERIAL_8250=y
40883 +CONFIG_SERIAL_8250_CONSOLE=y
40884 +CONFIG_SERIAL_8250_PCI=y
40885 +CONFIG_SERIAL_8250_NR_UARTS=4
40886 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
40887 +# CONFIG_SERIAL_8250_EXTENDED is not set
40888 +CONFIG_SERIAL_8250_SHARE_IRQ=y
40889 +
40890 +#
40891 +# Non-8250 serial port support
40892 +#
40893 +# CONFIG_SERIAL_UARTLITE is not set
40894 +CONFIG_SERIAL_CORE=y
40895 +CONFIG_SERIAL_CORE_CONSOLE=y
40896 +# CONFIG_SERIAL_JSM is not set
40897 +# CONFIG_SERIAL_OF_PLATFORM is not set
40898 +CONFIG_UNIX98_PTYS=y
40899 +CONFIG_LEGACY_PTYS=y
40900 +CONFIG_LEGACY_PTY_COUNT=256
40901 +# CONFIG_IPMI_HANDLER is not set
40902 +# CONFIG_HW_RANDOM is not set
40903 +# CONFIG_NVRAM is not set
40904 +CONFIG_GEN_RTC=y
40905 +# CONFIG_GEN_RTC_X is not set
40906 +# CONFIG_R3964 is not set
40907 +# CONFIG_APPLICOM is not set
40908 +# CONFIG_RAW_DRIVER is not set
40909 +# CONFIG_TCG_TPM is not set
40910 +CONFIG_DEVPORT=y
40911 +# CONFIG_I2C is not set
40912 +
40913 +#
40914 +# SPI support
40915 +#
40916 +# CONFIG_SPI is not set
40917 +# CONFIG_SPI_MASTER is not set
40918 +# CONFIG_W1 is not set
40919 +# CONFIG_POWER_SUPPLY is not set
40920 +CONFIG_HWMON=y
40921 +# CONFIG_HWMON_VID is not set
40922 +# CONFIG_SENSORS_I5K_AMB is not set
40923 +# CONFIG_SENSORS_F71805F is not set
40924 +# CONFIG_SENSORS_F71882FG is not set
40925 +# CONFIG_SENSORS_IT87 is not set
40926 +# CONFIG_SENSORS_PC87360 is not set
40927 +# CONFIG_SENSORS_PC87427 is not set
40928 +# CONFIG_SENSORS_SIS5595 is not set
40929 +# CONFIG_SENSORS_SMSC47M1 is not set
40930 +# CONFIG_SENSORS_SMSC47B397 is not set
40931 +# CONFIG_SENSORS_VIA686A is not set
40932 +# CONFIG_SENSORS_VT1211 is not set
40933 +# CONFIG_SENSORS_VT8231 is not set
40934 +# CONFIG_SENSORS_W83627HF is not set
40935 +# CONFIG_SENSORS_W83627EHF is not set
40936 +# CONFIG_HWMON_DEBUG_CHIP is not set
40937 +# CONFIG_THERMAL is not set
40938 +# CONFIG_WATCHDOG is not set
40939 +
40940 +#
40941 +# Sonics Silicon Backplane
40942 +#
40943 +CONFIG_SSB_POSSIBLE=y
40944 +# CONFIG_SSB is not set
40945 +
40946 +#
40947 +# Multifunction device drivers
40948 +#
40949 +# CONFIG_MFD_SM501 is not set
40950 +
40951 +#
40952 +# Multimedia devices
40953 +#
40954 +# CONFIG_VIDEO_DEV is not set
40955 +# CONFIG_DVB_CORE is not set
40956 +CONFIG_DAB=y
40957 +
40958 +#
40959 +# Graphics support
40960 +#
40961 +# CONFIG_AGP is not set
40962 +# CONFIG_DRM is not set
40963 +# CONFIG_VGASTATE is not set
40964 +CONFIG_VIDEO_OUTPUT_CONTROL=y
40965 +# CONFIG_FB is not set
40966 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
40967 +
40968 +#
40969 +# Display device support
40970 +#
40971 +# CONFIG_DISPLAY_SUPPORT is not set
40972 +
40973 +#
40974 +# Sound
40975 +#
40976 +# CONFIG_SOUND is not set
40977 +CONFIG_HID_SUPPORT=y
40978 +CONFIG_HID=y
40979 +# CONFIG_HID_DEBUG is not set
40980 +# CONFIG_HIDRAW is not set
40981 +CONFIG_USB_SUPPORT=y
40982 +CONFIG_USB_ARCH_HAS_HCD=y
40983 +CONFIG_USB_ARCH_HAS_OHCI=y
40984 +CONFIG_USB_ARCH_HAS_EHCI=y
40985 +# CONFIG_USB is not set
40986 +
40987 +#
40988 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
40989 +#
40990 +# CONFIG_USB_GADGET is not set
40991 +# CONFIG_MMC is not set
40992 +# CONFIG_MEMSTICK is not set
40993 +# CONFIG_NEW_LEDS is not set
40994 +# CONFIG_INFINIBAND is not set
40995 +# CONFIG_EDAC is not set
40996 +# CONFIG_RTC_CLASS is not set
40997 +# CONFIG_DMADEVICES is not set
40998 +
40999 +#
41000 +# Userspace I/O
41001 +#
41002 +# CONFIG_UIO is not set
41003 +
41004 +#
41005 +# File systems
41006 +#
41007 +CONFIG_EXT2_FS=y
41008 +# CONFIG_EXT2_FS_XATTR is not set
41009 +# CONFIG_EXT2_FS_XIP is not set
41010 +CONFIG_EXT3_FS=y
41011 +CONFIG_EXT3_FS_XATTR=y
41012 +# CONFIG_EXT3_FS_POSIX_ACL is not set
41013 +# CONFIG_EXT3_FS_SECURITY is not set
41014 +# CONFIG_EXT4DEV_FS is not set
41015 +CONFIG_JBD=y
41016 +CONFIG_FS_MBCACHE=y
41017 +# CONFIG_REISERFS_FS is not set
41018 +# CONFIG_JFS_FS is not set
41019 +# CONFIG_FS_POSIX_ACL is not set
41020 +# CONFIG_XFS_FS is not set
41021 +# CONFIG_GFS2_FS is not set
41022 +# CONFIG_OCFS2_FS is not set
41023 +CONFIG_DNOTIFY=y
41024 +CONFIG_INOTIFY=y
41025 +CONFIG_INOTIFY_USER=y
41026 +# CONFIG_QUOTA is not set
41027 +# CONFIG_AUTOFS_FS is not set
41028 +# CONFIG_AUTOFS4_FS is not set
41029 +# CONFIG_FUSE_FS is not set
41030 +
41031 +#
41032 +# CD-ROM/DVD Filesystems
41033 +#
41034 +# CONFIG_ISO9660_FS is not set
41035 +# CONFIG_UDF_FS is not set
41036 +
41037 +#
41038 +# DOS/FAT/NT Filesystems
41039 +#
41040 +# CONFIG_MSDOS_FS is not set
41041 +# CONFIG_VFAT_FS is not set
41042 +# CONFIG_NTFS_FS is not set
41043 +
41044 +#
41045 +# Pseudo filesystems
41046 +#
41047 +CONFIG_PROC_FS=y
41048 +CONFIG_PROC_KCORE=y
41049 +CONFIG_PROC_SYSCTL=y
41050 +CONFIG_SYSFS=y
41051 +CONFIG_TMPFS=y
41052 +# CONFIG_TMPFS_POSIX_ACL is not set
41053 +# CONFIG_HUGETLB_PAGE is not set
41054 +# CONFIG_CONFIGFS_FS is not set
41055 +
41056 +#
41057 +# Miscellaneous filesystems
41058 +#
41059 +# CONFIG_ADFS_FS is not set
41060 +# CONFIG_AFFS_FS is not set
41061 +# CONFIG_HFS_FS is not set
41062 +# CONFIG_HFSPLUS_FS is not set
41063 +# CONFIG_BEFS_FS is not set
41064 +# CONFIG_BFS_FS is not set
41065 +# CONFIG_EFS_FS is not set
41066 +# CONFIG_CRAMFS is not set
41067 +# CONFIG_VXFS_FS is not set
41068 +# CONFIG_MINIX_FS is not set
41069 +# CONFIG_HPFS_FS is not set
41070 +# CONFIG_QNX4FS_FS is not set
41071 +# CONFIG_ROMFS_FS is not set
41072 +# CONFIG_SYSV_FS is not set
41073 +# CONFIG_UFS_FS is not set
41074 +CONFIG_NETWORK_FILESYSTEMS=y
41075 +CONFIG_NFS_FS=y
41076 +# CONFIG_NFS_V3 is not set
41077 +# CONFIG_NFS_V4 is not set
41078 +# CONFIG_NFS_DIRECTIO is not set
41079 +# CONFIG_NFSD is not set
41080 +CONFIG_ROOT_NFS=y
41081 +CONFIG_LOCKD=y
41082 +CONFIG_NFS_COMMON=y
41083 +CONFIG_SUNRPC=y
41084 +# CONFIG_SUNRPC_BIND34 is not set
41085 +# CONFIG_RPCSEC_GSS_KRB5 is not set
41086 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
41087 +# CONFIG_SMB_FS is not set
41088 +# CONFIG_CIFS is not set
41089 +# CONFIG_NCP_FS is not set
41090 +# CONFIG_CODA_FS is not set
41091 +# CONFIG_AFS_FS is not set
41092 +
41093 +#
41094 +# Partition Types
41095 +#
41096 +CONFIG_PARTITION_ADVANCED=y
41097 +# CONFIG_ACORN_PARTITION is not set
41098 +# CONFIG_OSF_PARTITION is not set
41099 +# CONFIG_AMIGA_PARTITION is not set
41100 +# CONFIG_ATARI_PARTITION is not set
41101 +# CONFIG_MAC_PARTITION is not set
41102 +# CONFIG_MSDOS_PARTITION is not set
41103 +# CONFIG_LDM_PARTITION is not set
41104 +# CONFIG_SGI_PARTITION is not set
41105 +# CONFIG_ULTRIX_PARTITION is not set
41106 +# CONFIG_SUN_PARTITION is not set
41107 +# CONFIG_KARMA_PARTITION is not set
41108 +# CONFIG_EFI_PARTITION is not set
41109 +# CONFIG_SYSV68_PARTITION is not set
41110 +# CONFIG_NLS is not set
41111 +# CONFIG_DLM is not set
41112 +
41113 +#
41114 +# Library routines
41115 +#
41116 +CONFIG_BITREVERSE=y
41117 +# CONFIG_CRC_CCITT is not set
41118 +# CONFIG_CRC16 is not set
41119 +# CONFIG_CRC_ITU_T is not set
41120 +CONFIG_CRC32=y
41121 +# CONFIG_CRC7 is not set
41122 +# CONFIG_LIBCRC32C is not set
41123 +CONFIG_PLIST=y
41124 +CONFIG_HAS_IOMEM=y
41125 +CONFIG_HAS_IOPORT=y
41126 +CONFIG_HAS_DMA=y
41127 +
41128 +#
41129 +# Kernel hacking
41130 +#
41131 +# CONFIG_PRINTK_TIME is not set
41132 +CONFIG_ENABLE_WARN_DEPRECATED=y
41133 +CONFIG_ENABLE_MUST_CHECK=y
41134 +# CONFIG_MAGIC_SYSRQ is not set
41135 +# CONFIG_UNUSED_SYMBOLS is not set
41136 +# CONFIG_DEBUG_FS is not set
41137 +# CONFIG_HEADERS_CHECK is not set
41138 +CONFIG_DEBUG_KERNEL=y
41139 +# CONFIG_DEBUG_SHIRQ is not set
41140 +CONFIG_DETECT_SOFTLOCKUP=y
41141 +CONFIG_SCHED_DEBUG=y
41142 +# CONFIG_SCHEDSTATS is not set
41143 +# CONFIG_TIMER_STATS is not set
41144 +# CONFIG_SLUB_DEBUG_ON is not set
41145 +# CONFIG_SLUB_STATS is not set
41146 +# CONFIG_DEBUG_RT_MUTEXES is not set
41147 +# CONFIG_RT_MUTEX_TESTER is not set
41148 +# CONFIG_DEBUG_SPINLOCK is not set
41149 +CONFIG_DEBUG_MUTEXES=y
41150 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
41151 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
41152 +# CONFIG_DEBUG_KOBJECT is not set
41153 +# CONFIG_DEBUG_BUGVERBOSE is not set
41154 +# CONFIG_DEBUG_INFO is not set
41155 +# CONFIG_DEBUG_VM is not set
41156 +# CONFIG_DEBUG_LIST is not set
41157 +# CONFIG_DEBUG_SG is not set
41158 +# CONFIG_BOOT_PRINTK_DELAY is not set
41159 +# CONFIG_BACKTRACE_SELF_TEST is not set
41160 +# CONFIG_FAULT_INJECTION is not set
41161 +# CONFIG_SAMPLES is not set
41162 +# CONFIG_DEBUG_STACKOVERFLOW is not set
41163 +# CONFIG_DEBUG_STACK_USAGE is not set
41164 +# CONFIG_DEBUG_PAGEALLOC is not set
41165 +# CONFIG_DEBUGGER is not set
41166 +# CONFIG_BDI_SWITCH is not set
41167 +# CONFIG_PPC_EARLY_DEBUG is not set
41168 +
41169 +#
41170 +# Security options
41171 +#
41172 +# CONFIG_KEYS is not set
41173 +# CONFIG_SECURITY is not set
41174 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
41175 +CONFIG_CRYPTO=y
41176 +# CONFIG_CRYPTO_SEQIV is not set
41177 +# CONFIG_CRYPTO_MANAGER is not set
41178 +# CONFIG_CRYPTO_HMAC is not set
41179 +# CONFIG_CRYPTO_XCBC is not set
41180 +# CONFIG_CRYPTO_NULL is not set
41181 +# CONFIG_CRYPTO_MD4 is not set
41182 +# CONFIG_CRYPTO_MD5 is not set
41183 +# CONFIG_CRYPTO_SHA1 is not set
41184 +# CONFIG_CRYPTO_SHA256 is not set
41185 +# CONFIG_CRYPTO_SHA512 is not set
41186 +# CONFIG_CRYPTO_WP512 is not set
41187 +# CONFIG_CRYPTO_TGR192 is not set
41188 +# CONFIG_CRYPTO_GF128MUL is not set
41189 +# CONFIG_CRYPTO_ECB is not set
41190 +# CONFIG_CRYPTO_CBC is not set
41191 +# CONFIG_CRYPTO_PCBC is not set
41192 +# CONFIG_CRYPTO_LRW is not set
41193 +# CONFIG_CRYPTO_XTS is not set
41194 +# CONFIG_CRYPTO_CTR is not set
41195 +# CONFIG_CRYPTO_GCM is not set
41196 +# CONFIG_CRYPTO_CCM is not set
41197 +# CONFIG_CRYPTO_CRYPTD is not set
41198 +# CONFIG_CRYPTO_DES is not set
41199 +# CONFIG_CRYPTO_FCRYPT is not set
41200 +# CONFIG_CRYPTO_BLOWFISH is not set
41201 +# CONFIG_CRYPTO_TWOFISH is not set
41202 +# CONFIG_CRYPTO_SERPENT is not set
41203 +# CONFIG_CRYPTO_AES is not set
41204 +# CONFIG_CRYPTO_CAST5 is not set
41205 +# CONFIG_CRYPTO_CAST6 is not set
41206 +# CONFIG_CRYPTO_TEA is not set
41207 +# CONFIG_CRYPTO_ARC4 is not set
41208 +# CONFIG_CRYPTO_KHAZAD is not set
41209 +# CONFIG_CRYPTO_ANUBIS is not set
41210 +# CONFIG_CRYPTO_SEED is not set
41211 +# CONFIG_CRYPTO_SALSA20 is not set
41212 +# CONFIG_CRYPTO_DEFLATE is not set
41213 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
41214 +# CONFIG_CRYPTO_CRC32C is not set
41215 +# CONFIG_CRYPTO_CAMELLIA is not set
41216 +# CONFIG_CRYPTO_AUTHENC is not set
41217 +# CONFIG_CRYPTO_LZO is not set
41218 +CONFIG_CRYPTO_HW=y
41219 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
41220 +# CONFIG_PPC_CLOCK is not set
41221 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/sbc8548_defconfig
41222 ===================================================================
41223 --- /dev/null
41224 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/sbc8548_defconfig
41225 @@ -0,0 +1,812 @@
41226 +#
41227 +# Automatically generated make config: don't edit
41228 +# Linux kernel version: 2.6.25-rc6
41229 +# Mon Mar 24 08:48:39 2008
41230 +#
41231 +# CONFIG_PPC64 is not set
41232 +
41233 +#
41234 +# Processor support
41235 +#
41236 +# CONFIG_6xx is not set
41237 +CONFIG_PPC_85xx=y
41238 +# CONFIG_PPC_8xx is not set
41239 +# CONFIG_40x is not set
41240 +# CONFIG_44x is not set
41241 +# CONFIG_E200 is not set
41242 +CONFIG_E500=y
41243 +CONFIG_BOOKE=y
41244 +CONFIG_FSL_BOOKE=y
41245 +CONFIG_FSL_EMB_PERFMON=y
41246 +# CONFIG_PHYS_64BIT is not set
41247 +CONFIG_SPE=y
41248 +# CONFIG_PPC_MM_SLICES is not set
41249 +CONFIG_PPC32=y
41250 +CONFIG_WORD_SIZE=32
41251 +CONFIG_PPC_MERGE=y
41252 +CONFIG_MMU=y
41253 +CONFIG_GENERIC_CMOS_UPDATE=y
41254 +CONFIG_GENERIC_TIME=y
41255 +CONFIG_GENERIC_TIME_VSYSCALL=y
41256 +CONFIG_GENERIC_CLOCKEVENTS=y
41257 +CONFIG_GENERIC_HARDIRQS=y
41258 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
41259 +CONFIG_IRQ_PER_CPU=y
41260 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
41261 +CONFIG_ARCH_HAS_ILOG2_U32=y
41262 +CONFIG_GENERIC_HWEIGHT=y
41263 +CONFIG_GENERIC_CALIBRATE_DELAY=y
41264 +CONFIG_GENERIC_FIND_NEXT_BIT=y
41265 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
41266 +CONFIG_PPC=y
41267 +CONFIG_EARLY_PRINTK=y
41268 +CONFIG_GENERIC_NVRAM=y
41269 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
41270 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
41271 +CONFIG_PPC_OF=y
41272 +CONFIG_OF=y
41273 +CONFIG_PPC_UDBG_16550=y
41274 +# CONFIG_GENERIC_TBSYNC is not set
41275 +CONFIG_AUDIT_ARCH=y
41276 +CONFIG_GENERIC_BUG=y
41277 +CONFIG_DEFAULT_UIMAGE=y
41278 +# CONFIG_PPC_DCR_NATIVE is not set
41279 +# CONFIG_PPC_DCR_MMIO is not set
41280 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
41281 +
41282 +#
41283 +# General setup
41284 +#
41285 +CONFIG_EXPERIMENTAL=y
41286 +CONFIG_BROKEN_ON_SMP=y
41287 +CONFIG_INIT_ENV_ARG_LIMIT=32
41288 +CONFIG_LOCALVERSION=""
41289 +CONFIG_LOCALVERSION_AUTO=y
41290 +CONFIG_SWAP=y
41291 +CONFIG_SYSVIPC=y
41292 +CONFIG_SYSVIPC_SYSCTL=y
41293 +# CONFIG_POSIX_MQUEUE is not set
41294 +# CONFIG_BSD_PROCESS_ACCT is not set
41295 +# CONFIG_TASKSTATS is not set
41296 +# CONFIG_AUDIT is not set
41297 +# CONFIG_IKCONFIG is not set
41298 +CONFIG_LOG_BUF_SHIFT=14
41299 +# CONFIG_CGROUPS is not set
41300 +CONFIG_GROUP_SCHED=y
41301 +CONFIG_FAIR_GROUP_SCHED=y
41302 +# CONFIG_RT_GROUP_SCHED is not set
41303 +CONFIG_USER_SCHED=y
41304 +# CONFIG_CGROUP_SCHED is not set
41305 +CONFIG_SYSFS_DEPRECATED=y
41306 +CONFIG_SYSFS_DEPRECATED_V2=y
41307 +# CONFIG_RELAY is not set
41308 +# CONFIG_NAMESPACES is not set
41309 +CONFIG_BLK_DEV_INITRD=y
41310 +CONFIG_INITRAMFS_SOURCE=""
41311 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
41312 +CONFIG_SYSCTL=y
41313 +CONFIG_EMBEDDED=y
41314 +CONFIG_SYSCTL_SYSCALL=y
41315 +CONFIG_KALLSYMS=y
41316 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
41317 +CONFIG_HOTPLUG=y
41318 +CONFIG_PRINTK=y
41319 +CONFIG_BUG=y
41320 +CONFIG_ELF_CORE=y
41321 +CONFIG_COMPAT_BRK=y
41322 +CONFIG_BASE_FULL=y
41323 +CONFIG_FUTEX=y
41324 +CONFIG_ANON_INODES=y
41325 +CONFIG_EPOLL=y
41326 +CONFIG_SIGNALFD=y
41327 +CONFIG_TIMERFD=y
41328 +CONFIG_EVENTFD=y
41329 +CONFIG_SHMEM=y
41330 +CONFIG_VM_EVENT_COUNTERS=y
41331 +CONFIG_SLAB=y
41332 +# CONFIG_SLUB is not set
41333 +# CONFIG_SLOB is not set
41334 +# CONFIG_PROFILING is not set
41335 +# CONFIG_MARKERS is not set
41336 +CONFIG_HAVE_OPROFILE=y
41337 +CONFIG_HAVE_KPROBES=y
41338 +CONFIG_HAVE_KRETPROBES=y
41339 +CONFIG_PROC_PAGE_MONITOR=y
41340 +CONFIG_SLABINFO=y
41341 +CONFIG_RT_MUTEXES=y
41342 +# CONFIG_TINY_SHMEM is not set
41343 +CONFIG_BASE_SMALL=0
41344 +# CONFIG_MODULES is not set
41345 +CONFIG_BLOCK=y
41346 +# CONFIG_LBD is not set
41347 +# CONFIG_BLK_DEV_IO_TRACE is not set
41348 +# CONFIG_LSF is not set
41349 +# CONFIG_BLK_DEV_BSG is not set
41350 +
41351 +#
41352 +# IO Schedulers
41353 +#
41354 +CONFIG_IOSCHED_NOOP=y
41355 +CONFIG_IOSCHED_AS=y
41356 +CONFIG_IOSCHED_DEADLINE=y
41357 +CONFIG_IOSCHED_CFQ=y
41358 +CONFIG_DEFAULT_AS=y
41359 +# CONFIG_DEFAULT_DEADLINE is not set
41360 +# CONFIG_DEFAULT_CFQ is not set
41361 +# CONFIG_DEFAULT_NOOP is not set
41362 +CONFIG_DEFAULT_IOSCHED="anticipatory"
41363 +CONFIG_CLASSIC_RCU=y
41364 +
41365 +#
41366 +# Platform support
41367 +#
41368 +# CONFIG_PPC_MPC512x is not set
41369 +# CONFIG_PPC_MPC5121 is not set
41370 +# CONFIG_PPC_CELL is not set
41371 +# CONFIG_PPC_CELL_NATIVE is not set
41372 +# CONFIG_PQ2ADS is not set
41373 +CONFIG_MPC85xx=y
41374 +# CONFIG_MPC8540_ADS is not set
41375 +# CONFIG_MPC8560_ADS is not set
41376 +# CONFIG_MPC85xx_CDS is not set
41377 +# CONFIG_MPC85xx_MDS is not set
41378 +# CONFIG_MPC85xx_DS is not set
41379 +# CONFIG_STX_GP3 is not set
41380 +# CONFIG_TQM8540 is not set
41381 +# CONFIG_TQM8541 is not set
41382 +# CONFIG_TQM8555 is not set
41383 +# CONFIG_TQM8560 is not set
41384 +CONFIG_SBC8548=y
41385 +# CONFIG_SBC8560 is not set
41386 +# CONFIG_IPIC is not set
41387 +CONFIG_MPIC=y
41388 +# CONFIG_MPIC_WEIRD is not set
41389 +# CONFIG_PPC_I8259 is not set
41390 +# CONFIG_PPC_RTAS is not set
41391 +# CONFIG_MMIO_NVRAM is not set
41392 +# CONFIG_PPC_MPC106 is not set
41393 +# CONFIG_PPC_970_NAP is not set
41394 +# CONFIG_PPC_INDIRECT_IO is not set
41395 +# CONFIG_GENERIC_IOMAP is not set
41396 +# CONFIG_CPU_FREQ is not set
41397 +# CONFIG_CPM2 is not set
41398 +# CONFIG_FSL_ULI1575 is not set
41399 +
41400 +#
41401 +# Kernel options
41402 +#
41403 +# CONFIG_HIGHMEM is not set
41404 +# CONFIG_TICK_ONESHOT is not set
41405 +# CONFIG_NO_HZ is not set
41406 +# CONFIG_HIGH_RES_TIMERS is not set
41407 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
41408 +# CONFIG_HZ_100 is not set
41409 +CONFIG_HZ_250=y
41410 +# CONFIG_HZ_300 is not set
41411 +# CONFIG_HZ_1000 is not set
41412 +CONFIG_HZ=250
41413 +# CONFIG_SCHED_HRTICK is not set
41414 +CONFIG_PREEMPT_NONE=y
41415 +# CONFIG_PREEMPT_VOLUNTARY is not set
41416 +# CONFIG_PREEMPT is not set
41417 +CONFIG_BINFMT_ELF=y
41418 +CONFIG_BINFMT_MISC=y
41419 +CONFIG_MATH_EMULATION=y
41420 +# CONFIG_IOMMU_HELPER is not set
41421 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
41422 +CONFIG_ARCH_HAS_WALK_MEMORY=y
41423 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
41424 +CONFIG_ARCH_FLATMEM_ENABLE=y
41425 +CONFIG_ARCH_POPULATES_NODE_MAP=y
41426 +CONFIG_SELECT_MEMORY_MODEL=y
41427 +CONFIG_FLATMEM_MANUAL=y
41428 +# CONFIG_DISCONTIGMEM_MANUAL is not set
41429 +# CONFIG_SPARSEMEM_MANUAL is not set
41430 +CONFIG_FLATMEM=y
41431 +CONFIG_FLAT_NODE_MEM_MAP=y
41432 +# CONFIG_SPARSEMEM_STATIC is not set
41433 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
41434 +CONFIG_SPLIT_PTLOCK_CPUS=4
41435 +# CONFIG_RESOURCES_64BIT is not set
41436 +CONFIG_ZONE_DMA_FLAG=1
41437 +CONFIG_BOUNCE=y
41438 +CONFIG_VIRT_TO_BUS=y
41439 +CONFIG_PROC_DEVICETREE=y
41440 +# CONFIG_CMDLINE_BOOL is not set
41441 +# CONFIG_PM is not set
41442 +# CONFIG_SECCOMP is not set
41443 +CONFIG_ISA_DMA_API=y
41444 +
41445 +#
41446 +# Bus options
41447 +#
41448 +CONFIG_ZONE_DMA=y
41449 +CONFIG_PPC_INDIRECT_PCI=y
41450 +CONFIG_FSL_SOC=y
41451 +CONFIG_FSL_PCI=y
41452 +CONFIG_PCI=y
41453 +CONFIG_PCI_DOMAINS=y
41454 +CONFIG_PCI_SYSCALL=y
41455 +# CONFIG_PCIEPORTBUS is not set
41456 +CONFIG_ARCH_SUPPORTS_MSI=y
41457 +# CONFIG_PCI_MSI is not set
41458 +CONFIG_PCI_LEGACY=y
41459 +# CONFIG_PCCARD is not set
41460 +# CONFIG_HOTPLUG_PCI is not set
41461 +
41462 +#
41463 +# Advanced setup
41464 +#
41465 +# CONFIG_ADVANCED_OPTIONS is not set
41466 +
41467 +#
41468 +# Default settings for advanced configuration options are used
41469 +#
41470 +CONFIG_HIGHMEM_START=0xfe000000
41471 +CONFIG_LOWMEM_SIZE=0x30000000
41472 +CONFIG_KERNEL_START=0xc0000000
41473 +CONFIG_TASK_SIZE=0xc0000000
41474 +CONFIG_BOOT_LOAD=0x00800000
41475 +
41476 +#
41477 +# Networking
41478 +#
41479 +CONFIG_NET=y
41480 +
41481 +#
41482 +# Networking options
41483 +#
41484 +CONFIG_PACKET=y
41485 +# CONFIG_PACKET_MMAP is not set
41486 +CONFIG_UNIX=y
41487 +CONFIG_XFRM=y
41488 +CONFIG_XFRM_USER=y
41489 +# CONFIG_XFRM_SUB_POLICY is not set
41490 +# CONFIG_XFRM_MIGRATE is not set
41491 +# CONFIG_XFRM_STATISTICS is not set
41492 +# CONFIG_NET_KEY is not set
41493 +CONFIG_INET=y
41494 +CONFIG_IP_MULTICAST=y
41495 +# CONFIG_IP_ADVANCED_ROUTER is not set
41496 +CONFIG_IP_FIB_HASH=y
41497 +CONFIG_IP_PNP=y
41498 +CONFIG_IP_PNP_DHCP=y
41499 +CONFIG_IP_PNP_BOOTP=y
41500 +# CONFIG_IP_PNP_RARP is not set
41501 +# CONFIG_NET_IPIP is not set
41502 +# CONFIG_NET_IPGRE is not set
41503 +# CONFIG_IP_MROUTE is not set
41504 +# CONFIG_ARPD is not set
41505 +CONFIG_SYN_COOKIES=y
41506 +# CONFIG_INET_AH is not set
41507 +# CONFIG_INET_ESP is not set
41508 +# CONFIG_INET_IPCOMP is not set
41509 +# CONFIG_INET_XFRM_TUNNEL is not set
41510 +# CONFIG_INET_TUNNEL is not set
41511 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
41512 +CONFIG_INET_XFRM_MODE_TUNNEL=y
41513 +CONFIG_INET_XFRM_MODE_BEET=y
41514 +# CONFIG_INET_LRO is not set
41515 +CONFIG_INET_DIAG=y
41516 +CONFIG_INET_TCP_DIAG=y
41517 +# CONFIG_TCP_CONG_ADVANCED is not set
41518 +CONFIG_TCP_CONG_CUBIC=y
41519 +CONFIG_DEFAULT_TCP_CONG="cubic"
41520 +# CONFIG_TCP_MD5SIG is not set
41521 +# CONFIG_IPV6 is not set
41522 +# CONFIG_INET6_XFRM_TUNNEL is not set
41523 +# CONFIG_INET6_TUNNEL is not set
41524 +# CONFIG_NETWORK_SECMARK is not set
41525 +# CONFIG_NETFILTER is not set
41526 +# CONFIG_IP_DCCP is not set
41527 +# CONFIG_IP_SCTP is not set
41528 +# CONFIG_TIPC is not set
41529 +# CONFIG_ATM is not set
41530 +# CONFIG_BRIDGE is not set
41531 +# CONFIG_VLAN_8021Q is not set
41532 +# CONFIG_DECNET is not set
41533 +# CONFIG_LLC2 is not set
41534 +# CONFIG_IPX is not set
41535 +# CONFIG_ATALK is not set
41536 +# CONFIG_X25 is not set
41537 +# CONFIG_LAPB is not set
41538 +# CONFIG_ECONET is not set
41539 +# CONFIG_WAN_ROUTER is not set
41540 +# CONFIG_NET_SCHED is not set
41541 +
41542 +#
41543 +# Network testing
41544 +#
41545 +# CONFIG_NET_PKTGEN is not set
41546 +# CONFIG_HAMRADIO is not set
41547 +# CONFIG_CAN is not set
41548 +# CONFIG_IRDA is not set
41549 +# CONFIG_BT is not set
41550 +# CONFIG_AF_RXRPC is not set
41551 +
41552 +#
41553 +# Wireless
41554 +#
41555 +# CONFIG_CFG80211 is not set
41556 +# CONFIG_WIRELESS_EXT is not set
41557 +# CONFIG_MAC80211 is not set
41558 +# CONFIG_IEEE80211 is not set
41559 +# CONFIG_RFKILL is not set
41560 +# CONFIG_NET_9P is not set
41561 +
41562 +#
41563 +# Device Drivers
41564 +#
41565 +
41566 +#
41567 +# Generic Driver Options
41568 +#
41569 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
41570 +CONFIG_STANDALONE=y
41571 +CONFIG_PREVENT_FIRMWARE_BUILD=y
41572 +# CONFIG_FW_LOADER is not set
41573 +# CONFIG_SYS_HYPERVISOR is not set
41574 +# CONFIG_CONNECTOR is not set
41575 +# CONFIG_MTD is not set
41576 +CONFIG_OF_DEVICE=y
41577 +# CONFIG_PARPORT is not set
41578 +CONFIG_BLK_DEV=y
41579 +# CONFIG_BLK_DEV_FD is not set
41580 +# CONFIG_BLK_CPQ_DA is not set
41581 +# CONFIG_BLK_CPQ_CISS_DA is not set
41582 +# CONFIG_BLK_DEV_DAC960 is not set
41583 +# CONFIG_BLK_DEV_UMEM is not set
41584 +# CONFIG_BLK_DEV_COW_COMMON is not set
41585 +CONFIG_BLK_DEV_LOOP=y
41586 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
41587 +# CONFIG_BLK_DEV_NBD is not set
41588 +# CONFIG_BLK_DEV_SX8 is not set
41589 +CONFIG_BLK_DEV_RAM=y
41590 +CONFIG_BLK_DEV_RAM_COUNT=16
41591 +CONFIG_BLK_DEV_RAM_SIZE=4096
41592 +# CONFIG_BLK_DEV_XIP is not set
41593 +# CONFIG_CDROM_PKTCDVD is not set
41594 +# CONFIG_ATA_OVER_ETH is not set
41595 +CONFIG_MISC_DEVICES=y
41596 +# CONFIG_PHANTOM is not set
41597 +# CONFIG_EEPROM_93CX6 is not set
41598 +# CONFIG_SGI_IOC4 is not set
41599 +# CONFIG_TIFM_CORE is not set
41600 +# CONFIG_ENCLOSURE_SERVICES is not set
41601 +CONFIG_HAVE_IDE=y
41602 +# CONFIG_IDE is not set
41603 +
41604 +#
41605 +# SCSI device support
41606 +#
41607 +# CONFIG_RAID_ATTRS is not set
41608 +# CONFIG_SCSI is not set
41609 +# CONFIG_SCSI_DMA is not set
41610 +# CONFIG_SCSI_NETLINK is not set
41611 +# CONFIG_ATA is not set
41612 +# CONFIG_MD is not set
41613 +# CONFIG_FUSION is not set
41614 +
41615 +#
41616 +# IEEE 1394 (FireWire) support
41617 +#
41618 +# CONFIG_FIREWIRE is not set
41619 +# CONFIG_IEEE1394 is not set
41620 +# CONFIG_I2O is not set
41621 +# CONFIG_MACINTOSH_DRIVERS is not set
41622 +CONFIG_NETDEVICES=y
41623 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
41624 +# CONFIG_DUMMY is not set
41625 +# CONFIG_BONDING is not set
41626 +# CONFIG_MACVLAN is not set
41627 +# CONFIG_EQUALIZER is not set
41628 +# CONFIG_TUN is not set
41629 +# CONFIG_VETH is not set
41630 +# CONFIG_ARCNET is not set
41631 +CONFIG_PHYLIB=y
41632 +
41633 +#
41634 +# MII PHY device drivers
41635 +#
41636 +# CONFIG_MARVELL_PHY is not set
41637 +# CONFIG_DAVICOM_PHY is not set
41638 +# CONFIG_QSEMI_PHY is not set
41639 +# CONFIG_LXT_PHY is not set
41640 +# CONFIG_CICADA_PHY is not set
41641 +# CONFIG_VITESSE_PHY is not set
41642 +# CONFIG_SMSC_PHY is not set
41643 +CONFIG_BROADCOM_PHY=y
41644 +# CONFIG_ICPLUS_PHY is not set
41645 +# CONFIG_REALTEK_PHY is not set
41646 +# CONFIG_FIXED_PHY is not set
41647 +# CONFIG_MDIO_BITBANG is not set
41648 +CONFIG_NET_ETHERNET=y
41649 +CONFIG_MII=y
41650 +# CONFIG_HAPPYMEAL is not set
41651 +# CONFIG_SUNGEM is not set
41652 +# CONFIG_CASSINI is not set
41653 +# CONFIG_NET_VENDOR_3COM is not set
41654 +# CONFIG_NET_TULIP is not set
41655 +# CONFIG_HP100 is not set
41656 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
41657 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
41658 +# CONFIG_IBM_NEW_EMAC_TAH is not set
41659 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
41660 +# CONFIG_NET_PCI is not set
41661 +# CONFIG_B44 is not set
41662 +CONFIG_NETDEV_1000=y
41663 +# CONFIG_ACENIC is not set
41664 +# CONFIG_DL2K is not set
41665 +# CONFIG_E1000 is not set
41666 +# CONFIG_E1000E is not set
41667 +# CONFIG_E1000E_ENABLED is not set
41668 +# CONFIG_IP1000 is not set
41669 +# CONFIG_IGB is not set
41670 +# CONFIG_NS83820 is not set
41671 +# CONFIG_HAMACHI is not set
41672 +# CONFIG_YELLOWFIN is not set
41673 +# CONFIG_R8169 is not set
41674 +# CONFIG_SIS190 is not set
41675 +# CONFIG_SKGE is not set
41676 +# CONFIG_SKY2 is not set
41677 +# CONFIG_SK98LIN is not set
41678 +# CONFIG_VIA_VELOCITY is not set
41679 +# CONFIG_TIGON3 is not set
41680 +# CONFIG_BNX2 is not set
41681 +CONFIG_GIANFAR=y
41682 +CONFIG_GFAR_NAPI=y
41683 +# CONFIG_QLA3XXX is not set
41684 +# CONFIG_ATL1 is not set
41685 +CONFIG_NETDEV_10000=y
41686 +# CONFIG_CHELSIO_T1 is not set
41687 +# CONFIG_CHELSIO_T3 is not set
41688 +# CONFIG_IXGBE is not set
41689 +# CONFIG_IXGB is not set
41690 +# CONFIG_S2IO is not set
41691 +# CONFIG_MYRI10GE is not set
41692 +# CONFIG_NETXEN_NIC is not set
41693 +# CONFIG_NIU is not set
41694 +# CONFIG_MLX4_CORE is not set
41695 +# CONFIG_TEHUTI is not set
41696 +# CONFIG_BNX2X is not set
41697 +# CONFIG_TR is not set
41698 +
41699 +#
41700 +# Wireless LAN
41701 +#
41702 +# CONFIG_WLAN_PRE80211 is not set
41703 +# CONFIG_WLAN_80211 is not set
41704 +# CONFIG_WAN is not set
41705 +# CONFIG_FDDI is not set
41706 +# CONFIG_HIPPI is not set
41707 +# CONFIG_PPP is not set
41708 +# CONFIG_SLIP is not set
41709 +# CONFIG_NETCONSOLE is not set
41710 +# CONFIG_NETPOLL is not set
41711 +# CONFIG_NET_POLL_CONTROLLER is not set
41712 +# CONFIG_ISDN is not set
41713 +# CONFIG_PHONE is not set
41714 +
41715 +#
41716 +# Input device support
41717 +#
41718 +CONFIG_INPUT=y
41719 +# CONFIG_INPUT_FF_MEMLESS is not set
41720 +# CONFIG_INPUT_POLLDEV is not set
41721 +
41722 +#
41723 +# Userland interfaces
41724 +#
41725 +# CONFIG_INPUT_MOUSEDEV is not set
41726 +# CONFIG_INPUT_JOYDEV is not set
41727 +# CONFIG_INPUT_EVDEV is not set
41728 +# CONFIG_INPUT_EVBUG is not set
41729 +
41730 +#
41731 +# Input Device Drivers
41732 +#
41733 +# CONFIG_INPUT_KEYBOARD is not set
41734 +# CONFIG_INPUT_MOUSE is not set
41735 +# CONFIG_INPUT_JOYSTICK is not set
41736 +# CONFIG_INPUT_TABLET is not set
41737 +# CONFIG_INPUT_TOUCHSCREEN is not set
41738 +# CONFIG_INPUT_MISC is not set
41739 +
41740 +#
41741 +# Hardware I/O ports
41742 +#
41743 +# CONFIG_SERIO is not set
41744 +# CONFIG_GAMEPORT is not set
41745 +
41746 +#
41747 +# Character devices
41748 +#
41749 +# CONFIG_VT is not set
41750 +# CONFIG_SERIAL_NONSTANDARD is not set
41751 +# CONFIG_NOZOMI is not set
41752 +
41753 +#
41754 +# Serial drivers
41755 +#
41756 +CONFIG_SERIAL_8250=y
41757 +CONFIG_SERIAL_8250_CONSOLE=y
41758 +CONFIG_SERIAL_8250_PCI=y
41759 +CONFIG_SERIAL_8250_NR_UARTS=4
41760 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
41761 +# CONFIG_SERIAL_8250_EXTENDED is not set
41762 +CONFIG_SERIAL_8250_SHARE_IRQ=y
41763 +
41764 +#
41765 +# Non-8250 serial port support
41766 +#
41767 +# CONFIG_SERIAL_UARTLITE is not set
41768 +CONFIG_SERIAL_CORE=y
41769 +CONFIG_SERIAL_CORE_CONSOLE=y
41770 +# CONFIG_SERIAL_JSM is not set
41771 +# CONFIG_SERIAL_OF_PLATFORM is not set
41772 +CONFIG_UNIX98_PTYS=y
41773 +CONFIG_LEGACY_PTYS=y
41774 +CONFIG_LEGACY_PTY_COUNT=256
41775 +# CONFIG_IPMI_HANDLER is not set
41776 +# CONFIG_HW_RANDOM is not set
41777 +# CONFIG_NVRAM is not set
41778 +CONFIG_GEN_RTC=y
41779 +# CONFIG_GEN_RTC_X is not set
41780 +# CONFIG_R3964 is not set
41781 +# CONFIG_APPLICOM is not set
41782 +# CONFIG_RAW_DRIVER is not set
41783 +# CONFIG_TCG_TPM is not set
41784 +CONFIG_DEVPORT=y
41785 +# CONFIG_I2C is not set
41786 +
41787 +#
41788 +# SPI support
41789 +#
41790 +# CONFIG_SPI is not set
41791 +# CONFIG_SPI_MASTER is not set
41792 +# CONFIG_W1 is not set
41793 +# CONFIG_POWER_SUPPLY is not set
41794 +CONFIG_HWMON=y
41795 +# CONFIG_HWMON_VID is not set
41796 +# CONFIG_SENSORS_I5K_AMB is not set
41797 +# CONFIG_SENSORS_F71805F is not set
41798 +# CONFIG_SENSORS_F71882FG is not set
41799 +# CONFIG_SENSORS_IT87 is not set
41800 +# CONFIG_SENSORS_PC87360 is not set
41801 +# CONFIG_SENSORS_PC87427 is not set
41802 +# CONFIG_SENSORS_SIS5595 is not set
41803 +# CONFIG_SENSORS_SMSC47M1 is not set
41804 +# CONFIG_SENSORS_SMSC47B397 is not set
41805 +# CONFIG_SENSORS_VIA686A is not set
41806 +# CONFIG_SENSORS_VT1211 is not set
41807 +# CONFIG_SENSORS_VT8231 is not set
41808 +# CONFIG_SENSORS_W83627HF is not set
41809 +# CONFIG_SENSORS_W83627EHF is not set
41810 +# CONFIG_HWMON_DEBUG_CHIP is not set
41811 +# CONFIG_THERMAL is not set
41812 +# CONFIG_WATCHDOG is not set
41813 +
41814 +#
41815 +# Sonics Silicon Backplane
41816 +#
41817 +CONFIG_SSB_POSSIBLE=y
41818 +# CONFIG_SSB is not set
41819 +
41820 +#
41821 +# Multifunction device drivers
41822 +#
41823 +# CONFIG_MFD_SM501 is not set
41824 +
41825 +#
41826 +# Multimedia devices
41827 +#
41828 +# CONFIG_VIDEO_DEV is not set
41829 +# CONFIG_DVB_CORE is not set
41830 +CONFIG_DAB=y
41831 +
41832 +#
41833 +# Graphics support
41834 +#
41835 +# CONFIG_AGP is not set
41836 +# CONFIG_DRM is not set
41837 +# CONFIG_VGASTATE is not set
41838 +CONFIG_VIDEO_OUTPUT_CONTROL=y
41839 +# CONFIG_FB is not set
41840 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
41841 +
41842 +#
41843 +# Display device support
41844 +#
41845 +# CONFIG_DISPLAY_SUPPORT is not set
41846 +
41847 +#
41848 +# Sound
41849 +#
41850 +# CONFIG_SOUND is not set
41851 +# CONFIG_HID_SUPPORT is not set
41852 +# CONFIG_USB_SUPPORT is not set
41853 +# CONFIG_MMC is not set
41854 +# CONFIG_MEMSTICK is not set
41855 +# CONFIG_NEW_LEDS is not set
41856 +# CONFIG_INFINIBAND is not set
41857 +# CONFIG_EDAC is not set
41858 +# CONFIG_RTC_CLASS is not set
41859 +# CONFIG_DMADEVICES is not set
41860 +
41861 +#
41862 +# Userspace I/O
41863 +#
41864 +# CONFIG_UIO is not set
41865 +
41866 +#
41867 +# File systems
41868 +#
41869 +# CONFIG_EXT2_FS is not set
41870 +# CONFIG_EXT3_FS is not set
41871 +# CONFIG_EXT4DEV_FS is not set
41872 +# CONFIG_REISERFS_FS is not set
41873 +# CONFIG_JFS_FS is not set
41874 +# CONFIG_FS_POSIX_ACL is not set
41875 +# CONFIG_XFS_FS is not set
41876 +# CONFIG_GFS2_FS is not set
41877 +# CONFIG_OCFS2_FS is not set
41878 +CONFIG_DNOTIFY=y
41879 +CONFIG_INOTIFY=y
41880 +CONFIG_INOTIFY_USER=y
41881 +# CONFIG_QUOTA is not set
41882 +# CONFIG_AUTOFS_FS is not set
41883 +# CONFIG_AUTOFS4_FS is not set
41884 +# CONFIG_FUSE_FS is not set
41885 +
41886 +#
41887 +# CD-ROM/DVD Filesystems
41888 +#
41889 +# CONFIG_ISO9660_FS is not set
41890 +# CONFIG_UDF_FS is not set
41891 +
41892 +#
41893 +# DOS/FAT/NT Filesystems
41894 +#
41895 +# CONFIG_MSDOS_FS is not set
41896 +# CONFIG_VFAT_FS is not set
41897 +# CONFIG_NTFS_FS is not set
41898 +
41899 +#
41900 +# Pseudo filesystems
41901 +#
41902 +CONFIG_PROC_FS=y
41903 +CONFIG_PROC_KCORE=y
41904 +CONFIG_PROC_SYSCTL=y
41905 +CONFIG_SYSFS=y
41906 +CONFIG_TMPFS=y
41907 +# CONFIG_TMPFS_POSIX_ACL is not set
41908 +# CONFIG_HUGETLB_PAGE is not set
41909 +# CONFIG_CONFIGFS_FS is not set
41910 +
41911 +#
41912 +# Miscellaneous filesystems
41913 +#
41914 +# CONFIG_ADFS_FS is not set
41915 +# CONFIG_AFFS_FS is not set
41916 +# CONFIG_HFS_FS is not set
41917 +# CONFIG_HFSPLUS_FS is not set
41918 +# CONFIG_BEFS_FS is not set
41919 +# CONFIG_BFS_FS is not set
41920 +# CONFIG_EFS_FS is not set
41921 +# CONFIG_CRAMFS is not set
41922 +# CONFIG_VXFS_FS is not set
41923 +# CONFIG_MINIX_FS is not set
41924 +# CONFIG_HPFS_FS is not set
41925 +# CONFIG_QNX4FS_FS is not set
41926 +# CONFIG_ROMFS_FS is not set
41927 +# CONFIG_SYSV_FS is not set
41928 +# CONFIG_UFS_FS is not set
41929 +CONFIG_NETWORK_FILESYSTEMS=y
41930 +CONFIG_NFS_FS=y
41931 +# CONFIG_NFS_V3 is not set
41932 +# CONFIG_NFS_V4 is not set
41933 +# CONFIG_NFS_DIRECTIO is not set
41934 +# CONFIG_NFSD is not set
41935 +CONFIG_ROOT_NFS=y
41936 +CONFIG_LOCKD=y
41937 +CONFIG_NFS_COMMON=y
41938 +CONFIG_SUNRPC=y
41939 +# CONFIG_SUNRPC_BIND34 is not set
41940 +# CONFIG_RPCSEC_GSS_KRB5 is not set
41941 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
41942 +# CONFIG_SMB_FS is not set
41943 +# CONFIG_CIFS is not set
41944 +# CONFIG_NCP_FS is not set
41945 +# CONFIG_CODA_FS is not set
41946 +# CONFIG_AFS_FS is not set
41947 +
41948 +#
41949 +# Partition Types
41950 +#
41951 +# CONFIG_PARTITION_ADVANCED is not set
41952 +CONFIG_MSDOS_PARTITION=y
41953 +# CONFIG_NLS is not set
41954 +# CONFIG_DLM is not set
41955 +
41956 +#
41957 +# Library routines
41958 +#
41959 +CONFIG_BITREVERSE=y
41960 +# CONFIG_CRC_CCITT is not set
41961 +# CONFIG_CRC16 is not set
41962 +# CONFIG_CRC_ITU_T is not set
41963 +CONFIG_CRC32=y
41964 +# CONFIG_CRC7 is not set
41965 +# CONFIG_LIBCRC32C is not set
41966 +CONFIG_PLIST=y
41967 +CONFIG_HAS_IOMEM=y
41968 +CONFIG_HAS_IOPORT=y
41969 +CONFIG_HAS_DMA=y
41970 +
41971 +#
41972 +# Kernel hacking
41973 +#
41974 +# CONFIG_PRINTK_TIME is not set
41975 +CONFIG_ENABLE_WARN_DEPRECATED=y
41976 +CONFIG_ENABLE_MUST_CHECK=y
41977 +# CONFIG_MAGIC_SYSRQ is not set
41978 +# CONFIG_UNUSED_SYMBOLS is not set
41979 +# CONFIG_DEBUG_FS is not set
41980 +# CONFIG_HEADERS_CHECK is not set
41981 +# CONFIG_DEBUG_KERNEL is not set
41982 +# CONFIG_DEBUG_BUGVERBOSE is not set
41983 +# CONFIG_SAMPLES is not set
41984 +# CONFIG_PPC_EARLY_DEBUG is not set
41985 +
41986 +#
41987 +# Security options
41988 +#
41989 +# CONFIG_KEYS is not set
41990 +# CONFIG_SECURITY is not set
41991 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
41992 +CONFIG_CRYPTO=y
41993 +# CONFIG_CRYPTO_SEQIV is not set
41994 +# CONFIG_CRYPTO_MANAGER is not set
41995 +# CONFIG_CRYPTO_HMAC is not set
41996 +# CONFIG_CRYPTO_XCBC is not set
41997 +# CONFIG_CRYPTO_NULL is not set
41998 +# CONFIG_CRYPTO_MD4 is not set
41999 +# CONFIG_CRYPTO_MD5 is not set
42000 +# CONFIG_CRYPTO_SHA1 is not set
42001 +# CONFIG_CRYPTO_SHA256 is not set
42002 +# CONFIG_CRYPTO_SHA512 is not set
42003 +# CONFIG_CRYPTO_WP512 is not set
42004 +# CONFIG_CRYPTO_TGR192 is not set
42005 +# CONFIG_CRYPTO_GF128MUL is not set
42006 +# CONFIG_CRYPTO_ECB is not set
42007 +# CONFIG_CRYPTO_CBC is not set
42008 +# CONFIG_CRYPTO_PCBC is not set
42009 +# CONFIG_CRYPTO_LRW is not set
42010 +# CONFIG_CRYPTO_XTS is not set
42011 +# CONFIG_CRYPTO_CTR is not set
42012 +# CONFIG_CRYPTO_GCM is not set
42013 +# CONFIG_CRYPTO_CCM is not set
42014 +# CONFIG_CRYPTO_CRYPTD is not set
42015 +# CONFIG_CRYPTO_DES is not set
42016 +# CONFIG_CRYPTO_FCRYPT is not set
42017 +# CONFIG_CRYPTO_BLOWFISH is not set
42018 +# CONFIG_CRYPTO_TWOFISH is not set
42019 +# CONFIG_CRYPTO_SERPENT is not set
42020 +# CONFIG_CRYPTO_AES is not set
42021 +# CONFIG_CRYPTO_CAST5 is not set
42022 +# CONFIG_CRYPTO_CAST6 is not set
42023 +# CONFIG_CRYPTO_TEA is not set
42024 +# CONFIG_CRYPTO_ARC4 is not set
42025 +# CONFIG_CRYPTO_KHAZAD is not set
42026 +# CONFIG_CRYPTO_ANUBIS is not set
42027 +# CONFIG_CRYPTO_SEED is not set
42028 +# CONFIG_CRYPTO_SALSA20 is not set
42029 +# CONFIG_CRYPTO_DEFLATE is not set
42030 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
42031 +# CONFIG_CRYPTO_CRC32C is not set
42032 +# CONFIG_CRYPTO_CAMELLIA is not set
42033 +# CONFIG_CRYPTO_AUTHENC is not set
42034 +# CONFIG_CRYPTO_LZO is not set
42035 +CONFIG_CRYPTO_HW=y
42036 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
42037 +# CONFIG_PPC_CLOCK is not set
42038 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/sbc8560_defconfig
42039 ===================================================================
42040 --- /dev/null
42041 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/sbc8560_defconfig
42042 @@ -0,0 +1,830 @@
42043 +#
42044 +# Automatically generated make config: don't edit
42045 +# Linux kernel version: 2.6.25-rc6
42046 +# Mon Mar 24 08:48:39 2008
42047 +#
42048 +# CONFIG_PPC64 is not set
42049 +
42050 +#
42051 +# Processor support
42052 +#
42053 +# CONFIG_6xx is not set
42054 +CONFIG_PPC_85xx=y
42055 +# CONFIG_PPC_8xx is not set
42056 +# CONFIG_40x is not set
42057 +# CONFIG_44x is not set
42058 +# CONFIG_E200 is not set
42059 +CONFIG_E500=y
42060 +CONFIG_BOOKE=y
42061 +CONFIG_FSL_BOOKE=y
42062 +CONFIG_FSL_EMB_PERFMON=y
42063 +# CONFIG_PHYS_64BIT is not set
42064 +CONFIG_SPE=y
42065 +# CONFIG_PPC_MM_SLICES is not set
42066 +CONFIG_PPC32=y
42067 +CONFIG_WORD_SIZE=32
42068 +CONFIG_PPC_MERGE=y
42069 +CONFIG_MMU=y
42070 +CONFIG_GENERIC_CMOS_UPDATE=y
42071 +CONFIG_GENERIC_TIME=y
42072 +CONFIG_GENERIC_TIME_VSYSCALL=y
42073 +CONFIG_GENERIC_CLOCKEVENTS=y
42074 +CONFIG_GENERIC_HARDIRQS=y
42075 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
42076 +CONFIG_IRQ_PER_CPU=y
42077 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
42078 +CONFIG_ARCH_HAS_ILOG2_U32=y
42079 +CONFIG_GENERIC_HWEIGHT=y
42080 +CONFIG_GENERIC_CALIBRATE_DELAY=y
42081 +CONFIG_GENERIC_FIND_NEXT_BIT=y
42082 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
42083 +CONFIG_PPC=y
42084 +CONFIG_EARLY_PRINTK=y
42085 +CONFIG_GENERIC_NVRAM=y
42086 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
42087 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
42088 +CONFIG_PPC_OF=y
42089 +CONFIG_OF=y
42090 +CONFIG_PPC_UDBG_16550=y
42091 +# CONFIG_GENERIC_TBSYNC is not set
42092 +CONFIG_AUDIT_ARCH=y
42093 +CONFIG_GENERIC_BUG=y
42094 +CONFIG_DEFAULT_UIMAGE=y
42095 +# CONFIG_PPC_DCR_NATIVE is not set
42096 +# CONFIG_PPC_DCR_MMIO is not set
42097 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
42098 +
42099 +#
42100 +# General setup
42101 +#
42102 +CONFIG_EXPERIMENTAL=y
42103 +CONFIG_BROKEN_ON_SMP=y
42104 +CONFIG_INIT_ENV_ARG_LIMIT=32
42105 +CONFIG_LOCALVERSION=""
42106 +CONFIG_LOCALVERSION_AUTO=y
42107 +CONFIG_SWAP=y
42108 +CONFIG_SYSVIPC=y
42109 +CONFIG_SYSVIPC_SYSCTL=y
42110 +# CONFIG_POSIX_MQUEUE is not set
42111 +# CONFIG_BSD_PROCESS_ACCT is not set
42112 +# CONFIG_TASKSTATS is not set
42113 +# CONFIG_AUDIT is not set
42114 +# CONFIG_IKCONFIG is not set
42115 +CONFIG_LOG_BUF_SHIFT=14
42116 +# CONFIG_CGROUPS is not set
42117 +CONFIG_GROUP_SCHED=y
42118 +CONFIG_FAIR_GROUP_SCHED=y
42119 +# CONFIG_RT_GROUP_SCHED is not set
42120 +CONFIG_USER_SCHED=y
42121 +# CONFIG_CGROUP_SCHED is not set
42122 +CONFIG_SYSFS_DEPRECATED=y
42123 +CONFIG_SYSFS_DEPRECATED_V2=y
42124 +# CONFIG_RELAY is not set
42125 +# CONFIG_NAMESPACES is not set
42126 +CONFIG_BLK_DEV_INITRD=y
42127 +CONFIG_INITRAMFS_SOURCE=""
42128 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
42129 +CONFIG_SYSCTL=y
42130 +CONFIG_EMBEDDED=y
42131 +CONFIG_SYSCTL_SYSCALL=y
42132 +CONFIG_KALLSYMS=y
42133 +# CONFIG_KALLSYMS_ALL is not set
42134 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
42135 +CONFIG_HOTPLUG=y
42136 +CONFIG_PRINTK=y
42137 +CONFIG_BUG=y
42138 +CONFIG_ELF_CORE=y
42139 +CONFIG_COMPAT_BRK=y
42140 +CONFIG_BASE_FULL=y
42141 +CONFIG_FUTEX=y
42142 +CONFIG_ANON_INODES=y
42143 +CONFIG_EPOLL=y
42144 +CONFIG_SIGNALFD=y
42145 +CONFIG_TIMERFD=y
42146 +CONFIG_EVENTFD=y
42147 +CONFIG_SHMEM=y
42148 +CONFIG_VM_EVENT_COUNTERS=y
42149 +CONFIG_SLAB=y
42150 +# CONFIG_SLUB is not set
42151 +# CONFIG_SLOB is not set
42152 +# CONFIG_PROFILING is not set
42153 +# CONFIG_MARKERS is not set
42154 +CONFIG_HAVE_OPROFILE=y
42155 +CONFIG_HAVE_KPROBES=y
42156 +CONFIG_HAVE_KRETPROBES=y
42157 +CONFIG_PROC_PAGE_MONITOR=y
42158 +CONFIG_SLABINFO=y
42159 +CONFIG_RT_MUTEXES=y
42160 +# CONFIG_TINY_SHMEM is not set
42161 +CONFIG_BASE_SMALL=0
42162 +# CONFIG_MODULES is not set
42163 +CONFIG_BLOCK=y
42164 +# CONFIG_LBD is not set
42165 +# CONFIG_BLK_DEV_IO_TRACE is not set
42166 +# CONFIG_LSF is not set
42167 +# CONFIG_BLK_DEV_BSG is not set
42168 +
42169 +#
42170 +# IO Schedulers
42171 +#
42172 +CONFIG_IOSCHED_NOOP=y
42173 +CONFIG_IOSCHED_AS=y
42174 +CONFIG_IOSCHED_DEADLINE=y
42175 +CONFIG_IOSCHED_CFQ=y
42176 +CONFIG_DEFAULT_AS=y
42177 +# CONFIG_DEFAULT_DEADLINE is not set
42178 +# CONFIG_DEFAULT_CFQ is not set
42179 +# CONFIG_DEFAULT_NOOP is not set
42180 +CONFIG_DEFAULT_IOSCHED="anticipatory"
42181 +CONFIG_CLASSIC_RCU=y
42182 +
42183 +#
42184 +# Platform support
42185 +#
42186 +# CONFIG_PPC_MPC512x is not set
42187 +# CONFIG_PPC_MPC5121 is not set
42188 +# CONFIG_PPC_CELL is not set
42189 +# CONFIG_PPC_CELL_NATIVE is not set
42190 +# CONFIG_PQ2ADS is not set
42191 +CONFIG_MPC85xx=y
42192 +# CONFIG_MPC8540_ADS is not set
42193 +# CONFIG_MPC8560_ADS is not set
42194 +# CONFIG_MPC85xx_CDS is not set
42195 +# CONFIG_MPC85xx_MDS is not set
42196 +# CONFIG_MPC85xx_DS is not set
42197 +# CONFIG_STX_GP3 is not set
42198 +# CONFIG_TQM8540 is not set
42199 +# CONFIG_TQM8541 is not set
42200 +# CONFIG_TQM8555 is not set
42201 +# CONFIG_TQM8560 is not set
42202 +# CONFIG_SBC8548 is not set
42203 +CONFIG_SBC8560=y
42204 +# CONFIG_IPIC is not set
42205 +CONFIG_MPIC=y
42206 +# CONFIG_MPIC_WEIRD is not set
42207 +# CONFIG_PPC_I8259 is not set
42208 +# CONFIG_PPC_RTAS is not set
42209 +# CONFIG_MMIO_NVRAM is not set
42210 +# CONFIG_PPC_MPC106 is not set
42211 +# CONFIG_PPC_970_NAP is not set
42212 +# CONFIG_PPC_INDIRECT_IO is not set
42213 +# CONFIG_GENERIC_IOMAP is not set
42214 +# CONFIG_CPU_FREQ is not set
42215 +# CONFIG_CPM2 is not set
42216 +# CONFIG_FSL_ULI1575 is not set
42217 +
42218 +#
42219 +# Kernel options
42220 +#
42221 +# CONFIG_HIGHMEM is not set
42222 +# CONFIG_TICK_ONESHOT is not set
42223 +# CONFIG_NO_HZ is not set
42224 +# CONFIG_HIGH_RES_TIMERS is not set
42225 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
42226 +# CONFIG_HZ_100 is not set
42227 +CONFIG_HZ_250=y
42228 +# CONFIG_HZ_300 is not set
42229 +# CONFIG_HZ_1000 is not set
42230 +CONFIG_HZ=250
42231 +# CONFIG_SCHED_HRTICK is not set
42232 +CONFIG_PREEMPT_NONE=y
42233 +# CONFIG_PREEMPT_VOLUNTARY is not set
42234 +# CONFIG_PREEMPT is not set
42235 +CONFIG_BINFMT_ELF=y
42236 +CONFIG_BINFMT_MISC=y
42237 +# CONFIG_MATH_EMULATION is not set
42238 +# CONFIG_IOMMU_HELPER is not set
42239 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
42240 +CONFIG_ARCH_HAS_WALK_MEMORY=y
42241 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
42242 +CONFIG_ARCH_FLATMEM_ENABLE=y
42243 +CONFIG_ARCH_POPULATES_NODE_MAP=y
42244 +CONFIG_SELECT_MEMORY_MODEL=y
42245 +CONFIG_FLATMEM_MANUAL=y
42246 +# CONFIG_DISCONTIGMEM_MANUAL is not set
42247 +# CONFIG_SPARSEMEM_MANUAL is not set
42248 +CONFIG_FLATMEM=y
42249 +CONFIG_FLAT_NODE_MEM_MAP=y
42250 +# CONFIG_SPARSEMEM_STATIC is not set
42251 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
42252 +CONFIG_SPLIT_PTLOCK_CPUS=4
42253 +# CONFIG_RESOURCES_64BIT is not set
42254 +CONFIG_ZONE_DMA_FLAG=1
42255 +CONFIG_BOUNCE=y
42256 +CONFIG_VIRT_TO_BUS=y
42257 +CONFIG_PROC_DEVICETREE=y
42258 +# CONFIG_CMDLINE_BOOL is not set
42259 +# CONFIG_PM is not set
42260 +# CONFIG_SECCOMP is not set
42261 +CONFIG_ISA_DMA_API=y
42262 +
42263 +#
42264 +# Bus options
42265 +#
42266 +CONFIG_ZONE_DMA=y
42267 +CONFIG_FSL_SOC=y
42268 +# CONFIG_PCI is not set
42269 +# CONFIG_PCI_DOMAINS is not set
42270 +# CONFIG_PCI_SYSCALL is not set
42271 +# CONFIG_ARCH_SUPPORTS_MSI is not set
42272 +# CONFIG_PCCARD is not set
42273 +
42274 +#
42275 +# Advanced setup
42276 +#
42277 +# CONFIG_ADVANCED_OPTIONS is not set
42278 +
42279 +#
42280 +# Default settings for advanced configuration options are used
42281 +#
42282 +CONFIG_HIGHMEM_START=0xfe000000
42283 +CONFIG_LOWMEM_SIZE=0x30000000
42284 +CONFIG_KERNEL_START=0xc0000000
42285 +CONFIG_TASK_SIZE=0xc0000000
42286 +CONFIG_BOOT_LOAD=0x00800000
42287 +
42288 +#
42289 +# Networking
42290 +#
42291 +CONFIG_NET=y
42292 +
42293 +#
42294 +# Networking options
42295 +#
42296 +CONFIG_PACKET=y
42297 +# CONFIG_PACKET_MMAP is not set
42298 +CONFIG_UNIX=y
42299 +CONFIG_XFRM=y
42300 +CONFIG_XFRM_USER=y
42301 +# CONFIG_XFRM_SUB_POLICY is not set
42302 +# CONFIG_XFRM_MIGRATE is not set
42303 +# CONFIG_XFRM_STATISTICS is not set
42304 +# CONFIG_NET_KEY is not set
42305 +CONFIG_INET=y
42306 +CONFIG_IP_MULTICAST=y
42307 +# CONFIG_IP_ADVANCED_ROUTER is not set
42308 +CONFIG_IP_FIB_HASH=y
42309 +CONFIG_IP_PNP=y
42310 +CONFIG_IP_PNP_DHCP=y
42311 +CONFIG_IP_PNP_BOOTP=y
42312 +# CONFIG_IP_PNP_RARP is not set
42313 +# CONFIG_NET_IPIP is not set
42314 +# CONFIG_NET_IPGRE is not set
42315 +# CONFIG_IP_MROUTE is not set
42316 +# CONFIG_ARPD is not set
42317 +CONFIG_SYN_COOKIES=y
42318 +# CONFIG_INET_AH is not set
42319 +# CONFIG_INET_ESP is not set
42320 +# CONFIG_INET_IPCOMP is not set
42321 +# CONFIG_INET_XFRM_TUNNEL is not set
42322 +# CONFIG_INET_TUNNEL is not set
42323 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
42324 +CONFIG_INET_XFRM_MODE_TUNNEL=y
42325 +CONFIG_INET_XFRM_MODE_BEET=y
42326 +# CONFIG_INET_LRO is not set
42327 +CONFIG_INET_DIAG=y
42328 +CONFIG_INET_TCP_DIAG=y
42329 +# CONFIG_TCP_CONG_ADVANCED is not set
42330 +CONFIG_TCP_CONG_CUBIC=y
42331 +CONFIG_DEFAULT_TCP_CONG="cubic"
42332 +# CONFIG_TCP_MD5SIG is not set
42333 +# CONFIG_IPV6 is not set
42334 +# CONFIG_INET6_XFRM_TUNNEL is not set
42335 +# CONFIG_INET6_TUNNEL is not set
42336 +# CONFIG_NETWORK_SECMARK is not set
42337 +# CONFIG_NETFILTER is not set
42338 +# CONFIG_IP_DCCP is not set
42339 +# CONFIG_IP_SCTP is not set
42340 +# CONFIG_TIPC is not set
42341 +# CONFIG_ATM is not set
42342 +# CONFIG_BRIDGE is not set
42343 +# CONFIG_VLAN_8021Q is not set
42344 +# CONFIG_DECNET is not set
42345 +# CONFIG_LLC2 is not set
42346 +# CONFIG_IPX is not set
42347 +# CONFIG_ATALK is not set
42348 +# CONFIG_X25 is not set
42349 +# CONFIG_LAPB is not set
42350 +# CONFIG_ECONET is not set
42351 +# CONFIG_WAN_ROUTER is not set
42352 +# CONFIG_NET_SCHED is not set
42353 +
42354 +#
42355 +# Network testing
42356 +#
42357 +# CONFIG_NET_PKTGEN is not set
42358 +# CONFIG_HAMRADIO is not set
42359 +# CONFIG_CAN is not set
42360 +# CONFIG_IRDA is not set
42361 +# CONFIG_BT is not set
42362 +# CONFIG_AF_RXRPC is not set
42363 +
42364 +#
42365 +# Wireless
42366 +#
42367 +# CONFIG_CFG80211 is not set
42368 +# CONFIG_WIRELESS_EXT is not set
42369 +# CONFIG_MAC80211 is not set
42370 +# CONFIG_IEEE80211 is not set
42371 +# CONFIG_RFKILL is not set
42372 +# CONFIG_NET_9P is not set
42373 +
42374 +#
42375 +# Device Drivers
42376 +#
42377 +
42378 +#
42379 +# Generic Driver Options
42380 +#
42381 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
42382 +CONFIG_STANDALONE=y
42383 +CONFIG_PREVENT_FIRMWARE_BUILD=y
42384 +# CONFIG_FW_LOADER is not set
42385 +# CONFIG_DEBUG_DRIVER is not set
42386 +# CONFIG_DEBUG_DEVRES is not set
42387 +# CONFIG_SYS_HYPERVISOR is not set
42388 +# CONFIG_CONNECTOR is not set
42389 +# CONFIG_MTD is not set
42390 +CONFIG_OF_DEVICE=y
42391 +# CONFIG_PARPORT is not set
42392 +CONFIG_BLK_DEV=y
42393 +# CONFIG_BLK_DEV_FD is not set
42394 +# CONFIG_BLK_DEV_COW_COMMON is not set
42395 +CONFIG_BLK_DEV_LOOP=y
42396 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
42397 +# CONFIG_BLK_DEV_NBD is not set
42398 +CONFIG_BLK_DEV_RAM=y
42399 +CONFIG_BLK_DEV_RAM_COUNT=16
42400 +CONFIG_BLK_DEV_RAM_SIZE=32768
42401 +# CONFIG_BLK_DEV_XIP is not set
42402 +# CONFIG_CDROM_PKTCDVD is not set
42403 +# CONFIG_ATA_OVER_ETH is not set
42404 +CONFIG_MISC_DEVICES=y
42405 +# CONFIG_EEPROM_93CX6 is not set
42406 +# CONFIG_ENCLOSURE_SERVICES is not set
42407 +CONFIG_HAVE_IDE=y
42408 +# CONFIG_IDE is not set
42409 +
42410 +#
42411 +# SCSI device support
42412 +#
42413 +# CONFIG_RAID_ATTRS is not set
42414 +# CONFIG_SCSI is not set
42415 +# CONFIG_SCSI_DMA is not set
42416 +# CONFIG_SCSI_NETLINK is not set
42417 +# CONFIG_ATA is not set
42418 +# CONFIG_MD is not set
42419 +# CONFIG_MACINTOSH_DRIVERS is not set
42420 +CONFIG_NETDEVICES=y
42421 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
42422 +# CONFIG_DUMMY is not set
42423 +# CONFIG_BONDING is not set
42424 +# CONFIG_MACVLAN is not set
42425 +# CONFIG_EQUALIZER is not set
42426 +# CONFIG_TUN is not set
42427 +# CONFIG_VETH is not set
42428 +CONFIG_PHYLIB=y
42429 +
42430 +#
42431 +# MII PHY device drivers
42432 +#
42433 +# CONFIG_MARVELL_PHY is not set
42434 +# CONFIG_DAVICOM_PHY is not set
42435 +# CONFIG_QSEMI_PHY is not set
42436 +# CONFIG_LXT_PHY is not set
42437 +# CONFIG_CICADA_PHY is not set
42438 +# CONFIG_VITESSE_PHY is not set
42439 +# CONFIG_SMSC_PHY is not set
42440 +CONFIG_BROADCOM_PHY=y
42441 +# CONFIG_ICPLUS_PHY is not set
42442 +# CONFIG_REALTEK_PHY is not set
42443 +# CONFIG_FIXED_PHY is not set
42444 +# CONFIG_MDIO_BITBANG is not set
42445 +CONFIG_NET_ETHERNET=y
42446 +CONFIG_MII=y
42447 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
42448 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
42449 +# CONFIG_IBM_NEW_EMAC_TAH is not set
42450 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
42451 +# CONFIG_B44 is not set
42452 +CONFIG_NETDEV_1000=y
42453 +# CONFIG_E1000E_ENABLED is not set
42454 +CONFIG_GIANFAR=y
42455 +CONFIG_GFAR_NAPI=y
42456 +CONFIG_NETDEV_10000=y
42457 +
42458 +#
42459 +# Wireless LAN
42460 +#
42461 +# CONFIG_WLAN_PRE80211 is not set
42462 +# CONFIG_WLAN_80211 is not set
42463 +# CONFIG_WAN is not set
42464 +# CONFIG_PPP is not set
42465 +# CONFIG_SLIP is not set
42466 +# CONFIG_NETCONSOLE is not set
42467 +# CONFIG_NETPOLL is not set
42468 +# CONFIG_NET_POLL_CONTROLLER is not set
42469 +# CONFIG_ISDN is not set
42470 +# CONFIG_PHONE is not set
42471 +
42472 +#
42473 +# Input device support
42474 +#
42475 +CONFIG_INPUT=y
42476 +# CONFIG_INPUT_FF_MEMLESS is not set
42477 +# CONFIG_INPUT_POLLDEV is not set
42478 +
42479 +#
42480 +# Userland interfaces
42481 +#
42482 +# CONFIG_INPUT_MOUSEDEV is not set
42483 +# CONFIG_INPUT_JOYDEV is not set
42484 +# CONFIG_INPUT_EVDEV is not set
42485 +# CONFIG_INPUT_EVBUG is not set
42486 +
42487 +#
42488 +# Input Device Drivers
42489 +#
42490 +# CONFIG_INPUT_KEYBOARD is not set
42491 +# CONFIG_INPUT_MOUSE is not set
42492 +# CONFIG_INPUT_JOYSTICK is not set
42493 +# CONFIG_INPUT_TABLET is not set
42494 +# CONFIG_INPUT_TOUCHSCREEN is not set
42495 +# CONFIG_INPUT_MISC is not set
42496 +
42497 +#
42498 +# Hardware I/O ports
42499 +#
42500 +# CONFIG_SERIO is not set
42501 +# CONFIG_GAMEPORT is not set
42502 +
42503 +#
42504 +# Character devices
42505 +#
42506 +# CONFIG_VT is not set
42507 +# CONFIG_SERIAL_NONSTANDARD is not set
42508 +
42509 +#
42510 +# Serial drivers
42511 +#
42512 +CONFIG_SERIAL_8250=y
42513 +CONFIG_SERIAL_8250_CONSOLE=y
42514 +CONFIG_SERIAL_8250_NR_UARTS=2
42515 +CONFIG_SERIAL_8250_RUNTIME_UARTS=2
42516 +# CONFIG_SERIAL_8250_EXTENDED is not set
42517 +CONFIG_SERIAL_8250_SHARE_IRQ=y
42518 +
42519 +#
42520 +# Non-8250 serial port support
42521 +#
42522 +# CONFIG_SERIAL_UARTLITE is not set
42523 +CONFIG_SERIAL_CORE=y
42524 +CONFIG_SERIAL_CORE_CONSOLE=y
42525 +# CONFIG_SERIAL_OF_PLATFORM is not set
42526 +CONFIG_UNIX98_PTYS=y
42527 +CONFIG_LEGACY_PTYS=y
42528 +CONFIG_LEGACY_PTY_COUNT=256
42529 +# CONFIG_IPMI_HANDLER is not set
42530 +# CONFIG_HW_RANDOM is not set
42531 +# CONFIG_NVRAM is not set
42532 +# CONFIG_GEN_RTC is not set
42533 +# CONFIG_R3964 is not set
42534 +# CONFIG_RAW_DRIVER is not set
42535 +# CONFIG_TCG_TPM is not set
42536 +# CONFIG_I2C is not set
42537 +
42538 +#
42539 +# SPI support
42540 +#
42541 +# CONFIG_SPI is not set
42542 +# CONFIG_SPI_MASTER is not set
42543 +# CONFIG_W1 is not set
42544 +# CONFIG_POWER_SUPPLY is not set
42545 +CONFIG_HWMON=y
42546 +# CONFIG_HWMON_VID is not set
42547 +# CONFIG_SENSORS_F71805F is not set
42548 +# CONFIG_SENSORS_F71882FG is not set
42549 +# CONFIG_SENSORS_IT87 is not set
42550 +# CONFIG_SENSORS_PC87360 is not set
42551 +# CONFIG_SENSORS_PC87427 is not set
42552 +# CONFIG_SENSORS_SMSC47M1 is not set
42553 +# CONFIG_SENSORS_SMSC47B397 is not set
42554 +# CONFIG_SENSORS_VT1211 is not set
42555 +# CONFIG_SENSORS_W83627HF is not set
42556 +# CONFIG_SENSORS_W83627EHF is not set
42557 +# CONFIG_HWMON_DEBUG_CHIP is not set
42558 +# CONFIG_THERMAL is not set
42559 +# CONFIG_WATCHDOG is not set
42560 +
42561 +#
42562 +# Sonics Silicon Backplane
42563 +#
42564 +CONFIG_SSB_POSSIBLE=y
42565 +# CONFIG_SSB is not set
42566 +
42567 +#
42568 +# Multifunction device drivers
42569 +#
42570 +# CONFIG_MFD_SM501 is not set
42571 +
42572 +#
42573 +# Multimedia devices
42574 +#
42575 +# CONFIG_VIDEO_DEV is not set
42576 +# CONFIG_DVB_CORE is not set
42577 +CONFIG_DAB=y
42578 +
42579 +#
42580 +# Graphics support
42581 +#
42582 +# CONFIG_VGASTATE is not set
42583 +CONFIG_VIDEO_OUTPUT_CONTROL=y
42584 +# CONFIG_FB is not set
42585 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
42586 +
42587 +#
42588 +# Display device support
42589 +#
42590 +# CONFIG_DISPLAY_SUPPORT is not set
42591 +
42592 +#
42593 +# Sound
42594 +#
42595 +# CONFIG_SOUND is not set
42596 +CONFIG_HID_SUPPORT=y
42597 +CONFIG_HID=y
42598 +# CONFIG_HID_DEBUG is not set
42599 +# CONFIG_HIDRAW is not set
42600 +CONFIG_USB_SUPPORT=y
42601 +# CONFIG_USB_ARCH_HAS_HCD is not set
42602 +# CONFIG_USB_ARCH_HAS_OHCI is not set
42603 +# CONFIG_USB_ARCH_HAS_EHCI is not set
42604 +
42605 +#
42606 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
42607 +#
42608 +# CONFIG_USB_GADGET is not set
42609 +# CONFIG_MMC is not set
42610 +# CONFIG_MEMSTICK is not set
42611 +# CONFIG_NEW_LEDS is not set
42612 +# CONFIG_EDAC is not set
42613 +CONFIG_RTC_LIB=y
42614 +CONFIG_RTC_CLASS=y
42615 +CONFIG_RTC_HCTOSYS=y
42616 +CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
42617 +# CONFIG_RTC_DEBUG is not set
42618 +
42619 +#
42620 +# RTC interfaces
42621 +#
42622 +CONFIG_RTC_INTF_SYSFS=y
42623 +CONFIG_RTC_INTF_PROC=y
42624 +CONFIG_RTC_INTF_DEV=y
42625 +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
42626 +# CONFIG_RTC_DRV_TEST is not set
42627 +
42628 +#
42629 +# SPI RTC drivers
42630 +#
42631 +
42632 +#
42633 +# Platform RTC drivers
42634 +#
42635 +# CONFIG_RTC_DRV_CMOS is not set
42636 +# CONFIG_RTC_DRV_DS1511 is not set
42637 +# CONFIG_RTC_DRV_DS1553 is not set
42638 +# CONFIG_RTC_DRV_DS1742 is not set
42639 +# CONFIG_RTC_DRV_STK17TA8 is not set
42640 +# CONFIG_RTC_DRV_M48T86 is not set
42641 +CONFIG_RTC_DRV_M48T59=y
42642 +# CONFIG_RTC_DRV_V3020 is not set
42643 +
42644 +#
42645 +# on-CPU RTC drivers
42646 +#
42647 +# CONFIG_DMADEVICES is not set
42648 +
42649 +#
42650 +# Userspace I/O
42651 +#
42652 +# CONFIG_UIO is not set
42653 +
42654 +#
42655 +# File systems
42656 +#
42657 +# CONFIG_EXT2_FS is not set
42658 +# CONFIG_EXT3_FS is not set
42659 +# CONFIG_EXT4DEV_FS is not set
42660 +# CONFIG_REISERFS_FS is not set
42661 +# CONFIG_JFS_FS is not set
42662 +# CONFIG_FS_POSIX_ACL is not set
42663 +# CONFIG_XFS_FS is not set
42664 +# CONFIG_GFS2_FS is not set
42665 +# CONFIG_OCFS2_FS is not set
42666 +CONFIG_DNOTIFY=y
42667 +CONFIG_INOTIFY=y
42668 +CONFIG_INOTIFY_USER=y
42669 +# CONFIG_QUOTA is not set
42670 +# CONFIG_AUTOFS_FS is not set
42671 +# CONFIG_AUTOFS4_FS is not set
42672 +# CONFIG_FUSE_FS is not set
42673 +
42674 +#
42675 +# CD-ROM/DVD Filesystems
42676 +#
42677 +# CONFIG_ISO9660_FS is not set
42678 +# CONFIG_UDF_FS is not set
42679 +
42680 +#
42681 +# DOS/FAT/NT Filesystems
42682 +#
42683 +# CONFIG_MSDOS_FS is not set
42684 +# CONFIG_VFAT_FS is not set
42685 +# CONFIG_NTFS_FS is not set
42686 +
42687 +#
42688 +# Pseudo filesystems
42689 +#
42690 +CONFIG_PROC_FS=y
42691 +CONFIG_PROC_KCORE=y
42692 +CONFIG_PROC_SYSCTL=y
42693 +CONFIG_SYSFS=y
42694 +CONFIG_TMPFS=y
42695 +# CONFIG_TMPFS_POSIX_ACL is not set
42696 +# CONFIG_HUGETLB_PAGE is not set
42697 +# CONFIG_CONFIGFS_FS is not set
42698 +
42699 +#
42700 +# Miscellaneous filesystems
42701 +#
42702 +# CONFIG_ADFS_FS is not set
42703 +# CONFIG_AFFS_FS is not set
42704 +# CONFIG_HFS_FS is not set
42705 +# CONFIG_HFSPLUS_FS is not set
42706 +# CONFIG_BEFS_FS is not set
42707 +# CONFIG_BFS_FS is not set
42708 +# CONFIG_EFS_FS is not set
42709 +# CONFIG_CRAMFS is not set
42710 +# CONFIG_VXFS_FS is not set
42711 +# CONFIG_MINIX_FS is not set
42712 +# CONFIG_HPFS_FS is not set
42713 +# CONFIG_QNX4FS_FS is not set
42714 +# CONFIG_ROMFS_FS is not set
42715 +# CONFIG_SYSV_FS is not set
42716 +# CONFIG_UFS_FS is not set
42717 +CONFIG_NETWORK_FILESYSTEMS=y
42718 +CONFIG_NFS_FS=y
42719 +# CONFIG_NFS_V3 is not set
42720 +# CONFIG_NFS_V4 is not set
42721 +# CONFIG_NFS_DIRECTIO is not set
42722 +# CONFIG_NFSD is not set
42723 +CONFIG_ROOT_NFS=y
42724 +CONFIG_LOCKD=y
42725 +CONFIG_NFS_COMMON=y
42726 +CONFIG_SUNRPC=y
42727 +# CONFIG_SUNRPC_BIND34 is not set
42728 +# CONFIG_RPCSEC_GSS_KRB5 is not set
42729 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
42730 +# CONFIG_SMB_FS is not set
42731 +# CONFIG_CIFS is not set
42732 +# CONFIG_NCP_FS is not set
42733 +# CONFIG_CODA_FS is not set
42734 +# CONFIG_AFS_FS is not set
42735 +
42736 +#
42737 +# Partition Types
42738 +#
42739 +CONFIG_PARTITION_ADVANCED=y
42740 +# CONFIG_ACORN_PARTITION is not set
42741 +# CONFIG_OSF_PARTITION is not set
42742 +# CONFIG_AMIGA_PARTITION is not set
42743 +# CONFIG_ATARI_PARTITION is not set
42744 +# CONFIG_MAC_PARTITION is not set
42745 +# CONFIG_MSDOS_PARTITION is not set
42746 +# CONFIG_LDM_PARTITION is not set
42747 +# CONFIG_SGI_PARTITION is not set
42748 +# CONFIG_ULTRIX_PARTITION is not set
42749 +# CONFIG_SUN_PARTITION is not set
42750 +# CONFIG_KARMA_PARTITION is not set
42751 +# CONFIG_EFI_PARTITION is not set
42752 +# CONFIG_SYSV68_PARTITION is not set
42753 +# CONFIG_NLS is not set
42754 +# CONFIG_DLM is not set
42755 +
42756 +#
42757 +# Library routines
42758 +#
42759 +CONFIG_BITREVERSE=y
42760 +# CONFIG_CRC_CCITT is not set
42761 +# CONFIG_CRC16 is not set
42762 +# CONFIG_CRC_ITU_T is not set
42763 +CONFIG_CRC32=y
42764 +# CONFIG_CRC7 is not set
42765 +# CONFIG_LIBCRC32C is not set
42766 +CONFIG_PLIST=y
42767 +CONFIG_HAS_IOMEM=y
42768 +CONFIG_HAS_IOPORT=y
42769 +CONFIG_HAS_DMA=y
42770 +
42771 +#
42772 +# Kernel hacking
42773 +#
42774 +# CONFIG_PRINTK_TIME is not set
42775 +CONFIG_ENABLE_WARN_DEPRECATED=y
42776 +CONFIG_ENABLE_MUST_CHECK=y
42777 +CONFIG_MAGIC_SYSRQ=y
42778 +# CONFIG_UNUSED_SYMBOLS is not set
42779 +# CONFIG_DEBUG_FS is not set
42780 +# CONFIG_HEADERS_CHECK is not set
42781 +CONFIG_DEBUG_KERNEL=y
42782 +# CONFIG_DEBUG_SHIRQ is not set
42783 +CONFIG_DETECT_SOFTLOCKUP=y
42784 +CONFIG_SCHED_DEBUG=y
42785 +# CONFIG_SCHEDSTATS is not set
42786 +# CONFIG_TIMER_STATS is not set
42787 +# CONFIG_DEBUG_SLAB is not set
42788 +# CONFIG_DEBUG_RT_MUTEXES is not set
42789 +# CONFIG_RT_MUTEX_TESTER is not set
42790 +# CONFIG_DEBUG_SPINLOCK is not set
42791 +CONFIG_DEBUG_MUTEXES=y
42792 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
42793 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
42794 +# CONFIG_DEBUG_KOBJECT is not set
42795 +# CONFIG_DEBUG_BUGVERBOSE is not set
42796 +# CONFIG_DEBUG_INFO is not set
42797 +# CONFIG_DEBUG_VM is not set
42798 +# CONFIG_DEBUG_LIST is not set
42799 +# CONFIG_DEBUG_SG is not set
42800 +# CONFIG_BOOT_PRINTK_DELAY is not set
42801 +# CONFIG_BACKTRACE_SELF_TEST is not set
42802 +# CONFIG_FAULT_INJECTION is not set
42803 +# CONFIG_SAMPLES is not set
42804 +# CONFIG_DEBUG_STACKOVERFLOW is not set
42805 +# CONFIG_DEBUG_STACK_USAGE is not set
42806 +# CONFIG_DEBUG_PAGEALLOC is not set
42807 +# CONFIG_DEBUGGER is not set
42808 +# CONFIG_BDI_SWITCH is not set
42809 +CONFIG_PPC_EARLY_DEBUG=y
42810 +# CONFIG_PPC_EARLY_DEBUG_LPAR is not set
42811 +# CONFIG_PPC_EARLY_DEBUG_G5 is not set
42812 +# CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set
42813 +# CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set
42814 +# CONFIG_PPC_EARLY_DEBUG_MAPLE is not set
42815 +# CONFIG_PPC_EARLY_DEBUG_ISERIES is not set
42816 +# CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set
42817 +# CONFIG_PPC_EARLY_DEBUG_BEAT is not set
42818 +# CONFIG_PPC_EARLY_DEBUG_44x is not set
42819 +# CONFIG_PPC_EARLY_DEBUG_40x is not set
42820 +# CONFIG_PPC_EARLY_DEBUG_CPM is not set
42821 +
42822 +#
42823 +# Security options
42824 +#
42825 +# CONFIG_KEYS is not set
42826 +# CONFIG_SECURITY is not set
42827 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
42828 +CONFIG_CRYPTO=y
42829 +# CONFIG_CRYPTO_SEQIV is not set
42830 +# CONFIG_CRYPTO_MANAGER is not set
42831 +# CONFIG_CRYPTO_HMAC is not set
42832 +# CONFIG_CRYPTO_XCBC is not set
42833 +# CONFIG_CRYPTO_NULL is not set
42834 +# CONFIG_CRYPTO_MD4 is not set
42835 +# CONFIG_CRYPTO_MD5 is not set
42836 +# CONFIG_CRYPTO_SHA1 is not set
42837 +# CONFIG_CRYPTO_SHA256 is not set
42838 +# CONFIG_CRYPTO_SHA512 is not set
42839 +# CONFIG_CRYPTO_WP512 is not set
42840 +# CONFIG_CRYPTO_TGR192 is not set
42841 +# CONFIG_CRYPTO_GF128MUL is not set
42842 +# CONFIG_CRYPTO_ECB is not set
42843 +# CONFIG_CRYPTO_CBC is not set
42844 +# CONFIG_CRYPTO_PCBC is not set
42845 +# CONFIG_CRYPTO_LRW is not set
42846 +# CONFIG_CRYPTO_XTS is not set
42847 +# CONFIG_CRYPTO_CTR is not set
42848 +# CONFIG_CRYPTO_GCM is not set
42849 +# CONFIG_CRYPTO_CCM is not set
42850 +# CONFIG_CRYPTO_CRYPTD is not set
42851 +# CONFIG_CRYPTO_DES is not set
42852 +# CONFIG_CRYPTO_FCRYPT is not set
42853 +# CONFIG_CRYPTO_BLOWFISH is not set
42854 +# CONFIG_CRYPTO_TWOFISH is not set
42855 +# CONFIG_CRYPTO_SERPENT is not set
42856 +# CONFIG_CRYPTO_AES is not set
42857 +# CONFIG_CRYPTO_CAST5 is not set
42858 +# CONFIG_CRYPTO_CAST6 is not set
42859 +# CONFIG_CRYPTO_TEA is not set
42860 +# CONFIG_CRYPTO_ARC4 is not set
42861 +# CONFIG_CRYPTO_KHAZAD is not set
42862 +# CONFIG_CRYPTO_ANUBIS is not set
42863 +# CONFIG_CRYPTO_SEED is not set
42864 +# CONFIG_CRYPTO_SALSA20 is not set
42865 +# CONFIG_CRYPTO_DEFLATE is not set
42866 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
42867 +# CONFIG_CRYPTO_CRC32C is not set
42868 +# CONFIG_CRYPTO_CAMELLIA is not set
42869 +# CONFIG_CRYPTO_AUTHENC is not set
42870 +# CONFIG_CRYPTO_LZO is not set
42871 +CONFIG_CRYPTO_HW=y
42872 +# CONFIG_PPC_CLOCK is not set
42873 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/stx_gp3_defconfig
42874 ===================================================================
42875 --- /dev/null
42876 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/stx_gp3_defconfig
42877 @@ -0,0 +1,1253 @@
42878 +#
42879 +# Automatically generated make config: don't edit
42880 +# Linux kernel version: 2.6.25-rc6
42881 +# Mon Mar 24 08:48:42 2008
42882 +#
42883 +# CONFIG_PPC64 is not set
42884 +
42885 +#
42886 +# Processor support
42887 +#
42888 +# CONFIG_6xx is not set
42889 +CONFIG_PPC_85xx=y
42890 +# CONFIG_PPC_8xx is not set
42891 +# CONFIG_40x is not set
42892 +# CONFIG_44x is not set
42893 +# CONFIG_E200 is not set
42894 +CONFIG_E500=y
42895 +CONFIG_BOOKE=y
42896 +CONFIG_FSL_BOOKE=y
42897 +CONFIG_FSL_EMB_PERFMON=y
42898 +# CONFIG_PHYS_64BIT is not set
42899 +CONFIG_SPE=y
42900 +# CONFIG_PPC_MM_SLICES is not set
42901 +CONFIG_PPC32=y
42902 +CONFIG_WORD_SIZE=32
42903 +CONFIG_PPC_MERGE=y
42904 +CONFIG_MMU=y
42905 +CONFIG_GENERIC_CMOS_UPDATE=y
42906 +CONFIG_GENERIC_TIME=y
42907 +CONFIG_GENERIC_TIME_VSYSCALL=y
42908 +CONFIG_GENERIC_CLOCKEVENTS=y
42909 +CONFIG_GENERIC_HARDIRQS=y
42910 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
42911 +CONFIG_IRQ_PER_CPU=y
42912 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
42913 +CONFIG_ARCH_HAS_ILOG2_U32=y
42914 +CONFIG_GENERIC_HWEIGHT=y
42915 +CONFIG_GENERIC_CALIBRATE_DELAY=y
42916 +CONFIG_GENERIC_FIND_NEXT_BIT=y
42917 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
42918 +CONFIG_PPC=y
42919 +CONFIG_EARLY_PRINTK=y
42920 +CONFIG_GENERIC_NVRAM=y
42921 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
42922 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
42923 +CONFIG_PPC_OF=y
42924 +CONFIG_OF=y
42925 +CONFIG_PPC_UDBG_16550=y
42926 +# CONFIG_GENERIC_TBSYNC is not set
42927 +CONFIG_AUDIT_ARCH=y
42928 +CONFIG_GENERIC_BUG=y
42929 +CONFIG_DEFAULT_UIMAGE=y
42930 +# CONFIG_PPC_DCR_NATIVE is not set
42931 +# CONFIG_PPC_DCR_MMIO is not set
42932 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
42933 +
42934 +#
42935 +# General setup
42936 +#
42937 +CONFIG_EXPERIMENTAL=y
42938 +CONFIG_BROKEN_ON_SMP=y
42939 +CONFIG_INIT_ENV_ARG_LIMIT=32
42940 +CONFIG_LOCALVERSION=""
42941 +CONFIG_LOCALVERSION_AUTO=y
42942 +CONFIG_SWAP=y
42943 +CONFIG_SYSVIPC=y
42944 +CONFIG_SYSVIPC_SYSCTL=y
42945 +# CONFIG_POSIX_MQUEUE is not set
42946 +# CONFIG_BSD_PROCESS_ACCT is not set
42947 +# CONFIG_TASKSTATS is not set
42948 +# CONFIG_AUDIT is not set
42949 +# CONFIG_IKCONFIG is not set
42950 +CONFIG_LOG_BUF_SHIFT=14
42951 +# CONFIG_CGROUPS is not set
42952 +CONFIG_GROUP_SCHED=y
42953 +CONFIG_FAIR_GROUP_SCHED=y
42954 +# CONFIG_RT_GROUP_SCHED is not set
42955 +CONFIG_USER_SCHED=y
42956 +# CONFIG_CGROUP_SCHED is not set
42957 +CONFIG_SYSFS_DEPRECATED=y
42958 +CONFIG_SYSFS_DEPRECATED_V2=y
42959 +# CONFIG_RELAY is not set
42960 +# CONFIG_NAMESPACES is not set
42961 +CONFIG_BLK_DEV_INITRD=y
42962 +CONFIG_INITRAMFS_SOURCE=""
42963 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
42964 +CONFIG_SYSCTL=y
42965 +CONFIG_EMBEDDED=y
42966 +CONFIG_SYSCTL_SYSCALL=y
42967 +CONFIG_KALLSYMS=y
42968 +# CONFIG_KALLSYMS_ALL is not set
42969 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
42970 +CONFIG_HOTPLUG=y
42971 +CONFIG_PRINTK=y
42972 +CONFIG_BUG=y
42973 +CONFIG_ELF_CORE=y
42974 +CONFIG_COMPAT_BRK=y
42975 +CONFIG_BASE_FULL=y
42976 +CONFIG_FUTEX=y
42977 +CONFIG_ANON_INODES=y
42978 +CONFIG_EPOLL=y
42979 +CONFIG_SIGNALFD=y
42980 +CONFIG_TIMERFD=y
42981 +CONFIG_EVENTFD=y
42982 +CONFIG_SHMEM=y
42983 +CONFIG_VM_EVENT_COUNTERS=y
42984 +CONFIG_SLUB_DEBUG=y
42985 +# CONFIG_SLAB is not set
42986 +CONFIG_SLUB=y
42987 +# CONFIG_SLOB is not set
42988 +# CONFIG_PROFILING is not set
42989 +# CONFIG_MARKERS is not set
42990 +CONFIG_HAVE_OPROFILE=y
42991 +# CONFIG_KPROBES is not set
42992 +CONFIG_HAVE_KPROBES=y
42993 +CONFIG_HAVE_KRETPROBES=y
42994 +CONFIG_PROC_PAGE_MONITOR=y
42995 +CONFIG_SLABINFO=y
42996 +CONFIG_RT_MUTEXES=y
42997 +# CONFIG_TINY_SHMEM is not set
42998 +CONFIG_BASE_SMALL=0
42999 +CONFIG_MODULES=y
43000 +# CONFIG_MODULE_UNLOAD is not set
43001 +CONFIG_MODVERSIONS=y
43002 +# CONFIG_MODULE_SRCVERSION_ALL is not set
43003 +CONFIG_KMOD=y
43004 +CONFIG_BLOCK=y
43005 +# CONFIG_LBD is not set
43006 +# CONFIG_BLK_DEV_IO_TRACE is not set
43007 +# CONFIG_LSF is not set
43008 +# CONFIG_BLK_DEV_BSG is not set
43009 +
43010 +#
43011 +# IO Schedulers
43012 +#
43013 +CONFIG_IOSCHED_NOOP=y
43014 +CONFIG_IOSCHED_AS=y
43015 +CONFIG_IOSCHED_DEADLINE=y
43016 +CONFIG_IOSCHED_CFQ=y
43017 +# CONFIG_DEFAULT_AS is not set
43018 +# CONFIG_DEFAULT_DEADLINE is not set
43019 +CONFIG_DEFAULT_CFQ=y
43020 +# CONFIG_DEFAULT_NOOP is not set
43021 +CONFIG_DEFAULT_IOSCHED="cfq"
43022 +CONFIG_CLASSIC_RCU=y
43023 +
43024 +#
43025 +# Platform support
43026 +#
43027 +# CONFIG_PPC_MPC512x is not set
43028 +# CONFIG_PPC_MPC5121 is not set
43029 +# CONFIG_PPC_CELL is not set
43030 +# CONFIG_PPC_CELL_NATIVE is not set
43031 +# CONFIG_PQ2ADS is not set
43032 +CONFIG_MPC85xx=y
43033 +# CONFIG_MPC8540_ADS is not set
43034 +# CONFIG_MPC8560_ADS is not set
43035 +# CONFIG_MPC85xx_CDS is not set
43036 +# CONFIG_MPC85xx_MDS is not set
43037 +# CONFIG_MPC85xx_DS is not set
43038 +CONFIG_STX_GP3=y
43039 +# CONFIG_TQM8540 is not set
43040 +# CONFIG_TQM8541 is not set
43041 +# CONFIG_TQM8555 is not set
43042 +# CONFIG_TQM8560 is not set
43043 +# CONFIG_SBC8548 is not set
43044 +# CONFIG_SBC8560 is not set
43045 +# CONFIG_IPIC is not set
43046 +CONFIG_MPIC=y
43047 +# CONFIG_MPIC_WEIRD is not set
43048 +# CONFIG_PPC_I8259 is not set
43049 +# CONFIG_PPC_RTAS is not set
43050 +# CONFIG_MMIO_NVRAM is not set
43051 +# CONFIG_PPC_MPC106 is not set
43052 +# CONFIG_PPC_970_NAP is not set
43053 +# CONFIG_PPC_INDIRECT_IO is not set
43054 +# CONFIG_GENERIC_IOMAP is not set
43055 +# CONFIG_CPU_FREQ is not set
43056 +CONFIG_CPM2=y
43057 +CONFIG_PPC_CPM_NEW_BINDING=y
43058 +# CONFIG_FSL_ULI1575 is not set
43059 +CONFIG_CPM=y
43060 +
43061 +#
43062 +# Kernel options
43063 +#
43064 +CONFIG_HIGHMEM=y
43065 +# CONFIG_TICK_ONESHOT is not set
43066 +# CONFIG_NO_HZ is not set
43067 +# CONFIG_HIGH_RES_TIMERS is not set
43068 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
43069 +# CONFIG_HZ_100 is not set
43070 +CONFIG_HZ_250=y
43071 +# CONFIG_HZ_300 is not set
43072 +# CONFIG_HZ_1000 is not set
43073 +CONFIG_HZ=250
43074 +# CONFIG_SCHED_HRTICK is not set
43075 +CONFIG_PREEMPT_NONE=y
43076 +# CONFIG_PREEMPT_VOLUNTARY is not set
43077 +# CONFIG_PREEMPT is not set
43078 +CONFIG_BINFMT_ELF=y
43079 +CONFIG_BINFMT_MISC=m
43080 +CONFIG_MATH_EMULATION=y
43081 +# CONFIG_IOMMU_HELPER is not set
43082 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
43083 +CONFIG_ARCH_HAS_WALK_MEMORY=y
43084 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
43085 +CONFIG_ARCH_FLATMEM_ENABLE=y
43086 +CONFIG_ARCH_POPULATES_NODE_MAP=y
43087 +CONFIG_SELECT_MEMORY_MODEL=y
43088 +CONFIG_FLATMEM_MANUAL=y
43089 +# CONFIG_DISCONTIGMEM_MANUAL is not set
43090 +# CONFIG_SPARSEMEM_MANUAL is not set
43091 +CONFIG_FLATMEM=y
43092 +CONFIG_FLAT_NODE_MEM_MAP=y
43093 +# CONFIG_SPARSEMEM_STATIC is not set
43094 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
43095 +CONFIG_SPLIT_PTLOCK_CPUS=4
43096 +# CONFIG_RESOURCES_64BIT is not set
43097 +CONFIG_ZONE_DMA_FLAG=1
43098 +CONFIG_BOUNCE=y
43099 +CONFIG_VIRT_TO_BUS=y
43100 +CONFIG_PROC_DEVICETREE=y
43101 +# CONFIG_CMDLINE_BOOL is not set
43102 +# CONFIG_PM is not set
43103 +CONFIG_SECCOMP=y
43104 +CONFIG_ISA_DMA_API=y
43105 +
43106 +#
43107 +# Bus options
43108 +#
43109 +CONFIG_ZONE_DMA=y
43110 +CONFIG_PPC_INDIRECT_PCI=y
43111 +CONFIG_FSL_SOC=y
43112 +CONFIG_FSL_PCI=y
43113 +CONFIG_PCI=y
43114 +CONFIG_PCI_DOMAINS=y
43115 +CONFIG_PCI_SYSCALL=y
43116 +# CONFIG_PCIEPORTBUS is not set
43117 +CONFIG_ARCH_SUPPORTS_MSI=y
43118 +# CONFIG_PCI_MSI is not set
43119 +CONFIG_PCI_LEGACY=y
43120 +# CONFIG_PCI_DEBUG is not set
43121 +# CONFIG_PCCARD is not set
43122 +# CONFIG_HOTPLUG_PCI is not set
43123 +
43124 +#
43125 +# Advanced setup
43126 +#
43127 +# CONFIG_ADVANCED_OPTIONS is not set
43128 +
43129 +#
43130 +# Default settings for advanced configuration options are used
43131 +#
43132 +CONFIG_HIGHMEM_START=0xfe000000
43133 +CONFIG_LOWMEM_SIZE=0x30000000
43134 +CONFIG_KERNEL_START=0xc0000000
43135 +CONFIG_TASK_SIZE=0xc0000000
43136 +CONFIG_BOOT_LOAD=0x00800000
43137 +
43138 +#
43139 +# Networking
43140 +#
43141 +CONFIG_NET=y
43142 +
43143 +#
43144 +# Networking options
43145 +#
43146 +CONFIG_PACKET=y
43147 +# CONFIG_PACKET_MMAP is not set
43148 +CONFIG_UNIX=y
43149 +CONFIG_XFRM=y
43150 +# CONFIG_XFRM_USER is not set
43151 +# CONFIG_XFRM_SUB_POLICY is not set
43152 +# CONFIG_XFRM_MIGRATE is not set
43153 +# CONFIG_XFRM_STATISTICS is not set
43154 +# CONFIG_NET_KEY is not set
43155 +CONFIG_INET=y
43156 +# CONFIG_IP_MULTICAST is not set
43157 +# CONFIG_IP_ADVANCED_ROUTER is not set
43158 +CONFIG_IP_FIB_HASH=y
43159 +CONFIG_IP_PNP=y
43160 +# CONFIG_IP_PNP_DHCP is not set
43161 +CONFIG_IP_PNP_BOOTP=y
43162 +# CONFIG_IP_PNP_RARP is not set
43163 +# CONFIG_NET_IPIP is not set
43164 +# CONFIG_NET_IPGRE is not set
43165 +# CONFIG_ARPD is not set
43166 +# CONFIG_SYN_COOKIES is not set
43167 +# CONFIG_INET_AH is not set
43168 +# CONFIG_INET_ESP is not set
43169 +# CONFIG_INET_IPCOMP is not set
43170 +# CONFIG_INET_XFRM_TUNNEL is not set
43171 +# CONFIG_INET_TUNNEL is not set
43172 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
43173 +CONFIG_INET_XFRM_MODE_TUNNEL=y
43174 +CONFIG_INET_XFRM_MODE_BEET=y
43175 +# CONFIG_INET_LRO is not set
43176 +CONFIG_INET_DIAG=y
43177 +CONFIG_INET_TCP_DIAG=y
43178 +# CONFIG_TCP_CONG_ADVANCED is not set
43179 +CONFIG_TCP_CONG_CUBIC=y
43180 +CONFIG_DEFAULT_TCP_CONG="cubic"
43181 +# CONFIG_TCP_MD5SIG is not set
43182 +# CONFIG_IP_VS is not set
43183 +# CONFIG_IPV6 is not set
43184 +# CONFIG_INET6_XFRM_TUNNEL is not set
43185 +# CONFIG_INET6_TUNNEL is not set
43186 +# CONFIG_NETWORK_SECMARK is not set
43187 +CONFIG_NETFILTER=y
43188 +# CONFIG_NETFILTER_DEBUG is not set
43189 +CONFIG_NETFILTER_ADVANCED=y
43190 +
43191 +#
43192 +# Core Netfilter Configuration
43193 +#
43194 +# CONFIG_NETFILTER_NETLINK_QUEUE is not set
43195 +# CONFIG_NETFILTER_NETLINK_LOG is not set
43196 +# CONFIG_NF_CONNTRACK is not set
43197 +CONFIG_NETFILTER_XTABLES=m
43198 +# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
43199 +# CONFIG_NETFILTER_XT_TARGET_MARK is not set
43200 +# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
43201 +# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
43202 +# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
43203 +# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
43204 +# CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
43205 +# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
43206 +# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
43207 +# CONFIG_NETFILTER_XT_MATCH_ESP is not set
43208 +# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
43209 +# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
43210 +# CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
43211 +# CONFIG_NETFILTER_XT_MATCH_MAC is not set
43212 +# CONFIG_NETFILTER_XT_MATCH_MARK is not set
43213 +# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
43214 +# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
43215 +# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
43216 +# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
43217 +# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
43218 +# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
43219 +# CONFIG_NETFILTER_XT_MATCH_REALM is not set
43220 +# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
43221 +# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
43222 +# CONFIG_NETFILTER_XT_MATCH_STRING is not set
43223 +# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
43224 +# CONFIG_NETFILTER_XT_MATCH_TIME is not set
43225 +# CONFIG_NETFILTER_XT_MATCH_U32 is not set
43226 +# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
43227 +
43228 +#
43229 +# IP: Netfilter Configuration
43230 +#
43231 +# CONFIG_IP_NF_QUEUE is not set
43232 +CONFIG_IP_NF_IPTABLES=m
43233 +# CONFIG_IP_NF_MATCH_RECENT is not set
43234 +# CONFIG_IP_NF_MATCH_ECN is not set
43235 +# CONFIG_IP_NF_MATCH_AH is not set
43236 +# CONFIG_IP_NF_MATCH_TTL is not set
43237 +# CONFIG_IP_NF_MATCH_ADDRTYPE is not set
43238 +CONFIG_IP_NF_FILTER=m
43239 +# CONFIG_IP_NF_TARGET_REJECT is not set
43240 +# CONFIG_IP_NF_TARGET_LOG is not set
43241 +# CONFIG_IP_NF_TARGET_ULOG is not set
43242 +# CONFIG_IP_NF_MANGLE is not set
43243 +# CONFIG_IP_NF_RAW is not set
43244 +# CONFIG_IP_NF_ARPTABLES is not set
43245 +# CONFIG_IP_DCCP is not set
43246 +# CONFIG_IP_SCTP is not set
43247 +# CONFIG_TIPC is not set
43248 +# CONFIG_ATM is not set
43249 +# CONFIG_BRIDGE is not set
43250 +# CONFIG_VLAN_8021Q is not set
43251 +# CONFIG_DECNET is not set
43252 +# CONFIG_LLC2 is not set
43253 +# CONFIG_IPX is not set
43254 +# CONFIG_ATALK is not set
43255 +# CONFIG_X25 is not set
43256 +# CONFIG_LAPB is not set
43257 +# CONFIG_ECONET is not set
43258 +# CONFIG_WAN_ROUTER is not set
43259 +# CONFIG_NET_SCHED is not set
43260 +
43261 +#
43262 +# Network testing
43263 +#
43264 +CONFIG_NET_PKTGEN=y
43265 +# CONFIG_HAMRADIO is not set
43266 +# CONFIG_CAN is not set
43267 +# CONFIG_IRDA is not set
43268 +# CONFIG_BT is not set
43269 +# CONFIG_AF_RXRPC is not set
43270 +
43271 +#
43272 +# Wireless
43273 +#
43274 +# CONFIG_CFG80211 is not set
43275 +# CONFIG_WIRELESS_EXT is not set
43276 +# CONFIG_MAC80211 is not set
43277 +# CONFIG_IEEE80211 is not set
43278 +# CONFIG_RFKILL is not set
43279 +# CONFIG_NET_9P is not set
43280 +
43281 +#
43282 +# Device Drivers
43283 +#
43284 +
43285 +#
43286 +# Generic Driver Options
43287 +#
43288 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
43289 +CONFIG_STANDALONE=y
43290 +CONFIG_PREVENT_FIRMWARE_BUILD=y
43291 +# CONFIG_FW_LOADER is not set
43292 +# CONFIG_DEBUG_DRIVER is not set
43293 +# CONFIG_DEBUG_DEVRES is not set
43294 +# CONFIG_SYS_HYPERVISOR is not set
43295 +# CONFIG_CONNECTOR is not set
43296 +# CONFIG_MTD is not set
43297 +CONFIG_OF_DEVICE=y
43298 +CONFIG_PARPORT=m
43299 +CONFIG_PARPORT_PC=m
43300 +# CONFIG_PARPORT_PC_FIFO is not set
43301 +# CONFIG_PARPORT_PC_SUPERIO is not set
43302 +# CONFIG_PARPORT_GSC is not set
43303 +# CONFIG_PARPORT_AX88796 is not set
43304 +# CONFIG_PARPORT_1284 is not set
43305 +CONFIG_BLK_DEV=y
43306 +# CONFIG_BLK_DEV_FD is not set
43307 +# CONFIG_PARIDE is not set
43308 +# CONFIG_BLK_CPQ_DA is not set
43309 +# CONFIG_BLK_CPQ_CISS_DA is not set
43310 +# CONFIG_BLK_DEV_DAC960 is not set
43311 +# CONFIG_BLK_DEV_UMEM is not set
43312 +# CONFIG_BLK_DEV_COW_COMMON is not set
43313 +CONFIG_BLK_DEV_LOOP=m
43314 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
43315 +CONFIG_BLK_DEV_NBD=m
43316 +# CONFIG_BLK_DEV_SX8 is not set
43317 +CONFIG_BLK_DEV_RAM=y
43318 +CONFIG_BLK_DEV_RAM_COUNT=16
43319 +CONFIG_BLK_DEV_RAM_SIZE=32768
43320 +# CONFIG_BLK_DEV_XIP is not set
43321 +# CONFIG_CDROM_PKTCDVD is not set
43322 +# CONFIG_ATA_OVER_ETH is not set
43323 +CONFIG_MISC_DEVICES=y
43324 +# CONFIG_PHANTOM is not set
43325 +# CONFIG_EEPROM_93CX6 is not set
43326 +# CONFIG_SGI_IOC4 is not set
43327 +# CONFIG_TIFM_CORE is not set
43328 +# CONFIG_ENCLOSURE_SERVICES is not set
43329 +CONFIG_HAVE_IDE=y
43330 +CONFIG_IDE=y
43331 +CONFIG_IDE_MAX_HWIFS=4
43332 +CONFIG_BLK_DEV_IDE=y
43333 +
43334 +#
43335 +# Please see Documentation/ide/ide.txt for help/info on IDE drives
43336 +#
43337 +# CONFIG_BLK_DEV_IDE_SATA is not set
43338 +CONFIG_BLK_DEV_IDEDISK=y
43339 +# CONFIG_IDEDISK_MULTI_MODE is not set
43340 +CONFIG_BLK_DEV_IDECD=m
43341 +CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y
43342 +# CONFIG_BLK_DEV_IDETAPE is not set
43343 +# CONFIG_BLK_DEV_IDEFLOPPY is not set
43344 +# CONFIG_BLK_DEV_IDESCSI is not set
43345 +# CONFIG_IDE_TASK_IOCTL is not set
43346 +CONFIG_IDE_PROC_FS=y
43347 +
43348 +#
43349 +# IDE chipset support/bugfixes
43350 +#
43351 +CONFIG_IDE_GENERIC=y
43352 +# CONFIG_BLK_DEV_PLATFORM is not set
43353 +
43354 +#
43355 +# PCI IDE chipsets support
43356 +#
43357 +# CONFIG_BLK_DEV_GENERIC is not set
43358 +# CONFIG_BLK_DEV_OPTI621 is not set
43359 +# CONFIG_BLK_DEV_AEC62XX is not set
43360 +# CONFIG_BLK_DEV_ALI15X3 is not set
43361 +# CONFIG_BLK_DEV_AMD74XX is not set
43362 +# CONFIG_BLK_DEV_CMD64X is not set
43363 +# CONFIG_BLK_DEV_TRIFLEX is not set
43364 +# CONFIG_BLK_DEV_CY82C693 is not set
43365 +# CONFIG_BLK_DEV_CS5520 is not set
43366 +# CONFIG_BLK_DEV_CS5530 is not set
43367 +# CONFIG_BLK_DEV_HPT34X is not set
43368 +# CONFIG_BLK_DEV_HPT366 is not set
43369 +# CONFIG_BLK_DEV_JMICRON is not set
43370 +# CONFIG_BLK_DEV_SC1200 is not set
43371 +# CONFIG_BLK_DEV_PIIX is not set
43372 +# CONFIG_BLK_DEV_IT8213 is not set
43373 +# CONFIG_BLK_DEV_IT821X is not set
43374 +# CONFIG_BLK_DEV_NS87415 is not set
43375 +# CONFIG_BLK_DEV_PDC202XX_OLD is not set
43376 +# CONFIG_BLK_DEV_PDC202XX_NEW is not set
43377 +# CONFIG_BLK_DEV_SVWKS is not set
43378 +# CONFIG_BLK_DEV_SIIMAGE is not set
43379 +# CONFIG_BLK_DEV_SL82C105 is not set
43380 +# CONFIG_BLK_DEV_SLC90E66 is not set
43381 +# CONFIG_BLK_DEV_TRM290 is not set
43382 +# CONFIG_BLK_DEV_VIA82CXXX is not set
43383 +# CONFIG_BLK_DEV_TC86C001 is not set
43384 +# CONFIG_BLK_DEV_IDEDMA is not set
43385 +CONFIG_IDE_ARCH_OBSOLETE_INIT=y
43386 +# CONFIG_BLK_DEV_HD is not set
43387 +
43388 +#
43389 +# SCSI device support
43390 +#
43391 +# CONFIG_RAID_ATTRS is not set
43392 +CONFIG_SCSI=m
43393 +CONFIG_SCSI_DMA=y
43394 +# CONFIG_SCSI_TGT is not set
43395 +# CONFIG_SCSI_NETLINK is not set
43396 +CONFIG_SCSI_PROC_FS=y
43397 +
43398 +#
43399 +# SCSI support type (disk, tape, CD-ROM)
43400 +#
43401 +CONFIG_BLK_DEV_SD=m
43402 +CONFIG_CHR_DEV_ST=m
43403 +# CONFIG_CHR_DEV_OSST is not set
43404 +CONFIG_BLK_DEV_SR=m
43405 +# CONFIG_BLK_DEV_SR_VENDOR is not set
43406 +CONFIG_CHR_DEV_SG=m
43407 +# CONFIG_CHR_DEV_SCH is not set
43408 +
43409 +#
43410 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
43411 +#
43412 +CONFIG_SCSI_MULTI_LUN=y
43413 +CONFIG_SCSI_CONSTANTS=y
43414 +# CONFIG_SCSI_LOGGING is not set
43415 +# CONFIG_SCSI_SCAN_ASYNC is not set
43416 +CONFIG_SCSI_WAIT_SCAN=m
43417 +
43418 +#
43419 +# SCSI Transports
43420 +#
43421 +# CONFIG_SCSI_SPI_ATTRS is not set
43422 +# CONFIG_SCSI_FC_ATTRS is not set
43423 +# CONFIG_SCSI_ISCSI_ATTRS is not set
43424 +# CONFIG_SCSI_SAS_LIBSAS is not set
43425 +# CONFIG_SCSI_SRP_ATTRS is not set
43426 +CONFIG_SCSI_LOWLEVEL=y
43427 +# CONFIG_ISCSI_TCP is not set
43428 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
43429 +# CONFIG_SCSI_3W_9XXX is not set
43430 +# CONFIG_SCSI_ACARD is not set
43431 +# CONFIG_SCSI_AACRAID is not set
43432 +# CONFIG_SCSI_AIC7XXX is not set
43433 +# CONFIG_SCSI_AIC7XXX_OLD is not set
43434 +# CONFIG_SCSI_AIC79XX is not set
43435 +# CONFIG_SCSI_AIC94XX is not set
43436 +# CONFIG_SCSI_DPT_I2O is not set
43437 +# CONFIG_SCSI_ADVANSYS is not set
43438 +# CONFIG_SCSI_ARCMSR is not set
43439 +# CONFIG_MEGARAID_NEWGEN is not set
43440 +# CONFIG_MEGARAID_LEGACY is not set
43441 +# CONFIG_MEGARAID_SAS is not set
43442 +# CONFIG_SCSI_HPTIOP is not set
43443 +# CONFIG_SCSI_BUSLOGIC is not set
43444 +# CONFIG_SCSI_DMX3191D is not set
43445 +# CONFIG_SCSI_EATA is not set
43446 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
43447 +# CONFIG_SCSI_GDTH is not set
43448 +# CONFIG_SCSI_IPS is not set
43449 +# CONFIG_SCSI_INITIO is not set
43450 +# CONFIG_SCSI_INIA100 is not set
43451 +# CONFIG_SCSI_PPA is not set
43452 +# CONFIG_SCSI_IMM is not set
43453 +# CONFIG_SCSI_MVSAS is not set
43454 +# CONFIG_SCSI_STEX is not set
43455 +# CONFIG_SCSI_SYM53C8XX_2 is not set
43456 +# CONFIG_SCSI_QLOGIC_1280 is not set
43457 +# CONFIG_SCSI_QLA_FC is not set
43458 +# CONFIG_SCSI_QLA_ISCSI is not set
43459 +# CONFIG_SCSI_LPFC is not set
43460 +# CONFIG_SCSI_DC395x is not set
43461 +# CONFIG_SCSI_DC390T is not set
43462 +# CONFIG_SCSI_NSP32 is not set
43463 +# CONFIG_SCSI_DEBUG is not set
43464 +# CONFIG_SCSI_SRP is not set
43465 +# CONFIG_ATA is not set
43466 +# CONFIG_MD is not set
43467 +# CONFIG_FUSION is not set
43468 +
43469 +#
43470 +# IEEE 1394 (FireWire) support
43471 +#
43472 +# CONFIG_FIREWIRE is not set
43473 +# CONFIG_IEEE1394 is not set
43474 +# CONFIG_I2O is not set
43475 +# CONFIG_MACINTOSH_DRIVERS is not set
43476 +CONFIG_NETDEVICES=y
43477 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
43478 +# CONFIG_DUMMY is not set
43479 +# CONFIG_BONDING is not set
43480 +# CONFIG_MACVLAN is not set
43481 +# CONFIG_EQUALIZER is not set
43482 +# CONFIG_TUN is not set
43483 +# CONFIG_VETH is not set
43484 +# CONFIG_ARCNET is not set
43485 +CONFIG_PHYLIB=y
43486 +
43487 +#
43488 +# MII PHY device drivers
43489 +#
43490 +CONFIG_MARVELL_PHY=y
43491 +# CONFIG_DAVICOM_PHY is not set
43492 +# CONFIG_QSEMI_PHY is not set
43493 +# CONFIG_LXT_PHY is not set
43494 +# CONFIG_CICADA_PHY is not set
43495 +# CONFIG_VITESSE_PHY is not set
43496 +# CONFIG_SMSC_PHY is not set
43497 +# CONFIG_BROADCOM_PHY is not set
43498 +# CONFIG_ICPLUS_PHY is not set
43499 +# CONFIG_REALTEK_PHY is not set
43500 +# CONFIG_FIXED_PHY is not set
43501 +# CONFIG_MDIO_BITBANG is not set
43502 +CONFIG_NET_ETHERNET=y
43503 +# CONFIG_MII is not set
43504 +# CONFIG_HAPPYMEAL is not set
43505 +# CONFIG_SUNGEM is not set
43506 +# CONFIG_CASSINI is not set
43507 +# CONFIG_NET_VENDOR_3COM is not set
43508 +# CONFIG_NET_TULIP is not set
43509 +# CONFIG_HP100 is not set
43510 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
43511 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
43512 +# CONFIG_IBM_NEW_EMAC_TAH is not set
43513 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
43514 +# CONFIG_NET_PCI is not set
43515 +# CONFIG_B44 is not set
43516 +# CONFIG_NET_POCKET is not set
43517 +# CONFIG_FS_ENET is not set
43518 +CONFIG_NETDEV_1000=y
43519 +# CONFIG_ACENIC is not set
43520 +# CONFIG_DL2K is not set
43521 +# CONFIG_E1000 is not set
43522 +# CONFIG_E1000E is not set
43523 +# CONFIG_E1000E_ENABLED is not set
43524 +# CONFIG_IP1000 is not set
43525 +# CONFIG_IGB is not set
43526 +# CONFIG_NS83820 is not set
43527 +# CONFIG_HAMACHI is not set
43528 +# CONFIG_YELLOWFIN is not set
43529 +# CONFIG_R8169 is not set
43530 +# CONFIG_SIS190 is not set
43531 +# CONFIG_SKGE is not set
43532 +# CONFIG_SKY2 is not set
43533 +# CONFIG_SK98LIN is not set
43534 +# CONFIG_VIA_VELOCITY is not set
43535 +# CONFIG_TIGON3 is not set
43536 +# CONFIG_BNX2 is not set
43537 +CONFIG_GIANFAR=y
43538 +CONFIG_GFAR_NAPI=y
43539 +# CONFIG_QLA3XXX is not set
43540 +# CONFIG_ATL1 is not set
43541 +CONFIG_NETDEV_10000=y
43542 +# CONFIG_CHELSIO_T1 is not set
43543 +# CONFIG_CHELSIO_T3 is not set
43544 +# CONFIG_IXGBE is not set
43545 +# CONFIG_IXGB is not set
43546 +# CONFIG_S2IO is not set
43547 +# CONFIG_MYRI10GE is not set
43548 +# CONFIG_NETXEN_NIC is not set
43549 +# CONFIG_NIU is not set
43550 +# CONFIG_MLX4_CORE is not set
43551 +# CONFIG_TEHUTI is not set
43552 +# CONFIG_BNX2X is not set
43553 +# CONFIG_TR is not set
43554 +
43555 +#
43556 +# Wireless LAN
43557 +#
43558 +# CONFIG_WLAN_PRE80211 is not set
43559 +# CONFIG_WLAN_80211 is not set
43560 +# CONFIG_WAN is not set
43561 +# CONFIG_FDDI is not set
43562 +# CONFIG_HIPPI is not set
43563 +# CONFIG_PLIP is not set
43564 +# CONFIG_PPP is not set
43565 +# CONFIG_SLIP is not set
43566 +# CONFIG_NET_FC is not set
43567 +# CONFIG_NETCONSOLE is not set
43568 +# CONFIG_NETPOLL is not set
43569 +# CONFIG_NET_POLL_CONTROLLER is not set
43570 +# CONFIG_ISDN is not set
43571 +# CONFIG_PHONE is not set
43572 +
43573 +#
43574 +# Input device support
43575 +#
43576 +CONFIG_INPUT=y
43577 +# CONFIG_INPUT_FF_MEMLESS is not set
43578 +# CONFIG_INPUT_POLLDEV is not set
43579 +
43580 +#
43581 +# Userland interfaces
43582 +#
43583 +CONFIG_INPUT_MOUSEDEV=y
43584 +CONFIG_INPUT_MOUSEDEV_PSAUX=y
43585 +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280
43586 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1024
43587 +CONFIG_INPUT_JOYDEV=m
43588 +CONFIG_INPUT_EVDEV=m
43589 +# CONFIG_INPUT_EVBUG is not set
43590 +
43591 +#
43592 +# Input Device Drivers
43593 +#
43594 +CONFIG_INPUT_KEYBOARD=y
43595 +CONFIG_KEYBOARD_ATKBD=y
43596 +# CONFIG_KEYBOARD_SUNKBD is not set
43597 +# CONFIG_KEYBOARD_LKKBD is not set
43598 +# CONFIG_KEYBOARD_XTKBD is not set
43599 +# CONFIG_KEYBOARD_NEWTON is not set
43600 +# CONFIG_KEYBOARD_STOWAWAY is not set
43601 +CONFIG_INPUT_MOUSE=y
43602 +CONFIG_MOUSE_PS2=y
43603 +CONFIG_MOUSE_PS2_ALPS=y
43604 +CONFIG_MOUSE_PS2_LOGIPS2PP=y
43605 +CONFIG_MOUSE_PS2_SYNAPTICS=y
43606 +CONFIG_MOUSE_PS2_LIFEBOOK=y
43607 +CONFIG_MOUSE_PS2_TRACKPOINT=y
43608 +# CONFIG_MOUSE_PS2_TOUCHKIT is not set
43609 +# CONFIG_MOUSE_SERIAL is not set
43610 +# CONFIG_MOUSE_APPLETOUCH is not set
43611 +# CONFIG_MOUSE_VSXXXAA is not set
43612 +# CONFIG_INPUT_JOYSTICK is not set
43613 +# CONFIG_INPUT_TABLET is not set
43614 +# CONFIG_INPUT_TOUCHSCREEN is not set
43615 +# CONFIG_INPUT_MISC is not set
43616 +
43617 +#
43618 +# Hardware I/O ports
43619 +#
43620 +CONFIG_SERIO=y
43621 +CONFIG_SERIO_I8042=y
43622 +CONFIG_SERIO_SERPORT=y
43623 +# CONFIG_SERIO_PARKBD is not set
43624 +# CONFIG_SERIO_PCIPS2 is not set
43625 +CONFIG_SERIO_LIBPS2=y
43626 +# CONFIG_SERIO_RAW is not set
43627 +# CONFIG_GAMEPORT is not set
43628 +
43629 +#
43630 +# Character devices
43631 +#
43632 +# CONFIG_VT is not set
43633 +# CONFIG_SERIAL_NONSTANDARD is not set
43634 +# CONFIG_NOZOMI is not set
43635 +
43636 +#
43637 +# Serial drivers
43638 +#
43639 +# CONFIG_SERIAL_8250 is not set
43640 +
43641 +#
43642 +# Non-8250 serial port support
43643 +#
43644 +# CONFIG_SERIAL_UARTLITE is not set
43645 +CONFIG_SERIAL_CORE=y
43646 +CONFIG_SERIAL_CORE_CONSOLE=y
43647 +CONFIG_SERIAL_CPM=y
43648 +CONFIG_SERIAL_CPM_CONSOLE=y
43649 +# CONFIG_SERIAL_CPM_SCC1 is not set
43650 +CONFIG_SERIAL_CPM_SCC2=y
43651 +# CONFIG_SERIAL_CPM_SCC3 is not set
43652 +# CONFIG_SERIAL_CPM_SCC4 is not set
43653 +# CONFIG_SERIAL_CPM_SMC1 is not set
43654 +# CONFIG_SERIAL_CPM_SMC2 is not set
43655 +# CONFIG_SERIAL_JSM is not set
43656 +CONFIG_UNIX98_PTYS=y
43657 +CONFIG_LEGACY_PTYS=y
43658 +CONFIG_LEGACY_PTY_COUNT=256
43659 +CONFIG_PRINTER=m
43660 +# CONFIG_LP_CONSOLE is not set
43661 +# CONFIG_PPDEV is not set
43662 +# CONFIG_IPMI_HANDLER is not set
43663 +CONFIG_HW_RANDOM=m
43664 +# CONFIG_NVRAM is not set
43665 +# CONFIG_GEN_RTC is not set
43666 +# CONFIG_R3964 is not set
43667 +# CONFIG_APPLICOM is not set
43668 +# CONFIG_RAW_DRIVER is not set
43669 +# CONFIG_TCG_TPM is not set
43670 +CONFIG_DEVPORT=y
43671 +CONFIG_I2C=m
43672 +CONFIG_I2C_BOARDINFO=y
43673 +CONFIG_I2C_CHARDEV=m
43674 +
43675 +#
43676 +# I2C Algorithms
43677 +#
43678 +CONFIG_I2C_ALGOBIT=m
43679 +# CONFIG_I2C_ALGOPCF is not set
43680 +# CONFIG_I2C_ALGOPCA is not set
43681 +
43682 +#
43683 +# I2C Hardware Bus support
43684 +#
43685 +# CONFIG_I2C_ALI1535 is not set
43686 +# CONFIG_I2C_ALI1563 is not set
43687 +# CONFIG_I2C_ALI15X3 is not set
43688 +# CONFIG_I2C_AMD756 is not set
43689 +# CONFIG_I2C_AMD8111 is not set
43690 +# CONFIG_I2C_I801 is not set
43691 +# CONFIG_I2C_I810 is not set
43692 +# CONFIG_I2C_PIIX4 is not set
43693 +# CONFIG_I2C_MPC is not set
43694 +# CONFIG_I2C_NFORCE2 is not set
43695 +# CONFIG_I2C_OCORES is not set
43696 +# CONFIG_I2C_PARPORT is not set
43697 +# CONFIG_I2C_PARPORT_LIGHT is not set
43698 +# CONFIG_I2C_PROSAVAGE is not set
43699 +# CONFIG_I2C_SAVAGE4 is not set
43700 +# CONFIG_I2C_SIMTEC is not set
43701 +# CONFIG_I2C_SIS5595 is not set
43702 +# CONFIG_I2C_SIS630 is not set
43703 +# CONFIG_I2C_SIS96X is not set
43704 +# CONFIG_I2C_TAOS_EVM is not set
43705 +# CONFIG_I2C_STUB is not set
43706 +# CONFIG_I2C_VIA is not set
43707 +# CONFIG_I2C_VIAPRO is not set
43708 +# CONFIG_I2C_VOODOO3 is not set
43709 +
43710 +#
43711 +# Miscellaneous I2C Chip support
43712 +#
43713 +# CONFIG_DS1682 is not set
43714 +# CONFIG_SENSORS_EEPROM is not set
43715 +# CONFIG_SENSORS_PCF8574 is not set
43716 +# CONFIG_PCF8575 is not set
43717 +# CONFIG_SENSORS_PCF8591 is not set
43718 +# CONFIG_TPS65010 is not set
43719 +# CONFIG_SENSORS_MAX6875 is not set
43720 +# CONFIG_SENSORS_TSL2550 is not set
43721 +# CONFIG_I2C_DEBUG_CORE is not set
43722 +# CONFIG_I2C_DEBUG_ALGO is not set
43723 +# CONFIG_I2C_DEBUG_BUS is not set
43724 +# CONFIG_I2C_DEBUG_CHIP is not set
43725 +
43726 +#
43727 +# SPI support
43728 +#
43729 +# CONFIG_SPI is not set
43730 +# CONFIG_SPI_MASTER is not set
43731 +# CONFIG_W1 is not set
43732 +# CONFIG_POWER_SUPPLY is not set
43733 +CONFIG_HWMON=y
43734 +# CONFIG_HWMON_VID is not set
43735 +# CONFIG_SENSORS_AD7418 is not set
43736 +# CONFIG_SENSORS_ADM1021 is not set
43737 +# CONFIG_SENSORS_ADM1025 is not set
43738 +# CONFIG_SENSORS_ADM1026 is not set
43739 +# CONFIG_SENSORS_ADM1029 is not set
43740 +# CONFIG_SENSORS_ADM1031 is not set
43741 +# CONFIG_SENSORS_ADM9240 is not set
43742 +# CONFIG_SENSORS_ADT7470 is not set
43743 +# CONFIG_SENSORS_ADT7473 is not set
43744 +# CONFIG_SENSORS_ATXP1 is not set
43745 +# CONFIG_SENSORS_DS1621 is not set
43746 +# CONFIG_SENSORS_I5K_AMB is not set
43747 +# CONFIG_SENSORS_F71805F is not set
43748 +# CONFIG_SENSORS_F71882FG is not set
43749 +# CONFIG_SENSORS_F75375S is not set
43750 +# CONFIG_SENSORS_GL518SM is not set
43751 +# CONFIG_SENSORS_GL520SM is not set
43752 +# CONFIG_SENSORS_IT87 is not set
43753 +# CONFIG_SENSORS_LM63 is not set
43754 +# CONFIG_SENSORS_LM75 is not set
43755 +# CONFIG_SENSORS_LM77 is not set
43756 +# CONFIG_SENSORS_LM78 is not set
43757 +# CONFIG_SENSORS_LM80 is not set
43758 +# CONFIG_SENSORS_LM83 is not set
43759 +# CONFIG_SENSORS_LM85 is not set
43760 +# CONFIG_SENSORS_LM87 is not set
43761 +# CONFIG_SENSORS_LM90 is not set
43762 +# CONFIG_SENSORS_LM92 is not set
43763 +# CONFIG_SENSORS_LM93 is not set
43764 +# CONFIG_SENSORS_MAX1619 is not set
43765 +# CONFIG_SENSORS_MAX6650 is not set
43766 +# CONFIG_SENSORS_PC87360 is not set
43767 +# CONFIG_SENSORS_PC87427 is not set
43768 +# CONFIG_SENSORS_SIS5595 is not set
43769 +# CONFIG_SENSORS_DME1737 is not set
43770 +# CONFIG_SENSORS_SMSC47M1 is not set
43771 +# CONFIG_SENSORS_SMSC47M192 is not set
43772 +# CONFIG_SENSORS_SMSC47B397 is not set
43773 +# CONFIG_SENSORS_ADS7828 is not set
43774 +# CONFIG_SENSORS_THMC50 is not set
43775 +# CONFIG_SENSORS_VIA686A is not set
43776 +# CONFIG_SENSORS_VT1211 is not set
43777 +# CONFIG_SENSORS_VT8231 is not set
43778 +# CONFIG_SENSORS_W83781D is not set
43779 +# CONFIG_SENSORS_W83791D is not set
43780 +# CONFIG_SENSORS_W83792D is not set
43781 +# CONFIG_SENSORS_W83793 is not set
43782 +# CONFIG_SENSORS_W83L785TS is not set
43783 +# CONFIG_SENSORS_W83L786NG is not set
43784 +# CONFIG_SENSORS_W83627HF is not set
43785 +# CONFIG_SENSORS_W83627EHF is not set
43786 +# CONFIG_HWMON_DEBUG_CHIP is not set
43787 +# CONFIG_THERMAL is not set
43788 +# CONFIG_WATCHDOG is not set
43789 +
43790 +#
43791 +# Sonics Silicon Backplane
43792 +#
43793 +CONFIG_SSB_POSSIBLE=y
43794 +# CONFIG_SSB is not set
43795 +
43796 +#
43797 +# Multifunction device drivers
43798 +#
43799 +# CONFIG_MFD_SM501 is not set
43800 +
43801 +#
43802 +# Multimedia devices
43803 +#
43804 +# CONFIG_VIDEO_DEV is not set
43805 +# CONFIG_DVB_CORE is not set
43806 +CONFIG_DAB=y
43807 +
43808 +#
43809 +# Graphics support
43810 +#
43811 +CONFIG_AGP=m
43812 +CONFIG_DRM=m
43813 +# CONFIG_DRM_TDFX is not set
43814 +# CONFIG_DRM_R128 is not set
43815 +# CONFIG_DRM_RADEON is not set
43816 +# CONFIG_DRM_MGA is not set
43817 +# CONFIG_DRM_SIS is not set
43818 +# CONFIG_DRM_VIA is not set
43819 +# CONFIG_DRM_SAVAGE is not set
43820 +# CONFIG_VGASTATE is not set
43821 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
43822 +# CONFIG_FB is not set
43823 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
43824 +
43825 +#
43826 +# Display device support
43827 +#
43828 +# CONFIG_DISPLAY_SUPPORT is not set
43829 +
43830 +#
43831 +# Sound
43832 +#
43833 +CONFIG_SOUND=m
43834 +
43835 +#
43836 +# Advanced Linux Sound Architecture
43837 +#
43838 +# CONFIG_SND is not set
43839 +
43840 +#
43841 +# Open Sound System
43842 +#
43843 +# CONFIG_SOUND_PRIME is not set
43844 +CONFIG_HID_SUPPORT=y
43845 +CONFIG_HID=y
43846 +# CONFIG_HID_DEBUG is not set
43847 +# CONFIG_HIDRAW is not set
43848 +CONFIG_USB_SUPPORT=y
43849 +CONFIG_USB_ARCH_HAS_HCD=y
43850 +CONFIG_USB_ARCH_HAS_OHCI=y
43851 +CONFIG_USB_ARCH_HAS_EHCI=y
43852 +# CONFIG_USB is not set
43853 +
43854 +#
43855 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
43856 +#
43857 +# CONFIG_USB_GADGET is not set
43858 +# CONFIG_MMC is not set
43859 +# CONFIG_MEMSTICK is not set
43860 +# CONFIG_NEW_LEDS is not set
43861 +# CONFIG_INFINIBAND is not set
43862 +# CONFIG_EDAC is not set
43863 +# CONFIG_RTC_CLASS is not set
43864 +# CONFIG_DMADEVICES is not set
43865 +# CONFIG_AUXDISPLAY is not set
43866 +
43867 +#
43868 +# Userspace I/O
43869 +#
43870 +# CONFIG_UIO is not set
43871 +
43872 +#
43873 +# File systems
43874 +#
43875 +CONFIG_EXT2_FS=y
43876 +# CONFIG_EXT2_FS_XATTR is not set
43877 +# CONFIG_EXT2_FS_XIP is not set
43878 +CONFIG_EXT3_FS=y
43879 +CONFIG_EXT3_FS_XATTR=y
43880 +# CONFIG_EXT3_FS_POSIX_ACL is not set
43881 +# CONFIG_EXT3_FS_SECURITY is not set
43882 +# CONFIG_EXT4DEV_FS is not set
43883 +CONFIG_JBD=y
43884 +CONFIG_FS_MBCACHE=y
43885 +# CONFIG_REISERFS_FS is not set
43886 +# CONFIG_JFS_FS is not set
43887 +# CONFIG_FS_POSIX_ACL is not set
43888 +# CONFIG_XFS_FS is not set
43889 +# CONFIG_GFS2_FS is not set
43890 +# CONFIG_OCFS2_FS is not set
43891 +CONFIG_DNOTIFY=y
43892 +CONFIG_INOTIFY=y
43893 +CONFIG_INOTIFY_USER=y
43894 +# CONFIG_QUOTA is not set
43895 +CONFIG_AUTOFS_FS=m
43896 +CONFIG_AUTOFS4_FS=y
43897 +# CONFIG_FUSE_FS is not set
43898 +
43899 +#
43900 +# CD-ROM/DVD Filesystems
43901 +#
43902 +CONFIG_ISO9660_FS=m
43903 +# CONFIG_JOLIET is not set
43904 +# CONFIG_ZISOFS is not set
43905 +CONFIG_UDF_FS=m
43906 +CONFIG_UDF_NLS=y
43907 +
43908 +#
43909 +# DOS/FAT/NT Filesystems
43910 +#
43911 +CONFIG_FAT_FS=m
43912 +CONFIG_MSDOS_FS=m
43913 +CONFIG_VFAT_FS=m
43914 +CONFIG_FAT_DEFAULT_CODEPAGE=437
43915 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
43916 +# CONFIG_NTFS_FS is not set
43917 +
43918 +#
43919 +# Pseudo filesystems
43920 +#
43921 +CONFIG_PROC_FS=y
43922 +# CONFIG_PROC_KCORE is not set
43923 +CONFIG_PROC_SYSCTL=y
43924 +CONFIG_SYSFS=y
43925 +CONFIG_TMPFS=y
43926 +# CONFIG_TMPFS_POSIX_ACL is not set
43927 +# CONFIG_HUGETLB_PAGE is not set
43928 +# CONFIG_CONFIGFS_FS is not set
43929 +
43930 +#
43931 +# Miscellaneous filesystems
43932 +#
43933 +# CONFIG_ADFS_FS is not set
43934 +# CONFIG_AFFS_FS is not set
43935 +# CONFIG_HFS_FS is not set
43936 +# CONFIG_HFSPLUS_FS is not set
43937 +# CONFIG_BEFS_FS is not set
43938 +# CONFIG_BFS_FS is not set
43939 +# CONFIG_EFS_FS is not set
43940 +CONFIG_CRAMFS=m
43941 +# CONFIG_VXFS_FS is not set
43942 +# CONFIG_MINIX_FS is not set
43943 +# CONFIG_HPFS_FS is not set
43944 +# CONFIG_QNX4FS_FS is not set
43945 +# CONFIG_ROMFS_FS is not set
43946 +# CONFIG_SYSV_FS is not set
43947 +# CONFIG_UFS_FS is not set
43948 +CONFIG_NETWORK_FILESYSTEMS=y
43949 +CONFIG_NFS_FS=y
43950 +CONFIG_NFS_V3=y
43951 +# CONFIG_NFS_V3_ACL is not set
43952 +# CONFIG_NFS_V4 is not set
43953 +# CONFIG_NFS_DIRECTIO is not set
43954 +# CONFIG_NFSD is not set
43955 +CONFIG_ROOT_NFS=y
43956 +CONFIG_LOCKD=y
43957 +CONFIG_LOCKD_V4=y
43958 +CONFIG_NFS_COMMON=y
43959 +CONFIG_SUNRPC=y
43960 +# CONFIG_SUNRPC_BIND34 is not set
43961 +# CONFIG_RPCSEC_GSS_KRB5 is not set
43962 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
43963 +CONFIG_SMB_FS=m
43964 +# CONFIG_SMB_NLS_DEFAULT is not set
43965 +# CONFIG_CIFS is not set
43966 +# CONFIG_NCP_FS is not set
43967 +# CONFIG_CODA_FS is not set
43968 +# CONFIG_AFS_FS is not set
43969 +
43970 +#
43971 +# Partition Types
43972 +#
43973 +# CONFIG_PARTITION_ADVANCED is not set
43974 +CONFIG_MSDOS_PARTITION=y
43975 +CONFIG_NLS=y
43976 +CONFIG_NLS_DEFAULT="iso8859-1"
43977 +# CONFIG_NLS_CODEPAGE_437 is not set
43978 +# CONFIG_NLS_CODEPAGE_737 is not set
43979 +# CONFIG_NLS_CODEPAGE_775 is not set
43980 +# CONFIG_NLS_CODEPAGE_850 is not set
43981 +# CONFIG_NLS_CODEPAGE_852 is not set
43982 +# CONFIG_NLS_CODEPAGE_855 is not set
43983 +# CONFIG_NLS_CODEPAGE_857 is not set
43984 +# CONFIG_NLS_CODEPAGE_860 is not set
43985 +# CONFIG_NLS_CODEPAGE_861 is not set
43986 +# CONFIG_NLS_CODEPAGE_862 is not set
43987 +# CONFIG_NLS_CODEPAGE_863 is not set
43988 +# CONFIG_NLS_CODEPAGE_864 is not set
43989 +# CONFIG_NLS_CODEPAGE_865 is not set
43990 +# CONFIG_NLS_CODEPAGE_866 is not set
43991 +# CONFIG_NLS_CODEPAGE_869 is not set
43992 +# CONFIG_NLS_CODEPAGE_936 is not set
43993 +# CONFIG_NLS_CODEPAGE_950 is not set
43994 +# CONFIG_NLS_CODEPAGE_932 is not set
43995 +# CONFIG_NLS_CODEPAGE_949 is not set
43996 +# CONFIG_NLS_CODEPAGE_874 is not set
43997 +# CONFIG_NLS_ISO8859_8 is not set
43998 +# CONFIG_NLS_CODEPAGE_1250 is not set
43999 +# CONFIG_NLS_CODEPAGE_1251 is not set
44000 +# CONFIG_NLS_ASCII is not set
44001 +# CONFIG_NLS_ISO8859_1 is not set
44002 +# CONFIG_NLS_ISO8859_2 is not set
44003 +# CONFIG_NLS_ISO8859_3 is not set
44004 +# CONFIG_NLS_ISO8859_4 is not set
44005 +# CONFIG_NLS_ISO8859_5 is not set
44006 +# CONFIG_NLS_ISO8859_6 is not set
44007 +# CONFIG_NLS_ISO8859_7 is not set
44008 +# CONFIG_NLS_ISO8859_9 is not set
44009 +# CONFIG_NLS_ISO8859_13 is not set
44010 +# CONFIG_NLS_ISO8859_14 is not set
44011 +# CONFIG_NLS_ISO8859_15 is not set
44012 +# CONFIG_NLS_KOI8_R is not set
44013 +# CONFIG_NLS_KOI8_U is not set
44014 +# CONFIG_NLS_UTF8 is not set
44015 +# CONFIG_DLM is not set
44016 +
44017 +#
44018 +# Library routines
44019 +#
44020 +CONFIG_BITREVERSE=y
44021 +CONFIG_CRC_CCITT=y
44022 +# CONFIG_CRC16 is not set
44023 +# CONFIG_CRC_ITU_T is not set
44024 +CONFIG_CRC32=y
44025 +# CONFIG_CRC7 is not set
44026 +# CONFIG_LIBCRC32C is not set
44027 +CONFIG_ZLIB_INFLATE=m
44028 +CONFIG_PLIST=y
44029 +CONFIG_HAS_IOMEM=y
44030 +CONFIG_HAS_IOPORT=y
44031 +CONFIG_HAS_DMA=y
44032 +
44033 +#
44034 +# Kernel hacking
44035 +#
44036 +# CONFIG_PRINTK_TIME is not set
44037 +CONFIG_ENABLE_WARN_DEPRECATED=y
44038 +CONFIG_ENABLE_MUST_CHECK=y
44039 +# CONFIG_MAGIC_SYSRQ is not set
44040 +# CONFIG_UNUSED_SYMBOLS is not set
44041 +# CONFIG_DEBUG_FS is not set
44042 +# CONFIG_HEADERS_CHECK is not set
44043 +CONFIG_DEBUG_KERNEL=y
44044 +# CONFIG_DEBUG_SHIRQ is not set
44045 +CONFIG_DETECT_SOFTLOCKUP=y
44046 +CONFIG_SCHED_DEBUG=y
44047 +# CONFIG_SCHEDSTATS is not set
44048 +# CONFIG_TIMER_STATS is not set
44049 +# CONFIG_SLUB_DEBUG_ON is not set
44050 +# CONFIG_SLUB_STATS is not set
44051 +# CONFIG_DEBUG_RT_MUTEXES is not set
44052 +# CONFIG_RT_MUTEX_TESTER is not set
44053 +# CONFIG_DEBUG_SPINLOCK is not set
44054 +# CONFIG_DEBUG_MUTEXES is not set
44055 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
44056 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
44057 +# CONFIG_DEBUG_KOBJECT is not set
44058 +# CONFIG_DEBUG_HIGHMEM is not set
44059 +# CONFIG_DEBUG_BUGVERBOSE is not set
44060 +# CONFIG_DEBUG_INFO is not set
44061 +# CONFIG_DEBUG_VM is not set
44062 +# CONFIG_DEBUG_LIST is not set
44063 +# CONFIG_DEBUG_SG is not set
44064 +# CONFIG_BOOT_PRINTK_DELAY is not set
44065 +# CONFIG_RCU_TORTURE_TEST is not set
44066 +# CONFIG_BACKTRACE_SELF_TEST is not set
44067 +# CONFIG_FAULT_INJECTION is not set
44068 +# CONFIG_SAMPLES is not set
44069 +# CONFIG_DEBUG_STACKOVERFLOW is not set
44070 +# CONFIG_DEBUG_STACK_USAGE is not set
44071 +# CONFIG_DEBUG_PAGEALLOC is not set
44072 +# CONFIG_DEBUGGER is not set
44073 +# CONFIG_KGDB_CONSOLE is not set
44074 +CONFIG_BDI_SWITCH=y
44075 +# CONFIG_PPC_EARLY_DEBUG is not set
44076 +
44077 +#
44078 +# Security options
44079 +#
44080 +# CONFIG_KEYS is not set
44081 +# CONFIG_SECURITY is not set
44082 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
44083 +CONFIG_CRYPTO=y
44084 +# CONFIG_CRYPTO_SEQIV is not set
44085 +# CONFIG_CRYPTO_MANAGER is not set
44086 +# CONFIG_CRYPTO_HMAC is not set
44087 +# CONFIG_CRYPTO_XCBC is not set
44088 +# CONFIG_CRYPTO_NULL is not set
44089 +# CONFIG_CRYPTO_MD4 is not set
44090 +# CONFIG_CRYPTO_MD5 is not set
44091 +# CONFIG_CRYPTO_SHA1 is not set
44092 +# CONFIG_CRYPTO_SHA256 is not set
44093 +# CONFIG_CRYPTO_SHA512 is not set
44094 +# CONFIG_CRYPTO_WP512 is not set
44095 +# CONFIG_CRYPTO_TGR192 is not set
44096 +# CONFIG_CRYPTO_GF128MUL is not set
44097 +# CONFIG_CRYPTO_ECB is not set
44098 +# CONFIG_CRYPTO_CBC is not set
44099 +# CONFIG_CRYPTO_PCBC is not set
44100 +# CONFIG_CRYPTO_LRW is not set
44101 +# CONFIG_CRYPTO_XTS is not set
44102 +# CONFIG_CRYPTO_CTR is not set
44103 +# CONFIG_CRYPTO_GCM is not set
44104 +# CONFIG_CRYPTO_CCM is not set
44105 +# CONFIG_CRYPTO_CRYPTD is not set
44106 +# CONFIG_CRYPTO_DES is not set
44107 +# CONFIG_CRYPTO_FCRYPT is not set
44108 +# CONFIG_CRYPTO_BLOWFISH is not set
44109 +# CONFIG_CRYPTO_TWOFISH is not set
44110 +# CONFIG_CRYPTO_SERPENT is not set
44111 +# CONFIG_CRYPTO_AES is not set
44112 +# CONFIG_CRYPTO_CAST5 is not set
44113 +# CONFIG_CRYPTO_CAST6 is not set
44114 +# CONFIG_CRYPTO_TEA is not set
44115 +# CONFIG_CRYPTO_ARC4 is not set
44116 +# CONFIG_CRYPTO_KHAZAD is not set
44117 +# CONFIG_CRYPTO_ANUBIS is not set
44118 +# CONFIG_CRYPTO_SEED is not set
44119 +# CONFIG_CRYPTO_SALSA20 is not set
44120 +# CONFIG_CRYPTO_DEFLATE is not set
44121 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
44122 +# CONFIG_CRYPTO_CRC32C is not set
44123 +# CONFIG_CRYPTO_CAMELLIA is not set
44124 +# CONFIG_CRYPTO_TEST is not set
44125 +# CONFIG_CRYPTO_AUTHENC is not set
44126 +# CONFIG_CRYPTO_LZO is not set
44127 +CONFIG_CRYPTO_HW=y
44128 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
44129 +# CONFIG_PPC_CLOCK is not set
44130 +CONFIG_PPC_LIB_RHEAP=y
44131 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/tqm8540_defconfig
44132 ===================================================================
44133 --- /dev/null
44134 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/tqm8540_defconfig
44135 @@ -0,0 +1,1097 @@
44136 +#
44137 +# Automatically generated make config: don't edit
44138 +# Linux kernel version: 2.6.25-rc6
44139 +# Mon Mar 24 08:48:43 2008
44140 +#
44141 +# CONFIG_PPC64 is not set
44142 +
44143 +#
44144 +# Processor support
44145 +#
44146 +# CONFIG_6xx is not set
44147 +CONFIG_PPC_85xx=y
44148 +# CONFIG_PPC_8xx is not set
44149 +# CONFIG_40x is not set
44150 +# CONFIG_44x is not set
44151 +# CONFIG_E200 is not set
44152 +CONFIG_E500=y
44153 +CONFIG_BOOKE=y
44154 +CONFIG_FSL_BOOKE=y
44155 +CONFIG_FSL_EMB_PERFMON=y
44156 +# CONFIG_PHYS_64BIT is not set
44157 +CONFIG_SPE=y
44158 +# CONFIG_PPC_MM_SLICES is not set
44159 +CONFIG_PPC32=y
44160 +CONFIG_WORD_SIZE=32
44161 +CONFIG_PPC_MERGE=y
44162 +CONFIG_MMU=y
44163 +CONFIG_GENERIC_CMOS_UPDATE=y
44164 +CONFIG_GENERIC_TIME=y
44165 +CONFIG_GENERIC_TIME_VSYSCALL=y
44166 +CONFIG_GENERIC_CLOCKEVENTS=y
44167 +CONFIG_GENERIC_HARDIRQS=y
44168 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
44169 +CONFIG_IRQ_PER_CPU=y
44170 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
44171 +CONFIG_ARCH_HAS_ILOG2_U32=y
44172 +CONFIG_GENERIC_HWEIGHT=y
44173 +CONFIG_GENERIC_CALIBRATE_DELAY=y
44174 +CONFIG_GENERIC_FIND_NEXT_BIT=y
44175 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
44176 +CONFIG_PPC=y
44177 +CONFIG_EARLY_PRINTK=y
44178 +CONFIG_GENERIC_NVRAM=y
44179 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
44180 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
44181 +CONFIG_PPC_OF=y
44182 +CONFIG_OF=y
44183 +CONFIG_PPC_UDBG_16550=y
44184 +# CONFIG_GENERIC_TBSYNC is not set
44185 +CONFIG_AUDIT_ARCH=y
44186 +CONFIG_GENERIC_BUG=y
44187 +CONFIG_DEFAULT_UIMAGE=y
44188 +# CONFIG_PPC_DCR_NATIVE is not set
44189 +# CONFIG_PPC_DCR_MMIO is not set
44190 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
44191 +
44192 +#
44193 +# General setup
44194 +#
44195 +CONFIG_EXPERIMENTAL=y
44196 +CONFIG_BROKEN_ON_SMP=y
44197 +CONFIG_INIT_ENV_ARG_LIMIT=32
44198 +CONFIG_LOCALVERSION=""
44199 +CONFIG_LOCALVERSION_AUTO=y
44200 +CONFIG_SWAP=y
44201 +CONFIG_SYSVIPC=y
44202 +CONFIG_SYSVIPC_SYSCTL=y
44203 +# CONFIG_POSIX_MQUEUE is not set
44204 +# CONFIG_BSD_PROCESS_ACCT is not set
44205 +# CONFIG_TASKSTATS is not set
44206 +# CONFIG_AUDIT is not set
44207 +# CONFIG_IKCONFIG is not set
44208 +CONFIG_LOG_BUF_SHIFT=14
44209 +# CONFIG_CGROUPS is not set
44210 +CONFIG_GROUP_SCHED=y
44211 +CONFIG_FAIR_GROUP_SCHED=y
44212 +# CONFIG_RT_GROUP_SCHED is not set
44213 +CONFIG_USER_SCHED=y
44214 +# CONFIG_CGROUP_SCHED is not set
44215 +CONFIG_SYSFS_DEPRECATED=y
44216 +CONFIG_SYSFS_DEPRECATED_V2=y
44217 +# CONFIG_RELAY is not set
44218 +# CONFIG_NAMESPACES is not set
44219 +CONFIG_BLK_DEV_INITRD=y
44220 +CONFIG_INITRAMFS_SOURCE=""
44221 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
44222 +CONFIG_SYSCTL=y
44223 +CONFIG_EMBEDDED=y
44224 +CONFIG_SYSCTL_SYSCALL=y
44225 +# CONFIG_KALLSYMS is not set
44226 +# CONFIG_HOTPLUG is not set
44227 +CONFIG_PRINTK=y
44228 +CONFIG_BUG=y
44229 +CONFIG_ELF_CORE=y
44230 +CONFIG_COMPAT_BRK=y
44231 +CONFIG_BASE_FULL=y
44232 +CONFIG_FUTEX=y
44233 +CONFIG_ANON_INODES=y
44234 +# CONFIG_EPOLL is not set
44235 +CONFIG_SIGNALFD=y
44236 +CONFIG_TIMERFD=y
44237 +CONFIG_EVENTFD=y
44238 +CONFIG_SHMEM=y
44239 +CONFIG_VM_EVENT_COUNTERS=y
44240 +CONFIG_SLUB_DEBUG=y
44241 +# CONFIG_SLAB is not set
44242 +CONFIG_SLUB=y
44243 +# CONFIG_SLOB is not set
44244 +# CONFIG_PROFILING is not set
44245 +# CONFIG_MARKERS is not set
44246 +CONFIG_HAVE_OPROFILE=y
44247 +CONFIG_HAVE_KPROBES=y
44248 +CONFIG_HAVE_KRETPROBES=y
44249 +CONFIG_PROC_PAGE_MONITOR=y
44250 +CONFIG_SLABINFO=y
44251 +CONFIG_RT_MUTEXES=y
44252 +# CONFIG_TINY_SHMEM is not set
44253 +CONFIG_BASE_SMALL=0
44254 +# CONFIG_MODULES is not set
44255 +CONFIG_BLOCK=y
44256 +# CONFIG_LBD is not set
44257 +# CONFIG_BLK_DEV_IO_TRACE is not set
44258 +# CONFIG_LSF is not set
44259 +# CONFIG_BLK_DEV_BSG is not set
44260 +
44261 +#
44262 +# IO Schedulers
44263 +#
44264 +CONFIG_IOSCHED_NOOP=y
44265 +CONFIG_IOSCHED_AS=y
44266 +CONFIG_IOSCHED_DEADLINE=y
44267 +CONFIG_IOSCHED_CFQ=y
44268 +CONFIG_DEFAULT_AS=y
44269 +# CONFIG_DEFAULT_DEADLINE is not set
44270 +# CONFIG_DEFAULT_CFQ is not set
44271 +# CONFIG_DEFAULT_NOOP is not set
44272 +CONFIG_DEFAULT_IOSCHED="anticipatory"
44273 +CONFIG_CLASSIC_RCU=y
44274 +
44275 +#
44276 +# Platform support
44277 +#
44278 +# CONFIG_PPC_MPC512x is not set
44279 +# CONFIG_PPC_MPC5121 is not set
44280 +# CONFIG_PPC_CELL is not set
44281 +# CONFIG_PPC_CELL_NATIVE is not set
44282 +# CONFIG_PQ2ADS is not set
44283 +CONFIG_MPC85xx=y
44284 +# CONFIG_MPC8540_ADS is not set
44285 +# CONFIG_MPC8560_ADS is not set
44286 +# CONFIG_MPC85xx_CDS is not set
44287 +# CONFIG_MPC85xx_MDS is not set
44288 +# CONFIG_MPC85xx_DS is not set
44289 +# CONFIG_STX_GP3 is not set
44290 +CONFIG_TQM8540=y
44291 +# CONFIG_TQM8541 is not set
44292 +# CONFIG_TQM8555 is not set
44293 +# CONFIG_TQM8560 is not set
44294 +# CONFIG_SBC8548 is not set
44295 +# CONFIG_SBC8560 is not set
44296 +CONFIG_TQM85xx=y
44297 +# CONFIG_IPIC is not set
44298 +CONFIG_MPIC=y
44299 +# CONFIG_MPIC_WEIRD is not set
44300 +# CONFIG_PPC_I8259 is not set
44301 +# CONFIG_PPC_RTAS is not set
44302 +# CONFIG_MMIO_NVRAM is not set
44303 +# CONFIG_PPC_MPC106 is not set
44304 +# CONFIG_PPC_970_NAP is not set
44305 +# CONFIG_PPC_INDIRECT_IO is not set
44306 +# CONFIG_GENERIC_IOMAP is not set
44307 +# CONFIG_CPU_FREQ is not set
44308 +# CONFIG_CPM2 is not set
44309 +CONFIG_PPC_CPM_NEW_BINDING=y
44310 +# CONFIG_FSL_ULI1575 is not set
44311 +
44312 +#
44313 +# Kernel options
44314 +#
44315 +# CONFIG_HIGHMEM is not set
44316 +# CONFIG_TICK_ONESHOT is not set
44317 +# CONFIG_NO_HZ is not set
44318 +# CONFIG_HIGH_RES_TIMERS is not set
44319 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
44320 +# CONFIG_HZ_100 is not set
44321 +CONFIG_HZ_250=y
44322 +# CONFIG_HZ_300 is not set
44323 +# CONFIG_HZ_1000 is not set
44324 +CONFIG_HZ=250
44325 +# CONFIG_SCHED_HRTICK is not set
44326 +CONFIG_PREEMPT_NONE=y
44327 +# CONFIG_PREEMPT_VOLUNTARY is not set
44328 +# CONFIG_PREEMPT is not set
44329 +CONFIG_BINFMT_ELF=y
44330 +# CONFIG_BINFMT_MISC is not set
44331 +CONFIG_MATH_EMULATION=y
44332 +# CONFIG_IOMMU_HELPER is not set
44333 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
44334 +CONFIG_ARCH_HAS_WALK_MEMORY=y
44335 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
44336 +CONFIG_ARCH_FLATMEM_ENABLE=y
44337 +CONFIG_ARCH_POPULATES_NODE_MAP=y
44338 +CONFIG_SELECT_MEMORY_MODEL=y
44339 +CONFIG_FLATMEM_MANUAL=y
44340 +# CONFIG_DISCONTIGMEM_MANUAL is not set
44341 +# CONFIG_SPARSEMEM_MANUAL is not set
44342 +CONFIG_FLATMEM=y
44343 +CONFIG_FLAT_NODE_MEM_MAP=y
44344 +# CONFIG_SPARSEMEM_STATIC is not set
44345 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
44346 +CONFIG_SPLIT_PTLOCK_CPUS=4
44347 +# CONFIG_RESOURCES_64BIT is not set
44348 +CONFIG_ZONE_DMA_FLAG=1
44349 +CONFIG_BOUNCE=y
44350 +CONFIG_VIRT_TO_BUS=y
44351 +# CONFIG_PROC_DEVICETREE is not set
44352 +# CONFIG_CMDLINE_BOOL is not set
44353 +# CONFIG_PM is not set
44354 +CONFIG_SECCOMP=y
44355 +CONFIG_ISA_DMA_API=y
44356 +
44357 +#
44358 +# Bus options
44359 +#
44360 +CONFIG_ZONE_DMA=y
44361 +CONFIG_PPC_INDIRECT_PCI=y
44362 +CONFIG_FSL_SOC=y
44363 +CONFIG_FSL_PCI=y
44364 +CONFIG_PCI=y
44365 +CONFIG_PCI_DOMAINS=y
44366 +CONFIG_PCI_SYSCALL=y
44367 +# CONFIG_PCIEPORTBUS is not set
44368 +CONFIG_ARCH_SUPPORTS_MSI=y
44369 +# CONFIG_PCI_MSI is not set
44370 +CONFIG_PCI_LEGACY=y
44371 +
44372 +#
44373 +# Advanced setup
44374 +#
44375 +# CONFIG_ADVANCED_OPTIONS is not set
44376 +
44377 +#
44378 +# Default settings for advanced configuration options are used
44379 +#
44380 +CONFIG_HIGHMEM_START=0xfe000000
44381 +CONFIG_LOWMEM_SIZE=0x30000000
44382 +CONFIG_KERNEL_START=0xc0000000
44383 +CONFIG_TASK_SIZE=0xc0000000
44384 +CONFIG_BOOT_LOAD=0x00800000
44385 +
44386 +#
44387 +# Networking
44388 +#
44389 +CONFIG_NET=y
44390 +
44391 +#
44392 +# Networking options
44393 +#
44394 +CONFIG_PACKET=y
44395 +# CONFIG_PACKET_MMAP is not set
44396 +CONFIG_UNIX=y
44397 +CONFIG_XFRM=y
44398 +# CONFIG_XFRM_USER is not set
44399 +# CONFIG_XFRM_SUB_POLICY is not set
44400 +# CONFIG_XFRM_MIGRATE is not set
44401 +# CONFIG_XFRM_STATISTICS is not set
44402 +# CONFIG_NET_KEY is not set
44403 +CONFIG_INET=y
44404 +CONFIG_IP_MULTICAST=y
44405 +# CONFIG_IP_ADVANCED_ROUTER is not set
44406 +CONFIG_IP_FIB_HASH=y
44407 +CONFIG_IP_PNP=y
44408 +CONFIG_IP_PNP_DHCP=y
44409 +CONFIG_IP_PNP_BOOTP=y
44410 +# CONFIG_IP_PNP_RARP is not set
44411 +# CONFIG_NET_IPIP is not set
44412 +# CONFIG_NET_IPGRE is not set
44413 +# CONFIG_IP_MROUTE is not set
44414 +# CONFIG_ARPD is not set
44415 +CONFIG_SYN_COOKIES=y
44416 +# CONFIG_INET_AH is not set
44417 +# CONFIG_INET_ESP is not set
44418 +# CONFIG_INET_IPCOMP is not set
44419 +# CONFIG_INET_XFRM_TUNNEL is not set
44420 +# CONFIG_INET_TUNNEL is not set
44421 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
44422 +CONFIG_INET_XFRM_MODE_TUNNEL=y
44423 +CONFIG_INET_XFRM_MODE_BEET=y
44424 +# CONFIG_INET_LRO is not set
44425 +CONFIG_INET_DIAG=y
44426 +CONFIG_INET_TCP_DIAG=y
44427 +# CONFIG_TCP_CONG_ADVANCED is not set
44428 +CONFIG_TCP_CONG_CUBIC=y
44429 +CONFIG_DEFAULT_TCP_CONG="cubic"
44430 +# CONFIG_TCP_MD5SIG is not set
44431 +# CONFIG_IPV6 is not set
44432 +# CONFIG_INET6_XFRM_TUNNEL is not set
44433 +# CONFIG_INET6_TUNNEL is not set
44434 +# CONFIG_NETWORK_SECMARK is not set
44435 +# CONFIG_NETFILTER is not set
44436 +# CONFIG_IP_DCCP is not set
44437 +# CONFIG_IP_SCTP is not set
44438 +# CONFIG_TIPC is not set
44439 +# CONFIG_ATM is not set
44440 +# CONFIG_BRIDGE is not set
44441 +# CONFIG_VLAN_8021Q is not set
44442 +# CONFIG_DECNET is not set
44443 +# CONFIG_LLC2 is not set
44444 +# CONFIG_IPX is not set
44445 +# CONFIG_ATALK is not set
44446 +# CONFIG_X25 is not set
44447 +# CONFIG_LAPB is not set
44448 +# CONFIG_ECONET is not set
44449 +# CONFIG_WAN_ROUTER is not set
44450 +# CONFIG_NET_SCHED is not set
44451 +
44452 +#
44453 +# Network testing
44454 +#
44455 +# CONFIG_NET_PKTGEN is not set
44456 +# CONFIG_HAMRADIO is not set
44457 +# CONFIG_CAN is not set
44458 +# CONFIG_IRDA is not set
44459 +# CONFIG_BT is not set
44460 +# CONFIG_AF_RXRPC is not set
44461 +
44462 +#
44463 +# Wireless
44464 +#
44465 +# CONFIG_CFG80211 is not set
44466 +# CONFIG_WIRELESS_EXT is not set
44467 +# CONFIG_MAC80211 is not set
44468 +# CONFIG_IEEE80211 is not set
44469 +# CONFIG_RFKILL is not set
44470 +# CONFIG_NET_9P is not set
44471 +
44472 +#
44473 +# Device Drivers
44474 +#
44475 +
44476 +#
44477 +# Generic Driver Options
44478 +#
44479 +CONFIG_STANDALONE=y
44480 +CONFIG_PREVENT_FIRMWARE_BUILD=y
44481 +# CONFIG_SYS_HYPERVISOR is not set
44482 +# CONFIG_CONNECTOR is not set
44483 +CONFIG_MTD=y
44484 +# CONFIG_MTD_DEBUG is not set
44485 +CONFIG_MTD_CONCAT=y
44486 +CONFIG_MTD_PARTITIONS=y
44487 +# CONFIG_MTD_REDBOOT_PARTS is not set
44488 +CONFIG_MTD_CMDLINE_PARTS=y
44489 +# CONFIG_MTD_OF_PARTS is not set
44490 +
44491 +#
44492 +# User Modules And Translation Layers
44493 +#
44494 +CONFIG_MTD_CHAR=y
44495 +CONFIG_MTD_BLKDEVS=y
44496 +CONFIG_MTD_BLOCK=y
44497 +# CONFIG_FTL is not set
44498 +# CONFIG_NFTL is not set
44499 +# CONFIG_INFTL is not set
44500 +# CONFIG_RFD_FTL is not set
44501 +# CONFIG_SSFDC is not set
44502 +# CONFIG_MTD_OOPS is not set
44503 +
44504 +#
44505 +# RAM/ROM/Flash chip drivers
44506 +#
44507 +CONFIG_MTD_CFI=y
44508 +# CONFIG_MTD_JEDECPROBE is not set
44509 +CONFIG_MTD_GEN_PROBE=y
44510 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
44511 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
44512 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
44513 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
44514 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
44515 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
44516 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
44517 +CONFIG_MTD_CFI_I1=y
44518 +CONFIG_MTD_CFI_I2=y
44519 +# CONFIG_MTD_CFI_I4 is not set
44520 +# CONFIG_MTD_CFI_I8 is not set
44521 +# CONFIG_MTD_CFI_INTELEXT is not set
44522 +CONFIG_MTD_CFI_AMDSTD=y
44523 +# CONFIG_MTD_CFI_STAA is not set
44524 +CONFIG_MTD_CFI_UTIL=y
44525 +# CONFIG_MTD_RAM is not set
44526 +# CONFIG_MTD_ROM is not set
44527 +# CONFIG_MTD_ABSENT is not set
44528 +
44529 +#
44530 +# Mapping drivers for chip access
44531 +#
44532 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
44533 +# CONFIG_MTD_PHYSMAP is not set
44534 +# CONFIG_MTD_PHYSMAP_OF is not set
44535 +# CONFIG_MTD_INTEL_VR_NOR is not set
44536 +# CONFIG_MTD_PLATRAM is not set
44537 +
44538 +#
44539 +# Self-contained MTD device drivers
44540 +#
44541 +# CONFIG_MTD_PMC551 is not set
44542 +# CONFIG_MTD_SLRAM is not set
44543 +# CONFIG_MTD_PHRAM is not set
44544 +# CONFIG_MTD_MTDRAM is not set
44545 +# CONFIG_MTD_BLOCK2MTD is not set
44546 +
44547 +#
44548 +# Disk-On-Chip Device Drivers
44549 +#
44550 +# CONFIG_MTD_DOC2000 is not set
44551 +# CONFIG_MTD_DOC2001 is not set
44552 +# CONFIG_MTD_DOC2001PLUS is not set
44553 +# CONFIG_MTD_NAND is not set
44554 +# CONFIG_MTD_ONENAND is not set
44555 +
44556 +#
44557 +# UBI - Unsorted block images
44558 +#
44559 +# CONFIG_MTD_UBI is not set
44560 +CONFIG_OF_DEVICE=y
44561 +# CONFIG_PARPORT is not set
44562 +CONFIG_BLK_DEV=y
44563 +# CONFIG_BLK_DEV_FD is not set
44564 +# CONFIG_BLK_CPQ_DA is not set
44565 +# CONFIG_BLK_CPQ_CISS_DA is not set
44566 +# CONFIG_BLK_DEV_DAC960 is not set
44567 +# CONFIG_BLK_DEV_UMEM is not set
44568 +# CONFIG_BLK_DEV_COW_COMMON is not set
44569 +CONFIG_BLK_DEV_LOOP=y
44570 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
44571 +# CONFIG_BLK_DEV_NBD is not set
44572 +# CONFIG_BLK_DEV_SX8 is not set
44573 +CONFIG_BLK_DEV_RAM=y
44574 +CONFIG_BLK_DEV_RAM_COUNT=16
44575 +CONFIG_BLK_DEV_RAM_SIZE=32768
44576 +# CONFIG_BLK_DEV_XIP is not set
44577 +# CONFIG_CDROM_PKTCDVD is not set
44578 +# CONFIG_ATA_OVER_ETH is not set
44579 +CONFIG_MISC_DEVICES=y
44580 +# CONFIG_PHANTOM is not set
44581 +# CONFIG_EEPROM_93CX6 is not set
44582 +# CONFIG_SGI_IOC4 is not set
44583 +# CONFIG_TIFM_CORE is not set
44584 +# CONFIG_ENCLOSURE_SERVICES is not set
44585 +CONFIG_HAVE_IDE=y
44586 +CONFIG_IDE=y
44587 +CONFIG_IDE_MAX_HWIFS=4
44588 +CONFIG_BLK_DEV_IDE=y
44589 +
44590 +#
44591 +# Please see Documentation/ide/ide.txt for help/info on IDE drives
44592 +#
44593 +# CONFIG_BLK_DEV_IDE_SATA is not set
44594 +CONFIG_BLK_DEV_IDEDISK=y
44595 +# CONFIG_IDEDISK_MULTI_MODE is not set
44596 +# CONFIG_BLK_DEV_IDECD is not set
44597 +# CONFIG_BLK_DEV_IDETAPE is not set
44598 +# CONFIG_BLK_DEV_IDEFLOPPY is not set
44599 +# CONFIG_IDE_TASK_IOCTL is not set
44600 +CONFIG_IDE_PROC_FS=y
44601 +
44602 +#
44603 +# IDE chipset support/bugfixes
44604 +#
44605 +CONFIG_IDE_GENERIC=y
44606 +# CONFIG_BLK_DEV_PLATFORM is not set
44607 +CONFIG_BLK_DEV_IDEDMA_SFF=y
44608 +
44609 +#
44610 +# PCI IDE chipsets support
44611 +#
44612 +CONFIG_BLK_DEV_IDEPCI=y
44613 +CONFIG_IDEPCI_PCIBUS_ORDER=y
44614 +# CONFIG_BLK_DEV_OFFBOARD is not set
44615 +CONFIG_BLK_DEV_GENERIC=y
44616 +# CONFIG_BLK_DEV_OPTI621 is not set
44617 +CONFIG_BLK_DEV_IDEDMA_PCI=y
44618 +# CONFIG_BLK_DEV_AEC62XX is not set
44619 +# CONFIG_BLK_DEV_ALI15X3 is not set
44620 +# CONFIG_BLK_DEV_AMD74XX is not set
44621 +# CONFIG_BLK_DEV_CMD64X is not set
44622 +# CONFIG_BLK_DEV_TRIFLEX is not set
44623 +# CONFIG_BLK_DEV_CY82C693 is not set
44624 +# CONFIG_BLK_DEV_CS5520 is not set
44625 +# CONFIG_BLK_DEV_CS5530 is not set
44626 +# CONFIG_BLK_DEV_HPT34X is not set
44627 +# CONFIG_BLK_DEV_HPT366 is not set
44628 +# CONFIG_BLK_DEV_JMICRON is not set
44629 +# CONFIG_BLK_DEV_SC1200 is not set
44630 +# CONFIG_BLK_DEV_PIIX is not set
44631 +# CONFIG_BLK_DEV_IT8213 is not set
44632 +# CONFIG_BLK_DEV_IT821X is not set
44633 +# CONFIG_BLK_DEV_NS87415 is not set
44634 +# CONFIG_BLK_DEV_PDC202XX_OLD is not set
44635 +# CONFIG_BLK_DEV_PDC202XX_NEW is not set
44636 +# CONFIG_BLK_DEV_SVWKS is not set
44637 +# CONFIG_BLK_DEV_SIIMAGE is not set
44638 +# CONFIG_BLK_DEV_SL82C105 is not set
44639 +# CONFIG_BLK_DEV_SLC90E66 is not set
44640 +# CONFIG_BLK_DEV_TRM290 is not set
44641 +CONFIG_BLK_DEV_VIA82CXXX=y
44642 +# CONFIG_BLK_DEV_TC86C001 is not set
44643 +CONFIG_BLK_DEV_IDEDMA=y
44644 +CONFIG_IDE_ARCH_OBSOLETE_INIT=y
44645 +# CONFIG_BLK_DEV_HD is not set
44646 +
44647 +#
44648 +# SCSI device support
44649 +#
44650 +# CONFIG_RAID_ATTRS is not set
44651 +# CONFIG_SCSI is not set
44652 +# CONFIG_SCSI_DMA is not set
44653 +# CONFIG_SCSI_NETLINK is not set
44654 +# CONFIG_ATA is not set
44655 +# CONFIG_MD is not set
44656 +# CONFIG_FUSION is not set
44657 +
44658 +#
44659 +# IEEE 1394 (FireWire) support
44660 +#
44661 +# CONFIG_FIREWIRE is not set
44662 +# CONFIG_IEEE1394 is not set
44663 +# CONFIG_I2O is not set
44664 +# CONFIG_MACINTOSH_DRIVERS is not set
44665 +CONFIG_NETDEVICES=y
44666 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
44667 +# CONFIG_DUMMY is not set
44668 +# CONFIG_BONDING is not set
44669 +# CONFIG_MACVLAN is not set
44670 +# CONFIG_EQUALIZER is not set
44671 +# CONFIG_TUN is not set
44672 +# CONFIG_VETH is not set
44673 +# CONFIG_ARCNET is not set
44674 +CONFIG_PHYLIB=y
44675 +
44676 +#
44677 +# MII PHY device drivers
44678 +#
44679 +# CONFIG_MARVELL_PHY is not set
44680 +# CONFIG_DAVICOM_PHY is not set
44681 +# CONFIG_QSEMI_PHY is not set
44682 +# CONFIG_LXT_PHY is not set
44683 +# CONFIG_CICADA_PHY is not set
44684 +# CONFIG_VITESSE_PHY is not set
44685 +# CONFIG_SMSC_PHY is not set
44686 +# CONFIG_BROADCOM_PHY is not set
44687 +# CONFIG_ICPLUS_PHY is not set
44688 +# CONFIG_REALTEK_PHY is not set
44689 +# CONFIG_FIXED_PHY is not set
44690 +# CONFIG_MDIO_BITBANG is not set
44691 +CONFIG_NET_ETHERNET=y
44692 +CONFIG_MII=y
44693 +# CONFIG_HAPPYMEAL is not set
44694 +# CONFIG_SUNGEM is not set
44695 +# CONFIG_CASSINI is not set
44696 +# CONFIG_NET_VENDOR_3COM is not set
44697 +# CONFIG_NET_TULIP is not set
44698 +# CONFIG_HP100 is not set
44699 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
44700 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
44701 +# CONFIG_IBM_NEW_EMAC_TAH is not set
44702 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
44703 +CONFIG_NET_PCI=y
44704 +# CONFIG_PCNET32 is not set
44705 +# CONFIG_AMD8111_ETH is not set
44706 +# CONFIG_ADAPTEC_STARFIRE is not set
44707 +# CONFIG_B44 is not set
44708 +# CONFIG_FORCEDETH is not set
44709 +# CONFIG_EEPRO100 is not set
44710 +CONFIG_E100=y
44711 +# CONFIG_FEALNX is not set
44712 +# CONFIG_NATSEMI is not set
44713 +# CONFIG_NE2K_PCI is not set
44714 +# CONFIG_8139CP is not set
44715 +# CONFIG_8139TOO is not set
44716 +# CONFIG_R6040 is not set
44717 +# CONFIG_SIS900 is not set
44718 +# CONFIG_EPIC100 is not set
44719 +# CONFIG_SUNDANCE is not set
44720 +# CONFIG_TLAN is not set
44721 +# CONFIG_VIA_RHINE is not set
44722 +# CONFIG_SC92031 is not set
44723 +CONFIG_NETDEV_1000=y
44724 +# CONFIG_ACENIC is not set
44725 +# CONFIG_DL2K is not set
44726 +# CONFIG_E1000 is not set
44727 +# CONFIG_E1000E is not set
44728 +# CONFIG_E1000E_ENABLED is not set
44729 +# CONFIG_IP1000 is not set
44730 +# CONFIG_IGB is not set
44731 +# CONFIG_NS83820 is not set
44732 +# CONFIG_HAMACHI is not set
44733 +# CONFIG_YELLOWFIN is not set
44734 +# CONFIG_R8169 is not set
44735 +# CONFIG_SIS190 is not set
44736 +# CONFIG_SKGE is not set
44737 +# CONFIG_SKY2 is not set
44738 +# CONFIG_SK98LIN is not set
44739 +# CONFIG_VIA_VELOCITY is not set
44740 +# CONFIG_TIGON3 is not set
44741 +# CONFIG_BNX2 is not set
44742 +CONFIG_GIANFAR=y
44743 +CONFIG_GFAR_NAPI=y
44744 +# CONFIG_QLA3XXX is not set
44745 +# CONFIG_ATL1 is not set
44746 +CONFIG_NETDEV_10000=y
44747 +# CONFIG_CHELSIO_T1 is not set
44748 +# CONFIG_CHELSIO_T3 is not set
44749 +# CONFIG_IXGBE is not set
44750 +# CONFIG_IXGB is not set
44751 +# CONFIG_S2IO is not set
44752 +# CONFIG_MYRI10GE is not set
44753 +# CONFIG_NETXEN_NIC is not set
44754 +# CONFIG_NIU is not set
44755 +# CONFIG_MLX4_CORE is not set
44756 +# CONFIG_TEHUTI is not set
44757 +# CONFIG_BNX2X is not set
44758 +# CONFIG_TR is not set
44759 +
44760 +#
44761 +# Wireless LAN
44762 +#
44763 +# CONFIG_WLAN_PRE80211 is not set
44764 +# CONFIG_WLAN_80211 is not set
44765 +# CONFIG_WAN is not set
44766 +# CONFIG_FDDI is not set
44767 +# CONFIG_HIPPI is not set
44768 +# CONFIG_PPP is not set
44769 +# CONFIG_SLIP is not set
44770 +# CONFIG_NETCONSOLE is not set
44771 +# CONFIG_NETPOLL is not set
44772 +# CONFIG_NET_POLL_CONTROLLER is not set
44773 +# CONFIG_ISDN is not set
44774 +# CONFIG_PHONE is not set
44775 +
44776 +#
44777 +# Input device support
44778 +#
44779 +CONFIG_INPUT=y
44780 +# CONFIG_INPUT_FF_MEMLESS is not set
44781 +# CONFIG_INPUT_POLLDEV is not set
44782 +
44783 +#
44784 +# Userland interfaces
44785 +#
44786 +# CONFIG_INPUT_MOUSEDEV is not set
44787 +# CONFIG_INPUT_JOYDEV is not set
44788 +# CONFIG_INPUT_EVDEV is not set
44789 +# CONFIG_INPUT_EVBUG is not set
44790 +
44791 +#
44792 +# Input Device Drivers
44793 +#
44794 +# CONFIG_INPUT_KEYBOARD is not set
44795 +# CONFIG_INPUT_MOUSE is not set
44796 +# CONFIG_INPUT_JOYSTICK is not set
44797 +# CONFIG_INPUT_TABLET is not set
44798 +# CONFIG_INPUT_TOUCHSCREEN is not set
44799 +# CONFIG_INPUT_MISC is not set
44800 +
44801 +#
44802 +# Hardware I/O ports
44803 +#
44804 +# CONFIG_SERIO is not set
44805 +# CONFIG_GAMEPORT is not set
44806 +
44807 +#
44808 +# Character devices
44809 +#
44810 +# CONFIG_VT is not set
44811 +# CONFIG_SERIAL_NONSTANDARD is not set
44812 +# CONFIG_NOZOMI is not set
44813 +
44814 +#
44815 +# Serial drivers
44816 +#
44817 +CONFIG_SERIAL_8250=y
44818 +CONFIG_SERIAL_8250_CONSOLE=y
44819 +CONFIG_SERIAL_8250_PCI=y
44820 +CONFIG_SERIAL_8250_NR_UARTS=4
44821 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
44822 +# CONFIG_SERIAL_8250_EXTENDED is not set
44823 +CONFIG_SERIAL_8250_SHARE_IRQ=y
44824 +
44825 +#
44826 +# Non-8250 serial port support
44827 +#
44828 +# CONFIG_SERIAL_UARTLITE is not set
44829 +CONFIG_SERIAL_CORE=y
44830 +CONFIG_SERIAL_CORE_CONSOLE=y
44831 +# CONFIG_SERIAL_JSM is not set
44832 +# CONFIG_SERIAL_OF_PLATFORM is not set
44833 +CONFIG_UNIX98_PTYS=y
44834 +CONFIG_LEGACY_PTYS=y
44835 +CONFIG_LEGACY_PTY_COUNT=256
44836 +# CONFIG_IPMI_HANDLER is not set
44837 +CONFIG_HW_RANDOM=y
44838 +# CONFIG_NVRAM is not set
44839 +CONFIG_GEN_RTC=y
44840 +# CONFIG_GEN_RTC_X is not set
44841 +# CONFIG_R3964 is not set
44842 +# CONFIG_APPLICOM is not set
44843 +# CONFIG_RAW_DRIVER is not set
44844 +# CONFIG_TCG_TPM is not set
44845 +CONFIG_DEVPORT=y
44846 +CONFIG_I2C=y
44847 +CONFIG_I2C_BOARDINFO=y
44848 +CONFIG_I2C_CHARDEV=y
44849 +
44850 +#
44851 +# I2C Algorithms
44852 +#
44853 +# CONFIG_I2C_ALGOBIT is not set
44854 +# CONFIG_I2C_ALGOPCF is not set
44855 +# CONFIG_I2C_ALGOPCA is not set
44856 +
44857 +#
44858 +# I2C Hardware Bus support
44859 +#
44860 +# CONFIG_I2C_ALI1535 is not set
44861 +# CONFIG_I2C_ALI1563 is not set
44862 +# CONFIG_I2C_ALI15X3 is not set
44863 +# CONFIG_I2C_AMD756 is not set
44864 +# CONFIG_I2C_AMD8111 is not set
44865 +# CONFIG_I2C_I801 is not set
44866 +# CONFIG_I2C_I810 is not set
44867 +# CONFIG_I2C_PIIX4 is not set
44868 +CONFIG_I2C_MPC=y
44869 +# CONFIG_I2C_NFORCE2 is not set
44870 +# CONFIG_I2C_OCORES is not set
44871 +# CONFIG_I2C_PARPORT_LIGHT is not set
44872 +# CONFIG_I2C_PROSAVAGE is not set
44873 +# CONFIG_I2C_SAVAGE4 is not set
44874 +# CONFIG_I2C_SIMTEC is not set
44875 +# CONFIG_I2C_SIS5595 is not set
44876 +# CONFIG_I2C_SIS630 is not set
44877 +# CONFIG_I2C_SIS96X is not set
44878 +# CONFIG_I2C_TAOS_EVM is not set
44879 +# CONFIG_I2C_VIA is not set
44880 +# CONFIG_I2C_VIAPRO is not set
44881 +# CONFIG_I2C_VOODOO3 is not set
44882 +
44883 +#
44884 +# Miscellaneous I2C Chip support
44885 +#
44886 +# CONFIG_DS1682 is not set
44887 +# CONFIG_SENSORS_EEPROM is not set
44888 +# CONFIG_SENSORS_PCF8574 is not set
44889 +# CONFIG_PCF8575 is not set
44890 +# CONFIG_SENSORS_PCF8591 is not set
44891 +# CONFIG_TPS65010 is not set
44892 +# CONFIG_SENSORS_MAX6875 is not set
44893 +# CONFIG_SENSORS_TSL2550 is not set
44894 +# CONFIG_I2C_DEBUG_CORE is not set
44895 +# CONFIG_I2C_DEBUG_ALGO is not set
44896 +# CONFIG_I2C_DEBUG_BUS is not set
44897 +# CONFIG_I2C_DEBUG_CHIP is not set
44898 +
44899 +#
44900 +# SPI support
44901 +#
44902 +# CONFIG_SPI is not set
44903 +# CONFIG_SPI_MASTER is not set
44904 +# CONFIG_W1 is not set
44905 +# CONFIG_POWER_SUPPLY is not set
44906 +CONFIG_HWMON=y
44907 +# CONFIG_HWMON_VID is not set
44908 +# CONFIG_SENSORS_AD7418 is not set
44909 +# CONFIG_SENSORS_ADM1021 is not set
44910 +# CONFIG_SENSORS_ADM1025 is not set
44911 +# CONFIG_SENSORS_ADM1026 is not set
44912 +# CONFIG_SENSORS_ADM1029 is not set
44913 +# CONFIG_SENSORS_ADM1031 is not set
44914 +# CONFIG_SENSORS_ADM9240 is not set
44915 +# CONFIG_SENSORS_ADT7470 is not set
44916 +# CONFIG_SENSORS_ADT7473 is not set
44917 +# CONFIG_SENSORS_ATXP1 is not set
44918 +# CONFIG_SENSORS_DS1621 is not set
44919 +# CONFIG_SENSORS_I5K_AMB is not set
44920 +# CONFIG_SENSORS_F71805F is not set
44921 +# CONFIG_SENSORS_F71882FG is not set
44922 +# CONFIG_SENSORS_F75375S is not set
44923 +# CONFIG_SENSORS_GL518SM is not set
44924 +# CONFIG_SENSORS_GL520SM is not set
44925 +# CONFIG_SENSORS_IT87 is not set
44926 +# CONFIG_SENSORS_LM63 is not set
44927 +CONFIG_SENSORS_LM75=y
44928 +# CONFIG_SENSORS_LM77 is not set
44929 +# CONFIG_SENSORS_LM78 is not set
44930 +# CONFIG_SENSORS_LM80 is not set
44931 +# CONFIG_SENSORS_LM83 is not set
44932 +# CONFIG_SENSORS_LM85 is not set
44933 +# CONFIG_SENSORS_LM87 is not set
44934 +# CONFIG_SENSORS_LM90 is not set
44935 +# CONFIG_SENSORS_LM92 is not set
44936 +# CONFIG_SENSORS_LM93 is not set
44937 +# CONFIG_SENSORS_MAX1619 is not set
44938 +# CONFIG_SENSORS_MAX6650 is not set
44939 +# CONFIG_SENSORS_PC87360 is not set
44940 +# CONFIG_SENSORS_PC87427 is not set
44941 +# CONFIG_SENSORS_SIS5595 is not set
44942 +# CONFIG_SENSORS_DME1737 is not set
44943 +# CONFIG_SENSORS_SMSC47M1 is not set
44944 +# CONFIG_SENSORS_SMSC47M192 is not set
44945 +# CONFIG_SENSORS_SMSC47B397 is not set
44946 +# CONFIG_SENSORS_ADS7828 is not set
44947 +# CONFIG_SENSORS_THMC50 is not set
44948 +# CONFIG_SENSORS_VIA686A is not set
44949 +# CONFIG_SENSORS_VT1211 is not set
44950 +# CONFIG_SENSORS_VT8231 is not set
44951 +# CONFIG_SENSORS_W83781D is not set
44952 +# CONFIG_SENSORS_W83791D is not set
44953 +# CONFIG_SENSORS_W83792D is not set
44954 +# CONFIG_SENSORS_W83793 is not set
44955 +# CONFIG_SENSORS_W83L785TS is not set
44956 +# CONFIG_SENSORS_W83L786NG is not set
44957 +# CONFIG_SENSORS_W83627HF is not set
44958 +# CONFIG_SENSORS_W83627EHF is not set
44959 +CONFIG_HWMON_DEBUG_CHIP=y
44960 +# CONFIG_THERMAL is not set
44961 +# CONFIG_WATCHDOG is not set
44962 +
44963 +#
44964 +# Sonics Silicon Backplane
44965 +#
44966 +CONFIG_SSB_POSSIBLE=y
44967 +# CONFIG_SSB is not set
44968 +
44969 +#
44970 +# Multifunction device drivers
44971 +#
44972 +# CONFIG_MFD_SM501 is not set
44973 +
44974 +#
44975 +# Multimedia devices
44976 +#
44977 +# CONFIG_VIDEO_DEV is not set
44978 +# CONFIG_DVB_CORE is not set
44979 +CONFIG_DAB=y
44980 +
44981 +#
44982 +# Graphics support
44983 +#
44984 +# CONFIG_AGP is not set
44985 +# CONFIG_DRM is not set
44986 +# CONFIG_VGASTATE is not set
44987 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
44988 +# CONFIG_FB is not set
44989 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
44990 +
44991 +#
44992 +# Display device support
44993 +#
44994 +# CONFIG_DISPLAY_SUPPORT is not set
44995 +
44996 +#
44997 +# Sound
44998 +#
44999 +# CONFIG_SOUND is not set
45000 +CONFIG_HID_SUPPORT=y
45001 +CONFIG_HID=y
45002 +# CONFIG_HID_DEBUG is not set
45003 +# CONFIG_HIDRAW is not set
45004 +CONFIG_USB_SUPPORT=y
45005 +CONFIG_USB_ARCH_HAS_HCD=y
45006 +CONFIG_USB_ARCH_HAS_OHCI=y
45007 +CONFIG_USB_ARCH_HAS_EHCI=y
45008 +# CONFIG_USB is not set
45009 +
45010 +#
45011 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
45012 +#
45013 +# CONFIG_USB_GADGET is not set
45014 +# CONFIG_MMC is not set
45015 +# CONFIG_MEMSTICK is not set
45016 +# CONFIG_NEW_LEDS is not set
45017 +# CONFIG_INFINIBAND is not set
45018 +# CONFIG_EDAC is not set
45019 +# CONFIG_RTC_CLASS is not set
45020 +# CONFIG_DMADEVICES is not set
45021 +
45022 +#
45023 +# Userspace I/O
45024 +#
45025 +# CONFIG_UIO is not set
45026 +
45027 +#
45028 +# File systems
45029 +#
45030 +CONFIG_EXT2_FS=y
45031 +# CONFIG_EXT2_FS_XATTR is not set
45032 +# CONFIG_EXT2_FS_XIP is not set
45033 +CONFIG_EXT3_FS=y
45034 +CONFIG_EXT3_FS_XATTR=y
45035 +# CONFIG_EXT3_FS_POSIX_ACL is not set
45036 +# CONFIG_EXT3_FS_SECURITY is not set
45037 +# CONFIG_EXT4DEV_FS is not set
45038 +CONFIG_JBD=y
45039 +CONFIG_FS_MBCACHE=y
45040 +# CONFIG_REISERFS_FS is not set
45041 +# CONFIG_JFS_FS is not set
45042 +# CONFIG_FS_POSIX_ACL is not set
45043 +# CONFIG_XFS_FS is not set
45044 +# CONFIG_GFS2_FS is not set
45045 +# CONFIG_OCFS2_FS is not set
45046 +CONFIG_DNOTIFY=y
45047 +CONFIG_INOTIFY=y
45048 +CONFIG_INOTIFY_USER=y
45049 +# CONFIG_QUOTA is not set
45050 +# CONFIG_AUTOFS_FS is not set
45051 +# CONFIG_AUTOFS4_FS is not set
45052 +# CONFIG_FUSE_FS is not set
45053 +
45054 +#
45055 +# CD-ROM/DVD Filesystems
45056 +#
45057 +# CONFIG_ISO9660_FS is not set
45058 +# CONFIG_UDF_FS is not set
45059 +
45060 +#
45061 +# DOS/FAT/NT Filesystems
45062 +#
45063 +# CONFIG_MSDOS_FS is not set
45064 +# CONFIG_VFAT_FS is not set
45065 +# CONFIG_NTFS_FS is not set
45066 +
45067 +#
45068 +# Pseudo filesystems
45069 +#
45070 +CONFIG_PROC_FS=y
45071 +CONFIG_PROC_KCORE=y
45072 +CONFIG_PROC_SYSCTL=y
45073 +CONFIG_SYSFS=y
45074 +CONFIG_TMPFS=y
45075 +# CONFIG_TMPFS_POSIX_ACL is not set
45076 +# CONFIG_HUGETLB_PAGE is not set
45077 +# CONFIG_CONFIGFS_FS is not set
45078 +
45079 +#
45080 +# Miscellaneous filesystems
45081 +#
45082 +# CONFIG_ADFS_FS is not set
45083 +# CONFIG_AFFS_FS is not set
45084 +# CONFIG_HFS_FS is not set
45085 +# CONFIG_HFSPLUS_FS is not set
45086 +# CONFIG_BEFS_FS is not set
45087 +# CONFIG_BFS_FS is not set
45088 +# CONFIG_EFS_FS is not set
45089 +CONFIG_JFFS2_FS=y
45090 +CONFIG_JFFS2_FS_DEBUG=0
45091 +CONFIG_JFFS2_FS_WRITEBUFFER=y
45092 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
45093 +# CONFIG_JFFS2_SUMMARY is not set
45094 +# CONFIG_JFFS2_FS_XATTR is not set
45095 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
45096 +CONFIG_JFFS2_ZLIB=y
45097 +# CONFIG_JFFS2_LZO is not set
45098 +CONFIG_JFFS2_RTIME=y
45099 +# CONFIG_JFFS2_RUBIN is not set
45100 +CONFIG_CRAMFS=y
45101 +# CONFIG_VXFS_FS is not set
45102 +# CONFIG_MINIX_FS is not set
45103 +# CONFIG_HPFS_FS is not set
45104 +# CONFIG_QNX4FS_FS is not set
45105 +# CONFIG_ROMFS_FS is not set
45106 +# CONFIG_SYSV_FS is not set
45107 +# CONFIG_UFS_FS is not set
45108 +CONFIG_NETWORK_FILESYSTEMS=y
45109 +CONFIG_NFS_FS=y
45110 +# CONFIG_NFS_V3 is not set
45111 +# CONFIG_NFS_V4 is not set
45112 +# CONFIG_NFS_DIRECTIO is not set
45113 +# CONFIG_NFSD is not set
45114 +CONFIG_ROOT_NFS=y
45115 +CONFIG_LOCKD=y
45116 +CONFIG_NFS_COMMON=y
45117 +CONFIG_SUNRPC=y
45118 +# CONFIG_SUNRPC_BIND34 is not set
45119 +# CONFIG_RPCSEC_GSS_KRB5 is not set
45120 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
45121 +# CONFIG_SMB_FS is not set
45122 +# CONFIG_CIFS is not set
45123 +# CONFIG_NCP_FS is not set
45124 +# CONFIG_CODA_FS is not set
45125 +# CONFIG_AFS_FS is not set
45126 +
45127 +#
45128 +# Partition Types
45129 +#
45130 +CONFIG_PARTITION_ADVANCED=y
45131 +# CONFIG_ACORN_PARTITION is not set
45132 +# CONFIG_OSF_PARTITION is not set
45133 +# CONFIG_AMIGA_PARTITION is not set
45134 +# CONFIG_ATARI_PARTITION is not set
45135 +# CONFIG_MAC_PARTITION is not set
45136 +# CONFIG_MSDOS_PARTITION is not set
45137 +# CONFIG_LDM_PARTITION is not set
45138 +# CONFIG_SGI_PARTITION is not set
45139 +# CONFIG_ULTRIX_PARTITION is not set
45140 +# CONFIG_SUN_PARTITION is not set
45141 +# CONFIG_KARMA_PARTITION is not set
45142 +# CONFIG_EFI_PARTITION is not set
45143 +# CONFIG_SYSV68_PARTITION is not set
45144 +# CONFIG_NLS is not set
45145 +# CONFIG_DLM is not set
45146 +
45147 +#
45148 +# Library routines
45149 +#
45150 +CONFIG_BITREVERSE=y
45151 +# CONFIG_CRC_CCITT is not set
45152 +# CONFIG_CRC16 is not set
45153 +# CONFIG_CRC_ITU_T is not set
45154 +CONFIG_CRC32=y
45155 +# CONFIG_CRC7 is not set
45156 +# CONFIG_LIBCRC32C is not set
45157 +CONFIG_ZLIB_INFLATE=y
45158 +CONFIG_ZLIB_DEFLATE=y
45159 +CONFIG_PLIST=y
45160 +CONFIG_HAS_IOMEM=y
45161 +CONFIG_HAS_IOPORT=y
45162 +CONFIG_HAS_DMA=y
45163 +
45164 +#
45165 +# Kernel hacking
45166 +#
45167 +# CONFIG_PRINTK_TIME is not set
45168 +CONFIG_ENABLE_WARN_DEPRECATED=y
45169 +CONFIG_ENABLE_MUST_CHECK=y
45170 +# CONFIG_MAGIC_SYSRQ is not set
45171 +# CONFIG_UNUSED_SYMBOLS is not set
45172 +# CONFIG_DEBUG_FS is not set
45173 +# CONFIG_HEADERS_CHECK is not set
45174 +# CONFIG_DEBUG_KERNEL is not set
45175 +# CONFIG_SLUB_DEBUG_ON is not set
45176 +# CONFIG_SLUB_STATS is not set
45177 +# CONFIG_DEBUG_BUGVERBOSE is not set
45178 +# CONFIG_SAMPLES is not set
45179 +# CONFIG_PPC_EARLY_DEBUG is not set
45180 +
45181 +#
45182 +# Security options
45183 +#
45184 +# CONFIG_KEYS is not set
45185 +# CONFIG_SECURITY is not set
45186 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
45187 +CONFIG_CRYPTO=y
45188 +# CONFIG_CRYPTO_SEQIV is not set
45189 +# CONFIG_CRYPTO_MANAGER is not set
45190 +# CONFIG_CRYPTO_HMAC is not set
45191 +# CONFIG_CRYPTO_XCBC is not set
45192 +# CONFIG_CRYPTO_NULL is not set
45193 +# CONFIG_CRYPTO_MD4 is not set
45194 +# CONFIG_CRYPTO_MD5 is not set
45195 +# CONFIG_CRYPTO_SHA1 is not set
45196 +# CONFIG_CRYPTO_SHA256 is not set
45197 +# CONFIG_CRYPTO_SHA512 is not set
45198 +# CONFIG_CRYPTO_WP512 is not set
45199 +# CONFIG_CRYPTO_TGR192 is not set
45200 +# CONFIG_CRYPTO_GF128MUL is not set
45201 +# CONFIG_CRYPTO_ECB is not set
45202 +# CONFIG_CRYPTO_CBC is not set
45203 +# CONFIG_CRYPTO_PCBC is not set
45204 +# CONFIG_CRYPTO_LRW is not set
45205 +# CONFIG_CRYPTO_XTS is not set
45206 +# CONFIG_CRYPTO_CTR is not set
45207 +# CONFIG_CRYPTO_GCM is not set
45208 +# CONFIG_CRYPTO_CCM is not set
45209 +# CONFIG_CRYPTO_CRYPTD is not set
45210 +# CONFIG_CRYPTO_DES is not set
45211 +# CONFIG_CRYPTO_FCRYPT is not set
45212 +# CONFIG_CRYPTO_BLOWFISH is not set
45213 +# CONFIG_CRYPTO_TWOFISH is not set
45214 +# CONFIG_CRYPTO_SERPENT is not set
45215 +# CONFIG_CRYPTO_AES is not set
45216 +# CONFIG_CRYPTO_CAST5 is not set
45217 +# CONFIG_CRYPTO_CAST6 is not set
45218 +# CONFIG_CRYPTO_TEA is not set
45219 +# CONFIG_CRYPTO_ARC4 is not set
45220 +# CONFIG_CRYPTO_KHAZAD is not set
45221 +# CONFIG_CRYPTO_ANUBIS is not set
45222 +# CONFIG_CRYPTO_SEED is not set
45223 +# CONFIG_CRYPTO_SALSA20 is not set
45224 +# CONFIG_CRYPTO_DEFLATE is not set
45225 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
45226 +# CONFIG_CRYPTO_CRC32C is not set
45227 +# CONFIG_CRYPTO_CAMELLIA is not set
45228 +# CONFIG_CRYPTO_AUTHENC is not set
45229 +# CONFIG_CRYPTO_LZO is not set
45230 +CONFIG_CRYPTO_HW=y
45231 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
45232 +# CONFIG_PPC_CLOCK is not set
45233 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/tqm8541_defconfig
45234 ===================================================================
45235 --- /dev/null
45236 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/tqm8541_defconfig
45237 @@ -0,0 +1,1109 @@
45238 +#
45239 +# Automatically generated make config: don't edit
45240 +# Linux kernel version: 2.6.25-rc6
45241 +# Mon Mar 24 08:48:44 2008
45242 +#
45243 +# CONFIG_PPC64 is not set
45244 +
45245 +#
45246 +# Processor support
45247 +#
45248 +# CONFIG_6xx is not set
45249 +CONFIG_PPC_85xx=y
45250 +# CONFIG_PPC_8xx is not set
45251 +# CONFIG_40x is not set
45252 +# CONFIG_44x is not set
45253 +# CONFIG_E200 is not set
45254 +CONFIG_E500=y
45255 +CONFIG_BOOKE=y
45256 +CONFIG_FSL_BOOKE=y
45257 +CONFIG_FSL_EMB_PERFMON=y
45258 +# CONFIG_PHYS_64BIT is not set
45259 +CONFIG_SPE=y
45260 +# CONFIG_PPC_MM_SLICES is not set
45261 +CONFIG_PPC32=y
45262 +CONFIG_WORD_SIZE=32
45263 +CONFIG_PPC_MERGE=y
45264 +CONFIG_MMU=y
45265 +CONFIG_GENERIC_CMOS_UPDATE=y
45266 +CONFIG_GENERIC_TIME=y
45267 +CONFIG_GENERIC_TIME_VSYSCALL=y
45268 +CONFIG_GENERIC_CLOCKEVENTS=y
45269 +CONFIG_GENERIC_HARDIRQS=y
45270 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
45271 +CONFIG_IRQ_PER_CPU=y
45272 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
45273 +CONFIG_ARCH_HAS_ILOG2_U32=y
45274 +CONFIG_GENERIC_HWEIGHT=y
45275 +CONFIG_GENERIC_CALIBRATE_DELAY=y
45276 +CONFIG_GENERIC_FIND_NEXT_BIT=y
45277 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
45278 +CONFIG_PPC=y
45279 +CONFIG_EARLY_PRINTK=y
45280 +CONFIG_GENERIC_NVRAM=y
45281 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
45282 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
45283 +CONFIG_PPC_OF=y
45284 +CONFIG_OF=y
45285 +CONFIG_PPC_UDBG_16550=y
45286 +# CONFIG_GENERIC_TBSYNC is not set
45287 +CONFIG_AUDIT_ARCH=y
45288 +CONFIG_GENERIC_BUG=y
45289 +CONFIG_DEFAULT_UIMAGE=y
45290 +# CONFIG_PPC_DCR_NATIVE is not set
45291 +# CONFIG_PPC_DCR_MMIO is not set
45292 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
45293 +
45294 +#
45295 +# General setup
45296 +#
45297 +CONFIG_EXPERIMENTAL=y
45298 +CONFIG_BROKEN_ON_SMP=y
45299 +CONFIG_INIT_ENV_ARG_LIMIT=32
45300 +CONFIG_LOCALVERSION=""
45301 +CONFIG_LOCALVERSION_AUTO=y
45302 +CONFIG_SWAP=y
45303 +CONFIG_SYSVIPC=y
45304 +CONFIG_SYSVIPC_SYSCTL=y
45305 +# CONFIG_POSIX_MQUEUE is not set
45306 +# CONFIG_BSD_PROCESS_ACCT is not set
45307 +# CONFIG_TASKSTATS is not set
45308 +# CONFIG_AUDIT is not set
45309 +# CONFIG_IKCONFIG is not set
45310 +CONFIG_LOG_BUF_SHIFT=14
45311 +# CONFIG_CGROUPS is not set
45312 +CONFIG_GROUP_SCHED=y
45313 +CONFIG_FAIR_GROUP_SCHED=y
45314 +# CONFIG_RT_GROUP_SCHED is not set
45315 +CONFIG_USER_SCHED=y
45316 +# CONFIG_CGROUP_SCHED is not set
45317 +CONFIG_SYSFS_DEPRECATED=y
45318 +CONFIG_SYSFS_DEPRECATED_V2=y
45319 +# CONFIG_RELAY is not set
45320 +# CONFIG_NAMESPACES is not set
45321 +CONFIG_BLK_DEV_INITRD=y
45322 +CONFIG_INITRAMFS_SOURCE=""
45323 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
45324 +CONFIG_SYSCTL=y
45325 +CONFIG_EMBEDDED=y
45326 +CONFIG_SYSCTL_SYSCALL=y
45327 +# CONFIG_KALLSYMS is not set
45328 +# CONFIG_HOTPLUG is not set
45329 +CONFIG_PRINTK=y
45330 +CONFIG_BUG=y
45331 +CONFIG_ELF_CORE=y
45332 +CONFIG_COMPAT_BRK=y
45333 +CONFIG_BASE_FULL=y
45334 +CONFIG_FUTEX=y
45335 +CONFIG_ANON_INODES=y
45336 +# CONFIG_EPOLL is not set
45337 +CONFIG_SIGNALFD=y
45338 +CONFIG_TIMERFD=y
45339 +CONFIG_EVENTFD=y
45340 +CONFIG_SHMEM=y
45341 +CONFIG_VM_EVENT_COUNTERS=y
45342 +CONFIG_SLUB_DEBUG=y
45343 +# CONFIG_SLAB is not set
45344 +CONFIG_SLUB=y
45345 +# CONFIG_SLOB is not set
45346 +# CONFIG_PROFILING is not set
45347 +# CONFIG_MARKERS is not set
45348 +CONFIG_HAVE_OPROFILE=y
45349 +CONFIG_HAVE_KPROBES=y
45350 +CONFIG_HAVE_KRETPROBES=y
45351 +CONFIG_PROC_PAGE_MONITOR=y
45352 +CONFIG_SLABINFO=y
45353 +CONFIG_RT_MUTEXES=y
45354 +# CONFIG_TINY_SHMEM is not set
45355 +CONFIG_BASE_SMALL=0
45356 +# CONFIG_MODULES is not set
45357 +CONFIG_BLOCK=y
45358 +# CONFIG_LBD is not set
45359 +# CONFIG_BLK_DEV_IO_TRACE is not set
45360 +# CONFIG_LSF is not set
45361 +# CONFIG_BLK_DEV_BSG is not set
45362 +
45363 +#
45364 +# IO Schedulers
45365 +#
45366 +CONFIG_IOSCHED_NOOP=y
45367 +CONFIG_IOSCHED_AS=y
45368 +CONFIG_IOSCHED_DEADLINE=y
45369 +CONFIG_IOSCHED_CFQ=y
45370 +CONFIG_DEFAULT_AS=y
45371 +# CONFIG_DEFAULT_DEADLINE is not set
45372 +# CONFIG_DEFAULT_CFQ is not set
45373 +# CONFIG_DEFAULT_NOOP is not set
45374 +CONFIG_DEFAULT_IOSCHED="anticipatory"
45375 +CONFIG_CLASSIC_RCU=y
45376 +
45377 +#
45378 +# Platform support
45379 +#
45380 +# CONFIG_PPC_MPC512x is not set
45381 +# CONFIG_PPC_MPC5121 is not set
45382 +# CONFIG_PPC_CELL is not set
45383 +# CONFIG_PPC_CELL_NATIVE is not set
45384 +# CONFIG_PQ2ADS is not set
45385 +CONFIG_MPC85xx=y
45386 +# CONFIG_MPC8540_ADS is not set
45387 +# CONFIG_MPC8560_ADS is not set
45388 +# CONFIG_MPC85xx_CDS is not set
45389 +# CONFIG_MPC85xx_MDS is not set
45390 +# CONFIG_MPC85xx_DS is not set
45391 +# CONFIG_STX_GP3 is not set
45392 +# CONFIG_TQM8540 is not set
45393 +CONFIG_TQM8541=y
45394 +# CONFIG_TQM8555 is not set
45395 +# CONFIG_TQM8560 is not set
45396 +# CONFIG_SBC8548 is not set
45397 +# CONFIG_SBC8560 is not set
45398 +CONFIG_TQM85xx=y
45399 +# CONFIG_IPIC is not set
45400 +CONFIG_MPIC=y
45401 +# CONFIG_MPIC_WEIRD is not set
45402 +# CONFIG_PPC_I8259 is not set
45403 +# CONFIG_PPC_RTAS is not set
45404 +# CONFIG_MMIO_NVRAM is not set
45405 +# CONFIG_PPC_MPC106 is not set
45406 +# CONFIG_PPC_970_NAP is not set
45407 +# CONFIG_PPC_INDIRECT_IO is not set
45408 +# CONFIG_GENERIC_IOMAP is not set
45409 +# CONFIG_CPU_FREQ is not set
45410 +CONFIG_CPM2=y
45411 +CONFIG_PPC_CPM_NEW_BINDING=y
45412 +# CONFIG_FSL_ULI1575 is not set
45413 +CONFIG_CPM=y
45414 +
45415 +#
45416 +# Kernel options
45417 +#
45418 +# CONFIG_HIGHMEM is not set
45419 +# CONFIG_TICK_ONESHOT is not set
45420 +# CONFIG_NO_HZ is not set
45421 +# CONFIG_HIGH_RES_TIMERS is not set
45422 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
45423 +# CONFIG_HZ_100 is not set
45424 +CONFIG_HZ_250=y
45425 +# CONFIG_HZ_300 is not set
45426 +# CONFIG_HZ_1000 is not set
45427 +CONFIG_HZ=250
45428 +# CONFIG_SCHED_HRTICK is not set
45429 +CONFIG_PREEMPT_NONE=y
45430 +# CONFIG_PREEMPT_VOLUNTARY is not set
45431 +# CONFIG_PREEMPT is not set
45432 +CONFIG_BINFMT_ELF=y
45433 +# CONFIG_BINFMT_MISC is not set
45434 +CONFIG_MATH_EMULATION=y
45435 +# CONFIG_IOMMU_HELPER is not set
45436 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
45437 +CONFIG_ARCH_HAS_WALK_MEMORY=y
45438 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
45439 +CONFIG_ARCH_FLATMEM_ENABLE=y
45440 +CONFIG_ARCH_POPULATES_NODE_MAP=y
45441 +CONFIG_SELECT_MEMORY_MODEL=y
45442 +CONFIG_FLATMEM_MANUAL=y
45443 +# CONFIG_DISCONTIGMEM_MANUAL is not set
45444 +# CONFIG_SPARSEMEM_MANUAL is not set
45445 +CONFIG_FLATMEM=y
45446 +CONFIG_FLAT_NODE_MEM_MAP=y
45447 +# CONFIG_SPARSEMEM_STATIC is not set
45448 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
45449 +CONFIG_SPLIT_PTLOCK_CPUS=4
45450 +# CONFIG_RESOURCES_64BIT is not set
45451 +CONFIG_ZONE_DMA_FLAG=1
45452 +CONFIG_BOUNCE=y
45453 +CONFIG_VIRT_TO_BUS=y
45454 +# CONFIG_PROC_DEVICETREE is not set
45455 +# CONFIG_CMDLINE_BOOL is not set
45456 +# CONFIG_PM is not set
45457 +CONFIG_SECCOMP=y
45458 +CONFIG_ISA_DMA_API=y
45459 +
45460 +#
45461 +# Bus options
45462 +#
45463 +CONFIG_ZONE_DMA=y
45464 +CONFIG_PPC_INDIRECT_PCI=y
45465 +CONFIG_FSL_SOC=y
45466 +CONFIG_FSL_PCI=y
45467 +CONFIG_PCI=y
45468 +CONFIG_PCI_DOMAINS=y
45469 +CONFIG_PCI_SYSCALL=y
45470 +# CONFIG_PCIEPORTBUS is not set
45471 +CONFIG_ARCH_SUPPORTS_MSI=y
45472 +# CONFIG_PCI_MSI is not set
45473 +CONFIG_PCI_LEGACY=y
45474 +
45475 +#
45476 +# Advanced setup
45477 +#
45478 +# CONFIG_ADVANCED_OPTIONS is not set
45479 +
45480 +#
45481 +# Default settings for advanced configuration options are used
45482 +#
45483 +CONFIG_HIGHMEM_START=0xfe000000
45484 +CONFIG_LOWMEM_SIZE=0x30000000
45485 +CONFIG_KERNEL_START=0xc0000000
45486 +CONFIG_TASK_SIZE=0xc0000000
45487 +CONFIG_BOOT_LOAD=0x00800000
45488 +
45489 +#
45490 +# Networking
45491 +#
45492 +CONFIG_NET=y
45493 +
45494 +#
45495 +# Networking options
45496 +#
45497 +CONFIG_PACKET=y
45498 +# CONFIG_PACKET_MMAP is not set
45499 +CONFIG_UNIX=y
45500 +CONFIG_XFRM=y
45501 +# CONFIG_XFRM_USER is not set
45502 +# CONFIG_XFRM_SUB_POLICY is not set
45503 +# CONFIG_XFRM_MIGRATE is not set
45504 +# CONFIG_XFRM_STATISTICS is not set
45505 +# CONFIG_NET_KEY is not set
45506 +CONFIG_INET=y
45507 +CONFIG_IP_MULTICAST=y
45508 +# CONFIG_IP_ADVANCED_ROUTER is not set
45509 +CONFIG_IP_FIB_HASH=y
45510 +CONFIG_IP_PNP=y
45511 +CONFIG_IP_PNP_DHCP=y
45512 +CONFIG_IP_PNP_BOOTP=y
45513 +# CONFIG_IP_PNP_RARP is not set
45514 +# CONFIG_NET_IPIP is not set
45515 +# CONFIG_NET_IPGRE is not set
45516 +# CONFIG_IP_MROUTE is not set
45517 +# CONFIG_ARPD is not set
45518 +CONFIG_SYN_COOKIES=y
45519 +# CONFIG_INET_AH is not set
45520 +# CONFIG_INET_ESP is not set
45521 +# CONFIG_INET_IPCOMP is not set
45522 +# CONFIG_INET_XFRM_TUNNEL is not set
45523 +# CONFIG_INET_TUNNEL is not set
45524 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
45525 +CONFIG_INET_XFRM_MODE_TUNNEL=y
45526 +CONFIG_INET_XFRM_MODE_BEET=y
45527 +# CONFIG_INET_LRO is not set
45528 +CONFIG_INET_DIAG=y
45529 +CONFIG_INET_TCP_DIAG=y
45530 +# CONFIG_TCP_CONG_ADVANCED is not set
45531 +CONFIG_TCP_CONG_CUBIC=y
45532 +CONFIG_DEFAULT_TCP_CONG="cubic"
45533 +# CONFIG_TCP_MD5SIG is not set
45534 +# CONFIG_IPV6 is not set
45535 +# CONFIG_INET6_XFRM_TUNNEL is not set
45536 +# CONFIG_INET6_TUNNEL is not set
45537 +# CONFIG_NETWORK_SECMARK is not set
45538 +# CONFIG_NETFILTER is not set
45539 +# CONFIG_IP_DCCP is not set
45540 +# CONFIG_IP_SCTP is not set
45541 +# CONFIG_TIPC is not set
45542 +# CONFIG_ATM is not set
45543 +# CONFIG_BRIDGE is not set
45544 +# CONFIG_VLAN_8021Q is not set
45545 +# CONFIG_DECNET is not set
45546 +# CONFIG_LLC2 is not set
45547 +# CONFIG_IPX is not set
45548 +# CONFIG_ATALK is not set
45549 +# CONFIG_X25 is not set
45550 +# CONFIG_LAPB is not set
45551 +# CONFIG_ECONET is not set
45552 +# CONFIG_WAN_ROUTER is not set
45553 +# CONFIG_NET_SCHED is not set
45554 +
45555 +#
45556 +# Network testing
45557 +#
45558 +# CONFIG_NET_PKTGEN is not set
45559 +# CONFIG_HAMRADIO is not set
45560 +# CONFIG_CAN is not set
45561 +# CONFIG_IRDA is not set
45562 +# CONFIG_BT is not set
45563 +# CONFIG_AF_RXRPC is not set
45564 +
45565 +#
45566 +# Wireless
45567 +#
45568 +# CONFIG_CFG80211 is not set
45569 +# CONFIG_WIRELESS_EXT is not set
45570 +# CONFIG_MAC80211 is not set
45571 +# CONFIG_IEEE80211 is not set
45572 +# CONFIG_RFKILL is not set
45573 +# CONFIG_NET_9P is not set
45574 +
45575 +#
45576 +# Device Drivers
45577 +#
45578 +
45579 +#
45580 +# Generic Driver Options
45581 +#
45582 +CONFIG_STANDALONE=y
45583 +CONFIG_PREVENT_FIRMWARE_BUILD=y
45584 +# CONFIG_SYS_HYPERVISOR is not set
45585 +# CONFIG_CONNECTOR is not set
45586 +CONFIG_MTD=y
45587 +# CONFIG_MTD_DEBUG is not set
45588 +CONFIG_MTD_CONCAT=y
45589 +CONFIG_MTD_PARTITIONS=y
45590 +# CONFIG_MTD_REDBOOT_PARTS is not set
45591 +CONFIG_MTD_CMDLINE_PARTS=y
45592 +# CONFIG_MTD_OF_PARTS is not set
45593 +
45594 +#
45595 +# User Modules And Translation Layers
45596 +#
45597 +CONFIG_MTD_CHAR=y
45598 +CONFIG_MTD_BLKDEVS=y
45599 +CONFIG_MTD_BLOCK=y
45600 +# CONFIG_FTL is not set
45601 +# CONFIG_NFTL is not set
45602 +# CONFIG_INFTL is not set
45603 +# CONFIG_RFD_FTL is not set
45604 +# CONFIG_SSFDC is not set
45605 +# CONFIG_MTD_OOPS is not set
45606 +
45607 +#
45608 +# RAM/ROM/Flash chip drivers
45609 +#
45610 +CONFIG_MTD_CFI=y
45611 +# CONFIG_MTD_JEDECPROBE is not set
45612 +CONFIG_MTD_GEN_PROBE=y
45613 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
45614 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
45615 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
45616 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
45617 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
45618 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
45619 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
45620 +CONFIG_MTD_CFI_I1=y
45621 +CONFIG_MTD_CFI_I2=y
45622 +# CONFIG_MTD_CFI_I4 is not set
45623 +# CONFIG_MTD_CFI_I8 is not set
45624 +# CONFIG_MTD_CFI_INTELEXT is not set
45625 +CONFIG_MTD_CFI_AMDSTD=y
45626 +# CONFIG_MTD_CFI_STAA is not set
45627 +CONFIG_MTD_CFI_UTIL=y
45628 +# CONFIG_MTD_RAM is not set
45629 +# CONFIG_MTD_ROM is not set
45630 +# CONFIG_MTD_ABSENT is not set
45631 +
45632 +#
45633 +# Mapping drivers for chip access
45634 +#
45635 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
45636 +# CONFIG_MTD_PHYSMAP is not set
45637 +# CONFIG_MTD_PHYSMAP_OF is not set
45638 +# CONFIG_MTD_INTEL_VR_NOR is not set
45639 +# CONFIG_MTD_PLATRAM is not set
45640 +
45641 +#
45642 +# Self-contained MTD device drivers
45643 +#
45644 +# CONFIG_MTD_PMC551 is not set
45645 +# CONFIG_MTD_SLRAM is not set
45646 +# CONFIG_MTD_PHRAM is not set
45647 +# CONFIG_MTD_MTDRAM is not set
45648 +# CONFIG_MTD_BLOCK2MTD is not set
45649 +
45650 +#
45651 +# Disk-On-Chip Device Drivers
45652 +#
45653 +# CONFIG_MTD_DOC2000 is not set
45654 +# CONFIG_MTD_DOC2001 is not set
45655 +# CONFIG_MTD_DOC2001PLUS is not set
45656 +# CONFIG_MTD_NAND is not set
45657 +# CONFIG_MTD_ONENAND is not set
45658 +
45659 +#
45660 +# UBI - Unsorted block images
45661 +#
45662 +# CONFIG_MTD_UBI is not set
45663 +CONFIG_OF_DEVICE=y
45664 +# CONFIG_PARPORT is not set
45665 +CONFIG_BLK_DEV=y
45666 +# CONFIG_BLK_DEV_FD is not set
45667 +# CONFIG_BLK_CPQ_DA is not set
45668 +# CONFIG_BLK_CPQ_CISS_DA is not set
45669 +# CONFIG_BLK_DEV_DAC960 is not set
45670 +# CONFIG_BLK_DEV_UMEM is not set
45671 +# CONFIG_BLK_DEV_COW_COMMON is not set
45672 +CONFIG_BLK_DEV_LOOP=y
45673 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
45674 +# CONFIG_BLK_DEV_NBD is not set
45675 +# CONFIG_BLK_DEV_SX8 is not set
45676 +CONFIG_BLK_DEV_RAM=y
45677 +CONFIG_BLK_DEV_RAM_COUNT=16
45678 +CONFIG_BLK_DEV_RAM_SIZE=32768
45679 +# CONFIG_BLK_DEV_XIP is not set
45680 +# CONFIG_CDROM_PKTCDVD is not set
45681 +# CONFIG_ATA_OVER_ETH is not set
45682 +CONFIG_MISC_DEVICES=y
45683 +# CONFIG_PHANTOM is not set
45684 +# CONFIG_EEPROM_93CX6 is not set
45685 +# CONFIG_SGI_IOC4 is not set
45686 +# CONFIG_TIFM_CORE is not set
45687 +# CONFIG_ENCLOSURE_SERVICES is not set
45688 +CONFIG_HAVE_IDE=y
45689 +CONFIG_IDE=y
45690 +CONFIG_IDE_MAX_HWIFS=4
45691 +CONFIG_BLK_DEV_IDE=y
45692 +
45693 +#
45694 +# Please see Documentation/ide/ide.txt for help/info on IDE drives
45695 +#
45696 +# CONFIG_BLK_DEV_IDE_SATA is not set
45697 +CONFIG_BLK_DEV_IDEDISK=y
45698 +# CONFIG_IDEDISK_MULTI_MODE is not set
45699 +# CONFIG_BLK_DEV_IDECD is not set
45700 +# CONFIG_BLK_DEV_IDETAPE is not set
45701 +# CONFIG_BLK_DEV_IDEFLOPPY is not set
45702 +# CONFIG_IDE_TASK_IOCTL is not set
45703 +CONFIG_IDE_PROC_FS=y
45704 +
45705 +#
45706 +# IDE chipset support/bugfixes
45707 +#
45708 +CONFIG_IDE_GENERIC=y
45709 +# CONFIG_BLK_DEV_PLATFORM is not set
45710 +CONFIG_BLK_DEV_IDEDMA_SFF=y
45711 +
45712 +#
45713 +# PCI IDE chipsets support
45714 +#
45715 +CONFIG_BLK_DEV_IDEPCI=y
45716 +CONFIG_IDEPCI_PCIBUS_ORDER=y
45717 +# CONFIG_BLK_DEV_OFFBOARD is not set
45718 +CONFIG_BLK_DEV_GENERIC=y
45719 +# CONFIG_BLK_DEV_OPTI621 is not set
45720 +CONFIG_BLK_DEV_IDEDMA_PCI=y
45721 +# CONFIG_BLK_DEV_AEC62XX is not set
45722 +# CONFIG_BLK_DEV_ALI15X3 is not set
45723 +# CONFIG_BLK_DEV_AMD74XX is not set
45724 +# CONFIG_BLK_DEV_CMD64X is not set
45725 +# CONFIG_BLK_DEV_TRIFLEX is not set
45726 +# CONFIG_BLK_DEV_CY82C693 is not set
45727 +# CONFIG_BLK_DEV_CS5520 is not set
45728 +# CONFIG_BLK_DEV_CS5530 is not set
45729 +# CONFIG_BLK_DEV_HPT34X is not set
45730 +# CONFIG_BLK_DEV_HPT366 is not set
45731 +# CONFIG_BLK_DEV_JMICRON is not set
45732 +# CONFIG_BLK_DEV_SC1200 is not set
45733 +# CONFIG_BLK_DEV_PIIX is not set
45734 +# CONFIG_BLK_DEV_IT8213 is not set
45735 +# CONFIG_BLK_DEV_IT821X is not set
45736 +# CONFIG_BLK_DEV_NS87415 is not set
45737 +# CONFIG_BLK_DEV_PDC202XX_OLD is not set
45738 +# CONFIG_BLK_DEV_PDC202XX_NEW is not set
45739 +# CONFIG_BLK_DEV_SVWKS is not set
45740 +# CONFIG_BLK_DEV_SIIMAGE is not set
45741 +# CONFIG_BLK_DEV_SL82C105 is not set
45742 +# CONFIG_BLK_DEV_SLC90E66 is not set
45743 +# CONFIG_BLK_DEV_TRM290 is not set
45744 +CONFIG_BLK_DEV_VIA82CXXX=y
45745 +# CONFIG_BLK_DEV_TC86C001 is not set
45746 +CONFIG_BLK_DEV_IDEDMA=y
45747 +CONFIG_IDE_ARCH_OBSOLETE_INIT=y
45748 +# CONFIG_BLK_DEV_HD is not set
45749 +
45750 +#
45751 +# SCSI device support
45752 +#
45753 +# CONFIG_RAID_ATTRS is not set
45754 +# CONFIG_SCSI is not set
45755 +# CONFIG_SCSI_DMA is not set
45756 +# CONFIG_SCSI_NETLINK is not set
45757 +# CONFIG_ATA is not set
45758 +# CONFIG_MD is not set
45759 +# CONFIG_FUSION is not set
45760 +
45761 +#
45762 +# IEEE 1394 (FireWire) support
45763 +#
45764 +# CONFIG_FIREWIRE is not set
45765 +# CONFIG_IEEE1394 is not set
45766 +# CONFIG_I2O is not set
45767 +# CONFIG_MACINTOSH_DRIVERS is not set
45768 +CONFIG_NETDEVICES=y
45769 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
45770 +# CONFIG_DUMMY is not set
45771 +# CONFIG_BONDING is not set
45772 +# CONFIG_MACVLAN is not set
45773 +# CONFIG_EQUALIZER is not set
45774 +# CONFIG_TUN is not set
45775 +# CONFIG_VETH is not set
45776 +# CONFIG_ARCNET is not set
45777 +CONFIG_PHYLIB=y
45778 +
45779 +#
45780 +# MII PHY device drivers
45781 +#
45782 +# CONFIG_MARVELL_PHY is not set
45783 +# CONFIG_DAVICOM_PHY is not set
45784 +# CONFIG_QSEMI_PHY is not set
45785 +# CONFIG_LXT_PHY is not set
45786 +# CONFIG_CICADA_PHY is not set
45787 +# CONFIG_VITESSE_PHY is not set
45788 +# CONFIG_SMSC_PHY is not set
45789 +# CONFIG_BROADCOM_PHY is not set
45790 +# CONFIG_ICPLUS_PHY is not set
45791 +# CONFIG_REALTEK_PHY is not set
45792 +# CONFIG_FIXED_PHY is not set
45793 +# CONFIG_MDIO_BITBANG is not set
45794 +CONFIG_NET_ETHERNET=y
45795 +CONFIG_MII=y
45796 +# CONFIG_HAPPYMEAL is not set
45797 +# CONFIG_SUNGEM is not set
45798 +# CONFIG_CASSINI is not set
45799 +# CONFIG_NET_VENDOR_3COM is not set
45800 +# CONFIG_NET_TULIP is not set
45801 +# CONFIG_HP100 is not set
45802 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
45803 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
45804 +# CONFIG_IBM_NEW_EMAC_TAH is not set
45805 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
45806 +CONFIG_NET_PCI=y
45807 +# CONFIG_PCNET32 is not set
45808 +# CONFIG_AMD8111_ETH is not set
45809 +# CONFIG_ADAPTEC_STARFIRE is not set
45810 +# CONFIG_B44 is not set
45811 +# CONFIG_FORCEDETH is not set
45812 +# CONFIG_EEPRO100 is not set
45813 +CONFIG_E100=y
45814 +# CONFIG_FEALNX is not set
45815 +# CONFIG_NATSEMI is not set
45816 +# CONFIG_NE2K_PCI is not set
45817 +# CONFIG_8139CP is not set
45818 +# CONFIG_8139TOO is not set
45819 +# CONFIG_R6040 is not set
45820 +# CONFIG_SIS900 is not set
45821 +# CONFIG_EPIC100 is not set
45822 +# CONFIG_SUNDANCE is not set
45823 +# CONFIG_TLAN is not set
45824 +# CONFIG_VIA_RHINE is not set
45825 +# CONFIG_SC92031 is not set
45826 +# CONFIG_FS_ENET is not set
45827 +CONFIG_NETDEV_1000=y
45828 +# CONFIG_ACENIC is not set
45829 +# CONFIG_DL2K is not set
45830 +# CONFIG_E1000 is not set
45831 +# CONFIG_E1000E is not set
45832 +# CONFIG_E1000E_ENABLED is not set
45833 +# CONFIG_IP1000 is not set
45834 +# CONFIG_IGB is not set
45835 +# CONFIG_NS83820 is not set
45836 +# CONFIG_HAMACHI is not set
45837 +# CONFIG_YELLOWFIN is not set
45838 +# CONFIG_R8169 is not set
45839 +# CONFIG_SIS190 is not set
45840 +# CONFIG_SKGE is not set
45841 +# CONFIG_SKY2 is not set
45842 +# CONFIG_SK98LIN is not set
45843 +# CONFIG_VIA_VELOCITY is not set
45844 +# CONFIG_TIGON3 is not set
45845 +# CONFIG_BNX2 is not set
45846 +CONFIG_GIANFAR=y
45847 +CONFIG_GFAR_NAPI=y
45848 +# CONFIG_QLA3XXX is not set
45849 +# CONFIG_ATL1 is not set
45850 +CONFIG_NETDEV_10000=y
45851 +# CONFIG_CHELSIO_T1 is not set
45852 +# CONFIG_CHELSIO_T3 is not set
45853 +# CONFIG_IXGBE is not set
45854 +# CONFIG_IXGB is not set
45855 +# CONFIG_S2IO is not set
45856 +# CONFIG_MYRI10GE is not set
45857 +# CONFIG_NETXEN_NIC is not set
45858 +# CONFIG_NIU is not set
45859 +# CONFIG_MLX4_CORE is not set
45860 +# CONFIG_TEHUTI is not set
45861 +# CONFIG_BNX2X is not set
45862 +# CONFIG_TR is not set
45863 +
45864 +#
45865 +# Wireless LAN
45866 +#
45867 +# CONFIG_WLAN_PRE80211 is not set
45868 +# CONFIG_WLAN_80211 is not set
45869 +# CONFIG_WAN is not set
45870 +# CONFIG_FDDI is not set
45871 +# CONFIG_HIPPI is not set
45872 +# CONFIG_PPP is not set
45873 +# CONFIG_SLIP is not set
45874 +# CONFIG_NETCONSOLE is not set
45875 +# CONFIG_NETPOLL is not set
45876 +# CONFIG_NET_POLL_CONTROLLER is not set
45877 +# CONFIG_ISDN is not set
45878 +# CONFIG_PHONE is not set
45879 +
45880 +#
45881 +# Input device support
45882 +#
45883 +CONFIG_INPUT=y
45884 +# CONFIG_INPUT_FF_MEMLESS is not set
45885 +# CONFIG_INPUT_POLLDEV is not set
45886 +
45887 +#
45888 +# Userland interfaces
45889 +#
45890 +# CONFIG_INPUT_MOUSEDEV is not set
45891 +# CONFIG_INPUT_JOYDEV is not set
45892 +# CONFIG_INPUT_EVDEV is not set
45893 +# CONFIG_INPUT_EVBUG is not set
45894 +
45895 +#
45896 +# Input Device Drivers
45897 +#
45898 +# CONFIG_INPUT_KEYBOARD is not set
45899 +# CONFIG_INPUT_MOUSE is not set
45900 +# CONFIG_INPUT_JOYSTICK is not set
45901 +# CONFIG_INPUT_TABLET is not set
45902 +# CONFIG_INPUT_TOUCHSCREEN is not set
45903 +# CONFIG_INPUT_MISC is not set
45904 +
45905 +#
45906 +# Hardware I/O ports
45907 +#
45908 +# CONFIG_SERIO is not set
45909 +# CONFIG_GAMEPORT is not set
45910 +
45911 +#
45912 +# Character devices
45913 +#
45914 +# CONFIG_VT is not set
45915 +# CONFIG_SERIAL_NONSTANDARD is not set
45916 +# CONFIG_NOZOMI is not set
45917 +
45918 +#
45919 +# Serial drivers
45920 +#
45921 +CONFIG_SERIAL_8250=y
45922 +CONFIG_SERIAL_8250_CONSOLE=y
45923 +CONFIG_SERIAL_8250_PCI=y
45924 +CONFIG_SERIAL_8250_NR_UARTS=4
45925 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
45926 +# CONFIG_SERIAL_8250_EXTENDED is not set
45927 +CONFIG_SERIAL_8250_SHARE_IRQ=y
45928 +
45929 +#
45930 +# Non-8250 serial port support
45931 +#
45932 +# CONFIG_SERIAL_UARTLITE is not set
45933 +CONFIG_SERIAL_CORE=y
45934 +CONFIG_SERIAL_CORE_CONSOLE=y
45935 +CONFIG_SERIAL_CPM=y
45936 +CONFIG_SERIAL_CPM_CONSOLE=y
45937 +CONFIG_SERIAL_CPM_SCC1=y
45938 +# CONFIG_SERIAL_CPM_SCC2 is not set
45939 +# CONFIG_SERIAL_CPM_SCC3 is not set
45940 +# CONFIG_SERIAL_CPM_SCC4 is not set
45941 +# CONFIG_SERIAL_CPM_SMC1 is not set
45942 +# CONFIG_SERIAL_CPM_SMC2 is not set
45943 +# CONFIG_SERIAL_JSM is not set
45944 +# CONFIG_SERIAL_OF_PLATFORM is not set
45945 +CONFIG_UNIX98_PTYS=y
45946 +CONFIG_LEGACY_PTYS=y
45947 +CONFIG_LEGACY_PTY_COUNT=256
45948 +# CONFIG_IPMI_HANDLER is not set
45949 +CONFIG_HW_RANDOM=y
45950 +# CONFIG_NVRAM is not set
45951 +CONFIG_GEN_RTC=y
45952 +# CONFIG_GEN_RTC_X is not set
45953 +# CONFIG_R3964 is not set
45954 +# CONFIG_APPLICOM is not set
45955 +# CONFIG_RAW_DRIVER is not set
45956 +# CONFIG_TCG_TPM is not set
45957 +CONFIG_DEVPORT=y
45958 +CONFIG_I2C=y
45959 +CONFIG_I2C_BOARDINFO=y
45960 +CONFIG_I2C_CHARDEV=y
45961 +
45962 +#
45963 +# I2C Algorithms
45964 +#
45965 +# CONFIG_I2C_ALGOBIT is not set
45966 +# CONFIG_I2C_ALGOPCF is not set
45967 +# CONFIG_I2C_ALGOPCA is not set
45968 +
45969 +#
45970 +# I2C Hardware Bus support
45971 +#
45972 +# CONFIG_I2C_ALI1535 is not set
45973 +# CONFIG_I2C_ALI1563 is not set
45974 +# CONFIG_I2C_ALI15X3 is not set
45975 +# CONFIG_I2C_AMD756 is not set
45976 +# CONFIG_I2C_AMD8111 is not set
45977 +# CONFIG_I2C_I801 is not set
45978 +# CONFIG_I2C_I810 is not set
45979 +# CONFIG_I2C_PIIX4 is not set
45980 +CONFIG_I2C_MPC=y
45981 +# CONFIG_I2C_NFORCE2 is not set
45982 +# CONFIG_I2C_OCORES is not set
45983 +# CONFIG_I2C_PARPORT_LIGHT is not set
45984 +# CONFIG_I2C_PROSAVAGE is not set
45985 +# CONFIG_I2C_SAVAGE4 is not set
45986 +# CONFIG_I2C_SIMTEC is not set
45987 +# CONFIG_I2C_SIS5595 is not set
45988 +# CONFIG_I2C_SIS630 is not set
45989 +# CONFIG_I2C_SIS96X is not set
45990 +# CONFIG_I2C_TAOS_EVM is not set
45991 +# CONFIG_I2C_VIA is not set
45992 +# CONFIG_I2C_VIAPRO is not set
45993 +# CONFIG_I2C_VOODOO3 is not set
45994 +
45995 +#
45996 +# Miscellaneous I2C Chip support
45997 +#
45998 +# CONFIG_DS1682 is not set
45999 +# CONFIG_SENSORS_EEPROM is not set
46000 +# CONFIG_SENSORS_PCF8574 is not set
46001 +# CONFIG_PCF8575 is not set
46002 +# CONFIG_SENSORS_PCF8591 is not set
46003 +# CONFIG_TPS65010 is not set
46004 +# CONFIG_SENSORS_MAX6875 is not set
46005 +# CONFIG_SENSORS_TSL2550 is not set
46006 +# CONFIG_I2C_DEBUG_CORE is not set
46007 +# CONFIG_I2C_DEBUG_ALGO is not set
46008 +# CONFIG_I2C_DEBUG_BUS is not set
46009 +# CONFIG_I2C_DEBUG_CHIP is not set
46010 +
46011 +#
46012 +# SPI support
46013 +#
46014 +# CONFIG_SPI is not set
46015 +# CONFIG_SPI_MASTER is not set
46016 +# CONFIG_W1 is not set
46017 +# CONFIG_POWER_SUPPLY is not set
46018 +CONFIG_HWMON=y
46019 +# CONFIG_HWMON_VID is not set
46020 +# CONFIG_SENSORS_AD7418 is not set
46021 +# CONFIG_SENSORS_ADM1021 is not set
46022 +# CONFIG_SENSORS_ADM1025 is not set
46023 +# CONFIG_SENSORS_ADM1026 is not set
46024 +# CONFIG_SENSORS_ADM1029 is not set
46025 +# CONFIG_SENSORS_ADM1031 is not set
46026 +# CONFIG_SENSORS_ADM9240 is not set
46027 +# CONFIG_SENSORS_ADT7470 is not set
46028 +# CONFIG_SENSORS_ADT7473 is not set
46029 +# CONFIG_SENSORS_ATXP1 is not set
46030 +# CONFIG_SENSORS_DS1621 is not set
46031 +# CONFIG_SENSORS_I5K_AMB is not set
46032 +# CONFIG_SENSORS_F71805F is not set
46033 +# CONFIG_SENSORS_F71882FG is not set
46034 +# CONFIG_SENSORS_F75375S is not set
46035 +# CONFIG_SENSORS_GL518SM is not set
46036 +# CONFIG_SENSORS_GL520SM is not set
46037 +# CONFIG_SENSORS_IT87 is not set
46038 +# CONFIG_SENSORS_LM63 is not set
46039 +CONFIG_SENSORS_LM75=y
46040 +# CONFIG_SENSORS_LM77 is not set
46041 +# CONFIG_SENSORS_LM78 is not set
46042 +# CONFIG_SENSORS_LM80 is not set
46043 +# CONFIG_SENSORS_LM83 is not set
46044 +# CONFIG_SENSORS_LM85 is not set
46045 +# CONFIG_SENSORS_LM87 is not set
46046 +# CONFIG_SENSORS_LM90 is not set
46047 +# CONFIG_SENSORS_LM92 is not set
46048 +# CONFIG_SENSORS_LM93 is not set
46049 +# CONFIG_SENSORS_MAX1619 is not set
46050 +# CONFIG_SENSORS_MAX6650 is not set
46051 +# CONFIG_SENSORS_PC87360 is not set
46052 +# CONFIG_SENSORS_PC87427 is not set
46053 +# CONFIG_SENSORS_SIS5595 is not set
46054 +# CONFIG_SENSORS_DME1737 is not set
46055 +# CONFIG_SENSORS_SMSC47M1 is not set
46056 +# CONFIG_SENSORS_SMSC47M192 is not set
46057 +# CONFIG_SENSORS_SMSC47B397 is not set
46058 +# CONFIG_SENSORS_ADS7828 is not set
46059 +# CONFIG_SENSORS_THMC50 is not set
46060 +# CONFIG_SENSORS_VIA686A is not set
46061 +# CONFIG_SENSORS_VT1211 is not set
46062 +# CONFIG_SENSORS_VT8231 is not set
46063 +# CONFIG_SENSORS_W83781D is not set
46064 +# CONFIG_SENSORS_W83791D is not set
46065 +# CONFIG_SENSORS_W83792D is not set
46066 +# CONFIG_SENSORS_W83793 is not set
46067 +# CONFIG_SENSORS_W83L785TS is not set
46068 +# CONFIG_SENSORS_W83L786NG is not set
46069 +# CONFIG_SENSORS_W83627HF is not set
46070 +# CONFIG_SENSORS_W83627EHF is not set
46071 +CONFIG_HWMON_DEBUG_CHIP=y
46072 +# CONFIG_THERMAL is not set
46073 +# CONFIG_WATCHDOG is not set
46074 +
46075 +#
46076 +# Sonics Silicon Backplane
46077 +#
46078 +CONFIG_SSB_POSSIBLE=y
46079 +# CONFIG_SSB is not set
46080 +
46081 +#
46082 +# Multifunction device drivers
46083 +#
46084 +# CONFIG_MFD_SM501 is not set
46085 +
46086 +#
46087 +# Multimedia devices
46088 +#
46089 +# CONFIG_VIDEO_DEV is not set
46090 +# CONFIG_DVB_CORE is not set
46091 +CONFIG_DAB=y
46092 +
46093 +#
46094 +# Graphics support
46095 +#
46096 +# CONFIG_AGP is not set
46097 +# CONFIG_DRM is not set
46098 +# CONFIG_VGASTATE is not set
46099 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
46100 +# CONFIG_FB is not set
46101 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
46102 +
46103 +#
46104 +# Display device support
46105 +#
46106 +# CONFIG_DISPLAY_SUPPORT is not set
46107 +
46108 +#
46109 +# Sound
46110 +#
46111 +# CONFIG_SOUND is not set
46112 +CONFIG_HID_SUPPORT=y
46113 +CONFIG_HID=y
46114 +# CONFIG_HID_DEBUG is not set
46115 +# CONFIG_HIDRAW is not set
46116 +CONFIG_USB_SUPPORT=y
46117 +CONFIG_USB_ARCH_HAS_HCD=y
46118 +CONFIG_USB_ARCH_HAS_OHCI=y
46119 +CONFIG_USB_ARCH_HAS_EHCI=y
46120 +# CONFIG_USB is not set
46121 +
46122 +#
46123 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
46124 +#
46125 +# CONFIG_USB_GADGET is not set
46126 +# CONFIG_MMC is not set
46127 +# CONFIG_MEMSTICK is not set
46128 +# CONFIG_NEW_LEDS is not set
46129 +# CONFIG_INFINIBAND is not set
46130 +# CONFIG_EDAC is not set
46131 +# CONFIG_RTC_CLASS is not set
46132 +# CONFIG_DMADEVICES is not set
46133 +
46134 +#
46135 +# Userspace I/O
46136 +#
46137 +# CONFIG_UIO is not set
46138 +
46139 +#
46140 +# File systems
46141 +#
46142 +CONFIG_EXT2_FS=y
46143 +# CONFIG_EXT2_FS_XATTR is not set
46144 +# CONFIG_EXT2_FS_XIP is not set
46145 +CONFIG_EXT3_FS=y
46146 +CONFIG_EXT3_FS_XATTR=y
46147 +# CONFIG_EXT3_FS_POSIX_ACL is not set
46148 +# CONFIG_EXT3_FS_SECURITY is not set
46149 +# CONFIG_EXT4DEV_FS is not set
46150 +CONFIG_JBD=y
46151 +CONFIG_FS_MBCACHE=y
46152 +# CONFIG_REISERFS_FS is not set
46153 +# CONFIG_JFS_FS is not set
46154 +# CONFIG_FS_POSIX_ACL is not set
46155 +# CONFIG_XFS_FS is not set
46156 +# CONFIG_GFS2_FS is not set
46157 +# CONFIG_OCFS2_FS is not set
46158 +CONFIG_DNOTIFY=y
46159 +CONFIG_INOTIFY=y
46160 +CONFIG_INOTIFY_USER=y
46161 +# CONFIG_QUOTA is not set
46162 +# CONFIG_AUTOFS_FS is not set
46163 +# CONFIG_AUTOFS4_FS is not set
46164 +# CONFIG_FUSE_FS is not set
46165 +
46166 +#
46167 +# CD-ROM/DVD Filesystems
46168 +#
46169 +# CONFIG_ISO9660_FS is not set
46170 +# CONFIG_UDF_FS is not set
46171 +
46172 +#
46173 +# DOS/FAT/NT Filesystems
46174 +#
46175 +# CONFIG_MSDOS_FS is not set
46176 +# CONFIG_VFAT_FS is not set
46177 +# CONFIG_NTFS_FS is not set
46178 +
46179 +#
46180 +# Pseudo filesystems
46181 +#
46182 +CONFIG_PROC_FS=y
46183 +CONFIG_PROC_KCORE=y
46184 +CONFIG_PROC_SYSCTL=y
46185 +CONFIG_SYSFS=y
46186 +CONFIG_TMPFS=y
46187 +# CONFIG_TMPFS_POSIX_ACL is not set
46188 +# CONFIG_HUGETLB_PAGE is not set
46189 +# CONFIG_CONFIGFS_FS is not set
46190 +
46191 +#
46192 +# Miscellaneous filesystems
46193 +#
46194 +# CONFIG_ADFS_FS is not set
46195 +# CONFIG_AFFS_FS is not set
46196 +# CONFIG_HFS_FS is not set
46197 +# CONFIG_HFSPLUS_FS is not set
46198 +# CONFIG_BEFS_FS is not set
46199 +# CONFIG_BFS_FS is not set
46200 +# CONFIG_EFS_FS is not set
46201 +CONFIG_JFFS2_FS=y
46202 +CONFIG_JFFS2_FS_DEBUG=0
46203 +CONFIG_JFFS2_FS_WRITEBUFFER=y
46204 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
46205 +# CONFIG_JFFS2_SUMMARY is not set
46206 +# CONFIG_JFFS2_FS_XATTR is not set
46207 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
46208 +CONFIG_JFFS2_ZLIB=y
46209 +# CONFIG_JFFS2_LZO is not set
46210 +CONFIG_JFFS2_RTIME=y
46211 +# CONFIG_JFFS2_RUBIN is not set
46212 +CONFIG_CRAMFS=y
46213 +# CONFIG_VXFS_FS is not set
46214 +# CONFIG_MINIX_FS is not set
46215 +# CONFIG_HPFS_FS is not set
46216 +# CONFIG_QNX4FS_FS is not set
46217 +# CONFIG_ROMFS_FS is not set
46218 +# CONFIG_SYSV_FS is not set
46219 +# CONFIG_UFS_FS is not set
46220 +CONFIG_NETWORK_FILESYSTEMS=y
46221 +CONFIG_NFS_FS=y
46222 +# CONFIG_NFS_V3 is not set
46223 +# CONFIG_NFS_V4 is not set
46224 +# CONFIG_NFS_DIRECTIO is not set
46225 +# CONFIG_NFSD is not set
46226 +CONFIG_ROOT_NFS=y
46227 +CONFIG_LOCKD=y
46228 +CONFIG_NFS_COMMON=y
46229 +CONFIG_SUNRPC=y
46230 +# CONFIG_SUNRPC_BIND34 is not set
46231 +# CONFIG_RPCSEC_GSS_KRB5 is not set
46232 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
46233 +# CONFIG_SMB_FS is not set
46234 +# CONFIG_CIFS is not set
46235 +# CONFIG_NCP_FS is not set
46236 +# CONFIG_CODA_FS is not set
46237 +# CONFIG_AFS_FS is not set
46238 +
46239 +#
46240 +# Partition Types
46241 +#
46242 +CONFIG_PARTITION_ADVANCED=y
46243 +# CONFIG_ACORN_PARTITION is not set
46244 +# CONFIG_OSF_PARTITION is not set
46245 +# CONFIG_AMIGA_PARTITION is not set
46246 +# CONFIG_ATARI_PARTITION is not set
46247 +# CONFIG_MAC_PARTITION is not set
46248 +# CONFIG_MSDOS_PARTITION is not set
46249 +# CONFIG_LDM_PARTITION is not set
46250 +# CONFIG_SGI_PARTITION is not set
46251 +# CONFIG_ULTRIX_PARTITION is not set
46252 +# CONFIG_SUN_PARTITION is not set
46253 +# CONFIG_KARMA_PARTITION is not set
46254 +# CONFIG_EFI_PARTITION is not set
46255 +# CONFIG_SYSV68_PARTITION is not set
46256 +# CONFIG_NLS is not set
46257 +# CONFIG_DLM is not set
46258 +
46259 +#
46260 +# Library routines
46261 +#
46262 +CONFIG_BITREVERSE=y
46263 +# CONFIG_CRC_CCITT is not set
46264 +# CONFIG_CRC16 is not set
46265 +# CONFIG_CRC_ITU_T is not set
46266 +CONFIG_CRC32=y
46267 +# CONFIG_CRC7 is not set
46268 +# CONFIG_LIBCRC32C is not set
46269 +CONFIG_ZLIB_INFLATE=y
46270 +CONFIG_ZLIB_DEFLATE=y
46271 +CONFIG_PLIST=y
46272 +CONFIG_HAS_IOMEM=y
46273 +CONFIG_HAS_IOPORT=y
46274 +CONFIG_HAS_DMA=y
46275 +
46276 +#
46277 +# Kernel hacking
46278 +#
46279 +# CONFIG_PRINTK_TIME is not set
46280 +CONFIG_ENABLE_WARN_DEPRECATED=y
46281 +CONFIG_ENABLE_MUST_CHECK=y
46282 +# CONFIG_MAGIC_SYSRQ is not set
46283 +# CONFIG_UNUSED_SYMBOLS is not set
46284 +# CONFIG_DEBUG_FS is not set
46285 +# CONFIG_HEADERS_CHECK is not set
46286 +# CONFIG_DEBUG_KERNEL is not set
46287 +# CONFIG_SLUB_DEBUG_ON is not set
46288 +# CONFIG_SLUB_STATS is not set
46289 +# CONFIG_DEBUG_BUGVERBOSE is not set
46290 +# CONFIG_SAMPLES is not set
46291 +# CONFIG_KGDB_CONSOLE is not set
46292 +# CONFIG_PPC_EARLY_DEBUG is not set
46293 +
46294 +#
46295 +# Security options
46296 +#
46297 +# CONFIG_KEYS is not set
46298 +# CONFIG_SECURITY is not set
46299 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
46300 +CONFIG_CRYPTO=y
46301 +# CONFIG_CRYPTO_SEQIV is not set
46302 +# CONFIG_CRYPTO_MANAGER is not set
46303 +# CONFIG_CRYPTO_HMAC is not set
46304 +# CONFIG_CRYPTO_XCBC is not set
46305 +# CONFIG_CRYPTO_NULL is not set
46306 +# CONFIG_CRYPTO_MD4 is not set
46307 +# CONFIG_CRYPTO_MD5 is not set
46308 +# CONFIG_CRYPTO_SHA1 is not set
46309 +# CONFIG_CRYPTO_SHA256 is not set
46310 +# CONFIG_CRYPTO_SHA512 is not set
46311 +# CONFIG_CRYPTO_WP512 is not set
46312 +# CONFIG_CRYPTO_TGR192 is not set
46313 +# CONFIG_CRYPTO_GF128MUL is not set
46314 +# CONFIG_CRYPTO_ECB is not set
46315 +# CONFIG_CRYPTO_CBC is not set
46316 +# CONFIG_CRYPTO_PCBC is not set
46317 +# CONFIG_CRYPTO_LRW is not set
46318 +# CONFIG_CRYPTO_XTS is not set
46319 +# CONFIG_CRYPTO_CTR is not set
46320 +# CONFIG_CRYPTO_GCM is not set
46321 +# CONFIG_CRYPTO_CCM is not set
46322 +# CONFIG_CRYPTO_CRYPTD is not set
46323 +# CONFIG_CRYPTO_DES is not set
46324 +# CONFIG_CRYPTO_FCRYPT is not set
46325 +# CONFIG_CRYPTO_BLOWFISH is not set
46326 +# CONFIG_CRYPTO_TWOFISH is not set
46327 +# CONFIG_CRYPTO_SERPENT is not set
46328 +# CONFIG_CRYPTO_AES is not set
46329 +# CONFIG_CRYPTO_CAST5 is not set
46330 +# CONFIG_CRYPTO_CAST6 is not set
46331 +# CONFIG_CRYPTO_TEA is not set
46332 +# CONFIG_CRYPTO_ARC4 is not set
46333 +# CONFIG_CRYPTO_KHAZAD is not set
46334 +# CONFIG_CRYPTO_ANUBIS is not set
46335 +# CONFIG_CRYPTO_SEED is not set
46336 +# CONFIG_CRYPTO_SALSA20 is not set
46337 +# CONFIG_CRYPTO_DEFLATE is not set
46338 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
46339 +# CONFIG_CRYPTO_CRC32C is not set
46340 +# CONFIG_CRYPTO_CAMELLIA is not set
46341 +# CONFIG_CRYPTO_AUTHENC is not set
46342 +# CONFIG_CRYPTO_LZO is not set
46343 +CONFIG_CRYPTO_HW=y
46344 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
46345 +# CONFIG_PPC_CLOCK is not set
46346 +CONFIG_PPC_LIB_RHEAP=y
46347 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/tqm8555_defconfig
46348 ===================================================================
46349 --- /dev/null
46350 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/tqm8555_defconfig
46351 @@ -0,0 +1,1109 @@
46352 +#
46353 +# Automatically generated make config: don't edit
46354 +# Linux kernel version: 2.6.25-rc6
46355 +# Mon Mar 24 08:48:44 2008
46356 +#
46357 +# CONFIG_PPC64 is not set
46358 +
46359 +#
46360 +# Processor support
46361 +#
46362 +# CONFIG_6xx is not set
46363 +CONFIG_PPC_85xx=y
46364 +# CONFIG_PPC_8xx is not set
46365 +# CONFIG_40x is not set
46366 +# CONFIG_44x is not set
46367 +# CONFIG_E200 is not set
46368 +CONFIG_E500=y
46369 +CONFIG_BOOKE=y
46370 +CONFIG_FSL_BOOKE=y
46371 +CONFIG_FSL_EMB_PERFMON=y
46372 +# CONFIG_PHYS_64BIT is not set
46373 +CONFIG_SPE=y
46374 +# CONFIG_PPC_MM_SLICES is not set
46375 +CONFIG_PPC32=y
46376 +CONFIG_WORD_SIZE=32
46377 +CONFIG_PPC_MERGE=y
46378 +CONFIG_MMU=y
46379 +CONFIG_GENERIC_CMOS_UPDATE=y
46380 +CONFIG_GENERIC_TIME=y
46381 +CONFIG_GENERIC_TIME_VSYSCALL=y
46382 +CONFIG_GENERIC_CLOCKEVENTS=y
46383 +CONFIG_GENERIC_HARDIRQS=y
46384 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
46385 +CONFIG_IRQ_PER_CPU=y
46386 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
46387 +CONFIG_ARCH_HAS_ILOG2_U32=y
46388 +CONFIG_GENERIC_HWEIGHT=y
46389 +CONFIG_GENERIC_CALIBRATE_DELAY=y
46390 +CONFIG_GENERIC_FIND_NEXT_BIT=y
46391 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
46392 +CONFIG_PPC=y
46393 +CONFIG_EARLY_PRINTK=y
46394 +CONFIG_GENERIC_NVRAM=y
46395 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
46396 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
46397 +CONFIG_PPC_OF=y
46398 +CONFIG_OF=y
46399 +CONFIG_PPC_UDBG_16550=y
46400 +# CONFIG_GENERIC_TBSYNC is not set
46401 +CONFIG_AUDIT_ARCH=y
46402 +CONFIG_GENERIC_BUG=y
46403 +CONFIG_DEFAULT_UIMAGE=y
46404 +# CONFIG_PPC_DCR_NATIVE is not set
46405 +# CONFIG_PPC_DCR_MMIO is not set
46406 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
46407 +
46408 +#
46409 +# General setup
46410 +#
46411 +CONFIG_EXPERIMENTAL=y
46412 +CONFIG_BROKEN_ON_SMP=y
46413 +CONFIG_INIT_ENV_ARG_LIMIT=32
46414 +CONFIG_LOCALVERSION=""
46415 +CONFIG_LOCALVERSION_AUTO=y
46416 +CONFIG_SWAP=y
46417 +CONFIG_SYSVIPC=y
46418 +CONFIG_SYSVIPC_SYSCTL=y
46419 +# CONFIG_POSIX_MQUEUE is not set
46420 +# CONFIG_BSD_PROCESS_ACCT is not set
46421 +# CONFIG_TASKSTATS is not set
46422 +# CONFIG_AUDIT is not set
46423 +# CONFIG_IKCONFIG is not set
46424 +CONFIG_LOG_BUF_SHIFT=14
46425 +# CONFIG_CGROUPS is not set
46426 +CONFIG_GROUP_SCHED=y
46427 +CONFIG_FAIR_GROUP_SCHED=y
46428 +# CONFIG_RT_GROUP_SCHED is not set
46429 +CONFIG_USER_SCHED=y
46430 +# CONFIG_CGROUP_SCHED is not set
46431 +CONFIG_SYSFS_DEPRECATED=y
46432 +CONFIG_SYSFS_DEPRECATED_V2=y
46433 +# CONFIG_RELAY is not set
46434 +# CONFIG_NAMESPACES is not set
46435 +CONFIG_BLK_DEV_INITRD=y
46436 +CONFIG_INITRAMFS_SOURCE=""
46437 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
46438 +CONFIG_SYSCTL=y
46439 +CONFIG_EMBEDDED=y
46440 +CONFIG_SYSCTL_SYSCALL=y
46441 +# CONFIG_KALLSYMS is not set
46442 +# CONFIG_HOTPLUG is not set
46443 +CONFIG_PRINTK=y
46444 +CONFIG_BUG=y
46445 +CONFIG_ELF_CORE=y
46446 +CONFIG_COMPAT_BRK=y
46447 +CONFIG_BASE_FULL=y
46448 +CONFIG_FUTEX=y
46449 +CONFIG_ANON_INODES=y
46450 +# CONFIG_EPOLL is not set
46451 +CONFIG_SIGNALFD=y
46452 +CONFIG_TIMERFD=y
46453 +CONFIG_EVENTFD=y
46454 +CONFIG_SHMEM=y
46455 +CONFIG_VM_EVENT_COUNTERS=y
46456 +CONFIG_SLUB_DEBUG=y
46457 +# CONFIG_SLAB is not set
46458 +CONFIG_SLUB=y
46459 +# CONFIG_SLOB is not set
46460 +# CONFIG_PROFILING is not set
46461 +# CONFIG_MARKERS is not set
46462 +CONFIG_HAVE_OPROFILE=y
46463 +CONFIG_HAVE_KPROBES=y
46464 +CONFIG_HAVE_KRETPROBES=y
46465 +CONFIG_PROC_PAGE_MONITOR=y
46466 +CONFIG_SLABINFO=y
46467 +CONFIG_RT_MUTEXES=y
46468 +# CONFIG_TINY_SHMEM is not set
46469 +CONFIG_BASE_SMALL=0
46470 +# CONFIG_MODULES is not set
46471 +CONFIG_BLOCK=y
46472 +# CONFIG_LBD is not set
46473 +# CONFIG_BLK_DEV_IO_TRACE is not set
46474 +# CONFIG_LSF is not set
46475 +# CONFIG_BLK_DEV_BSG is not set
46476 +
46477 +#
46478 +# IO Schedulers
46479 +#
46480 +CONFIG_IOSCHED_NOOP=y
46481 +CONFIG_IOSCHED_AS=y
46482 +CONFIG_IOSCHED_DEADLINE=y
46483 +CONFIG_IOSCHED_CFQ=y
46484 +CONFIG_DEFAULT_AS=y
46485 +# CONFIG_DEFAULT_DEADLINE is not set
46486 +# CONFIG_DEFAULT_CFQ is not set
46487 +# CONFIG_DEFAULT_NOOP is not set
46488 +CONFIG_DEFAULT_IOSCHED="anticipatory"
46489 +CONFIG_CLASSIC_RCU=y
46490 +
46491 +#
46492 +# Platform support
46493 +#
46494 +# CONFIG_PPC_MPC512x is not set
46495 +# CONFIG_PPC_MPC5121 is not set
46496 +# CONFIG_PPC_CELL is not set
46497 +# CONFIG_PPC_CELL_NATIVE is not set
46498 +# CONFIG_PQ2ADS is not set
46499 +CONFIG_MPC85xx=y
46500 +# CONFIG_MPC8540_ADS is not set
46501 +# CONFIG_MPC8560_ADS is not set
46502 +# CONFIG_MPC85xx_CDS is not set
46503 +# CONFIG_MPC85xx_MDS is not set
46504 +# CONFIG_MPC85xx_DS is not set
46505 +# CONFIG_STX_GP3 is not set
46506 +# CONFIG_TQM8540 is not set
46507 +# CONFIG_TQM8541 is not set
46508 +CONFIG_TQM8555=y
46509 +# CONFIG_TQM8560 is not set
46510 +# CONFIG_SBC8548 is not set
46511 +# CONFIG_SBC8560 is not set
46512 +CONFIG_TQM85xx=y
46513 +# CONFIG_IPIC is not set
46514 +CONFIG_MPIC=y
46515 +# CONFIG_MPIC_WEIRD is not set
46516 +# CONFIG_PPC_I8259 is not set
46517 +# CONFIG_PPC_RTAS is not set
46518 +# CONFIG_MMIO_NVRAM is not set
46519 +# CONFIG_PPC_MPC106 is not set
46520 +# CONFIG_PPC_970_NAP is not set
46521 +# CONFIG_PPC_INDIRECT_IO is not set
46522 +# CONFIG_GENERIC_IOMAP is not set
46523 +# CONFIG_CPU_FREQ is not set
46524 +CONFIG_CPM2=y
46525 +CONFIG_PPC_CPM_NEW_BINDING=y
46526 +# CONFIG_FSL_ULI1575 is not set
46527 +CONFIG_CPM=y
46528 +
46529 +#
46530 +# Kernel options
46531 +#
46532 +# CONFIG_HIGHMEM is not set
46533 +# CONFIG_TICK_ONESHOT is not set
46534 +# CONFIG_NO_HZ is not set
46535 +# CONFIG_HIGH_RES_TIMERS is not set
46536 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
46537 +# CONFIG_HZ_100 is not set
46538 +CONFIG_HZ_250=y
46539 +# CONFIG_HZ_300 is not set
46540 +# CONFIG_HZ_1000 is not set
46541 +CONFIG_HZ=250
46542 +# CONFIG_SCHED_HRTICK is not set
46543 +CONFIG_PREEMPT_NONE=y
46544 +# CONFIG_PREEMPT_VOLUNTARY is not set
46545 +# CONFIG_PREEMPT is not set
46546 +CONFIG_BINFMT_ELF=y
46547 +# CONFIG_BINFMT_MISC is not set
46548 +CONFIG_MATH_EMULATION=y
46549 +# CONFIG_IOMMU_HELPER is not set
46550 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
46551 +CONFIG_ARCH_HAS_WALK_MEMORY=y
46552 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
46553 +CONFIG_ARCH_FLATMEM_ENABLE=y
46554 +CONFIG_ARCH_POPULATES_NODE_MAP=y
46555 +CONFIG_SELECT_MEMORY_MODEL=y
46556 +CONFIG_FLATMEM_MANUAL=y
46557 +# CONFIG_DISCONTIGMEM_MANUAL is not set
46558 +# CONFIG_SPARSEMEM_MANUAL is not set
46559 +CONFIG_FLATMEM=y
46560 +CONFIG_FLAT_NODE_MEM_MAP=y
46561 +# CONFIG_SPARSEMEM_STATIC is not set
46562 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
46563 +CONFIG_SPLIT_PTLOCK_CPUS=4
46564 +# CONFIG_RESOURCES_64BIT is not set
46565 +CONFIG_ZONE_DMA_FLAG=1
46566 +CONFIG_BOUNCE=y
46567 +CONFIG_VIRT_TO_BUS=y
46568 +# CONFIG_PROC_DEVICETREE is not set
46569 +# CONFIG_CMDLINE_BOOL is not set
46570 +# CONFIG_PM is not set
46571 +CONFIG_SECCOMP=y
46572 +CONFIG_ISA_DMA_API=y
46573 +
46574 +#
46575 +# Bus options
46576 +#
46577 +CONFIG_ZONE_DMA=y
46578 +CONFIG_PPC_INDIRECT_PCI=y
46579 +CONFIG_FSL_SOC=y
46580 +CONFIG_FSL_PCI=y
46581 +CONFIG_PCI=y
46582 +CONFIG_PCI_DOMAINS=y
46583 +CONFIG_PCI_SYSCALL=y
46584 +# CONFIG_PCIEPORTBUS is not set
46585 +CONFIG_ARCH_SUPPORTS_MSI=y
46586 +# CONFIG_PCI_MSI is not set
46587 +CONFIG_PCI_LEGACY=y
46588 +
46589 +#
46590 +# Advanced setup
46591 +#
46592 +# CONFIG_ADVANCED_OPTIONS is not set
46593 +
46594 +#
46595 +# Default settings for advanced configuration options are used
46596 +#
46597 +CONFIG_HIGHMEM_START=0xfe000000
46598 +CONFIG_LOWMEM_SIZE=0x30000000
46599 +CONFIG_KERNEL_START=0xc0000000
46600 +CONFIG_TASK_SIZE=0xc0000000
46601 +CONFIG_BOOT_LOAD=0x00800000
46602 +
46603 +#
46604 +# Networking
46605 +#
46606 +CONFIG_NET=y
46607 +
46608 +#
46609 +# Networking options
46610 +#
46611 +CONFIG_PACKET=y
46612 +# CONFIG_PACKET_MMAP is not set
46613 +CONFIG_UNIX=y
46614 +CONFIG_XFRM=y
46615 +# CONFIG_XFRM_USER is not set
46616 +# CONFIG_XFRM_SUB_POLICY is not set
46617 +# CONFIG_XFRM_MIGRATE is not set
46618 +# CONFIG_XFRM_STATISTICS is not set
46619 +# CONFIG_NET_KEY is not set
46620 +CONFIG_INET=y
46621 +CONFIG_IP_MULTICAST=y
46622 +# CONFIG_IP_ADVANCED_ROUTER is not set
46623 +CONFIG_IP_FIB_HASH=y
46624 +CONFIG_IP_PNP=y
46625 +CONFIG_IP_PNP_DHCP=y
46626 +CONFIG_IP_PNP_BOOTP=y
46627 +# CONFIG_IP_PNP_RARP is not set
46628 +# CONFIG_NET_IPIP is not set
46629 +# CONFIG_NET_IPGRE is not set
46630 +# CONFIG_IP_MROUTE is not set
46631 +# CONFIG_ARPD is not set
46632 +CONFIG_SYN_COOKIES=y
46633 +# CONFIG_INET_AH is not set
46634 +# CONFIG_INET_ESP is not set
46635 +# CONFIG_INET_IPCOMP is not set
46636 +# CONFIG_INET_XFRM_TUNNEL is not set
46637 +# CONFIG_INET_TUNNEL is not set
46638 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
46639 +CONFIG_INET_XFRM_MODE_TUNNEL=y
46640 +CONFIG_INET_XFRM_MODE_BEET=y
46641 +# CONFIG_INET_LRO is not set
46642 +CONFIG_INET_DIAG=y
46643 +CONFIG_INET_TCP_DIAG=y
46644 +# CONFIG_TCP_CONG_ADVANCED is not set
46645 +CONFIG_TCP_CONG_CUBIC=y
46646 +CONFIG_DEFAULT_TCP_CONG="cubic"
46647 +# CONFIG_TCP_MD5SIG is not set
46648 +# CONFIG_IPV6 is not set
46649 +# CONFIG_INET6_XFRM_TUNNEL is not set
46650 +# CONFIG_INET6_TUNNEL is not set
46651 +# CONFIG_NETWORK_SECMARK is not set
46652 +# CONFIG_NETFILTER is not set
46653 +# CONFIG_IP_DCCP is not set
46654 +# CONFIG_IP_SCTP is not set
46655 +# CONFIG_TIPC is not set
46656 +# CONFIG_ATM is not set
46657 +# CONFIG_BRIDGE is not set
46658 +# CONFIG_VLAN_8021Q is not set
46659 +# CONFIG_DECNET is not set
46660 +# CONFIG_LLC2 is not set
46661 +# CONFIG_IPX is not set
46662 +# CONFIG_ATALK is not set
46663 +# CONFIG_X25 is not set
46664 +# CONFIG_LAPB is not set
46665 +# CONFIG_ECONET is not set
46666 +# CONFIG_WAN_ROUTER is not set
46667 +# CONFIG_NET_SCHED is not set
46668 +
46669 +#
46670 +# Network testing
46671 +#
46672 +# CONFIG_NET_PKTGEN is not set
46673 +# CONFIG_HAMRADIO is not set
46674 +# CONFIG_CAN is not set
46675 +# CONFIG_IRDA is not set
46676 +# CONFIG_BT is not set
46677 +# CONFIG_AF_RXRPC is not set
46678 +
46679 +#
46680 +# Wireless
46681 +#
46682 +# CONFIG_CFG80211 is not set
46683 +# CONFIG_WIRELESS_EXT is not set
46684 +# CONFIG_MAC80211 is not set
46685 +# CONFIG_IEEE80211 is not set
46686 +# CONFIG_RFKILL is not set
46687 +# CONFIG_NET_9P is not set
46688 +
46689 +#
46690 +# Device Drivers
46691 +#
46692 +
46693 +#
46694 +# Generic Driver Options
46695 +#
46696 +CONFIG_STANDALONE=y
46697 +CONFIG_PREVENT_FIRMWARE_BUILD=y
46698 +# CONFIG_SYS_HYPERVISOR is not set
46699 +# CONFIG_CONNECTOR is not set
46700 +CONFIG_MTD=y
46701 +# CONFIG_MTD_DEBUG is not set
46702 +CONFIG_MTD_CONCAT=y
46703 +CONFIG_MTD_PARTITIONS=y
46704 +# CONFIG_MTD_REDBOOT_PARTS is not set
46705 +CONFIG_MTD_CMDLINE_PARTS=y
46706 +# CONFIG_MTD_OF_PARTS is not set
46707 +
46708 +#
46709 +# User Modules And Translation Layers
46710 +#
46711 +CONFIG_MTD_CHAR=y
46712 +CONFIG_MTD_BLKDEVS=y
46713 +CONFIG_MTD_BLOCK=y
46714 +# CONFIG_FTL is not set
46715 +# CONFIG_NFTL is not set
46716 +# CONFIG_INFTL is not set
46717 +# CONFIG_RFD_FTL is not set
46718 +# CONFIG_SSFDC is not set
46719 +# CONFIG_MTD_OOPS is not set
46720 +
46721 +#
46722 +# RAM/ROM/Flash chip drivers
46723 +#
46724 +CONFIG_MTD_CFI=y
46725 +# CONFIG_MTD_JEDECPROBE is not set
46726 +CONFIG_MTD_GEN_PROBE=y
46727 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
46728 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
46729 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
46730 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
46731 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
46732 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
46733 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
46734 +CONFIG_MTD_CFI_I1=y
46735 +CONFIG_MTD_CFI_I2=y
46736 +# CONFIG_MTD_CFI_I4 is not set
46737 +# CONFIG_MTD_CFI_I8 is not set
46738 +# CONFIG_MTD_CFI_INTELEXT is not set
46739 +CONFIG_MTD_CFI_AMDSTD=y
46740 +# CONFIG_MTD_CFI_STAA is not set
46741 +CONFIG_MTD_CFI_UTIL=y
46742 +# CONFIG_MTD_RAM is not set
46743 +# CONFIG_MTD_ROM is not set
46744 +# CONFIG_MTD_ABSENT is not set
46745 +
46746 +#
46747 +# Mapping drivers for chip access
46748 +#
46749 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
46750 +# CONFIG_MTD_PHYSMAP is not set
46751 +# CONFIG_MTD_PHYSMAP_OF is not set
46752 +# CONFIG_MTD_INTEL_VR_NOR is not set
46753 +# CONFIG_MTD_PLATRAM is not set
46754 +
46755 +#
46756 +# Self-contained MTD device drivers
46757 +#
46758 +# CONFIG_MTD_PMC551 is not set
46759 +# CONFIG_MTD_SLRAM is not set
46760 +# CONFIG_MTD_PHRAM is not set
46761 +# CONFIG_MTD_MTDRAM is not set
46762 +# CONFIG_MTD_BLOCK2MTD is not set
46763 +
46764 +#
46765 +# Disk-On-Chip Device Drivers
46766 +#
46767 +# CONFIG_MTD_DOC2000 is not set
46768 +# CONFIG_MTD_DOC2001 is not set
46769 +# CONFIG_MTD_DOC2001PLUS is not set
46770 +# CONFIG_MTD_NAND is not set
46771 +# CONFIG_MTD_ONENAND is not set
46772 +
46773 +#
46774 +# UBI - Unsorted block images
46775 +#
46776 +# CONFIG_MTD_UBI is not set
46777 +CONFIG_OF_DEVICE=y
46778 +# CONFIG_PARPORT is not set
46779 +CONFIG_BLK_DEV=y
46780 +# CONFIG_BLK_DEV_FD is not set
46781 +# CONFIG_BLK_CPQ_DA is not set
46782 +# CONFIG_BLK_CPQ_CISS_DA is not set
46783 +# CONFIG_BLK_DEV_DAC960 is not set
46784 +# CONFIG_BLK_DEV_UMEM is not set
46785 +# CONFIG_BLK_DEV_COW_COMMON is not set
46786 +CONFIG_BLK_DEV_LOOP=y
46787 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
46788 +# CONFIG_BLK_DEV_NBD is not set
46789 +# CONFIG_BLK_DEV_SX8 is not set
46790 +CONFIG_BLK_DEV_RAM=y
46791 +CONFIG_BLK_DEV_RAM_COUNT=16
46792 +CONFIG_BLK_DEV_RAM_SIZE=32768
46793 +# CONFIG_BLK_DEV_XIP is not set
46794 +# CONFIG_CDROM_PKTCDVD is not set
46795 +# CONFIG_ATA_OVER_ETH is not set
46796 +CONFIG_MISC_DEVICES=y
46797 +# CONFIG_PHANTOM is not set
46798 +# CONFIG_EEPROM_93CX6 is not set
46799 +# CONFIG_SGI_IOC4 is not set
46800 +# CONFIG_TIFM_CORE is not set
46801 +# CONFIG_ENCLOSURE_SERVICES is not set
46802 +CONFIG_HAVE_IDE=y
46803 +CONFIG_IDE=y
46804 +CONFIG_IDE_MAX_HWIFS=4
46805 +CONFIG_BLK_DEV_IDE=y
46806 +
46807 +#
46808 +# Please see Documentation/ide/ide.txt for help/info on IDE drives
46809 +#
46810 +# CONFIG_BLK_DEV_IDE_SATA is not set
46811 +CONFIG_BLK_DEV_IDEDISK=y
46812 +# CONFIG_IDEDISK_MULTI_MODE is not set
46813 +# CONFIG_BLK_DEV_IDECD is not set
46814 +# CONFIG_BLK_DEV_IDETAPE is not set
46815 +# CONFIG_BLK_DEV_IDEFLOPPY is not set
46816 +# CONFIG_IDE_TASK_IOCTL is not set
46817 +CONFIG_IDE_PROC_FS=y
46818 +
46819 +#
46820 +# IDE chipset support/bugfixes
46821 +#
46822 +CONFIG_IDE_GENERIC=y
46823 +# CONFIG_BLK_DEV_PLATFORM is not set
46824 +CONFIG_BLK_DEV_IDEDMA_SFF=y
46825 +
46826 +#
46827 +# PCI IDE chipsets support
46828 +#
46829 +CONFIG_BLK_DEV_IDEPCI=y
46830 +CONFIG_IDEPCI_PCIBUS_ORDER=y
46831 +# CONFIG_BLK_DEV_OFFBOARD is not set
46832 +CONFIG_BLK_DEV_GENERIC=y
46833 +# CONFIG_BLK_DEV_OPTI621 is not set
46834 +CONFIG_BLK_DEV_IDEDMA_PCI=y
46835 +# CONFIG_BLK_DEV_AEC62XX is not set
46836 +# CONFIG_BLK_DEV_ALI15X3 is not set
46837 +# CONFIG_BLK_DEV_AMD74XX is not set
46838 +# CONFIG_BLK_DEV_CMD64X is not set
46839 +# CONFIG_BLK_DEV_TRIFLEX is not set
46840 +# CONFIG_BLK_DEV_CY82C693 is not set
46841 +# CONFIG_BLK_DEV_CS5520 is not set
46842 +# CONFIG_BLK_DEV_CS5530 is not set
46843 +# CONFIG_BLK_DEV_HPT34X is not set
46844 +# CONFIG_BLK_DEV_HPT366 is not set
46845 +# CONFIG_BLK_DEV_JMICRON is not set
46846 +# CONFIG_BLK_DEV_SC1200 is not set
46847 +# CONFIG_BLK_DEV_PIIX is not set
46848 +# CONFIG_BLK_DEV_IT8213 is not set
46849 +# CONFIG_BLK_DEV_IT821X is not set
46850 +# CONFIG_BLK_DEV_NS87415 is not set
46851 +# CONFIG_BLK_DEV_PDC202XX_OLD is not set
46852 +# CONFIG_BLK_DEV_PDC202XX_NEW is not set
46853 +# CONFIG_BLK_DEV_SVWKS is not set
46854 +# CONFIG_BLK_DEV_SIIMAGE is not set
46855 +# CONFIG_BLK_DEV_SL82C105 is not set
46856 +# CONFIG_BLK_DEV_SLC90E66 is not set
46857 +# CONFIG_BLK_DEV_TRM290 is not set
46858 +CONFIG_BLK_DEV_VIA82CXXX=y
46859 +# CONFIG_BLK_DEV_TC86C001 is not set
46860 +CONFIG_BLK_DEV_IDEDMA=y
46861 +CONFIG_IDE_ARCH_OBSOLETE_INIT=y
46862 +# CONFIG_BLK_DEV_HD is not set
46863 +
46864 +#
46865 +# SCSI device support
46866 +#
46867 +# CONFIG_RAID_ATTRS is not set
46868 +# CONFIG_SCSI is not set
46869 +# CONFIG_SCSI_DMA is not set
46870 +# CONFIG_SCSI_NETLINK is not set
46871 +# CONFIG_ATA is not set
46872 +# CONFIG_MD is not set
46873 +# CONFIG_FUSION is not set
46874 +
46875 +#
46876 +# IEEE 1394 (FireWire) support
46877 +#
46878 +# CONFIG_FIREWIRE is not set
46879 +# CONFIG_IEEE1394 is not set
46880 +# CONFIG_I2O is not set
46881 +# CONFIG_MACINTOSH_DRIVERS is not set
46882 +CONFIG_NETDEVICES=y
46883 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
46884 +# CONFIG_DUMMY is not set
46885 +# CONFIG_BONDING is not set
46886 +# CONFIG_MACVLAN is not set
46887 +# CONFIG_EQUALIZER is not set
46888 +# CONFIG_TUN is not set
46889 +# CONFIG_VETH is not set
46890 +# CONFIG_ARCNET is not set
46891 +CONFIG_PHYLIB=y
46892 +
46893 +#
46894 +# MII PHY device drivers
46895 +#
46896 +# CONFIG_MARVELL_PHY is not set
46897 +# CONFIG_DAVICOM_PHY is not set
46898 +# CONFIG_QSEMI_PHY is not set
46899 +# CONFIG_LXT_PHY is not set
46900 +# CONFIG_CICADA_PHY is not set
46901 +# CONFIG_VITESSE_PHY is not set
46902 +# CONFIG_SMSC_PHY is not set
46903 +# CONFIG_BROADCOM_PHY is not set
46904 +# CONFIG_ICPLUS_PHY is not set
46905 +# CONFIG_REALTEK_PHY is not set
46906 +# CONFIG_FIXED_PHY is not set
46907 +# CONFIG_MDIO_BITBANG is not set
46908 +CONFIG_NET_ETHERNET=y
46909 +CONFIG_MII=y
46910 +# CONFIG_HAPPYMEAL is not set
46911 +# CONFIG_SUNGEM is not set
46912 +# CONFIG_CASSINI is not set
46913 +# CONFIG_NET_VENDOR_3COM is not set
46914 +# CONFIG_NET_TULIP is not set
46915 +# CONFIG_HP100 is not set
46916 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
46917 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
46918 +# CONFIG_IBM_NEW_EMAC_TAH is not set
46919 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
46920 +CONFIG_NET_PCI=y
46921 +# CONFIG_PCNET32 is not set
46922 +# CONFIG_AMD8111_ETH is not set
46923 +# CONFIG_ADAPTEC_STARFIRE is not set
46924 +# CONFIG_B44 is not set
46925 +# CONFIG_FORCEDETH is not set
46926 +# CONFIG_EEPRO100 is not set
46927 +CONFIG_E100=y
46928 +# CONFIG_FEALNX is not set
46929 +# CONFIG_NATSEMI is not set
46930 +# CONFIG_NE2K_PCI is not set
46931 +# CONFIG_8139CP is not set
46932 +# CONFIG_8139TOO is not set
46933 +# CONFIG_R6040 is not set
46934 +# CONFIG_SIS900 is not set
46935 +# CONFIG_EPIC100 is not set
46936 +# CONFIG_SUNDANCE is not set
46937 +# CONFIG_TLAN is not set
46938 +# CONFIG_VIA_RHINE is not set
46939 +# CONFIG_SC92031 is not set
46940 +# CONFIG_FS_ENET is not set
46941 +CONFIG_NETDEV_1000=y
46942 +# CONFIG_ACENIC is not set
46943 +# CONFIG_DL2K is not set
46944 +# CONFIG_E1000 is not set
46945 +# CONFIG_E1000E is not set
46946 +# CONFIG_E1000E_ENABLED is not set
46947 +# CONFIG_IP1000 is not set
46948 +# CONFIG_IGB is not set
46949 +# CONFIG_NS83820 is not set
46950 +# CONFIG_HAMACHI is not set
46951 +# CONFIG_YELLOWFIN is not set
46952 +# CONFIG_R8169 is not set
46953 +# CONFIG_SIS190 is not set
46954 +# CONFIG_SKGE is not set
46955 +# CONFIG_SKY2 is not set
46956 +# CONFIG_SK98LIN is not set
46957 +# CONFIG_VIA_VELOCITY is not set
46958 +# CONFIG_TIGON3 is not set
46959 +# CONFIG_BNX2 is not set
46960 +CONFIG_GIANFAR=y
46961 +CONFIG_GFAR_NAPI=y
46962 +# CONFIG_QLA3XXX is not set
46963 +# CONFIG_ATL1 is not set
46964 +CONFIG_NETDEV_10000=y
46965 +# CONFIG_CHELSIO_T1 is not set
46966 +# CONFIG_CHELSIO_T3 is not set
46967 +# CONFIG_IXGBE is not set
46968 +# CONFIG_IXGB is not set
46969 +# CONFIG_S2IO is not set
46970 +# CONFIG_MYRI10GE is not set
46971 +# CONFIG_NETXEN_NIC is not set
46972 +# CONFIG_NIU is not set
46973 +# CONFIG_MLX4_CORE is not set
46974 +# CONFIG_TEHUTI is not set
46975 +# CONFIG_BNX2X is not set
46976 +# CONFIG_TR is not set
46977 +
46978 +#
46979 +# Wireless LAN
46980 +#
46981 +# CONFIG_WLAN_PRE80211 is not set
46982 +# CONFIG_WLAN_80211 is not set
46983 +# CONFIG_WAN is not set
46984 +# CONFIG_FDDI is not set
46985 +# CONFIG_HIPPI is not set
46986 +# CONFIG_PPP is not set
46987 +# CONFIG_SLIP is not set
46988 +# CONFIG_NETCONSOLE is not set
46989 +# CONFIG_NETPOLL is not set
46990 +# CONFIG_NET_POLL_CONTROLLER is not set
46991 +# CONFIG_ISDN is not set
46992 +# CONFIG_PHONE is not set
46993 +
46994 +#
46995 +# Input device support
46996 +#
46997 +CONFIG_INPUT=y
46998 +# CONFIG_INPUT_FF_MEMLESS is not set
46999 +# CONFIG_INPUT_POLLDEV is not set
47000 +
47001 +#
47002 +# Userland interfaces
47003 +#
47004 +# CONFIG_INPUT_MOUSEDEV is not set
47005 +# CONFIG_INPUT_JOYDEV is not set
47006 +# CONFIG_INPUT_EVDEV is not set
47007 +# CONFIG_INPUT_EVBUG is not set
47008 +
47009 +#
47010 +# Input Device Drivers
47011 +#
47012 +# CONFIG_INPUT_KEYBOARD is not set
47013 +# CONFIG_INPUT_MOUSE is not set
47014 +# CONFIG_INPUT_JOYSTICK is not set
47015 +# CONFIG_INPUT_TABLET is not set
47016 +# CONFIG_INPUT_TOUCHSCREEN is not set
47017 +# CONFIG_INPUT_MISC is not set
47018 +
47019 +#
47020 +# Hardware I/O ports
47021 +#
47022 +# CONFIG_SERIO is not set
47023 +# CONFIG_GAMEPORT is not set
47024 +
47025 +#
47026 +# Character devices
47027 +#
47028 +# CONFIG_VT is not set
47029 +# CONFIG_SERIAL_NONSTANDARD is not set
47030 +# CONFIG_NOZOMI is not set
47031 +
47032 +#
47033 +# Serial drivers
47034 +#
47035 +CONFIG_SERIAL_8250=y
47036 +CONFIG_SERIAL_8250_CONSOLE=y
47037 +CONFIG_SERIAL_8250_PCI=y
47038 +CONFIG_SERIAL_8250_NR_UARTS=4
47039 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
47040 +# CONFIG_SERIAL_8250_EXTENDED is not set
47041 +CONFIG_SERIAL_8250_SHARE_IRQ=y
47042 +
47043 +#
47044 +# Non-8250 serial port support
47045 +#
47046 +# CONFIG_SERIAL_UARTLITE is not set
47047 +CONFIG_SERIAL_CORE=y
47048 +CONFIG_SERIAL_CORE_CONSOLE=y
47049 +CONFIG_SERIAL_CPM=y
47050 +CONFIG_SERIAL_CPM_CONSOLE=y
47051 +CONFIG_SERIAL_CPM_SCC1=y
47052 +# CONFIG_SERIAL_CPM_SCC2 is not set
47053 +# CONFIG_SERIAL_CPM_SCC3 is not set
47054 +# CONFIG_SERIAL_CPM_SCC4 is not set
47055 +# CONFIG_SERIAL_CPM_SMC1 is not set
47056 +# CONFIG_SERIAL_CPM_SMC2 is not set
47057 +# CONFIG_SERIAL_JSM is not set
47058 +# CONFIG_SERIAL_OF_PLATFORM is not set
47059 +CONFIG_UNIX98_PTYS=y
47060 +CONFIG_LEGACY_PTYS=y
47061 +CONFIG_LEGACY_PTY_COUNT=256
47062 +# CONFIG_IPMI_HANDLER is not set
47063 +CONFIG_HW_RANDOM=y
47064 +# CONFIG_NVRAM is not set
47065 +CONFIG_GEN_RTC=y
47066 +# CONFIG_GEN_RTC_X is not set
47067 +# CONFIG_R3964 is not set
47068 +# CONFIG_APPLICOM is not set
47069 +# CONFIG_RAW_DRIVER is not set
47070 +# CONFIG_TCG_TPM is not set
47071 +CONFIG_DEVPORT=y
47072 +CONFIG_I2C=y
47073 +CONFIG_I2C_BOARDINFO=y
47074 +CONFIG_I2C_CHARDEV=y
47075 +
47076 +#
47077 +# I2C Algorithms
47078 +#
47079 +# CONFIG_I2C_ALGOBIT is not set
47080 +# CONFIG_I2C_ALGOPCF is not set
47081 +# CONFIG_I2C_ALGOPCA is not set
47082 +
47083 +#
47084 +# I2C Hardware Bus support
47085 +#
47086 +# CONFIG_I2C_ALI1535 is not set
47087 +# CONFIG_I2C_ALI1563 is not set
47088 +# CONFIG_I2C_ALI15X3 is not set
47089 +# CONFIG_I2C_AMD756 is not set
47090 +# CONFIG_I2C_AMD8111 is not set
47091 +# CONFIG_I2C_I801 is not set
47092 +# CONFIG_I2C_I810 is not set
47093 +# CONFIG_I2C_PIIX4 is not set
47094 +CONFIG_I2C_MPC=y
47095 +# CONFIG_I2C_NFORCE2 is not set
47096 +# CONFIG_I2C_OCORES is not set
47097 +# CONFIG_I2C_PARPORT_LIGHT is not set
47098 +# CONFIG_I2C_PROSAVAGE is not set
47099 +# CONFIG_I2C_SAVAGE4 is not set
47100 +# CONFIG_I2C_SIMTEC is not set
47101 +# CONFIG_I2C_SIS5595 is not set
47102 +# CONFIG_I2C_SIS630 is not set
47103 +# CONFIG_I2C_SIS96X is not set
47104 +# CONFIG_I2C_TAOS_EVM is not set
47105 +# CONFIG_I2C_VIA is not set
47106 +# CONFIG_I2C_VIAPRO is not set
47107 +# CONFIG_I2C_VOODOO3 is not set
47108 +
47109 +#
47110 +# Miscellaneous I2C Chip support
47111 +#
47112 +# CONFIG_DS1682 is not set
47113 +# CONFIG_SENSORS_EEPROM is not set
47114 +# CONFIG_SENSORS_PCF8574 is not set
47115 +# CONFIG_PCF8575 is not set
47116 +# CONFIG_SENSORS_PCF8591 is not set
47117 +# CONFIG_TPS65010 is not set
47118 +# CONFIG_SENSORS_MAX6875 is not set
47119 +# CONFIG_SENSORS_TSL2550 is not set
47120 +# CONFIG_I2C_DEBUG_CORE is not set
47121 +# CONFIG_I2C_DEBUG_ALGO is not set
47122 +# CONFIG_I2C_DEBUG_BUS is not set
47123 +# CONFIG_I2C_DEBUG_CHIP is not set
47124 +
47125 +#
47126 +# SPI support
47127 +#
47128 +# CONFIG_SPI is not set
47129 +# CONFIG_SPI_MASTER is not set
47130 +# CONFIG_W1 is not set
47131 +# CONFIG_POWER_SUPPLY is not set
47132 +CONFIG_HWMON=y
47133 +# CONFIG_HWMON_VID is not set
47134 +# CONFIG_SENSORS_AD7418 is not set
47135 +# CONFIG_SENSORS_ADM1021 is not set
47136 +# CONFIG_SENSORS_ADM1025 is not set
47137 +# CONFIG_SENSORS_ADM1026 is not set
47138 +# CONFIG_SENSORS_ADM1029 is not set
47139 +# CONFIG_SENSORS_ADM1031 is not set
47140 +# CONFIG_SENSORS_ADM9240 is not set
47141 +# CONFIG_SENSORS_ADT7470 is not set
47142 +# CONFIG_SENSORS_ADT7473 is not set
47143 +# CONFIG_SENSORS_ATXP1 is not set
47144 +# CONFIG_SENSORS_DS1621 is not set
47145 +# CONFIG_SENSORS_I5K_AMB is not set
47146 +# CONFIG_SENSORS_F71805F is not set
47147 +# CONFIG_SENSORS_F71882FG is not set
47148 +# CONFIG_SENSORS_F75375S is not set
47149 +# CONFIG_SENSORS_GL518SM is not set
47150 +# CONFIG_SENSORS_GL520SM is not set
47151 +# CONFIG_SENSORS_IT87 is not set
47152 +# CONFIG_SENSORS_LM63 is not set
47153 +CONFIG_SENSORS_LM75=y
47154 +# CONFIG_SENSORS_LM77 is not set
47155 +# CONFIG_SENSORS_LM78 is not set
47156 +# CONFIG_SENSORS_LM80 is not set
47157 +# CONFIG_SENSORS_LM83 is not set
47158 +# CONFIG_SENSORS_LM85 is not set
47159 +# CONFIG_SENSORS_LM87 is not set
47160 +# CONFIG_SENSORS_LM90 is not set
47161 +# CONFIG_SENSORS_LM92 is not set
47162 +# CONFIG_SENSORS_LM93 is not set
47163 +# CONFIG_SENSORS_MAX1619 is not set
47164 +# CONFIG_SENSORS_MAX6650 is not set
47165 +# CONFIG_SENSORS_PC87360 is not set
47166 +# CONFIG_SENSORS_PC87427 is not set
47167 +# CONFIG_SENSORS_SIS5595 is not set
47168 +# CONFIG_SENSORS_DME1737 is not set
47169 +# CONFIG_SENSORS_SMSC47M1 is not set
47170 +# CONFIG_SENSORS_SMSC47M192 is not set
47171 +# CONFIG_SENSORS_SMSC47B397 is not set
47172 +# CONFIG_SENSORS_ADS7828 is not set
47173 +# CONFIG_SENSORS_THMC50 is not set
47174 +# CONFIG_SENSORS_VIA686A is not set
47175 +# CONFIG_SENSORS_VT1211 is not set
47176 +# CONFIG_SENSORS_VT8231 is not set
47177 +# CONFIG_SENSORS_W83781D is not set
47178 +# CONFIG_SENSORS_W83791D is not set
47179 +# CONFIG_SENSORS_W83792D is not set
47180 +# CONFIG_SENSORS_W83793 is not set
47181 +# CONFIG_SENSORS_W83L785TS is not set
47182 +# CONFIG_SENSORS_W83L786NG is not set
47183 +# CONFIG_SENSORS_W83627HF is not set
47184 +# CONFIG_SENSORS_W83627EHF is not set
47185 +CONFIG_HWMON_DEBUG_CHIP=y
47186 +# CONFIG_THERMAL is not set
47187 +# CONFIG_WATCHDOG is not set
47188 +
47189 +#
47190 +# Sonics Silicon Backplane
47191 +#
47192 +CONFIG_SSB_POSSIBLE=y
47193 +# CONFIG_SSB is not set
47194 +
47195 +#
47196 +# Multifunction device drivers
47197 +#
47198 +# CONFIG_MFD_SM501 is not set
47199 +
47200 +#
47201 +# Multimedia devices
47202 +#
47203 +# CONFIG_VIDEO_DEV is not set
47204 +# CONFIG_DVB_CORE is not set
47205 +CONFIG_DAB=y
47206 +
47207 +#
47208 +# Graphics support
47209 +#
47210 +# CONFIG_AGP is not set
47211 +# CONFIG_DRM is not set
47212 +# CONFIG_VGASTATE is not set
47213 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
47214 +# CONFIG_FB is not set
47215 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
47216 +
47217 +#
47218 +# Display device support
47219 +#
47220 +# CONFIG_DISPLAY_SUPPORT is not set
47221 +
47222 +#
47223 +# Sound
47224 +#
47225 +# CONFIG_SOUND is not set
47226 +CONFIG_HID_SUPPORT=y
47227 +CONFIG_HID=y
47228 +# CONFIG_HID_DEBUG is not set
47229 +# CONFIG_HIDRAW is not set
47230 +CONFIG_USB_SUPPORT=y
47231 +CONFIG_USB_ARCH_HAS_HCD=y
47232 +CONFIG_USB_ARCH_HAS_OHCI=y
47233 +CONFIG_USB_ARCH_HAS_EHCI=y
47234 +# CONFIG_USB is not set
47235 +
47236 +#
47237 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
47238 +#
47239 +# CONFIG_USB_GADGET is not set
47240 +# CONFIG_MMC is not set
47241 +# CONFIG_MEMSTICK is not set
47242 +# CONFIG_NEW_LEDS is not set
47243 +# CONFIG_INFINIBAND is not set
47244 +# CONFIG_EDAC is not set
47245 +# CONFIG_RTC_CLASS is not set
47246 +# CONFIG_DMADEVICES is not set
47247 +
47248 +#
47249 +# Userspace I/O
47250 +#
47251 +# CONFIG_UIO is not set
47252 +
47253 +#
47254 +# File systems
47255 +#
47256 +CONFIG_EXT2_FS=y
47257 +# CONFIG_EXT2_FS_XATTR is not set
47258 +# CONFIG_EXT2_FS_XIP is not set
47259 +CONFIG_EXT3_FS=y
47260 +CONFIG_EXT3_FS_XATTR=y
47261 +# CONFIG_EXT3_FS_POSIX_ACL is not set
47262 +# CONFIG_EXT3_FS_SECURITY is not set
47263 +# CONFIG_EXT4DEV_FS is not set
47264 +CONFIG_JBD=y
47265 +CONFIG_FS_MBCACHE=y
47266 +# CONFIG_REISERFS_FS is not set
47267 +# CONFIG_JFS_FS is not set
47268 +# CONFIG_FS_POSIX_ACL is not set
47269 +# CONFIG_XFS_FS is not set
47270 +# CONFIG_GFS2_FS is not set
47271 +# CONFIG_OCFS2_FS is not set
47272 +CONFIG_DNOTIFY=y
47273 +CONFIG_INOTIFY=y
47274 +CONFIG_INOTIFY_USER=y
47275 +# CONFIG_QUOTA is not set
47276 +# CONFIG_AUTOFS_FS is not set
47277 +# CONFIG_AUTOFS4_FS is not set
47278 +# CONFIG_FUSE_FS is not set
47279 +
47280 +#
47281 +# CD-ROM/DVD Filesystems
47282 +#
47283 +# CONFIG_ISO9660_FS is not set
47284 +# CONFIG_UDF_FS is not set
47285 +
47286 +#
47287 +# DOS/FAT/NT Filesystems
47288 +#
47289 +# CONFIG_MSDOS_FS is not set
47290 +# CONFIG_VFAT_FS is not set
47291 +# CONFIG_NTFS_FS is not set
47292 +
47293 +#
47294 +# Pseudo filesystems
47295 +#
47296 +CONFIG_PROC_FS=y
47297 +CONFIG_PROC_KCORE=y
47298 +CONFIG_PROC_SYSCTL=y
47299 +CONFIG_SYSFS=y
47300 +CONFIG_TMPFS=y
47301 +# CONFIG_TMPFS_POSIX_ACL is not set
47302 +# CONFIG_HUGETLB_PAGE is not set
47303 +# CONFIG_CONFIGFS_FS is not set
47304 +
47305 +#
47306 +# Miscellaneous filesystems
47307 +#
47308 +# CONFIG_ADFS_FS is not set
47309 +# CONFIG_AFFS_FS is not set
47310 +# CONFIG_HFS_FS is not set
47311 +# CONFIG_HFSPLUS_FS is not set
47312 +# CONFIG_BEFS_FS is not set
47313 +# CONFIG_BFS_FS is not set
47314 +# CONFIG_EFS_FS is not set
47315 +CONFIG_JFFS2_FS=y
47316 +CONFIG_JFFS2_FS_DEBUG=0
47317 +CONFIG_JFFS2_FS_WRITEBUFFER=y
47318 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
47319 +# CONFIG_JFFS2_SUMMARY is not set
47320 +# CONFIG_JFFS2_FS_XATTR is not set
47321 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
47322 +CONFIG_JFFS2_ZLIB=y
47323 +# CONFIG_JFFS2_LZO is not set
47324 +CONFIG_JFFS2_RTIME=y
47325 +# CONFIG_JFFS2_RUBIN is not set
47326 +CONFIG_CRAMFS=y
47327 +# CONFIG_VXFS_FS is not set
47328 +# CONFIG_MINIX_FS is not set
47329 +# CONFIG_HPFS_FS is not set
47330 +# CONFIG_QNX4FS_FS is not set
47331 +# CONFIG_ROMFS_FS is not set
47332 +# CONFIG_SYSV_FS is not set
47333 +# CONFIG_UFS_FS is not set
47334 +CONFIG_NETWORK_FILESYSTEMS=y
47335 +CONFIG_NFS_FS=y
47336 +# CONFIG_NFS_V3 is not set
47337 +# CONFIG_NFS_V4 is not set
47338 +# CONFIG_NFS_DIRECTIO is not set
47339 +# CONFIG_NFSD is not set
47340 +CONFIG_ROOT_NFS=y
47341 +CONFIG_LOCKD=y
47342 +CONFIG_NFS_COMMON=y
47343 +CONFIG_SUNRPC=y
47344 +# CONFIG_SUNRPC_BIND34 is not set
47345 +# CONFIG_RPCSEC_GSS_KRB5 is not set
47346 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
47347 +# CONFIG_SMB_FS is not set
47348 +# CONFIG_CIFS is not set
47349 +# CONFIG_NCP_FS is not set
47350 +# CONFIG_CODA_FS is not set
47351 +# CONFIG_AFS_FS is not set
47352 +
47353 +#
47354 +# Partition Types
47355 +#
47356 +CONFIG_PARTITION_ADVANCED=y
47357 +# CONFIG_ACORN_PARTITION is not set
47358 +# CONFIG_OSF_PARTITION is not set
47359 +# CONFIG_AMIGA_PARTITION is not set
47360 +# CONFIG_ATARI_PARTITION is not set
47361 +# CONFIG_MAC_PARTITION is not set
47362 +# CONFIG_MSDOS_PARTITION is not set
47363 +# CONFIG_LDM_PARTITION is not set
47364 +# CONFIG_SGI_PARTITION is not set
47365 +# CONFIG_ULTRIX_PARTITION is not set
47366 +# CONFIG_SUN_PARTITION is not set
47367 +# CONFIG_KARMA_PARTITION is not set
47368 +# CONFIG_EFI_PARTITION is not set
47369 +# CONFIG_SYSV68_PARTITION is not set
47370 +# CONFIG_NLS is not set
47371 +# CONFIG_DLM is not set
47372 +
47373 +#
47374 +# Library routines
47375 +#
47376 +CONFIG_BITREVERSE=y
47377 +# CONFIG_CRC_CCITT is not set
47378 +# CONFIG_CRC16 is not set
47379 +# CONFIG_CRC_ITU_T is not set
47380 +CONFIG_CRC32=y
47381 +# CONFIG_CRC7 is not set
47382 +# CONFIG_LIBCRC32C is not set
47383 +CONFIG_ZLIB_INFLATE=y
47384 +CONFIG_ZLIB_DEFLATE=y
47385 +CONFIG_PLIST=y
47386 +CONFIG_HAS_IOMEM=y
47387 +CONFIG_HAS_IOPORT=y
47388 +CONFIG_HAS_DMA=y
47389 +
47390 +#
47391 +# Kernel hacking
47392 +#
47393 +# CONFIG_PRINTK_TIME is not set
47394 +CONFIG_ENABLE_WARN_DEPRECATED=y
47395 +CONFIG_ENABLE_MUST_CHECK=y
47396 +# CONFIG_MAGIC_SYSRQ is not set
47397 +# CONFIG_UNUSED_SYMBOLS is not set
47398 +# CONFIG_DEBUG_FS is not set
47399 +# CONFIG_HEADERS_CHECK is not set
47400 +# CONFIG_DEBUG_KERNEL is not set
47401 +# CONFIG_SLUB_DEBUG_ON is not set
47402 +# CONFIG_SLUB_STATS is not set
47403 +# CONFIG_DEBUG_BUGVERBOSE is not set
47404 +# CONFIG_SAMPLES is not set
47405 +# CONFIG_KGDB_CONSOLE is not set
47406 +# CONFIG_PPC_EARLY_DEBUG is not set
47407 +
47408 +#
47409 +# Security options
47410 +#
47411 +# CONFIG_KEYS is not set
47412 +# CONFIG_SECURITY is not set
47413 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
47414 +CONFIG_CRYPTO=y
47415 +# CONFIG_CRYPTO_SEQIV is not set
47416 +# CONFIG_CRYPTO_MANAGER is not set
47417 +# CONFIG_CRYPTO_HMAC is not set
47418 +# CONFIG_CRYPTO_XCBC is not set
47419 +# CONFIG_CRYPTO_NULL is not set
47420 +# CONFIG_CRYPTO_MD4 is not set
47421 +# CONFIG_CRYPTO_MD5 is not set
47422 +# CONFIG_CRYPTO_SHA1 is not set
47423 +# CONFIG_CRYPTO_SHA256 is not set
47424 +# CONFIG_CRYPTO_SHA512 is not set
47425 +# CONFIG_CRYPTO_WP512 is not set
47426 +# CONFIG_CRYPTO_TGR192 is not set
47427 +# CONFIG_CRYPTO_GF128MUL is not set
47428 +# CONFIG_CRYPTO_ECB is not set
47429 +# CONFIG_CRYPTO_CBC is not set
47430 +# CONFIG_CRYPTO_PCBC is not set
47431 +# CONFIG_CRYPTO_LRW is not set
47432 +# CONFIG_CRYPTO_XTS is not set
47433 +# CONFIG_CRYPTO_CTR is not set
47434 +# CONFIG_CRYPTO_GCM is not set
47435 +# CONFIG_CRYPTO_CCM is not set
47436 +# CONFIG_CRYPTO_CRYPTD is not set
47437 +# CONFIG_CRYPTO_DES is not set
47438 +# CONFIG_CRYPTO_FCRYPT is not set
47439 +# CONFIG_CRYPTO_BLOWFISH is not set
47440 +# CONFIG_CRYPTO_TWOFISH is not set
47441 +# CONFIG_CRYPTO_SERPENT is not set
47442 +# CONFIG_CRYPTO_AES is not set
47443 +# CONFIG_CRYPTO_CAST5 is not set
47444 +# CONFIG_CRYPTO_CAST6 is not set
47445 +# CONFIG_CRYPTO_TEA is not set
47446 +# CONFIG_CRYPTO_ARC4 is not set
47447 +# CONFIG_CRYPTO_KHAZAD is not set
47448 +# CONFIG_CRYPTO_ANUBIS is not set
47449 +# CONFIG_CRYPTO_SEED is not set
47450 +# CONFIG_CRYPTO_SALSA20 is not set
47451 +# CONFIG_CRYPTO_DEFLATE is not set
47452 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
47453 +# CONFIG_CRYPTO_CRC32C is not set
47454 +# CONFIG_CRYPTO_CAMELLIA is not set
47455 +# CONFIG_CRYPTO_AUTHENC is not set
47456 +# CONFIG_CRYPTO_LZO is not set
47457 +CONFIG_CRYPTO_HW=y
47458 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
47459 +# CONFIG_PPC_CLOCK is not set
47460 +CONFIG_PPC_LIB_RHEAP=y
47461 Index: linux-2.6.25.4/arch/powerpc/configs/85xx/tqm8560_defconfig
47462 ===================================================================
47463 --- /dev/null
47464 +++ linux-2.6.25.4/arch/powerpc/configs/85xx/tqm8560_defconfig
47465 @@ -0,0 +1,1109 @@
47466 +#
47467 +# Automatically generated make config: don't edit
47468 +# Linux kernel version: 2.6.25-rc6
47469 +# Mon Mar 24 08:48:45 2008
47470 +#
47471 +# CONFIG_PPC64 is not set
47472 +
47473 +#
47474 +# Processor support
47475 +#
47476 +# CONFIG_6xx is not set
47477 +CONFIG_PPC_85xx=y
47478 +# CONFIG_PPC_8xx is not set
47479 +# CONFIG_40x is not set
47480 +# CONFIG_44x is not set
47481 +# CONFIG_E200 is not set
47482 +CONFIG_E500=y
47483 +CONFIG_BOOKE=y
47484 +CONFIG_FSL_BOOKE=y
47485 +CONFIG_FSL_EMB_PERFMON=y
47486 +# CONFIG_PHYS_64BIT is not set
47487 +CONFIG_SPE=y
47488 +# CONFIG_PPC_MM_SLICES is not set
47489 +CONFIG_PPC32=y
47490 +CONFIG_WORD_SIZE=32
47491 +CONFIG_PPC_MERGE=y
47492 +CONFIG_MMU=y
47493 +CONFIG_GENERIC_CMOS_UPDATE=y
47494 +CONFIG_GENERIC_TIME=y
47495 +CONFIG_GENERIC_TIME_VSYSCALL=y
47496 +CONFIG_GENERIC_CLOCKEVENTS=y
47497 +CONFIG_GENERIC_HARDIRQS=y
47498 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
47499 +CONFIG_IRQ_PER_CPU=y
47500 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
47501 +CONFIG_ARCH_HAS_ILOG2_U32=y
47502 +CONFIG_GENERIC_HWEIGHT=y
47503 +CONFIG_GENERIC_CALIBRATE_DELAY=y
47504 +CONFIG_GENERIC_FIND_NEXT_BIT=y
47505 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
47506 +CONFIG_PPC=y
47507 +CONFIG_EARLY_PRINTK=y
47508 +CONFIG_GENERIC_NVRAM=y
47509 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
47510 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
47511 +CONFIG_PPC_OF=y
47512 +CONFIG_OF=y
47513 +CONFIG_PPC_UDBG_16550=y
47514 +# CONFIG_GENERIC_TBSYNC is not set
47515 +CONFIG_AUDIT_ARCH=y
47516 +CONFIG_GENERIC_BUG=y
47517 +CONFIG_DEFAULT_UIMAGE=y
47518 +# CONFIG_PPC_DCR_NATIVE is not set
47519 +# CONFIG_PPC_DCR_MMIO is not set
47520 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
47521 +
47522 +#
47523 +# General setup
47524 +#
47525 +CONFIG_EXPERIMENTAL=y
47526 +CONFIG_BROKEN_ON_SMP=y
47527 +CONFIG_INIT_ENV_ARG_LIMIT=32
47528 +CONFIG_LOCALVERSION=""
47529 +CONFIG_LOCALVERSION_AUTO=y
47530 +CONFIG_SWAP=y
47531 +CONFIG_SYSVIPC=y
47532 +CONFIG_SYSVIPC_SYSCTL=y
47533 +# CONFIG_POSIX_MQUEUE is not set
47534 +# CONFIG_BSD_PROCESS_ACCT is not set
47535 +# CONFIG_TASKSTATS is not set
47536 +# CONFIG_AUDIT is not set
47537 +# CONFIG_IKCONFIG is not set
47538 +CONFIG_LOG_BUF_SHIFT=14
47539 +# CONFIG_CGROUPS is not set
47540 +CONFIG_GROUP_SCHED=y
47541 +CONFIG_FAIR_GROUP_SCHED=y
47542 +# CONFIG_RT_GROUP_SCHED is not set
47543 +CONFIG_USER_SCHED=y
47544 +# CONFIG_CGROUP_SCHED is not set
47545 +CONFIG_SYSFS_DEPRECATED=y
47546 +CONFIG_SYSFS_DEPRECATED_V2=y
47547 +# CONFIG_RELAY is not set
47548 +# CONFIG_NAMESPACES is not set
47549 +CONFIG_BLK_DEV_INITRD=y
47550 +CONFIG_INITRAMFS_SOURCE=""
47551 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
47552 +CONFIG_SYSCTL=y
47553 +CONFIG_EMBEDDED=y
47554 +CONFIG_SYSCTL_SYSCALL=y
47555 +# CONFIG_KALLSYMS is not set
47556 +# CONFIG_HOTPLUG is not set
47557 +CONFIG_PRINTK=y
47558 +CONFIG_BUG=y
47559 +CONFIG_ELF_CORE=y
47560 +CONFIG_COMPAT_BRK=y
47561 +CONFIG_BASE_FULL=y
47562 +CONFIG_FUTEX=y
47563 +CONFIG_ANON_INODES=y
47564 +# CONFIG_EPOLL is not set
47565 +CONFIG_SIGNALFD=y
47566 +CONFIG_TIMERFD=y
47567 +CONFIG_EVENTFD=y
47568 +CONFIG_SHMEM=y
47569 +CONFIG_VM_EVENT_COUNTERS=y
47570 +CONFIG_SLUB_DEBUG=y
47571 +# CONFIG_SLAB is not set
47572 +CONFIG_SLUB=y
47573 +# CONFIG_SLOB is not set
47574 +# CONFIG_PROFILING is not set
47575 +# CONFIG_MARKERS is not set
47576 +CONFIG_HAVE_OPROFILE=y
47577 +CONFIG_HAVE_KPROBES=y
47578 +CONFIG_HAVE_KRETPROBES=y
47579 +CONFIG_PROC_PAGE_MONITOR=y
47580 +CONFIG_SLABINFO=y
47581 +CONFIG_RT_MUTEXES=y
47582 +# CONFIG_TINY_SHMEM is not set
47583 +CONFIG_BASE_SMALL=0
47584 +# CONFIG_MODULES is not set
47585 +CONFIG_BLOCK=y
47586 +# CONFIG_LBD is not set
47587 +# CONFIG_BLK_DEV_IO_TRACE is not set
47588 +# CONFIG_LSF is not set
47589 +# CONFIG_BLK_DEV_BSG is not set
47590 +
47591 +#
47592 +# IO Schedulers
47593 +#
47594 +CONFIG_IOSCHED_NOOP=y
47595 +CONFIG_IOSCHED_AS=y
47596 +CONFIG_IOSCHED_DEADLINE=y
47597 +CONFIG_IOSCHED_CFQ=y
47598 +CONFIG_DEFAULT_AS=y
47599 +# CONFIG_DEFAULT_DEADLINE is not set
47600 +# CONFIG_DEFAULT_CFQ is not set
47601 +# CONFIG_DEFAULT_NOOP is not set
47602 +CONFIG_DEFAULT_IOSCHED="anticipatory"
47603 +CONFIG_CLASSIC_RCU=y
47604 +
47605 +#
47606 +# Platform support
47607 +#
47608 +# CONFIG_PPC_MPC512x is not set
47609 +# CONFIG_PPC_MPC5121 is not set
47610 +# CONFIG_PPC_CELL is not set
47611 +# CONFIG_PPC_CELL_NATIVE is not set
47612 +# CONFIG_PQ2ADS is not set
47613 +CONFIG_MPC85xx=y
47614 +# CONFIG_MPC8540_ADS is not set
47615 +# CONFIG_MPC8560_ADS is not set
47616 +# CONFIG_MPC85xx_CDS is not set
47617 +# CONFIG_MPC85xx_MDS is not set
47618 +# CONFIG_MPC85xx_DS is not set
47619 +# CONFIG_STX_GP3 is not set
47620 +# CONFIG_TQM8540 is not set
47621 +# CONFIG_TQM8541 is not set
47622 +# CONFIG_TQM8555 is not set
47623 +CONFIG_TQM8560=y
47624 +# CONFIG_SBC8548 is not set
47625 +# CONFIG_SBC8560 is not set
47626 +CONFIG_TQM85xx=y
47627 +# CONFIG_IPIC is not set
47628 +CONFIG_MPIC=y
47629 +# CONFIG_MPIC_WEIRD is not set
47630 +# CONFIG_PPC_I8259 is not set
47631 +# CONFIG_PPC_RTAS is not set
47632 +# CONFIG_MMIO_NVRAM is not set
47633 +# CONFIG_PPC_MPC106 is not set
47634 +# CONFIG_PPC_970_NAP is not set
47635 +# CONFIG_PPC_INDIRECT_IO is not set
47636 +# CONFIG_GENERIC_IOMAP is not set
47637 +# CONFIG_CPU_FREQ is not set
47638 +CONFIG_CPM2=y
47639 +CONFIG_PPC_CPM_NEW_BINDING=y
47640 +# CONFIG_FSL_ULI1575 is not set
47641 +CONFIG_CPM=y
47642 +
47643 +#
47644 +# Kernel options
47645 +#
47646 +# CONFIG_HIGHMEM is not set
47647 +# CONFIG_TICK_ONESHOT is not set
47648 +# CONFIG_NO_HZ is not set
47649 +# CONFIG_HIGH_RES_TIMERS is not set
47650 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
47651 +# CONFIG_HZ_100 is not set
47652 +CONFIG_HZ_250=y
47653 +# CONFIG_HZ_300 is not set
47654 +# CONFIG_HZ_1000 is not set
47655 +CONFIG_HZ=250
47656 +# CONFIG_SCHED_HRTICK is not set
47657 +CONFIG_PREEMPT_NONE=y
47658 +# CONFIG_PREEMPT_VOLUNTARY is not set
47659 +# CONFIG_PREEMPT is not set
47660 +CONFIG_BINFMT_ELF=y
47661 +# CONFIG_BINFMT_MISC is not set
47662 +CONFIG_MATH_EMULATION=y
47663 +# CONFIG_IOMMU_HELPER is not set
47664 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
47665 +CONFIG_ARCH_HAS_WALK_MEMORY=y
47666 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
47667 +CONFIG_ARCH_FLATMEM_ENABLE=y
47668 +CONFIG_ARCH_POPULATES_NODE_MAP=y
47669 +CONFIG_SELECT_MEMORY_MODEL=y
47670 +CONFIG_FLATMEM_MANUAL=y
47671 +# CONFIG_DISCONTIGMEM_MANUAL is not set
47672 +# CONFIG_SPARSEMEM_MANUAL is not set
47673 +CONFIG_FLATMEM=y
47674 +CONFIG_FLAT_NODE_MEM_MAP=y
47675 +# CONFIG_SPARSEMEM_STATIC is not set
47676 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
47677 +CONFIG_SPLIT_PTLOCK_CPUS=4
47678 +# CONFIG_RESOURCES_64BIT is not set
47679 +CONFIG_ZONE_DMA_FLAG=1
47680 +CONFIG_BOUNCE=y
47681 +CONFIG_VIRT_TO_BUS=y
47682 +# CONFIG_PROC_DEVICETREE is not set
47683 +# CONFIG_CMDLINE_BOOL is not set
47684 +# CONFIG_PM is not set
47685 +CONFIG_SECCOMP=y
47686 +CONFIG_ISA_DMA_API=y
47687 +
47688 +#
47689 +# Bus options
47690 +#
47691 +CONFIG_ZONE_DMA=y
47692 +CONFIG_PPC_INDIRECT_PCI=y
47693 +CONFIG_FSL_SOC=y
47694 +CONFIG_FSL_PCI=y
47695 +CONFIG_PCI=y
47696 +CONFIG_PCI_DOMAINS=y
47697 +CONFIG_PCI_SYSCALL=y
47698 +# CONFIG_PCIEPORTBUS is not set
47699 +CONFIG_ARCH_SUPPORTS_MSI=y
47700 +# CONFIG_PCI_MSI is not set
47701 +CONFIG_PCI_LEGACY=y
47702 +
47703 +#
47704 +# Advanced setup
47705 +#
47706 +# CONFIG_ADVANCED_OPTIONS is not set
47707 +
47708 +#
47709 +# Default settings for advanced configuration options are used
47710 +#
47711 +CONFIG_HIGHMEM_START=0xfe000000
47712 +CONFIG_LOWMEM_SIZE=0x30000000
47713 +CONFIG_KERNEL_START=0xc0000000
47714 +CONFIG_TASK_SIZE=0xc0000000
47715 +CONFIG_BOOT_LOAD=0x00800000
47716 +
47717 +#
47718 +# Networking
47719 +#
47720 +CONFIG_NET=y
47721 +
47722 +#
47723 +# Networking options
47724 +#
47725 +CONFIG_PACKET=y
47726 +# CONFIG_PACKET_MMAP is not set
47727 +CONFIG_UNIX=y
47728 +CONFIG_XFRM=y
47729 +# CONFIG_XFRM_USER is not set
47730 +# CONFIG_XFRM_SUB_POLICY is not set
47731 +# CONFIG_XFRM_MIGRATE is not set
47732 +# CONFIG_XFRM_STATISTICS is not set
47733 +# CONFIG_NET_KEY is not set
47734 +CONFIG_INET=y
47735 +CONFIG_IP_MULTICAST=y
47736 +# CONFIG_IP_ADVANCED_ROUTER is not set
47737 +CONFIG_IP_FIB_HASH=y
47738 +CONFIG_IP_PNP=y
47739 +CONFIG_IP_PNP_DHCP=y
47740 +CONFIG_IP_PNP_BOOTP=y
47741 +# CONFIG_IP_PNP_RARP is not set
47742 +# CONFIG_NET_IPIP is not set
47743 +# CONFIG_NET_IPGRE is not set
47744 +# CONFIG_IP_MROUTE is not set
47745 +# CONFIG_ARPD is not set
47746 +CONFIG_SYN_COOKIES=y
47747 +# CONFIG_INET_AH is not set
47748 +# CONFIG_INET_ESP is not set
47749 +# CONFIG_INET_IPCOMP is not set
47750 +# CONFIG_INET_XFRM_TUNNEL is not set
47751 +# CONFIG_INET_TUNNEL is not set
47752 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
47753 +CONFIG_INET_XFRM_MODE_TUNNEL=y
47754 +CONFIG_INET_XFRM_MODE_BEET=y
47755 +# CONFIG_INET_LRO is not set
47756 +CONFIG_INET_DIAG=y
47757 +CONFIG_INET_TCP_DIAG=y
47758 +# CONFIG_TCP_CONG_ADVANCED is not set
47759 +CONFIG_TCP_CONG_CUBIC=y
47760 +CONFIG_DEFAULT_TCP_CONG="cubic"
47761 +# CONFIG_TCP_MD5SIG is not set
47762 +# CONFIG_IPV6 is not set
47763 +# CONFIG_INET6_XFRM_TUNNEL is not set
47764 +# CONFIG_INET6_TUNNEL is not set
47765 +# CONFIG_NETWORK_SECMARK is not set
47766 +# CONFIG_NETFILTER is not set
47767 +# CONFIG_IP_DCCP is not set
47768 +# CONFIG_IP_SCTP is not set
47769 +# CONFIG_TIPC is not set
47770 +# CONFIG_ATM is not set
47771 +# CONFIG_BRIDGE is not set
47772 +# CONFIG_VLAN_8021Q is not set
47773 +# CONFIG_DECNET is not set
47774 +# CONFIG_LLC2 is not set
47775 +# CONFIG_IPX is not set
47776 +# CONFIG_ATALK is not set
47777 +# CONFIG_X25 is not set
47778 +# CONFIG_LAPB is not set
47779 +# CONFIG_ECONET is not set
47780 +# CONFIG_WAN_ROUTER is not set
47781 +# CONFIG_NET_SCHED is not set
47782 +
47783 +#
47784 +# Network testing
47785 +#
47786 +# CONFIG_NET_PKTGEN is not set
47787 +# CONFIG_HAMRADIO is not set
47788 +# CONFIG_CAN is not set
47789 +# CONFIG_IRDA is not set
47790 +# CONFIG_BT is not set
47791 +# CONFIG_AF_RXRPC is not set
47792 +
47793 +#
47794 +# Wireless
47795 +#
47796 +# CONFIG_CFG80211 is not set
47797 +# CONFIG_WIRELESS_EXT is not set
47798 +# CONFIG_MAC80211 is not set
47799 +# CONFIG_IEEE80211 is not set
47800 +# CONFIG_RFKILL is not set
47801 +# CONFIG_NET_9P is not set
47802 +
47803 +#
47804 +# Device Drivers
47805 +#
47806 +
47807 +#
47808 +# Generic Driver Options
47809 +#
47810 +CONFIG_STANDALONE=y
47811 +CONFIG_PREVENT_FIRMWARE_BUILD=y
47812 +# CONFIG_SYS_HYPERVISOR is not set
47813 +# CONFIG_CONNECTOR is not set
47814 +CONFIG_MTD=y
47815 +# CONFIG_MTD_DEBUG is not set
47816 +CONFIG_MTD_CONCAT=y
47817 +CONFIG_MTD_PARTITIONS=y
47818 +# CONFIG_MTD_REDBOOT_PARTS is not set
47819 +CONFIG_MTD_CMDLINE_PARTS=y
47820 +# CONFIG_MTD_OF_PARTS is not set
47821 +
47822 +#
47823 +# User Modules And Translation Layers
47824 +#
47825 +CONFIG_MTD_CHAR=y
47826 +CONFIG_MTD_BLKDEVS=y
47827 +CONFIG_MTD_BLOCK=y
47828 +# CONFIG_FTL is not set
47829 +# CONFIG_NFTL is not set
47830 +# CONFIG_INFTL is not set
47831 +# CONFIG_RFD_FTL is not set
47832 +# CONFIG_SSFDC is not set
47833 +# CONFIG_MTD_OOPS is not set
47834 +
47835 +#
47836 +# RAM/ROM/Flash chip drivers
47837 +#
47838 +CONFIG_MTD_CFI=y
47839 +# CONFIG_MTD_JEDECPROBE is not set
47840 +CONFIG_MTD_GEN_PROBE=y
47841 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
47842 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
47843 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
47844 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
47845 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
47846 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
47847 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
47848 +CONFIG_MTD_CFI_I1=y
47849 +CONFIG_MTD_CFI_I2=y
47850 +# CONFIG_MTD_CFI_I4 is not set
47851 +# CONFIG_MTD_CFI_I8 is not set
47852 +# CONFIG_MTD_CFI_INTELEXT is not set
47853 +CONFIG_MTD_CFI_AMDSTD=y
47854 +# CONFIG_MTD_CFI_STAA is not set
47855 +CONFIG_MTD_CFI_UTIL=y
47856 +# CONFIG_MTD_RAM is not set
47857 +# CONFIG_MTD_ROM is not set
47858 +# CONFIG_MTD_ABSENT is not set
47859 +
47860 +#
47861 +# Mapping drivers for chip access
47862 +#
47863 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
47864 +# CONFIG_MTD_PHYSMAP is not set
47865 +# CONFIG_MTD_PHYSMAP_OF is not set
47866 +# CONFIG_MTD_INTEL_VR_NOR is not set
47867 +# CONFIG_MTD_PLATRAM is not set
47868 +
47869 +#
47870 +# Self-contained MTD device drivers
47871 +#
47872 +# CONFIG_MTD_PMC551 is not set
47873 +# CONFIG_MTD_SLRAM is not set
47874 +# CONFIG_MTD_PHRAM is not set
47875 +# CONFIG_MTD_MTDRAM is not set
47876 +# CONFIG_MTD_BLOCK2MTD is not set
47877 +
47878 +#
47879 +# Disk-On-Chip Device Drivers
47880 +#
47881 +# CONFIG_MTD_DOC2000 is not set
47882 +# CONFIG_MTD_DOC2001 is not set
47883 +# CONFIG_MTD_DOC2001PLUS is not set
47884 +# CONFIG_MTD_NAND is not set
47885 +# CONFIG_MTD_ONENAND is not set
47886 +
47887 +#
47888 +# UBI - Unsorted block images
47889 +#
47890 +# CONFIG_MTD_UBI is not set
47891 +CONFIG_OF_DEVICE=y
47892 +# CONFIG_PARPORT is not set
47893 +CONFIG_BLK_DEV=y
47894 +# CONFIG_BLK_DEV_FD is not set
47895 +# CONFIG_BLK_CPQ_DA is not set
47896 +# CONFIG_BLK_CPQ_CISS_DA is not set
47897 +# CONFIG_BLK_DEV_DAC960 is not set
47898 +# CONFIG_BLK_DEV_UMEM is not set
47899 +# CONFIG_BLK_DEV_COW_COMMON is not set
47900 +CONFIG_BLK_DEV_LOOP=y
47901 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
47902 +# CONFIG_BLK_DEV_NBD is not set
47903 +# CONFIG_BLK_DEV_SX8 is not set
47904 +CONFIG_BLK_DEV_RAM=y
47905 +CONFIG_BLK_DEV_RAM_COUNT=16
47906 +CONFIG_BLK_DEV_RAM_SIZE=32768
47907 +# CONFIG_BLK_DEV_XIP is not set
47908 +# CONFIG_CDROM_PKTCDVD is not set
47909 +# CONFIG_ATA_OVER_ETH is not set
47910 +CONFIG_MISC_DEVICES=y
47911 +# CONFIG_PHANTOM is not set
47912 +# CONFIG_EEPROM_93CX6 is not set
47913 +# CONFIG_SGI_IOC4 is not set
47914 +# CONFIG_TIFM_CORE is not set
47915 +# CONFIG_ENCLOSURE_SERVICES is not set
47916 +CONFIG_HAVE_IDE=y
47917 +CONFIG_IDE=y
47918 +CONFIG_IDE_MAX_HWIFS=4
47919 +CONFIG_BLK_DEV_IDE=y
47920 +
47921 +#
47922 +# Please see Documentation/ide/ide.txt for help/info on IDE drives
47923 +#
47924 +# CONFIG_BLK_DEV_IDE_SATA is not set
47925 +CONFIG_BLK_DEV_IDEDISK=y
47926 +# CONFIG_IDEDISK_MULTI_MODE is not set
47927 +# CONFIG_BLK_DEV_IDECD is not set
47928 +# CONFIG_BLK_DEV_IDETAPE is not set
47929 +# CONFIG_BLK_DEV_IDEFLOPPY is not set
47930 +# CONFIG_IDE_TASK_IOCTL is not set
47931 +CONFIG_IDE_PROC_FS=y
47932 +
47933 +#
47934 +# IDE chipset support/bugfixes
47935 +#
47936 +CONFIG_IDE_GENERIC=y
47937 +# CONFIG_BLK_DEV_PLATFORM is not set
47938 +CONFIG_BLK_DEV_IDEDMA_SFF=y
47939 +
47940 +#
47941 +# PCI IDE chipsets support
47942 +#
47943 +CONFIG_BLK_DEV_IDEPCI=y
47944 +CONFIG_IDEPCI_PCIBUS_ORDER=y
47945 +# CONFIG_BLK_DEV_OFFBOARD is not set
47946 +CONFIG_BLK_DEV_GENERIC=y
47947 +# CONFIG_BLK_DEV_OPTI621 is not set
47948 +CONFIG_BLK_DEV_IDEDMA_PCI=y
47949 +# CONFIG_BLK_DEV_AEC62XX is not set
47950 +# CONFIG_BLK_DEV_ALI15X3 is not set
47951 +# CONFIG_BLK_DEV_AMD74XX is not set
47952 +# CONFIG_BLK_DEV_CMD64X is not set
47953 +# CONFIG_BLK_DEV_TRIFLEX is not set
47954 +# CONFIG_BLK_DEV_CY82C693 is not set
47955 +# CONFIG_BLK_DEV_CS5520 is not set
47956 +# CONFIG_BLK_DEV_CS5530 is not set
47957 +# CONFIG_BLK_DEV_HPT34X is not set
47958 +# CONFIG_BLK_DEV_HPT366 is not set
47959 +# CONFIG_BLK_DEV_JMICRON is not set
47960 +# CONFIG_BLK_DEV_SC1200 is not set
47961 +# CONFIG_BLK_DEV_PIIX is not set
47962 +# CONFIG_BLK_DEV_IT8213 is not set
47963 +# CONFIG_BLK_DEV_IT821X is not set
47964 +# CONFIG_BLK_DEV_NS87415 is not set
47965 +# CONFIG_BLK_DEV_PDC202XX_OLD is not set
47966 +# CONFIG_BLK_DEV_PDC202XX_NEW is not set
47967 +# CONFIG_BLK_DEV_SVWKS is not set
47968 +# CONFIG_BLK_DEV_SIIMAGE is not set
47969 +# CONFIG_BLK_DEV_SL82C105 is not set
47970 +# CONFIG_BLK_DEV_SLC90E66 is not set
47971 +# CONFIG_BLK_DEV_TRM290 is not set
47972 +CONFIG_BLK_DEV_VIA82CXXX=y
47973 +# CONFIG_BLK_DEV_TC86C001 is not set
47974 +CONFIG_BLK_DEV_IDEDMA=y
47975 +CONFIG_IDE_ARCH_OBSOLETE_INIT=y
47976 +# CONFIG_BLK_DEV_HD is not set
47977 +
47978 +#
47979 +# SCSI device support
47980 +#
47981 +# CONFIG_RAID_ATTRS is not set
47982 +# CONFIG_SCSI is not set
47983 +# CONFIG_SCSI_DMA is not set
47984 +# CONFIG_SCSI_NETLINK is not set
47985 +# CONFIG_ATA is not set
47986 +# CONFIG_MD is not set
47987 +# CONFIG_FUSION is not set
47988 +
47989 +#
47990 +# IEEE 1394 (FireWire) support
47991 +#
47992 +# CONFIG_FIREWIRE is not set
47993 +# CONFIG_IEEE1394 is not set
47994 +# CONFIG_I2O is not set
47995 +# CONFIG_MACINTOSH_DRIVERS is not set
47996 +CONFIG_NETDEVICES=y
47997 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
47998 +# CONFIG_DUMMY is not set
47999 +# CONFIG_BONDING is not set
48000 +# CONFIG_MACVLAN is not set
48001 +# CONFIG_EQUALIZER is not set
48002 +# CONFIG_TUN is not set
48003 +# CONFIG_VETH is not set
48004 +# CONFIG_ARCNET is not set
48005 +CONFIG_PHYLIB=y
48006 +
48007 +#
48008 +# MII PHY device drivers
48009 +#
48010 +# CONFIG_MARVELL_PHY is not set
48011 +# CONFIG_DAVICOM_PHY is not set
48012 +# CONFIG_QSEMI_PHY is not set
48013 +# CONFIG_LXT_PHY is not set
48014 +# CONFIG_CICADA_PHY is not set
48015 +# CONFIG_VITESSE_PHY is not set
48016 +# CONFIG_SMSC_PHY is not set
48017 +# CONFIG_BROADCOM_PHY is not set
48018 +# CONFIG_ICPLUS_PHY is not set
48019 +# CONFIG_REALTEK_PHY is not set
48020 +# CONFIG_FIXED_PHY is not set
48021 +# CONFIG_MDIO_BITBANG is not set
48022 +CONFIG_NET_ETHERNET=y
48023 +CONFIG_MII=y
48024 +# CONFIG_HAPPYMEAL is not set
48025 +# CONFIG_SUNGEM is not set
48026 +# CONFIG_CASSINI is not set
48027 +# CONFIG_NET_VENDOR_3COM is not set
48028 +# CONFIG_NET_TULIP is not set
48029 +# CONFIG_HP100 is not set
48030 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
48031 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
48032 +# CONFIG_IBM_NEW_EMAC_TAH is not set
48033 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
48034 +CONFIG_NET_PCI=y
48035 +# CONFIG_PCNET32 is not set
48036 +# CONFIG_AMD8111_ETH is not set
48037 +# CONFIG_ADAPTEC_STARFIRE is not set
48038 +# CONFIG_B44 is not set
48039 +# CONFIG_FORCEDETH is not set
48040 +# CONFIG_EEPRO100 is not set
48041 +CONFIG_E100=y
48042 +# CONFIG_FEALNX is not set
48043 +# CONFIG_NATSEMI is not set
48044 +# CONFIG_NE2K_PCI is not set
48045 +# CONFIG_8139CP is not set
48046 +# CONFIG_8139TOO is not set
48047 +# CONFIG_R6040 is not set
48048 +# CONFIG_SIS900 is not set
48049 +# CONFIG_EPIC100 is not set
48050 +# CONFIG_SUNDANCE is not set
48051 +# CONFIG_TLAN is not set
48052 +# CONFIG_VIA_RHINE is not set
48053 +# CONFIG_SC92031 is not set
48054 +# CONFIG_FS_ENET is not set
48055 +CONFIG_NETDEV_1000=y
48056 +# CONFIG_ACENIC is not set
48057 +# CONFIG_DL2K is not set
48058 +# CONFIG_E1000 is not set
48059 +# CONFIG_E1000E is not set
48060 +# CONFIG_E1000E_ENABLED is not set
48061 +# CONFIG_IP1000 is not set
48062 +# CONFIG_IGB is not set
48063 +# CONFIG_NS83820 is not set
48064 +# CONFIG_HAMACHI is not set
48065 +# CONFIG_YELLOWFIN is not set
48066 +# CONFIG_R8169 is not set
48067 +# CONFIG_SIS190 is not set
48068 +# CONFIG_SKGE is not set
48069 +# CONFIG_SKY2 is not set
48070 +# CONFIG_SK98LIN is not set
48071 +# CONFIG_VIA_VELOCITY is not set
48072 +# CONFIG_TIGON3 is not set
48073 +# CONFIG_BNX2 is not set
48074 +CONFIG_GIANFAR=y
48075 +CONFIG_GFAR_NAPI=y
48076 +# CONFIG_QLA3XXX is not set
48077 +# CONFIG_ATL1 is not set
48078 +CONFIG_NETDEV_10000=y
48079 +# CONFIG_CHELSIO_T1 is not set
48080 +# CONFIG_CHELSIO_T3 is not set
48081 +# CONFIG_IXGBE is not set
48082 +# CONFIG_IXGB is not set
48083 +# CONFIG_S2IO is not set
48084 +# CONFIG_MYRI10GE is not set
48085 +# CONFIG_NETXEN_NIC is not set
48086 +# CONFIG_NIU is not set
48087 +# CONFIG_MLX4_CORE is not set
48088 +# CONFIG_TEHUTI is not set
48089 +# CONFIG_BNX2X is not set
48090 +# CONFIG_TR is not set
48091 +
48092 +#
48093 +# Wireless LAN
48094 +#
48095 +# CONFIG_WLAN_PRE80211 is not set
48096 +# CONFIG_WLAN_80211 is not set
48097 +# CONFIG_WAN is not set
48098 +# CONFIG_FDDI is not set
48099 +# CONFIG_HIPPI is not set
48100 +# CONFIG_PPP is not set
48101 +# CONFIG_SLIP is not set
48102 +# CONFIG_NETCONSOLE is not set
48103 +# CONFIG_NETPOLL is not set
48104 +# CONFIG_NET_POLL_CONTROLLER is not set
48105 +# CONFIG_ISDN is not set
48106 +# CONFIG_PHONE is not set
48107 +
48108 +#
48109 +# Input device support
48110 +#
48111 +CONFIG_INPUT=y
48112 +# CONFIG_INPUT_FF_MEMLESS is not set
48113 +# CONFIG_INPUT_POLLDEV is not set
48114 +
48115 +#
48116 +# Userland interfaces
48117 +#
48118 +# CONFIG_INPUT_MOUSEDEV is not set
48119 +# CONFIG_INPUT_JOYDEV is not set
48120 +# CONFIG_INPUT_EVDEV is not set
48121 +# CONFIG_INPUT_EVBUG is not set
48122 +
48123 +#
48124 +# Input Device Drivers
48125 +#
48126 +# CONFIG_INPUT_KEYBOARD is not set
48127 +# CONFIG_INPUT_MOUSE is not set
48128 +# CONFIG_INPUT_JOYSTICK is not set
48129 +# CONFIG_INPUT_TABLET is not set
48130 +# CONFIG_INPUT_TOUCHSCREEN is not set
48131 +# CONFIG_INPUT_MISC is not set
48132 +
48133 +#
48134 +# Hardware I/O ports
48135 +#
48136 +# CONFIG_SERIO is not set
48137 +# CONFIG_GAMEPORT is not set
48138 +
48139 +#
48140 +# Character devices
48141 +#
48142 +# CONFIG_VT is not set
48143 +# CONFIG_SERIAL_NONSTANDARD is not set
48144 +# CONFIG_NOZOMI is not set
48145 +
48146 +#
48147 +# Serial drivers
48148 +#
48149 +CONFIG_SERIAL_8250=y
48150 +CONFIG_SERIAL_8250_CONSOLE=y
48151 +CONFIG_SERIAL_8250_PCI=y
48152 +CONFIG_SERIAL_8250_NR_UARTS=4
48153 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
48154 +# CONFIG_SERIAL_8250_EXTENDED is not set
48155 +CONFIG_SERIAL_8250_SHARE_IRQ=y
48156 +
48157 +#
48158 +# Non-8250 serial port support
48159 +#
48160 +# CONFIG_SERIAL_UARTLITE is not set
48161 +CONFIG_SERIAL_CORE=y
48162 +CONFIG_SERIAL_CORE_CONSOLE=y
48163 +CONFIG_SERIAL_CPM=y
48164 +CONFIG_SERIAL_CPM_CONSOLE=y
48165 +CONFIG_SERIAL_CPM_SCC1=y
48166 +# CONFIG_SERIAL_CPM_SCC2 is not set
48167 +# CONFIG_SERIAL_CPM_SCC3 is not set
48168 +# CONFIG_SERIAL_CPM_SCC4 is not set
48169 +# CONFIG_SERIAL_CPM_SMC1 is not set
48170 +# CONFIG_SERIAL_CPM_SMC2 is not set
48171 +# CONFIG_SERIAL_JSM is not set
48172 +# CONFIG_SERIAL_OF_PLATFORM is not set
48173 +CONFIG_UNIX98_PTYS=y
48174 +CONFIG_LEGACY_PTYS=y
48175 +CONFIG_LEGACY_PTY_COUNT=256
48176 +# CONFIG_IPMI_HANDLER is not set
48177 +CONFIG_HW_RANDOM=y
48178 +# CONFIG_NVRAM is not set
48179 +CONFIG_GEN_RTC=y
48180 +# CONFIG_GEN_RTC_X is not set
48181 +# CONFIG_R3964 is not set
48182 +# CONFIG_APPLICOM is not set
48183 +# CONFIG_RAW_DRIVER is not set
48184 +# CONFIG_TCG_TPM is not set
48185 +CONFIG_DEVPORT=y
48186 +CONFIG_I2C=y
48187 +CONFIG_I2C_BOARDINFO=y
48188 +CONFIG_I2C_CHARDEV=y
48189 +
48190 +#
48191 +# I2C Algorithms
48192 +#
48193 +# CONFIG_I2C_ALGOBIT is not set
48194 +# CONFIG_I2C_ALGOPCF is not set
48195 +# CONFIG_I2C_ALGOPCA is not set
48196 +
48197 +#
48198 +# I2C Hardware Bus support
48199 +#
48200 +# CONFIG_I2C_ALI1535 is not set
48201 +# CONFIG_I2C_ALI1563 is not set
48202 +# CONFIG_I2C_ALI15X3 is not set
48203 +# CONFIG_I2C_AMD756 is not set
48204 +# CONFIG_I2C_AMD8111 is not set
48205 +# CONFIG_I2C_I801 is not set
48206 +# CONFIG_I2C_I810 is not set
48207 +# CONFIG_I2C_PIIX4 is not set
48208 +CONFIG_I2C_MPC=y
48209 +# CONFIG_I2C_NFORCE2 is not set
48210 +# CONFIG_I2C_OCORES is not set
48211 +# CONFIG_I2C_PARPORT_LIGHT is not set
48212 +# CONFIG_I2C_PROSAVAGE is not set
48213 +# CONFIG_I2C_SAVAGE4 is not set
48214 +# CONFIG_I2C_SIMTEC is not set
48215 +# CONFIG_I2C_SIS5595 is not set
48216 +# CONFIG_I2C_SIS630 is not set
48217 +# CONFIG_I2C_SIS96X is not set
48218 +# CONFIG_I2C_TAOS_EVM is not set
48219 +# CONFIG_I2C_VIA is not set
48220 +# CONFIG_I2C_VIAPRO is not set
48221 +# CONFIG_I2C_VOODOO3 is not set
48222 +
48223 +#
48224 +# Miscellaneous I2C Chip support
48225 +#
48226 +# CONFIG_DS1682 is not set
48227 +# CONFIG_SENSORS_EEPROM is not set
48228 +# CONFIG_SENSORS_PCF8574 is not set
48229 +# CONFIG_PCF8575 is not set
48230 +# CONFIG_SENSORS_PCF8591 is not set
48231 +# CONFIG_TPS65010 is not set
48232 +# CONFIG_SENSORS_MAX6875 is not set
48233 +# CONFIG_SENSORS_TSL2550 is not set
48234 +# CONFIG_I2C_DEBUG_CORE is not set
48235 +# CONFIG_I2C_DEBUG_ALGO is not set
48236 +# CONFIG_I2C_DEBUG_BUS is not set
48237 +# CONFIG_I2C_DEBUG_CHIP is not set
48238 +
48239 +#
48240 +# SPI support
48241 +#
48242 +# CONFIG_SPI is not set
48243 +# CONFIG_SPI_MASTER is not set
48244 +# CONFIG_W1 is not set
48245 +# CONFIG_POWER_SUPPLY is not set
48246 +CONFIG_HWMON=y
48247 +# CONFIG_HWMON_VID is not set
48248 +# CONFIG_SENSORS_AD7418 is not set
48249 +# CONFIG_SENSORS_ADM1021 is not set
48250 +# CONFIG_SENSORS_ADM1025 is not set
48251 +# CONFIG_SENSORS_ADM1026 is not set
48252 +# CONFIG_SENSORS_ADM1029 is not set
48253 +# CONFIG_SENSORS_ADM1031 is not set
48254 +# CONFIG_SENSORS_ADM9240 is not set
48255 +# CONFIG_SENSORS_ADT7470 is not set
48256 +# CONFIG_SENSORS_ADT7473 is not set
48257 +# CONFIG_SENSORS_ATXP1 is not set
48258 +# CONFIG_SENSORS_DS1621 is not set
48259 +# CONFIG_SENSORS_I5K_AMB is not set
48260 +# CONFIG_SENSORS_F71805F is not set
48261 +# CONFIG_SENSORS_F71882FG is not set
48262 +# CONFIG_SENSORS_F75375S is not set
48263 +# CONFIG_SENSORS_GL518SM is not set
48264 +# CONFIG_SENSORS_GL520SM is not set
48265 +# CONFIG_SENSORS_IT87 is not set
48266 +# CONFIG_SENSORS_LM63 is not set
48267 +CONFIG_SENSORS_LM75=y
48268 +# CONFIG_SENSORS_LM77 is not set
48269 +# CONFIG_SENSORS_LM78 is not set
48270 +# CONFIG_SENSORS_LM80 is not set
48271 +# CONFIG_SENSORS_LM83 is not set
48272 +# CONFIG_SENSORS_LM85 is not set
48273 +# CONFIG_SENSORS_LM87 is not set
48274 +# CONFIG_SENSORS_LM90 is not set
48275 +# CONFIG_SENSORS_LM92 is not set
48276 +# CONFIG_SENSORS_LM93 is not set
48277 +# CONFIG_SENSORS_MAX1619 is not set
48278 +# CONFIG_SENSORS_MAX6650 is not set
48279 +# CONFIG_SENSORS_PC87360 is not set
48280 +# CONFIG_SENSORS_PC87427 is not set
48281 +# CONFIG_SENSORS_SIS5595 is not set
48282 +# CONFIG_SENSORS_DME1737 is not set
48283 +# CONFIG_SENSORS_SMSC47M1 is not set
48284 +# CONFIG_SENSORS_SMSC47M192 is not set
48285 +# CONFIG_SENSORS_SMSC47B397 is not set
48286 +# CONFIG_SENSORS_ADS7828 is not set
48287 +# CONFIG_SENSORS_THMC50 is not set
48288 +# CONFIG_SENSORS_VIA686A is not set
48289 +# CONFIG_SENSORS_VT1211 is not set
48290 +# CONFIG_SENSORS_VT8231 is not set
48291 +# CONFIG_SENSORS_W83781D is not set
48292 +# CONFIG_SENSORS_W83791D is not set
48293 +# CONFIG_SENSORS_W83792D is not set
48294 +# CONFIG_SENSORS_W83793 is not set
48295 +# CONFIG_SENSORS_W83L785TS is not set
48296 +# CONFIG_SENSORS_W83L786NG is not set
48297 +# CONFIG_SENSORS_W83627HF is not set
48298 +# CONFIG_SENSORS_W83627EHF is not set
48299 +CONFIG_HWMON_DEBUG_CHIP=y
48300 +# CONFIG_THERMAL is not set
48301 +# CONFIG_WATCHDOG is not set
48302 +
48303 +#
48304 +# Sonics Silicon Backplane
48305 +#
48306 +CONFIG_SSB_POSSIBLE=y
48307 +# CONFIG_SSB is not set
48308 +
48309 +#
48310 +# Multifunction device drivers
48311 +#
48312 +# CONFIG_MFD_SM501 is not set
48313 +
48314 +#
48315 +# Multimedia devices
48316 +#
48317 +# CONFIG_VIDEO_DEV is not set
48318 +# CONFIG_DVB_CORE is not set
48319 +CONFIG_DAB=y
48320 +
48321 +#
48322 +# Graphics support
48323 +#
48324 +# CONFIG_AGP is not set
48325 +# CONFIG_DRM is not set
48326 +# CONFIG_VGASTATE is not set
48327 +# CONFIG_VIDEO_OUTPUT_CONTROL is not set
48328 +# CONFIG_FB is not set
48329 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
48330 +
48331 +#
48332 +# Display device support
48333 +#
48334 +# CONFIG_DISPLAY_SUPPORT is not set
48335 +
48336 +#
48337 +# Sound
48338 +#
48339 +# CONFIG_SOUND is not set
48340 +CONFIG_HID_SUPPORT=y
48341 +CONFIG_HID=y
48342 +# CONFIG_HID_DEBUG is not set
48343 +# CONFIG_HIDRAW is not set
48344 +CONFIG_USB_SUPPORT=y
48345 +CONFIG_USB_ARCH_HAS_HCD=y
48346 +CONFIG_USB_ARCH_HAS_OHCI=y
48347 +CONFIG_USB_ARCH_HAS_EHCI=y
48348 +# CONFIG_USB is not set
48349 +
48350 +#
48351 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
48352 +#
48353 +# CONFIG_USB_GADGET is not set
48354 +# CONFIG_MMC is not set
48355 +# CONFIG_MEMSTICK is not set
48356 +# CONFIG_NEW_LEDS is not set
48357 +# CONFIG_INFINIBAND is not set
48358 +# CONFIG_EDAC is not set
48359 +# CONFIG_RTC_CLASS is not set
48360 +# CONFIG_DMADEVICES is not set
48361 +
48362 +#
48363 +# Userspace I/O
48364 +#
48365 +# CONFIG_UIO is not set
48366 +
48367 +#
48368 +# File systems
48369 +#
48370 +CONFIG_EXT2_FS=y
48371 +# CONFIG_EXT2_FS_XATTR is not set
48372 +# CONFIG_EXT2_FS_XIP is not set
48373 +CONFIG_EXT3_FS=y
48374 +CONFIG_EXT3_FS_XATTR=y
48375 +# CONFIG_EXT3_FS_POSIX_ACL is not set
48376 +# CONFIG_EXT3_FS_SECURITY is not set
48377 +# CONFIG_EXT4DEV_FS is not set
48378 +CONFIG_JBD=y
48379 +CONFIG_FS_MBCACHE=y
48380 +# CONFIG_REISERFS_FS is not set
48381 +# CONFIG_JFS_FS is not set
48382 +# CONFIG_FS_POSIX_ACL is not set
48383 +# CONFIG_XFS_FS is not set
48384 +# CONFIG_GFS2_FS is not set
48385 +# CONFIG_OCFS2_FS is not set
48386 +CONFIG_DNOTIFY=y
48387 +CONFIG_INOTIFY=y
48388 +CONFIG_INOTIFY_USER=y
48389 +# CONFIG_QUOTA is not set
48390 +# CONFIG_AUTOFS_FS is not set
48391 +# CONFIG_AUTOFS4_FS is not set
48392 +# CONFIG_FUSE_FS is not set
48393 +
48394 +#
48395 +# CD-ROM/DVD Filesystems
48396 +#
48397 +# CONFIG_ISO9660_FS is not set
48398 +# CONFIG_UDF_FS is not set
48399 +
48400 +#
48401 +# DOS/FAT/NT Filesystems
48402 +#
48403 +# CONFIG_MSDOS_FS is not set
48404 +# CONFIG_VFAT_FS is not set
48405 +# CONFIG_NTFS_FS is not set
48406 +
48407 +#
48408 +# Pseudo filesystems
48409 +#
48410 +CONFIG_PROC_FS=y
48411 +CONFIG_PROC_KCORE=y
48412 +CONFIG_PROC_SYSCTL=y
48413 +CONFIG_SYSFS=y
48414 +CONFIG_TMPFS=y
48415 +# CONFIG_TMPFS_POSIX_ACL is not set
48416 +# CONFIG_HUGETLB_PAGE is not set
48417 +# CONFIG_CONFIGFS_FS is not set
48418 +
48419 +#
48420 +# Miscellaneous filesystems
48421 +#
48422 +# CONFIG_ADFS_FS is not set
48423 +# CONFIG_AFFS_FS is not set
48424 +# CONFIG_HFS_FS is not set
48425 +# CONFIG_HFSPLUS_FS is not set
48426 +# CONFIG_BEFS_FS is not set
48427 +# CONFIG_BFS_FS is not set
48428 +# CONFIG_EFS_FS is not set
48429 +CONFIG_JFFS2_FS=y
48430 +CONFIG_JFFS2_FS_DEBUG=0
48431 +CONFIG_JFFS2_FS_WRITEBUFFER=y
48432 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
48433 +# CONFIG_JFFS2_SUMMARY is not set
48434 +# CONFIG_JFFS2_FS_XATTR is not set
48435 +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
48436 +CONFIG_JFFS2_ZLIB=y
48437 +# CONFIG_JFFS2_LZO is not set
48438 +CONFIG_JFFS2_RTIME=y
48439 +# CONFIG_JFFS2_RUBIN is not set
48440 +CONFIG_CRAMFS=y
48441 +# CONFIG_VXFS_FS is not set
48442 +# CONFIG_MINIX_FS is not set
48443 +# CONFIG_HPFS_FS is not set
48444 +# CONFIG_QNX4FS_FS is not set
48445 +# CONFIG_ROMFS_FS is not set
48446 +# CONFIG_SYSV_FS is not set
48447 +# CONFIG_UFS_FS is not set
48448 +CONFIG_NETWORK_FILESYSTEMS=y
48449 +CONFIG_NFS_FS=y
48450 +# CONFIG_NFS_V3 is not set
48451 +# CONFIG_NFS_V4 is not set
48452 +# CONFIG_NFS_DIRECTIO is not set
48453 +# CONFIG_NFSD is not set
48454 +CONFIG_ROOT_NFS=y
48455 +CONFIG_LOCKD=y
48456 +CONFIG_NFS_COMMON=y
48457 +CONFIG_SUNRPC=y
48458 +# CONFIG_SUNRPC_BIND34 is not set
48459 +# CONFIG_RPCSEC_GSS_KRB5 is not set
48460 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
48461 +# CONFIG_SMB_FS is not set
48462 +# CONFIG_CIFS is not set
48463 +# CONFIG_NCP_FS is not set
48464 +# CONFIG_CODA_FS is not set
48465 +# CONFIG_AFS_FS is not set
48466 +
48467 +#
48468 +# Partition Types
48469 +#
48470 +CONFIG_PARTITION_ADVANCED=y
48471 +# CONFIG_ACORN_PARTITION is not set
48472 +# CONFIG_OSF_PARTITION is not set
48473 +# CONFIG_AMIGA_PARTITION is not set
48474 +# CONFIG_ATARI_PARTITION is not set
48475 +# CONFIG_MAC_PARTITION is not set
48476 +# CONFIG_MSDOS_PARTITION is not set
48477 +# CONFIG_LDM_PARTITION is not set
48478 +# CONFIG_SGI_PARTITION is not set
48479 +# CONFIG_ULTRIX_PARTITION is not set
48480 +# CONFIG_SUN_PARTITION is not set
48481 +# CONFIG_KARMA_PARTITION is not set
48482 +# CONFIG_EFI_PARTITION is not set
48483 +# CONFIG_SYSV68_PARTITION is not set
48484 +# CONFIG_NLS is not set
48485 +# CONFIG_DLM is not set
48486 +
48487 +#
48488 +# Library routines
48489 +#
48490 +CONFIG_BITREVERSE=y
48491 +# CONFIG_CRC_CCITT is not set
48492 +# CONFIG_CRC16 is not set
48493 +# CONFIG_CRC_ITU_T is not set
48494 +CONFIG_CRC32=y
48495 +# CONFIG_CRC7 is not set
48496 +# CONFIG_LIBCRC32C is not set
48497 +CONFIG_ZLIB_INFLATE=y
48498 +CONFIG_ZLIB_DEFLATE=y
48499 +CONFIG_PLIST=y
48500 +CONFIG_HAS_IOMEM=y
48501 +CONFIG_HAS_IOPORT=y
48502 +CONFIG_HAS_DMA=y
48503 +
48504 +#
48505 +# Kernel hacking
48506 +#
48507 +# CONFIG_PRINTK_TIME is not set
48508 +CONFIG_ENABLE_WARN_DEPRECATED=y
48509 +CONFIG_ENABLE_MUST_CHECK=y
48510 +# CONFIG_MAGIC_SYSRQ is not set
48511 +# CONFIG_UNUSED_SYMBOLS is not set
48512 +# CONFIG_DEBUG_FS is not set
48513 +# CONFIG_HEADERS_CHECK is not set
48514 +# CONFIG_DEBUG_KERNEL is not set
48515 +# CONFIG_SLUB_DEBUG_ON is not set
48516 +# CONFIG_SLUB_STATS is not set
48517 +# CONFIG_DEBUG_BUGVERBOSE is not set
48518 +# CONFIG_SAMPLES is not set
48519 +# CONFIG_KGDB_CONSOLE is not set
48520 +# CONFIG_PPC_EARLY_DEBUG is not set
48521 +
48522 +#
48523 +# Security options
48524 +#
48525 +# CONFIG_KEYS is not set
48526 +# CONFIG_SECURITY is not set
48527 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
48528 +CONFIG_CRYPTO=y
48529 +# CONFIG_CRYPTO_SEQIV is not set
48530 +# CONFIG_CRYPTO_MANAGER is not set
48531 +# CONFIG_CRYPTO_HMAC is not set
48532 +# CONFIG_CRYPTO_XCBC is not set
48533 +# CONFIG_CRYPTO_NULL is not set
48534 +# CONFIG_CRYPTO_MD4 is not set
48535 +# CONFIG_CRYPTO_MD5 is not set
48536 +# CONFIG_CRYPTO_SHA1 is not set
48537 +# CONFIG_CRYPTO_SHA256 is not set
48538 +# CONFIG_CRYPTO_SHA512 is not set
48539 +# CONFIG_CRYPTO_WP512 is not set
48540 +# CONFIG_CRYPTO_TGR192 is not set
48541 +# CONFIG_CRYPTO_GF128MUL is not set
48542 +# CONFIG_CRYPTO_ECB is not set
48543 +# CONFIG_CRYPTO_CBC is not set
48544 +# CONFIG_CRYPTO_PCBC is not set
48545 +# CONFIG_CRYPTO_LRW is not set
48546 +# CONFIG_CRYPTO_XTS is not set
48547 +# CONFIG_CRYPTO_CTR is not set
48548 +# CONFIG_CRYPTO_GCM is not set
48549 +# CONFIG_CRYPTO_CCM is not set
48550 +# CONFIG_CRYPTO_CRYPTD is not set
48551 +# CONFIG_CRYPTO_DES is not set
48552 +# CONFIG_CRYPTO_FCRYPT is not set
48553 +# CONFIG_CRYPTO_BLOWFISH is not set
48554 +# CONFIG_CRYPTO_TWOFISH is not set
48555 +# CONFIG_CRYPTO_SERPENT is not set
48556 +# CONFIG_CRYPTO_AES is not set
48557 +# CONFIG_CRYPTO_CAST5 is not set
48558 +# CONFIG_CRYPTO_CAST6 is not set
48559 +# CONFIG_CRYPTO_TEA is not set
48560 +# CONFIG_CRYPTO_ARC4 is not set
48561 +# CONFIG_CRYPTO_KHAZAD is not set
48562 +# CONFIG_CRYPTO_ANUBIS is not set
48563 +# CONFIG_CRYPTO_SEED is not set
48564 +# CONFIG_CRYPTO_SALSA20 is not set
48565 +# CONFIG_CRYPTO_DEFLATE is not set
48566 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
48567 +# CONFIG_CRYPTO_CRC32C is not set
48568 +# CONFIG_CRYPTO_CAMELLIA is not set
48569 +# CONFIG_CRYPTO_AUTHENC is not set
48570 +# CONFIG_CRYPTO_LZO is not set
48571 +CONFIG_CRYPTO_HW=y
48572 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
48573 +# CONFIG_PPC_CLOCK is not set
48574 +CONFIG_PPC_LIB_RHEAP=y
48575 Index: linux-2.6.25.4/arch/powerpc/configs/bamboo_defconfig
48576 ===================================================================
48577 --- linux-2.6.25.4.orig/arch/powerpc/configs/bamboo_defconfig
48578 +++ /dev/null
48579 @@ -1,815 +0,0 @@
48580 -#
48581 -# Automatically generated make config: don't edit
48582 -# Linux kernel version: 2.6.25-rc2
48583 -# Fri Feb 15 21:36:39 2008
48584 -#
48585 -# CONFIG_PPC64 is not set
48586 -
48587 -#
48588 -# Processor support
48589 -#
48590 -# CONFIG_6xx is not set
48591 -# CONFIG_PPC_85xx is not set
48592 -# CONFIG_PPC_8xx is not set
48593 -# CONFIG_40x is not set
48594 -CONFIG_44x=y
48595 -# CONFIG_E200 is not set
48596 -CONFIG_PPC_FPU=y
48597 -CONFIG_4xx=y
48598 -CONFIG_BOOKE=y
48599 -CONFIG_PTE_64BIT=y
48600 -CONFIG_PHYS_64BIT=y
48601 -# CONFIG_PPC_MM_SLICES is not set
48602 -CONFIG_NOT_COHERENT_CACHE=y
48603 -CONFIG_PPC32=y
48604 -CONFIG_WORD_SIZE=32
48605 -CONFIG_PPC_MERGE=y
48606 -CONFIG_MMU=y
48607 -CONFIG_GENERIC_CMOS_UPDATE=y
48608 -CONFIG_GENERIC_TIME=y
48609 -CONFIG_GENERIC_TIME_VSYSCALL=y
48610 -CONFIG_GENERIC_CLOCKEVENTS=y
48611 -CONFIG_GENERIC_HARDIRQS=y
48612 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
48613 -CONFIG_IRQ_PER_CPU=y
48614 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
48615 -CONFIG_ARCH_HAS_ILOG2_U32=y
48616 -CONFIG_GENERIC_HWEIGHT=y
48617 -CONFIG_GENERIC_CALIBRATE_DELAY=y
48618 -CONFIG_GENERIC_FIND_NEXT_BIT=y
48619 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
48620 -CONFIG_PPC=y
48621 -CONFIG_EARLY_PRINTK=y
48622 -CONFIG_GENERIC_NVRAM=y
48623 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
48624 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
48625 -CONFIG_PPC_OF=y
48626 -CONFIG_OF=y
48627 -CONFIG_PPC_UDBG_16550=y
48628 -# CONFIG_GENERIC_TBSYNC is not set
48629 -CONFIG_AUDIT_ARCH=y
48630 -CONFIG_GENERIC_BUG=y
48631 -# CONFIG_DEFAULT_UIMAGE is not set
48632 -CONFIG_PPC_DCR_NATIVE=y
48633 -# CONFIG_PPC_DCR_MMIO is not set
48634 -CONFIG_PPC_DCR=y
48635 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
48636 -
48637 -#
48638 -# General setup
48639 -#
48640 -CONFIG_EXPERIMENTAL=y
48641 -CONFIG_BROKEN_ON_SMP=y
48642 -CONFIG_INIT_ENV_ARG_LIMIT=32
48643 -CONFIG_LOCALVERSION=""
48644 -CONFIG_LOCALVERSION_AUTO=y
48645 -CONFIG_SWAP=y
48646 -CONFIG_SYSVIPC=y
48647 -CONFIG_SYSVIPC_SYSCTL=y
48648 -CONFIG_POSIX_MQUEUE=y
48649 -# CONFIG_BSD_PROCESS_ACCT is not set
48650 -# CONFIG_TASKSTATS is not set
48651 -# CONFIG_AUDIT is not set
48652 -# CONFIG_IKCONFIG is not set
48653 -CONFIG_LOG_BUF_SHIFT=14
48654 -# CONFIG_CGROUPS is not set
48655 -CONFIG_GROUP_SCHED=y
48656 -CONFIG_FAIR_GROUP_SCHED=y
48657 -# CONFIG_RT_GROUP_SCHED is not set
48658 -CONFIG_USER_SCHED=y
48659 -# CONFIG_CGROUP_SCHED is not set
48660 -CONFIG_SYSFS_DEPRECATED=y
48661 -# CONFIG_RELAY is not set
48662 -# CONFIG_NAMESPACES is not set
48663 -CONFIG_BLK_DEV_INITRD=y
48664 -CONFIG_INITRAMFS_SOURCE=""
48665 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
48666 -CONFIG_SYSCTL=y
48667 -CONFIG_EMBEDDED=y
48668 -CONFIG_SYSCTL_SYSCALL=y
48669 -CONFIG_KALLSYMS=y
48670 -# CONFIG_KALLSYMS_ALL is not set
48671 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
48672 -CONFIG_HOTPLUG=y
48673 -CONFIG_PRINTK=y
48674 -CONFIG_BUG=y
48675 -CONFIG_ELF_CORE=y
48676 -CONFIG_COMPAT_BRK=y
48677 -CONFIG_BASE_FULL=y
48678 -CONFIG_FUTEX=y
48679 -CONFIG_ANON_INODES=y
48680 -CONFIG_EPOLL=y
48681 -CONFIG_SIGNALFD=y
48682 -CONFIG_TIMERFD=y
48683 -CONFIG_EVENTFD=y
48684 -CONFIG_SHMEM=y
48685 -CONFIG_VM_EVENT_COUNTERS=y
48686 -CONFIG_SLUB_DEBUG=y
48687 -# CONFIG_SLAB is not set
48688 -CONFIG_SLUB=y
48689 -# CONFIG_SLOB is not set
48690 -# CONFIG_PROFILING is not set
48691 -# CONFIG_MARKERS is not set
48692 -CONFIG_HAVE_OPROFILE=y
48693 -# CONFIG_KPROBES is not set
48694 -CONFIG_HAVE_KPROBES=y
48695 -CONFIG_PROC_PAGE_MONITOR=y
48696 -CONFIG_SLABINFO=y
48697 -CONFIG_RT_MUTEXES=y
48698 -# CONFIG_TINY_SHMEM is not set
48699 -CONFIG_BASE_SMALL=0
48700 -CONFIG_MODULES=y
48701 -CONFIG_MODULE_UNLOAD=y
48702 -# CONFIG_MODULE_FORCE_UNLOAD is not set
48703 -# CONFIG_MODVERSIONS is not set
48704 -# CONFIG_MODULE_SRCVERSION_ALL is not set
48705 -CONFIG_KMOD=y
48706 -CONFIG_BLOCK=y
48707 -CONFIG_LBD=y
48708 -# CONFIG_BLK_DEV_IO_TRACE is not set
48709 -# CONFIG_LSF is not set
48710 -# CONFIG_BLK_DEV_BSG is not set
48711 -
48712 -#
48713 -# IO Schedulers
48714 -#
48715 -CONFIG_IOSCHED_NOOP=y
48716 -CONFIG_IOSCHED_AS=y
48717 -CONFIG_IOSCHED_DEADLINE=y
48718 -CONFIG_IOSCHED_CFQ=y
48719 -CONFIG_DEFAULT_AS=y
48720 -# CONFIG_DEFAULT_DEADLINE is not set
48721 -# CONFIG_DEFAULT_CFQ is not set
48722 -# CONFIG_DEFAULT_NOOP is not set
48723 -CONFIG_DEFAULT_IOSCHED="anticipatory"
48724 -CONFIG_CLASSIC_RCU=y
48725 -# CONFIG_PREEMPT_RCU is not set
48726 -# CONFIG_PPC4xx_PCI_EXPRESS is not set
48727 -
48728 -#
48729 -# Platform support
48730 -#
48731 -# CONFIG_PPC_MPC512x is not set
48732 -# CONFIG_PPC_MPC5121 is not set
48733 -# CONFIG_PPC_CELL is not set
48734 -# CONFIG_PPC_CELL_NATIVE is not set
48735 -# CONFIG_PQ2ADS is not set
48736 -CONFIG_BAMBOO=y
48737 -# CONFIG_EBONY is not set
48738 -# CONFIG_SEQUOIA is not set
48739 -# CONFIG_TAISHAN is not set
48740 -# CONFIG_KATMAI is not set
48741 -# CONFIG_RAINIER is not set
48742 -# CONFIG_WARP is not set
48743 -CONFIG_440EP=y
48744 -CONFIG_IBM440EP_ERR42=y
48745 -# CONFIG_IPIC is not set
48746 -# CONFIG_MPIC is not set
48747 -# CONFIG_MPIC_WEIRD is not set
48748 -# CONFIG_PPC_I8259 is not set
48749 -# CONFIG_PPC_RTAS is not set
48750 -# CONFIG_MMIO_NVRAM is not set
48751 -# CONFIG_PPC_MPC106 is not set
48752 -# CONFIG_PPC_970_NAP is not set
48753 -# CONFIG_PPC_INDIRECT_IO is not set
48754 -# CONFIG_GENERIC_IOMAP is not set
48755 -# CONFIG_CPU_FREQ is not set
48756 -# CONFIG_FSL_ULI1575 is not set
48757 -
48758 -#
48759 -# Kernel options
48760 -#
48761 -# CONFIG_HIGHMEM is not set
48762 -# CONFIG_TICK_ONESHOT is not set
48763 -# CONFIG_NO_HZ is not set
48764 -# CONFIG_HIGH_RES_TIMERS is not set
48765 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
48766 -# CONFIG_HZ_100 is not set
48767 -CONFIG_HZ_250=y
48768 -# CONFIG_HZ_300 is not set
48769 -# CONFIG_HZ_1000 is not set
48770 -CONFIG_HZ=250
48771 -# CONFIG_SCHED_HRTICK is not set
48772 -CONFIG_PREEMPT_NONE=y
48773 -# CONFIG_PREEMPT_VOLUNTARY is not set
48774 -# CONFIG_PREEMPT is not set
48775 -CONFIG_RCU_TRACE=y
48776 -CONFIG_BINFMT_ELF=y
48777 -# CONFIG_BINFMT_MISC is not set
48778 -# CONFIG_MATH_EMULATION is not set
48779 -# CONFIG_IOMMU_HELPER is not set
48780 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
48781 -CONFIG_ARCH_HAS_WALK_MEMORY=y
48782 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
48783 -CONFIG_ARCH_FLATMEM_ENABLE=y
48784 -CONFIG_ARCH_POPULATES_NODE_MAP=y
48785 -CONFIG_SELECT_MEMORY_MODEL=y
48786 -CONFIG_FLATMEM_MANUAL=y
48787 -# CONFIG_DISCONTIGMEM_MANUAL is not set
48788 -# CONFIG_SPARSEMEM_MANUAL is not set
48789 -CONFIG_FLATMEM=y
48790 -CONFIG_FLAT_NODE_MEM_MAP=y
48791 -# CONFIG_SPARSEMEM_STATIC is not set
48792 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
48793 -CONFIG_SPLIT_PTLOCK_CPUS=4
48794 -CONFIG_RESOURCES_64BIT=y
48795 -CONFIG_ZONE_DMA_FLAG=1
48796 -CONFIG_BOUNCE=y
48797 -CONFIG_VIRT_TO_BUS=y
48798 -CONFIG_PROC_DEVICETREE=y
48799 -CONFIG_CMDLINE_BOOL=y
48800 -CONFIG_CMDLINE=""
48801 -CONFIG_SECCOMP=y
48802 -CONFIG_ISA_DMA_API=y
48803 -
48804 -#
48805 -# Bus options
48806 -#
48807 -CONFIG_ZONE_DMA=y
48808 -CONFIG_PPC_INDIRECT_PCI=y
48809 -CONFIG_PCI=y
48810 -CONFIG_PCI_DOMAINS=y
48811 -CONFIG_PCI_SYSCALL=y
48812 -# CONFIG_PCIEPORTBUS is not set
48813 -CONFIG_ARCH_SUPPORTS_MSI=y
48814 -# CONFIG_PCI_MSI is not set
48815 -CONFIG_PCI_LEGACY=y
48816 -# CONFIG_PCI_DEBUG is not set
48817 -# CONFIG_PCCARD is not set
48818 -# CONFIG_HOTPLUG_PCI is not set
48819 -
48820 -#
48821 -# Advanced setup
48822 -#
48823 -# CONFIG_ADVANCED_OPTIONS is not set
48824 -
48825 -#
48826 -# Default settings for advanced configuration options are used
48827 -#
48828 -CONFIG_HIGHMEM_START=0xfe000000
48829 -CONFIG_LOWMEM_SIZE=0x30000000
48830 -CONFIG_KERNEL_START=0xc0000000
48831 -CONFIG_TASK_SIZE=0xc0000000
48832 -CONFIG_CONSISTENT_START=0xff100000
48833 -CONFIG_CONSISTENT_SIZE=0x00200000
48834 -CONFIG_BOOT_LOAD=0x01000000
48835 -
48836 -#
48837 -# Networking
48838 -#
48839 -CONFIG_NET=y
48840 -
48841 -#
48842 -# Networking options
48843 -#
48844 -CONFIG_PACKET=y
48845 -# CONFIG_PACKET_MMAP is not set
48846 -CONFIG_UNIX=y
48847 -# CONFIG_NET_KEY is not set
48848 -CONFIG_INET=y
48849 -# CONFIG_IP_MULTICAST is not set
48850 -# CONFIG_IP_ADVANCED_ROUTER is not set
48851 -CONFIG_IP_FIB_HASH=y
48852 -CONFIG_IP_PNP=y
48853 -CONFIG_IP_PNP_DHCP=y
48854 -CONFIG_IP_PNP_BOOTP=y
48855 -# CONFIG_IP_PNP_RARP is not set
48856 -# CONFIG_NET_IPIP is not set
48857 -# CONFIG_NET_IPGRE is not set
48858 -# CONFIG_ARPD is not set
48859 -# CONFIG_SYN_COOKIES is not set
48860 -# CONFIG_INET_AH is not set
48861 -# CONFIG_INET_ESP is not set
48862 -# CONFIG_INET_IPCOMP is not set
48863 -# CONFIG_INET_XFRM_TUNNEL is not set
48864 -# CONFIG_INET_TUNNEL is not set
48865 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
48866 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
48867 -# CONFIG_INET_XFRM_MODE_BEET is not set
48868 -# CONFIG_INET_LRO is not set
48869 -CONFIG_INET_DIAG=y
48870 -CONFIG_INET_TCP_DIAG=y
48871 -# CONFIG_TCP_CONG_ADVANCED is not set
48872 -CONFIG_TCP_CONG_CUBIC=y
48873 -CONFIG_DEFAULT_TCP_CONG="cubic"
48874 -# CONFIG_TCP_MD5SIG is not set
48875 -# CONFIG_IPV6 is not set
48876 -# CONFIG_INET6_XFRM_TUNNEL is not set
48877 -# CONFIG_INET6_TUNNEL is not set
48878 -# CONFIG_NETWORK_SECMARK is not set
48879 -# CONFIG_NETFILTER is not set
48880 -# CONFIG_IP_DCCP is not set
48881 -# CONFIG_IP_SCTP is not set
48882 -# CONFIG_TIPC is not set
48883 -# CONFIG_ATM is not set
48884 -# CONFIG_BRIDGE is not set
48885 -# CONFIG_VLAN_8021Q is not set
48886 -# CONFIG_DECNET is not set
48887 -# CONFIG_LLC2 is not set
48888 -# CONFIG_IPX is not set
48889 -# CONFIG_ATALK is not set
48890 -# CONFIG_X25 is not set
48891 -# CONFIG_LAPB is not set
48892 -# CONFIG_ECONET is not set
48893 -# CONFIG_WAN_ROUTER is not set
48894 -# CONFIG_NET_SCHED is not set
48895 -
48896 -#
48897 -# Network testing
48898 -#
48899 -# CONFIG_NET_PKTGEN is not set
48900 -# CONFIG_HAMRADIO is not set
48901 -# CONFIG_CAN is not set
48902 -# CONFIG_IRDA is not set
48903 -# CONFIG_BT is not set
48904 -# CONFIG_AF_RXRPC is not set
48905 -
48906 -#
48907 -# Wireless
48908 -#
48909 -# CONFIG_CFG80211 is not set
48910 -# CONFIG_WIRELESS_EXT is not set
48911 -# CONFIG_MAC80211 is not set
48912 -# CONFIG_IEEE80211 is not set
48913 -# CONFIG_RFKILL is not set
48914 -# CONFIG_NET_9P is not set
48915 -
48916 -#
48917 -# Device Drivers
48918 -#
48919 -
48920 -#
48921 -# Generic Driver Options
48922 -#
48923 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
48924 -CONFIG_STANDALONE=y
48925 -CONFIG_PREVENT_FIRMWARE_BUILD=y
48926 -CONFIG_FW_LOADER=y
48927 -# CONFIG_DEBUG_DRIVER is not set
48928 -# CONFIG_DEBUG_DEVRES is not set
48929 -# CONFIG_SYS_HYPERVISOR is not set
48930 -CONFIG_CONNECTOR=y
48931 -CONFIG_PROC_EVENTS=y
48932 -# CONFIG_MTD is not set
48933 -CONFIG_OF_DEVICE=y
48934 -# CONFIG_PARPORT is not set
48935 -CONFIG_BLK_DEV=y
48936 -# CONFIG_BLK_DEV_FD is not set
48937 -# CONFIG_BLK_CPQ_DA is not set
48938 -# CONFIG_BLK_CPQ_CISS_DA is not set
48939 -# CONFIG_BLK_DEV_DAC960 is not set
48940 -# CONFIG_BLK_DEV_UMEM is not set
48941 -# CONFIG_BLK_DEV_COW_COMMON is not set
48942 -# CONFIG_BLK_DEV_LOOP is not set
48943 -# CONFIG_BLK_DEV_NBD is not set
48944 -# CONFIG_BLK_DEV_SX8 is not set
48945 -CONFIG_BLK_DEV_RAM=y
48946 -CONFIG_BLK_DEV_RAM_COUNT=16
48947 -CONFIG_BLK_DEV_RAM_SIZE=35000
48948 -# CONFIG_BLK_DEV_XIP is not set
48949 -# CONFIG_CDROM_PKTCDVD is not set
48950 -# CONFIG_ATA_OVER_ETH is not set
48951 -# CONFIG_XILINX_SYSACE is not set
48952 -CONFIG_MISC_DEVICES=y
48953 -# CONFIG_PHANTOM is not set
48954 -# CONFIG_EEPROM_93CX6 is not set
48955 -# CONFIG_SGI_IOC4 is not set
48956 -# CONFIG_TIFM_CORE is not set
48957 -# CONFIG_ENCLOSURE_SERVICES is not set
48958 -CONFIG_HAVE_IDE=y
48959 -# CONFIG_IDE is not set
48960 -
48961 -#
48962 -# SCSI device support
48963 -#
48964 -# CONFIG_RAID_ATTRS is not set
48965 -# CONFIG_SCSI is not set
48966 -# CONFIG_SCSI_DMA is not set
48967 -# CONFIG_SCSI_NETLINK is not set
48968 -# CONFIG_ATA is not set
48969 -# CONFIG_MD is not set
48970 -# CONFIG_FUSION is not set
48971 -
48972 -#
48973 -# IEEE 1394 (FireWire) support
48974 -#
48975 -# CONFIG_FIREWIRE is not set
48976 -# CONFIG_IEEE1394 is not set
48977 -# CONFIG_I2O is not set
48978 -# CONFIG_MACINTOSH_DRIVERS is not set
48979 -CONFIG_NETDEVICES=y
48980 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
48981 -# CONFIG_DUMMY is not set
48982 -# CONFIG_BONDING is not set
48983 -# CONFIG_MACVLAN is not set
48984 -# CONFIG_EQUALIZER is not set
48985 -# CONFIG_TUN is not set
48986 -# CONFIG_VETH is not set
48987 -# CONFIG_ARCNET is not set
48988 -# CONFIG_PHYLIB is not set
48989 -CONFIG_NET_ETHERNET=y
48990 -# CONFIG_MII is not set
48991 -# CONFIG_HAPPYMEAL is not set
48992 -# CONFIG_SUNGEM is not set
48993 -# CONFIG_CASSINI is not set
48994 -# CONFIG_NET_VENDOR_3COM is not set
48995 -# CONFIG_NET_TULIP is not set
48996 -# CONFIG_HP100 is not set
48997 -CONFIG_IBM_NEW_EMAC=y
48998 -CONFIG_IBM_NEW_EMAC_RXB=128
48999 -CONFIG_IBM_NEW_EMAC_TXB=64
49000 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
49001 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
49002 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
49003 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
49004 -CONFIG_IBM_NEW_EMAC_ZMII=y
49005 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
49006 -# CONFIG_IBM_NEW_EMAC_TAH is not set
49007 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
49008 -# CONFIG_NET_PCI is not set
49009 -# CONFIG_B44 is not set
49010 -CONFIG_NETDEV_1000=y
49011 -# CONFIG_ACENIC is not set
49012 -# CONFIG_DL2K is not set
49013 -# CONFIG_E1000 is not set
49014 -# CONFIG_E1000E is not set
49015 -# CONFIG_E1000E_ENABLED is not set
49016 -# CONFIG_IP1000 is not set
49017 -# CONFIG_IGB is not set
49018 -# CONFIG_NS83820 is not set
49019 -# CONFIG_HAMACHI is not set
49020 -# CONFIG_YELLOWFIN is not set
49021 -# CONFIG_R8169 is not set
49022 -# CONFIG_SIS190 is not set
49023 -# CONFIG_SKGE is not set
49024 -# CONFIG_SKY2 is not set
49025 -# CONFIG_SK98LIN is not set
49026 -# CONFIG_VIA_VELOCITY is not set
49027 -# CONFIG_TIGON3 is not set
49028 -# CONFIG_BNX2 is not set
49029 -# CONFIG_QLA3XXX is not set
49030 -# CONFIG_ATL1 is not set
49031 -CONFIG_NETDEV_10000=y
49032 -# CONFIG_CHELSIO_T1 is not set
49033 -# CONFIG_CHELSIO_T3 is not set
49034 -# CONFIG_IXGBE is not set
49035 -# CONFIG_IXGB is not set
49036 -# CONFIG_S2IO is not set
49037 -# CONFIG_MYRI10GE is not set
49038 -# CONFIG_NETXEN_NIC is not set
49039 -# CONFIG_NIU is not set
49040 -# CONFIG_MLX4_CORE is not set
49041 -# CONFIG_TEHUTI is not set
49042 -# CONFIG_BNX2X is not set
49043 -# CONFIG_TR is not set
49044 -
49045 -#
49046 -# Wireless LAN
49047 -#
49048 -# CONFIG_WLAN_PRE80211 is not set
49049 -# CONFIG_WLAN_80211 is not set
49050 -# CONFIG_WAN is not set
49051 -# CONFIG_FDDI is not set
49052 -# CONFIG_HIPPI is not set
49053 -# CONFIG_PPP is not set
49054 -# CONFIG_SLIP is not set
49055 -# CONFIG_NETCONSOLE is not set
49056 -# CONFIG_NETPOLL is not set
49057 -# CONFIG_NET_POLL_CONTROLLER is not set
49058 -# CONFIG_ISDN is not set
49059 -# CONFIG_PHONE is not set
49060 -
49061 -#
49062 -# Input device support
49063 -#
49064 -# CONFIG_INPUT is not set
49065 -
49066 -#
49067 -# Hardware I/O ports
49068 -#
49069 -# CONFIG_SERIO is not set
49070 -# CONFIG_GAMEPORT is not set
49071 -
49072 -#
49073 -# Character devices
49074 -#
49075 -# CONFIG_VT is not set
49076 -# CONFIG_SERIAL_NONSTANDARD is not set
49077 -# CONFIG_NOZOMI is not set
49078 -
49079 -#
49080 -# Serial drivers
49081 -#
49082 -CONFIG_SERIAL_8250=y
49083 -CONFIG_SERIAL_8250_CONSOLE=y
49084 -# CONFIG_SERIAL_8250_PCI is not set
49085 -CONFIG_SERIAL_8250_NR_UARTS=4
49086 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
49087 -CONFIG_SERIAL_8250_EXTENDED=y
49088 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
49089 -CONFIG_SERIAL_8250_SHARE_IRQ=y
49090 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
49091 -# CONFIG_SERIAL_8250_RSA is not set
49092 -
49093 -#
49094 -# Non-8250 serial port support
49095 -#
49096 -# CONFIG_SERIAL_UARTLITE is not set
49097 -CONFIG_SERIAL_CORE=y
49098 -CONFIG_SERIAL_CORE_CONSOLE=y
49099 -# CONFIG_SERIAL_JSM is not set
49100 -CONFIG_SERIAL_OF_PLATFORM=y
49101 -CONFIG_UNIX98_PTYS=y
49102 -CONFIG_LEGACY_PTYS=y
49103 -CONFIG_LEGACY_PTY_COUNT=256
49104 -# CONFIG_IPMI_HANDLER is not set
49105 -# CONFIG_HW_RANDOM is not set
49106 -# CONFIG_NVRAM is not set
49107 -# CONFIG_GEN_RTC is not set
49108 -# CONFIG_R3964 is not set
49109 -# CONFIG_APPLICOM is not set
49110 -# CONFIG_RAW_DRIVER is not set
49111 -# CONFIG_TCG_TPM is not set
49112 -CONFIG_DEVPORT=y
49113 -# CONFIG_I2C is not set
49114 -
49115 -#
49116 -# SPI support
49117 -#
49118 -# CONFIG_SPI is not set
49119 -# CONFIG_SPI_MASTER is not set
49120 -# CONFIG_W1 is not set
49121 -# CONFIG_POWER_SUPPLY is not set
49122 -# CONFIG_HWMON is not set
49123 -CONFIG_THERMAL=y
49124 -# CONFIG_WATCHDOG is not set
49125 -
49126 -#
49127 -# Sonics Silicon Backplane
49128 -#
49129 -CONFIG_SSB_POSSIBLE=y
49130 -# CONFIG_SSB is not set
49131 -
49132 -#
49133 -# Multifunction device drivers
49134 -#
49135 -# CONFIG_MFD_SM501 is not set
49136 -
49137 -#
49138 -# Multimedia devices
49139 -#
49140 -# CONFIG_VIDEO_DEV is not set
49141 -# CONFIG_DVB_CORE is not set
49142 -CONFIG_DAB=y
49143 -
49144 -#
49145 -# Graphics support
49146 -#
49147 -# CONFIG_AGP is not set
49148 -# CONFIG_DRM is not set
49149 -# CONFIG_VGASTATE is not set
49150 -CONFIG_VIDEO_OUTPUT_CONTROL=m
49151 -# CONFIG_FB is not set
49152 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
49153 -
49154 -#
49155 -# Display device support
49156 -#
49157 -# CONFIG_DISPLAY_SUPPORT is not set
49158 -
49159 -#
49160 -# Sound
49161 -#
49162 -# CONFIG_SOUND is not set
49163 -CONFIG_USB_SUPPORT=y
49164 -CONFIG_USB_ARCH_HAS_HCD=y
49165 -CONFIG_USB_ARCH_HAS_OHCI=y
49166 -CONFIG_USB_ARCH_HAS_EHCI=y
49167 -# CONFIG_USB is not set
49168 -
49169 -#
49170 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
49171 -#
49172 -# CONFIG_USB_GADGET is not set
49173 -# CONFIG_MMC is not set
49174 -# CONFIG_MEMSTICK is not set
49175 -# CONFIG_NEW_LEDS is not set
49176 -# CONFIG_INFINIBAND is not set
49177 -# CONFIG_EDAC is not set
49178 -# CONFIG_RTC_CLASS is not set
49179 -
49180 -#
49181 -# Userspace I/O
49182 -#
49183 -# CONFIG_UIO is not set
49184 -
49185 -#
49186 -# File systems
49187 -#
49188 -CONFIG_EXT2_FS=y
49189 -# CONFIG_EXT2_FS_XATTR is not set
49190 -# CONFIG_EXT2_FS_XIP is not set
49191 -# CONFIG_EXT3_FS is not set
49192 -# CONFIG_EXT4DEV_FS is not set
49193 -# CONFIG_REISERFS_FS is not set
49194 -# CONFIG_JFS_FS is not set
49195 -# CONFIG_FS_POSIX_ACL is not set
49196 -# CONFIG_XFS_FS is not set
49197 -# CONFIG_GFS2_FS is not set
49198 -# CONFIG_OCFS2_FS is not set
49199 -CONFIG_DNOTIFY=y
49200 -CONFIG_INOTIFY=y
49201 -CONFIG_INOTIFY_USER=y
49202 -# CONFIG_QUOTA is not set
49203 -# CONFIG_AUTOFS_FS is not set
49204 -# CONFIG_AUTOFS4_FS is not set
49205 -# CONFIG_FUSE_FS is not set
49206 -
49207 -#
49208 -# CD-ROM/DVD Filesystems
49209 -#
49210 -# CONFIG_ISO9660_FS is not set
49211 -# CONFIG_UDF_FS is not set
49212 -
49213 -#
49214 -# DOS/FAT/NT Filesystems
49215 -#
49216 -# CONFIG_MSDOS_FS is not set
49217 -# CONFIG_VFAT_FS is not set
49218 -# CONFIG_NTFS_FS is not set
49219 -
49220 -#
49221 -# Pseudo filesystems
49222 -#
49223 -CONFIG_PROC_FS=y
49224 -CONFIG_PROC_KCORE=y
49225 -CONFIG_PROC_SYSCTL=y
49226 -CONFIG_SYSFS=y
49227 -CONFIG_TMPFS=y
49228 -# CONFIG_TMPFS_POSIX_ACL is not set
49229 -# CONFIG_HUGETLB_PAGE is not set
49230 -# CONFIG_CONFIGFS_FS is not set
49231 -
49232 -#
49233 -# Miscellaneous filesystems
49234 -#
49235 -# CONFIG_ADFS_FS is not set
49236 -# CONFIG_AFFS_FS is not set
49237 -# CONFIG_HFS_FS is not set
49238 -# CONFIG_HFSPLUS_FS is not set
49239 -# CONFIG_BEFS_FS is not set
49240 -# CONFIG_BFS_FS is not set
49241 -# CONFIG_EFS_FS is not set
49242 -CONFIG_CRAMFS=y
49243 -# CONFIG_VXFS_FS is not set
49244 -# CONFIG_MINIX_FS is not set
49245 -# CONFIG_HPFS_FS is not set
49246 -# CONFIG_QNX4FS_FS is not set
49247 -# CONFIG_ROMFS_FS is not set
49248 -# CONFIG_SYSV_FS is not set
49249 -# CONFIG_UFS_FS is not set
49250 -CONFIG_NETWORK_FILESYSTEMS=y
49251 -CONFIG_NFS_FS=y
49252 -CONFIG_NFS_V3=y
49253 -# CONFIG_NFS_V3_ACL is not set
49254 -# CONFIG_NFS_V4 is not set
49255 -# CONFIG_NFS_DIRECTIO is not set
49256 -# CONFIG_NFSD is not set
49257 -CONFIG_ROOT_NFS=y
49258 -CONFIG_LOCKD=y
49259 -CONFIG_LOCKD_V4=y
49260 -CONFIG_NFS_COMMON=y
49261 -CONFIG_SUNRPC=y
49262 -# CONFIG_SUNRPC_BIND34 is not set
49263 -# CONFIG_RPCSEC_GSS_KRB5 is not set
49264 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
49265 -# CONFIG_SMB_FS is not set
49266 -# CONFIG_CIFS is not set
49267 -# CONFIG_NCP_FS is not set
49268 -# CONFIG_CODA_FS is not set
49269 -# CONFIG_AFS_FS is not set
49270 -
49271 -#
49272 -# Partition Types
49273 -#
49274 -# CONFIG_PARTITION_ADVANCED is not set
49275 -CONFIG_MSDOS_PARTITION=y
49276 -# CONFIG_NLS is not set
49277 -# CONFIG_DLM is not set
49278 -
49279 -#
49280 -# Library routines
49281 -#
49282 -CONFIG_BITREVERSE=y
49283 -# CONFIG_CRC_CCITT is not set
49284 -# CONFIG_CRC16 is not set
49285 -# CONFIG_CRC_ITU_T is not set
49286 -CONFIG_CRC32=y
49287 -# CONFIG_CRC7 is not set
49288 -# CONFIG_LIBCRC32C is not set
49289 -CONFIG_ZLIB_INFLATE=y
49290 -CONFIG_PLIST=y
49291 -CONFIG_HAS_IOMEM=y
49292 -CONFIG_HAS_IOPORT=y
49293 -CONFIG_HAS_DMA=y
49294 -
49295 -#
49296 -# Kernel hacking
49297 -#
49298 -# CONFIG_PRINTK_TIME is not set
49299 -CONFIG_ENABLE_WARN_DEPRECATED=y
49300 -CONFIG_ENABLE_MUST_CHECK=y
49301 -CONFIG_MAGIC_SYSRQ=y
49302 -# CONFIG_UNUSED_SYMBOLS is not set
49303 -CONFIG_DEBUG_FS=y
49304 -# CONFIG_HEADERS_CHECK is not set
49305 -CONFIG_DEBUG_KERNEL=y
49306 -# CONFIG_DEBUG_SHIRQ is not set
49307 -CONFIG_DETECT_SOFTLOCKUP=y
49308 -CONFIG_SCHED_DEBUG=y
49309 -# CONFIG_SCHEDSTATS is not set
49310 -# CONFIG_TIMER_STATS is not set
49311 -# CONFIG_SLUB_DEBUG_ON is not set
49312 -# CONFIG_SLUB_STATS is not set
49313 -# CONFIG_DEBUG_RT_MUTEXES is not set
49314 -# CONFIG_RT_MUTEX_TESTER is not set
49315 -# CONFIG_DEBUG_SPINLOCK is not set
49316 -# CONFIG_DEBUG_MUTEXES is not set
49317 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
49318 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
49319 -# CONFIG_DEBUG_KOBJECT is not set
49320 -# CONFIG_DEBUG_BUGVERBOSE is not set
49321 -# CONFIG_DEBUG_INFO is not set
49322 -# CONFIG_DEBUG_VM is not set
49323 -# CONFIG_DEBUG_LIST is not set
49324 -# CONFIG_DEBUG_SG is not set
49325 -# CONFIG_BOOT_PRINTK_DELAY is not set
49326 -# CONFIG_RCU_TORTURE_TEST is not set
49327 -# CONFIG_BACKTRACE_SELF_TEST is not set
49328 -# CONFIG_FAULT_INJECTION is not set
49329 -# CONFIG_SAMPLES is not set
49330 -# CONFIG_DEBUG_STACKOVERFLOW is not set
49331 -# CONFIG_DEBUG_STACK_USAGE is not set
49332 -# CONFIG_DEBUG_PAGEALLOC is not set
49333 -CONFIG_DEBUGGER=y
49334 -# CONFIG_KGDB is not set
49335 -# CONFIG_XMON is not set
49336 -# CONFIG_VIRQ_DEBUG is not set
49337 -# CONFIG_BDI_SWITCH is not set
49338 -# CONFIG_PPC_EARLY_DEBUG is not set
49339 -
49340 -#
49341 -# Security options
49342 -#
49343 -# CONFIG_KEYS is not set
49344 -# CONFIG_SECURITY is not set
49345 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
49346 -CONFIG_CRYPTO=y
49347 -CONFIG_CRYPTO_ALGAPI=y
49348 -CONFIG_CRYPTO_BLKCIPHER=y
49349 -# CONFIG_CRYPTO_SEQIV is not set
49350 -CONFIG_CRYPTO_MANAGER=y
49351 -# CONFIG_CRYPTO_HMAC is not set
49352 -# CONFIG_CRYPTO_XCBC is not set
49353 -# CONFIG_CRYPTO_NULL is not set
49354 -# CONFIG_CRYPTO_MD4 is not set
49355 -CONFIG_CRYPTO_MD5=y
49356 -# CONFIG_CRYPTO_SHA1 is not set
49357 -# CONFIG_CRYPTO_SHA256 is not set
49358 -# CONFIG_CRYPTO_SHA512 is not set
49359 -# CONFIG_CRYPTO_WP512 is not set
49360 -# CONFIG_CRYPTO_TGR192 is not set
49361 -# CONFIG_CRYPTO_GF128MUL is not set
49362 -CONFIG_CRYPTO_ECB=y
49363 -CONFIG_CRYPTO_CBC=y
49364 -CONFIG_CRYPTO_PCBC=y
49365 -# CONFIG_CRYPTO_LRW is not set
49366 -# CONFIG_CRYPTO_XTS is not set
49367 -# CONFIG_CRYPTO_CTR is not set
49368 -# CONFIG_CRYPTO_GCM is not set
49369 -# CONFIG_CRYPTO_CCM is not set
49370 -# CONFIG_CRYPTO_CRYPTD is not set
49371 -CONFIG_CRYPTO_DES=y
49372 -# CONFIG_CRYPTO_FCRYPT is not set
49373 -# CONFIG_CRYPTO_BLOWFISH is not set
49374 -# CONFIG_CRYPTO_TWOFISH is not set
49375 -# CONFIG_CRYPTO_SERPENT is not set
49376 -# CONFIG_CRYPTO_AES is not set
49377 -# CONFIG_CRYPTO_CAST5 is not set
49378 -# CONFIG_CRYPTO_CAST6 is not set
49379 -# CONFIG_CRYPTO_TEA is not set
49380 -# CONFIG_CRYPTO_ARC4 is not set
49381 -# CONFIG_CRYPTO_KHAZAD is not set
49382 -# CONFIG_CRYPTO_ANUBIS is not set
49383 -# CONFIG_CRYPTO_SEED is not set
49384 -# CONFIG_CRYPTO_SALSA20 is not set
49385 -# CONFIG_CRYPTO_DEFLATE is not set
49386 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
49387 -# CONFIG_CRYPTO_CRC32C is not set
49388 -# CONFIG_CRYPTO_CAMELLIA is not set
49389 -# CONFIG_CRYPTO_TEST is not set
49390 -# CONFIG_CRYPTO_AUTHENC is not set
49391 -# CONFIG_CRYPTO_LZO is not set
49392 -CONFIG_CRYPTO_HW=y
49393 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
49394 -# CONFIG_PPC_CLOCK is not set
49395 Index: linux-2.6.25.4/arch/powerpc/configs/chrp32_defconfig
49396 ===================================================================
49397 --- linux-2.6.25.4.orig/arch/powerpc/configs/chrp32_defconfig
49398 +++ linux-2.6.25.4/arch/powerpc/configs/chrp32_defconfig
49399 @@ -1,7 +1,7 @@
49400 #
49401 # Automatically generated make config: don't edit
49402 # Linux kernel version: 2.6.25-rc6
49403 -# Thu Mar 20 10:33:36 2008
49404 +# Thu Mar 27 13:55:37 2008
49405 #
49406 # CONFIG_PPC64 is not set
49407
49408 @@ -74,8 +74,6 @@ CONFIG_IKCONFIG_PROC=y
49409 CONFIG_LOG_BUF_SHIFT=15
49410 # CONFIG_CGROUPS is not set
49411 # CONFIG_GROUP_SCHED is not set
49412 -# CONFIG_USER_SCHED is not set
49413 -# CONFIG_CGROUP_SCHED is not set
49414 CONFIG_SYSFS_DEPRECATED=y
49415 CONFIG_SYSFS_DEPRECATED_V2=y
49416 # CONFIG_RELAY is not set
49417 @@ -243,7 +241,7 @@ CONFIG_PCI_SYSCALL=y
49418 # CONFIG_PCIEPORTBUS is not set
49419 CONFIG_ARCH_SUPPORTS_MSI=y
49420 # CONFIG_PCI_MSI is not set
49421 -CONFIG_PCI_LEGACY=y
49422 +# CONFIG_PCI_LEGACY is not set
49423 # CONFIG_PCI_DEBUG is not set
49424 # CONFIG_PCCARD is not set
49425 # CONFIG_HOTPLUG_PCI is not set
49426 @@ -1328,6 +1326,7 @@ CONFIG_PLIST=y
49427 CONFIG_HAS_IOMEM=y
49428 CONFIG_HAS_IOPORT=y
49429 CONFIG_HAS_DMA=y
49430 +CONFIG_HAVE_LMB=y
49431
49432 #
49433 # Kernel hacking
49434 Index: linux-2.6.25.4/arch/powerpc/configs/ebony_defconfig
49435 ===================================================================
49436 --- linux-2.6.25.4.orig/arch/powerpc/configs/ebony_defconfig
49437 +++ /dev/null
49438 @@ -1,898 +0,0 @@
49439 -#
49440 -# Automatically generated make config: don't edit
49441 -# Linux kernel version: 2.6.25-rc2
49442 -# Fri Feb 15 21:50:44 2008
49443 -#
49444 -# CONFIG_PPC64 is not set
49445 -
49446 -#
49447 -# Processor support
49448 -#
49449 -# CONFIG_6xx is not set
49450 -# CONFIG_PPC_85xx is not set
49451 -# CONFIG_PPC_8xx is not set
49452 -# CONFIG_40x is not set
49453 -CONFIG_44x=y
49454 -# CONFIG_E200 is not set
49455 -CONFIG_4xx=y
49456 -CONFIG_BOOKE=y
49457 -CONFIG_PTE_64BIT=y
49458 -CONFIG_PHYS_64BIT=y
49459 -# CONFIG_PPC_MM_SLICES is not set
49460 -CONFIG_NOT_COHERENT_CACHE=y
49461 -CONFIG_PPC32=y
49462 -CONFIG_WORD_SIZE=32
49463 -CONFIG_PPC_MERGE=y
49464 -CONFIG_MMU=y
49465 -CONFIG_GENERIC_CMOS_UPDATE=y
49466 -CONFIG_GENERIC_TIME=y
49467 -CONFIG_GENERIC_TIME_VSYSCALL=y
49468 -CONFIG_GENERIC_CLOCKEVENTS=y
49469 -CONFIG_GENERIC_HARDIRQS=y
49470 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
49471 -CONFIG_IRQ_PER_CPU=y
49472 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
49473 -CONFIG_ARCH_HAS_ILOG2_U32=y
49474 -CONFIG_GENERIC_HWEIGHT=y
49475 -CONFIG_GENERIC_CALIBRATE_DELAY=y
49476 -CONFIG_GENERIC_FIND_NEXT_BIT=y
49477 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
49478 -CONFIG_PPC=y
49479 -CONFIG_EARLY_PRINTK=y
49480 -CONFIG_GENERIC_NVRAM=y
49481 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
49482 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
49483 -CONFIG_PPC_OF=y
49484 -CONFIG_OF=y
49485 -CONFIG_PPC_UDBG_16550=y
49486 -# CONFIG_GENERIC_TBSYNC is not set
49487 -CONFIG_AUDIT_ARCH=y
49488 -CONFIG_GENERIC_BUG=y
49489 -# CONFIG_DEFAULT_UIMAGE is not set
49490 -CONFIG_PPC_DCR_NATIVE=y
49491 -# CONFIG_PPC_DCR_MMIO is not set
49492 -CONFIG_PPC_DCR=y
49493 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
49494 -
49495 -#
49496 -# General setup
49497 -#
49498 -CONFIG_EXPERIMENTAL=y
49499 -CONFIG_BROKEN_ON_SMP=y
49500 -CONFIG_INIT_ENV_ARG_LIMIT=32
49501 -CONFIG_LOCALVERSION=""
49502 -CONFIG_LOCALVERSION_AUTO=y
49503 -CONFIG_SWAP=y
49504 -CONFIG_SYSVIPC=y
49505 -CONFIG_SYSVIPC_SYSCTL=y
49506 -CONFIG_POSIX_MQUEUE=y
49507 -# CONFIG_BSD_PROCESS_ACCT is not set
49508 -# CONFIG_TASKSTATS is not set
49509 -# CONFIG_AUDIT is not set
49510 -# CONFIG_IKCONFIG is not set
49511 -CONFIG_LOG_BUF_SHIFT=14
49512 -# CONFIG_CGROUPS is not set
49513 -CONFIG_GROUP_SCHED=y
49514 -CONFIG_FAIR_GROUP_SCHED=y
49515 -# CONFIG_RT_GROUP_SCHED is not set
49516 -CONFIG_USER_SCHED=y
49517 -# CONFIG_CGROUP_SCHED is not set
49518 -CONFIG_SYSFS_DEPRECATED=y
49519 -# CONFIG_RELAY is not set
49520 -# CONFIG_NAMESPACES is not set
49521 -CONFIG_BLK_DEV_INITRD=y
49522 -CONFIG_INITRAMFS_SOURCE=""
49523 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
49524 -CONFIG_SYSCTL=y
49525 -CONFIG_EMBEDDED=y
49526 -CONFIG_SYSCTL_SYSCALL=y
49527 -CONFIG_KALLSYMS=y
49528 -CONFIG_KALLSYMS_ALL=y
49529 -CONFIG_KALLSYMS_EXTRA_PASS=y
49530 -CONFIG_HOTPLUG=y
49531 -CONFIG_PRINTK=y
49532 -CONFIG_BUG=y
49533 -CONFIG_ELF_CORE=y
49534 -CONFIG_COMPAT_BRK=y
49535 -CONFIG_BASE_FULL=y
49536 -CONFIG_FUTEX=y
49537 -CONFIG_ANON_INODES=y
49538 -CONFIG_EPOLL=y
49539 -CONFIG_SIGNALFD=y
49540 -CONFIG_TIMERFD=y
49541 -CONFIG_EVENTFD=y
49542 -CONFIG_SHMEM=y
49543 -CONFIG_VM_EVENT_COUNTERS=y
49544 -CONFIG_SLUB_DEBUG=y
49545 -# CONFIG_SLAB is not set
49546 -CONFIG_SLUB=y
49547 -# CONFIG_SLOB is not set
49548 -# CONFIG_PROFILING is not set
49549 -# CONFIG_MARKERS is not set
49550 -CONFIG_HAVE_OPROFILE=y
49551 -# CONFIG_KPROBES is not set
49552 -CONFIG_HAVE_KPROBES=y
49553 -CONFIG_PROC_PAGE_MONITOR=y
49554 -CONFIG_SLABINFO=y
49555 -CONFIG_RT_MUTEXES=y
49556 -# CONFIG_TINY_SHMEM is not set
49557 -CONFIG_BASE_SMALL=0
49558 -CONFIG_MODULES=y
49559 -CONFIG_MODULE_UNLOAD=y
49560 -# CONFIG_MODULE_FORCE_UNLOAD is not set
49561 -# CONFIG_MODVERSIONS is not set
49562 -# CONFIG_MODULE_SRCVERSION_ALL is not set
49563 -CONFIG_KMOD=y
49564 -CONFIG_BLOCK=y
49565 -CONFIG_LBD=y
49566 -# CONFIG_BLK_DEV_IO_TRACE is not set
49567 -# CONFIG_LSF is not set
49568 -# CONFIG_BLK_DEV_BSG is not set
49569 -
49570 -#
49571 -# IO Schedulers
49572 -#
49573 -CONFIG_IOSCHED_NOOP=y
49574 -CONFIG_IOSCHED_AS=y
49575 -CONFIG_IOSCHED_DEADLINE=y
49576 -CONFIG_IOSCHED_CFQ=y
49577 -CONFIG_DEFAULT_AS=y
49578 -# CONFIG_DEFAULT_DEADLINE is not set
49579 -# CONFIG_DEFAULT_CFQ is not set
49580 -# CONFIG_DEFAULT_NOOP is not set
49581 -CONFIG_DEFAULT_IOSCHED="anticipatory"
49582 -CONFIG_CLASSIC_RCU=y
49583 -# CONFIG_PREEMPT_RCU is not set
49584 -# CONFIG_PPC4xx_PCI_EXPRESS is not set
49585 -
49586 -#
49587 -# Platform support
49588 -#
49589 -# CONFIG_PPC_MPC512x is not set
49590 -# CONFIG_PPC_MPC5121 is not set
49591 -# CONFIG_PPC_CELL is not set
49592 -# CONFIG_PPC_CELL_NATIVE is not set
49593 -# CONFIG_PQ2ADS is not set
49594 -# CONFIG_BAMBOO is not set
49595 -CONFIG_EBONY=y
49596 -# CONFIG_SEQUOIA is not set
49597 -# CONFIG_TAISHAN is not set
49598 -# CONFIG_KATMAI is not set
49599 -# CONFIG_RAINIER is not set
49600 -# CONFIG_WARP is not set
49601 -CONFIG_440GP=y
49602 -# CONFIG_IPIC is not set
49603 -# CONFIG_MPIC is not set
49604 -# CONFIG_MPIC_WEIRD is not set
49605 -# CONFIG_PPC_I8259 is not set
49606 -# CONFIG_PPC_RTAS is not set
49607 -# CONFIG_MMIO_NVRAM is not set
49608 -# CONFIG_PPC_MPC106 is not set
49609 -# CONFIG_PPC_970_NAP is not set
49610 -# CONFIG_PPC_INDIRECT_IO is not set
49611 -# CONFIG_GENERIC_IOMAP is not set
49612 -# CONFIG_CPU_FREQ is not set
49613 -# CONFIG_FSL_ULI1575 is not set
49614 -CONFIG_OF_RTC=y
49615 -
49616 -#
49617 -# Kernel options
49618 -#
49619 -# CONFIG_HIGHMEM is not set
49620 -# CONFIG_TICK_ONESHOT is not set
49621 -# CONFIG_NO_HZ is not set
49622 -# CONFIG_HIGH_RES_TIMERS is not set
49623 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
49624 -# CONFIG_HZ_100 is not set
49625 -CONFIG_HZ_250=y
49626 -# CONFIG_HZ_300 is not set
49627 -# CONFIG_HZ_1000 is not set
49628 -CONFIG_HZ=250
49629 -# CONFIG_SCHED_HRTICK is not set
49630 -CONFIG_PREEMPT_NONE=y
49631 -# CONFIG_PREEMPT_VOLUNTARY is not set
49632 -# CONFIG_PREEMPT is not set
49633 -CONFIG_RCU_TRACE=y
49634 -CONFIG_BINFMT_ELF=y
49635 -# CONFIG_BINFMT_MISC is not set
49636 -CONFIG_MATH_EMULATION=y
49637 -# CONFIG_IOMMU_HELPER is not set
49638 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
49639 -CONFIG_ARCH_HAS_WALK_MEMORY=y
49640 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
49641 -CONFIG_ARCH_FLATMEM_ENABLE=y
49642 -CONFIG_ARCH_POPULATES_NODE_MAP=y
49643 -CONFIG_SELECT_MEMORY_MODEL=y
49644 -CONFIG_FLATMEM_MANUAL=y
49645 -# CONFIG_DISCONTIGMEM_MANUAL is not set
49646 -# CONFIG_SPARSEMEM_MANUAL is not set
49647 -CONFIG_FLATMEM=y
49648 -CONFIG_FLAT_NODE_MEM_MAP=y
49649 -# CONFIG_SPARSEMEM_STATIC is not set
49650 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
49651 -CONFIG_SPLIT_PTLOCK_CPUS=4
49652 -CONFIG_RESOURCES_64BIT=y
49653 -CONFIG_ZONE_DMA_FLAG=1
49654 -CONFIG_BOUNCE=y
49655 -CONFIG_VIRT_TO_BUS=y
49656 -CONFIG_PROC_DEVICETREE=y
49657 -# CONFIG_CMDLINE_BOOL is not set
49658 -CONFIG_SECCOMP=y
49659 -CONFIG_ISA_DMA_API=y
49660 -
49661 -#
49662 -# Bus options
49663 -#
49664 -CONFIG_ZONE_DMA=y
49665 -CONFIG_PPC_INDIRECT_PCI=y
49666 -CONFIG_PCI=y
49667 -CONFIG_PCI_DOMAINS=y
49668 -CONFIG_PCI_SYSCALL=y
49669 -# CONFIG_PCIEPORTBUS is not set
49670 -CONFIG_ARCH_SUPPORTS_MSI=y
49671 -# CONFIG_PCI_MSI is not set
49672 -CONFIG_PCI_LEGACY=y
49673 -# CONFIG_PCI_DEBUG is not set
49674 -# CONFIG_PCCARD is not set
49675 -# CONFIG_HOTPLUG_PCI is not set
49676 -
49677 -#
49678 -# Advanced setup
49679 -#
49680 -# CONFIG_ADVANCED_OPTIONS is not set
49681 -
49682 -#
49683 -# Default settings for advanced configuration options are used
49684 -#
49685 -CONFIG_HIGHMEM_START=0xfe000000
49686 -CONFIG_LOWMEM_SIZE=0x30000000
49687 -CONFIG_KERNEL_START=0xc0000000
49688 -CONFIG_TASK_SIZE=0xc0000000
49689 -CONFIG_CONSISTENT_START=0xff100000
49690 -CONFIG_CONSISTENT_SIZE=0x00200000
49691 -CONFIG_BOOT_LOAD=0x01000000
49692 -
49693 -#
49694 -# Networking
49695 -#
49696 -CONFIG_NET=y
49697 -
49698 -#
49699 -# Networking options
49700 -#
49701 -CONFIG_PACKET=y
49702 -# CONFIG_PACKET_MMAP is not set
49703 -CONFIG_UNIX=y
49704 -# CONFIG_NET_KEY is not set
49705 -CONFIG_INET=y
49706 -# CONFIG_IP_MULTICAST is not set
49707 -# CONFIG_IP_ADVANCED_ROUTER is not set
49708 -CONFIG_IP_FIB_HASH=y
49709 -CONFIG_IP_PNP=y
49710 -CONFIG_IP_PNP_DHCP=y
49711 -CONFIG_IP_PNP_BOOTP=y
49712 -# CONFIG_IP_PNP_RARP is not set
49713 -# CONFIG_NET_IPIP is not set
49714 -# CONFIG_NET_IPGRE is not set
49715 -# CONFIG_ARPD is not set
49716 -# CONFIG_SYN_COOKIES is not set
49717 -# CONFIG_INET_AH is not set
49718 -# CONFIG_INET_ESP is not set
49719 -# CONFIG_INET_IPCOMP is not set
49720 -# CONFIG_INET_XFRM_TUNNEL is not set
49721 -# CONFIG_INET_TUNNEL is not set
49722 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
49723 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
49724 -# CONFIG_INET_XFRM_MODE_BEET is not set
49725 -# CONFIG_INET_LRO is not set
49726 -CONFIG_INET_DIAG=y
49727 -CONFIG_INET_TCP_DIAG=y
49728 -# CONFIG_TCP_CONG_ADVANCED is not set
49729 -CONFIG_TCP_CONG_CUBIC=y
49730 -CONFIG_DEFAULT_TCP_CONG="cubic"
49731 -# CONFIG_TCP_MD5SIG is not set
49732 -# CONFIG_IPV6 is not set
49733 -# CONFIG_INET6_XFRM_TUNNEL is not set
49734 -# CONFIG_INET6_TUNNEL is not set
49735 -# CONFIG_NETWORK_SECMARK is not set
49736 -# CONFIG_NETFILTER is not set
49737 -# CONFIG_IP_DCCP is not set
49738 -# CONFIG_IP_SCTP is not set
49739 -# CONFIG_TIPC is not set
49740 -# CONFIG_ATM is not set
49741 -# CONFIG_BRIDGE is not set
49742 -# CONFIG_VLAN_8021Q is not set
49743 -# CONFIG_DECNET is not set
49744 -# CONFIG_LLC2 is not set
49745 -# CONFIG_IPX is not set
49746 -# CONFIG_ATALK is not set
49747 -# CONFIG_X25 is not set
49748 -# CONFIG_LAPB is not set
49749 -# CONFIG_ECONET is not set
49750 -# CONFIG_WAN_ROUTER is not set
49751 -# CONFIG_NET_SCHED is not set
49752 -
49753 -#
49754 -# Network testing
49755 -#
49756 -# CONFIG_NET_PKTGEN is not set
49757 -# CONFIG_HAMRADIO is not set
49758 -# CONFIG_CAN is not set
49759 -# CONFIG_IRDA is not set
49760 -# CONFIG_BT is not set
49761 -# CONFIG_AF_RXRPC is not set
49762 -
49763 -#
49764 -# Wireless
49765 -#
49766 -# CONFIG_CFG80211 is not set
49767 -# CONFIG_WIRELESS_EXT is not set
49768 -# CONFIG_MAC80211 is not set
49769 -# CONFIG_IEEE80211 is not set
49770 -# CONFIG_RFKILL is not set
49771 -# CONFIG_NET_9P is not set
49772 -
49773 -#
49774 -# Device Drivers
49775 -#
49776 -
49777 -#
49778 -# Generic Driver Options
49779 -#
49780 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
49781 -CONFIG_STANDALONE=y
49782 -CONFIG_PREVENT_FIRMWARE_BUILD=y
49783 -CONFIG_FW_LOADER=y
49784 -# CONFIG_DEBUG_DRIVER is not set
49785 -# CONFIG_DEBUG_DEVRES is not set
49786 -# CONFIG_SYS_HYPERVISOR is not set
49787 -CONFIG_CONNECTOR=y
49788 -CONFIG_PROC_EVENTS=y
49789 -CONFIG_MTD=y
49790 -# CONFIG_MTD_DEBUG is not set
49791 -# CONFIG_MTD_CONCAT is not set
49792 -CONFIG_MTD_PARTITIONS=y
49793 -# CONFIG_MTD_REDBOOT_PARTS is not set
49794 -# CONFIG_MTD_CMDLINE_PARTS is not set
49795 -CONFIG_MTD_OF_PARTS=y
49796 -
49797 -#
49798 -# User Modules And Translation Layers
49799 -#
49800 -CONFIG_MTD_CHAR=y
49801 -CONFIG_MTD_BLKDEVS=y
49802 -CONFIG_MTD_BLOCK=y
49803 -# CONFIG_FTL is not set
49804 -# CONFIG_NFTL is not set
49805 -# CONFIG_INFTL is not set
49806 -# CONFIG_RFD_FTL is not set
49807 -# CONFIG_SSFDC is not set
49808 -# CONFIG_MTD_OOPS is not set
49809 -
49810 -#
49811 -# RAM/ROM/Flash chip drivers
49812 -#
49813 -CONFIG_MTD_CFI=y
49814 -CONFIG_MTD_JEDECPROBE=y
49815 -CONFIG_MTD_GEN_PROBE=y
49816 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
49817 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
49818 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
49819 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
49820 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
49821 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
49822 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
49823 -CONFIG_MTD_CFI_I1=y
49824 -CONFIG_MTD_CFI_I2=y
49825 -# CONFIG_MTD_CFI_I4 is not set
49826 -# CONFIG_MTD_CFI_I8 is not set
49827 -# CONFIG_MTD_CFI_INTELEXT is not set
49828 -CONFIG_MTD_CFI_AMDSTD=y
49829 -# CONFIG_MTD_CFI_STAA is not set
49830 -CONFIG_MTD_CFI_UTIL=y
49831 -# CONFIG_MTD_RAM is not set
49832 -# CONFIG_MTD_ROM is not set
49833 -# CONFIG_MTD_ABSENT is not set
49834 -
49835 -#
49836 -# Mapping drivers for chip access
49837 -#
49838 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
49839 -# CONFIG_MTD_PHYSMAP is not set
49840 -CONFIG_MTD_PHYSMAP_OF=y
49841 -# CONFIG_MTD_INTEL_VR_NOR is not set
49842 -# CONFIG_MTD_PLATRAM is not set
49843 -
49844 -#
49845 -# Self-contained MTD device drivers
49846 -#
49847 -# CONFIG_MTD_PMC551 is not set
49848 -# CONFIG_MTD_SLRAM is not set
49849 -# CONFIG_MTD_PHRAM is not set
49850 -# CONFIG_MTD_MTDRAM is not set
49851 -# CONFIG_MTD_BLOCK2MTD is not set
49852 -
49853 -#
49854 -# Disk-On-Chip Device Drivers
49855 -#
49856 -# CONFIG_MTD_DOC2000 is not set
49857 -# CONFIG_MTD_DOC2001 is not set
49858 -# CONFIG_MTD_DOC2001PLUS is not set
49859 -# CONFIG_MTD_NAND is not set
49860 -# CONFIG_MTD_ONENAND is not set
49861 -
49862 -#
49863 -# UBI - Unsorted block images
49864 -#
49865 -# CONFIG_MTD_UBI is not set
49866 -CONFIG_OF_DEVICE=y
49867 -# CONFIG_PARPORT is not set
49868 -CONFIG_BLK_DEV=y
49869 -# CONFIG_BLK_DEV_FD is not set
49870 -# CONFIG_BLK_CPQ_DA is not set
49871 -# CONFIG_BLK_CPQ_CISS_DA is not set
49872 -# CONFIG_BLK_DEV_DAC960 is not set
49873 -# CONFIG_BLK_DEV_UMEM is not set
49874 -# CONFIG_BLK_DEV_COW_COMMON is not set
49875 -# CONFIG_BLK_DEV_LOOP is not set
49876 -# CONFIG_BLK_DEV_NBD is not set
49877 -# CONFIG_BLK_DEV_SX8 is not set
49878 -CONFIG_BLK_DEV_RAM=y
49879 -CONFIG_BLK_DEV_RAM_COUNT=16
49880 -CONFIG_BLK_DEV_RAM_SIZE=35000
49881 -# CONFIG_BLK_DEV_XIP is not set
49882 -# CONFIG_CDROM_PKTCDVD is not set
49883 -# CONFIG_ATA_OVER_ETH is not set
49884 -# CONFIG_XILINX_SYSACE is not set
49885 -CONFIG_MISC_DEVICES=y
49886 -# CONFIG_PHANTOM is not set
49887 -# CONFIG_EEPROM_93CX6 is not set
49888 -# CONFIG_SGI_IOC4 is not set
49889 -# CONFIG_TIFM_CORE is not set
49890 -# CONFIG_ENCLOSURE_SERVICES is not set
49891 -CONFIG_HAVE_IDE=y
49892 -# CONFIG_IDE is not set
49893 -
49894 -#
49895 -# SCSI device support
49896 -#
49897 -# CONFIG_RAID_ATTRS is not set
49898 -# CONFIG_SCSI is not set
49899 -# CONFIG_SCSI_DMA is not set
49900 -# CONFIG_SCSI_NETLINK is not set
49901 -# CONFIG_ATA is not set
49902 -# CONFIG_MD is not set
49903 -# CONFIG_FUSION is not set
49904 -
49905 -#
49906 -# IEEE 1394 (FireWire) support
49907 -#
49908 -# CONFIG_FIREWIRE is not set
49909 -# CONFIG_IEEE1394 is not set
49910 -# CONFIG_I2O is not set
49911 -# CONFIG_MACINTOSH_DRIVERS is not set
49912 -CONFIG_NETDEVICES=y
49913 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
49914 -# CONFIG_DUMMY is not set
49915 -# CONFIG_BONDING is not set
49916 -# CONFIG_MACVLAN is not set
49917 -# CONFIG_EQUALIZER is not set
49918 -# CONFIG_TUN is not set
49919 -# CONFIG_VETH is not set
49920 -# CONFIG_ARCNET is not set
49921 -# CONFIG_PHYLIB is not set
49922 -CONFIG_NET_ETHERNET=y
49923 -# CONFIG_MII is not set
49924 -# CONFIG_HAPPYMEAL is not set
49925 -# CONFIG_SUNGEM is not set
49926 -# CONFIG_CASSINI is not set
49927 -# CONFIG_NET_VENDOR_3COM is not set
49928 -# CONFIG_NET_TULIP is not set
49929 -# CONFIG_HP100 is not set
49930 -CONFIG_IBM_NEW_EMAC=y
49931 -CONFIG_IBM_NEW_EMAC_RXB=128
49932 -CONFIG_IBM_NEW_EMAC_TXB=64
49933 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
49934 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
49935 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
49936 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
49937 -CONFIG_IBM_NEW_EMAC_ZMII=y
49938 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
49939 -# CONFIG_IBM_NEW_EMAC_TAH is not set
49940 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
49941 -# CONFIG_NET_PCI is not set
49942 -# CONFIG_B44 is not set
49943 -CONFIG_NETDEV_1000=y
49944 -# CONFIG_ACENIC is not set
49945 -# CONFIG_DL2K is not set
49946 -# CONFIG_E1000 is not set
49947 -# CONFIG_E1000E is not set
49948 -# CONFIG_E1000E_ENABLED is not set
49949 -# CONFIG_IP1000 is not set
49950 -# CONFIG_IGB is not set
49951 -# CONFIG_NS83820 is not set
49952 -# CONFIG_HAMACHI is not set
49953 -# CONFIG_YELLOWFIN is not set
49954 -# CONFIG_R8169 is not set
49955 -# CONFIG_SIS190 is not set
49956 -# CONFIG_SKGE is not set
49957 -# CONFIG_SKY2 is not set
49958 -# CONFIG_SK98LIN is not set
49959 -# CONFIG_VIA_VELOCITY is not set
49960 -# CONFIG_TIGON3 is not set
49961 -# CONFIG_BNX2 is not set
49962 -# CONFIG_QLA3XXX is not set
49963 -# CONFIG_ATL1 is not set
49964 -CONFIG_NETDEV_10000=y
49965 -# CONFIG_CHELSIO_T1 is not set
49966 -# CONFIG_CHELSIO_T3 is not set
49967 -# CONFIG_IXGBE is not set
49968 -# CONFIG_IXGB is not set
49969 -# CONFIG_S2IO is not set
49970 -# CONFIG_MYRI10GE is not set
49971 -# CONFIG_NETXEN_NIC is not set
49972 -# CONFIG_NIU is not set
49973 -# CONFIG_MLX4_CORE is not set
49974 -# CONFIG_TEHUTI is not set
49975 -# CONFIG_BNX2X is not set
49976 -# CONFIG_TR is not set
49977 -
49978 -#
49979 -# Wireless LAN
49980 -#
49981 -# CONFIG_WLAN_PRE80211 is not set
49982 -# CONFIG_WLAN_80211 is not set
49983 -# CONFIG_WAN is not set
49984 -# CONFIG_FDDI is not set
49985 -# CONFIG_HIPPI is not set
49986 -# CONFIG_PPP is not set
49987 -# CONFIG_SLIP is not set
49988 -# CONFIG_NETCONSOLE is not set
49989 -# CONFIG_NETPOLL is not set
49990 -# CONFIG_NET_POLL_CONTROLLER is not set
49991 -# CONFIG_ISDN is not set
49992 -# CONFIG_PHONE is not set
49993 -
49994 -#
49995 -# Input device support
49996 -#
49997 -# CONFIG_INPUT is not set
49998 -
49999 -#
50000 -# Hardware I/O ports
50001 -#
50002 -# CONFIG_SERIO is not set
50003 -# CONFIG_GAMEPORT is not set
50004 -
50005 -#
50006 -# Character devices
50007 -#
50008 -# CONFIG_VT is not set
50009 -# CONFIG_SERIAL_NONSTANDARD is not set
50010 -# CONFIG_NOZOMI is not set
50011 -
50012 -#
50013 -# Serial drivers
50014 -#
50015 -CONFIG_SERIAL_8250=y
50016 -CONFIG_SERIAL_8250_CONSOLE=y
50017 -# CONFIG_SERIAL_8250_PCI is not set
50018 -CONFIG_SERIAL_8250_NR_UARTS=4
50019 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
50020 -CONFIG_SERIAL_8250_EXTENDED=y
50021 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
50022 -CONFIG_SERIAL_8250_SHARE_IRQ=y
50023 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
50024 -# CONFIG_SERIAL_8250_RSA is not set
50025 -
50026 -#
50027 -# Non-8250 serial port support
50028 -#
50029 -# CONFIG_SERIAL_UARTLITE is not set
50030 -CONFIG_SERIAL_CORE=y
50031 -CONFIG_SERIAL_CORE_CONSOLE=y
50032 -# CONFIG_SERIAL_JSM is not set
50033 -CONFIG_SERIAL_OF_PLATFORM=y
50034 -CONFIG_UNIX98_PTYS=y
50035 -CONFIG_LEGACY_PTYS=y
50036 -CONFIG_LEGACY_PTY_COUNT=256
50037 -# CONFIG_IPMI_HANDLER is not set
50038 -# CONFIG_HW_RANDOM is not set
50039 -# CONFIG_NVRAM is not set
50040 -# CONFIG_GEN_RTC is not set
50041 -# CONFIG_R3964 is not set
50042 -# CONFIG_APPLICOM is not set
50043 -# CONFIG_RAW_DRIVER is not set
50044 -# CONFIG_TCG_TPM is not set
50045 -CONFIG_DEVPORT=y
50046 -# CONFIG_I2C is not set
50047 -
50048 -#
50049 -# SPI support
50050 -#
50051 -# CONFIG_SPI is not set
50052 -# CONFIG_SPI_MASTER is not set
50053 -# CONFIG_W1 is not set
50054 -# CONFIG_POWER_SUPPLY is not set
50055 -# CONFIG_HWMON is not set
50056 -CONFIG_THERMAL=y
50057 -# CONFIG_WATCHDOG is not set
50058 -
50059 -#
50060 -# Sonics Silicon Backplane
50061 -#
50062 -CONFIG_SSB_POSSIBLE=y
50063 -# CONFIG_SSB is not set
50064 -
50065 -#
50066 -# Multifunction device drivers
50067 -#
50068 -# CONFIG_MFD_SM501 is not set
50069 -
50070 -#
50071 -# Multimedia devices
50072 -#
50073 -# CONFIG_VIDEO_DEV is not set
50074 -# CONFIG_DVB_CORE is not set
50075 -# CONFIG_DAB is not set
50076 -
50077 -#
50078 -# Graphics support
50079 -#
50080 -# CONFIG_AGP is not set
50081 -# CONFIG_DRM is not set
50082 -# CONFIG_VGASTATE is not set
50083 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
50084 -# CONFIG_FB is not set
50085 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
50086 -
50087 -#
50088 -# Display device support
50089 -#
50090 -# CONFIG_DISPLAY_SUPPORT is not set
50091 -
50092 -#
50093 -# Sound
50094 -#
50095 -# CONFIG_SOUND is not set
50096 -CONFIG_USB_SUPPORT=y
50097 -CONFIG_USB_ARCH_HAS_HCD=y
50098 -CONFIG_USB_ARCH_HAS_OHCI=y
50099 -CONFIG_USB_ARCH_HAS_EHCI=y
50100 -# CONFIG_USB is not set
50101 -
50102 -#
50103 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
50104 -#
50105 -# CONFIG_USB_GADGET is not set
50106 -# CONFIG_MMC is not set
50107 -# CONFIG_MEMSTICK is not set
50108 -# CONFIG_NEW_LEDS is not set
50109 -# CONFIG_INFINIBAND is not set
50110 -# CONFIG_EDAC is not set
50111 -# CONFIG_RTC_CLASS is not set
50112 -
50113 -#
50114 -# Userspace I/O
50115 -#
50116 -# CONFIG_UIO is not set
50117 -
50118 -#
50119 -# File systems
50120 -#
50121 -CONFIG_EXT2_FS=y
50122 -# CONFIG_EXT2_FS_XATTR is not set
50123 -# CONFIG_EXT2_FS_XIP is not set
50124 -# CONFIG_EXT3_FS is not set
50125 -# CONFIG_EXT4DEV_FS is not set
50126 -# CONFIG_REISERFS_FS is not set
50127 -# CONFIG_JFS_FS is not set
50128 -# CONFIG_FS_POSIX_ACL is not set
50129 -# CONFIG_XFS_FS is not set
50130 -# CONFIG_GFS2_FS is not set
50131 -# CONFIG_OCFS2_FS is not set
50132 -CONFIG_DNOTIFY=y
50133 -CONFIG_INOTIFY=y
50134 -CONFIG_INOTIFY_USER=y
50135 -# CONFIG_QUOTA is not set
50136 -# CONFIG_AUTOFS_FS is not set
50137 -# CONFIG_AUTOFS4_FS is not set
50138 -# CONFIG_FUSE_FS is not set
50139 -
50140 -#
50141 -# CD-ROM/DVD Filesystems
50142 -#
50143 -# CONFIG_ISO9660_FS is not set
50144 -# CONFIG_UDF_FS is not set
50145 -
50146 -#
50147 -# DOS/FAT/NT Filesystems
50148 -#
50149 -# CONFIG_MSDOS_FS is not set
50150 -# CONFIG_VFAT_FS is not set
50151 -# CONFIG_NTFS_FS is not set
50152 -
50153 -#
50154 -# Pseudo filesystems
50155 -#
50156 -CONFIG_PROC_FS=y
50157 -CONFIG_PROC_KCORE=y
50158 -CONFIG_PROC_SYSCTL=y
50159 -CONFIG_SYSFS=y
50160 -CONFIG_TMPFS=y
50161 -# CONFIG_TMPFS_POSIX_ACL is not set
50162 -# CONFIG_HUGETLB_PAGE is not set
50163 -# CONFIG_CONFIGFS_FS is not set
50164 -
50165 -#
50166 -# Miscellaneous filesystems
50167 -#
50168 -# CONFIG_ADFS_FS is not set
50169 -# CONFIG_AFFS_FS is not set
50170 -# CONFIG_HFS_FS is not set
50171 -# CONFIG_HFSPLUS_FS is not set
50172 -# CONFIG_BEFS_FS is not set
50173 -# CONFIG_BFS_FS is not set
50174 -# CONFIG_EFS_FS is not set
50175 -CONFIG_JFFS2_FS=y
50176 -CONFIG_JFFS2_FS_DEBUG=0
50177 -CONFIG_JFFS2_FS_WRITEBUFFER=y
50178 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
50179 -# CONFIG_JFFS2_SUMMARY is not set
50180 -# CONFIG_JFFS2_FS_XATTR is not set
50181 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
50182 -CONFIG_JFFS2_ZLIB=y
50183 -# CONFIG_JFFS2_LZO is not set
50184 -CONFIG_JFFS2_RTIME=y
50185 -# CONFIG_JFFS2_RUBIN is not set
50186 -CONFIG_CRAMFS=y
50187 -# CONFIG_VXFS_FS is not set
50188 -# CONFIG_MINIX_FS is not set
50189 -# CONFIG_HPFS_FS is not set
50190 -# CONFIG_QNX4FS_FS is not set
50191 -# CONFIG_ROMFS_FS is not set
50192 -# CONFIG_SYSV_FS is not set
50193 -# CONFIG_UFS_FS is not set
50194 -CONFIG_NETWORK_FILESYSTEMS=y
50195 -CONFIG_NFS_FS=y
50196 -CONFIG_NFS_V3=y
50197 -# CONFIG_NFS_V3_ACL is not set
50198 -# CONFIG_NFS_V4 is not set
50199 -# CONFIG_NFS_DIRECTIO is not set
50200 -# CONFIG_NFSD is not set
50201 -CONFIG_ROOT_NFS=y
50202 -CONFIG_LOCKD=y
50203 -CONFIG_LOCKD_V4=y
50204 -CONFIG_NFS_COMMON=y
50205 -CONFIG_SUNRPC=y
50206 -# CONFIG_SUNRPC_BIND34 is not set
50207 -# CONFIG_RPCSEC_GSS_KRB5 is not set
50208 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
50209 -# CONFIG_SMB_FS is not set
50210 -# CONFIG_CIFS is not set
50211 -# CONFIG_NCP_FS is not set
50212 -# CONFIG_CODA_FS is not set
50213 -# CONFIG_AFS_FS is not set
50214 -
50215 -#
50216 -# Partition Types
50217 -#
50218 -# CONFIG_PARTITION_ADVANCED is not set
50219 -CONFIG_MSDOS_PARTITION=y
50220 -# CONFIG_NLS is not set
50221 -# CONFIG_DLM is not set
50222 -
50223 -#
50224 -# Library routines
50225 -#
50226 -CONFIG_BITREVERSE=y
50227 -# CONFIG_CRC_CCITT is not set
50228 -# CONFIG_CRC16 is not set
50229 -# CONFIG_CRC_ITU_T is not set
50230 -CONFIG_CRC32=y
50231 -# CONFIG_CRC7 is not set
50232 -# CONFIG_LIBCRC32C is not set
50233 -CONFIG_ZLIB_INFLATE=y
50234 -CONFIG_ZLIB_DEFLATE=y
50235 -CONFIG_PLIST=y
50236 -CONFIG_HAS_IOMEM=y
50237 -CONFIG_HAS_IOPORT=y
50238 -CONFIG_HAS_DMA=y
50239 -
50240 -#
50241 -# Kernel hacking
50242 -#
50243 -# CONFIG_PRINTK_TIME is not set
50244 -CONFIG_ENABLE_WARN_DEPRECATED=y
50245 -CONFIG_ENABLE_MUST_CHECK=y
50246 -CONFIG_MAGIC_SYSRQ=y
50247 -# CONFIG_UNUSED_SYMBOLS is not set
50248 -CONFIG_DEBUG_FS=y
50249 -# CONFIG_HEADERS_CHECK is not set
50250 -CONFIG_DEBUG_KERNEL=y
50251 -# CONFIG_DEBUG_SHIRQ is not set
50252 -CONFIG_DETECT_SOFTLOCKUP=y
50253 -CONFIG_SCHED_DEBUG=y
50254 -# CONFIG_SCHEDSTATS is not set
50255 -# CONFIG_TIMER_STATS is not set
50256 -# CONFIG_SLUB_DEBUG_ON is not set
50257 -# CONFIG_SLUB_STATS is not set
50258 -# CONFIG_DEBUG_RT_MUTEXES is not set
50259 -# CONFIG_RT_MUTEX_TESTER is not set
50260 -# CONFIG_DEBUG_SPINLOCK is not set
50261 -# CONFIG_DEBUG_MUTEXES is not set
50262 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
50263 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
50264 -# CONFIG_DEBUG_KOBJECT is not set
50265 -CONFIG_DEBUG_BUGVERBOSE=y
50266 -# CONFIG_DEBUG_INFO is not set
50267 -# CONFIG_DEBUG_VM is not set
50268 -# CONFIG_DEBUG_LIST is not set
50269 -# CONFIG_DEBUG_SG is not set
50270 -# CONFIG_BOOT_PRINTK_DELAY is not set
50271 -# CONFIG_RCU_TORTURE_TEST is not set
50272 -# CONFIG_BACKTRACE_SELF_TEST is not set
50273 -# CONFIG_FAULT_INJECTION is not set
50274 -# CONFIG_SAMPLES is not set
50275 -# CONFIG_DEBUG_STACKOVERFLOW is not set
50276 -# CONFIG_DEBUG_STACK_USAGE is not set
50277 -# CONFIG_DEBUG_PAGEALLOC is not set
50278 -# CONFIG_DEBUGGER is not set
50279 -# CONFIG_VIRQ_DEBUG is not set
50280 -# CONFIG_BDI_SWITCH is not set
50281 -# CONFIG_PPC_EARLY_DEBUG is not set
50282 -
50283 -#
50284 -# Security options
50285 -#
50286 -# CONFIG_KEYS is not set
50287 -# CONFIG_SECURITY is not set
50288 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
50289 -CONFIG_CRYPTO=y
50290 -CONFIG_CRYPTO_ALGAPI=y
50291 -CONFIG_CRYPTO_BLKCIPHER=y
50292 -# CONFIG_CRYPTO_SEQIV is not set
50293 -CONFIG_CRYPTO_MANAGER=y
50294 -# CONFIG_CRYPTO_HMAC is not set
50295 -# CONFIG_CRYPTO_XCBC is not set
50296 -# CONFIG_CRYPTO_NULL is not set
50297 -# CONFIG_CRYPTO_MD4 is not set
50298 -CONFIG_CRYPTO_MD5=y
50299 -# CONFIG_CRYPTO_SHA1 is not set
50300 -# CONFIG_CRYPTO_SHA256 is not set
50301 -# CONFIG_CRYPTO_SHA512 is not set
50302 -# CONFIG_CRYPTO_WP512 is not set
50303 -# CONFIG_CRYPTO_TGR192 is not set
50304 -# CONFIG_CRYPTO_GF128MUL is not set
50305 -CONFIG_CRYPTO_ECB=y
50306 -CONFIG_CRYPTO_CBC=y
50307 -CONFIG_CRYPTO_PCBC=y
50308 -# CONFIG_CRYPTO_LRW is not set
50309 -# CONFIG_CRYPTO_XTS is not set
50310 -# CONFIG_CRYPTO_CTR is not set
50311 -# CONFIG_CRYPTO_GCM is not set
50312 -# CONFIG_CRYPTO_CCM is not set
50313 -# CONFIG_CRYPTO_CRYPTD is not set
50314 -CONFIG_CRYPTO_DES=y
50315 -# CONFIG_CRYPTO_FCRYPT is not set
50316 -# CONFIG_CRYPTO_BLOWFISH is not set
50317 -# CONFIG_CRYPTO_TWOFISH is not set
50318 -# CONFIG_CRYPTO_SERPENT is not set
50319 -# CONFIG_CRYPTO_AES is not set
50320 -# CONFIG_CRYPTO_CAST5 is not set
50321 -# CONFIG_CRYPTO_CAST6 is not set
50322 -# CONFIG_CRYPTO_TEA is not set
50323 -# CONFIG_CRYPTO_ARC4 is not set
50324 -# CONFIG_CRYPTO_KHAZAD is not set
50325 -# CONFIG_CRYPTO_ANUBIS is not set
50326 -# CONFIG_CRYPTO_SEED is not set
50327 -# CONFIG_CRYPTO_SALSA20 is not set
50328 -# CONFIG_CRYPTO_DEFLATE is not set
50329 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
50330 -# CONFIG_CRYPTO_CRC32C is not set
50331 -# CONFIG_CRYPTO_CAMELLIA is not set
50332 -# CONFIG_CRYPTO_TEST is not set
50333 -# CONFIG_CRYPTO_AUTHENC is not set
50334 -# CONFIG_CRYPTO_LZO is not set
50335 -# CONFIG_CRYPTO_HW is not set
50336 -# CONFIG_PPC_CLOCK is not set
50337 Index: linux-2.6.25.4/arch/powerpc/configs/ep405_defconfig
50338 ===================================================================
50339 --- linux-2.6.25.4.orig/arch/powerpc/configs/ep405_defconfig
50340 +++ /dev/null
50341 @@ -1,968 +0,0 @@
50342 -#
50343 -# Automatically generated make config: don't edit
50344 -# Linux kernel version: 2.6.25-rc2
50345 -# Fri Feb 15 21:50:09 2008
50346 -#
50347 -# CONFIG_PPC64 is not set
50348 -
50349 -#
50350 -# Processor support
50351 -#
50352 -# CONFIG_6xx is not set
50353 -# CONFIG_PPC_85xx is not set
50354 -# CONFIG_PPC_8xx is not set
50355 -CONFIG_40x=y
50356 -# CONFIG_44x is not set
50357 -# CONFIG_E200 is not set
50358 -CONFIG_4xx=y
50359 -# CONFIG_PPC_MM_SLICES is not set
50360 -CONFIG_NOT_COHERENT_CACHE=y
50361 -CONFIG_PPC32=y
50362 -CONFIG_WORD_SIZE=32
50363 -CONFIG_PPC_MERGE=y
50364 -CONFIG_MMU=y
50365 -CONFIG_GENERIC_CMOS_UPDATE=y
50366 -CONFIG_GENERIC_TIME=y
50367 -CONFIG_GENERIC_TIME_VSYSCALL=y
50368 -CONFIG_GENERIC_CLOCKEVENTS=y
50369 -CONFIG_GENERIC_HARDIRQS=y
50370 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
50371 -CONFIG_IRQ_PER_CPU=y
50372 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
50373 -CONFIG_ARCH_HAS_ILOG2_U32=y
50374 -CONFIG_GENERIC_HWEIGHT=y
50375 -CONFIG_GENERIC_CALIBRATE_DELAY=y
50376 -CONFIG_GENERIC_FIND_NEXT_BIT=y
50377 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
50378 -CONFIG_PPC=y
50379 -CONFIG_EARLY_PRINTK=y
50380 -CONFIG_GENERIC_NVRAM=y
50381 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
50382 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
50383 -CONFIG_PPC_OF=y
50384 -CONFIG_OF=y
50385 -CONFIG_PPC_UDBG_16550=y
50386 -# CONFIG_GENERIC_TBSYNC is not set
50387 -CONFIG_AUDIT_ARCH=y
50388 -CONFIG_GENERIC_BUG=y
50389 -# CONFIG_DEFAULT_UIMAGE is not set
50390 -CONFIG_PPC_DCR_NATIVE=y
50391 -# CONFIG_PPC_DCR_MMIO is not set
50392 -CONFIG_PPC_DCR=y
50393 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
50394 -
50395 -#
50396 -# General setup
50397 -#
50398 -CONFIG_EXPERIMENTAL=y
50399 -CONFIG_BROKEN_ON_SMP=y
50400 -CONFIG_INIT_ENV_ARG_LIMIT=32
50401 -CONFIG_LOCALVERSION=""
50402 -CONFIG_LOCALVERSION_AUTO=y
50403 -CONFIG_SWAP=y
50404 -CONFIG_SYSVIPC=y
50405 -CONFIG_SYSVIPC_SYSCTL=y
50406 -CONFIG_POSIX_MQUEUE=y
50407 -# CONFIG_BSD_PROCESS_ACCT is not set
50408 -# CONFIG_TASKSTATS is not set
50409 -# CONFIG_AUDIT is not set
50410 -# CONFIG_IKCONFIG is not set
50411 -CONFIG_LOG_BUF_SHIFT=14
50412 -# CONFIG_CGROUPS is not set
50413 -CONFIG_GROUP_SCHED=y
50414 -CONFIG_FAIR_GROUP_SCHED=y
50415 -# CONFIG_RT_GROUP_SCHED is not set
50416 -CONFIG_USER_SCHED=y
50417 -# CONFIG_CGROUP_SCHED is not set
50418 -CONFIG_SYSFS_DEPRECATED=y
50419 -# CONFIG_RELAY is not set
50420 -# CONFIG_NAMESPACES is not set
50421 -CONFIG_BLK_DEV_INITRD=y
50422 -CONFIG_INITRAMFS_SOURCE=""
50423 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
50424 -CONFIG_SYSCTL=y
50425 -CONFIG_EMBEDDED=y
50426 -CONFIG_SYSCTL_SYSCALL=y
50427 -CONFIG_KALLSYMS=y
50428 -CONFIG_KALLSYMS_ALL=y
50429 -CONFIG_KALLSYMS_EXTRA_PASS=y
50430 -CONFIG_HOTPLUG=y
50431 -CONFIG_PRINTK=y
50432 -CONFIG_BUG=y
50433 -CONFIG_ELF_CORE=y
50434 -CONFIG_COMPAT_BRK=y
50435 -CONFIG_BASE_FULL=y
50436 -CONFIG_FUTEX=y
50437 -CONFIG_ANON_INODES=y
50438 -CONFIG_EPOLL=y
50439 -CONFIG_SIGNALFD=y
50440 -CONFIG_TIMERFD=y
50441 -CONFIG_EVENTFD=y
50442 -CONFIG_SHMEM=y
50443 -CONFIG_VM_EVENT_COUNTERS=y
50444 -CONFIG_SLUB_DEBUG=y
50445 -# CONFIG_SLAB is not set
50446 -CONFIG_SLUB=y
50447 -# CONFIG_SLOB is not set
50448 -# CONFIG_PROFILING is not set
50449 -# CONFIG_MARKERS is not set
50450 -CONFIG_HAVE_OPROFILE=y
50451 -# CONFIG_KPROBES is not set
50452 -CONFIG_HAVE_KPROBES=y
50453 -CONFIG_PROC_PAGE_MONITOR=y
50454 -CONFIG_SLABINFO=y
50455 -CONFIG_RT_MUTEXES=y
50456 -# CONFIG_TINY_SHMEM is not set
50457 -CONFIG_BASE_SMALL=0
50458 -CONFIG_MODULES=y
50459 -CONFIG_MODULE_UNLOAD=y
50460 -# CONFIG_MODULE_FORCE_UNLOAD is not set
50461 -# CONFIG_MODVERSIONS is not set
50462 -# CONFIG_MODULE_SRCVERSION_ALL is not set
50463 -CONFIG_KMOD=y
50464 -CONFIG_BLOCK=y
50465 -CONFIG_LBD=y
50466 -# CONFIG_BLK_DEV_IO_TRACE is not set
50467 -# CONFIG_LSF is not set
50468 -# CONFIG_BLK_DEV_BSG is not set
50469 -
50470 -#
50471 -# IO Schedulers
50472 -#
50473 -CONFIG_IOSCHED_NOOP=y
50474 -CONFIG_IOSCHED_AS=y
50475 -CONFIG_IOSCHED_DEADLINE=y
50476 -CONFIG_IOSCHED_CFQ=y
50477 -CONFIG_DEFAULT_AS=y
50478 -# CONFIG_DEFAULT_DEADLINE is not set
50479 -# CONFIG_DEFAULT_CFQ is not set
50480 -# CONFIG_DEFAULT_NOOP is not set
50481 -CONFIG_DEFAULT_IOSCHED="anticipatory"
50482 -CONFIG_CLASSIC_RCU=y
50483 -# CONFIG_PREEMPT_RCU is not set
50484 -# CONFIG_PPC4xx_PCI_EXPRESS is not set
50485 -
50486 -#
50487 -# Platform support
50488 -#
50489 -# CONFIG_PPC_MPC512x is not set
50490 -# CONFIG_PPC_MPC5121 is not set
50491 -# CONFIG_PPC_CELL is not set
50492 -# CONFIG_PPC_CELL_NATIVE is not set
50493 -# CONFIG_PQ2ADS is not set
50494 -CONFIG_EP405=y
50495 -# CONFIG_KILAUEA is not set
50496 -# CONFIG_MAKALU is not set
50497 -# CONFIG_WALNUT is not set
50498 -# CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set
50499 -CONFIG_405GP=y
50500 -CONFIG_IBM405_ERR77=y
50501 -CONFIG_IBM405_ERR51=y
50502 -# CONFIG_IPIC is not set
50503 -# CONFIG_MPIC is not set
50504 -# CONFIG_MPIC_WEIRD is not set
50505 -# CONFIG_PPC_I8259 is not set
50506 -# CONFIG_PPC_RTAS is not set
50507 -# CONFIG_MMIO_NVRAM is not set
50508 -# CONFIG_PPC_MPC106 is not set
50509 -# CONFIG_PPC_970_NAP is not set
50510 -# CONFIG_PPC_INDIRECT_IO is not set
50511 -# CONFIG_GENERIC_IOMAP is not set
50512 -# CONFIG_CPU_FREQ is not set
50513 -# CONFIG_FSL_ULI1575 is not set
50514 -
50515 -#
50516 -# Kernel options
50517 -#
50518 -# CONFIG_HIGHMEM is not set
50519 -# CONFIG_TICK_ONESHOT is not set
50520 -# CONFIG_NO_HZ is not set
50521 -# CONFIG_HIGH_RES_TIMERS is not set
50522 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
50523 -# CONFIG_HZ_100 is not set
50524 -CONFIG_HZ_250=y
50525 -# CONFIG_HZ_300 is not set
50526 -# CONFIG_HZ_1000 is not set
50527 -CONFIG_HZ=250
50528 -# CONFIG_SCHED_HRTICK is not set
50529 -CONFIG_PREEMPT_NONE=y
50530 -# CONFIG_PREEMPT_VOLUNTARY is not set
50531 -# CONFIG_PREEMPT is not set
50532 -CONFIG_RCU_TRACE=y
50533 -CONFIG_BINFMT_ELF=y
50534 -# CONFIG_BINFMT_MISC is not set
50535 -# CONFIG_MATH_EMULATION is not set
50536 -# CONFIG_IOMMU_HELPER is not set
50537 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
50538 -CONFIG_ARCH_HAS_WALK_MEMORY=y
50539 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
50540 -CONFIG_ARCH_FLATMEM_ENABLE=y
50541 -CONFIG_ARCH_POPULATES_NODE_MAP=y
50542 -CONFIG_SELECT_MEMORY_MODEL=y
50543 -CONFIG_FLATMEM_MANUAL=y
50544 -# CONFIG_DISCONTIGMEM_MANUAL is not set
50545 -# CONFIG_SPARSEMEM_MANUAL is not set
50546 -CONFIG_FLATMEM=y
50547 -CONFIG_FLAT_NODE_MEM_MAP=y
50548 -# CONFIG_SPARSEMEM_STATIC is not set
50549 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
50550 -CONFIG_SPLIT_PTLOCK_CPUS=4
50551 -# CONFIG_RESOURCES_64BIT is not set
50552 -CONFIG_ZONE_DMA_FLAG=1
50553 -CONFIG_BOUNCE=y
50554 -CONFIG_VIRT_TO_BUS=y
50555 -CONFIG_PROC_DEVICETREE=y
50556 -# CONFIG_CMDLINE_BOOL is not set
50557 -# CONFIG_PM is not set
50558 -CONFIG_SECCOMP=y
50559 -CONFIG_ISA_DMA_API=y
50560 -
50561 -#
50562 -# Bus options
50563 -#
50564 -CONFIG_ZONE_DMA=y
50565 -CONFIG_PPC_INDIRECT_PCI=y
50566 -CONFIG_PCI=y
50567 -CONFIG_PCI_DOMAINS=y
50568 -CONFIG_PCI_SYSCALL=y
50569 -# CONFIG_PCIEPORTBUS is not set
50570 -CONFIG_ARCH_SUPPORTS_MSI=y
50571 -# CONFIG_PCI_MSI is not set
50572 -CONFIG_PCI_LEGACY=y
50573 -# CONFIG_PCI_DEBUG is not set
50574 -# CONFIG_PCCARD is not set
50575 -# CONFIG_HOTPLUG_PCI is not set
50576 -
50577 -#
50578 -# Advanced setup
50579 -#
50580 -# CONFIG_ADVANCED_OPTIONS is not set
50581 -
50582 -#
50583 -# Default settings for advanced configuration options are used
50584 -#
50585 -CONFIG_HIGHMEM_START=0xfe000000
50586 -CONFIG_LOWMEM_SIZE=0x30000000
50587 -CONFIG_KERNEL_START=0xc0000000
50588 -CONFIG_TASK_SIZE=0xc0000000
50589 -CONFIG_CONSISTENT_START=0xff100000
50590 -CONFIG_CONSISTENT_SIZE=0x00200000
50591 -CONFIG_BOOT_LOAD=0x00400000
50592 -
50593 -#
50594 -# Networking
50595 -#
50596 -CONFIG_NET=y
50597 -
50598 -#
50599 -# Networking options
50600 -#
50601 -CONFIG_PACKET=y
50602 -# CONFIG_PACKET_MMAP is not set
50603 -CONFIG_UNIX=y
50604 -# CONFIG_NET_KEY is not set
50605 -CONFIG_INET=y
50606 -# CONFIG_IP_MULTICAST is not set
50607 -# CONFIG_IP_ADVANCED_ROUTER is not set
50608 -CONFIG_IP_FIB_HASH=y
50609 -CONFIG_IP_PNP=y
50610 -CONFIG_IP_PNP_DHCP=y
50611 -CONFIG_IP_PNP_BOOTP=y
50612 -# CONFIG_IP_PNP_RARP is not set
50613 -# CONFIG_NET_IPIP is not set
50614 -# CONFIG_NET_IPGRE is not set
50615 -# CONFIG_ARPD is not set
50616 -# CONFIG_SYN_COOKIES is not set
50617 -# CONFIG_INET_AH is not set
50618 -# CONFIG_INET_ESP is not set
50619 -# CONFIG_INET_IPCOMP is not set
50620 -# CONFIG_INET_XFRM_TUNNEL is not set
50621 -# CONFIG_INET_TUNNEL is not set
50622 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
50623 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
50624 -# CONFIG_INET_XFRM_MODE_BEET is not set
50625 -# CONFIG_INET_LRO is not set
50626 -CONFIG_INET_DIAG=y
50627 -CONFIG_INET_TCP_DIAG=y
50628 -# CONFIG_TCP_CONG_ADVANCED is not set
50629 -CONFIG_TCP_CONG_CUBIC=y
50630 -CONFIG_DEFAULT_TCP_CONG="cubic"
50631 -# CONFIG_TCP_MD5SIG is not set
50632 -# CONFIG_IPV6 is not set
50633 -# CONFIG_INET6_XFRM_TUNNEL is not set
50634 -# CONFIG_INET6_TUNNEL is not set
50635 -# CONFIG_NETWORK_SECMARK is not set
50636 -# CONFIG_NETFILTER is not set
50637 -# CONFIG_IP_DCCP is not set
50638 -# CONFIG_IP_SCTP is not set
50639 -# CONFIG_TIPC is not set
50640 -# CONFIG_ATM is not set
50641 -# CONFIG_BRIDGE is not set
50642 -# CONFIG_VLAN_8021Q is not set
50643 -# CONFIG_DECNET is not set
50644 -# CONFIG_LLC2 is not set
50645 -# CONFIG_IPX is not set
50646 -# CONFIG_ATALK is not set
50647 -# CONFIG_X25 is not set
50648 -# CONFIG_LAPB is not set
50649 -# CONFIG_ECONET is not set
50650 -# CONFIG_WAN_ROUTER is not set
50651 -# CONFIG_NET_SCHED is not set
50652 -
50653 -#
50654 -# Network testing
50655 -#
50656 -# CONFIG_NET_PKTGEN is not set
50657 -# CONFIG_HAMRADIO is not set
50658 -# CONFIG_CAN is not set
50659 -# CONFIG_IRDA is not set
50660 -# CONFIG_BT is not set
50661 -# CONFIG_AF_RXRPC is not set
50662 -
50663 -#
50664 -# Wireless
50665 -#
50666 -# CONFIG_CFG80211 is not set
50667 -# CONFIG_WIRELESS_EXT is not set
50668 -# CONFIG_MAC80211 is not set
50669 -# CONFIG_IEEE80211 is not set
50670 -# CONFIG_RFKILL is not set
50671 -# CONFIG_NET_9P is not set
50672 -
50673 -#
50674 -# Device Drivers
50675 -#
50676 -
50677 -#
50678 -# Generic Driver Options
50679 -#
50680 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
50681 -CONFIG_STANDALONE=y
50682 -CONFIG_PREVENT_FIRMWARE_BUILD=y
50683 -CONFIG_FW_LOADER=y
50684 -# CONFIG_DEBUG_DRIVER is not set
50685 -# CONFIG_DEBUG_DEVRES is not set
50686 -# CONFIG_SYS_HYPERVISOR is not set
50687 -CONFIG_CONNECTOR=y
50688 -CONFIG_PROC_EVENTS=y
50689 -CONFIG_MTD=y
50690 -# CONFIG_MTD_DEBUG is not set
50691 -# CONFIG_MTD_CONCAT is not set
50692 -CONFIG_MTD_PARTITIONS=y
50693 -# CONFIG_MTD_REDBOOT_PARTS is not set
50694 -CONFIG_MTD_CMDLINE_PARTS=y
50695 -CONFIG_MTD_OF_PARTS=y
50696 -
50697 -#
50698 -# User Modules And Translation Layers
50699 -#
50700 -CONFIG_MTD_CHAR=y
50701 -CONFIG_MTD_BLKDEVS=m
50702 -CONFIG_MTD_BLOCK=m
50703 -# CONFIG_MTD_BLOCK_RO is not set
50704 -# CONFIG_FTL is not set
50705 -# CONFIG_NFTL is not set
50706 -# CONFIG_INFTL is not set
50707 -# CONFIG_RFD_FTL is not set
50708 -# CONFIG_SSFDC is not set
50709 -# CONFIG_MTD_OOPS is not set
50710 -
50711 -#
50712 -# RAM/ROM/Flash chip drivers
50713 -#
50714 -CONFIG_MTD_CFI=y
50715 -CONFIG_MTD_JEDECPROBE=y
50716 -CONFIG_MTD_GEN_PROBE=y
50717 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
50718 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
50719 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
50720 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
50721 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
50722 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
50723 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
50724 -CONFIG_MTD_CFI_I1=y
50725 -CONFIG_MTD_CFI_I2=y
50726 -# CONFIG_MTD_CFI_I4 is not set
50727 -# CONFIG_MTD_CFI_I8 is not set
50728 -# CONFIG_MTD_CFI_INTELEXT is not set
50729 -CONFIG_MTD_CFI_AMDSTD=y
50730 -# CONFIG_MTD_CFI_STAA is not set
50731 -CONFIG_MTD_CFI_UTIL=y
50732 -# CONFIG_MTD_RAM is not set
50733 -# CONFIG_MTD_ROM is not set
50734 -# CONFIG_MTD_ABSENT is not set
50735 -
50736 -#
50737 -# Mapping drivers for chip access
50738 -#
50739 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
50740 -# CONFIG_MTD_PHYSMAP is not set
50741 -CONFIG_MTD_PHYSMAP_OF=y
50742 -# CONFIG_MTD_INTEL_VR_NOR is not set
50743 -# CONFIG_MTD_PLATRAM is not set
50744 -
50745 -#
50746 -# Self-contained MTD device drivers
50747 -#
50748 -# CONFIG_MTD_PMC551 is not set
50749 -# CONFIG_MTD_SLRAM is not set
50750 -# CONFIG_MTD_PHRAM is not set
50751 -# CONFIG_MTD_MTDRAM is not set
50752 -# CONFIG_MTD_BLOCK2MTD is not set
50753 -
50754 -#
50755 -# Disk-On-Chip Device Drivers
50756 -#
50757 -# CONFIG_MTD_DOC2000 is not set
50758 -# CONFIG_MTD_DOC2001 is not set
50759 -# CONFIG_MTD_DOC2001PLUS is not set
50760 -# CONFIG_MTD_NAND is not set
50761 -# CONFIG_MTD_ONENAND is not set
50762 -
50763 -#
50764 -# UBI - Unsorted block images
50765 -#
50766 -# CONFIG_MTD_UBI is not set
50767 -CONFIG_OF_DEVICE=y
50768 -# CONFIG_PARPORT is not set
50769 -CONFIG_BLK_DEV=y
50770 -# CONFIG_BLK_DEV_FD is not set
50771 -# CONFIG_BLK_CPQ_DA is not set
50772 -# CONFIG_BLK_CPQ_CISS_DA is not set
50773 -# CONFIG_BLK_DEV_DAC960 is not set
50774 -# CONFIG_BLK_DEV_UMEM is not set
50775 -# CONFIG_BLK_DEV_COW_COMMON is not set
50776 -# CONFIG_BLK_DEV_LOOP is not set
50777 -# CONFIG_BLK_DEV_NBD is not set
50778 -# CONFIG_BLK_DEV_SX8 is not set
50779 -# CONFIG_BLK_DEV_UB is not set
50780 -CONFIG_BLK_DEV_RAM=y
50781 -CONFIG_BLK_DEV_RAM_COUNT=16
50782 -CONFIG_BLK_DEV_RAM_SIZE=35000
50783 -# CONFIG_BLK_DEV_XIP is not set
50784 -# CONFIG_CDROM_PKTCDVD is not set
50785 -# CONFIG_ATA_OVER_ETH is not set
50786 -# CONFIG_XILINX_SYSACE is not set
50787 -CONFIG_MISC_DEVICES=y
50788 -# CONFIG_PHANTOM is not set
50789 -# CONFIG_EEPROM_93CX6 is not set
50790 -# CONFIG_SGI_IOC4 is not set
50791 -# CONFIG_TIFM_CORE is not set
50792 -# CONFIG_ENCLOSURE_SERVICES is not set
50793 -CONFIG_HAVE_IDE=y
50794 -# CONFIG_IDE is not set
50795 -
50796 -#
50797 -# SCSI device support
50798 -#
50799 -# CONFIG_RAID_ATTRS is not set
50800 -# CONFIG_SCSI is not set
50801 -# CONFIG_SCSI_DMA is not set
50802 -# CONFIG_SCSI_NETLINK is not set
50803 -# CONFIG_ATA is not set
50804 -# CONFIG_MD is not set
50805 -# CONFIG_FUSION is not set
50806 -
50807 -#
50808 -# IEEE 1394 (FireWire) support
50809 -#
50810 -# CONFIG_FIREWIRE is not set
50811 -# CONFIG_IEEE1394 is not set
50812 -# CONFIG_I2O is not set
50813 -# CONFIG_MACINTOSH_DRIVERS is not set
50814 -CONFIG_NETDEVICES=y
50815 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
50816 -# CONFIG_DUMMY is not set
50817 -# CONFIG_BONDING is not set
50818 -# CONFIG_MACVLAN is not set
50819 -# CONFIG_EQUALIZER is not set
50820 -# CONFIG_TUN is not set
50821 -# CONFIG_VETH is not set
50822 -# CONFIG_ARCNET is not set
50823 -# CONFIG_PHYLIB is not set
50824 -CONFIG_NET_ETHERNET=y
50825 -# CONFIG_MII is not set
50826 -# CONFIG_HAPPYMEAL is not set
50827 -# CONFIG_SUNGEM is not set
50828 -# CONFIG_CASSINI is not set
50829 -# CONFIG_NET_VENDOR_3COM is not set
50830 -# CONFIG_NET_TULIP is not set
50831 -# CONFIG_HP100 is not set
50832 -CONFIG_IBM_NEW_EMAC=y
50833 -CONFIG_IBM_NEW_EMAC_RXB=128
50834 -CONFIG_IBM_NEW_EMAC_TXB=64
50835 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
50836 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
50837 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
50838 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
50839 -CONFIG_IBM_NEW_EMAC_ZMII=y
50840 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
50841 -# CONFIG_IBM_NEW_EMAC_TAH is not set
50842 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
50843 -# CONFIG_NET_PCI is not set
50844 -# CONFIG_B44 is not set
50845 -CONFIG_NETDEV_1000=y
50846 -# CONFIG_ACENIC is not set
50847 -# CONFIG_DL2K is not set
50848 -# CONFIG_E1000 is not set
50849 -# CONFIG_E1000E is not set
50850 -# CONFIG_E1000E_ENABLED is not set
50851 -# CONFIG_IP1000 is not set
50852 -# CONFIG_IGB is not set
50853 -# CONFIG_NS83820 is not set
50854 -# CONFIG_HAMACHI is not set
50855 -# CONFIG_YELLOWFIN is not set
50856 -# CONFIG_R8169 is not set
50857 -# CONFIG_SIS190 is not set
50858 -# CONFIG_SKGE is not set
50859 -# CONFIG_SKY2 is not set
50860 -# CONFIG_SK98LIN is not set
50861 -# CONFIG_VIA_VELOCITY is not set
50862 -# CONFIG_TIGON3 is not set
50863 -# CONFIG_BNX2 is not set
50864 -# CONFIG_QLA3XXX is not set
50865 -# CONFIG_ATL1 is not set
50866 -CONFIG_NETDEV_10000=y
50867 -# CONFIG_CHELSIO_T1 is not set
50868 -# CONFIG_CHELSIO_T3 is not set
50869 -# CONFIG_IXGBE is not set
50870 -# CONFIG_IXGB is not set
50871 -# CONFIG_S2IO is not set
50872 -# CONFIG_MYRI10GE is not set
50873 -# CONFIG_NETXEN_NIC is not set
50874 -# CONFIG_NIU is not set
50875 -# CONFIG_MLX4_CORE is not set
50876 -# CONFIG_TEHUTI is not set
50877 -# CONFIG_BNX2X is not set
50878 -# CONFIG_TR is not set
50879 -
50880 -#
50881 -# Wireless LAN
50882 -#
50883 -# CONFIG_WLAN_PRE80211 is not set
50884 -# CONFIG_WLAN_80211 is not set
50885 -
50886 -#
50887 -# USB Network Adapters
50888 -#
50889 -# CONFIG_USB_CATC is not set
50890 -# CONFIG_USB_KAWETH is not set
50891 -# CONFIG_USB_PEGASUS is not set
50892 -# CONFIG_USB_RTL8150 is not set
50893 -# CONFIG_USB_USBNET is not set
50894 -# CONFIG_WAN is not set
50895 -# CONFIG_FDDI is not set
50896 -# CONFIG_HIPPI is not set
50897 -# CONFIG_PPP is not set
50898 -# CONFIG_SLIP is not set
50899 -# CONFIG_NETCONSOLE is not set
50900 -# CONFIG_NETPOLL is not set
50901 -# CONFIG_NET_POLL_CONTROLLER is not set
50902 -# CONFIG_ISDN is not set
50903 -# CONFIG_PHONE is not set
50904 -
50905 -#
50906 -# Input device support
50907 -#
50908 -# CONFIG_INPUT is not set
50909 -
50910 -#
50911 -# Hardware I/O ports
50912 -#
50913 -# CONFIG_SERIO is not set
50914 -# CONFIG_GAMEPORT is not set
50915 -
50916 -#
50917 -# Character devices
50918 -#
50919 -# CONFIG_VT is not set
50920 -# CONFIG_SERIAL_NONSTANDARD is not set
50921 -# CONFIG_NOZOMI is not set
50922 -
50923 -#
50924 -# Serial drivers
50925 -#
50926 -CONFIG_SERIAL_8250=y
50927 -CONFIG_SERIAL_8250_CONSOLE=y
50928 -CONFIG_SERIAL_8250_PCI=y
50929 -CONFIG_SERIAL_8250_NR_UARTS=4
50930 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
50931 -CONFIG_SERIAL_8250_EXTENDED=y
50932 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
50933 -CONFIG_SERIAL_8250_SHARE_IRQ=y
50934 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
50935 -# CONFIG_SERIAL_8250_RSA is not set
50936 -
50937 -#
50938 -# Non-8250 serial port support
50939 -#
50940 -# CONFIG_SERIAL_UARTLITE is not set
50941 -CONFIG_SERIAL_CORE=y
50942 -CONFIG_SERIAL_CORE_CONSOLE=y
50943 -# CONFIG_SERIAL_JSM is not set
50944 -CONFIG_SERIAL_OF_PLATFORM=y
50945 -CONFIG_UNIX98_PTYS=y
50946 -CONFIG_LEGACY_PTYS=y
50947 -CONFIG_LEGACY_PTY_COUNT=256
50948 -# CONFIG_IPMI_HANDLER is not set
50949 -# CONFIG_HW_RANDOM is not set
50950 -# CONFIG_NVRAM is not set
50951 -# CONFIG_GEN_RTC is not set
50952 -# CONFIG_R3964 is not set
50953 -# CONFIG_APPLICOM is not set
50954 -# CONFIG_RAW_DRIVER is not set
50955 -# CONFIG_TCG_TPM is not set
50956 -CONFIG_DEVPORT=y
50957 -# CONFIG_I2C is not set
50958 -
50959 -#
50960 -# SPI support
50961 -#
50962 -# CONFIG_SPI is not set
50963 -# CONFIG_SPI_MASTER is not set
50964 -# CONFIG_W1 is not set
50965 -# CONFIG_POWER_SUPPLY is not set
50966 -# CONFIG_HWMON is not set
50967 -CONFIG_THERMAL=y
50968 -# CONFIG_WATCHDOG is not set
50969 -
50970 -#
50971 -# Sonics Silicon Backplane
50972 -#
50973 -CONFIG_SSB_POSSIBLE=y
50974 -# CONFIG_SSB is not set
50975 -
50976 -#
50977 -# Multifunction device drivers
50978 -#
50979 -# CONFIG_MFD_SM501 is not set
50980 -
50981 -#
50982 -# Multimedia devices
50983 -#
50984 -# CONFIG_VIDEO_DEV is not set
50985 -# CONFIG_DVB_CORE is not set
50986 -# CONFIG_DAB is not set
50987 -
50988 -#
50989 -# Graphics support
50990 -#
50991 -# CONFIG_AGP is not set
50992 -# CONFIG_DRM is not set
50993 -# CONFIG_VGASTATE is not set
50994 -CONFIG_VIDEO_OUTPUT_CONTROL=m
50995 -# CONFIG_FB is not set
50996 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
50997 -
50998 -#
50999 -# Display device support
51000 -#
51001 -# CONFIG_DISPLAY_SUPPORT is not set
51002 -
51003 -#
51004 -# Sound
51005 -#
51006 -# CONFIG_SOUND is not set
51007 -CONFIG_USB_SUPPORT=y
51008 -CONFIG_USB_ARCH_HAS_HCD=y
51009 -CONFIG_USB_ARCH_HAS_OHCI=y
51010 -CONFIG_USB_ARCH_HAS_EHCI=y
51011 -CONFIG_USB=y
51012 -# CONFIG_USB_DEBUG is not set
51013 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
51014 -
51015 -#
51016 -# Miscellaneous USB options
51017 -#
51018 -CONFIG_USB_DEVICEFS=y
51019 -CONFIG_USB_DEVICE_CLASS=y
51020 -# CONFIG_USB_DYNAMIC_MINORS is not set
51021 -# CONFIG_USB_OTG is not set
51022 -
51023 -#
51024 -# USB Host Controller Drivers
51025 -#
51026 -# CONFIG_USB_EHCI_HCD is not set
51027 -# CONFIG_USB_ISP116X_HCD is not set
51028 -CONFIG_USB_OHCI_HCD=y
51029 -CONFIG_USB_OHCI_HCD_PPC_OF=y
51030 -CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
51031 -CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
51032 -CONFIG_USB_OHCI_HCD_PCI=y
51033 -CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
51034 -CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
51035 -CONFIG_USB_OHCI_LITTLE_ENDIAN=y
51036 -# CONFIG_USB_UHCI_HCD is not set
51037 -# CONFIG_USB_SL811_HCD is not set
51038 -# CONFIG_USB_R8A66597_HCD is not set
51039 -
51040 -#
51041 -# USB Device Class drivers
51042 -#
51043 -# CONFIG_USB_ACM is not set
51044 -# CONFIG_USB_PRINTER is not set
51045 -
51046 -#
51047 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
51048 -#
51049 -
51050 -#
51051 -# may also be needed; see USB_STORAGE Help for more information
51052 -#
51053 -# CONFIG_USB_LIBUSUAL is not set
51054 -
51055 -#
51056 -# USB Imaging devices
51057 -#
51058 -# CONFIG_USB_MDC800 is not set
51059 -CONFIG_USB_MON=y
51060 -
51061 -#
51062 -# USB port drivers
51063 -#
51064 -# CONFIG_USB_SERIAL is not set
51065 -
51066 -#
51067 -# USB Miscellaneous drivers
51068 -#
51069 -# CONFIG_USB_EMI62 is not set
51070 -# CONFIG_USB_EMI26 is not set
51071 -# CONFIG_USB_ADUTUX is not set
51072 -# CONFIG_USB_AUERSWALD is not set
51073 -# CONFIG_USB_RIO500 is not set
51074 -# CONFIG_USB_LEGOTOWER is not set
51075 -# CONFIG_USB_LCD is not set
51076 -# CONFIG_USB_BERRY_CHARGE is not set
51077 -# CONFIG_USB_LED is not set
51078 -# CONFIG_USB_CYPRESS_CY7C63 is not set
51079 -# CONFIG_USB_CYTHERM is not set
51080 -# CONFIG_USB_PHIDGET is not set
51081 -# CONFIG_USB_IDMOUSE is not set
51082 -# CONFIG_USB_FTDI_ELAN is not set
51083 -# CONFIG_USB_APPLEDISPLAY is not set
51084 -# CONFIG_USB_LD is not set
51085 -# CONFIG_USB_TRANCEVIBRATOR is not set
51086 -# CONFIG_USB_IOWARRIOR is not set
51087 -# CONFIG_USB_TEST is not set
51088 -# CONFIG_USB_GADGET is not set
51089 -# CONFIG_MMC is not set
51090 -# CONFIG_MEMSTICK is not set
51091 -# CONFIG_NEW_LEDS is not set
51092 -# CONFIG_INFINIBAND is not set
51093 -# CONFIG_EDAC is not set
51094 -# CONFIG_RTC_CLASS is not set
51095 -
51096 -#
51097 -# Userspace I/O
51098 -#
51099 -# CONFIG_UIO is not set
51100 -
51101 -#
51102 -# File systems
51103 -#
51104 -CONFIG_EXT2_FS=y
51105 -# CONFIG_EXT2_FS_XATTR is not set
51106 -# CONFIG_EXT2_FS_XIP is not set
51107 -# CONFIG_EXT3_FS is not set
51108 -# CONFIG_EXT4DEV_FS is not set
51109 -# CONFIG_REISERFS_FS is not set
51110 -# CONFIG_JFS_FS is not set
51111 -# CONFIG_FS_POSIX_ACL is not set
51112 -# CONFIG_XFS_FS is not set
51113 -# CONFIG_GFS2_FS is not set
51114 -# CONFIG_OCFS2_FS is not set
51115 -CONFIG_DNOTIFY=y
51116 -CONFIG_INOTIFY=y
51117 -CONFIG_INOTIFY_USER=y
51118 -# CONFIG_QUOTA is not set
51119 -# CONFIG_AUTOFS_FS is not set
51120 -# CONFIG_AUTOFS4_FS is not set
51121 -# CONFIG_FUSE_FS is not set
51122 -
51123 -#
51124 -# CD-ROM/DVD Filesystems
51125 -#
51126 -# CONFIG_ISO9660_FS is not set
51127 -# CONFIG_UDF_FS is not set
51128 -
51129 -#
51130 -# DOS/FAT/NT Filesystems
51131 -#
51132 -# CONFIG_MSDOS_FS is not set
51133 -# CONFIG_VFAT_FS is not set
51134 -# CONFIG_NTFS_FS is not set
51135 -
51136 -#
51137 -# Pseudo filesystems
51138 -#
51139 -CONFIG_PROC_FS=y
51140 -CONFIG_PROC_KCORE=y
51141 -CONFIG_PROC_SYSCTL=y
51142 -CONFIG_SYSFS=y
51143 -CONFIG_TMPFS=y
51144 -# CONFIG_TMPFS_POSIX_ACL is not set
51145 -# CONFIG_HUGETLB_PAGE is not set
51146 -# CONFIG_CONFIGFS_FS is not set
51147 -
51148 -#
51149 -# Miscellaneous filesystems
51150 -#
51151 -# CONFIG_ADFS_FS is not set
51152 -# CONFIG_AFFS_FS is not set
51153 -# CONFIG_HFS_FS is not set
51154 -# CONFIG_HFSPLUS_FS is not set
51155 -# CONFIG_BEFS_FS is not set
51156 -# CONFIG_BFS_FS is not set
51157 -# CONFIG_EFS_FS is not set
51158 -# CONFIG_JFFS2_FS is not set
51159 -CONFIG_CRAMFS=y
51160 -# CONFIG_VXFS_FS is not set
51161 -# CONFIG_MINIX_FS is not set
51162 -# CONFIG_HPFS_FS is not set
51163 -# CONFIG_QNX4FS_FS is not set
51164 -# CONFIG_ROMFS_FS is not set
51165 -# CONFIG_SYSV_FS is not set
51166 -# CONFIG_UFS_FS is not set
51167 -CONFIG_NETWORK_FILESYSTEMS=y
51168 -CONFIG_NFS_FS=y
51169 -CONFIG_NFS_V3=y
51170 -# CONFIG_NFS_V3_ACL is not set
51171 -# CONFIG_NFS_V4 is not set
51172 -# CONFIG_NFS_DIRECTIO is not set
51173 -# CONFIG_NFSD is not set
51174 -CONFIG_ROOT_NFS=y
51175 -CONFIG_LOCKD=y
51176 -CONFIG_LOCKD_V4=y
51177 -CONFIG_NFS_COMMON=y
51178 -CONFIG_SUNRPC=y
51179 -# CONFIG_SUNRPC_BIND34 is not set
51180 -# CONFIG_RPCSEC_GSS_KRB5 is not set
51181 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
51182 -# CONFIG_SMB_FS is not set
51183 -# CONFIG_CIFS is not set
51184 -# CONFIG_NCP_FS is not set
51185 -# CONFIG_CODA_FS is not set
51186 -# CONFIG_AFS_FS is not set
51187 -
51188 -#
51189 -# Partition Types
51190 -#
51191 -# CONFIG_PARTITION_ADVANCED is not set
51192 -CONFIG_MSDOS_PARTITION=y
51193 -# CONFIG_NLS is not set
51194 -# CONFIG_DLM is not set
51195 -
51196 -#
51197 -# Library routines
51198 -#
51199 -CONFIG_BITREVERSE=y
51200 -# CONFIG_CRC_CCITT is not set
51201 -# CONFIG_CRC16 is not set
51202 -# CONFIG_CRC_ITU_T is not set
51203 -CONFIG_CRC32=y
51204 -# CONFIG_CRC7 is not set
51205 -# CONFIG_LIBCRC32C is not set
51206 -CONFIG_ZLIB_INFLATE=y
51207 -CONFIG_PLIST=y
51208 -CONFIG_HAS_IOMEM=y
51209 -CONFIG_HAS_IOPORT=y
51210 -CONFIG_HAS_DMA=y
51211 -
51212 -#
51213 -# Kernel hacking
51214 -#
51215 -# CONFIG_PRINTK_TIME is not set
51216 -CONFIG_ENABLE_WARN_DEPRECATED=y
51217 -CONFIG_ENABLE_MUST_CHECK=y
51218 -CONFIG_MAGIC_SYSRQ=y
51219 -# CONFIG_UNUSED_SYMBOLS is not set
51220 -CONFIG_DEBUG_FS=y
51221 -# CONFIG_HEADERS_CHECK is not set
51222 -CONFIG_DEBUG_KERNEL=y
51223 -# CONFIG_DEBUG_SHIRQ is not set
51224 -CONFIG_DETECT_SOFTLOCKUP=y
51225 -CONFIG_SCHED_DEBUG=y
51226 -# CONFIG_SCHEDSTATS is not set
51227 -# CONFIG_TIMER_STATS is not set
51228 -# CONFIG_SLUB_DEBUG_ON is not set
51229 -# CONFIG_SLUB_STATS is not set
51230 -# CONFIG_DEBUG_RT_MUTEXES is not set
51231 -# CONFIG_RT_MUTEX_TESTER is not set
51232 -# CONFIG_DEBUG_SPINLOCK is not set
51233 -# CONFIG_DEBUG_MUTEXES is not set
51234 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
51235 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
51236 -# CONFIG_DEBUG_KOBJECT is not set
51237 -CONFIG_DEBUG_BUGVERBOSE=y
51238 -# CONFIG_DEBUG_INFO is not set
51239 -# CONFIG_DEBUG_VM is not set
51240 -# CONFIG_DEBUG_LIST is not set
51241 -# CONFIG_DEBUG_SG is not set
51242 -# CONFIG_BOOT_PRINTK_DELAY is not set
51243 -# CONFIG_RCU_TORTURE_TEST is not set
51244 -# CONFIG_BACKTRACE_SELF_TEST is not set
51245 -# CONFIG_FAULT_INJECTION is not set
51246 -# CONFIG_SAMPLES is not set
51247 -# CONFIG_DEBUG_STACKOVERFLOW is not set
51248 -# CONFIG_DEBUG_STACK_USAGE is not set
51249 -# CONFIG_DEBUG_PAGEALLOC is not set
51250 -# CONFIG_DEBUGGER is not set
51251 -# CONFIG_VIRQ_DEBUG is not set
51252 -# CONFIG_BDI_SWITCH is not set
51253 -# CONFIG_PPC_EARLY_DEBUG is not set
51254 -
51255 -#
51256 -# Security options
51257 -#
51258 -# CONFIG_KEYS is not set
51259 -# CONFIG_SECURITY is not set
51260 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
51261 -CONFIG_CRYPTO=y
51262 -CONFIG_CRYPTO_ALGAPI=y
51263 -CONFIG_CRYPTO_BLKCIPHER=y
51264 -# CONFIG_CRYPTO_SEQIV is not set
51265 -CONFIG_CRYPTO_MANAGER=y
51266 -# CONFIG_CRYPTO_HMAC is not set
51267 -# CONFIG_CRYPTO_XCBC is not set
51268 -# CONFIG_CRYPTO_NULL is not set
51269 -# CONFIG_CRYPTO_MD4 is not set
51270 -CONFIG_CRYPTO_MD5=y
51271 -# CONFIG_CRYPTO_SHA1 is not set
51272 -# CONFIG_CRYPTO_SHA256 is not set
51273 -# CONFIG_CRYPTO_SHA512 is not set
51274 -# CONFIG_CRYPTO_WP512 is not set
51275 -# CONFIG_CRYPTO_TGR192 is not set
51276 -# CONFIG_CRYPTO_GF128MUL is not set
51277 -CONFIG_CRYPTO_ECB=y
51278 -CONFIG_CRYPTO_CBC=y
51279 -CONFIG_CRYPTO_PCBC=y
51280 -# CONFIG_CRYPTO_LRW is not set
51281 -# CONFIG_CRYPTO_XTS is not set
51282 -# CONFIG_CRYPTO_CTR is not set
51283 -# CONFIG_CRYPTO_GCM is not set
51284 -# CONFIG_CRYPTO_CCM is not set
51285 -# CONFIG_CRYPTO_CRYPTD is not set
51286 -CONFIG_CRYPTO_DES=y
51287 -# CONFIG_CRYPTO_FCRYPT is not set
51288 -# CONFIG_CRYPTO_BLOWFISH is not set
51289 -# CONFIG_CRYPTO_TWOFISH is not set
51290 -# CONFIG_CRYPTO_SERPENT is not set
51291 -# CONFIG_CRYPTO_AES is not set
51292 -# CONFIG_CRYPTO_CAST5 is not set
51293 -# CONFIG_CRYPTO_CAST6 is not set
51294 -# CONFIG_CRYPTO_TEA is not set
51295 -# CONFIG_CRYPTO_ARC4 is not set
51296 -# CONFIG_CRYPTO_KHAZAD is not set
51297 -# CONFIG_CRYPTO_ANUBIS is not set
51298 -# CONFIG_CRYPTO_SEED is not set
51299 -# CONFIG_CRYPTO_SALSA20 is not set
51300 -# CONFIG_CRYPTO_DEFLATE is not set
51301 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
51302 -# CONFIG_CRYPTO_CRC32C is not set
51303 -# CONFIG_CRYPTO_CAMELLIA is not set
51304 -# CONFIG_CRYPTO_TEST is not set
51305 -# CONFIG_CRYPTO_AUTHENC is not set
51306 -# CONFIG_CRYPTO_LZO is not set
51307 -CONFIG_CRYPTO_HW=y
51308 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
51309 -# CONFIG_PPC_CLOCK is not set
51310 Index: linux-2.6.25.4/arch/powerpc/configs/g5_defconfig
51311 ===================================================================
51312 --- linux-2.6.25.4.orig/arch/powerpc/configs/g5_defconfig
51313 +++ linux-2.6.25.4/arch/powerpc/configs/g5_defconfig
51314 @@ -1,7 +1,7 @@
51315 #
51316 # Automatically generated make config: don't edit
51317 # Linux kernel version: 2.6.25-rc6
51318 -# Thu Mar 20 10:36:41 2008
51319 +# Thu Mar 27 13:55:43 2008
51320 #
51321 CONFIG_PPC64=y
51322
51323 @@ -77,8 +77,6 @@ CONFIG_IKCONFIG_PROC=y
51324 CONFIG_LOG_BUF_SHIFT=17
51325 # CONFIG_CGROUPS is not set
51326 # CONFIG_GROUP_SCHED is not set
51327 -# CONFIG_USER_SCHED is not set
51328 -# CONFIG_CGROUP_SCHED is not set
51329 CONFIG_SYSFS_DEPRECATED=y
51330 CONFIG_SYSFS_DEPRECATED_V2=y
51331 # CONFIG_RELAY is not set
51332 @@ -276,7 +274,7 @@ CONFIG_PCI_SYSCALL=y
51333 # CONFIG_PCIEPORTBUS is not set
51334 CONFIG_ARCH_SUPPORTS_MSI=y
51335 CONFIG_PCI_MSI=y
51336 -CONFIG_PCI_LEGACY=y
51337 +# CONFIG_PCI_LEGACY is not set
51338 # CONFIG_PCI_DEBUG is not set
51339 # CONFIG_PCCARD is not set
51340 # CONFIG_HOTPLUG_PCI is not set
51341 @@ -1596,6 +1594,7 @@ CONFIG_PLIST=y
51342 CONFIG_HAS_IOMEM=y
51343 CONFIG_HAS_IOPORT=y
51344 CONFIG_HAS_DMA=y
51345 +CONFIG_HAVE_LMB=y
51346
51347 #
51348 # Kernel hacking
51349 Index: linux-2.6.25.4/arch/powerpc/configs/iseries_defconfig
51350 ===================================================================
51351 --- linux-2.6.25.4.orig/arch/powerpc/configs/iseries_defconfig
51352 +++ linux-2.6.25.4/arch/powerpc/configs/iseries_defconfig
51353 @@ -1,7 +1,7 @@
51354 #
51355 # Automatically generated make config: don't edit
51356 # Linux kernel version: 2.6.25-rc6
51357 -# Thu Mar 20 10:43:46 2008
51358 +# Thu Mar 27 13:55:45 2008
51359 #
51360 CONFIG_PPC64=y
51361
51362 @@ -77,8 +77,6 @@ CONFIG_IKCONFIG_PROC=y
51363 CONFIG_LOG_BUF_SHIFT=17
51364 # CONFIG_CGROUPS is not set
51365 # CONFIG_GROUP_SCHED is not set
51366 -# CONFIG_USER_SCHED is not set
51367 -# CONFIG_CGROUP_SCHED is not set
51368 CONFIG_SYSFS_DEPRECATED=y
51369 CONFIG_SYSFS_DEPRECATED_V2=y
51370 # CONFIG_RELAY is not set
51371 @@ -261,7 +259,7 @@ CONFIG_PCI_SYSCALL=y
51372 # CONFIG_PCIEPORTBUS is not set
51373 CONFIG_ARCH_SUPPORTS_MSI=y
51374 # CONFIG_PCI_MSI is not set
51375 -CONFIG_PCI_LEGACY=y
51376 +# CONFIG_PCI_LEGACY is not set
51377 # CONFIG_PCI_DEBUG is not set
51378 # CONFIG_PCCARD is not set
51379 # CONFIG_HOTPLUG_PCI is not set
51380 @@ -1065,6 +1063,7 @@ CONFIG_PLIST=y
51381 CONFIG_HAS_IOMEM=y
51382 CONFIG_HAS_IOPORT=y
51383 CONFIG_HAS_DMA=y
51384 +CONFIG_HAVE_LMB=y
51385
51386 #
51387 # Kernel hacking
51388 Index: linux-2.6.25.4/arch/powerpc/configs/katmai_defconfig
51389 ===================================================================
51390 --- linux-2.6.25.4.orig/arch/powerpc/configs/katmai_defconfig
51391 +++ /dev/null
51392 @@ -1,790 +0,0 @@
51393 -#
51394 -# Automatically generated make config: don't edit
51395 -# Linux kernel version: 2.6.24-rc6
51396 -# Mon Dec 24 11:17:43 2007
51397 -#
51398 -# CONFIG_PPC64 is not set
51399 -
51400 -#
51401 -# Processor support
51402 -#
51403 -# CONFIG_6xx is not set
51404 -# CONFIG_PPC_85xx is not set
51405 -# CONFIG_PPC_8xx is not set
51406 -# CONFIG_40x is not set
51407 -CONFIG_44x=y
51408 -# CONFIG_E200 is not set
51409 -CONFIG_4xx=y
51410 -CONFIG_BOOKE=y
51411 -CONFIG_PTE_64BIT=y
51412 -CONFIG_PHYS_64BIT=y
51413 -# CONFIG_PPC_MM_SLICES is not set
51414 -CONFIG_NOT_COHERENT_CACHE=y
51415 -CONFIG_PPC32=y
51416 -CONFIG_WORD_SIZE=32
51417 -CONFIG_PPC_MERGE=y
51418 -CONFIG_MMU=y
51419 -CONFIG_GENERIC_CMOS_UPDATE=y
51420 -CONFIG_GENERIC_TIME=y
51421 -CONFIG_GENERIC_TIME_VSYSCALL=y
51422 -CONFIG_GENERIC_CLOCKEVENTS=y
51423 -CONFIG_GENERIC_HARDIRQS=y
51424 -CONFIG_IRQ_PER_CPU=y
51425 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
51426 -CONFIG_ARCH_HAS_ILOG2_U32=y
51427 -CONFIG_GENERIC_HWEIGHT=y
51428 -CONFIG_GENERIC_CALIBRATE_DELAY=y
51429 -CONFIG_GENERIC_FIND_NEXT_BIT=y
51430 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
51431 -CONFIG_PPC=y
51432 -CONFIG_EARLY_PRINTK=y
51433 -CONFIG_GENERIC_NVRAM=y
51434 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
51435 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
51436 -CONFIG_PPC_OF=y
51437 -CONFIG_OF=y
51438 -CONFIG_PPC_UDBG_16550=y
51439 -# CONFIG_GENERIC_TBSYNC is not set
51440 -CONFIG_AUDIT_ARCH=y
51441 -CONFIG_GENERIC_BUG=y
51442 -# CONFIG_DEFAULT_UIMAGE is not set
51443 -CONFIG_PPC_DCR_NATIVE=y
51444 -# CONFIG_PPC_DCR_MMIO is not set
51445 -CONFIG_PPC_DCR=y
51446 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
51447 -
51448 -#
51449 -# General setup
51450 -#
51451 -CONFIG_EXPERIMENTAL=y
51452 -CONFIG_BROKEN_ON_SMP=y
51453 -CONFIG_INIT_ENV_ARG_LIMIT=32
51454 -CONFIG_LOCALVERSION=""
51455 -CONFIG_LOCALVERSION_AUTO=y
51456 -CONFIG_SWAP=y
51457 -CONFIG_SYSVIPC=y
51458 -CONFIG_SYSVIPC_SYSCTL=y
51459 -CONFIG_POSIX_MQUEUE=y
51460 -# CONFIG_BSD_PROCESS_ACCT is not set
51461 -# CONFIG_TASKSTATS is not set
51462 -# CONFIG_USER_NS is not set
51463 -# CONFIG_PID_NS is not set
51464 -# CONFIG_AUDIT is not set
51465 -# CONFIG_IKCONFIG is not set
51466 -CONFIG_LOG_BUF_SHIFT=14
51467 -# CONFIG_CGROUPS is not set
51468 -CONFIG_FAIR_GROUP_SCHED=y
51469 -CONFIG_FAIR_USER_SCHED=y
51470 -# CONFIG_FAIR_CGROUP_SCHED is not set
51471 -CONFIG_SYSFS_DEPRECATED=y
51472 -# CONFIG_RELAY is not set
51473 -CONFIG_BLK_DEV_INITRD=y
51474 -CONFIG_INITRAMFS_SOURCE=""
51475 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
51476 -CONFIG_SYSCTL=y
51477 -CONFIG_EMBEDDED=y
51478 -CONFIG_SYSCTL_SYSCALL=y
51479 -CONFIG_KALLSYMS=y
51480 -# CONFIG_KALLSYMS_ALL is not set
51481 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
51482 -CONFIG_HOTPLUG=y
51483 -CONFIG_PRINTK=y
51484 -CONFIG_BUG=y
51485 -CONFIG_ELF_CORE=y
51486 -CONFIG_BASE_FULL=y
51487 -CONFIG_FUTEX=y
51488 -CONFIG_ANON_INODES=y
51489 -CONFIG_EPOLL=y
51490 -CONFIG_SIGNALFD=y
51491 -CONFIG_EVENTFD=y
51492 -CONFIG_SHMEM=y
51493 -CONFIG_VM_EVENT_COUNTERS=y
51494 -CONFIG_SLUB_DEBUG=y
51495 -# CONFIG_SLAB is not set
51496 -CONFIG_SLUB=y
51497 -# CONFIG_SLOB is not set
51498 -CONFIG_RT_MUTEXES=y
51499 -# CONFIG_TINY_SHMEM is not set
51500 -CONFIG_BASE_SMALL=0
51501 -CONFIG_MODULES=y
51502 -CONFIG_MODULE_UNLOAD=y
51503 -# CONFIG_MODULE_FORCE_UNLOAD is not set
51504 -# CONFIG_MODVERSIONS is not set
51505 -# CONFIG_MODULE_SRCVERSION_ALL is not set
51506 -CONFIG_KMOD=y
51507 -CONFIG_BLOCK=y
51508 -CONFIG_LBD=y
51509 -# CONFIG_BLK_DEV_IO_TRACE is not set
51510 -# CONFIG_LSF is not set
51511 -# CONFIG_BLK_DEV_BSG is not set
51512 -
51513 -#
51514 -# IO Schedulers
51515 -#
51516 -CONFIG_IOSCHED_NOOP=y
51517 -CONFIG_IOSCHED_AS=y
51518 -CONFIG_IOSCHED_DEADLINE=y
51519 -CONFIG_IOSCHED_CFQ=y
51520 -CONFIG_DEFAULT_AS=y
51521 -# CONFIG_DEFAULT_DEADLINE is not set
51522 -# CONFIG_DEFAULT_CFQ is not set
51523 -# CONFIG_DEFAULT_NOOP is not set
51524 -CONFIG_DEFAULT_IOSCHED="anticipatory"
51525 -CONFIG_PPC4xx_PCI_EXPRESS=y
51526 -
51527 -#
51528 -# Platform support
51529 -#
51530 -# CONFIG_PPC_MPC52xx is not set
51531 -# CONFIG_PPC_MPC5200 is not set
51532 -# CONFIG_PPC_CELL is not set
51533 -# CONFIG_PPC_CELL_NATIVE is not set
51534 -# CONFIG_PQ2ADS is not set
51535 -# CONFIG_BAMBOO is not set
51536 -# CONFIG_EBONY is not set
51537 -# CONFIG_SEQUOIA is not set
51538 -# CONFIG_TAISHAN is not set
51539 -CONFIG_KATMAI=y
51540 -# CONFIG_RAINIER is not set
51541 -CONFIG_440SPe=y
51542 -# CONFIG_MPIC is not set
51543 -# CONFIG_MPIC_WEIRD is not set
51544 -# CONFIG_PPC_I8259 is not set
51545 -# CONFIG_PPC_RTAS is not set
51546 -# CONFIG_MMIO_NVRAM is not set
51547 -# CONFIG_PPC_MPC106 is not set
51548 -# CONFIG_PPC_970_NAP is not set
51549 -# CONFIG_PPC_INDIRECT_IO is not set
51550 -# CONFIG_GENERIC_IOMAP is not set
51551 -# CONFIG_CPU_FREQ is not set
51552 -# CONFIG_CPM2 is not set
51553 -# CONFIG_FSL_ULI1575 is not set
51554 -
51555 -#
51556 -# Kernel options
51557 -#
51558 -# CONFIG_HIGHMEM is not set
51559 -# CONFIG_TICK_ONESHOT is not set
51560 -# CONFIG_NO_HZ is not set
51561 -# CONFIG_HIGH_RES_TIMERS is not set
51562 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
51563 -# CONFIG_HZ_100 is not set
51564 -CONFIG_HZ_250=y
51565 -# CONFIG_HZ_300 is not set
51566 -# CONFIG_HZ_1000 is not set
51567 -CONFIG_HZ=250
51568 -CONFIG_PREEMPT_NONE=y
51569 -# CONFIG_PREEMPT_VOLUNTARY is not set
51570 -# CONFIG_PREEMPT is not set
51571 -CONFIG_BINFMT_ELF=y
51572 -# CONFIG_BINFMT_MISC is not set
51573 -# CONFIG_MATH_EMULATION is not set
51574 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
51575 -CONFIG_ARCH_FLATMEM_ENABLE=y
51576 -CONFIG_ARCH_POPULATES_NODE_MAP=y
51577 -CONFIG_SELECT_MEMORY_MODEL=y
51578 -CONFIG_FLATMEM_MANUAL=y
51579 -# CONFIG_DISCONTIGMEM_MANUAL is not set
51580 -# CONFIG_SPARSEMEM_MANUAL is not set
51581 -CONFIG_FLATMEM=y
51582 -CONFIG_FLAT_NODE_MEM_MAP=y
51583 -# CONFIG_SPARSEMEM_STATIC is not set
51584 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
51585 -CONFIG_SPLIT_PTLOCK_CPUS=4
51586 -CONFIG_RESOURCES_64BIT=y
51587 -CONFIG_ZONE_DMA_FLAG=1
51588 -CONFIG_BOUNCE=y
51589 -CONFIG_VIRT_TO_BUS=y
51590 -CONFIG_PROC_DEVICETREE=y
51591 -CONFIG_CMDLINE_BOOL=y
51592 -CONFIG_CMDLINE=""
51593 -CONFIG_SECCOMP=y
51594 -CONFIG_WANT_DEVICE_TREE=y
51595 -CONFIG_DEVICE_TREE="katmai.dts"
51596 -CONFIG_ISA_DMA_API=y
51597 -
51598 -#
51599 -# Bus options
51600 -#
51601 -CONFIG_ZONE_DMA=y
51602 -CONFIG_PPC_INDIRECT_PCI=y
51603 -CONFIG_PCI=y
51604 -CONFIG_PCI_DOMAINS=y
51605 -CONFIG_PCI_SYSCALL=y
51606 -# CONFIG_PCIEPORTBUS is not set
51607 -CONFIG_ARCH_SUPPORTS_MSI=y
51608 -# CONFIG_PCI_MSI is not set
51609 -CONFIG_PCI_LEGACY=y
51610 -# CONFIG_PCI_DEBUG is not set
51611 -# CONFIG_PCCARD is not set
51612 -# CONFIG_HOTPLUG_PCI is not set
51613 -
51614 -#
51615 -# Advanced setup
51616 -#
51617 -# CONFIG_ADVANCED_OPTIONS is not set
51618 -
51619 -#
51620 -# Default settings for advanced configuration options are used
51621 -#
51622 -CONFIG_HIGHMEM_START=0xfe000000
51623 -CONFIG_LOWMEM_SIZE=0x30000000
51624 -CONFIG_KERNEL_START=0xc0000000
51625 -CONFIG_TASK_SIZE=0xc0000000
51626 -CONFIG_CONSISTENT_START=0xff100000
51627 -CONFIG_CONSISTENT_SIZE=0x00200000
51628 -CONFIG_BOOT_LOAD=0x01000000
51629 -
51630 -#
51631 -# Networking
51632 -#
51633 -CONFIG_NET=y
51634 -
51635 -#
51636 -# Networking options
51637 -#
51638 -CONFIG_PACKET=y
51639 -# CONFIG_PACKET_MMAP is not set
51640 -CONFIG_UNIX=y
51641 -# CONFIG_NET_KEY is not set
51642 -CONFIG_INET=y
51643 -# CONFIG_IP_MULTICAST is not set
51644 -# CONFIG_IP_ADVANCED_ROUTER is not set
51645 -CONFIG_IP_FIB_HASH=y
51646 -CONFIG_IP_PNP=y
51647 -CONFIG_IP_PNP_DHCP=y
51648 -CONFIG_IP_PNP_BOOTP=y
51649 -# CONFIG_IP_PNP_RARP is not set
51650 -# CONFIG_NET_IPIP is not set
51651 -# CONFIG_NET_IPGRE is not set
51652 -# CONFIG_ARPD is not set
51653 -# CONFIG_SYN_COOKIES is not set
51654 -# CONFIG_INET_AH is not set
51655 -# CONFIG_INET_ESP is not set
51656 -# CONFIG_INET_IPCOMP is not set
51657 -# CONFIG_INET_XFRM_TUNNEL is not set
51658 -# CONFIG_INET_TUNNEL is not set
51659 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
51660 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
51661 -# CONFIG_INET_XFRM_MODE_BEET is not set
51662 -# CONFIG_INET_LRO is not set
51663 -CONFIG_INET_DIAG=y
51664 -CONFIG_INET_TCP_DIAG=y
51665 -# CONFIG_TCP_CONG_ADVANCED is not set
51666 -CONFIG_TCP_CONG_CUBIC=y
51667 -CONFIG_DEFAULT_TCP_CONG="cubic"
51668 -# CONFIG_TCP_MD5SIG is not set
51669 -# CONFIG_IPV6 is not set
51670 -# CONFIG_INET6_XFRM_TUNNEL is not set
51671 -# CONFIG_INET6_TUNNEL is not set
51672 -# CONFIG_NETWORK_SECMARK is not set
51673 -# CONFIG_NETFILTER is not set
51674 -# CONFIG_IP_DCCP is not set
51675 -# CONFIG_IP_SCTP is not set
51676 -# CONFIG_TIPC is not set
51677 -# CONFIG_ATM is not set
51678 -# CONFIG_BRIDGE is not set
51679 -# CONFIG_VLAN_8021Q is not set
51680 -# CONFIG_DECNET is not set
51681 -# CONFIG_LLC2 is not set
51682 -# CONFIG_IPX is not set
51683 -# CONFIG_ATALK is not set
51684 -# CONFIG_X25 is not set
51685 -# CONFIG_LAPB is not set
51686 -# CONFIG_ECONET is not set
51687 -# CONFIG_WAN_ROUTER is not set
51688 -# CONFIG_NET_SCHED is not set
51689 -
51690 -#
51691 -# Network testing
51692 -#
51693 -# CONFIG_NET_PKTGEN is not set
51694 -# CONFIG_HAMRADIO is not set
51695 -# CONFIG_IRDA is not set
51696 -# CONFIG_BT is not set
51697 -# CONFIG_AF_RXRPC is not set
51698 -
51699 -#
51700 -# Wireless
51701 -#
51702 -# CONFIG_CFG80211 is not set
51703 -# CONFIG_WIRELESS_EXT is not set
51704 -# CONFIG_MAC80211 is not set
51705 -# CONFIG_IEEE80211 is not set
51706 -# CONFIG_RFKILL is not set
51707 -# CONFIG_NET_9P is not set
51708 -
51709 -#
51710 -# Device Drivers
51711 -#
51712 -
51713 -#
51714 -# Generic Driver Options
51715 -#
51716 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
51717 -CONFIG_STANDALONE=y
51718 -CONFIG_PREVENT_FIRMWARE_BUILD=y
51719 -CONFIG_FW_LOADER=y
51720 -# CONFIG_DEBUG_DRIVER is not set
51721 -# CONFIG_DEBUG_DEVRES is not set
51722 -# CONFIG_SYS_HYPERVISOR is not set
51723 -CONFIG_CONNECTOR=y
51724 -CONFIG_PROC_EVENTS=y
51725 -# CONFIG_MTD is not set
51726 -CONFIG_OF_DEVICE=y
51727 -# CONFIG_PARPORT is not set
51728 -CONFIG_BLK_DEV=y
51729 -# CONFIG_BLK_DEV_FD is not set
51730 -# CONFIG_BLK_CPQ_DA is not set
51731 -# CONFIG_BLK_CPQ_CISS_DA is not set
51732 -# CONFIG_BLK_DEV_DAC960 is not set
51733 -# CONFIG_BLK_DEV_UMEM is not set
51734 -# CONFIG_BLK_DEV_COW_COMMON is not set
51735 -# CONFIG_BLK_DEV_LOOP is not set
51736 -# CONFIG_BLK_DEV_NBD is not set
51737 -# CONFIG_BLK_DEV_SX8 is not set
51738 -CONFIG_BLK_DEV_RAM=y
51739 -CONFIG_BLK_DEV_RAM_COUNT=16
51740 -CONFIG_BLK_DEV_RAM_SIZE=35000
51741 -CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
51742 -# CONFIG_CDROM_PKTCDVD is not set
51743 -# CONFIG_ATA_OVER_ETH is not set
51744 -# CONFIG_XILINX_SYSACE is not set
51745 -CONFIG_MISC_DEVICES=y
51746 -# CONFIG_PHANTOM is not set
51747 -# CONFIG_EEPROM_93CX6 is not set
51748 -# CONFIG_SGI_IOC4 is not set
51749 -# CONFIG_TIFM_CORE is not set
51750 -# CONFIG_IDE is not set
51751 -
51752 -#
51753 -# SCSI device support
51754 -#
51755 -# CONFIG_RAID_ATTRS is not set
51756 -# CONFIG_SCSI is not set
51757 -# CONFIG_SCSI_DMA is not set
51758 -# CONFIG_SCSI_NETLINK is not set
51759 -# CONFIG_ATA is not set
51760 -# CONFIG_MD is not set
51761 -# CONFIG_FUSION is not set
51762 -
51763 -#
51764 -# IEEE 1394 (FireWire) support
51765 -#
51766 -# CONFIG_FIREWIRE is not set
51767 -# CONFIG_IEEE1394 is not set
51768 -# CONFIG_I2O is not set
51769 -CONFIG_MACINTOSH_DRIVERS=y
51770 -# CONFIG_MAC_EMUMOUSEBTN is not set
51771 -# CONFIG_WINDFARM is not set
51772 -CONFIG_NETDEVICES=y
51773 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
51774 -# CONFIG_DUMMY is not set
51775 -# CONFIG_BONDING is not set
51776 -# CONFIG_MACVLAN is not set
51777 -# CONFIG_EQUALIZER is not set
51778 -# CONFIG_TUN is not set
51779 -# CONFIG_VETH is not set
51780 -# CONFIG_IP1000 is not set
51781 -# CONFIG_ARCNET is not set
51782 -# CONFIG_PHYLIB is not set
51783 -CONFIG_NET_ETHERNET=y
51784 -# CONFIG_MII is not set
51785 -# CONFIG_HAPPYMEAL is not set
51786 -# CONFIG_SUNGEM is not set
51787 -# CONFIG_CASSINI is not set
51788 -# CONFIG_NET_VENDOR_3COM is not set
51789 -# CONFIG_NET_TULIP is not set
51790 -# CONFIG_HP100 is not set
51791 -CONFIG_IBM_NEW_EMAC=y
51792 -CONFIG_IBM_NEW_EMAC_RXB=128
51793 -CONFIG_IBM_NEW_EMAC_TXB=64
51794 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
51795 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
51796 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
51797 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
51798 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
51799 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
51800 -# CONFIG_IBM_NEW_EMAC_TAH is not set
51801 -CONFIG_IBM_NEW_EMAC_EMAC4=y
51802 -# CONFIG_NET_PCI is not set
51803 -# CONFIG_B44 is not set
51804 -CONFIG_NETDEV_1000=y
51805 -# CONFIG_ACENIC is not set
51806 -# CONFIG_DL2K is not set
51807 -# CONFIG_E1000 is not set
51808 -# CONFIG_E1000E is not set
51809 -# CONFIG_NS83820 is not set
51810 -# CONFIG_HAMACHI is not set
51811 -# CONFIG_YELLOWFIN is not set
51812 -# CONFIG_R8169 is not set
51813 -# CONFIG_SIS190 is not set
51814 -# CONFIG_SKGE is not set
51815 -# CONFIG_SKY2 is not set
51816 -# CONFIG_SK98LIN is not set
51817 -# CONFIG_VIA_VELOCITY is not set
51818 -# CONFIG_TIGON3 is not set
51819 -# CONFIG_BNX2 is not set
51820 -# CONFIG_QLA3XXX is not set
51821 -# CONFIG_ATL1 is not set
51822 -CONFIG_NETDEV_10000=y
51823 -# CONFIG_CHELSIO_T1 is not set
51824 -# CONFIG_CHELSIO_T3 is not set
51825 -# CONFIG_IXGBE is not set
51826 -# CONFIG_IXGB is not set
51827 -# CONFIG_S2IO is not set
51828 -# CONFIG_MYRI10GE is not set
51829 -# CONFIG_NETXEN_NIC is not set
51830 -# CONFIG_NIU is not set
51831 -# CONFIG_MLX4_CORE is not set
51832 -# CONFIG_TEHUTI is not set
51833 -# CONFIG_TR is not set
51834 -
51835 -#
51836 -# Wireless LAN
51837 -#
51838 -# CONFIG_WLAN_PRE80211 is not set
51839 -# CONFIG_WLAN_80211 is not set
51840 -# CONFIG_WAN is not set
51841 -# CONFIG_FDDI is not set
51842 -# CONFIG_HIPPI is not set
51843 -# CONFIG_PPP is not set
51844 -# CONFIG_SLIP is not set
51845 -# CONFIG_SHAPER is not set
51846 -# CONFIG_NETCONSOLE is not set
51847 -# CONFIG_NETPOLL is not set
51848 -# CONFIG_NET_POLL_CONTROLLER is not set
51849 -# CONFIG_ISDN is not set
51850 -# CONFIG_PHONE is not set
51851 -
51852 -#
51853 -# Input device support
51854 -#
51855 -# CONFIG_INPUT is not set
51856 -
51857 -#
51858 -# Hardware I/O ports
51859 -#
51860 -# CONFIG_SERIO is not set
51861 -# CONFIG_GAMEPORT is not set
51862 -
51863 -#
51864 -# Character devices
51865 -#
51866 -# CONFIG_VT is not set
51867 -# CONFIG_SERIAL_NONSTANDARD is not set
51868 -
51869 -#
51870 -# Serial drivers
51871 -#
51872 -CONFIG_SERIAL_8250=y
51873 -CONFIG_SERIAL_8250_CONSOLE=y
51874 -# CONFIG_SERIAL_8250_PCI is not set
51875 -CONFIG_SERIAL_8250_NR_UARTS=4
51876 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
51877 -CONFIG_SERIAL_8250_EXTENDED=y
51878 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
51879 -CONFIG_SERIAL_8250_SHARE_IRQ=y
51880 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
51881 -# CONFIG_SERIAL_8250_RSA is not set
51882 -
51883 -#
51884 -# Non-8250 serial port support
51885 -#
51886 -# CONFIG_SERIAL_UARTLITE is not set
51887 -CONFIG_SERIAL_CORE=y
51888 -CONFIG_SERIAL_CORE_CONSOLE=y
51889 -# CONFIG_SERIAL_JSM is not set
51890 -CONFIG_SERIAL_OF_PLATFORM=y
51891 -CONFIG_UNIX98_PTYS=y
51892 -CONFIG_LEGACY_PTYS=y
51893 -CONFIG_LEGACY_PTY_COUNT=256
51894 -# CONFIG_IPMI_HANDLER is not set
51895 -# CONFIG_HW_RANDOM is not set
51896 -# CONFIG_NVRAM is not set
51897 -# CONFIG_GEN_RTC is not set
51898 -# CONFIG_R3964 is not set
51899 -# CONFIG_APPLICOM is not set
51900 -# CONFIG_RAW_DRIVER is not set
51901 -# CONFIG_TCG_TPM is not set
51902 -CONFIG_DEVPORT=y
51903 -# CONFIG_I2C is not set
51904 -
51905 -#
51906 -# SPI support
51907 -#
51908 -# CONFIG_SPI is not set
51909 -# CONFIG_SPI_MASTER is not set
51910 -# CONFIG_W1 is not set
51911 -# CONFIG_POWER_SUPPLY is not set
51912 -# CONFIG_HWMON is not set
51913 -# CONFIG_WATCHDOG is not set
51914 -
51915 -#
51916 -# Sonics Silicon Backplane
51917 -#
51918 -CONFIG_SSB_POSSIBLE=y
51919 -# CONFIG_SSB is not set
51920 -
51921 -#
51922 -# Multifunction device drivers
51923 -#
51924 -# CONFIG_MFD_SM501 is not set
51925 -
51926 -#
51927 -# Multimedia devices
51928 -#
51929 -# CONFIG_VIDEO_DEV is not set
51930 -# CONFIG_DVB_CORE is not set
51931 -CONFIG_DAB=y
51932 -
51933 -#
51934 -# Graphics support
51935 -#
51936 -# CONFIG_AGP is not set
51937 -# CONFIG_DRM is not set
51938 -# CONFIG_VGASTATE is not set
51939 -CONFIG_VIDEO_OUTPUT_CONTROL=m
51940 -# CONFIG_FB is not set
51941 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
51942 -
51943 -#
51944 -# Display device support
51945 -#
51946 -# CONFIG_DISPLAY_SUPPORT is not set
51947 -
51948 -#
51949 -# Sound
51950 -#
51951 -# CONFIG_SOUND is not set
51952 -CONFIG_USB_SUPPORT=y
51953 -CONFIG_USB_ARCH_HAS_HCD=y
51954 -CONFIG_USB_ARCH_HAS_OHCI=y
51955 -CONFIG_USB_ARCH_HAS_EHCI=y
51956 -# CONFIG_USB is not set
51957 -
51958 -#
51959 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
51960 -#
51961 -
51962 -#
51963 -# USB Gadget Support
51964 -#
51965 -# CONFIG_USB_GADGET is not set
51966 -# CONFIG_MMC is not set
51967 -# CONFIG_NEW_LEDS is not set
51968 -# CONFIG_INFINIBAND is not set
51969 -# CONFIG_EDAC is not set
51970 -# CONFIG_RTC_CLASS is not set
51971 -
51972 -#
51973 -# Userspace I/O
51974 -#
51975 -# CONFIG_UIO is not set
51976 -
51977 -#
51978 -# File systems
51979 -#
51980 -CONFIG_EXT2_FS=y
51981 -# CONFIG_EXT2_FS_XATTR is not set
51982 -# CONFIG_EXT2_FS_XIP is not set
51983 -# CONFIG_EXT3_FS is not set
51984 -# CONFIG_EXT4DEV_FS is not set
51985 -# CONFIG_REISERFS_FS is not set
51986 -# CONFIG_JFS_FS is not set
51987 -# CONFIG_FS_POSIX_ACL is not set
51988 -# CONFIG_XFS_FS is not set
51989 -# CONFIG_GFS2_FS is not set
51990 -# CONFIG_OCFS2_FS is not set
51991 -# CONFIG_MINIX_FS is not set
51992 -# CONFIG_ROMFS_FS is not set
51993 -CONFIG_INOTIFY=y
51994 -CONFIG_INOTIFY_USER=y
51995 -# CONFIG_QUOTA is not set
51996 -CONFIG_DNOTIFY=y
51997 -# CONFIG_AUTOFS_FS is not set
51998 -# CONFIG_AUTOFS4_FS is not set
51999 -# CONFIG_FUSE_FS is not set
52000 -
52001 -#
52002 -# CD-ROM/DVD Filesystems
52003 -#
52004 -# CONFIG_ISO9660_FS is not set
52005 -# CONFIG_UDF_FS is not set
52006 -
52007 -#
52008 -# DOS/FAT/NT Filesystems
52009 -#
52010 -# CONFIG_MSDOS_FS is not set
52011 -# CONFIG_VFAT_FS is not set
52012 -# CONFIG_NTFS_FS is not set
52013 -
52014 -#
52015 -# Pseudo filesystems
52016 -#
52017 -CONFIG_PROC_FS=y
52018 -CONFIG_PROC_KCORE=y
52019 -CONFIG_PROC_SYSCTL=y
52020 -CONFIG_SYSFS=y
52021 -CONFIG_TMPFS=y
52022 -# CONFIG_TMPFS_POSIX_ACL is not set
52023 -# CONFIG_HUGETLB_PAGE is not set
52024 -# CONFIG_CONFIGFS_FS is not set
52025 -
52026 -#
52027 -# Miscellaneous filesystems
52028 -#
52029 -# CONFIG_ADFS_FS is not set
52030 -# CONFIG_AFFS_FS is not set
52031 -# CONFIG_HFS_FS is not set
52032 -# CONFIG_HFSPLUS_FS is not set
52033 -# CONFIG_BEFS_FS is not set
52034 -# CONFIG_BFS_FS is not set
52035 -# CONFIG_EFS_FS is not set
52036 -CONFIG_CRAMFS=y
52037 -# CONFIG_VXFS_FS is not set
52038 -# CONFIG_HPFS_FS is not set
52039 -# CONFIG_QNX4FS_FS is not set
52040 -# CONFIG_SYSV_FS is not set
52041 -# CONFIG_UFS_FS is not set
52042 -CONFIG_NETWORK_FILESYSTEMS=y
52043 -CONFIG_NFS_FS=y
52044 -CONFIG_NFS_V3=y
52045 -# CONFIG_NFS_V3_ACL is not set
52046 -# CONFIG_NFS_V4 is not set
52047 -# CONFIG_NFS_DIRECTIO is not set
52048 -# CONFIG_NFSD is not set
52049 -CONFIG_ROOT_NFS=y
52050 -CONFIG_LOCKD=y
52051 -CONFIG_LOCKD_V4=y
52052 -CONFIG_NFS_COMMON=y
52053 -CONFIG_SUNRPC=y
52054 -# CONFIG_SUNRPC_BIND34 is not set
52055 -# CONFIG_RPCSEC_GSS_KRB5 is not set
52056 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
52057 -# CONFIG_SMB_FS is not set
52058 -# CONFIG_CIFS is not set
52059 -# CONFIG_NCP_FS is not set
52060 -# CONFIG_CODA_FS is not set
52061 -# CONFIG_AFS_FS is not set
52062 -
52063 -#
52064 -# Partition Types
52065 -#
52066 -# CONFIG_PARTITION_ADVANCED is not set
52067 -CONFIG_MSDOS_PARTITION=y
52068 -# CONFIG_NLS is not set
52069 -# CONFIG_DLM is not set
52070 -# CONFIG_UCC_SLOW is not set
52071 -
52072 -#
52073 -# Library routines
52074 -#
52075 -CONFIG_BITREVERSE=y
52076 -# CONFIG_CRC_CCITT is not set
52077 -# CONFIG_CRC16 is not set
52078 -# CONFIG_CRC_ITU_T is not set
52079 -CONFIG_CRC32=y
52080 -# CONFIG_CRC7 is not set
52081 -# CONFIG_LIBCRC32C is not set
52082 -CONFIG_ZLIB_INFLATE=y
52083 -CONFIG_PLIST=y
52084 -CONFIG_HAS_IOMEM=y
52085 -CONFIG_HAS_IOPORT=y
52086 -CONFIG_HAS_DMA=y
52087 -CONFIG_INSTRUMENTATION=y
52088 -# CONFIG_PROFILING is not set
52089 -# CONFIG_KPROBES is not set
52090 -# CONFIG_MARKERS is not set
52091 -
52092 -#
52093 -# Kernel hacking
52094 -#
52095 -# CONFIG_PRINTK_TIME is not set
52096 -CONFIG_ENABLE_WARN_DEPRECATED=y
52097 -CONFIG_ENABLE_MUST_CHECK=y
52098 -CONFIG_MAGIC_SYSRQ=y
52099 -# CONFIG_UNUSED_SYMBOLS is not set
52100 -# CONFIG_DEBUG_FS is not set
52101 -# CONFIG_HEADERS_CHECK is not set
52102 -CONFIG_DEBUG_KERNEL=y
52103 -# CONFIG_DEBUG_SHIRQ is not set
52104 -CONFIG_DETECT_SOFTLOCKUP=y
52105 -CONFIG_SCHED_DEBUG=y
52106 -# CONFIG_SCHEDSTATS is not set
52107 -# CONFIG_TIMER_STATS is not set
52108 -# CONFIG_SLUB_DEBUG_ON is not set
52109 -# CONFIG_DEBUG_RT_MUTEXES is not set
52110 -# CONFIG_RT_MUTEX_TESTER is not set
52111 -# CONFIG_DEBUG_SPINLOCK is not set
52112 -# CONFIG_DEBUG_MUTEXES is not set
52113 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
52114 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
52115 -# CONFIG_DEBUG_KOBJECT is not set
52116 -# CONFIG_DEBUG_BUGVERBOSE is not set
52117 -# CONFIG_DEBUG_INFO is not set
52118 -# CONFIG_DEBUG_VM is not set
52119 -# CONFIG_DEBUG_LIST is not set
52120 -# CONFIG_DEBUG_SG is not set
52121 -CONFIG_FORCED_INLINING=y
52122 -# CONFIG_BOOT_PRINTK_DELAY is not set
52123 -# CONFIG_RCU_TORTURE_TEST is not set
52124 -# CONFIG_FAULT_INJECTION is not set
52125 -# CONFIG_SAMPLES is not set
52126 -# CONFIG_DEBUG_STACKOVERFLOW is not set
52127 -# CONFIG_DEBUG_STACK_USAGE is not set
52128 -# CONFIG_DEBUG_PAGEALLOC is not set
52129 -CONFIG_DEBUGGER=y
52130 -# CONFIG_KGDB is not set
52131 -# CONFIG_XMON is not set
52132 -# CONFIG_BDI_SWITCH is not set
52133 -# CONFIG_PPC_EARLY_DEBUG is not set
52134 -
52135 -#
52136 -# Security options
52137 -#
52138 -# CONFIG_KEYS is not set
52139 -# CONFIG_SECURITY is not set
52140 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
52141 -CONFIG_CRYPTO=y
52142 -CONFIG_CRYPTO_ALGAPI=y
52143 -CONFIG_CRYPTO_BLKCIPHER=y
52144 -CONFIG_CRYPTO_MANAGER=y
52145 -# CONFIG_CRYPTO_HMAC is not set
52146 -# CONFIG_CRYPTO_XCBC is not set
52147 -# CONFIG_CRYPTO_NULL is not set
52148 -# CONFIG_CRYPTO_MD4 is not set
52149 -CONFIG_CRYPTO_MD5=y
52150 -# CONFIG_CRYPTO_SHA1 is not set
52151 -# CONFIG_CRYPTO_SHA256 is not set
52152 -# CONFIG_CRYPTO_SHA512 is not set
52153 -# CONFIG_CRYPTO_WP512 is not set
52154 -# CONFIG_CRYPTO_TGR192 is not set
52155 -# CONFIG_CRYPTO_GF128MUL is not set
52156 -CONFIG_CRYPTO_ECB=y
52157 -CONFIG_CRYPTO_CBC=y
52158 -CONFIG_CRYPTO_PCBC=y
52159 -# CONFIG_CRYPTO_LRW is not set
52160 -# CONFIG_CRYPTO_XTS is not set
52161 -# CONFIG_CRYPTO_CRYPTD is not set
52162 -CONFIG_CRYPTO_DES=y
52163 -# CONFIG_CRYPTO_FCRYPT is not set
52164 -# CONFIG_CRYPTO_BLOWFISH is not set
52165 -# CONFIG_CRYPTO_TWOFISH is not set
52166 -# CONFIG_CRYPTO_SERPENT is not set
52167 -# CONFIG_CRYPTO_AES is not set
52168 -# CONFIG_CRYPTO_CAST5 is not set
52169 -# CONFIG_CRYPTO_CAST6 is not set
52170 -# CONFIG_CRYPTO_TEA is not set
52171 -# CONFIG_CRYPTO_ARC4 is not set
52172 -# CONFIG_CRYPTO_KHAZAD is not set
52173 -# CONFIG_CRYPTO_ANUBIS is not set
52174 -# CONFIG_CRYPTO_SEED is not set
52175 -# CONFIG_CRYPTO_DEFLATE is not set
52176 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
52177 -# CONFIG_CRYPTO_CRC32C is not set
52178 -# CONFIG_CRYPTO_CAMELLIA is not set
52179 -# CONFIG_CRYPTO_TEST is not set
52180 -# CONFIG_CRYPTO_AUTHENC is not set
52181 -CONFIG_CRYPTO_HW=y
52182 -# CONFIG_PPC_CLOCK is not set
52183 Index: linux-2.6.25.4/arch/powerpc/configs/kilauea_defconfig
52184 ===================================================================
52185 --- linux-2.6.25.4.orig/arch/powerpc/configs/kilauea_defconfig
52186 +++ /dev/null
52187 @@ -1,839 +0,0 @@
52188 -#
52189 -# Automatically generated make config: don't edit
52190 -# Linux kernel version: 2.6.25-rc2
52191 -# Fri Feb 15 21:51:43 2008
52192 -#
52193 -# CONFIG_PPC64 is not set
52194 -
52195 -#
52196 -# Processor support
52197 -#
52198 -# CONFIG_6xx is not set
52199 -# CONFIG_PPC_85xx is not set
52200 -# CONFIG_PPC_8xx is not set
52201 -CONFIG_40x=y
52202 -# CONFIG_44x is not set
52203 -# CONFIG_E200 is not set
52204 -CONFIG_4xx=y
52205 -# CONFIG_PPC_MM_SLICES is not set
52206 -CONFIG_NOT_COHERENT_CACHE=y
52207 -CONFIG_PPC32=y
52208 -CONFIG_WORD_SIZE=32
52209 -CONFIG_PPC_MERGE=y
52210 -CONFIG_MMU=y
52211 -CONFIG_GENERIC_CMOS_UPDATE=y
52212 -CONFIG_GENERIC_TIME=y
52213 -CONFIG_GENERIC_TIME_VSYSCALL=y
52214 -CONFIG_GENERIC_CLOCKEVENTS=y
52215 -CONFIG_GENERIC_HARDIRQS=y
52216 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
52217 -CONFIG_IRQ_PER_CPU=y
52218 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
52219 -CONFIG_ARCH_HAS_ILOG2_U32=y
52220 -CONFIG_GENERIC_HWEIGHT=y
52221 -CONFIG_GENERIC_CALIBRATE_DELAY=y
52222 -CONFIG_GENERIC_FIND_NEXT_BIT=y
52223 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
52224 -CONFIG_PPC=y
52225 -CONFIG_EARLY_PRINTK=y
52226 -CONFIG_GENERIC_NVRAM=y
52227 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
52228 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
52229 -CONFIG_PPC_OF=y
52230 -CONFIG_OF=y
52231 -CONFIG_PPC_UDBG_16550=y
52232 -# CONFIG_GENERIC_TBSYNC is not set
52233 -CONFIG_AUDIT_ARCH=y
52234 -CONFIG_GENERIC_BUG=y
52235 -# CONFIG_DEFAULT_UIMAGE is not set
52236 -CONFIG_PPC_DCR_NATIVE=y
52237 -# CONFIG_PPC_DCR_MMIO is not set
52238 -CONFIG_PPC_DCR=y
52239 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
52240 -
52241 -#
52242 -# General setup
52243 -#
52244 -CONFIG_EXPERIMENTAL=y
52245 -CONFIG_BROKEN_ON_SMP=y
52246 -CONFIG_INIT_ENV_ARG_LIMIT=32
52247 -CONFIG_LOCALVERSION=""
52248 -CONFIG_LOCALVERSION_AUTO=y
52249 -CONFIG_SWAP=y
52250 -CONFIG_SYSVIPC=y
52251 -CONFIG_SYSVIPC_SYSCTL=y
52252 -CONFIG_POSIX_MQUEUE=y
52253 -# CONFIG_BSD_PROCESS_ACCT is not set
52254 -# CONFIG_TASKSTATS is not set
52255 -# CONFIG_AUDIT is not set
52256 -# CONFIG_IKCONFIG is not set
52257 -CONFIG_LOG_BUF_SHIFT=14
52258 -# CONFIG_CGROUPS is not set
52259 -CONFIG_GROUP_SCHED=y
52260 -# CONFIG_FAIR_GROUP_SCHED is not set
52261 -# CONFIG_RT_GROUP_SCHED is not set
52262 -CONFIG_USER_SCHED=y
52263 -# CONFIG_CGROUP_SCHED is not set
52264 -CONFIG_SYSFS_DEPRECATED=y
52265 -# CONFIG_RELAY is not set
52266 -# CONFIG_NAMESPACES is not set
52267 -CONFIG_BLK_DEV_INITRD=y
52268 -CONFIG_INITRAMFS_SOURCE=""
52269 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
52270 -CONFIG_SYSCTL=y
52271 -CONFIG_EMBEDDED=y
52272 -CONFIG_SYSCTL_SYSCALL=y
52273 -CONFIG_KALLSYMS=y
52274 -CONFIG_KALLSYMS_ALL=y
52275 -CONFIG_KALLSYMS_EXTRA_PASS=y
52276 -CONFIG_HOTPLUG=y
52277 -CONFIG_PRINTK=y
52278 -CONFIG_BUG=y
52279 -CONFIG_ELF_CORE=y
52280 -CONFIG_COMPAT_BRK=y
52281 -CONFIG_BASE_FULL=y
52282 -CONFIG_FUTEX=y
52283 -CONFIG_ANON_INODES=y
52284 -CONFIG_EPOLL=y
52285 -CONFIG_SIGNALFD=y
52286 -CONFIG_TIMERFD=y
52287 -CONFIG_EVENTFD=y
52288 -CONFIG_SHMEM=y
52289 -CONFIG_VM_EVENT_COUNTERS=y
52290 -CONFIG_SLUB_DEBUG=y
52291 -# CONFIG_SLAB is not set
52292 -CONFIG_SLUB=y
52293 -# CONFIG_SLOB is not set
52294 -# CONFIG_PROFILING is not set
52295 -# CONFIG_MARKERS is not set
52296 -CONFIG_HAVE_OPROFILE=y
52297 -# CONFIG_KPROBES is not set
52298 -CONFIG_HAVE_KPROBES=y
52299 -CONFIG_PROC_PAGE_MONITOR=y
52300 -CONFIG_SLABINFO=y
52301 -CONFIG_RT_MUTEXES=y
52302 -# CONFIG_TINY_SHMEM is not set
52303 -CONFIG_BASE_SMALL=0
52304 -CONFIG_MODULES=y
52305 -CONFIG_MODULE_UNLOAD=y
52306 -# CONFIG_MODULE_FORCE_UNLOAD is not set
52307 -# CONFIG_MODVERSIONS is not set
52308 -# CONFIG_MODULE_SRCVERSION_ALL is not set
52309 -CONFIG_KMOD=y
52310 -CONFIG_BLOCK=y
52311 -CONFIG_LBD=y
52312 -# CONFIG_BLK_DEV_IO_TRACE is not set
52313 -# CONFIG_LSF is not set
52314 -# CONFIG_BLK_DEV_BSG is not set
52315 -
52316 -#
52317 -# IO Schedulers
52318 -#
52319 -CONFIG_IOSCHED_NOOP=y
52320 -CONFIG_IOSCHED_AS=y
52321 -CONFIG_IOSCHED_DEADLINE=y
52322 -CONFIG_IOSCHED_CFQ=y
52323 -CONFIG_DEFAULT_AS=y
52324 -# CONFIG_DEFAULT_DEADLINE is not set
52325 -# CONFIG_DEFAULT_CFQ is not set
52326 -# CONFIG_DEFAULT_NOOP is not set
52327 -CONFIG_DEFAULT_IOSCHED="anticipatory"
52328 -CONFIG_CLASSIC_RCU=y
52329 -# CONFIG_PREEMPT_RCU is not set
52330 -CONFIG_PPC4xx_PCI_EXPRESS=y
52331 -
52332 -#
52333 -# Platform support
52334 -#
52335 -# CONFIG_PPC_MPC512x is not set
52336 -# CONFIG_PPC_MPC5121 is not set
52337 -# CONFIG_PPC_CELL is not set
52338 -# CONFIG_PPC_CELL_NATIVE is not set
52339 -# CONFIG_PQ2ADS is not set
52340 -# CONFIG_EP405 is not set
52341 -CONFIG_KILAUEA=y
52342 -# CONFIG_MAKALU is not set
52343 -# CONFIG_WALNUT is not set
52344 -# CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set
52345 -CONFIG_405EX=y
52346 -# CONFIG_IPIC is not set
52347 -# CONFIG_MPIC is not set
52348 -# CONFIG_MPIC_WEIRD is not set
52349 -# CONFIG_PPC_I8259 is not set
52350 -# CONFIG_PPC_RTAS is not set
52351 -# CONFIG_MMIO_NVRAM is not set
52352 -# CONFIG_PPC_MPC106 is not set
52353 -# CONFIG_PPC_970_NAP is not set
52354 -# CONFIG_PPC_INDIRECT_IO is not set
52355 -# CONFIG_GENERIC_IOMAP is not set
52356 -# CONFIG_CPU_FREQ is not set
52357 -# CONFIG_FSL_ULI1575 is not set
52358 -
52359 -#
52360 -# Kernel options
52361 -#
52362 -# CONFIG_HIGHMEM is not set
52363 -# CONFIG_TICK_ONESHOT is not set
52364 -# CONFIG_NO_HZ is not set
52365 -# CONFIG_HIGH_RES_TIMERS is not set
52366 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
52367 -# CONFIG_HZ_100 is not set
52368 -CONFIG_HZ_250=y
52369 -# CONFIG_HZ_300 is not set
52370 -# CONFIG_HZ_1000 is not set
52371 -CONFIG_HZ=250
52372 -# CONFIG_SCHED_HRTICK is not set
52373 -CONFIG_PREEMPT_NONE=y
52374 -# CONFIG_PREEMPT_VOLUNTARY is not set
52375 -# CONFIG_PREEMPT is not set
52376 -CONFIG_RCU_TRACE=y
52377 -CONFIG_BINFMT_ELF=y
52378 -# CONFIG_BINFMT_MISC is not set
52379 -# CONFIG_MATH_EMULATION is not set
52380 -# CONFIG_IOMMU_HELPER is not set
52381 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
52382 -CONFIG_ARCH_HAS_WALK_MEMORY=y
52383 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
52384 -CONFIG_ARCH_FLATMEM_ENABLE=y
52385 -CONFIG_ARCH_POPULATES_NODE_MAP=y
52386 -CONFIG_SELECT_MEMORY_MODEL=y
52387 -CONFIG_FLATMEM_MANUAL=y
52388 -# CONFIG_DISCONTIGMEM_MANUAL is not set
52389 -# CONFIG_SPARSEMEM_MANUAL is not set
52390 -CONFIG_FLATMEM=y
52391 -CONFIG_FLAT_NODE_MEM_MAP=y
52392 -# CONFIG_SPARSEMEM_STATIC is not set
52393 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
52394 -CONFIG_SPLIT_PTLOCK_CPUS=4
52395 -# CONFIG_RESOURCES_64BIT is not set
52396 -CONFIG_ZONE_DMA_FLAG=1
52397 -CONFIG_BOUNCE=y
52398 -CONFIG_VIRT_TO_BUS=y
52399 -CONFIG_PROC_DEVICETREE=y
52400 -# CONFIG_CMDLINE_BOOL is not set
52401 -# CONFIG_PM is not set
52402 -CONFIG_SECCOMP=y
52403 -CONFIG_ISA_DMA_API=y
52404 -
52405 -#
52406 -# Bus options
52407 -#
52408 -CONFIG_ZONE_DMA=y
52409 -CONFIG_PPC_INDIRECT_PCI=y
52410 -CONFIG_PCI=y
52411 -CONFIG_PCI_DOMAINS=y
52412 -CONFIG_PCI_SYSCALL=y
52413 -# CONFIG_PCIEPORTBUS is not set
52414 -CONFIG_ARCH_SUPPORTS_MSI=y
52415 -# CONFIG_PCI_MSI is not set
52416 -CONFIG_PCI_LEGACY=y
52417 -# CONFIG_PCI_DEBUG is not set
52418 -# CONFIG_PCCARD is not set
52419 -# CONFIG_HOTPLUG_PCI is not set
52420 -
52421 -#
52422 -# Advanced setup
52423 -#
52424 -# CONFIG_ADVANCED_OPTIONS is not set
52425 -
52426 -#
52427 -# Default settings for advanced configuration options are used
52428 -#
52429 -CONFIG_HIGHMEM_START=0xfe000000
52430 -CONFIG_LOWMEM_SIZE=0x30000000
52431 -CONFIG_KERNEL_START=0xc0000000
52432 -CONFIG_TASK_SIZE=0xc0000000
52433 -CONFIG_CONSISTENT_START=0xff100000
52434 -CONFIG_CONSISTENT_SIZE=0x00200000
52435 -CONFIG_BOOT_LOAD=0x00400000
52436 -
52437 -#
52438 -# Networking
52439 -#
52440 -CONFIG_NET=y
52441 -
52442 -#
52443 -# Networking options
52444 -#
52445 -CONFIG_PACKET=y
52446 -# CONFIG_PACKET_MMAP is not set
52447 -CONFIG_UNIX=y
52448 -# CONFIG_NET_KEY is not set
52449 -CONFIG_INET=y
52450 -# CONFIG_IP_MULTICAST is not set
52451 -# CONFIG_IP_ADVANCED_ROUTER is not set
52452 -CONFIG_IP_FIB_HASH=y
52453 -CONFIG_IP_PNP=y
52454 -CONFIG_IP_PNP_DHCP=y
52455 -CONFIG_IP_PNP_BOOTP=y
52456 -# CONFIG_IP_PNP_RARP is not set
52457 -# CONFIG_NET_IPIP is not set
52458 -# CONFIG_NET_IPGRE is not set
52459 -# CONFIG_ARPD is not set
52460 -# CONFIG_SYN_COOKIES is not set
52461 -# CONFIG_INET_AH is not set
52462 -# CONFIG_INET_ESP is not set
52463 -# CONFIG_INET_IPCOMP is not set
52464 -# CONFIG_INET_XFRM_TUNNEL is not set
52465 -# CONFIG_INET_TUNNEL is not set
52466 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
52467 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
52468 -# CONFIG_INET_XFRM_MODE_BEET is not set
52469 -# CONFIG_INET_LRO is not set
52470 -CONFIG_INET_DIAG=y
52471 -CONFIG_INET_TCP_DIAG=y
52472 -# CONFIG_TCP_CONG_ADVANCED is not set
52473 -CONFIG_TCP_CONG_CUBIC=y
52474 -CONFIG_DEFAULT_TCP_CONG="cubic"
52475 -# CONFIG_TCP_MD5SIG is not set
52476 -# CONFIG_IPV6 is not set
52477 -# CONFIG_INET6_XFRM_TUNNEL is not set
52478 -# CONFIG_INET6_TUNNEL is not set
52479 -# CONFIG_NETWORK_SECMARK is not set
52480 -# CONFIG_NETFILTER is not set
52481 -# CONFIG_IP_DCCP is not set
52482 -# CONFIG_IP_SCTP is not set
52483 -# CONFIG_TIPC is not set
52484 -# CONFIG_ATM is not set
52485 -# CONFIG_BRIDGE is not set
52486 -# CONFIG_VLAN_8021Q is not set
52487 -# CONFIG_DECNET is not set
52488 -# CONFIG_LLC2 is not set
52489 -# CONFIG_IPX is not set
52490 -# CONFIG_ATALK is not set
52491 -# CONFIG_X25 is not set
52492 -# CONFIG_LAPB is not set
52493 -# CONFIG_ECONET is not set
52494 -# CONFIG_WAN_ROUTER is not set
52495 -# CONFIG_NET_SCHED is not set
52496 -
52497 -#
52498 -# Network testing
52499 -#
52500 -# CONFIG_NET_PKTGEN is not set
52501 -# CONFIG_HAMRADIO is not set
52502 -# CONFIG_CAN is not set
52503 -# CONFIG_IRDA is not set
52504 -# CONFIG_BT is not set
52505 -# CONFIG_AF_RXRPC is not set
52506 -
52507 -#
52508 -# Wireless
52509 -#
52510 -# CONFIG_CFG80211 is not set
52511 -# CONFIG_WIRELESS_EXT is not set
52512 -# CONFIG_MAC80211 is not set
52513 -# CONFIG_IEEE80211 is not set
52514 -# CONFIG_RFKILL is not set
52515 -# CONFIG_NET_9P is not set
52516 -
52517 -#
52518 -# Device Drivers
52519 -#
52520 -
52521 -#
52522 -# Generic Driver Options
52523 -#
52524 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
52525 -CONFIG_STANDALONE=y
52526 -CONFIG_PREVENT_FIRMWARE_BUILD=y
52527 -CONFIG_FW_LOADER=y
52528 -# CONFIG_DEBUG_DRIVER is not set
52529 -# CONFIG_DEBUG_DEVRES is not set
52530 -# CONFIG_SYS_HYPERVISOR is not set
52531 -CONFIG_CONNECTOR=y
52532 -CONFIG_PROC_EVENTS=y
52533 -CONFIG_MTD=y
52534 -# CONFIG_MTD_DEBUG is not set
52535 -# CONFIG_MTD_CONCAT is not set
52536 -CONFIG_MTD_PARTITIONS=y
52537 -# CONFIG_MTD_REDBOOT_PARTS is not set
52538 -CONFIG_MTD_CMDLINE_PARTS=y
52539 -CONFIG_MTD_OF_PARTS=y
52540 -
52541 -#
52542 -# User Modules And Translation Layers
52543 -#
52544 -CONFIG_MTD_CHAR=y
52545 -CONFIG_MTD_BLKDEVS=m
52546 -CONFIG_MTD_BLOCK=m
52547 -# CONFIG_MTD_BLOCK_RO is not set
52548 -# CONFIG_FTL is not set
52549 -# CONFIG_NFTL is not set
52550 -# CONFIG_INFTL is not set
52551 -# CONFIG_RFD_FTL is not set
52552 -# CONFIG_SSFDC is not set
52553 -# CONFIG_MTD_OOPS is not set
52554 -
52555 -#
52556 -# RAM/ROM/Flash chip drivers
52557 -#
52558 -CONFIG_MTD_CFI=y
52559 -CONFIG_MTD_JEDECPROBE=y
52560 -CONFIG_MTD_GEN_PROBE=y
52561 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
52562 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
52563 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
52564 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
52565 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
52566 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
52567 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
52568 -CONFIG_MTD_CFI_I1=y
52569 -CONFIG_MTD_CFI_I2=y
52570 -# CONFIG_MTD_CFI_I4 is not set
52571 -# CONFIG_MTD_CFI_I8 is not set
52572 -# CONFIG_MTD_CFI_INTELEXT is not set
52573 -CONFIG_MTD_CFI_AMDSTD=y
52574 -# CONFIG_MTD_CFI_STAA is not set
52575 -CONFIG_MTD_CFI_UTIL=y
52576 -# CONFIG_MTD_RAM is not set
52577 -# CONFIG_MTD_ROM is not set
52578 -# CONFIG_MTD_ABSENT is not set
52579 -
52580 -#
52581 -# Mapping drivers for chip access
52582 -#
52583 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
52584 -# CONFIG_MTD_PHYSMAP is not set
52585 -CONFIG_MTD_PHYSMAP_OF=y
52586 -# CONFIG_MTD_INTEL_VR_NOR is not set
52587 -# CONFIG_MTD_PLATRAM is not set
52588 -
52589 -#
52590 -# Self-contained MTD device drivers
52591 -#
52592 -# CONFIG_MTD_PMC551 is not set
52593 -# CONFIG_MTD_SLRAM is not set
52594 -# CONFIG_MTD_PHRAM is not set
52595 -# CONFIG_MTD_MTDRAM is not set
52596 -# CONFIG_MTD_BLOCK2MTD is not set
52597 -
52598 -#
52599 -# Disk-On-Chip Device Drivers
52600 -#
52601 -# CONFIG_MTD_DOC2000 is not set
52602 -# CONFIG_MTD_DOC2001 is not set
52603 -# CONFIG_MTD_DOC2001PLUS is not set
52604 -# CONFIG_MTD_NAND is not set
52605 -# CONFIG_MTD_ONENAND is not set
52606 -
52607 -#
52608 -# UBI - Unsorted block images
52609 -#
52610 -# CONFIG_MTD_UBI is not set
52611 -CONFIG_OF_DEVICE=y
52612 -# CONFIG_PARPORT is not set
52613 -CONFIG_BLK_DEV=y
52614 -# CONFIG_BLK_DEV_FD is not set
52615 -# CONFIG_BLK_CPQ_DA is not set
52616 -# CONFIG_BLK_CPQ_CISS_DA is not set
52617 -# CONFIG_BLK_DEV_DAC960 is not set
52618 -# CONFIG_BLK_DEV_UMEM is not set
52619 -# CONFIG_BLK_DEV_COW_COMMON is not set
52620 -# CONFIG_BLK_DEV_LOOP is not set
52621 -# CONFIG_BLK_DEV_NBD is not set
52622 -# CONFIG_BLK_DEV_SX8 is not set
52623 -CONFIG_BLK_DEV_RAM=y
52624 -CONFIG_BLK_DEV_RAM_COUNT=16
52625 -CONFIG_BLK_DEV_RAM_SIZE=35000
52626 -# CONFIG_BLK_DEV_XIP is not set
52627 -# CONFIG_CDROM_PKTCDVD is not set
52628 -# CONFIG_ATA_OVER_ETH is not set
52629 -# CONFIG_XILINX_SYSACE is not set
52630 -# CONFIG_MISC_DEVICES is not set
52631 -CONFIG_HAVE_IDE=y
52632 -# CONFIG_IDE is not set
52633 -
52634 -#
52635 -# SCSI device support
52636 -#
52637 -# CONFIG_RAID_ATTRS is not set
52638 -# CONFIG_SCSI is not set
52639 -# CONFIG_SCSI_DMA is not set
52640 -# CONFIG_SCSI_NETLINK is not set
52641 -# CONFIG_ATA is not set
52642 -# CONFIG_MD is not set
52643 -# CONFIG_FUSION is not set
52644 -
52645 -#
52646 -# IEEE 1394 (FireWire) support
52647 -#
52648 -# CONFIG_FIREWIRE is not set
52649 -# CONFIG_IEEE1394 is not set
52650 -# CONFIG_I2O is not set
52651 -# CONFIG_MACINTOSH_DRIVERS is not set
52652 -CONFIG_NETDEVICES=y
52653 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
52654 -# CONFIG_DUMMY is not set
52655 -# CONFIG_BONDING is not set
52656 -# CONFIG_MACVLAN is not set
52657 -# CONFIG_EQUALIZER is not set
52658 -# CONFIG_TUN is not set
52659 -# CONFIG_VETH is not set
52660 -# CONFIG_ARCNET is not set
52661 -# CONFIG_PHYLIB is not set
52662 -CONFIG_NET_ETHERNET=y
52663 -# CONFIG_MII is not set
52664 -# CONFIG_HAPPYMEAL is not set
52665 -# CONFIG_SUNGEM is not set
52666 -# CONFIG_CASSINI is not set
52667 -# CONFIG_NET_VENDOR_3COM is not set
52668 -# CONFIG_NET_TULIP is not set
52669 -# CONFIG_HP100 is not set
52670 -CONFIG_IBM_NEW_EMAC=y
52671 -CONFIG_IBM_NEW_EMAC_RXB=256
52672 -CONFIG_IBM_NEW_EMAC_TXB=256
52673 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
52674 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
52675 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
52676 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
52677 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
52678 -CONFIG_IBM_NEW_EMAC_RGMII=y
52679 -# CONFIG_IBM_NEW_EMAC_TAH is not set
52680 -CONFIG_IBM_NEW_EMAC_EMAC4=y
52681 -# CONFIG_NET_PCI is not set
52682 -# CONFIG_B44 is not set
52683 -# CONFIG_NETDEV_1000 is not set
52684 -# CONFIG_NETDEV_10000 is not set
52685 -# CONFIG_TR is not set
52686 -
52687 -#
52688 -# Wireless LAN
52689 -#
52690 -# CONFIG_WLAN_PRE80211 is not set
52691 -# CONFIG_WLAN_80211 is not set
52692 -# CONFIG_WAN is not set
52693 -# CONFIG_FDDI is not set
52694 -# CONFIG_HIPPI is not set
52695 -# CONFIG_PPP is not set
52696 -# CONFIG_SLIP is not set
52697 -# CONFIG_NETCONSOLE is not set
52698 -# CONFIG_NETPOLL is not set
52699 -# CONFIG_NET_POLL_CONTROLLER is not set
52700 -# CONFIG_ISDN is not set
52701 -# CONFIG_PHONE is not set
52702 -
52703 -#
52704 -# Input device support
52705 -#
52706 -# CONFIG_INPUT is not set
52707 -
52708 -#
52709 -# Hardware I/O ports
52710 -#
52711 -# CONFIG_SERIO is not set
52712 -# CONFIG_GAMEPORT is not set
52713 -
52714 -#
52715 -# Character devices
52716 -#
52717 -# CONFIG_VT is not set
52718 -# CONFIG_SERIAL_NONSTANDARD is not set
52719 -# CONFIG_NOZOMI is not set
52720 -
52721 -#
52722 -# Serial drivers
52723 -#
52724 -CONFIG_SERIAL_8250=y
52725 -CONFIG_SERIAL_8250_CONSOLE=y
52726 -CONFIG_SERIAL_8250_PCI=y
52727 -CONFIG_SERIAL_8250_NR_UARTS=4
52728 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
52729 -CONFIG_SERIAL_8250_EXTENDED=y
52730 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
52731 -CONFIG_SERIAL_8250_SHARE_IRQ=y
52732 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
52733 -# CONFIG_SERIAL_8250_RSA is not set
52734 -
52735 -#
52736 -# Non-8250 serial port support
52737 -#
52738 -# CONFIG_SERIAL_UARTLITE is not set
52739 -CONFIG_SERIAL_CORE=y
52740 -CONFIG_SERIAL_CORE_CONSOLE=y
52741 -# CONFIG_SERIAL_JSM is not set
52742 -CONFIG_SERIAL_OF_PLATFORM=y
52743 -CONFIG_UNIX98_PTYS=y
52744 -CONFIG_LEGACY_PTYS=y
52745 -CONFIG_LEGACY_PTY_COUNT=256
52746 -# CONFIG_IPMI_HANDLER is not set
52747 -# CONFIG_HW_RANDOM is not set
52748 -# CONFIG_NVRAM is not set
52749 -# CONFIG_GEN_RTC is not set
52750 -# CONFIG_R3964 is not set
52751 -# CONFIG_APPLICOM is not set
52752 -# CONFIG_RAW_DRIVER is not set
52753 -# CONFIG_TCG_TPM is not set
52754 -CONFIG_DEVPORT=y
52755 -# CONFIG_I2C is not set
52756 -
52757 -#
52758 -# SPI support
52759 -#
52760 -# CONFIG_SPI is not set
52761 -# CONFIG_SPI_MASTER is not set
52762 -# CONFIG_W1 is not set
52763 -# CONFIG_POWER_SUPPLY is not set
52764 -# CONFIG_HWMON is not set
52765 -CONFIG_THERMAL=y
52766 -# CONFIG_WATCHDOG is not set
52767 -
52768 -#
52769 -# Sonics Silicon Backplane
52770 -#
52771 -CONFIG_SSB_POSSIBLE=y
52772 -# CONFIG_SSB is not set
52773 -
52774 -#
52775 -# Multifunction device drivers
52776 -#
52777 -# CONFIG_MFD_SM501 is not set
52778 -
52779 -#
52780 -# Multimedia devices
52781 -#
52782 -# CONFIG_VIDEO_DEV is not set
52783 -# CONFIG_DVB_CORE is not set
52784 -# CONFIG_DAB is not set
52785 -
52786 -#
52787 -# Graphics support
52788 -#
52789 -# CONFIG_AGP is not set
52790 -# CONFIG_DRM is not set
52791 -# CONFIG_VGASTATE is not set
52792 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
52793 -# CONFIG_FB is not set
52794 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
52795 -
52796 -#
52797 -# Display device support
52798 -#
52799 -# CONFIG_DISPLAY_SUPPORT is not set
52800 -
52801 -#
52802 -# Sound
52803 -#
52804 -# CONFIG_SOUND is not set
52805 -# CONFIG_USB_SUPPORT is not set
52806 -# CONFIG_MMC is not set
52807 -# CONFIG_MEMSTICK is not set
52808 -# CONFIG_NEW_LEDS is not set
52809 -# CONFIG_INFINIBAND is not set
52810 -# CONFIG_EDAC is not set
52811 -# CONFIG_RTC_CLASS is not set
52812 -
52813 -#
52814 -# Userspace I/O
52815 -#
52816 -# CONFIG_UIO is not set
52817 -
52818 -#
52819 -# File systems
52820 -#
52821 -CONFIG_EXT2_FS=y
52822 -# CONFIG_EXT2_FS_XATTR is not set
52823 -# CONFIG_EXT2_FS_XIP is not set
52824 -# CONFIG_EXT3_FS is not set
52825 -# CONFIG_EXT4DEV_FS is not set
52826 -# CONFIG_REISERFS_FS is not set
52827 -# CONFIG_JFS_FS is not set
52828 -# CONFIG_FS_POSIX_ACL is not set
52829 -# CONFIG_XFS_FS is not set
52830 -# CONFIG_GFS2_FS is not set
52831 -# CONFIG_OCFS2_FS is not set
52832 -CONFIG_DNOTIFY=y
52833 -CONFIG_INOTIFY=y
52834 -CONFIG_INOTIFY_USER=y
52835 -# CONFIG_QUOTA is not set
52836 -# CONFIG_AUTOFS_FS is not set
52837 -# CONFIG_AUTOFS4_FS is not set
52838 -# CONFIG_FUSE_FS is not set
52839 -
52840 -#
52841 -# CD-ROM/DVD Filesystems
52842 -#
52843 -# CONFIG_ISO9660_FS is not set
52844 -# CONFIG_UDF_FS is not set
52845 -
52846 -#
52847 -# DOS/FAT/NT Filesystems
52848 -#
52849 -# CONFIG_MSDOS_FS is not set
52850 -# CONFIG_VFAT_FS is not set
52851 -# CONFIG_NTFS_FS is not set
52852 -
52853 -#
52854 -# Pseudo filesystems
52855 -#
52856 -CONFIG_PROC_FS=y
52857 -CONFIG_PROC_KCORE=y
52858 -CONFIG_PROC_SYSCTL=y
52859 -CONFIG_SYSFS=y
52860 -CONFIG_TMPFS=y
52861 -# CONFIG_TMPFS_POSIX_ACL is not set
52862 -# CONFIG_HUGETLB_PAGE is not set
52863 -# CONFIG_CONFIGFS_FS is not set
52864 -
52865 -#
52866 -# Miscellaneous filesystems
52867 -#
52868 -# CONFIG_ADFS_FS is not set
52869 -# CONFIG_AFFS_FS is not set
52870 -# CONFIG_HFS_FS is not set
52871 -# CONFIG_HFSPLUS_FS is not set
52872 -# CONFIG_BEFS_FS is not set
52873 -# CONFIG_BFS_FS is not set
52874 -# CONFIG_EFS_FS is not set
52875 -# CONFIG_JFFS2_FS is not set
52876 -CONFIG_CRAMFS=y
52877 -# CONFIG_VXFS_FS is not set
52878 -# CONFIG_MINIX_FS is not set
52879 -# CONFIG_HPFS_FS is not set
52880 -# CONFIG_QNX4FS_FS is not set
52881 -# CONFIG_ROMFS_FS is not set
52882 -# CONFIG_SYSV_FS is not set
52883 -# CONFIG_UFS_FS is not set
52884 -CONFIG_NETWORK_FILESYSTEMS=y
52885 -CONFIG_NFS_FS=y
52886 -CONFIG_NFS_V3=y
52887 -# CONFIG_NFS_V3_ACL is not set
52888 -# CONFIG_NFS_V4 is not set
52889 -# CONFIG_NFS_DIRECTIO is not set
52890 -# CONFIG_NFSD is not set
52891 -CONFIG_ROOT_NFS=y
52892 -CONFIG_LOCKD=y
52893 -CONFIG_LOCKD_V4=y
52894 -CONFIG_NFS_COMMON=y
52895 -CONFIG_SUNRPC=y
52896 -# CONFIG_SUNRPC_BIND34 is not set
52897 -# CONFIG_RPCSEC_GSS_KRB5 is not set
52898 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
52899 -# CONFIG_SMB_FS is not set
52900 -# CONFIG_CIFS is not set
52901 -# CONFIG_NCP_FS is not set
52902 -# CONFIG_CODA_FS is not set
52903 -# CONFIG_AFS_FS is not set
52904 -
52905 -#
52906 -# Partition Types
52907 -#
52908 -# CONFIG_PARTITION_ADVANCED is not set
52909 -CONFIG_MSDOS_PARTITION=y
52910 -# CONFIG_NLS is not set
52911 -# CONFIG_DLM is not set
52912 -
52913 -#
52914 -# Library routines
52915 -#
52916 -CONFIG_BITREVERSE=y
52917 -# CONFIG_CRC_CCITT is not set
52918 -# CONFIG_CRC16 is not set
52919 -# CONFIG_CRC_ITU_T is not set
52920 -CONFIG_CRC32=y
52921 -# CONFIG_CRC7 is not set
52922 -# CONFIG_LIBCRC32C is not set
52923 -CONFIG_ZLIB_INFLATE=y
52924 -CONFIG_PLIST=y
52925 -CONFIG_HAS_IOMEM=y
52926 -CONFIG_HAS_IOPORT=y
52927 -CONFIG_HAS_DMA=y
52928 -
52929 -#
52930 -# Kernel hacking
52931 -#
52932 -# CONFIG_PRINTK_TIME is not set
52933 -CONFIG_ENABLE_WARN_DEPRECATED=y
52934 -CONFIG_ENABLE_MUST_CHECK=y
52935 -CONFIG_MAGIC_SYSRQ=y
52936 -# CONFIG_UNUSED_SYMBOLS is not set
52937 -CONFIG_DEBUG_FS=y
52938 -# CONFIG_HEADERS_CHECK is not set
52939 -CONFIG_DEBUG_KERNEL=y
52940 -# CONFIG_DEBUG_SHIRQ is not set
52941 -CONFIG_DETECT_SOFTLOCKUP=y
52942 -CONFIG_SCHED_DEBUG=y
52943 -# CONFIG_SCHEDSTATS is not set
52944 -# CONFIG_TIMER_STATS is not set
52945 -# CONFIG_SLUB_DEBUG_ON is not set
52946 -# CONFIG_SLUB_STATS is not set
52947 -# CONFIG_DEBUG_RT_MUTEXES is not set
52948 -# CONFIG_RT_MUTEX_TESTER is not set
52949 -# CONFIG_DEBUG_SPINLOCK is not set
52950 -# CONFIG_DEBUG_MUTEXES is not set
52951 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
52952 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
52953 -# CONFIG_DEBUG_KOBJECT is not set
52954 -CONFIG_DEBUG_BUGVERBOSE=y
52955 -# CONFIG_DEBUG_INFO is not set
52956 -# CONFIG_DEBUG_VM is not set
52957 -# CONFIG_DEBUG_LIST is not set
52958 -# CONFIG_DEBUG_SG is not set
52959 -# CONFIG_BOOT_PRINTK_DELAY is not set
52960 -# CONFIG_RCU_TORTURE_TEST is not set
52961 -# CONFIG_BACKTRACE_SELF_TEST is not set
52962 -# CONFIG_FAULT_INJECTION is not set
52963 -# CONFIG_SAMPLES is not set
52964 -# CONFIG_DEBUG_STACKOVERFLOW is not set
52965 -# CONFIG_DEBUG_STACK_USAGE is not set
52966 -# CONFIG_DEBUG_PAGEALLOC is not set
52967 -# CONFIG_DEBUGGER is not set
52968 -# CONFIG_VIRQ_DEBUG is not set
52969 -# CONFIG_BDI_SWITCH is not set
52970 -# CONFIG_PPC_EARLY_DEBUG is not set
52971 -
52972 -#
52973 -# Security options
52974 -#
52975 -# CONFIG_KEYS is not set
52976 -# CONFIG_SECURITY is not set
52977 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
52978 -CONFIG_CRYPTO=y
52979 -CONFIG_CRYPTO_ALGAPI=y
52980 -CONFIG_CRYPTO_BLKCIPHER=y
52981 -# CONFIG_CRYPTO_SEQIV is not set
52982 -CONFIG_CRYPTO_MANAGER=y
52983 -# CONFIG_CRYPTO_HMAC is not set
52984 -# CONFIG_CRYPTO_XCBC is not set
52985 -# CONFIG_CRYPTO_NULL is not set
52986 -# CONFIG_CRYPTO_MD4 is not set
52987 -CONFIG_CRYPTO_MD5=y
52988 -# CONFIG_CRYPTO_SHA1 is not set
52989 -# CONFIG_CRYPTO_SHA256 is not set
52990 -# CONFIG_CRYPTO_SHA512 is not set
52991 -# CONFIG_CRYPTO_WP512 is not set
52992 -# CONFIG_CRYPTO_TGR192 is not set
52993 -# CONFIG_CRYPTO_GF128MUL is not set
52994 -CONFIG_CRYPTO_ECB=y
52995 -CONFIG_CRYPTO_CBC=y
52996 -CONFIG_CRYPTO_PCBC=y
52997 -# CONFIG_CRYPTO_LRW is not set
52998 -# CONFIG_CRYPTO_XTS is not set
52999 -# CONFIG_CRYPTO_CTR is not set
53000 -# CONFIG_CRYPTO_GCM is not set
53001 -# CONFIG_CRYPTO_CCM is not set
53002 -# CONFIG_CRYPTO_CRYPTD is not set
53003 -CONFIG_CRYPTO_DES=y
53004 -# CONFIG_CRYPTO_FCRYPT is not set
53005 -# CONFIG_CRYPTO_BLOWFISH is not set
53006 -# CONFIG_CRYPTO_TWOFISH is not set
53007 -# CONFIG_CRYPTO_SERPENT is not set
53008 -# CONFIG_CRYPTO_AES is not set
53009 -# CONFIG_CRYPTO_CAST5 is not set
53010 -# CONFIG_CRYPTO_CAST6 is not set
53011 -# CONFIG_CRYPTO_TEA is not set
53012 -# CONFIG_CRYPTO_ARC4 is not set
53013 -# CONFIG_CRYPTO_KHAZAD is not set
53014 -# CONFIG_CRYPTO_ANUBIS is not set
53015 -# CONFIG_CRYPTO_SEED is not set
53016 -# CONFIG_CRYPTO_SALSA20 is not set
53017 -# CONFIG_CRYPTO_DEFLATE is not set
53018 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
53019 -# CONFIG_CRYPTO_CRC32C is not set
53020 -# CONFIG_CRYPTO_CAMELLIA is not set
53021 -# CONFIG_CRYPTO_TEST is not set
53022 -# CONFIG_CRYPTO_AUTHENC is not set
53023 -# CONFIG_CRYPTO_LZO is not set
53024 -CONFIG_CRYPTO_HW=y
53025 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
53026 -# CONFIG_PPC_CLOCK is not set
53027 Index: linux-2.6.25.4/arch/powerpc/configs/makalu_defconfig
53028 ===================================================================
53029 --- linux-2.6.25.4.orig/arch/powerpc/configs/makalu_defconfig
53030 +++ /dev/null
53031 @@ -1,839 +0,0 @@
53032 -#
53033 -# Automatically generated make config: don't edit
53034 -# Linux kernel version: 2.6.25-rc2
53035 -# Fri Feb 15 21:52:30 2008
53036 -#
53037 -# CONFIG_PPC64 is not set
53038 -
53039 -#
53040 -# Processor support
53041 -#
53042 -# CONFIG_6xx is not set
53043 -# CONFIG_PPC_85xx is not set
53044 -# CONFIG_PPC_8xx is not set
53045 -CONFIG_40x=y
53046 -# CONFIG_44x is not set
53047 -# CONFIG_E200 is not set
53048 -CONFIG_4xx=y
53049 -# CONFIG_PPC_MM_SLICES is not set
53050 -CONFIG_NOT_COHERENT_CACHE=y
53051 -CONFIG_PPC32=y
53052 -CONFIG_WORD_SIZE=32
53053 -CONFIG_PPC_MERGE=y
53054 -CONFIG_MMU=y
53055 -CONFIG_GENERIC_CMOS_UPDATE=y
53056 -CONFIG_GENERIC_TIME=y
53057 -CONFIG_GENERIC_TIME_VSYSCALL=y
53058 -CONFIG_GENERIC_CLOCKEVENTS=y
53059 -CONFIG_GENERIC_HARDIRQS=y
53060 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
53061 -CONFIG_IRQ_PER_CPU=y
53062 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
53063 -CONFIG_ARCH_HAS_ILOG2_U32=y
53064 -CONFIG_GENERIC_HWEIGHT=y
53065 -CONFIG_GENERIC_CALIBRATE_DELAY=y
53066 -CONFIG_GENERIC_FIND_NEXT_BIT=y
53067 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
53068 -CONFIG_PPC=y
53069 -CONFIG_EARLY_PRINTK=y
53070 -CONFIG_GENERIC_NVRAM=y
53071 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
53072 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
53073 -CONFIG_PPC_OF=y
53074 -CONFIG_OF=y
53075 -CONFIG_PPC_UDBG_16550=y
53076 -# CONFIG_GENERIC_TBSYNC is not set
53077 -CONFIG_AUDIT_ARCH=y
53078 -CONFIG_GENERIC_BUG=y
53079 -# CONFIG_DEFAULT_UIMAGE is not set
53080 -CONFIG_PPC_DCR_NATIVE=y
53081 -# CONFIG_PPC_DCR_MMIO is not set
53082 -CONFIG_PPC_DCR=y
53083 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
53084 -
53085 -#
53086 -# General setup
53087 -#
53088 -CONFIG_EXPERIMENTAL=y
53089 -CONFIG_BROKEN_ON_SMP=y
53090 -CONFIG_INIT_ENV_ARG_LIMIT=32
53091 -CONFIG_LOCALVERSION=""
53092 -CONFIG_LOCALVERSION_AUTO=y
53093 -CONFIG_SWAP=y
53094 -CONFIG_SYSVIPC=y
53095 -CONFIG_SYSVIPC_SYSCTL=y
53096 -CONFIG_POSIX_MQUEUE=y
53097 -# CONFIG_BSD_PROCESS_ACCT is not set
53098 -# CONFIG_TASKSTATS is not set
53099 -# CONFIG_AUDIT is not set
53100 -# CONFIG_IKCONFIG is not set
53101 -CONFIG_LOG_BUF_SHIFT=14
53102 -# CONFIG_CGROUPS is not set
53103 -CONFIG_GROUP_SCHED=y
53104 -# CONFIG_FAIR_GROUP_SCHED is not set
53105 -# CONFIG_RT_GROUP_SCHED is not set
53106 -CONFIG_USER_SCHED=y
53107 -# CONFIG_CGROUP_SCHED is not set
53108 -CONFIG_SYSFS_DEPRECATED=y
53109 -# CONFIG_RELAY is not set
53110 -# CONFIG_NAMESPACES is not set
53111 -CONFIG_BLK_DEV_INITRD=y
53112 -CONFIG_INITRAMFS_SOURCE=""
53113 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
53114 -CONFIG_SYSCTL=y
53115 -CONFIG_EMBEDDED=y
53116 -CONFIG_SYSCTL_SYSCALL=y
53117 -CONFIG_KALLSYMS=y
53118 -CONFIG_KALLSYMS_ALL=y
53119 -CONFIG_KALLSYMS_EXTRA_PASS=y
53120 -CONFIG_HOTPLUG=y
53121 -CONFIG_PRINTK=y
53122 -CONFIG_BUG=y
53123 -CONFIG_ELF_CORE=y
53124 -CONFIG_COMPAT_BRK=y
53125 -CONFIG_BASE_FULL=y
53126 -CONFIG_FUTEX=y
53127 -CONFIG_ANON_INODES=y
53128 -CONFIG_EPOLL=y
53129 -CONFIG_SIGNALFD=y
53130 -CONFIG_TIMERFD=y
53131 -CONFIG_EVENTFD=y
53132 -CONFIG_SHMEM=y
53133 -CONFIG_VM_EVENT_COUNTERS=y
53134 -CONFIG_SLUB_DEBUG=y
53135 -# CONFIG_SLAB is not set
53136 -CONFIG_SLUB=y
53137 -# CONFIG_SLOB is not set
53138 -# CONFIG_PROFILING is not set
53139 -# CONFIG_MARKERS is not set
53140 -CONFIG_HAVE_OPROFILE=y
53141 -# CONFIG_KPROBES is not set
53142 -CONFIG_HAVE_KPROBES=y
53143 -CONFIG_PROC_PAGE_MONITOR=y
53144 -CONFIG_SLABINFO=y
53145 -CONFIG_RT_MUTEXES=y
53146 -# CONFIG_TINY_SHMEM is not set
53147 -CONFIG_BASE_SMALL=0
53148 -CONFIG_MODULES=y
53149 -CONFIG_MODULE_UNLOAD=y
53150 -# CONFIG_MODULE_FORCE_UNLOAD is not set
53151 -# CONFIG_MODVERSIONS is not set
53152 -# CONFIG_MODULE_SRCVERSION_ALL is not set
53153 -CONFIG_KMOD=y
53154 -CONFIG_BLOCK=y
53155 -CONFIG_LBD=y
53156 -# CONFIG_BLK_DEV_IO_TRACE is not set
53157 -# CONFIG_LSF is not set
53158 -# CONFIG_BLK_DEV_BSG is not set
53159 -
53160 -#
53161 -# IO Schedulers
53162 -#
53163 -CONFIG_IOSCHED_NOOP=y
53164 -CONFIG_IOSCHED_AS=y
53165 -CONFIG_IOSCHED_DEADLINE=y
53166 -CONFIG_IOSCHED_CFQ=y
53167 -CONFIG_DEFAULT_AS=y
53168 -# CONFIG_DEFAULT_DEADLINE is not set
53169 -# CONFIG_DEFAULT_CFQ is not set
53170 -# CONFIG_DEFAULT_NOOP is not set
53171 -CONFIG_DEFAULT_IOSCHED="anticipatory"
53172 -CONFIG_CLASSIC_RCU=y
53173 -# CONFIG_PREEMPT_RCU is not set
53174 -CONFIG_PPC4xx_PCI_EXPRESS=y
53175 -
53176 -#
53177 -# Platform support
53178 -#
53179 -# CONFIG_PPC_MPC512x is not set
53180 -# CONFIG_PPC_MPC5121 is not set
53181 -# CONFIG_PPC_CELL is not set
53182 -# CONFIG_PPC_CELL_NATIVE is not set
53183 -# CONFIG_PQ2ADS is not set
53184 -# CONFIG_EP405 is not set
53185 -# CONFIG_KILAUEA is not set
53186 -CONFIG_MAKALU=y
53187 -# CONFIG_WALNUT is not set
53188 -# CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set
53189 -CONFIG_405EX=y
53190 -# CONFIG_IPIC is not set
53191 -# CONFIG_MPIC is not set
53192 -# CONFIG_MPIC_WEIRD is not set
53193 -# CONFIG_PPC_I8259 is not set
53194 -# CONFIG_PPC_RTAS is not set
53195 -# CONFIG_MMIO_NVRAM is not set
53196 -# CONFIG_PPC_MPC106 is not set
53197 -# CONFIG_PPC_970_NAP is not set
53198 -# CONFIG_PPC_INDIRECT_IO is not set
53199 -# CONFIG_GENERIC_IOMAP is not set
53200 -# CONFIG_CPU_FREQ is not set
53201 -# CONFIG_FSL_ULI1575 is not set
53202 -
53203 -#
53204 -# Kernel options
53205 -#
53206 -# CONFIG_HIGHMEM is not set
53207 -# CONFIG_TICK_ONESHOT is not set
53208 -# CONFIG_NO_HZ is not set
53209 -# CONFIG_HIGH_RES_TIMERS is not set
53210 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
53211 -# CONFIG_HZ_100 is not set
53212 -CONFIG_HZ_250=y
53213 -# CONFIG_HZ_300 is not set
53214 -# CONFIG_HZ_1000 is not set
53215 -CONFIG_HZ=250
53216 -# CONFIG_SCHED_HRTICK is not set
53217 -CONFIG_PREEMPT_NONE=y
53218 -# CONFIG_PREEMPT_VOLUNTARY is not set
53219 -# CONFIG_PREEMPT is not set
53220 -CONFIG_RCU_TRACE=y
53221 -CONFIG_BINFMT_ELF=y
53222 -# CONFIG_BINFMT_MISC is not set
53223 -# CONFIG_MATH_EMULATION is not set
53224 -# CONFIG_IOMMU_HELPER is not set
53225 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
53226 -CONFIG_ARCH_HAS_WALK_MEMORY=y
53227 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
53228 -CONFIG_ARCH_FLATMEM_ENABLE=y
53229 -CONFIG_ARCH_POPULATES_NODE_MAP=y
53230 -CONFIG_SELECT_MEMORY_MODEL=y
53231 -CONFIG_FLATMEM_MANUAL=y
53232 -# CONFIG_DISCONTIGMEM_MANUAL is not set
53233 -# CONFIG_SPARSEMEM_MANUAL is not set
53234 -CONFIG_FLATMEM=y
53235 -CONFIG_FLAT_NODE_MEM_MAP=y
53236 -# CONFIG_SPARSEMEM_STATIC is not set
53237 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
53238 -CONFIG_SPLIT_PTLOCK_CPUS=4
53239 -# CONFIG_RESOURCES_64BIT is not set
53240 -CONFIG_ZONE_DMA_FLAG=1
53241 -CONFIG_BOUNCE=y
53242 -CONFIG_VIRT_TO_BUS=y
53243 -CONFIG_PROC_DEVICETREE=y
53244 -# CONFIG_CMDLINE_BOOL is not set
53245 -# CONFIG_PM is not set
53246 -CONFIG_SECCOMP=y
53247 -CONFIG_ISA_DMA_API=y
53248 -
53249 -#
53250 -# Bus options
53251 -#
53252 -CONFIG_ZONE_DMA=y
53253 -CONFIG_PPC_INDIRECT_PCI=y
53254 -CONFIG_PCI=y
53255 -CONFIG_PCI_DOMAINS=y
53256 -CONFIG_PCI_SYSCALL=y
53257 -# CONFIG_PCIEPORTBUS is not set
53258 -CONFIG_ARCH_SUPPORTS_MSI=y
53259 -# CONFIG_PCI_MSI is not set
53260 -CONFIG_PCI_LEGACY=y
53261 -# CONFIG_PCI_DEBUG is not set
53262 -# CONFIG_PCCARD is not set
53263 -# CONFIG_HOTPLUG_PCI is not set
53264 -
53265 -#
53266 -# Advanced setup
53267 -#
53268 -# CONFIG_ADVANCED_OPTIONS is not set
53269 -
53270 -#
53271 -# Default settings for advanced configuration options are used
53272 -#
53273 -CONFIG_HIGHMEM_START=0xfe000000
53274 -CONFIG_LOWMEM_SIZE=0x30000000
53275 -CONFIG_KERNEL_START=0xc0000000
53276 -CONFIG_TASK_SIZE=0xc0000000
53277 -CONFIG_CONSISTENT_START=0xff100000
53278 -CONFIG_CONSISTENT_SIZE=0x00200000
53279 -CONFIG_BOOT_LOAD=0x00400000
53280 -
53281 -#
53282 -# Networking
53283 -#
53284 -CONFIG_NET=y
53285 -
53286 -#
53287 -# Networking options
53288 -#
53289 -CONFIG_PACKET=y
53290 -# CONFIG_PACKET_MMAP is not set
53291 -CONFIG_UNIX=y
53292 -# CONFIG_NET_KEY is not set
53293 -CONFIG_INET=y
53294 -# CONFIG_IP_MULTICAST is not set
53295 -# CONFIG_IP_ADVANCED_ROUTER is not set
53296 -CONFIG_IP_FIB_HASH=y
53297 -CONFIG_IP_PNP=y
53298 -CONFIG_IP_PNP_DHCP=y
53299 -CONFIG_IP_PNP_BOOTP=y
53300 -# CONFIG_IP_PNP_RARP is not set
53301 -# CONFIG_NET_IPIP is not set
53302 -# CONFIG_NET_IPGRE is not set
53303 -# CONFIG_ARPD is not set
53304 -# CONFIG_SYN_COOKIES is not set
53305 -# CONFIG_INET_AH is not set
53306 -# CONFIG_INET_ESP is not set
53307 -# CONFIG_INET_IPCOMP is not set
53308 -# CONFIG_INET_XFRM_TUNNEL is not set
53309 -# CONFIG_INET_TUNNEL is not set
53310 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
53311 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
53312 -# CONFIG_INET_XFRM_MODE_BEET is not set
53313 -# CONFIG_INET_LRO is not set
53314 -CONFIG_INET_DIAG=y
53315 -CONFIG_INET_TCP_DIAG=y
53316 -# CONFIG_TCP_CONG_ADVANCED is not set
53317 -CONFIG_TCP_CONG_CUBIC=y
53318 -CONFIG_DEFAULT_TCP_CONG="cubic"
53319 -# CONFIG_TCP_MD5SIG is not set
53320 -# CONFIG_IPV6 is not set
53321 -# CONFIG_INET6_XFRM_TUNNEL is not set
53322 -# CONFIG_INET6_TUNNEL is not set
53323 -# CONFIG_NETWORK_SECMARK is not set
53324 -# CONFIG_NETFILTER is not set
53325 -# CONFIG_IP_DCCP is not set
53326 -# CONFIG_IP_SCTP is not set
53327 -# CONFIG_TIPC is not set
53328 -# CONFIG_ATM is not set
53329 -# CONFIG_BRIDGE is not set
53330 -# CONFIG_VLAN_8021Q is not set
53331 -# CONFIG_DECNET is not set
53332 -# CONFIG_LLC2 is not set
53333 -# CONFIG_IPX is not set
53334 -# CONFIG_ATALK is not set
53335 -# CONFIG_X25 is not set
53336 -# CONFIG_LAPB is not set
53337 -# CONFIG_ECONET is not set
53338 -# CONFIG_WAN_ROUTER is not set
53339 -# CONFIG_NET_SCHED is not set
53340 -
53341 -#
53342 -# Network testing
53343 -#
53344 -# CONFIG_NET_PKTGEN is not set
53345 -# CONFIG_HAMRADIO is not set
53346 -# CONFIG_CAN is not set
53347 -# CONFIG_IRDA is not set
53348 -# CONFIG_BT is not set
53349 -# CONFIG_AF_RXRPC is not set
53350 -
53351 -#
53352 -# Wireless
53353 -#
53354 -# CONFIG_CFG80211 is not set
53355 -# CONFIG_WIRELESS_EXT is not set
53356 -# CONFIG_MAC80211 is not set
53357 -# CONFIG_IEEE80211 is not set
53358 -# CONFIG_RFKILL is not set
53359 -# CONFIG_NET_9P is not set
53360 -
53361 -#
53362 -# Device Drivers
53363 -#
53364 -
53365 -#
53366 -# Generic Driver Options
53367 -#
53368 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
53369 -CONFIG_STANDALONE=y
53370 -CONFIG_PREVENT_FIRMWARE_BUILD=y
53371 -CONFIG_FW_LOADER=y
53372 -# CONFIG_DEBUG_DRIVER is not set
53373 -# CONFIG_DEBUG_DEVRES is not set
53374 -# CONFIG_SYS_HYPERVISOR is not set
53375 -CONFIG_CONNECTOR=y
53376 -CONFIG_PROC_EVENTS=y
53377 -CONFIG_MTD=y
53378 -# CONFIG_MTD_DEBUG is not set
53379 -# CONFIG_MTD_CONCAT is not set
53380 -CONFIG_MTD_PARTITIONS=y
53381 -# CONFIG_MTD_REDBOOT_PARTS is not set
53382 -CONFIG_MTD_CMDLINE_PARTS=y
53383 -CONFIG_MTD_OF_PARTS=y
53384 -
53385 -#
53386 -# User Modules And Translation Layers
53387 -#
53388 -CONFIG_MTD_CHAR=y
53389 -CONFIG_MTD_BLKDEVS=m
53390 -CONFIG_MTD_BLOCK=m
53391 -# CONFIG_MTD_BLOCK_RO is not set
53392 -# CONFIG_FTL is not set
53393 -# CONFIG_NFTL is not set
53394 -# CONFIG_INFTL is not set
53395 -# CONFIG_RFD_FTL is not set
53396 -# CONFIG_SSFDC is not set
53397 -# CONFIG_MTD_OOPS is not set
53398 -
53399 -#
53400 -# RAM/ROM/Flash chip drivers
53401 -#
53402 -CONFIG_MTD_CFI=y
53403 -CONFIG_MTD_JEDECPROBE=y
53404 -CONFIG_MTD_GEN_PROBE=y
53405 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
53406 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
53407 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
53408 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
53409 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
53410 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
53411 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
53412 -CONFIG_MTD_CFI_I1=y
53413 -CONFIG_MTD_CFI_I2=y
53414 -# CONFIG_MTD_CFI_I4 is not set
53415 -# CONFIG_MTD_CFI_I8 is not set
53416 -# CONFIG_MTD_CFI_INTELEXT is not set
53417 -CONFIG_MTD_CFI_AMDSTD=y
53418 -# CONFIG_MTD_CFI_STAA is not set
53419 -CONFIG_MTD_CFI_UTIL=y
53420 -# CONFIG_MTD_RAM is not set
53421 -# CONFIG_MTD_ROM is not set
53422 -# CONFIG_MTD_ABSENT is not set
53423 -
53424 -#
53425 -# Mapping drivers for chip access
53426 -#
53427 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
53428 -# CONFIG_MTD_PHYSMAP is not set
53429 -CONFIG_MTD_PHYSMAP_OF=y
53430 -# CONFIG_MTD_INTEL_VR_NOR is not set
53431 -# CONFIG_MTD_PLATRAM is not set
53432 -
53433 -#
53434 -# Self-contained MTD device drivers
53435 -#
53436 -# CONFIG_MTD_PMC551 is not set
53437 -# CONFIG_MTD_SLRAM is not set
53438 -# CONFIG_MTD_PHRAM is not set
53439 -# CONFIG_MTD_MTDRAM is not set
53440 -# CONFIG_MTD_BLOCK2MTD is not set
53441 -
53442 -#
53443 -# Disk-On-Chip Device Drivers
53444 -#
53445 -# CONFIG_MTD_DOC2000 is not set
53446 -# CONFIG_MTD_DOC2001 is not set
53447 -# CONFIG_MTD_DOC2001PLUS is not set
53448 -# CONFIG_MTD_NAND is not set
53449 -# CONFIG_MTD_ONENAND is not set
53450 -
53451 -#
53452 -# UBI - Unsorted block images
53453 -#
53454 -# CONFIG_MTD_UBI is not set
53455 -CONFIG_OF_DEVICE=y
53456 -# CONFIG_PARPORT is not set
53457 -CONFIG_BLK_DEV=y
53458 -# CONFIG_BLK_DEV_FD is not set
53459 -# CONFIG_BLK_CPQ_DA is not set
53460 -# CONFIG_BLK_CPQ_CISS_DA is not set
53461 -# CONFIG_BLK_DEV_DAC960 is not set
53462 -# CONFIG_BLK_DEV_UMEM is not set
53463 -# CONFIG_BLK_DEV_COW_COMMON is not set
53464 -# CONFIG_BLK_DEV_LOOP is not set
53465 -# CONFIG_BLK_DEV_NBD is not set
53466 -# CONFIG_BLK_DEV_SX8 is not set
53467 -CONFIG_BLK_DEV_RAM=y
53468 -CONFIG_BLK_DEV_RAM_COUNT=16
53469 -CONFIG_BLK_DEV_RAM_SIZE=35000
53470 -# CONFIG_BLK_DEV_XIP is not set
53471 -# CONFIG_CDROM_PKTCDVD is not set
53472 -# CONFIG_ATA_OVER_ETH is not set
53473 -# CONFIG_XILINX_SYSACE is not set
53474 -# CONFIG_MISC_DEVICES is not set
53475 -CONFIG_HAVE_IDE=y
53476 -# CONFIG_IDE is not set
53477 -
53478 -#
53479 -# SCSI device support
53480 -#
53481 -# CONFIG_RAID_ATTRS is not set
53482 -# CONFIG_SCSI is not set
53483 -# CONFIG_SCSI_DMA is not set
53484 -# CONFIG_SCSI_NETLINK is not set
53485 -# CONFIG_ATA is not set
53486 -# CONFIG_MD is not set
53487 -# CONFIG_FUSION is not set
53488 -
53489 -#
53490 -# IEEE 1394 (FireWire) support
53491 -#
53492 -# CONFIG_FIREWIRE is not set
53493 -# CONFIG_IEEE1394 is not set
53494 -# CONFIG_I2O is not set
53495 -# CONFIG_MACINTOSH_DRIVERS is not set
53496 -CONFIG_NETDEVICES=y
53497 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
53498 -# CONFIG_DUMMY is not set
53499 -# CONFIG_BONDING is not set
53500 -# CONFIG_MACVLAN is not set
53501 -# CONFIG_EQUALIZER is not set
53502 -# CONFIG_TUN is not set
53503 -# CONFIG_VETH is not set
53504 -# CONFIG_ARCNET is not set
53505 -# CONFIG_PHYLIB is not set
53506 -CONFIG_NET_ETHERNET=y
53507 -# CONFIG_MII is not set
53508 -# CONFIG_HAPPYMEAL is not set
53509 -# CONFIG_SUNGEM is not set
53510 -# CONFIG_CASSINI is not set
53511 -# CONFIG_NET_VENDOR_3COM is not set
53512 -# CONFIG_NET_TULIP is not set
53513 -# CONFIG_HP100 is not set
53514 -CONFIG_IBM_NEW_EMAC=y
53515 -CONFIG_IBM_NEW_EMAC_RXB=256
53516 -CONFIG_IBM_NEW_EMAC_TXB=256
53517 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
53518 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
53519 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
53520 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
53521 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
53522 -CONFIG_IBM_NEW_EMAC_RGMII=y
53523 -# CONFIG_IBM_NEW_EMAC_TAH is not set
53524 -CONFIG_IBM_NEW_EMAC_EMAC4=y
53525 -# CONFIG_NET_PCI is not set
53526 -# CONFIG_B44 is not set
53527 -# CONFIG_NETDEV_1000 is not set
53528 -# CONFIG_NETDEV_10000 is not set
53529 -# CONFIG_TR is not set
53530 -
53531 -#
53532 -# Wireless LAN
53533 -#
53534 -# CONFIG_WLAN_PRE80211 is not set
53535 -# CONFIG_WLAN_80211 is not set
53536 -# CONFIG_WAN is not set
53537 -# CONFIG_FDDI is not set
53538 -# CONFIG_HIPPI is not set
53539 -# CONFIG_PPP is not set
53540 -# CONFIG_SLIP is not set
53541 -# CONFIG_NETCONSOLE is not set
53542 -# CONFIG_NETPOLL is not set
53543 -# CONFIG_NET_POLL_CONTROLLER is not set
53544 -# CONFIG_ISDN is not set
53545 -# CONFIG_PHONE is not set
53546 -
53547 -#
53548 -# Input device support
53549 -#
53550 -# CONFIG_INPUT is not set
53551 -
53552 -#
53553 -# Hardware I/O ports
53554 -#
53555 -# CONFIG_SERIO is not set
53556 -# CONFIG_GAMEPORT is not set
53557 -
53558 -#
53559 -# Character devices
53560 -#
53561 -# CONFIG_VT is not set
53562 -# CONFIG_SERIAL_NONSTANDARD is not set
53563 -# CONFIG_NOZOMI is not set
53564 -
53565 -#
53566 -# Serial drivers
53567 -#
53568 -CONFIG_SERIAL_8250=y
53569 -CONFIG_SERIAL_8250_CONSOLE=y
53570 -CONFIG_SERIAL_8250_PCI=y
53571 -CONFIG_SERIAL_8250_NR_UARTS=4
53572 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
53573 -CONFIG_SERIAL_8250_EXTENDED=y
53574 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
53575 -CONFIG_SERIAL_8250_SHARE_IRQ=y
53576 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
53577 -# CONFIG_SERIAL_8250_RSA is not set
53578 -
53579 -#
53580 -# Non-8250 serial port support
53581 -#
53582 -# CONFIG_SERIAL_UARTLITE is not set
53583 -CONFIG_SERIAL_CORE=y
53584 -CONFIG_SERIAL_CORE_CONSOLE=y
53585 -# CONFIG_SERIAL_JSM is not set
53586 -CONFIG_SERIAL_OF_PLATFORM=y
53587 -CONFIG_UNIX98_PTYS=y
53588 -CONFIG_LEGACY_PTYS=y
53589 -CONFIG_LEGACY_PTY_COUNT=256
53590 -# CONFIG_IPMI_HANDLER is not set
53591 -# CONFIG_HW_RANDOM is not set
53592 -# CONFIG_NVRAM is not set
53593 -# CONFIG_GEN_RTC is not set
53594 -# CONFIG_R3964 is not set
53595 -# CONFIG_APPLICOM is not set
53596 -# CONFIG_RAW_DRIVER is not set
53597 -# CONFIG_TCG_TPM is not set
53598 -CONFIG_DEVPORT=y
53599 -# CONFIG_I2C is not set
53600 -
53601 -#
53602 -# SPI support
53603 -#
53604 -# CONFIG_SPI is not set
53605 -# CONFIG_SPI_MASTER is not set
53606 -# CONFIG_W1 is not set
53607 -# CONFIG_POWER_SUPPLY is not set
53608 -# CONFIG_HWMON is not set
53609 -CONFIG_THERMAL=y
53610 -# CONFIG_WATCHDOG is not set
53611 -
53612 -#
53613 -# Sonics Silicon Backplane
53614 -#
53615 -CONFIG_SSB_POSSIBLE=y
53616 -# CONFIG_SSB is not set
53617 -
53618 -#
53619 -# Multifunction device drivers
53620 -#
53621 -# CONFIG_MFD_SM501 is not set
53622 -
53623 -#
53624 -# Multimedia devices
53625 -#
53626 -# CONFIG_VIDEO_DEV is not set
53627 -# CONFIG_DVB_CORE is not set
53628 -# CONFIG_DAB is not set
53629 -
53630 -#
53631 -# Graphics support
53632 -#
53633 -# CONFIG_AGP is not set
53634 -# CONFIG_DRM is not set
53635 -# CONFIG_VGASTATE is not set
53636 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
53637 -# CONFIG_FB is not set
53638 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
53639 -
53640 -#
53641 -# Display device support
53642 -#
53643 -# CONFIG_DISPLAY_SUPPORT is not set
53644 -
53645 -#
53646 -# Sound
53647 -#
53648 -# CONFIG_SOUND is not set
53649 -# CONFIG_USB_SUPPORT is not set
53650 -# CONFIG_MMC is not set
53651 -# CONFIG_MEMSTICK is not set
53652 -# CONFIG_NEW_LEDS is not set
53653 -# CONFIG_INFINIBAND is not set
53654 -# CONFIG_EDAC is not set
53655 -# CONFIG_RTC_CLASS is not set
53656 -
53657 -#
53658 -# Userspace I/O
53659 -#
53660 -# CONFIG_UIO is not set
53661 -
53662 -#
53663 -# File systems
53664 -#
53665 -CONFIG_EXT2_FS=y
53666 -# CONFIG_EXT2_FS_XATTR is not set
53667 -# CONFIG_EXT2_FS_XIP is not set
53668 -# CONFIG_EXT3_FS is not set
53669 -# CONFIG_EXT4DEV_FS is not set
53670 -# CONFIG_REISERFS_FS is not set
53671 -# CONFIG_JFS_FS is not set
53672 -# CONFIG_FS_POSIX_ACL is not set
53673 -# CONFIG_XFS_FS is not set
53674 -# CONFIG_GFS2_FS is not set
53675 -# CONFIG_OCFS2_FS is not set
53676 -CONFIG_DNOTIFY=y
53677 -CONFIG_INOTIFY=y
53678 -CONFIG_INOTIFY_USER=y
53679 -# CONFIG_QUOTA is not set
53680 -# CONFIG_AUTOFS_FS is not set
53681 -# CONFIG_AUTOFS4_FS is not set
53682 -# CONFIG_FUSE_FS is not set
53683 -
53684 -#
53685 -# CD-ROM/DVD Filesystems
53686 -#
53687 -# CONFIG_ISO9660_FS is not set
53688 -# CONFIG_UDF_FS is not set
53689 -
53690 -#
53691 -# DOS/FAT/NT Filesystems
53692 -#
53693 -# CONFIG_MSDOS_FS is not set
53694 -# CONFIG_VFAT_FS is not set
53695 -# CONFIG_NTFS_FS is not set
53696 -
53697 -#
53698 -# Pseudo filesystems
53699 -#
53700 -CONFIG_PROC_FS=y
53701 -CONFIG_PROC_KCORE=y
53702 -CONFIG_PROC_SYSCTL=y
53703 -CONFIG_SYSFS=y
53704 -CONFIG_TMPFS=y
53705 -# CONFIG_TMPFS_POSIX_ACL is not set
53706 -# CONFIG_HUGETLB_PAGE is not set
53707 -# CONFIG_CONFIGFS_FS is not set
53708 -
53709 -#
53710 -# Miscellaneous filesystems
53711 -#
53712 -# CONFIG_ADFS_FS is not set
53713 -# CONFIG_AFFS_FS is not set
53714 -# CONFIG_HFS_FS is not set
53715 -# CONFIG_HFSPLUS_FS is not set
53716 -# CONFIG_BEFS_FS is not set
53717 -# CONFIG_BFS_FS is not set
53718 -# CONFIG_EFS_FS is not set
53719 -# CONFIG_JFFS2_FS is not set
53720 -CONFIG_CRAMFS=y
53721 -# CONFIG_VXFS_FS is not set
53722 -# CONFIG_MINIX_FS is not set
53723 -# CONFIG_HPFS_FS is not set
53724 -# CONFIG_QNX4FS_FS is not set
53725 -# CONFIG_ROMFS_FS is not set
53726 -# CONFIG_SYSV_FS is not set
53727 -# CONFIG_UFS_FS is not set
53728 -CONFIG_NETWORK_FILESYSTEMS=y
53729 -CONFIG_NFS_FS=y
53730 -CONFIG_NFS_V3=y
53731 -# CONFIG_NFS_V3_ACL is not set
53732 -# CONFIG_NFS_V4 is not set
53733 -# CONFIG_NFS_DIRECTIO is not set
53734 -# CONFIG_NFSD is not set
53735 -CONFIG_ROOT_NFS=y
53736 -CONFIG_LOCKD=y
53737 -CONFIG_LOCKD_V4=y
53738 -CONFIG_NFS_COMMON=y
53739 -CONFIG_SUNRPC=y
53740 -# CONFIG_SUNRPC_BIND34 is not set
53741 -# CONFIG_RPCSEC_GSS_KRB5 is not set
53742 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
53743 -# CONFIG_SMB_FS is not set
53744 -# CONFIG_CIFS is not set
53745 -# CONFIG_NCP_FS is not set
53746 -# CONFIG_CODA_FS is not set
53747 -# CONFIG_AFS_FS is not set
53748 -
53749 -#
53750 -# Partition Types
53751 -#
53752 -# CONFIG_PARTITION_ADVANCED is not set
53753 -CONFIG_MSDOS_PARTITION=y
53754 -# CONFIG_NLS is not set
53755 -# CONFIG_DLM is not set
53756 -
53757 -#
53758 -# Library routines
53759 -#
53760 -CONFIG_BITREVERSE=y
53761 -# CONFIG_CRC_CCITT is not set
53762 -# CONFIG_CRC16 is not set
53763 -# CONFIG_CRC_ITU_T is not set
53764 -CONFIG_CRC32=y
53765 -# CONFIG_CRC7 is not set
53766 -# CONFIG_LIBCRC32C is not set
53767 -CONFIG_ZLIB_INFLATE=y
53768 -CONFIG_PLIST=y
53769 -CONFIG_HAS_IOMEM=y
53770 -CONFIG_HAS_IOPORT=y
53771 -CONFIG_HAS_DMA=y
53772 -
53773 -#
53774 -# Kernel hacking
53775 -#
53776 -# CONFIG_PRINTK_TIME is not set
53777 -CONFIG_ENABLE_WARN_DEPRECATED=y
53778 -CONFIG_ENABLE_MUST_CHECK=y
53779 -CONFIG_MAGIC_SYSRQ=y
53780 -# CONFIG_UNUSED_SYMBOLS is not set
53781 -CONFIG_DEBUG_FS=y
53782 -# CONFIG_HEADERS_CHECK is not set
53783 -CONFIG_DEBUG_KERNEL=y
53784 -# CONFIG_DEBUG_SHIRQ is not set
53785 -CONFIG_DETECT_SOFTLOCKUP=y
53786 -CONFIG_SCHED_DEBUG=y
53787 -# CONFIG_SCHEDSTATS is not set
53788 -# CONFIG_TIMER_STATS is not set
53789 -# CONFIG_SLUB_DEBUG_ON is not set
53790 -# CONFIG_SLUB_STATS is not set
53791 -# CONFIG_DEBUG_RT_MUTEXES is not set
53792 -# CONFIG_RT_MUTEX_TESTER is not set
53793 -# CONFIG_DEBUG_SPINLOCK is not set
53794 -# CONFIG_DEBUG_MUTEXES is not set
53795 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
53796 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
53797 -# CONFIG_DEBUG_KOBJECT is not set
53798 -CONFIG_DEBUG_BUGVERBOSE=y
53799 -# CONFIG_DEBUG_INFO is not set
53800 -# CONFIG_DEBUG_VM is not set
53801 -# CONFIG_DEBUG_LIST is not set
53802 -# CONFIG_DEBUG_SG is not set
53803 -# CONFIG_BOOT_PRINTK_DELAY is not set
53804 -# CONFIG_RCU_TORTURE_TEST is not set
53805 -# CONFIG_BACKTRACE_SELF_TEST is not set
53806 -# CONFIG_FAULT_INJECTION is not set
53807 -# CONFIG_SAMPLES is not set
53808 -# CONFIG_DEBUG_STACKOVERFLOW is not set
53809 -# CONFIG_DEBUG_STACK_USAGE is not set
53810 -# CONFIG_DEBUG_PAGEALLOC is not set
53811 -# CONFIG_DEBUGGER is not set
53812 -# CONFIG_VIRQ_DEBUG is not set
53813 -# CONFIG_BDI_SWITCH is not set
53814 -# CONFIG_PPC_EARLY_DEBUG is not set
53815 -
53816 -#
53817 -# Security options
53818 -#
53819 -# CONFIG_KEYS is not set
53820 -# CONFIG_SECURITY is not set
53821 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
53822 -CONFIG_CRYPTO=y
53823 -CONFIG_CRYPTO_ALGAPI=y
53824 -CONFIG_CRYPTO_BLKCIPHER=y
53825 -# CONFIG_CRYPTO_SEQIV is not set
53826 -CONFIG_CRYPTO_MANAGER=y
53827 -# CONFIG_CRYPTO_HMAC is not set
53828 -# CONFIG_CRYPTO_XCBC is not set
53829 -# CONFIG_CRYPTO_NULL is not set
53830 -# CONFIG_CRYPTO_MD4 is not set
53831 -CONFIG_CRYPTO_MD5=y
53832 -# CONFIG_CRYPTO_SHA1 is not set
53833 -# CONFIG_CRYPTO_SHA256 is not set
53834 -# CONFIG_CRYPTO_SHA512 is not set
53835 -# CONFIG_CRYPTO_WP512 is not set
53836 -# CONFIG_CRYPTO_TGR192 is not set
53837 -# CONFIG_CRYPTO_GF128MUL is not set
53838 -CONFIG_CRYPTO_ECB=y
53839 -CONFIG_CRYPTO_CBC=y
53840 -CONFIG_CRYPTO_PCBC=y
53841 -# CONFIG_CRYPTO_LRW is not set
53842 -# CONFIG_CRYPTO_XTS is not set
53843 -# CONFIG_CRYPTO_CTR is not set
53844 -# CONFIG_CRYPTO_GCM is not set
53845 -# CONFIG_CRYPTO_CCM is not set
53846 -# CONFIG_CRYPTO_CRYPTD is not set
53847 -CONFIG_CRYPTO_DES=y
53848 -# CONFIG_CRYPTO_FCRYPT is not set
53849 -# CONFIG_CRYPTO_BLOWFISH is not set
53850 -# CONFIG_CRYPTO_TWOFISH is not set
53851 -# CONFIG_CRYPTO_SERPENT is not set
53852 -# CONFIG_CRYPTO_AES is not set
53853 -# CONFIG_CRYPTO_CAST5 is not set
53854 -# CONFIG_CRYPTO_CAST6 is not set
53855 -# CONFIG_CRYPTO_TEA is not set
53856 -# CONFIG_CRYPTO_ARC4 is not set
53857 -# CONFIG_CRYPTO_KHAZAD is not set
53858 -# CONFIG_CRYPTO_ANUBIS is not set
53859 -# CONFIG_CRYPTO_SEED is not set
53860 -# CONFIG_CRYPTO_SALSA20 is not set
53861 -# CONFIG_CRYPTO_DEFLATE is not set
53862 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
53863 -# CONFIG_CRYPTO_CRC32C is not set
53864 -# CONFIG_CRYPTO_CAMELLIA is not set
53865 -# CONFIG_CRYPTO_TEST is not set
53866 -# CONFIG_CRYPTO_AUTHENC is not set
53867 -# CONFIG_CRYPTO_LZO is not set
53868 -CONFIG_CRYPTO_HW=y
53869 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
53870 -# CONFIG_PPC_CLOCK is not set
53871 Index: linux-2.6.25.4/arch/powerpc/configs/maple_defconfig
53872 ===================================================================
53873 --- linux-2.6.25.4.orig/arch/powerpc/configs/maple_defconfig
53874 +++ linux-2.6.25.4/arch/powerpc/configs/maple_defconfig
53875 @@ -333,7 +333,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
53876 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
53877 CONFIG_STANDALONE=y
53878 CONFIG_PREVENT_FIRMWARE_BUILD=y
53879 -# CONFIG_FW_LOADER is not set
53880 +CONFIG_FW_LOADER=y
53881 # CONFIG_DEBUG_DRIVER is not set
53882 # CONFIG_DEBUG_DEVRES is not set
53883 # CONFIG_SYS_HYPERVISOR is not set
53884 @@ -374,6 +374,7 @@ CONFIG_BLK_DEV_IDEDISK=y
53885 CONFIG_BLK_DEV_IDECD=y
53886 # CONFIG_BLK_DEV_IDETAPE is not set
53887 # CONFIG_BLK_DEV_IDEFLOPPY is not set
53888 +# CONFIG_BLK_DEV_IDESCSI is not set
53889 CONFIG_IDE_TASK_IOCTL=y
53890 CONFIG_IDE_PROC_FS=y
53891
53892 @@ -427,10 +428,129 @@ CONFIG_IDE_ARCH_OBSOLETE_INIT=y
53893 # SCSI device support
53894 #
53895 # CONFIG_RAID_ATTRS is not set
53896 -# CONFIG_SCSI is not set
53897 -# CONFIG_SCSI_DMA is not set
53898 +CONFIG_SCSI=y
53899 +CONFIG_SCSI_DMA=y
53900 +# CONFIG_SCSI_TGT is not set
53901 # CONFIG_SCSI_NETLINK is not set
53902 -# CONFIG_ATA is not set
53903 +# CONFIG_SCSI_PROC_FS is not set
53904 +
53905 +#
53906 +# SCSI support type (disk, tape, CD-ROM)
53907 +#
53908 +CONFIG_BLK_DEV_SD=y
53909 +# CONFIG_CHR_DEV_ST is not set
53910 +# CONFIG_CHR_DEV_OSST is not set
53911 +# CONFIG_BLK_DEV_SR is not set
53912 +CONFIG_CHR_DEV_SG=y
53913 +# CONFIG_CHR_DEV_SCH is not set
53914 +
53915 +#
53916 +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
53917 +#
53918 +# CONFIG_SCSI_MULTI_LUN is not set
53919 +# CONFIG_SCSI_CONSTANTS is not set
53920 +# CONFIG_SCSI_LOGGING is not set
53921 +# CONFIG_SCSI_SCAN_ASYNC is not set
53922 +CONFIG_SCSI_WAIT_SCAN=m
53923 +
53924 +#
53925 +# SCSI Transports
53926 +#
53927 +# CONFIG_SCSI_SPI_ATTRS is not set
53928 +# CONFIG_SCSI_FC_ATTRS is not set
53929 +# CONFIG_SCSI_ISCSI_ATTRS is not set
53930 +# CONFIG_SCSI_SAS_LIBSAS is not set
53931 +# CONFIG_SCSI_SRP_ATTRS is not set
53932 +CONFIG_SCSI_LOWLEVEL=y
53933 +# CONFIG_ISCSI_TCP is not set
53934 +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
53935 +# CONFIG_SCSI_3W_9XXX is not set
53936 +# CONFIG_SCSI_ACARD is not set
53937 +# CONFIG_SCSI_AACRAID is not set
53938 +# CONFIG_SCSI_AIC7XXX is not set
53939 +# CONFIG_SCSI_AIC7XXX_OLD is not set
53940 +# CONFIG_SCSI_AIC79XX is not set
53941 +# CONFIG_SCSI_AIC94XX is not set
53942 +# CONFIG_SCSI_ARCMSR is not set
53943 +# CONFIG_MEGARAID_NEWGEN is not set
53944 +# CONFIG_MEGARAID_LEGACY is not set
53945 +# CONFIG_MEGARAID_SAS is not set
53946 +# CONFIG_SCSI_HPTIOP is not set
53947 +# CONFIG_SCSI_DMX3191D is not set
53948 +# CONFIG_SCSI_EATA is not set
53949 +# CONFIG_SCSI_FUTURE_DOMAIN is not set
53950 +# CONFIG_SCSI_GDTH is not set
53951 +# CONFIG_SCSI_IPS is not set
53952 +# CONFIG_SCSI_INITIO is not set
53953 +# CONFIG_SCSI_INIA100 is not set
53954 +# CONFIG_SCSI_STEX is not set
53955 +# CONFIG_SCSI_SYM53C8XX_2 is not set
53956 +CONFIG_SCSI_IPR=y
53957 +CONFIG_SCSI_IPR_TRACE=y
53958 +CONFIG_SCSI_IPR_DUMP=y
53959 +# CONFIG_SCSI_QLOGIC_1280 is not set
53960 +# CONFIG_SCSI_QLA_FC is not set
53961 +# CONFIG_SCSI_QLA_ISCSI is not set
53962 +# CONFIG_SCSI_LPFC is not set
53963 +# CONFIG_SCSI_DC395x is not set
53964 +# CONFIG_SCSI_DC390T is not set
53965 +# CONFIG_SCSI_DEBUG is not set
53966 +# CONFIG_SCSI_SRP is not set
53967 +CONFIG_ATA=y
53968 +CONFIG_ATA_NONSTANDARD=y
53969 +# CONFIG_SATA_AHCI is not set
53970 +# CONFIG_SATA_SVW is not set
53971 +# CONFIG_ATA_PIIX is not set
53972 +# CONFIG_SATA_MV is not set
53973 +# CONFIG_SATA_NV is not set
53974 +# CONFIG_PDC_ADMA is not set
53975 +# CONFIG_SATA_QSTOR is not set
53976 +# CONFIG_SATA_PROMISE is not set
53977 +# CONFIG_SATA_SX4 is not set
53978 +# CONFIG_SATA_SIL is not set
53979 +# CONFIG_SATA_SIL24 is not set
53980 +# CONFIG_SATA_SIS is not set
53981 +# CONFIG_SATA_ULI is not set
53982 +# CONFIG_SATA_VIA is not set
53983 +# CONFIG_SATA_VITESSE is not set
53984 +# CONFIG_SATA_INIC162X is not set
53985 +# CONFIG_PATA_ALI is not set
53986 +# CONFIG_PATA_AMD is not set
53987 +# CONFIG_PATA_ARTOP is not set
53988 +# CONFIG_PATA_ATIIXP is not set
53989 +# CONFIG_PATA_CMD640_PCI is not set
53990 +# CONFIG_PATA_CMD64X is not set
53991 +# CONFIG_PATA_CS5520 is not set
53992 +# CONFIG_PATA_CS5530 is not set
53993 +# CONFIG_PATA_CYPRESS is not set
53994 +# CONFIG_PATA_EFAR is not set
53995 +# CONFIG_ATA_GENERIC is not set
53996 +# CONFIG_PATA_HPT366 is not set
53997 +# CONFIG_PATA_HPT37X is not set
53998 +# CONFIG_PATA_HPT3X2N is not set
53999 +# CONFIG_PATA_HPT3X3 is not set
54000 +# CONFIG_PATA_IT821X is not set
54001 +# CONFIG_PATA_IT8213 is not set
54002 +# CONFIG_PATA_JMICRON is not set
54003 +# CONFIG_PATA_TRIFLEX is not set
54004 +# CONFIG_PATA_MARVELL is not set
54005 +# CONFIG_PATA_MPIIX is not set
54006 +# CONFIG_PATA_OLDPIIX is not set
54007 +# CONFIG_PATA_NETCELL is not set
54008 +# CONFIG_PATA_NS87410 is not set
54009 +# CONFIG_PATA_NS87415 is not set
54010 +# CONFIG_PATA_OPTI is not set
54011 +# CONFIG_PATA_OPTIDMA is not set
54012 +# CONFIG_PATA_PDC_OLD is not set
54013 +# CONFIG_PATA_RADISYS is not set
54014 +# CONFIG_PATA_RZ1000 is not set
54015 +# CONFIG_PATA_SC1200 is not set
54016 +# CONFIG_PATA_SERVERWORKS is not set
54017 +# CONFIG_PATA_PDC2027X is not set
54018 +# CONFIG_PATA_SIL680 is not set
54019 +# CONFIG_PATA_SIS is not set
54020 +# CONFIG_PATA_VIA is not set
54021 +# CONFIG_PATA_WINBOND is not set
54022 # CONFIG_MD is not set
54023 # CONFIG_FUSION is not set
54024
54025 @@ -536,6 +656,7 @@ CONFIG_USB_PEGASUS=y
54026 # CONFIG_HIPPI is not set
54027 # CONFIG_PPP is not set
54028 # CONFIG_SLIP is not set
54029 +# CONFIG_NET_FC is not set
54030 # CONFIG_SHAPER is not set
54031 # CONFIG_NETCONSOLE is not set
54032 # CONFIG_NETPOLL is not set
54033 @@ -783,12 +904,14 @@ CONFIG_USB_UHCI_HCD=y
54034 #
54035 # may also be needed; see USB_STORAGE Help for more information
54036 #
54037 +# CONFIG_USB_STORAGE is not set
54038 # CONFIG_USB_LIBUSUAL is not set
54039
54040 #
54041 # USB Imaging devices
54042 #
54043 # CONFIG_USB_MDC800 is not set
54044 +# CONFIG_USB_MICROTEK is not set
54045 CONFIG_USB_MON=y
54046
54047 #
54048 Index: linux-2.6.25.4/arch/powerpc/configs/mpc8313_rdb_defconfig
54049 ===================================================================
54050 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc8313_rdb_defconfig
54051 +++ /dev/null
54052 @@ -1,1393 +0,0 @@
54053 -#
54054 -# Automatically generated make config: don't edit
54055 -# Linux kernel version: 2.6.25-rc6
54056 -# Mon Mar 24 08:48:14 2008
54057 -#
54058 -# CONFIG_PPC64 is not set
54059 -
54060 -#
54061 -# Processor support
54062 -#
54063 -CONFIG_6xx=y
54064 -# CONFIG_PPC_85xx is not set
54065 -# CONFIG_PPC_8xx is not set
54066 -# CONFIG_40x is not set
54067 -# CONFIG_44x is not set
54068 -# CONFIG_E200 is not set
54069 -CONFIG_PPC_FPU=y
54070 -# CONFIG_FSL_EMB_PERFMON is not set
54071 -CONFIG_PPC_STD_MMU=y
54072 -CONFIG_PPC_STD_MMU_32=y
54073 -# CONFIG_PPC_MM_SLICES is not set
54074 -# CONFIG_SMP is not set
54075 -CONFIG_PPC32=y
54076 -CONFIG_WORD_SIZE=32
54077 -CONFIG_PPC_MERGE=y
54078 -CONFIG_MMU=y
54079 -CONFIG_GENERIC_CMOS_UPDATE=y
54080 -CONFIG_GENERIC_TIME=y
54081 -CONFIG_GENERIC_TIME_VSYSCALL=y
54082 -CONFIG_GENERIC_CLOCKEVENTS=y
54083 -CONFIG_GENERIC_HARDIRQS=y
54084 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
54085 -CONFIG_IRQ_PER_CPU=y
54086 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
54087 -CONFIG_ARCH_HAS_ILOG2_U32=y
54088 -CONFIG_GENERIC_HWEIGHT=y
54089 -CONFIG_GENERIC_CALIBRATE_DELAY=y
54090 -CONFIG_GENERIC_FIND_NEXT_BIT=y
54091 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
54092 -CONFIG_PPC=y
54093 -CONFIG_EARLY_PRINTK=y
54094 -CONFIG_GENERIC_NVRAM=y
54095 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
54096 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
54097 -CONFIG_PPC_OF=y
54098 -CONFIG_OF=y
54099 -CONFIG_PPC_UDBG_16550=y
54100 -# CONFIG_GENERIC_TBSYNC is not set
54101 -CONFIG_AUDIT_ARCH=y
54102 -CONFIG_GENERIC_BUG=y
54103 -CONFIG_DEFAULT_UIMAGE=y
54104 -# CONFIG_PPC_DCR_NATIVE is not set
54105 -# CONFIG_PPC_DCR_MMIO is not set
54106 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
54107 -
54108 -#
54109 -# General setup
54110 -#
54111 -CONFIG_EXPERIMENTAL=y
54112 -CONFIG_BROKEN_ON_SMP=y
54113 -CONFIG_INIT_ENV_ARG_LIMIT=32
54114 -CONFIG_LOCALVERSION=""
54115 -CONFIG_LOCALVERSION_AUTO=y
54116 -CONFIG_SWAP=y
54117 -CONFIG_SYSVIPC=y
54118 -CONFIG_SYSVIPC_SYSCTL=y
54119 -# CONFIG_POSIX_MQUEUE is not set
54120 -# CONFIG_BSD_PROCESS_ACCT is not set
54121 -# CONFIG_TASKSTATS is not set
54122 -# CONFIG_AUDIT is not set
54123 -# CONFIG_IKCONFIG is not set
54124 -CONFIG_LOG_BUF_SHIFT=14
54125 -# CONFIG_CGROUPS is not set
54126 -CONFIG_GROUP_SCHED=y
54127 -# CONFIG_FAIR_GROUP_SCHED is not set
54128 -# CONFIG_RT_GROUP_SCHED is not set
54129 -CONFIG_USER_SCHED=y
54130 -# CONFIG_CGROUP_SCHED is not set
54131 -CONFIG_SYSFS_DEPRECATED=y
54132 -CONFIG_SYSFS_DEPRECATED_V2=y
54133 -# CONFIG_RELAY is not set
54134 -# CONFIG_NAMESPACES is not set
54135 -CONFIG_BLK_DEV_INITRD=y
54136 -CONFIG_INITRAMFS_SOURCE=""
54137 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
54138 -CONFIG_SYSCTL=y
54139 -CONFIG_EMBEDDED=y
54140 -CONFIG_SYSCTL_SYSCALL=y
54141 -# CONFIG_KALLSYMS is not set
54142 -CONFIG_HOTPLUG=y
54143 -CONFIG_PRINTK=y
54144 -CONFIG_BUG=y
54145 -CONFIG_ELF_CORE=y
54146 -CONFIG_COMPAT_BRK=y
54147 -CONFIG_BASE_FULL=y
54148 -CONFIG_FUTEX=y
54149 -CONFIG_ANON_INODES=y
54150 -# CONFIG_EPOLL is not set
54151 -CONFIG_SIGNALFD=y
54152 -CONFIG_TIMERFD=y
54153 -CONFIG_EVENTFD=y
54154 -CONFIG_SHMEM=y
54155 -CONFIG_VM_EVENT_COUNTERS=y
54156 -CONFIG_SLUB_DEBUG=y
54157 -# CONFIG_SLAB is not set
54158 -CONFIG_SLUB=y
54159 -# CONFIG_SLOB is not set
54160 -# CONFIG_PROFILING is not set
54161 -# CONFIG_MARKERS is not set
54162 -CONFIG_HAVE_OPROFILE=y
54163 -CONFIG_HAVE_KPROBES=y
54164 -CONFIG_HAVE_KRETPROBES=y
54165 -CONFIG_PROC_PAGE_MONITOR=y
54166 -CONFIG_SLABINFO=y
54167 -CONFIG_RT_MUTEXES=y
54168 -# CONFIG_TINY_SHMEM is not set
54169 -CONFIG_BASE_SMALL=0
54170 -CONFIG_MODULES=y
54171 -CONFIG_MODULE_UNLOAD=y
54172 -# CONFIG_MODULE_FORCE_UNLOAD is not set
54173 -# CONFIG_MODVERSIONS is not set
54174 -# CONFIG_MODULE_SRCVERSION_ALL is not set
54175 -# CONFIG_KMOD is not set
54176 -CONFIG_BLOCK=y
54177 -# CONFIG_LBD is not set
54178 -# CONFIG_BLK_DEV_IO_TRACE is not set
54179 -# CONFIG_LSF is not set
54180 -# CONFIG_BLK_DEV_BSG is not set
54181 -
54182 -#
54183 -# IO Schedulers
54184 -#
54185 -CONFIG_IOSCHED_NOOP=y
54186 -CONFIG_IOSCHED_AS=y
54187 -CONFIG_IOSCHED_DEADLINE=y
54188 -CONFIG_IOSCHED_CFQ=y
54189 -CONFIG_DEFAULT_AS=y
54190 -# CONFIG_DEFAULT_DEADLINE is not set
54191 -# CONFIG_DEFAULT_CFQ is not set
54192 -# CONFIG_DEFAULT_NOOP is not set
54193 -CONFIG_DEFAULT_IOSCHED="anticipatory"
54194 -CONFIG_CLASSIC_RCU=y
54195 -
54196 -#
54197 -# Platform support
54198 -#
54199 -# CONFIG_PPC_MULTIPLATFORM is not set
54200 -# CONFIG_PPC_82xx is not set
54201 -CONFIG_PPC_83xx=y
54202 -# CONFIG_PPC_86xx is not set
54203 -# CONFIG_PPC_MPC512x is not set
54204 -# CONFIG_PPC_MPC5121 is not set
54205 -# CONFIG_PPC_CELL is not set
54206 -# CONFIG_PPC_CELL_NATIVE is not set
54207 -# CONFIG_PQ2ADS is not set
54208 -CONFIG_MPC83xx=y
54209 -CONFIG_MPC831x_RDB=y
54210 -# CONFIG_MPC832x_MDS is not set
54211 -# CONFIG_MPC832x_RDB is not set
54212 -# CONFIG_MPC834x_MDS is not set
54213 -# CONFIG_MPC834x_ITX is not set
54214 -# CONFIG_MPC836x_MDS is not set
54215 -# CONFIG_MPC837x_MDS is not set
54216 -# CONFIG_MPC837x_RDB is not set
54217 -# CONFIG_SBC834x is not set
54218 -CONFIG_PPC_MPC831x=y
54219 -CONFIG_IPIC=y
54220 -# CONFIG_MPIC is not set
54221 -# CONFIG_MPIC_WEIRD is not set
54222 -# CONFIG_PPC_I8259 is not set
54223 -# CONFIG_PPC_RTAS is not set
54224 -# CONFIG_MMIO_NVRAM is not set
54225 -# CONFIG_PPC_MPC106 is not set
54226 -# CONFIG_PPC_970_NAP is not set
54227 -# CONFIG_PPC_INDIRECT_IO is not set
54228 -# CONFIG_GENERIC_IOMAP is not set
54229 -# CONFIG_CPU_FREQ is not set
54230 -# CONFIG_FSL_ULI1575 is not set
54231 -
54232 -#
54233 -# Kernel options
54234 -#
54235 -# CONFIG_HIGHMEM is not set
54236 -CONFIG_TICK_ONESHOT=y
54237 -CONFIG_NO_HZ=y
54238 -CONFIG_HIGH_RES_TIMERS=y
54239 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
54240 -# CONFIG_HZ_100 is not set
54241 -CONFIG_HZ_250=y
54242 -# CONFIG_HZ_300 is not set
54243 -# CONFIG_HZ_1000 is not set
54244 -CONFIG_HZ=250
54245 -# CONFIG_SCHED_HRTICK is not set
54246 -CONFIG_PREEMPT_NONE=y
54247 -# CONFIG_PREEMPT_VOLUNTARY is not set
54248 -# CONFIG_PREEMPT is not set
54249 -CONFIG_BINFMT_ELF=y
54250 -# CONFIG_BINFMT_MISC is not set
54251 -# CONFIG_IOMMU_HELPER is not set
54252 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
54253 -CONFIG_ARCH_HAS_WALK_MEMORY=y
54254 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
54255 -CONFIG_ARCH_FLATMEM_ENABLE=y
54256 -CONFIG_ARCH_POPULATES_NODE_MAP=y
54257 -CONFIG_SELECT_MEMORY_MODEL=y
54258 -CONFIG_FLATMEM_MANUAL=y
54259 -# CONFIG_DISCONTIGMEM_MANUAL is not set
54260 -# CONFIG_SPARSEMEM_MANUAL is not set
54261 -CONFIG_FLATMEM=y
54262 -CONFIG_FLAT_NODE_MEM_MAP=y
54263 -# CONFIG_SPARSEMEM_STATIC is not set
54264 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
54265 -CONFIG_SPLIT_PTLOCK_CPUS=4
54266 -# CONFIG_RESOURCES_64BIT is not set
54267 -CONFIG_ZONE_DMA_FLAG=1
54268 -CONFIG_BOUNCE=y
54269 -CONFIG_VIRT_TO_BUS=y
54270 -CONFIG_PROC_DEVICETREE=y
54271 -# CONFIG_CMDLINE_BOOL is not set
54272 -# CONFIG_PM is not set
54273 -CONFIG_SECCOMP=y
54274 -CONFIG_ISA_DMA_API=y
54275 -
54276 -#
54277 -# Bus options
54278 -#
54279 -CONFIG_ZONE_DMA=y
54280 -CONFIG_GENERIC_ISA_DMA=y
54281 -CONFIG_PPC_INDIRECT_PCI=y
54282 -CONFIG_FSL_SOC=y
54283 -CONFIG_PCI=y
54284 -CONFIG_PCI_DOMAINS=y
54285 -CONFIG_PCI_SYSCALL=y
54286 -# CONFIG_PCIEPORTBUS is not set
54287 -CONFIG_ARCH_SUPPORTS_MSI=y
54288 -# CONFIG_PCI_MSI is not set
54289 -CONFIG_PCI_LEGACY=y
54290 -# CONFIG_PCI_DEBUG is not set
54291 -# CONFIG_PCCARD is not set
54292 -# CONFIG_HOTPLUG_PCI is not set
54293 -
54294 -#
54295 -# Advanced setup
54296 -#
54297 -# CONFIG_ADVANCED_OPTIONS is not set
54298 -
54299 -#
54300 -# Default settings for advanced configuration options are used
54301 -#
54302 -CONFIG_HIGHMEM_START=0xfe000000
54303 -CONFIG_LOWMEM_SIZE=0x30000000
54304 -CONFIG_KERNEL_START=0xc0000000
54305 -CONFIG_TASK_SIZE=0xc0000000
54306 -CONFIG_BOOT_LOAD=0x00800000
54307 -
54308 -#
54309 -# Networking
54310 -#
54311 -CONFIG_NET=y
54312 -
54313 -#
54314 -# Networking options
54315 -#
54316 -CONFIG_PACKET=y
54317 -# CONFIG_PACKET_MMAP is not set
54318 -CONFIG_UNIX=y
54319 -CONFIG_XFRM=y
54320 -# CONFIG_XFRM_USER is not set
54321 -# CONFIG_XFRM_SUB_POLICY is not set
54322 -# CONFIG_XFRM_MIGRATE is not set
54323 -# CONFIG_XFRM_STATISTICS is not set
54324 -# CONFIG_NET_KEY is not set
54325 -CONFIG_INET=y
54326 -CONFIG_IP_MULTICAST=y
54327 -# CONFIG_IP_ADVANCED_ROUTER is not set
54328 -CONFIG_IP_FIB_HASH=y
54329 -CONFIG_IP_PNP=y
54330 -CONFIG_IP_PNP_DHCP=y
54331 -CONFIG_IP_PNP_BOOTP=y
54332 -# CONFIG_IP_PNP_RARP is not set
54333 -# CONFIG_NET_IPIP is not set
54334 -# CONFIG_NET_IPGRE is not set
54335 -# CONFIG_IP_MROUTE is not set
54336 -# CONFIG_ARPD is not set
54337 -CONFIG_SYN_COOKIES=y
54338 -# CONFIG_INET_AH is not set
54339 -# CONFIG_INET_ESP is not set
54340 -# CONFIG_INET_IPCOMP is not set
54341 -# CONFIG_INET_XFRM_TUNNEL is not set
54342 -# CONFIG_INET_TUNNEL is not set
54343 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
54344 -CONFIG_INET_XFRM_MODE_TUNNEL=y
54345 -CONFIG_INET_XFRM_MODE_BEET=y
54346 -# CONFIG_INET_LRO is not set
54347 -CONFIG_INET_DIAG=y
54348 -CONFIG_INET_TCP_DIAG=y
54349 -# CONFIG_TCP_CONG_ADVANCED is not set
54350 -CONFIG_TCP_CONG_CUBIC=y
54351 -CONFIG_DEFAULT_TCP_CONG="cubic"
54352 -# CONFIG_TCP_MD5SIG is not set
54353 -# CONFIG_IPV6 is not set
54354 -# CONFIG_INET6_XFRM_TUNNEL is not set
54355 -# CONFIG_INET6_TUNNEL is not set
54356 -# CONFIG_NETWORK_SECMARK is not set
54357 -# CONFIG_NETFILTER is not set
54358 -# CONFIG_IP_DCCP is not set
54359 -# CONFIG_IP_SCTP is not set
54360 -# CONFIG_TIPC is not set
54361 -# CONFIG_ATM is not set
54362 -# CONFIG_BRIDGE is not set
54363 -# CONFIG_VLAN_8021Q is not set
54364 -# CONFIG_DECNET is not set
54365 -# CONFIG_LLC2 is not set
54366 -# CONFIG_IPX is not set
54367 -# CONFIG_ATALK is not set
54368 -# CONFIG_X25 is not set
54369 -# CONFIG_LAPB is not set
54370 -# CONFIG_ECONET is not set
54371 -# CONFIG_WAN_ROUTER is not set
54372 -# CONFIG_NET_SCHED is not set
54373 -
54374 -#
54375 -# Network testing
54376 -#
54377 -# CONFIG_NET_PKTGEN is not set
54378 -# CONFIG_HAMRADIO is not set
54379 -# CONFIG_CAN is not set
54380 -# CONFIG_IRDA is not set
54381 -# CONFIG_BT is not set
54382 -# CONFIG_AF_RXRPC is not set
54383 -
54384 -#
54385 -# Wireless
54386 -#
54387 -# CONFIG_CFG80211 is not set
54388 -# CONFIG_WIRELESS_EXT is not set
54389 -# CONFIG_MAC80211 is not set
54390 -# CONFIG_IEEE80211 is not set
54391 -# CONFIG_RFKILL is not set
54392 -# CONFIG_NET_9P is not set
54393 -
54394 -#
54395 -# Device Drivers
54396 -#
54397 -
54398 -#
54399 -# Generic Driver Options
54400 -#
54401 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
54402 -CONFIG_STANDALONE=y
54403 -CONFIG_PREVENT_FIRMWARE_BUILD=y
54404 -# CONFIG_FW_LOADER is not set
54405 -# CONFIG_DEBUG_DRIVER is not set
54406 -# CONFIG_DEBUG_DEVRES is not set
54407 -# CONFIG_SYS_HYPERVISOR is not set
54408 -# CONFIG_CONNECTOR is not set
54409 -CONFIG_MTD=y
54410 -# CONFIG_MTD_DEBUG is not set
54411 -# CONFIG_MTD_CONCAT is not set
54412 -CONFIG_MTD_PARTITIONS=y
54413 -# CONFIG_MTD_REDBOOT_PARTS is not set
54414 -# CONFIG_MTD_CMDLINE_PARTS is not set
54415 -# CONFIG_MTD_OF_PARTS is not set
54416 -
54417 -#
54418 -# User Modules And Translation Layers
54419 -#
54420 -CONFIG_MTD_CHAR=y
54421 -CONFIG_MTD_BLKDEVS=y
54422 -CONFIG_MTD_BLOCK=y
54423 -# CONFIG_FTL is not set
54424 -# CONFIG_NFTL is not set
54425 -# CONFIG_INFTL is not set
54426 -# CONFIG_RFD_FTL is not set
54427 -# CONFIG_SSFDC is not set
54428 -# CONFIG_MTD_OOPS is not set
54429 -
54430 -#
54431 -# RAM/ROM/Flash chip drivers
54432 -#
54433 -CONFIG_MTD_CFI=y
54434 -# CONFIG_MTD_JEDECPROBE is not set
54435 -CONFIG_MTD_GEN_PROBE=y
54436 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
54437 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
54438 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
54439 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
54440 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
54441 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
54442 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
54443 -CONFIG_MTD_CFI_I1=y
54444 -CONFIG_MTD_CFI_I2=y
54445 -# CONFIG_MTD_CFI_I4 is not set
54446 -# CONFIG_MTD_CFI_I8 is not set
54447 -# CONFIG_MTD_CFI_INTELEXT is not set
54448 -CONFIG_MTD_CFI_AMDSTD=y
54449 -# CONFIG_MTD_CFI_STAA is not set
54450 -CONFIG_MTD_CFI_UTIL=y
54451 -# CONFIG_MTD_RAM is not set
54452 -# CONFIG_MTD_ROM is not set
54453 -# CONFIG_MTD_ABSENT is not set
54454 -
54455 -#
54456 -# Mapping drivers for chip access
54457 -#
54458 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
54459 -# CONFIG_MTD_PHYSMAP is not set
54460 -CONFIG_MTD_PHYSMAP_OF=y
54461 -# CONFIG_MTD_INTEL_VR_NOR is not set
54462 -# CONFIG_MTD_PLATRAM is not set
54463 -
54464 -#
54465 -# Self-contained MTD device drivers
54466 -#
54467 -# CONFIG_MTD_PMC551 is not set
54468 -# CONFIG_MTD_DATAFLASH is not set
54469 -# CONFIG_MTD_M25P80 is not set
54470 -# CONFIG_MTD_SLRAM is not set
54471 -# CONFIG_MTD_PHRAM is not set
54472 -# CONFIG_MTD_MTDRAM is not set
54473 -# CONFIG_MTD_BLOCK2MTD is not set
54474 -
54475 -#
54476 -# Disk-On-Chip Device Drivers
54477 -#
54478 -# CONFIG_MTD_DOC2000 is not set
54479 -# CONFIG_MTD_DOC2001 is not set
54480 -# CONFIG_MTD_DOC2001PLUS is not set
54481 -CONFIG_MTD_NAND=y
54482 -CONFIG_MTD_NAND_VERIFY_WRITE=y
54483 -# CONFIG_MTD_NAND_ECC_SMC is not set
54484 -# CONFIG_MTD_NAND_MUSEUM_IDS is not set
54485 -CONFIG_MTD_NAND_IDS=y
54486 -# CONFIG_MTD_NAND_DISKONCHIP is not set
54487 -# CONFIG_MTD_NAND_CAFE is not set
54488 -# CONFIG_MTD_NAND_NANDSIM is not set
54489 -# CONFIG_MTD_NAND_PLATFORM is not set
54490 -# CONFIG_MTD_ALAUDA is not set
54491 -# CONFIG_MTD_NAND_FSL_ELBC is not set
54492 -# CONFIG_MTD_ONENAND is not set
54493 -
54494 -#
54495 -# UBI - Unsorted block images
54496 -#
54497 -# CONFIG_MTD_UBI is not set
54498 -CONFIG_OF_DEVICE=y
54499 -# CONFIG_PARPORT is not set
54500 -CONFIG_BLK_DEV=y
54501 -# CONFIG_BLK_DEV_FD is not set
54502 -# CONFIG_BLK_CPQ_DA is not set
54503 -# CONFIG_BLK_CPQ_CISS_DA is not set
54504 -# CONFIG_BLK_DEV_DAC960 is not set
54505 -# CONFIG_BLK_DEV_UMEM is not set
54506 -# CONFIG_BLK_DEV_COW_COMMON is not set
54507 -CONFIG_BLK_DEV_LOOP=y
54508 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
54509 -# CONFIG_BLK_DEV_NBD is not set
54510 -# CONFIG_BLK_DEV_SX8 is not set
54511 -# CONFIG_BLK_DEV_UB is not set
54512 -CONFIG_BLK_DEV_RAM=y
54513 -CONFIG_BLK_DEV_RAM_COUNT=16
54514 -CONFIG_BLK_DEV_RAM_SIZE=32768
54515 -# CONFIG_BLK_DEV_XIP is not set
54516 -# CONFIG_CDROM_PKTCDVD is not set
54517 -# CONFIG_ATA_OVER_ETH is not set
54518 -CONFIG_MISC_DEVICES=y
54519 -# CONFIG_PHANTOM is not set
54520 -# CONFIG_EEPROM_93CX6 is not set
54521 -# CONFIG_SGI_IOC4 is not set
54522 -# CONFIG_TIFM_CORE is not set
54523 -# CONFIG_ENCLOSURE_SERVICES is not set
54524 -CONFIG_HAVE_IDE=y
54525 -# CONFIG_IDE is not set
54526 -
54527 -#
54528 -# SCSI device support
54529 -#
54530 -# CONFIG_RAID_ATTRS is not set
54531 -CONFIG_SCSI=y
54532 -CONFIG_SCSI_DMA=y
54533 -# CONFIG_SCSI_TGT is not set
54534 -# CONFIG_SCSI_NETLINK is not set
54535 -CONFIG_SCSI_PROC_FS=y
54536 -
54537 -#
54538 -# SCSI support type (disk, tape, CD-ROM)
54539 -#
54540 -# CONFIG_BLK_DEV_SD is not set
54541 -# CONFIG_CHR_DEV_ST is not set
54542 -# CONFIG_CHR_DEV_OSST is not set
54543 -# CONFIG_BLK_DEV_SR is not set
54544 -CONFIG_CHR_DEV_SG=y
54545 -# CONFIG_CHR_DEV_SCH is not set
54546 -
54547 -#
54548 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
54549 -#
54550 -# CONFIG_SCSI_MULTI_LUN is not set
54551 -# CONFIG_SCSI_CONSTANTS is not set
54552 -# CONFIG_SCSI_LOGGING is not set
54553 -# CONFIG_SCSI_SCAN_ASYNC is not set
54554 -CONFIG_SCSI_WAIT_SCAN=m
54555 -
54556 -#
54557 -# SCSI Transports
54558 -#
54559 -CONFIG_SCSI_SPI_ATTRS=y
54560 -# CONFIG_SCSI_FC_ATTRS is not set
54561 -# CONFIG_SCSI_ISCSI_ATTRS is not set
54562 -# CONFIG_SCSI_SAS_LIBSAS is not set
54563 -# CONFIG_SCSI_SRP_ATTRS is not set
54564 -CONFIG_SCSI_LOWLEVEL=y
54565 -# CONFIG_ISCSI_TCP is not set
54566 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
54567 -# CONFIG_SCSI_3W_9XXX is not set
54568 -# CONFIG_SCSI_ACARD is not set
54569 -# CONFIG_SCSI_AACRAID is not set
54570 -# CONFIG_SCSI_AIC7XXX is not set
54571 -# CONFIG_SCSI_AIC7XXX_OLD is not set
54572 -# CONFIG_SCSI_AIC79XX is not set
54573 -# CONFIG_SCSI_AIC94XX is not set
54574 -# CONFIG_SCSI_DPT_I2O is not set
54575 -# CONFIG_SCSI_ADVANSYS is not set
54576 -# CONFIG_SCSI_ARCMSR is not set
54577 -# CONFIG_MEGARAID_NEWGEN is not set
54578 -# CONFIG_MEGARAID_LEGACY is not set
54579 -# CONFIG_MEGARAID_SAS is not set
54580 -# CONFIG_SCSI_HPTIOP is not set
54581 -# CONFIG_SCSI_BUSLOGIC is not set
54582 -# CONFIG_SCSI_DMX3191D is not set
54583 -# CONFIG_SCSI_EATA is not set
54584 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
54585 -# CONFIG_SCSI_GDTH is not set
54586 -# CONFIG_SCSI_IPS is not set
54587 -# CONFIG_SCSI_INITIO is not set
54588 -# CONFIG_SCSI_INIA100 is not set
54589 -# CONFIG_SCSI_MVSAS is not set
54590 -# CONFIG_SCSI_STEX is not set
54591 -# CONFIG_SCSI_SYM53C8XX_2 is not set
54592 -# CONFIG_SCSI_QLOGIC_1280 is not set
54593 -# CONFIG_SCSI_QLA_FC is not set
54594 -# CONFIG_SCSI_QLA_ISCSI is not set
54595 -# CONFIG_SCSI_LPFC is not set
54596 -# CONFIG_SCSI_DC395x is not set
54597 -# CONFIG_SCSI_DC390T is not set
54598 -# CONFIG_SCSI_NSP32 is not set
54599 -# CONFIG_SCSI_DEBUG is not set
54600 -# CONFIG_SCSI_SRP is not set
54601 -# CONFIG_ATA is not set
54602 -CONFIG_MD=y
54603 -CONFIG_BLK_DEV_MD=y
54604 -CONFIG_MD_LINEAR=y
54605 -CONFIG_MD_RAID0=y
54606 -CONFIG_MD_RAID1=y
54607 -# CONFIG_MD_RAID10 is not set
54608 -# CONFIG_MD_RAID456 is not set
54609 -# CONFIG_MD_MULTIPATH is not set
54610 -# CONFIG_MD_FAULTY is not set
54611 -# CONFIG_BLK_DEV_DM is not set
54612 -# CONFIG_FUSION is not set
54613 -
54614 -#
54615 -# IEEE 1394 (FireWire) support
54616 -#
54617 -# CONFIG_FIREWIRE is not set
54618 -# CONFIG_IEEE1394 is not set
54619 -# CONFIG_I2O is not set
54620 -# CONFIG_MACINTOSH_DRIVERS is not set
54621 -CONFIG_NETDEVICES=y
54622 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
54623 -# CONFIG_DUMMY is not set
54624 -# CONFIG_BONDING is not set
54625 -# CONFIG_MACVLAN is not set
54626 -# CONFIG_EQUALIZER is not set
54627 -# CONFIG_TUN is not set
54628 -# CONFIG_VETH is not set
54629 -# CONFIG_ARCNET is not set
54630 -CONFIG_PHYLIB=y
54631 -
54632 -#
54633 -# MII PHY device drivers
54634 -#
54635 -# CONFIG_MARVELL_PHY is not set
54636 -# CONFIG_DAVICOM_PHY is not set
54637 -# CONFIG_QSEMI_PHY is not set
54638 -# CONFIG_LXT_PHY is not set
54639 -CONFIG_CICADA_PHY=y
54640 -# CONFIG_VITESSE_PHY is not set
54641 -# CONFIG_SMSC_PHY is not set
54642 -# CONFIG_BROADCOM_PHY is not set
54643 -# CONFIG_ICPLUS_PHY is not set
54644 -# CONFIG_REALTEK_PHY is not set
54645 -# CONFIG_FIXED_PHY is not set
54646 -# CONFIG_MDIO_BITBANG is not set
54647 -CONFIG_NET_ETHERNET=y
54648 -CONFIG_MII=y
54649 -# CONFIG_HAPPYMEAL is not set
54650 -# CONFIG_SUNGEM is not set
54651 -# CONFIG_CASSINI is not set
54652 -# CONFIG_NET_VENDOR_3COM is not set
54653 -# CONFIG_ENC28J60 is not set
54654 -# CONFIG_NET_TULIP is not set
54655 -# CONFIG_HP100 is not set
54656 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
54657 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
54658 -# CONFIG_IBM_NEW_EMAC_TAH is not set
54659 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
54660 -CONFIG_NET_PCI=y
54661 -# CONFIG_PCNET32 is not set
54662 -# CONFIG_AMD8111_ETH is not set
54663 -# CONFIG_ADAPTEC_STARFIRE is not set
54664 -# CONFIG_B44 is not set
54665 -# CONFIG_FORCEDETH is not set
54666 -# CONFIG_EEPRO100 is not set
54667 -CONFIG_E100=y
54668 -# CONFIG_FEALNX is not set
54669 -# CONFIG_NATSEMI is not set
54670 -# CONFIG_NE2K_PCI is not set
54671 -# CONFIG_8139CP is not set
54672 -# CONFIG_8139TOO is not set
54673 -# CONFIG_R6040 is not set
54674 -# CONFIG_SIS900 is not set
54675 -# CONFIG_EPIC100 is not set
54676 -# CONFIG_SUNDANCE is not set
54677 -# CONFIG_TLAN is not set
54678 -# CONFIG_VIA_RHINE is not set
54679 -# CONFIG_SC92031 is not set
54680 -CONFIG_NETDEV_1000=y
54681 -# CONFIG_ACENIC is not set
54682 -# CONFIG_DL2K is not set
54683 -# CONFIG_E1000 is not set
54684 -# CONFIG_E1000E is not set
54685 -# CONFIG_E1000E_ENABLED is not set
54686 -# CONFIG_IP1000 is not set
54687 -# CONFIG_IGB is not set
54688 -# CONFIG_NS83820 is not set
54689 -# CONFIG_HAMACHI is not set
54690 -# CONFIG_YELLOWFIN is not set
54691 -# CONFIG_R8169 is not set
54692 -# CONFIG_SIS190 is not set
54693 -# CONFIG_SKGE is not set
54694 -# CONFIG_SKY2 is not set
54695 -# CONFIG_SK98LIN is not set
54696 -# CONFIG_VIA_VELOCITY is not set
54697 -# CONFIG_TIGON3 is not set
54698 -# CONFIG_BNX2 is not set
54699 -CONFIG_GIANFAR=y
54700 -CONFIG_GFAR_NAPI=y
54701 -# CONFIG_QLA3XXX is not set
54702 -# CONFIG_ATL1 is not set
54703 -CONFIG_NETDEV_10000=y
54704 -# CONFIG_CHELSIO_T1 is not set
54705 -# CONFIG_CHELSIO_T3 is not set
54706 -# CONFIG_IXGBE is not set
54707 -# CONFIG_IXGB is not set
54708 -# CONFIG_S2IO is not set
54709 -# CONFIG_MYRI10GE is not set
54710 -# CONFIG_NETXEN_NIC is not set
54711 -# CONFIG_NIU is not set
54712 -# CONFIG_MLX4_CORE is not set
54713 -# CONFIG_TEHUTI is not set
54714 -# CONFIG_BNX2X is not set
54715 -# CONFIG_TR is not set
54716 -
54717 -#
54718 -# Wireless LAN
54719 -#
54720 -# CONFIG_WLAN_PRE80211 is not set
54721 -# CONFIG_WLAN_80211 is not set
54722 -
54723 -#
54724 -# USB Network Adapters
54725 -#
54726 -# CONFIG_USB_CATC is not set
54727 -# CONFIG_USB_KAWETH is not set
54728 -# CONFIG_USB_PEGASUS is not set
54729 -# CONFIG_USB_RTL8150 is not set
54730 -# CONFIG_USB_USBNET is not set
54731 -# CONFIG_WAN is not set
54732 -# CONFIG_FDDI is not set
54733 -# CONFIG_HIPPI is not set
54734 -# CONFIG_PPP is not set
54735 -# CONFIG_SLIP is not set
54736 -# CONFIG_NET_FC is not set
54737 -# CONFIG_NETCONSOLE is not set
54738 -# CONFIG_NETPOLL is not set
54739 -# CONFIG_NET_POLL_CONTROLLER is not set
54740 -# CONFIG_ISDN is not set
54741 -# CONFIG_PHONE is not set
54742 -
54743 -#
54744 -# Input device support
54745 -#
54746 -CONFIG_INPUT=y
54747 -# CONFIG_INPUT_FF_MEMLESS is not set
54748 -# CONFIG_INPUT_POLLDEV is not set
54749 -
54750 -#
54751 -# Userland interfaces
54752 -#
54753 -# CONFIG_INPUT_MOUSEDEV is not set
54754 -# CONFIG_INPUT_JOYDEV is not set
54755 -# CONFIG_INPUT_EVDEV is not set
54756 -# CONFIG_INPUT_EVBUG is not set
54757 -
54758 -#
54759 -# Input Device Drivers
54760 -#
54761 -# CONFIG_INPUT_KEYBOARD is not set
54762 -# CONFIG_INPUT_MOUSE is not set
54763 -# CONFIG_INPUT_JOYSTICK is not set
54764 -# CONFIG_INPUT_TABLET is not set
54765 -# CONFIG_INPUT_TOUCHSCREEN is not set
54766 -# CONFIG_INPUT_MISC is not set
54767 -
54768 -#
54769 -# Hardware I/O ports
54770 -#
54771 -# CONFIG_SERIO is not set
54772 -# CONFIG_GAMEPORT is not set
54773 -
54774 -#
54775 -# Character devices
54776 -#
54777 -# CONFIG_VT is not set
54778 -# CONFIG_SERIAL_NONSTANDARD is not set
54779 -# CONFIG_NOZOMI is not set
54780 -
54781 -#
54782 -# Serial drivers
54783 -#
54784 -CONFIG_SERIAL_8250=y
54785 -CONFIG_SERIAL_8250_CONSOLE=y
54786 -CONFIG_SERIAL_8250_PCI=y
54787 -CONFIG_SERIAL_8250_NR_UARTS=4
54788 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
54789 -# CONFIG_SERIAL_8250_EXTENDED is not set
54790 -
54791 -#
54792 -# Non-8250 serial port support
54793 -#
54794 -# CONFIG_SERIAL_UARTLITE is not set
54795 -CONFIG_SERIAL_CORE=y
54796 -CONFIG_SERIAL_CORE_CONSOLE=y
54797 -# CONFIG_SERIAL_JSM is not set
54798 -# CONFIG_SERIAL_OF_PLATFORM is not set
54799 -CONFIG_UNIX98_PTYS=y
54800 -CONFIG_LEGACY_PTYS=y
54801 -CONFIG_LEGACY_PTY_COUNT=256
54802 -# CONFIG_IPMI_HANDLER is not set
54803 -CONFIG_HW_RANDOM=y
54804 -# CONFIG_NVRAM is not set
54805 -# CONFIG_GEN_RTC is not set
54806 -# CONFIG_R3964 is not set
54807 -# CONFIG_APPLICOM is not set
54808 -# CONFIG_RAW_DRIVER is not set
54809 -# CONFIG_TCG_TPM is not set
54810 -CONFIG_DEVPORT=y
54811 -CONFIG_I2C=y
54812 -CONFIG_I2C_BOARDINFO=y
54813 -CONFIG_I2C_CHARDEV=y
54814 -
54815 -#
54816 -# I2C Algorithms
54817 -#
54818 -# CONFIG_I2C_ALGOBIT is not set
54819 -# CONFIG_I2C_ALGOPCF is not set
54820 -# CONFIG_I2C_ALGOPCA is not set
54821 -
54822 -#
54823 -# I2C Hardware Bus support
54824 -#
54825 -# CONFIG_I2C_ALI1535 is not set
54826 -# CONFIG_I2C_ALI1563 is not set
54827 -# CONFIG_I2C_ALI15X3 is not set
54828 -# CONFIG_I2C_AMD756 is not set
54829 -# CONFIG_I2C_AMD8111 is not set
54830 -# CONFIG_I2C_I801 is not set
54831 -# CONFIG_I2C_I810 is not set
54832 -# CONFIG_I2C_PIIX4 is not set
54833 -CONFIG_I2C_MPC=y
54834 -# CONFIG_I2C_NFORCE2 is not set
54835 -# CONFIG_I2C_OCORES is not set
54836 -# CONFIG_I2C_PARPORT_LIGHT is not set
54837 -# CONFIG_I2C_PROSAVAGE is not set
54838 -# CONFIG_I2C_SAVAGE4 is not set
54839 -# CONFIG_I2C_SIMTEC is not set
54840 -# CONFIG_I2C_SIS5595 is not set
54841 -# CONFIG_I2C_SIS630 is not set
54842 -# CONFIG_I2C_SIS96X is not set
54843 -# CONFIG_I2C_TAOS_EVM is not set
54844 -# CONFIG_I2C_STUB is not set
54845 -# CONFIG_I2C_TINY_USB is not set
54846 -# CONFIG_I2C_VIA is not set
54847 -# CONFIG_I2C_VIAPRO is not set
54848 -# CONFIG_I2C_VOODOO3 is not set
54849 -
54850 -#
54851 -# Miscellaneous I2C Chip support
54852 -#
54853 -# CONFIG_DS1682 is not set
54854 -# CONFIG_SENSORS_EEPROM is not set
54855 -# CONFIG_SENSORS_PCF8574 is not set
54856 -# CONFIG_PCF8575 is not set
54857 -# CONFIG_SENSORS_PCF8591 is not set
54858 -# CONFIG_TPS65010 is not set
54859 -# CONFIG_SENSORS_MAX6875 is not set
54860 -# CONFIG_SENSORS_TSL2550 is not set
54861 -# CONFIG_I2C_DEBUG_CORE is not set
54862 -# CONFIG_I2C_DEBUG_ALGO is not set
54863 -# CONFIG_I2C_DEBUG_BUS is not set
54864 -# CONFIG_I2C_DEBUG_CHIP is not set
54865 -
54866 -#
54867 -# SPI support
54868 -#
54869 -CONFIG_SPI=y
54870 -# CONFIG_SPI_DEBUG is not set
54871 -CONFIG_SPI_MASTER=y
54872 -
54873 -#
54874 -# SPI Master Controller Drivers
54875 -#
54876 -CONFIG_SPI_BITBANG=y
54877 -CONFIG_SPI_MPC83xx=y
54878 -
54879 -#
54880 -# SPI Protocol Masters
54881 -#
54882 -# CONFIG_SPI_AT25 is not set
54883 -# CONFIG_SPI_SPIDEV is not set
54884 -# CONFIG_SPI_TLE62X0 is not set
54885 -# CONFIG_W1 is not set
54886 -# CONFIG_POWER_SUPPLY is not set
54887 -CONFIG_HWMON=y
54888 -# CONFIG_HWMON_VID is not set
54889 -# CONFIG_SENSORS_AD7418 is not set
54890 -# CONFIG_SENSORS_ADM1021 is not set
54891 -# CONFIG_SENSORS_ADM1025 is not set
54892 -# CONFIG_SENSORS_ADM1026 is not set
54893 -# CONFIG_SENSORS_ADM1029 is not set
54894 -# CONFIG_SENSORS_ADM1031 is not set
54895 -# CONFIG_SENSORS_ADM9240 is not set
54896 -# CONFIG_SENSORS_ADT7470 is not set
54897 -# CONFIG_SENSORS_ADT7473 is not set
54898 -# CONFIG_SENSORS_ATXP1 is not set
54899 -# CONFIG_SENSORS_DS1621 is not set
54900 -# CONFIG_SENSORS_I5K_AMB is not set
54901 -# CONFIG_SENSORS_F71805F is not set
54902 -# CONFIG_SENSORS_F71882FG is not set
54903 -# CONFIG_SENSORS_F75375S is not set
54904 -# CONFIG_SENSORS_GL518SM is not set
54905 -# CONFIG_SENSORS_GL520SM is not set
54906 -# CONFIG_SENSORS_IT87 is not set
54907 -# CONFIG_SENSORS_LM63 is not set
54908 -# CONFIG_SENSORS_LM70 is not set
54909 -# CONFIG_SENSORS_LM75 is not set
54910 -# CONFIG_SENSORS_LM77 is not set
54911 -# CONFIG_SENSORS_LM78 is not set
54912 -# CONFIG_SENSORS_LM80 is not set
54913 -# CONFIG_SENSORS_LM83 is not set
54914 -# CONFIG_SENSORS_LM85 is not set
54915 -# CONFIG_SENSORS_LM87 is not set
54916 -# CONFIG_SENSORS_LM90 is not set
54917 -# CONFIG_SENSORS_LM92 is not set
54918 -# CONFIG_SENSORS_LM93 is not set
54919 -# CONFIG_SENSORS_MAX1619 is not set
54920 -# CONFIG_SENSORS_MAX6650 is not set
54921 -# CONFIG_SENSORS_PC87360 is not set
54922 -# CONFIG_SENSORS_PC87427 is not set
54923 -# CONFIG_SENSORS_SIS5595 is not set
54924 -# CONFIG_SENSORS_DME1737 is not set
54925 -# CONFIG_SENSORS_SMSC47M1 is not set
54926 -# CONFIG_SENSORS_SMSC47M192 is not set
54927 -# CONFIG_SENSORS_SMSC47B397 is not set
54928 -# CONFIG_SENSORS_ADS7828 is not set
54929 -# CONFIG_SENSORS_THMC50 is not set
54930 -# CONFIG_SENSORS_VIA686A is not set
54931 -# CONFIG_SENSORS_VT1211 is not set
54932 -# CONFIG_SENSORS_VT8231 is not set
54933 -# CONFIG_SENSORS_W83781D is not set
54934 -# CONFIG_SENSORS_W83791D is not set
54935 -# CONFIG_SENSORS_W83792D is not set
54936 -# CONFIG_SENSORS_W83793 is not set
54937 -# CONFIG_SENSORS_W83L785TS is not set
54938 -# CONFIG_SENSORS_W83L786NG is not set
54939 -# CONFIG_SENSORS_W83627HF is not set
54940 -# CONFIG_SENSORS_W83627EHF is not set
54941 -# CONFIG_HWMON_DEBUG_CHIP is not set
54942 -# CONFIG_THERMAL is not set
54943 -CONFIG_WATCHDOG=y
54944 -# CONFIG_WATCHDOG_NOWAYOUT is not set
54945 -
54946 -#
54947 -# Watchdog Device Drivers
54948 -#
54949 -# CONFIG_SOFT_WATCHDOG is not set
54950 -CONFIG_83xx_WDT=y
54951 -
54952 -#
54953 -# PCI-based Watchdog Cards
54954 -#
54955 -# CONFIG_PCIPCWATCHDOG is not set
54956 -# CONFIG_WDTPCI is not set
54957 -
54958 -#
54959 -# USB-based Watchdog Cards
54960 -#
54961 -# CONFIG_USBPCWATCHDOG is not set
54962 -
54963 -#
54964 -# Sonics Silicon Backplane
54965 -#
54966 -CONFIG_SSB_POSSIBLE=y
54967 -# CONFIG_SSB is not set
54968 -
54969 -#
54970 -# Multifunction device drivers
54971 -#
54972 -# CONFIG_MFD_SM501 is not set
54973 -
54974 -#
54975 -# Multimedia devices
54976 -#
54977 -# CONFIG_VIDEO_DEV is not set
54978 -# CONFIG_DVB_CORE is not set
54979 -CONFIG_DAB=y
54980 -# CONFIG_USB_DABUSB is not set
54981 -
54982 -#
54983 -# Graphics support
54984 -#
54985 -# CONFIG_AGP is not set
54986 -# CONFIG_DRM is not set
54987 -# CONFIG_VGASTATE is not set
54988 -CONFIG_VIDEO_OUTPUT_CONTROL=m
54989 -# CONFIG_FB is not set
54990 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
54991 -
54992 -#
54993 -# Display device support
54994 -#
54995 -# CONFIG_DISPLAY_SUPPORT is not set
54996 -
54997 -#
54998 -# Sound
54999 -#
55000 -# CONFIG_SOUND is not set
55001 -CONFIG_HID_SUPPORT=y
55002 -CONFIG_HID=y
55003 -# CONFIG_HID_DEBUG is not set
55004 -# CONFIG_HIDRAW is not set
55005 -
55006 -#
55007 -# USB Input Devices
55008 -#
55009 -# CONFIG_USB_HID is not set
55010 -
55011 -#
55012 -# USB HID Boot Protocol drivers
55013 -#
55014 -# CONFIG_USB_KBD is not set
55015 -# CONFIG_USB_MOUSE is not set
55016 -CONFIG_USB_SUPPORT=y
55017 -CONFIG_USB_ARCH_HAS_HCD=y
55018 -CONFIG_USB_ARCH_HAS_OHCI=y
55019 -CONFIG_USB_ARCH_HAS_EHCI=y
55020 -CONFIG_USB=y
55021 -# CONFIG_USB_DEBUG is not set
55022 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
55023 -
55024 -#
55025 -# Miscellaneous USB options
55026 -#
55027 -CONFIG_USB_DEVICEFS=y
55028 -CONFIG_USB_DEVICE_CLASS=y
55029 -# CONFIG_USB_DYNAMIC_MINORS is not set
55030 -# CONFIG_USB_OTG is not set
55031 -
55032 -#
55033 -# USB Host Controller Drivers
55034 -#
55035 -CONFIG_USB_EHCI_HCD=y
55036 -CONFIG_USB_EHCI_ROOT_HUB_TT=y
55037 -# CONFIG_USB_EHCI_TT_NEWSCHED is not set
55038 -CONFIG_USB_EHCI_FSL=y
55039 -CONFIG_USB_EHCI_HCD_PPC_OF=y
55040 -# CONFIG_USB_ISP116X_HCD is not set
55041 -CONFIG_USB_OHCI_HCD=y
55042 -CONFIG_USB_OHCI_HCD_PPC_OF=y
55043 -CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
55044 -# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set
55045 -CONFIG_USB_OHCI_HCD_PCI=y
55046 -CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
55047 -CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
55048 -CONFIG_USB_OHCI_LITTLE_ENDIAN=y
55049 -CONFIG_USB_UHCI_HCD=y
55050 -# CONFIG_USB_SL811_HCD is not set
55051 -# CONFIG_USB_R8A66597_HCD is not set
55052 -
55053 -#
55054 -# USB Device Class drivers
55055 -#
55056 -# CONFIG_USB_ACM is not set
55057 -# CONFIG_USB_PRINTER is not set
55058 -
55059 -#
55060 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
55061 -#
55062 -
55063 -#
55064 -# may also be needed; see USB_STORAGE Help for more information
55065 -#
55066 -CONFIG_USB_STORAGE=y
55067 -# CONFIG_USB_STORAGE_DEBUG is not set
55068 -# CONFIG_USB_STORAGE_DATAFAB is not set
55069 -# CONFIG_USB_STORAGE_FREECOM is not set
55070 -# CONFIG_USB_STORAGE_ISD200 is not set
55071 -# CONFIG_USB_STORAGE_DPCM is not set
55072 -# CONFIG_USB_STORAGE_USBAT is not set
55073 -# CONFIG_USB_STORAGE_SDDR09 is not set
55074 -# CONFIG_USB_STORAGE_SDDR55 is not set
55075 -# CONFIG_USB_STORAGE_JUMPSHOT is not set
55076 -# CONFIG_USB_STORAGE_ALAUDA is not set
55077 -# CONFIG_USB_STORAGE_KARMA is not set
55078 -# CONFIG_USB_LIBUSUAL is not set
55079 -
55080 -#
55081 -# USB Imaging devices
55082 -#
55083 -# CONFIG_USB_MDC800 is not set
55084 -# CONFIG_USB_MICROTEK is not set
55085 -CONFIG_USB_MON=y
55086 -
55087 -#
55088 -# USB port drivers
55089 -#
55090 -# CONFIG_USB_SERIAL is not set
55091 -
55092 -#
55093 -# USB Miscellaneous drivers
55094 -#
55095 -# CONFIG_USB_EMI62 is not set
55096 -# CONFIG_USB_EMI26 is not set
55097 -# CONFIG_USB_ADUTUX is not set
55098 -# CONFIG_USB_AUERSWALD is not set
55099 -# CONFIG_USB_RIO500 is not set
55100 -# CONFIG_USB_LEGOTOWER is not set
55101 -# CONFIG_USB_LCD is not set
55102 -# CONFIG_USB_BERRY_CHARGE is not set
55103 -# CONFIG_USB_LED is not set
55104 -# CONFIG_USB_CYPRESS_CY7C63 is not set
55105 -# CONFIG_USB_CYTHERM is not set
55106 -# CONFIG_USB_PHIDGET is not set
55107 -# CONFIG_USB_IDMOUSE is not set
55108 -# CONFIG_USB_FTDI_ELAN is not set
55109 -# CONFIG_USB_APPLEDISPLAY is not set
55110 -# CONFIG_USB_SISUSBVGA is not set
55111 -# CONFIG_USB_LD is not set
55112 -# CONFIG_USB_TRANCEVIBRATOR is not set
55113 -# CONFIG_USB_IOWARRIOR is not set
55114 -# CONFIG_USB_TEST is not set
55115 -CONFIG_USB_GADGET=y
55116 -# CONFIG_USB_GADGET_DEBUG is not set
55117 -# CONFIG_USB_GADGET_DEBUG_FILES is not set
55118 -CONFIG_USB_GADGET_SELECTED=y
55119 -# CONFIG_USB_GADGET_AMD5536UDC is not set
55120 -# CONFIG_USB_GADGET_ATMEL_USBA is not set
55121 -# CONFIG_USB_GADGET_FSL_USB2 is not set
55122 -CONFIG_USB_GADGET_NET2280=y
55123 -CONFIG_USB_NET2280=y
55124 -# CONFIG_USB_GADGET_PXA2XX is not set
55125 -# CONFIG_USB_GADGET_M66592 is not set
55126 -# CONFIG_USB_GADGET_GOKU is not set
55127 -# CONFIG_USB_GADGET_LH7A40X is not set
55128 -# CONFIG_USB_GADGET_OMAP is not set
55129 -# CONFIG_USB_GADGET_S3C2410 is not set
55130 -# CONFIG_USB_GADGET_AT91 is not set
55131 -# CONFIG_USB_GADGET_DUMMY_HCD is not set
55132 -CONFIG_USB_GADGET_DUALSPEED=y
55133 -# CONFIG_USB_ZERO is not set
55134 -CONFIG_USB_ETH=y
55135 -CONFIG_USB_ETH_RNDIS=y
55136 -# CONFIG_USB_GADGETFS is not set
55137 -# CONFIG_USB_FILE_STORAGE is not set
55138 -# CONFIG_USB_G_SERIAL is not set
55139 -# CONFIG_USB_MIDI_GADGET is not set
55140 -# CONFIG_USB_G_PRINTER is not set
55141 -# CONFIG_MMC is not set
55142 -# CONFIG_MEMSTICK is not set
55143 -# CONFIG_NEW_LEDS is not set
55144 -# CONFIG_INFINIBAND is not set
55145 -# CONFIG_EDAC is not set
55146 -CONFIG_RTC_LIB=y
55147 -CONFIG_RTC_CLASS=y
55148 -CONFIG_RTC_HCTOSYS=y
55149 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
55150 -# CONFIG_RTC_DEBUG is not set
55151 -
55152 -#
55153 -# RTC interfaces
55154 -#
55155 -CONFIG_RTC_INTF_SYSFS=y
55156 -CONFIG_RTC_INTF_PROC=y
55157 -CONFIG_RTC_INTF_DEV=y
55158 -CONFIG_RTC_INTF_DEV_UIE_EMUL=y
55159 -# CONFIG_RTC_DRV_TEST is not set
55160 -
55161 -#
55162 -# I2C RTC drivers
55163 -#
55164 -CONFIG_RTC_DRV_DS1307=y
55165 -# CONFIG_RTC_DRV_DS1374 is not set
55166 -# CONFIG_RTC_DRV_DS1672 is not set
55167 -# CONFIG_RTC_DRV_MAX6900 is not set
55168 -# CONFIG_RTC_DRV_RS5C372 is not set
55169 -# CONFIG_RTC_DRV_ISL1208 is not set
55170 -# CONFIG_RTC_DRV_X1205 is not set
55171 -# CONFIG_RTC_DRV_PCF8563 is not set
55172 -# CONFIG_RTC_DRV_PCF8583 is not set
55173 -# CONFIG_RTC_DRV_M41T80 is not set
55174 -# CONFIG_RTC_DRV_S35390A is not set
55175 -
55176 -#
55177 -# SPI RTC drivers
55178 -#
55179 -# CONFIG_RTC_DRV_MAX6902 is not set
55180 -# CONFIG_RTC_DRV_R9701 is not set
55181 -# CONFIG_RTC_DRV_RS5C348 is not set
55182 -
55183 -#
55184 -# Platform RTC drivers
55185 -#
55186 -# CONFIG_RTC_DRV_CMOS is not set
55187 -# CONFIG_RTC_DRV_DS1511 is not set
55188 -# CONFIG_RTC_DRV_DS1553 is not set
55189 -# CONFIG_RTC_DRV_DS1742 is not set
55190 -# CONFIG_RTC_DRV_STK17TA8 is not set
55191 -# CONFIG_RTC_DRV_M48T86 is not set
55192 -# CONFIG_RTC_DRV_M48T59 is not set
55193 -# CONFIG_RTC_DRV_V3020 is not set
55194 -
55195 -#
55196 -# on-CPU RTC drivers
55197 -#
55198 -# CONFIG_DMADEVICES is not set
55199 -
55200 -#
55201 -# Userspace I/O
55202 -#
55203 -# CONFIG_UIO is not set
55204 -
55205 -#
55206 -# File systems
55207 -#
55208 -CONFIG_EXT2_FS=y
55209 -# CONFIG_EXT2_FS_XATTR is not set
55210 -# CONFIG_EXT2_FS_XIP is not set
55211 -CONFIG_EXT3_FS=y
55212 -CONFIG_EXT3_FS_XATTR=y
55213 -# CONFIG_EXT3_FS_POSIX_ACL is not set
55214 -# CONFIG_EXT3_FS_SECURITY is not set
55215 -# CONFIG_EXT4DEV_FS is not set
55216 -CONFIG_JBD=y
55217 -CONFIG_FS_MBCACHE=y
55218 -# CONFIG_REISERFS_FS is not set
55219 -# CONFIG_JFS_FS is not set
55220 -# CONFIG_FS_POSIX_ACL is not set
55221 -# CONFIG_XFS_FS is not set
55222 -# CONFIG_GFS2_FS is not set
55223 -# CONFIG_OCFS2_FS is not set
55224 -CONFIG_DNOTIFY=y
55225 -CONFIG_INOTIFY=y
55226 -CONFIG_INOTIFY_USER=y
55227 -# CONFIG_QUOTA is not set
55228 -# CONFIG_AUTOFS_FS is not set
55229 -# CONFIG_AUTOFS4_FS is not set
55230 -# CONFIG_FUSE_FS is not set
55231 -
55232 -#
55233 -# CD-ROM/DVD Filesystems
55234 -#
55235 -# CONFIG_ISO9660_FS is not set
55236 -# CONFIG_UDF_FS is not set
55237 -
55238 -#
55239 -# DOS/FAT/NT Filesystems
55240 -#
55241 -# CONFIG_MSDOS_FS is not set
55242 -# CONFIG_VFAT_FS is not set
55243 -# CONFIG_NTFS_FS is not set
55244 -
55245 -#
55246 -# Pseudo filesystems
55247 -#
55248 -CONFIG_PROC_FS=y
55249 -CONFIG_PROC_KCORE=y
55250 -CONFIG_PROC_SYSCTL=y
55251 -CONFIG_SYSFS=y
55252 -CONFIG_TMPFS=y
55253 -# CONFIG_TMPFS_POSIX_ACL is not set
55254 -# CONFIG_HUGETLB_PAGE is not set
55255 -# CONFIG_CONFIGFS_FS is not set
55256 -
55257 -#
55258 -# Miscellaneous filesystems
55259 -#
55260 -# CONFIG_ADFS_FS is not set
55261 -# CONFIG_AFFS_FS is not set
55262 -# CONFIG_HFS_FS is not set
55263 -# CONFIG_HFSPLUS_FS is not set
55264 -# CONFIG_BEFS_FS is not set
55265 -# CONFIG_BFS_FS is not set
55266 -# CONFIG_EFS_FS is not set
55267 -CONFIG_JFFS2_FS=y
55268 -CONFIG_JFFS2_FS_DEBUG=0
55269 -CONFIG_JFFS2_FS_WRITEBUFFER=y
55270 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
55271 -# CONFIG_JFFS2_SUMMARY is not set
55272 -# CONFIG_JFFS2_FS_XATTR is not set
55273 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
55274 -CONFIG_JFFS2_ZLIB=y
55275 -# CONFIG_JFFS2_LZO is not set
55276 -CONFIG_JFFS2_RTIME=y
55277 -# CONFIG_JFFS2_RUBIN is not set
55278 -# CONFIG_CRAMFS is not set
55279 -# CONFIG_VXFS_FS is not set
55280 -# CONFIG_MINIX_FS is not set
55281 -# CONFIG_HPFS_FS is not set
55282 -# CONFIG_QNX4FS_FS is not set
55283 -# CONFIG_ROMFS_FS is not set
55284 -# CONFIG_SYSV_FS is not set
55285 -# CONFIG_UFS_FS is not set
55286 -CONFIG_NETWORK_FILESYSTEMS=y
55287 -CONFIG_NFS_FS=y
55288 -CONFIG_NFS_V3=y
55289 -# CONFIG_NFS_V3_ACL is not set
55290 -CONFIG_NFS_V4=y
55291 -# CONFIG_NFS_DIRECTIO is not set
55292 -# CONFIG_NFSD is not set
55293 -CONFIG_ROOT_NFS=y
55294 -CONFIG_LOCKD=y
55295 -CONFIG_LOCKD_V4=y
55296 -CONFIG_NFS_COMMON=y
55297 -CONFIG_SUNRPC=y
55298 -CONFIG_SUNRPC_GSS=y
55299 -# CONFIG_SUNRPC_BIND34 is not set
55300 -CONFIG_RPCSEC_GSS_KRB5=y
55301 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
55302 -# CONFIG_SMB_FS is not set
55303 -# CONFIG_CIFS is not set
55304 -# CONFIG_NCP_FS is not set
55305 -# CONFIG_CODA_FS is not set
55306 -# CONFIG_AFS_FS is not set
55307 -
55308 -#
55309 -# Partition Types
55310 -#
55311 -CONFIG_PARTITION_ADVANCED=y
55312 -# CONFIG_ACORN_PARTITION is not set
55313 -# CONFIG_OSF_PARTITION is not set
55314 -# CONFIG_AMIGA_PARTITION is not set
55315 -# CONFIG_ATARI_PARTITION is not set
55316 -# CONFIG_MAC_PARTITION is not set
55317 -CONFIG_MSDOS_PARTITION=y
55318 -# CONFIG_BSD_DISKLABEL is not set
55319 -# CONFIG_MINIX_SUBPARTITION is not set
55320 -# CONFIG_SOLARIS_X86_PARTITION is not set
55321 -# CONFIG_UNIXWARE_DISKLABEL is not set
55322 -# CONFIG_LDM_PARTITION is not set
55323 -# CONFIG_SGI_PARTITION is not set
55324 -# CONFIG_ULTRIX_PARTITION is not set
55325 -# CONFIG_SUN_PARTITION is not set
55326 -# CONFIG_KARMA_PARTITION is not set
55327 -# CONFIG_EFI_PARTITION is not set
55328 -# CONFIG_SYSV68_PARTITION is not set
55329 -# CONFIG_NLS is not set
55330 -# CONFIG_DLM is not set
55331 -
55332 -#
55333 -# Library routines
55334 -#
55335 -CONFIG_BITREVERSE=y
55336 -# CONFIG_CRC_CCITT is not set
55337 -# CONFIG_CRC16 is not set
55338 -# CONFIG_CRC_ITU_T is not set
55339 -CONFIG_CRC32=y
55340 -# CONFIG_CRC7 is not set
55341 -# CONFIG_LIBCRC32C is not set
55342 -CONFIG_ZLIB_INFLATE=y
55343 -CONFIG_ZLIB_DEFLATE=y
55344 -CONFIG_PLIST=y
55345 -CONFIG_HAS_IOMEM=y
55346 -CONFIG_HAS_IOPORT=y
55347 -CONFIG_HAS_DMA=y
55348 -
55349 -#
55350 -# Kernel hacking
55351 -#
55352 -# CONFIG_PRINTK_TIME is not set
55353 -CONFIG_ENABLE_WARN_DEPRECATED=y
55354 -CONFIG_ENABLE_MUST_CHECK=y
55355 -# CONFIG_MAGIC_SYSRQ is not set
55356 -# CONFIG_UNUSED_SYMBOLS is not set
55357 -# CONFIG_DEBUG_FS is not set
55358 -# CONFIG_HEADERS_CHECK is not set
55359 -CONFIG_DEBUG_KERNEL=y
55360 -# CONFIG_DEBUG_SHIRQ is not set
55361 -CONFIG_DETECT_SOFTLOCKUP=y
55362 -CONFIG_SCHED_DEBUG=y
55363 -# CONFIG_SCHEDSTATS is not set
55364 -# CONFIG_TIMER_STATS is not set
55365 -# CONFIG_SLUB_DEBUG_ON is not set
55366 -# CONFIG_SLUB_STATS is not set
55367 -# CONFIG_DEBUG_RT_MUTEXES is not set
55368 -# CONFIG_RT_MUTEX_TESTER is not set
55369 -# CONFIG_DEBUG_SPINLOCK is not set
55370 -# CONFIG_DEBUG_MUTEXES is not set
55371 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
55372 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
55373 -# CONFIG_DEBUG_KOBJECT is not set
55374 -# CONFIG_DEBUG_BUGVERBOSE is not set
55375 -# CONFIG_DEBUG_INFO is not set
55376 -# CONFIG_DEBUG_VM is not set
55377 -# CONFIG_DEBUG_LIST is not set
55378 -# CONFIG_DEBUG_SG is not set
55379 -# CONFIG_BOOT_PRINTK_DELAY is not set
55380 -# CONFIG_RCU_TORTURE_TEST is not set
55381 -# CONFIG_BACKTRACE_SELF_TEST is not set
55382 -# CONFIG_FAULT_INJECTION is not set
55383 -# CONFIG_SAMPLES is not set
55384 -# CONFIG_DEBUG_STACKOVERFLOW is not set
55385 -# CONFIG_DEBUG_STACK_USAGE is not set
55386 -# CONFIG_DEBUG_PAGEALLOC is not set
55387 -# CONFIG_DEBUGGER is not set
55388 -# CONFIG_BDI_SWITCH is not set
55389 -# CONFIG_PPC_EARLY_DEBUG is not set
55390 -
55391 -#
55392 -# Security options
55393 -#
55394 -# CONFIG_KEYS is not set
55395 -# CONFIG_SECURITY is not set
55396 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
55397 -CONFIG_CRYPTO=y
55398 -CONFIG_CRYPTO_ALGAPI=y
55399 -CONFIG_CRYPTO_BLKCIPHER=y
55400 -# CONFIG_CRYPTO_SEQIV is not set
55401 -CONFIG_CRYPTO_MANAGER=y
55402 -# CONFIG_CRYPTO_HMAC is not set
55403 -# CONFIG_CRYPTO_XCBC is not set
55404 -# CONFIG_CRYPTO_NULL is not set
55405 -# CONFIG_CRYPTO_MD4 is not set
55406 -CONFIG_CRYPTO_MD5=y
55407 -# CONFIG_CRYPTO_SHA1 is not set
55408 -# CONFIG_CRYPTO_SHA256 is not set
55409 -# CONFIG_CRYPTO_SHA512 is not set
55410 -# CONFIG_CRYPTO_WP512 is not set
55411 -# CONFIG_CRYPTO_TGR192 is not set
55412 -# CONFIG_CRYPTO_GF128MUL is not set
55413 -# CONFIG_CRYPTO_ECB is not set
55414 -CONFIG_CRYPTO_CBC=y
55415 -CONFIG_CRYPTO_PCBC=m
55416 -# CONFIG_CRYPTO_LRW is not set
55417 -# CONFIG_CRYPTO_XTS is not set
55418 -# CONFIG_CRYPTO_CTR is not set
55419 -# CONFIG_CRYPTO_GCM is not set
55420 -# CONFIG_CRYPTO_CCM is not set
55421 -# CONFIG_CRYPTO_CRYPTD is not set
55422 -CONFIG_CRYPTO_DES=y
55423 -# CONFIG_CRYPTO_FCRYPT is not set
55424 -# CONFIG_CRYPTO_BLOWFISH is not set
55425 -# CONFIG_CRYPTO_TWOFISH is not set
55426 -# CONFIG_CRYPTO_SERPENT is not set
55427 -# CONFIG_CRYPTO_AES is not set
55428 -# CONFIG_CRYPTO_CAST5 is not set
55429 -# CONFIG_CRYPTO_CAST6 is not set
55430 -# CONFIG_CRYPTO_TEA is not set
55431 -# CONFIG_CRYPTO_ARC4 is not set
55432 -# CONFIG_CRYPTO_KHAZAD is not set
55433 -# CONFIG_CRYPTO_ANUBIS is not set
55434 -# CONFIG_CRYPTO_SEED is not set
55435 -# CONFIG_CRYPTO_SALSA20 is not set
55436 -# CONFIG_CRYPTO_DEFLATE is not set
55437 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
55438 -# CONFIG_CRYPTO_CRC32C is not set
55439 -# CONFIG_CRYPTO_CAMELLIA is not set
55440 -# CONFIG_CRYPTO_TEST is not set
55441 -# CONFIG_CRYPTO_AUTHENC is not set
55442 -# CONFIG_CRYPTO_LZO is not set
55443 -CONFIG_CRYPTO_HW=y
55444 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
55445 -# CONFIG_PPC_CLOCK is not set
55446 Index: linux-2.6.25.4/arch/powerpc/configs/mpc8315_rdb_defconfig
55447 ===================================================================
55448 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc8315_rdb_defconfig
55449 +++ /dev/null
55450 @@ -1,1451 +0,0 @@
55451 -#
55452 -# Automatically generated make config: don't edit
55453 -# Linux kernel version: 2.6.25-rc6
55454 -# Mon Mar 24 08:48:15 2008
55455 -#
55456 -# CONFIG_PPC64 is not set
55457 -
55458 -#
55459 -# Processor support
55460 -#
55461 -CONFIG_6xx=y
55462 -# CONFIG_PPC_85xx is not set
55463 -# CONFIG_PPC_8xx is not set
55464 -# CONFIG_40x is not set
55465 -# CONFIG_44x is not set
55466 -# CONFIG_E200 is not set
55467 -CONFIG_PPC_FPU=y
55468 -# CONFIG_FSL_EMB_PERFMON is not set
55469 -CONFIG_PPC_STD_MMU=y
55470 -CONFIG_PPC_STD_MMU_32=y
55471 -# CONFIG_PPC_MM_SLICES is not set
55472 -# CONFIG_SMP is not set
55473 -CONFIG_PPC32=y
55474 -CONFIG_WORD_SIZE=32
55475 -CONFIG_PPC_MERGE=y
55476 -CONFIG_MMU=y
55477 -CONFIG_GENERIC_CMOS_UPDATE=y
55478 -CONFIG_GENERIC_TIME=y
55479 -CONFIG_GENERIC_TIME_VSYSCALL=y
55480 -CONFIG_GENERIC_CLOCKEVENTS=y
55481 -CONFIG_GENERIC_HARDIRQS=y
55482 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
55483 -CONFIG_IRQ_PER_CPU=y
55484 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
55485 -CONFIG_ARCH_HAS_ILOG2_U32=y
55486 -CONFIG_GENERIC_HWEIGHT=y
55487 -CONFIG_GENERIC_CALIBRATE_DELAY=y
55488 -CONFIG_GENERIC_FIND_NEXT_BIT=y
55489 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
55490 -CONFIG_PPC=y
55491 -CONFIG_EARLY_PRINTK=y
55492 -CONFIG_GENERIC_NVRAM=y
55493 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
55494 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
55495 -CONFIG_PPC_OF=y
55496 -CONFIG_OF=y
55497 -CONFIG_PPC_UDBG_16550=y
55498 -# CONFIG_GENERIC_TBSYNC is not set
55499 -CONFIG_AUDIT_ARCH=y
55500 -CONFIG_GENERIC_BUG=y
55501 -CONFIG_DEFAULT_UIMAGE=y
55502 -# CONFIG_PPC_DCR_NATIVE is not set
55503 -# CONFIG_PPC_DCR_MMIO is not set
55504 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
55505 -
55506 -#
55507 -# General setup
55508 -#
55509 -CONFIG_EXPERIMENTAL=y
55510 -CONFIG_BROKEN_ON_SMP=y
55511 -CONFIG_INIT_ENV_ARG_LIMIT=32
55512 -CONFIG_LOCALVERSION=""
55513 -CONFIG_LOCALVERSION_AUTO=y
55514 -CONFIG_SWAP=y
55515 -CONFIG_SYSVIPC=y
55516 -CONFIG_SYSVIPC_SYSCTL=y
55517 -# CONFIG_POSIX_MQUEUE is not set
55518 -# CONFIG_BSD_PROCESS_ACCT is not set
55519 -# CONFIG_TASKSTATS is not set
55520 -# CONFIG_AUDIT is not set
55521 -# CONFIG_IKCONFIG is not set
55522 -CONFIG_LOG_BUF_SHIFT=14
55523 -# CONFIG_CGROUPS is not set
55524 -CONFIG_GROUP_SCHED=y
55525 -# CONFIG_FAIR_GROUP_SCHED is not set
55526 -# CONFIG_RT_GROUP_SCHED is not set
55527 -CONFIG_USER_SCHED=y
55528 -# CONFIG_CGROUP_SCHED is not set
55529 -CONFIG_SYSFS_DEPRECATED=y
55530 -CONFIG_SYSFS_DEPRECATED_V2=y
55531 -# CONFIG_RELAY is not set
55532 -# CONFIG_NAMESPACES is not set
55533 -CONFIG_BLK_DEV_INITRD=y
55534 -CONFIG_INITRAMFS_SOURCE=""
55535 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
55536 -CONFIG_SYSCTL=y
55537 -CONFIG_EMBEDDED=y
55538 -CONFIG_SYSCTL_SYSCALL=y
55539 -# CONFIG_KALLSYMS is not set
55540 -CONFIG_HOTPLUG=y
55541 -CONFIG_PRINTK=y
55542 -CONFIG_BUG=y
55543 -CONFIG_ELF_CORE=y
55544 -CONFIG_COMPAT_BRK=y
55545 -CONFIG_BASE_FULL=y
55546 -CONFIG_FUTEX=y
55547 -CONFIG_ANON_INODES=y
55548 -# CONFIG_EPOLL is not set
55549 -CONFIG_SIGNALFD=y
55550 -CONFIG_TIMERFD=y
55551 -CONFIG_EVENTFD=y
55552 -CONFIG_SHMEM=y
55553 -CONFIG_VM_EVENT_COUNTERS=y
55554 -CONFIG_SLUB_DEBUG=y
55555 -# CONFIG_SLAB is not set
55556 -CONFIG_SLUB=y
55557 -# CONFIG_SLOB is not set
55558 -# CONFIG_PROFILING is not set
55559 -# CONFIG_MARKERS is not set
55560 -CONFIG_HAVE_OPROFILE=y
55561 -CONFIG_HAVE_KPROBES=y
55562 -CONFIG_HAVE_KRETPROBES=y
55563 -CONFIG_PROC_PAGE_MONITOR=y
55564 -CONFIG_SLABINFO=y
55565 -CONFIG_RT_MUTEXES=y
55566 -# CONFIG_TINY_SHMEM is not set
55567 -CONFIG_BASE_SMALL=0
55568 -CONFIG_MODULES=y
55569 -CONFIG_MODULE_UNLOAD=y
55570 -# CONFIG_MODULE_FORCE_UNLOAD is not set
55571 -# CONFIG_MODVERSIONS is not set
55572 -# CONFIG_MODULE_SRCVERSION_ALL is not set
55573 -# CONFIG_KMOD is not set
55574 -CONFIG_BLOCK=y
55575 -# CONFIG_LBD is not set
55576 -# CONFIG_BLK_DEV_IO_TRACE is not set
55577 -# CONFIG_LSF is not set
55578 -# CONFIG_BLK_DEV_BSG is not set
55579 -
55580 -#
55581 -# IO Schedulers
55582 -#
55583 -CONFIG_IOSCHED_NOOP=y
55584 -CONFIG_IOSCHED_AS=y
55585 -CONFIG_IOSCHED_DEADLINE=y
55586 -CONFIG_IOSCHED_CFQ=y
55587 -CONFIG_DEFAULT_AS=y
55588 -# CONFIG_DEFAULT_DEADLINE is not set
55589 -# CONFIG_DEFAULT_CFQ is not set
55590 -# CONFIG_DEFAULT_NOOP is not set
55591 -CONFIG_DEFAULT_IOSCHED="anticipatory"
55592 -CONFIG_CLASSIC_RCU=y
55593 -
55594 -#
55595 -# Platform support
55596 -#
55597 -# CONFIG_PPC_MULTIPLATFORM is not set
55598 -# CONFIG_PPC_82xx is not set
55599 -CONFIG_PPC_83xx=y
55600 -# CONFIG_PPC_86xx is not set
55601 -# CONFIG_PPC_MPC512x is not set
55602 -# CONFIG_PPC_MPC5121 is not set
55603 -# CONFIG_PPC_CELL is not set
55604 -# CONFIG_PPC_CELL_NATIVE is not set
55605 -# CONFIG_PQ2ADS is not set
55606 -CONFIG_MPC83xx=y
55607 -CONFIG_MPC831x_RDB=y
55608 -# CONFIG_MPC832x_MDS is not set
55609 -# CONFIG_MPC832x_RDB is not set
55610 -# CONFIG_MPC834x_MDS is not set
55611 -# CONFIG_MPC834x_ITX is not set
55612 -# CONFIG_MPC836x_MDS is not set
55613 -# CONFIG_MPC837x_MDS is not set
55614 -# CONFIG_MPC837x_RDB is not set
55615 -# CONFIG_SBC834x is not set
55616 -CONFIG_PPC_MPC831x=y
55617 -CONFIG_IPIC=y
55618 -# CONFIG_MPIC is not set
55619 -# CONFIG_MPIC_WEIRD is not set
55620 -# CONFIG_PPC_I8259 is not set
55621 -# CONFIG_PPC_RTAS is not set
55622 -# CONFIG_MMIO_NVRAM is not set
55623 -# CONFIG_PPC_MPC106 is not set
55624 -# CONFIG_PPC_970_NAP is not set
55625 -# CONFIG_PPC_INDIRECT_IO is not set
55626 -# CONFIG_GENERIC_IOMAP is not set
55627 -# CONFIG_CPU_FREQ is not set
55628 -# CONFIG_FSL_ULI1575 is not set
55629 -
55630 -#
55631 -# Kernel options
55632 -#
55633 -# CONFIG_HIGHMEM is not set
55634 -CONFIG_TICK_ONESHOT=y
55635 -CONFIG_NO_HZ=y
55636 -CONFIG_HIGH_RES_TIMERS=y
55637 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
55638 -# CONFIG_HZ_100 is not set
55639 -CONFIG_HZ_250=y
55640 -# CONFIG_HZ_300 is not set
55641 -# CONFIG_HZ_1000 is not set
55642 -CONFIG_HZ=250
55643 -# CONFIG_SCHED_HRTICK is not set
55644 -CONFIG_PREEMPT_NONE=y
55645 -# CONFIG_PREEMPT_VOLUNTARY is not set
55646 -# CONFIG_PREEMPT is not set
55647 -CONFIG_BINFMT_ELF=y
55648 -# CONFIG_BINFMT_MISC is not set
55649 -# CONFIG_IOMMU_HELPER is not set
55650 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
55651 -CONFIG_ARCH_HAS_WALK_MEMORY=y
55652 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
55653 -CONFIG_ARCH_FLATMEM_ENABLE=y
55654 -CONFIG_ARCH_POPULATES_NODE_MAP=y
55655 -CONFIG_SELECT_MEMORY_MODEL=y
55656 -CONFIG_FLATMEM_MANUAL=y
55657 -# CONFIG_DISCONTIGMEM_MANUAL is not set
55658 -# CONFIG_SPARSEMEM_MANUAL is not set
55659 -CONFIG_FLATMEM=y
55660 -CONFIG_FLAT_NODE_MEM_MAP=y
55661 -# CONFIG_SPARSEMEM_STATIC is not set
55662 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
55663 -CONFIG_SPLIT_PTLOCK_CPUS=4
55664 -# CONFIG_RESOURCES_64BIT is not set
55665 -CONFIG_ZONE_DMA_FLAG=1
55666 -CONFIG_BOUNCE=y
55667 -CONFIG_VIRT_TO_BUS=y
55668 -CONFIG_PROC_DEVICETREE=y
55669 -# CONFIG_CMDLINE_BOOL is not set
55670 -# CONFIG_PM is not set
55671 -CONFIG_SECCOMP=y
55672 -CONFIG_ISA_DMA_API=y
55673 -
55674 -#
55675 -# Bus options
55676 -#
55677 -CONFIG_ZONE_DMA=y
55678 -CONFIG_GENERIC_ISA_DMA=y
55679 -CONFIG_PPC_INDIRECT_PCI=y
55680 -CONFIG_FSL_SOC=y
55681 -CONFIG_PCI=y
55682 -CONFIG_PCI_DOMAINS=y
55683 -CONFIG_PCI_SYSCALL=y
55684 -# CONFIG_PCIEPORTBUS is not set
55685 -CONFIG_ARCH_SUPPORTS_MSI=y
55686 -# CONFIG_PCI_MSI is not set
55687 -CONFIG_PCI_LEGACY=y
55688 -# CONFIG_PCI_DEBUG is not set
55689 -# CONFIG_PCCARD is not set
55690 -# CONFIG_HOTPLUG_PCI is not set
55691 -
55692 -#
55693 -# Advanced setup
55694 -#
55695 -# CONFIG_ADVANCED_OPTIONS is not set
55696 -
55697 -#
55698 -# Default settings for advanced configuration options are used
55699 -#
55700 -CONFIG_HIGHMEM_START=0xfe000000
55701 -CONFIG_LOWMEM_SIZE=0x30000000
55702 -CONFIG_KERNEL_START=0xc0000000
55703 -CONFIG_TASK_SIZE=0xc0000000
55704 -CONFIG_BOOT_LOAD=0x00800000
55705 -
55706 -#
55707 -# Networking
55708 -#
55709 -CONFIG_NET=y
55710 -
55711 -#
55712 -# Networking options
55713 -#
55714 -CONFIG_PACKET=y
55715 -# CONFIG_PACKET_MMAP is not set
55716 -CONFIG_UNIX=y
55717 -CONFIG_XFRM=y
55718 -# CONFIG_XFRM_USER is not set
55719 -# CONFIG_XFRM_SUB_POLICY is not set
55720 -# CONFIG_XFRM_MIGRATE is not set
55721 -# CONFIG_XFRM_STATISTICS is not set
55722 -# CONFIG_NET_KEY is not set
55723 -CONFIG_INET=y
55724 -CONFIG_IP_MULTICAST=y
55725 -# CONFIG_IP_ADVANCED_ROUTER is not set
55726 -CONFIG_IP_FIB_HASH=y
55727 -CONFIG_IP_PNP=y
55728 -CONFIG_IP_PNP_DHCP=y
55729 -CONFIG_IP_PNP_BOOTP=y
55730 -# CONFIG_IP_PNP_RARP is not set
55731 -# CONFIG_NET_IPIP is not set
55732 -# CONFIG_NET_IPGRE is not set
55733 -# CONFIG_IP_MROUTE is not set
55734 -# CONFIG_ARPD is not set
55735 -CONFIG_SYN_COOKIES=y
55736 -# CONFIG_INET_AH is not set
55737 -# CONFIG_INET_ESP is not set
55738 -# CONFIG_INET_IPCOMP is not set
55739 -# CONFIG_INET_XFRM_TUNNEL is not set
55740 -# CONFIG_INET_TUNNEL is not set
55741 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
55742 -CONFIG_INET_XFRM_MODE_TUNNEL=y
55743 -CONFIG_INET_XFRM_MODE_BEET=y
55744 -# CONFIG_INET_LRO is not set
55745 -CONFIG_INET_DIAG=y
55746 -CONFIG_INET_TCP_DIAG=y
55747 -# CONFIG_TCP_CONG_ADVANCED is not set
55748 -CONFIG_TCP_CONG_CUBIC=y
55749 -CONFIG_DEFAULT_TCP_CONG="cubic"
55750 -# CONFIG_TCP_MD5SIG is not set
55751 -# CONFIG_IPV6 is not set
55752 -# CONFIG_INET6_XFRM_TUNNEL is not set
55753 -# CONFIG_INET6_TUNNEL is not set
55754 -# CONFIG_NETWORK_SECMARK is not set
55755 -# CONFIG_NETFILTER is not set
55756 -# CONFIG_IP_DCCP is not set
55757 -# CONFIG_IP_SCTP is not set
55758 -# CONFIG_TIPC is not set
55759 -# CONFIG_ATM is not set
55760 -# CONFIG_BRIDGE is not set
55761 -# CONFIG_VLAN_8021Q is not set
55762 -# CONFIG_DECNET is not set
55763 -# CONFIG_LLC2 is not set
55764 -# CONFIG_IPX is not set
55765 -# CONFIG_ATALK is not set
55766 -# CONFIG_X25 is not set
55767 -# CONFIG_LAPB is not set
55768 -# CONFIG_ECONET is not set
55769 -# CONFIG_WAN_ROUTER is not set
55770 -# CONFIG_NET_SCHED is not set
55771 -
55772 -#
55773 -# Network testing
55774 -#
55775 -# CONFIG_NET_PKTGEN is not set
55776 -# CONFIG_HAMRADIO is not set
55777 -# CONFIG_CAN is not set
55778 -# CONFIG_IRDA is not set
55779 -# CONFIG_BT is not set
55780 -# CONFIG_AF_RXRPC is not set
55781 -
55782 -#
55783 -# Wireless
55784 -#
55785 -# CONFIG_CFG80211 is not set
55786 -# CONFIG_WIRELESS_EXT is not set
55787 -# CONFIG_MAC80211 is not set
55788 -# CONFIG_IEEE80211 is not set
55789 -# CONFIG_RFKILL is not set
55790 -# CONFIG_NET_9P is not set
55791 -
55792 -#
55793 -# Device Drivers
55794 -#
55795 -
55796 -#
55797 -# Generic Driver Options
55798 -#
55799 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
55800 -CONFIG_STANDALONE=y
55801 -CONFIG_PREVENT_FIRMWARE_BUILD=y
55802 -# CONFIG_FW_LOADER is not set
55803 -# CONFIG_DEBUG_DRIVER is not set
55804 -# CONFIG_DEBUG_DEVRES is not set
55805 -# CONFIG_SYS_HYPERVISOR is not set
55806 -# CONFIG_CONNECTOR is not set
55807 -CONFIG_MTD=y
55808 -# CONFIG_MTD_DEBUG is not set
55809 -# CONFIG_MTD_CONCAT is not set
55810 -CONFIG_MTD_PARTITIONS=y
55811 -# CONFIG_MTD_REDBOOT_PARTS is not set
55812 -# CONFIG_MTD_CMDLINE_PARTS is not set
55813 -# CONFIG_MTD_OF_PARTS is not set
55814 -
55815 -#
55816 -# User Modules And Translation Layers
55817 -#
55818 -CONFIG_MTD_CHAR=y
55819 -CONFIG_MTD_BLKDEVS=y
55820 -CONFIG_MTD_BLOCK=y
55821 -# CONFIG_FTL is not set
55822 -# CONFIG_NFTL is not set
55823 -# CONFIG_INFTL is not set
55824 -# CONFIG_RFD_FTL is not set
55825 -# CONFIG_SSFDC is not set
55826 -# CONFIG_MTD_OOPS is not set
55827 -
55828 -#
55829 -# RAM/ROM/Flash chip drivers
55830 -#
55831 -CONFIG_MTD_CFI=y
55832 -# CONFIG_MTD_JEDECPROBE is not set
55833 -CONFIG_MTD_GEN_PROBE=y
55834 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
55835 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
55836 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
55837 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
55838 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
55839 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
55840 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
55841 -CONFIG_MTD_CFI_I1=y
55842 -CONFIG_MTD_CFI_I2=y
55843 -# CONFIG_MTD_CFI_I4 is not set
55844 -# CONFIG_MTD_CFI_I8 is not set
55845 -# CONFIG_MTD_CFI_INTELEXT is not set
55846 -CONFIG_MTD_CFI_AMDSTD=y
55847 -# CONFIG_MTD_CFI_STAA is not set
55848 -CONFIG_MTD_CFI_UTIL=y
55849 -# CONFIG_MTD_RAM is not set
55850 -# CONFIG_MTD_ROM is not set
55851 -# CONFIG_MTD_ABSENT is not set
55852 -
55853 -#
55854 -# Mapping drivers for chip access
55855 -#
55856 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
55857 -# CONFIG_MTD_PHYSMAP is not set
55858 -CONFIG_MTD_PHYSMAP_OF=y
55859 -# CONFIG_MTD_INTEL_VR_NOR is not set
55860 -# CONFIG_MTD_PLATRAM is not set
55861 -
55862 -#
55863 -# Self-contained MTD device drivers
55864 -#
55865 -# CONFIG_MTD_PMC551 is not set
55866 -# CONFIG_MTD_DATAFLASH is not set
55867 -# CONFIG_MTD_M25P80 is not set
55868 -# CONFIG_MTD_SLRAM is not set
55869 -# CONFIG_MTD_PHRAM is not set
55870 -# CONFIG_MTD_MTDRAM is not set
55871 -# CONFIG_MTD_BLOCK2MTD is not set
55872 -
55873 -#
55874 -# Disk-On-Chip Device Drivers
55875 -#
55876 -# CONFIG_MTD_DOC2000 is not set
55877 -# CONFIG_MTD_DOC2001 is not set
55878 -# CONFIG_MTD_DOC2001PLUS is not set
55879 -CONFIG_MTD_NAND=y
55880 -CONFIG_MTD_NAND_VERIFY_WRITE=y
55881 -# CONFIG_MTD_NAND_ECC_SMC is not set
55882 -# CONFIG_MTD_NAND_MUSEUM_IDS is not set
55883 -CONFIG_MTD_NAND_IDS=y
55884 -# CONFIG_MTD_NAND_DISKONCHIP is not set
55885 -# CONFIG_MTD_NAND_CAFE is not set
55886 -# CONFIG_MTD_NAND_NANDSIM is not set
55887 -# CONFIG_MTD_NAND_PLATFORM is not set
55888 -# CONFIG_MTD_ALAUDA is not set
55889 -# CONFIG_MTD_NAND_FSL_ELBC is not set
55890 -# CONFIG_MTD_ONENAND is not set
55891 -
55892 -#
55893 -# UBI - Unsorted block images
55894 -#
55895 -# CONFIG_MTD_UBI is not set
55896 -CONFIG_OF_DEVICE=y
55897 -# CONFIG_PARPORT is not set
55898 -CONFIG_BLK_DEV=y
55899 -# CONFIG_BLK_DEV_FD is not set
55900 -# CONFIG_BLK_CPQ_DA is not set
55901 -# CONFIG_BLK_CPQ_CISS_DA is not set
55902 -# CONFIG_BLK_DEV_DAC960 is not set
55903 -# CONFIG_BLK_DEV_UMEM is not set
55904 -# CONFIG_BLK_DEV_COW_COMMON is not set
55905 -CONFIG_BLK_DEV_LOOP=y
55906 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
55907 -# CONFIG_BLK_DEV_NBD is not set
55908 -# CONFIG_BLK_DEV_SX8 is not set
55909 -# CONFIG_BLK_DEV_UB is not set
55910 -CONFIG_BLK_DEV_RAM=y
55911 -CONFIG_BLK_DEV_RAM_COUNT=16
55912 -CONFIG_BLK_DEV_RAM_SIZE=32768
55913 -# CONFIG_BLK_DEV_XIP is not set
55914 -# CONFIG_CDROM_PKTCDVD is not set
55915 -# CONFIG_ATA_OVER_ETH is not set
55916 -CONFIG_MISC_DEVICES=y
55917 -# CONFIG_PHANTOM is not set
55918 -# CONFIG_EEPROM_93CX6 is not set
55919 -# CONFIG_SGI_IOC4 is not set
55920 -# CONFIG_TIFM_CORE is not set
55921 -# CONFIG_ENCLOSURE_SERVICES is not set
55922 -CONFIG_HAVE_IDE=y
55923 -# CONFIG_IDE is not set
55924 -
55925 -#
55926 -# SCSI device support
55927 -#
55928 -# CONFIG_RAID_ATTRS is not set
55929 -CONFIG_SCSI=y
55930 -CONFIG_SCSI_DMA=y
55931 -# CONFIG_SCSI_TGT is not set
55932 -# CONFIG_SCSI_NETLINK is not set
55933 -CONFIG_SCSI_PROC_FS=y
55934 -
55935 -#
55936 -# SCSI support type (disk, tape, CD-ROM)
55937 -#
55938 -# CONFIG_BLK_DEV_SD is not set
55939 -# CONFIG_CHR_DEV_ST is not set
55940 -# CONFIG_CHR_DEV_OSST is not set
55941 -# CONFIG_BLK_DEV_SR is not set
55942 -CONFIG_CHR_DEV_SG=y
55943 -# CONFIG_CHR_DEV_SCH is not set
55944 -
55945 -#
55946 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
55947 -#
55948 -# CONFIG_SCSI_MULTI_LUN is not set
55949 -# CONFIG_SCSI_CONSTANTS is not set
55950 -# CONFIG_SCSI_LOGGING is not set
55951 -# CONFIG_SCSI_SCAN_ASYNC is not set
55952 -CONFIG_SCSI_WAIT_SCAN=m
55953 -
55954 -#
55955 -# SCSI Transports
55956 -#
55957 -CONFIG_SCSI_SPI_ATTRS=y
55958 -# CONFIG_SCSI_FC_ATTRS is not set
55959 -# CONFIG_SCSI_ISCSI_ATTRS is not set
55960 -# CONFIG_SCSI_SAS_LIBSAS is not set
55961 -# CONFIG_SCSI_SRP_ATTRS is not set
55962 -CONFIG_SCSI_LOWLEVEL=y
55963 -# CONFIG_ISCSI_TCP is not set
55964 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
55965 -# CONFIG_SCSI_3W_9XXX is not set
55966 -# CONFIG_SCSI_ACARD is not set
55967 -# CONFIG_SCSI_AACRAID is not set
55968 -# CONFIG_SCSI_AIC7XXX is not set
55969 -# CONFIG_SCSI_AIC7XXX_OLD is not set
55970 -# CONFIG_SCSI_AIC79XX is not set
55971 -# CONFIG_SCSI_AIC94XX is not set
55972 -# CONFIG_SCSI_DPT_I2O is not set
55973 -# CONFIG_SCSI_ADVANSYS is not set
55974 -# CONFIG_SCSI_ARCMSR is not set
55975 -# CONFIG_MEGARAID_NEWGEN is not set
55976 -# CONFIG_MEGARAID_LEGACY is not set
55977 -# CONFIG_MEGARAID_SAS is not set
55978 -# CONFIG_SCSI_HPTIOP is not set
55979 -# CONFIG_SCSI_BUSLOGIC is not set
55980 -# CONFIG_SCSI_DMX3191D is not set
55981 -# CONFIG_SCSI_EATA is not set
55982 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
55983 -# CONFIG_SCSI_GDTH is not set
55984 -# CONFIG_SCSI_IPS is not set
55985 -# CONFIG_SCSI_INITIO is not set
55986 -# CONFIG_SCSI_INIA100 is not set
55987 -# CONFIG_SCSI_MVSAS is not set
55988 -# CONFIG_SCSI_STEX is not set
55989 -# CONFIG_SCSI_SYM53C8XX_2 is not set
55990 -# CONFIG_SCSI_IPR is not set
55991 -# CONFIG_SCSI_QLOGIC_1280 is not set
55992 -# CONFIG_SCSI_QLA_FC is not set
55993 -# CONFIG_SCSI_QLA_ISCSI is not set
55994 -# CONFIG_SCSI_LPFC is not set
55995 -# CONFIG_SCSI_DC395x is not set
55996 -# CONFIG_SCSI_DC390T is not set
55997 -# CONFIG_SCSI_NSP32 is not set
55998 -# CONFIG_SCSI_DEBUG is not set
55999 -# CONFIG_SCSI_SRP is not set
56000 -CONFIG_ATA=y
56001 -# CONFIG_ATA_NONSTANDARD is not set
56002 -# CONFIG_SATA_AHCI is not set
56003 -# CONFIG_SATA_SVW is not set
56004 -# CONFIG_ATA_PIIX is not set
56005 -# CONFIG_SATA_MV is not set
56006 -# CONFIG_SATA_NV is not set
56007 -# CONFIG_PDC_ADMA is not set
56008 -# CONFIG_SATA_QSTOR is not set
56009 -# CONFIG_SATA_PROMISE is not set
56010 -# CONFIG_SATA_SX4 is not set
56011 -# CONFIG_SATA_SIL is not set
56012 -# CONFIG_SATA_SIL24 is not set
56013 -# CONFIG_SATA_SIS is not set
56014 -# CONFIG_SATA_ULI is not set
56015 -# CONFIG_SATA_VIA is not set
56016 -# CONFIG_SATA_VITESSE is not set
56017 -# CONFIG_SATA_INIC162X is not set
56018 -CONFIG_SATA_FSL=y
56019 -# CONFIG_PATA_ALI is not set
56020 -# CONFIG_PATA_AMD is not set
56021 -# CONFIG_PATA_ARTOP is not set
56022 -# CONFIG_PATA_ATIIXP is not set
56023 -# CONFIG_PATA_CMD640_PCI is not set
56024 -# CONFIG_PATA_CMD64X is not set
56025 -# CONFIG_PATA_CS5520 is not set
56026 -# CONFIG_PATA_CS5530 is not set
56027 -# CONFIG_PATA_CYPRESS is not set
56028 -# CONFIG_PATA_EFAR is not set
56029 -# CONFIG_ATA_GENERIC is not set
56030 -# CONFIG_PATA_HPT366 is not set
56031 -# CONFIG_PATA_HPT37X is not set
56032 -# CONFIG_PATA_HPT3X2N is not set
56033 -# CONFIG_PATA_HPT3X3 is not set
56034 -# CONFIG_PATA_IT821X is not set
56035 -# CONFIG_PATA_IT8213 is not set
56036 -# CONFIG_PATA_JMICRON is not set
56037 -# CONFIG_PATA_TRIFLEX is not set
56038 -# CONFIG_PATA_MARVELL is not set
56039 -# CONFIG_PATA_MPIIX is not set
56040 -# CONFIG_PATA_OLDPIIX is not set
56041 -# CONFIG_PATA_NETCELL is not set
56042 -# CONFIG_PATA_NINJA32 is not set
56043 -# CONFIG_PATA_NS87410 is not set
56044 -# CONFIG_PATA_NS87415 is not set
56045 -# CONFIG_PATA_OPTI is not set
56046 -# CONFIG_PATA_OPTIDMA is not set
56047 -# CONFIG_PATA_PDC_OLD is not set
56048 -# CONFIG_PATA_RADISYS is not set
56049 -# CONFIG_PATA_RZ1000 is not set
56050 -# CONFIG_PATA_SC1200 is not set
56051 -# CONFIG_PATA_SERVERWORKS is not set
56052 -# CONFIG_PATA_PDC2027X is not set
56053 -# CONFIG_PATA_SIL680 is not set
56054 -# CONFIG_PATA_SIS is not set
56055 -# CONFIG_PATA_VIA is not set
56056 -# CONFIG_PATA_WINBOND is not set
56057 -# CONFIG_PATA_PLATFORM is not set
56058 -CONFIG_MD=y
56059 -CONFIG_BLK_DEV_MD=y
56060 -CONFIG_MD_LINEAR=y
56061 -CONFIG_MD_RAID0=y
56062 -CONFIG_MD_RAID1=y
56063 -# CONFIG_MD_RAID10 is not set
56064 -# CONFIG_MD_RAID456 is not set
56065 -# CONFIG_MD_MULTIPATH is not set
56066 -# CONFIG_MD_FAULTY is not set
56067 -# CONFIG_BLK_DEV_DM is not set
56068 -# CONFIG_FUSION is not set
56069 -
56070 -#
56071 -# IEEE 1394 (FireWire) support
56072 -#
56073 -# CONFIG_FIREWIRE is not set
56074 -# CONFIG_IEEE1394 is not set
56075 -# CONFIG_I2O is not set
56076 -# CONFIG_MACINTOSH_DRIVERS is not set
56077 -CONFIG_NETDEVICES=y
56078 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
56079 -# CONFIG_DUMMY is not set
56080 -# CONFIG_BONDING is not set
56081 -# CONFIG_MACVLAN is not set
56082 -# CONFIG_EQUALIZER is not set
56083 -# CONFIG_TUN is not set
56084 -# CONFIG_VETH is not set
56085 -# CONFIG_ARCNET is not set
56086 -CONFIG_PHYLIB=y
56087 -
56088 -#
56089 -# MII PHY device drivers
56090 -#
56091 -# CONFIG_MARVELL_PHY is not set
56092 -# CONFIG_DAVICOM_PHY is not set
56093 -# CONFIG_QSEMI_PHY is not set
56094 -# CONFIG_LXT_PHY is not set
56095 -# CONFIG_CICADA_PHY is not set
56096 -# CONFIG_VITESSE_PHY is not set
56097 -# CONFIG_SMSC_PHY is not set
56098 -# CONFIG_BROADCOM_PHY is not set
56099 -# CONFIG_ICPLUS_PHY is not set
56100 -# CONFIG_REALTEK_PHY is not set
56101 -# CONFIG_FIXED_PHY is not set
56102 -# CONFIG_MDIO_BITBANG is not set
56103 -CONFIG_NET_ETHERNET=y
56104 -CONFIG_MII=y
56105 -# CONFIG_HAPPYMEAL is not set
56106 -# CONFIG_SUNGEM is not set
56107 -# CONFIG_CASSINI is not set
56108 -# CONFIG_NET_VENDOR_3COM is not set
56109 -# CONFIG_ENC28J60 is not set
56110 -# CONFIG_NET_TULIP is not set
56111 -# CONFIG_HP100 is not set
56112 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
56113 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
56114 -# CONFIG_IBM_NEW_EMAC_TAH is not set
56115 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
56116 -CONFIG_NET_PCI=y
56117 -# CONFIG_PCNET32 is not set
56118 -# CONFIG_AMD8111_ETH is not set
56119 -# CONFIG_ADAPTEC_STARFIRE is not set
56120 -# CONFIG_B44 is not set
56121 -# CONFIG_FORCEDETH is not set
56122 -# CONFIG_EEPRO100 is not set
56123 -CONFIG_E100=y
56124 -# CONFIG_FEALNX is not set
56125 -# CONFIG_NATSEMI is not set
56126 -# CONFIG_NE2K_PCI is not set
56127 -# CONFIG_8139CP is not set
56128 -# CONFIG_8139TOO is not set
56129 -# CONFIG_R6040 is not set
56130 -# CONFIG_SIS900 is not set
56131 -# CONFIG_EPIC100 is not set
56132 -# CONFIG_SUNDANCE is not set
56133 -# CONFIG_TLAN is not set
56134 -# CONFIG_VIA_RHINE is not set
56135 -# CONFIG_SC92031 is not set
56136 -CONFIG_NETDEV_1000=y
56137 -# CONFIG_ACENIC is not set
56138 -# CONFIG_DL2K is not set
56139 -# CONFIG_E1000 is not set
56140 -# CONFIG_E1000E is not set
56141 -# CONFIG_E1000E_ENABLED is not set
56142 -# CONFIG_IP1000 is not set
56143 -# CONFIG_IGB is not set
56144 -# CONFIG_NS83820 is not set
56145 -# CONFIG_HAMACHI is not set
56146 -# CONFIG_YELLOWFIN is not set
56147 -# CONFIG_R8169 is not set
56148 -# CONFIG_SIS190 is not set
56149 -# CONFIG_SKGE is not set
56150 -# CONFIG_SKY2 is not set
56151 -# CONFIG_SK98LIN is not set
56152 -# CONFIG_VIA_VELOCITY is not set
56153 -# CONFIG_TIGON3 is not set
56154 -# CONFIG_BNX2 is not set
56155 -CONFIG_GIANFAR=y
56156 -CONFIG_GFAR_NAPI=y
56157 -# CONFIG_QLA3XXX is not set
56158 -# CONFIG_ATL1 is not set
56159 -CONFIG_NETDEV_10000=y
56160 -# CONFIG_CHELSIO_T1 is not set
56161 -# CONFIG_CHELSIO_T3 is not set
56162 -# CONFIG_IXGBE is not set
56163 -# CONFIG_IXGB is not set
56164 -# CONFIG_S2IO is not set
56165 -# CONFIG_MYRI10GE is not set
56166 -# CONFIG_NETXEN_NIC is not set
56167 -# CONFIG_NIU is not set
56168 -# CONFIG_MLX4_CORE is not set
56169 -# CONFIG_TEHUTI is not set
56170 -# CONFIG_BNX2X is not set
56171 -# CONFIG_TR is not set
56172 -
56173 -#
56174 -# Wireless LAN
56175 -#
56176 -# CONFIG_WLAN_PRE80211 is not set
56177 -# CONFIG_WLAN_80211 is not set
56178 -
56179 -#
56180 -# USB Network Adapters
56181 -#
56182 -# CONFIG_USB_CATC is not set
56183 -# CONFIG_USB_KAWETH is not set
56184 -# CONFIG_USB_PEGASUS is not set
56185 -# CONFIG_USB_RTL8150 is not set
56186 -# CONFIG_USB_USBNET is not set
56187 -# CONFIG_WAN is not set
56188 -# CONFIG_FDDI is not set
56189 -# CONFIG_HIPPI is not set
56190 -# CONFIG_PPP is not set
56191 -# CONFIG_SLIP is not set
56192 -# CONFIG_NET_FC is not set
56193 -# CONFIG_NETCONSOLE is not set
56194 -# CONFIG_NETPOLL is not set
56195 -# CONFIG_NET_POLL_CONTROLLER is not set
56196 -# CONFIG_ISDN is not set
56197 -# CONFIG_PHONE is not set
56198 -
56199 -#
56200 -# Input device support
56201 -#
56202 -CONFIG_INPUT=y
56203 -# CONFIG_INPUT_FF_MEMLESS is not set
56204 -# CONFIG_INPUT_POLLDEV is not set
56205 -
56206 -#
56207 -# Userland interfaces
56208 -#
56209 -# CONFIG_INPUT_MOUSEDEV is not set
56210 -# CONFIG_INPUT_JOYDEV is not set
56211 -# CONFIG_INPUT_EVDEV is not set
56212 -# CONFIG_INPUT_EVBUG is not set
56213 -
56214 -#
56215 -# Input Device Drivers
56216 -#
56217 -# CONFIG_INPUT_KEYBOARD is not set
56218 -# CONFIG_INPUT_MOUSE is not set
56219 -# CONFIG_INPUT_JOYSTICK is not set
56220 -# CONFIG_INPUT_TABLET is not set
56221 -# CONFIG_INPUT_TOUCHSCREEN is not set
56222 -# CONFIG_INPUT_MISC is not set
56223 -
56224 -#
56225 -# Hardware I/O ports
56226 -#
56227 -# CONFIG_SERIO is not set
56228 -# CONFIG_GAMEPORT is not set
56229 -
56230 -#
56231 -# Character devices
56232 -#
56233 -# CONFIG_VT is not set
56234 -# CONFIG_SERIAL_NONSTANDARD is not set
56235 -# CONFIG_NOZOMI is not set
56236 -
56237 -#
56238 -# Serial drivers
56239 -#
56240 -CONFIG_SERIAL_8250=y
56241 -CONFIG_SERIAL_8250_CONSOLE=y
56242 -CONFIG_SERIAL_8250_PCI=y
56243 -CONFIG_SERIAL_8250_NR_UARTS=4
56244 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
56245 -# CONFIG_SERIAL_8250_EXTENDED is not set
56246 -
56247 -#
56248 -# Non-8250 serial port support
56249 -#
56250 -# CONFIG_SERIAL_UARTLITE is not set
56251 -CONFIG_SERIAL_CORE=y
56252 -CONFIG_SERIAL_CORE_CONSOLE=y
56253 -# CONFIG_SERIAL_JSM is not set
56254 -# CONFIG_SERIAL_OF_PLATFORM is not set
56255 -CONFIG_UNIX98_PTYS=y
56256 -CONFIG_LEGACY_PTYS=y
56257 -CONFIG_LEGACY_PTY_COUNT=256
56258 -# CONFIG_IPMI_HANDLER is not set
56259 -CONFIG_HW_RANDOM=y
56260 -# CONFIG_NVRAM is not set
56261 -# CONFIG_GEN_RTC is not set
56262 -# CONFIG_R3964 is not set
56263 -# CONFIG_APPLICOM is not set
56264 -# CONFIG_RAW_DRIVER is not set
56265 -# CONFIG_TCG_TPM is not set
56266 -CONFIG_DEVPORT=y
56267 -CONFIG_I2C=y
56268 -CONFIG_I2C_BOARDINFO=y
56269 -CONFIG_I2C_CHARDEV=y
56270 -
56271 -#
56272 -# I2C Algorithms
56273 -#
56274 -# CONFIG_I2C_ALGOBIT is not set
56275 -# CONFIG_I2C_ALGOPCF is not set
56276 -# CONFIG_I2C_ALGOPCA is not set
56277 -
56278 -#
56279 -# I2C Hardware Bus support
56280 -#
56281 -# CONFIG_I2C_ALI1535 is not set
56282 -# CONFIG_I2C_ALI1563 is not set
56283 -# CONFIG_I2C_ALI15X3 is not set
56284 -# CONFIG_I2C_AMD756 is not set
56285 -# CONFIG_I2C_AMD8111 is not set
56286 -# CONFIG_I2C_I801 is not set
56287 -# CONFIG_I2C_I810 is not set
56288 -# CONFIG_I2C_PIIX4 is not set
56289 -CONFIG_I2C_MPC=y
56290 -# CONFIG_I2C_NFORCE2 is not set
56291 -# CONFIG_I2C_OCORES is not set
56292 -# CONFIG_I2C_PARPORT_LIGHT is not set
56293 -# CONFIG_I2C_PROSAVAGE is not set
56294 -# CONFIG_I2C_SAVAGE4 is not set
56295 -# CONFIG_I2C_SIMTEC is not set
56296 -# CONFIG_I2C_SIS5595 is not set
56297 -# CONFIG_I2C_SIS630 is not set
56298 -# CONFIG_I2C_SIS96X is not set
56299 -# CONFIG_I2C_TAOS_EVM is not set
56300 -# CONFIG_I2C_STUB is not set
56301 -# CONFIG_I2C_TINY_USB is not set
56302 -# CONFIG_I2C_VIA is not set
56303 -# CONFIG_I2C_VIAPRO is not set
56304 -# CONFIG_I2C_VOODOO3 is not set
56305 -
56306 -#
56307 -# Miscellaneous I2C Chip support
56308 -#
56309 -# CONFIG_DS1682 is not set
56310 -# CONFIG_SENSORS_EEPROM is not set
56311 -# CONFIG_SENSORS_PCF8574 is not set
56312 -# CONFIG_PCF8575 is not set
56313 -# CONFIG_SENSORS_PCF8591 is not set
56314 -# CONFIG_TPS65010 is not set
56315 -# CONFIG_SENSORS_MAX6875 is not set
56316 -# CONFIG_SENSORS_TSL2550 is not set
56317 -# CONFIG_I2C_DEBUG_CORE is not set
56318 -# CONFIG_I2C_DEBUG_ALGO is not set
56319 -# CONFIG_I2C_DEBUG_BUS is not set
56320 -# CONFIG_I2C_DEBUG_CHIP is not set
56321 -
56322 -#
56323 -# SPI support
56324 -#
56325 -CONFIG_SPI=y
56326 -# CONFIG_SPI_DEBUG is not set
56327 -CONFIG_SPI_MASTER=y
56328 -
56329 -#
56330 -# SPI Master Controller Drivers
56331 -#
56332 -CONFIG_SPI_BITBANG=y
56333 -CONFIG_SPI_MPC83xx=y
56334 -
56335 -#
56336 -# SPI Protocol Masters
56337 -#
56338 -# CONFIG_SPI_AT25 is not set
56339 -# CONFIG_SPI_SPIDEV is not set
56340 -# CONFIG_SPI_TLE62X0 is not set
56341 -# CONFIG_W1 is not set
56342 -# CONFIG_POWER_SUPPLY is not set
56343 -CONFIG_HWMON=y
56344 -# CONFIG_HWMON_VID is not set
56345 -# CONFIG_SENSORS_AD7418 is not set
56346 -# CONFIG_SENSORS_ADM1021 is not set
56347 -# CONFIG_SENSORS_ADM1025 is not set
56348 -# CONFIG_SENSORS_ADM1026 is not set
56349 -# CONFIG_SENSORS_ADM1029 is not set
56350 -# CONFIG_SENSORS_ADM1031 is not set
56351 -# CONFIG_SENSORS_ADM9240 is not set
56352 -# CONFIG_SENSORS_ADT7470 is not set
56353 -# CONFIG_SENSORS_ADT7473 is not set
56354 -# CONFIG_SENSORS_ATXP1 is not set
56355 -# CONFIG_SENSORS_DS1621 is not set
56356 -# CONFIG_SENSORS_I5K_AMB is not set
56357 -# CONFIG_SENSORS_F71805F is not set
56358 -# CONFIG_SENSORS_F71882FG is not set
56359 -# CONFIG_SENSORS_F75375S is not set
56360 -# CONFIG_SENSORS_GL518SM is not set
56361 -# CONFIG_SENSORS_GL520SM is not set
56362 -# CONFIG_SENSORS_IT87 is not set
56363 -# CONFIG_SENSORS_LM63 is not set
56364 -# CONFIG_SENSORS_LM70 is not set
56365 -# CONFIG_SENSORS_LM75 is not set
56366 -# CONFIG_SENSORS_LM77 is not set
56367 -# CONFIG_SENSORS_LM78 is not set
56368 -# CONFIG_SENSORS_LM80 is not set
56369 -# CONFIG_SENSORS_LM83 is not set
56370 -# CONFIG_SENSORS_LM85 is not set
56371 -# CONFIG_SENSORS_LM87 is not set
56372 -# CONFIG_SENSORS_LM90 is not set
56373 -# CONFIG_SENSORS_LM92 is not set
56374 -# CONFIG_SENSORS_LM93 is not set
56375 -# CONFIG_SENSORS_MAX1619 is not set
56376 -# CONFIG_SENSORS_MAX6650 is not set
56377 -# CONFIG_SENSORS_PC87360 is not set
56378 -# CONFIG_SENSORS_PC87427 is not set
56379 -# CONFIG_SENSORS_SIS5595 is not set
56380 -# CONFIG_SENSORS_DME1737 is not set
56381 -# CONFIG_SENSORS_SMSC47M1 is not set
56382 -# CONFIG_SENSORS_SMSC47M192 is not set
56383 -# CONFIG_SENSORS_SMSC47B397 is not set
56384 -# CONFIG_SENSORS_ADS7828 is not set
56385 -# CONFIG_SENSORS_THMC50 is not set
56386 -# CONFIG_SENSORS_VIA686A is not set
56387 -# CONFIG_SENSORS_VT1211 is not set
56388 -# CONFIG_SENSORS_VT8231 is not set
56389 -# CONFIG_SENSORS_W83781D is not set
56390 -# CONFIG_SENSORS_W83791D is not set
56391 -# CONFIG_SENSORS_W83792D is not set
56392 -# CONFIG_SENSORS_W83793 is not set
56393 -# CONFIG_SENSORS_W83L785TS is not set
56394 -# CONFIG_SENSORS_W83L786NG is not set
56395 -# CONFIG_SENSORS_W83627HF is not set
56396 -# CONFIG_SENSORS_W83627EHF is not set
56397 -# CONFIG_HWMON_DEBUG_CHIP is not set
56398 -# CONFIG_THERMAL is not set
56399 -CONFIG_WATCHDOG=y
56400 -# CONFIG_WATCHDOG_NOWAYOUT is not set
56401 -
56402 -#
56403 -# Watchdog Device Drivers
56404 -#
56405 -# CONFIG_SOFT_WATCHDOG is not set
56406 -CONFIG_83xx_WDT=y
56407 -
56408 -#
56409 -# PCI-based Watchdog Cards
56410 -#
56411 -# CONFIG_PCIPCWATCHDOG is not set
56412 -# CONFIG_WDTPCI is not set
56413 -
56414 -#
56415 -# USB-based Watchdog Cards
56416 -#
56417 -# CONFIG_USBPCWATCHDOG is not set
56418 -
56419 -#
56420 -# Sonics Silicon Backplane
56421 -#
56422 -CONFIG_SSB_POSSIBLE=y
56423 -# CONFIG_SSB is not set
56424 -
56425 -#
56426 -# Multifunction device drivers
56427 -#
56428 -# CONFIG_MFD_SM501 is not set
56429 -
56430 -#
56431 -# Multimedia devices
56432 -#
56433 -# CONFIG_VIDEO_DEV is not set
56434 -# CONFIG_DVB_CORE is not set
56435 -CONFIG_DAB=y
56436 -# CONFIG_USB_DABUSB is not set
56437 -
56438 -#
56439 -# Graphics support
56440 -#
56441 -# CONFIG_AGP is not set
56442 -# CONFIG_DRM is not set
56443 -# CONFIG_VGASTATE is not set
56444 -CONFIG_VIDEO_OUTPUT_CONTROL=m
56445 -# CONFIG_FB is not set
56446 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
56447 -
56448 -#
56449 -# Display device support
56450 -#
56451 -# CONFIG_DISPLAY_SUPPORT is not set
56452 -
56453 -#
56454 -# Sound
56455 -#
56456 -# CONFIG_SOUND is not set
56457 -CONFIG_HID_SUPPORT=y
56458 -CONFIG_HID=y
56459 -# CONFIG_HID_DEBUG is not set
56460 -# CONFIG_HIDRAW is not set
56461 -
56462 -#
56463 -# USB Input Devices
56464 -#
56465 -# CONFIG_USB_HID is not set
56466 -
56467 -#
56468 -# USB HID Boot Protocol drivers
56469 -#
56470 -# CONFIG_USB_KBD is not set
56471 -# CONFIG_USB_MOUSE is not set
56472 -CONFIG_USB_SUPPORT=y
56473 -CONFIG_USB_ARCH_HAS_HCD=y
56474 -CONFIG_USB_ARCH_HAS_OHCI=y
56475 -CONFIG_USB_ARCH_HAS_EHCI=y
56476 -CONFIG_USB=y
56477 -# CONFIG_USB_DEBUG is not set
56478 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
56479 -
56480 -#
56481 -# Miscellaneous USB options
56482 -#
56483 -CONFIG_USB_DEVICEFS=y
56484 -CONFIG_USB_DEVICE_CLASS=y
56485 -# CONFIG_USB_DYNAMIC_MINORS is not set
56486 -# CONFIG_USB_OTG is not set
56487 -
56488 -#
56489 -# USB Host Controller Drivers
56490 -#
56491 -CONFIG_USB_EHCI_HCD=y
56492 -CONFIG_USB_EHCI_ROOT_HUB_TT=y
56493 -# CONFIG_USB_EHCI_TT_NEWSCHED is not set
56494 -CONFIG_USB_EHCI_FSL=y
56495 -CONFIG_USB_EHCI_HCD_PPC_OF=y
56496 -# CONFIG_USB_ISP116X_HCD is not set
56497 -CONFIG_USB_OHCI_HCD=y
56498 -CONFIG_USB_OHCI_HCD_PPC_OF=y
56499 -CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
56500 -# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set
56501 -CONFIG_USB_OHCI_HCD_PCI=y
56502 -CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
56503 -CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
56504 -CONFIG_USB_OHCI_LITTLE_ENDIAN=y
56505 -CONFIG_USB_UHCI_HCD=y
56506 -# CONFIG_USB_SL811_HCD is not set
56507 -# CONFIG_USB_R8A66597_HCD is not set
56508 -
56509 -#
56510 -# USB Device Class drivers
56511 -#
56512 -# CONFIG_USB_ACM is not set
56513 -# CONFIG_USB_PRINTER is not set
56514 -
56515 -#
56516 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
56517 -#
56518 -
56519 -#
56520 -# may also be needed; see USB_STORAGE Help for more information
56521 -#
56522 -CONFIG_USB_STORAGE=y
56523 -# CONFIG_USB_STORAGE_DEBUG is not set
56524 -# CONFIG_USB_STORAGE_DATAFAB is not set
56525 -# CONFIG_USB_STORAGE_FREECOM is not set
56526 -# CONFIG_USB_STORAGE_ISD200 is not set
56527 -# CONFIG_USB_STORAGE_DPCM is not set
56528 -# CONFIG_USB_STORAGE_USBAT is not set
56529 -# CONFIG_USB_STORAGE_SDDR09 is not set
56530 -# CONFIG_USB_STORAGE_SDDR55 is not set
56531 -# CONFIG_USB_STORAGE_JUMPSHOT is not set
56532 -# CONFIG_USB_STORAGE_ALAUDA is not set
56533 -# CONFIG_USB_STORAGE_KARMA is not set
56534 -# CONFIG_USB_LIBUSUAL is not set
56535 -
56536 -#
56537 -# USB Imaging devices
56538 -#
56539 -# CONFIG_USB_MDC800 is not set
56540 -# CONFIG_USB_MICROTEK is not set
56541 -CONFIG_USB_MON=y
56542 -
56543 -#
56544 -# USB port drivers
56545 -#
56546 -# CONFIG_USB_SERIAL is not set
56547 -
56548 -#
56549 -# USB Miscellaneous drivers
56550 -#
56551 -# CONFIG_USB_EMI62 is not set
56552 -# CONFIG_USB_EMI26 is not set
56553 -# CONFIG_USB_ADUTUX is not set
56554 -# CONFIG_USB_AUERSWALD is not set
56555 -# CONFIG_USB_RIO500 is not set
56556 -# CONFIG_USB_LEGOTOWER is not set
56557 -# CONFIG_USB_LCD is not set
56558 -# CONFIG_USB_BERRY_CHARGE is not set
56559 -# CONFIG_USB_LED is not set
56560 -# CONFIG_USB_CYPRESS_CY7C63 is not set
56561 -# CONFIG_USB_CYTHERM is not set
56562 -# CONFIG_USB_PHIDGET is not set
56563 -# CONFIG_USB_IDMOUSE is not set
56564 -# CONFIG_USB_FTDI_ELAN is not set
56565 -# CONFIG_USB_APPLEDISPLAY is not set
56566 -# CONFIG_USB_SISUSBVGA is not set
56567 -# CONFIG_USB_LD is not set
56568 -# CONFIG_USB_TRANCEVIBRATOR is not set
56569 -# CONFIG_USB_IOWARRIOR is not set
56570 -# CONFIG_USB_TEST is not set
56571 -CONFIG_USB_GADGET=y
56572 -# CONFIG_USB_GADGET_DEBUG is not set
56573 -# CONFIG_USB_GADGET_DEBUG_FILES is not set
56574 -CONFIG_USB_GADGET_SELECTED=y
56575 -# CONFIG_USB_GADGET_AMD5536UDC is not set
56576 -# CONFIG_USB_GADGET_ATMEL_USBA is not set
56577 -# CONFIG_USB_GADGET_FSL_USB2 is not set
56578 -CONFIG_USB_GADGET_NET2280=y
56579 -CONFIG_USB_NET2280=y
56580 -# CONFIG_USB_GADGET_PXA2XX is not set
56581 -# CONFIG_USB_GADGET_M66592 is not set
56582 -# CONFIG_USB_GADGET_GOKU is not set
56583 -# CONFIG_USB_GADGET_LH7A40X is not set
56584 -# CONFIG_USB_GADGET_OMAP is not set
56585 -# CONFIG_USB_GADGET_S3C2410 is not set
56586 -# CONFIG_USB_GADGET_AT91 is not set
56587 -# CONFIG_USB_GADGET_DUMMY_HCD is not set
56588 -CONFIG_USB_GADGET_DUALSPEED=y
56589 -# CONFIG_USB_ZERO is not set
56590 -CONFIG_USB_ETH=y
56591 -CONFIG_USB_ETH_RNDIS=y
56592 -# CONFIG_USB_GADGETFS is not set
56593 -# CONFIG_USB_FILE_STORAGE is not set
56594 -# CONFIG_USB_G_SERIAL is not set
56595 -# CONFIG_USB_MIDI_GADGET is not set
56596 -# CONFIG_USB_G_PRINTER is not set
56597 -# CONFIG_MMC is not set
56598 -# CONFIG_MEMSTICK is not set
56599 -# CONFIG_NEW_LEDS is not set
56600 -# CONFIG_INFINIBAND is not set
56601 -# CONFIG_EDAC is not set
56602 -CONFIG_RTC_LIB=y
56603 -CONFIG_RTC_CLASS=y
56604 -CONFIG_RTC_HCTOSYS=y
56605 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
56606 -# CONFIG_RTC_DEBUG is not set
56607 -
56608 -#
56609 -# RTC interfaces
56610 -#
56611 -CONFIG_RTC_INTF_SYSFS=y
56612 -CONFIG_RTC_INTF_PROC=y
56613 -CONFIG_RTC_INTF_DEV=y
56614 -CONFIG_RTC_INTF_DEV_UIE_EMUL=y
56615 -# CONFIG_RTC_DRV_TEST is not set
56616 -
56617 -#
56618 -# I2C RTC drivers
56619 -#
56620 -CONFIG_RTC_DRV_DS1307=y
56621 -# CONFIG_RTC_DRV_DS1374 is not set
56622 -# CONFIG_RTC_DRV_DS1672 is not set
56623 -# CONFIG_RTC_DRV_MAX6900 is not set
56624 -# CONFIG_RTC_DRV_RS5C372 is not set
56625 -# CONFIG_RTC_DRV_ISL1208 is not set
56626 -# CONFIG_RTC_DRV_X1205 is not set
56627 -# CONFIG_RTC_DRV_PCF8563 is not set
56628 -# CONFIG_RTC_DRV_PCF8583 is not set
56629 -# CONFIG_RTC_DRV_M41T80 is not set
56630 -# CONFIG_RTC_DRV_S35390A is not set
56631 -
56632 -#
56633 -# SPI RTC drivers
56634 -#
56635 -# CONFIG_RTC_DRV_MAX6902 is not set
56636 -# CONFIG_RTC_DRV_R9701 is not set
56637 -# CONFIG_RTC_DRV_RS5C348 is not set
56638 -
56639 -#
56640 -# Platform RTC drivers
56641 -#
56642 -# CONFIG_RTC_DRV_CMOS is not set
56643 -# CONFIG_RTC_DRV_DS1511 is not set
56644 -# CONFIG_RTC_DRV_DS1553 is not set
56645 -# CONFIG_RTC_DRV_DS1742 is not set
56646 -# CONFIG_RTC_DRV_STK17TA8 is not set
56647 -# CONFIG_RTC_DRV_M48T86 is not set
56648 -# CONFIG_RTC_DRV_M48T59 is not set
56649 -# CONFIG_RTC_DRV_V3020 is not set
56650 -
56651 -#
56652 -# on-CPU RTC drivers
56653 -#
56654 -# CONFIG_DMADEVICES is not set
56655 -
56656 -#
56657 -# Userspace I/O
56658 -#
56659 -# CONFIG_UIO is not set
56660 -
56661 -#
56662 -# File systems
56663 -#
56664 -CONFIG_EXT2_FS=y
56665 -# CONFIG_EXT2_FS_XATTR is not set
56666 -# CONFIG_EXT2_FS_XIP is not set
56667 -CONFIG_EXT3_FS=y
56668 -CONFIG_EXT3_FS_XATTR=y
56669 -# CONFIG_EXT3_FS_POSIX_ACL is not set
56670 -# CONFIG_EXT3_FS_SECURITY is not set
56671 -# CONFIG_EXT4DEV_FS is not set
56672 -CONFIG_JBD=y
56673 -CONFIG_FS_MBCACHE=y
56674 -# CONFIG_REISERFS_FS is not set
56675 -# CONFIG_JFS_FS is not set
56676 -# CONFIG_FS_POSIX_ACL is not set
56677 -# CONFIG_XFS_FS is not set
56678 -# CONFIG_GFS2_FS is not set
56679 -# CONFIG_OCFS2_FS is not set
56680 -CONFIG_DNOTIFY=y
56681 -CONFIG_INOTIFY=y
56682 -CONFIG_INOTIFY_USER=y
56683 -# CONFIG_QUOTA is not set
56684 -# CONFIG_AUTOFS_FS is not set
56685 -# CONFIG_AUTOFS4_FS is not set
56686 -# CONFIG_FUSE_FS is not set
56687 -
56688 -#
56689 -# CD-ROM/DVD Filesystems
56690 -#
56691 -# CONFIG_ISO9660_FS is not set
56692 -# CONFIG_UDF_FS is not set
56693 -
56694 -#
56695 -# DOS/FAT/NT Filesystems
56696 -#
56697 -# CONFIG_MSDOS_FS is not set
56698 -# CONFIG_VFAT_FS is not set
56699 -# CONFIG_NTFS_FS is not set
56700 -
56701 -#
56702 -# Pseudo filesystems
56703 -#
56704 -CONFIG_PROC_FS=y
56705 -CONFIG_PROC_KCORE=y
56706 -CONFIG_PROC_SYSCTL=y
56707 -CONFIG_SYSFS=y
56708 -CONFIG_TMPFS=y
56709 -# CONFIG_TMPFS_POSIX_ACL is not set
56710 -# CONFIG_HUGETLB_PAGE is not set
56711 -# CONFIG_CONFIGFS_FS is not set
56712 -
56713 -#
56714 -# Miscellaneous filesystems
56715 -#
56716 -# CONFIG_ADFS_FS is not set
56717 -# CONFIG_AFFS_FS is not set
56718 -# CONFIG_HFS_FS is not set
56719 -# CONFIG_HFSPLUS_FS is not set
56720 -# CONFIG_BEFS_FS is not set
56721 -# CONFIG_BFS_FS is not set
56722 -# CONFIG_EFS_FS is not set
56723 -CONFIG_JFFS2_FS=y
56724 -CONFIG_JFFS2_FS_DEBUG=0
56725 -CONFIG_JFFS2_FS_WRITEBUFFER=y
56726 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
56727 -# CONFIG_JFFS2_SUMMARY is not set
56728 -# CONFIG_JFFS2_FS_XATTR is not set
56729 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
56730 -CONFIG_JFFS2_ZLIB=y
56731 -# CONFIG_JFFS2_LZO is not set
56732 -CONFIG_JFFS2_RTIME=y
56733 -# CONFIG_JFFS2_RUBIN is not set
56734 -# CONFIG_CRAMFS is not set
56735 -# CONFIG_VXFS_FS is not set
56736 -# CONFIG_MINIX_FS is not set
56737 -# CONFIG_HPFS_FS is not set
56738 -# CONFIG_QNX4FS_FS is not set
56739 -# CONFIG_ROMFS_FS is not set
56740 -# CONFIG_SYSV_FS is not set
56741 -# CONFIG_UFS_FS is not set
56742 -CONFIG_NETWORK_FILESYSTEMS=y
56743 -CONFIG_NFS_FS=y
56744 -CONFIG_NFS_V3=y
56745 -# CONFIG_NFS_V3_ACL is not set
56746 -CONFIG_NFS_V4=y
56747 -# CONFIG_NFS_DIRECTIO is not set
56748 -# CONFIG_NFSD is not set
56749 -CONFIG_ROOT_NFS=y
56750 -CONFIG_LOCKD=y
56751 -CONFIG_LOCKD_V4=y
56752 -CONFIG_NFS_COMMON=y
56753 -CONFIG_SUNRPC=y
56754 -CONFIG_SUNRPC_GSS=y
56755 -# CONFIG_SUNRPC_BIND34 is not set
56756 -CONFIG_RPCSEC_GSS_KRB5=y
56757 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
56758 -# CONFIG_SMB_FS is not set
56759 -# CONFIG_CIFS is not set
56760 -# CONFIG_NCP_FS is not set
56761 -# CONFIG_CODA_FS is not set
56762 -# CONFIG_AFS_FS is not set
56763 -
56764 -#
56765 -# Partition Types
56766 -#
56767 -CONFIG_PARTITION_ADVANCED=y
56768 -# CONFIG_ACORN_PARTITION is not set
56769 -# CONFIG_OSF_PARTITION is not set
56770 -# CONFIG_AMIGA_PARTITION is not set
56771 -# CONFIG_ATARI_PARTITION is not set
56772 -# CONFIG_MAC_PARTITION is not set
56773 -CONFIG_MSDOS_PARTITION=y
56774 -# CONFIG_BSD_DISKLABEL is not set
56775 -# CONFIG_MINIX_SUBPARTITION is not set
56776 -# CONFIG_SOLARIS_X86_PARTITION is not set
56777 -# CONFIG_UNIXWARE_DISKLABEL is not set
56778 -# CONFIG_LDM_PARTITION is not set
56779 -# CONFIG_SGI_PARTITION is not set
56780 -# CONFIG_ULTRIX_PARTITION is not set
56781 -# CONFIG_SUN_PARTITION is not set
56782 -# CONFIG_KARMA_PARTITION is not set
56783 -# CONFIG_EFI_PARTITION is not set
56784 -# CONFIG_SYSV68_PARTITION is not set
56785 -# CONFIG_NLS is not set
56786 -# CONFIG_DLM is not set
56787 -
56788 -#
56789 -# Library routines
56790 -#
56791 -CONFIG_BITREVERSE=y
56792 -# CONFIG_CRC_CCITT is not set
56793 -# CONFIG_CRC16 is not set
56794 -# CONFIG_CRC_ITU_T is not set
56795 -CONFIG_CRC32=y
56796 -# CONFIG_CRC7 is not set
56797 -# CONFIG_LIBCRC32C is not set
56798 -CONFIG_ZLIB_INFLATE=y
56799 -CONFIG_ZLIB_DEFLATE=y
56800 -CONFIG_PLIST=y
56801 -CONFIG_HAS_IOMEM=y
56802 -CONFIG_HAS_IOPORT=y
56803 -CONFIG_HAS_DMA=y
56804 -
56805 -#
56806 -# Kernel hacking
56807 -#
56808 -# CONFIG_PRINTK_TIME is not set
56809 -CONFIG_ENABLE_WARN_DEPRECATED=y
56810 -CONFIG_ENABLE_MUST_CHECK=y
56811 -# CONFIG_MAGIC_SYSRQ is not set
56812 -# CONFIG_UNUSED_SYMBOLS is not set
56813 -# CONFIG_DEBUG_FS is not set
56814 -# CONFIG_HEADERS_CHECK is not set
56815 -CONFIG_DEBUG_KERNEL=y
56816 -# CONFIG_DEBUG_SHIRQ is not set
56817 -CONFIG_DETECT_SOFTLOCKUP=y
56818 -CONFIG_SCHED_DEBUG=y
56819 -# CONFIG_SCHEDSTATS is not set
56820 -# CONFIG_TIMER_STATS is not set
56821 -# CONFIG_SLUB_DEBUG_ON is not set
56822 -# CONFIG_SLUB_STATS is not set
56823 -# CONFIG_DEBUG_RT_MUTEXES is not set
56824 -# CONFIG_RT_MUTEX_TESTER is not set
56825 -# CONFIG_DEBUG_SPINLOCK is not set
56826 -# CONFIG_DEBUG_MUTEXES is not set
56827 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
56828 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
56829 -# CONFIG_DEBUG_KOBJECT is not set
56830 -# CONFIG_DEBUG_BUGVERBOSE is not set
56831 -# CONFIG_DEBUG_INFO is not set
56832 -# CONFIG_DEBUG_VM is not set
56833 -# CONFIG_DEBUG_LIST is not set
56834 -# CONFIG_DEBUG_SG is not set
56835 -# CONFIG_BOOT_PRINTK_DELAY is not set
56836 -# CONFIG_RCU_TORTURE_TEST is not set
56837 -# CONFIG_BACKTRACE_SELF_TEST is not set
56838 -# CONFIG_FAULT_INJECTION is not set
56839 -# CONFIG_SAMPLES is not set
56840 -# CONFIG_DEBUG_STACKOVERFLOW is not set
56841 -# CONFIG_DEBUG_STACK_USAGE is not set
56842 -# CONFIG_DEBUG_PAGEALLOC is not set
56843 -# CONFIG_DEBUGGER is not set
56844 -# CONFIG_BDI_SWITCH is not set
56845 -# CONFIG_PPC_EARLY_DEBUG is not set
56846 -
56847 -#
56848 -# Security options
56849 -#
56850 -# CONFIG_KEYS is not set
56851 -# CONFIG_SECURITY is not set
56852 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
56853 -CONFIG_CRYPTO=y
56854 -CONFIG_CRYPTO_ALGAPI=y
56855 -CONFIG_CRYPTO_BLKCIPHER=y
56856 -# CONFIG_CRYPTO_SEQIV is not set
56857 -CONFIG_CRYPTO_MANAGER=y
56858 -# CONFIG_CRYPTO_HMAC is not set
56859 -# CONFIG_CRYPTO_XCBC is not set
56860 -# CONFIG_CRYPTO_NULL is not set
56861 -# CONFIG_CRYPTO_MD4 is not set
56862 -CONFIG_CRYPTO_MD5=y
56863 -# CONFIG_CRYPTO_SHA1 is not set
56864 -# CONFIG_CRYPTO_SHA256 is not set
56865 -# CONFIG_CRYPTO_SHA512 is not set
56866 -# CONFIG_CRYPTO_WP512 is not set
56867 -# CONFIG_CRYPTO_TGR192 is not set
56868 -# CONFIG_CRYPTO_GF128MUL is not set
56869 -# CONFIG_CRYPTO_ECB is not set
56870 -CONFIG_CRYPTO_CBC=y
56871 -CONFIG_CRYPTO_PCBC=m
56872 -# CONFIG_CRYPTO_LRW is not set
56873 -# CONFIG_CRYPTO_XTS is not set
56874 -# CONFIG_CRYPTO_CTR is not set
56875 -# CONFIG_CRYPTO_GCM is not set
56876 -# CONFIG_CRYPTO_CCM is not set
56877 -# CONFIG_CRYPTO_CRYPTD is not set
56878 -CONFIG_CRYPTO_DES=y
56879 -# CONFIG_CRYPTO_FCRYPT is not set
56880 -# CONFIG_CRYPTO_BLOWFISH is not set
56881 -# CONFIG_CRYPTO_TWOFISH is not set
56882 -# CONFIG_CRYPTO_SERPENT is not set
56883 -# CONFIG_CRYPTO_AES is not set
56884 -# CONFIG_CRYPTO_CAST5 is not set
56885 -# CONFIG_CRYPTO_CAST6 is not set
56886 -# CONFIG_CRYPTO_TEA is not set
56887 -# CONFIG_CRYPTO_ARC4 is not set
56888 -# CONFIG_CRYPTO_KHAZAD is not set
56889 -# CONFIG_CRYPTO_ANUBIS is not set
56890 -# CONFIG_CRYPTO_SEED is not set
56891 -# CONFIG_CRYPTO_SALSA20 is not set
56892 -# CONFIG_CRYPTO_DEFLATE is not set
56893 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
56894 -# CONFIG_CRYPTO_CRC32C is not set
56895 -# CONFIG_CRYPTO_CAMELLIA is not set
56896 -# CONFIG_CRYPTO_TEST is not set
56897 -# CONFIG_CRYPTO_AUTHENC is not set
56898 -# CONFIG_CRYPTO_LZO is not set
56899 -CONFIG_CRYPTO_HW=y
56900 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
56901 -# CONFIG_PPC_CLOCK is not set
56902 Index: linux-2.6.25.4/arch/powerpc/configs/mpc832x_mds_defconfig
56903 ===================================================================
56904 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc832x_mds_defconfig
56905 +++ /dev/null
56906 @@ -1,1081 +0,0 @@
56907 -#
56908 -# Automatically generated make config: don't edit
56909 -# Linux kernel version: 2.6.25-rc7
56910 -# Mon Mar 31 11:36:51 2008
56911 -#
56912 -# CONFIG_PPC64 is not set
56913 -
56914 -#
56915 -# Processor support
56916 -#
56917 -CONFIG_6xx=y
56918 -# CONFIG_PPC_85xx is not set
56919 -# CONFIG_PPC_8xx is not set
56920 -# CONFIG_40x is not set
56921 -# CONFIG_44x is not set
56922 -# CONFIG_E200 is not set
56923 -CONFIG_PPC_FPU=y
56924 -# CONFIG_FSL_EMB_PERFMON is not set
56925 -CONFIG_PPC_STD_MMU=y
56926 -CONFIG_PPC_STD_MMU_32=y
56927 -# CONFIG_PPC_MM_SLICES is not set
56928 -# CONFIG_SMP is not set
56929 -CONFIG_PPC32=y
56930 -CONFIG_WORD_SIZE=32
56931 -CONFIG_PPC_MERGE=y
56932 -CONFIG_MMU=y
56933 -CONFIG_GENERIC_CMOS_UPDATE=y
56934 -CONFIG_GENERIC_TIME=y
56935 -CONFIG_GENERIC_TIME_VSYSCALL=y
56936 -CONFIG_GENERIC_CLOCKEVENTS=y
56937 -CONFIG_GENERIC_HARDIRQS=y
56938 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
56939 -CONFIG_IRQ_PER_CPU=y
56940 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
56941 -CONFIG_ARCH_HAS_ILOG2_U32=y
56942 -CONFIG_GENERIC_HWEIGHT=y
56943 -CONFIG_GENERIC_CALIBRATE_DELAY=y
56944 -CONFIG_GENERIC_FIND_NEXT_BIT=y
56945 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
56946 -CONFIG_PPC=y
56947 -CONFIG_EARLY_PRINTK=y
56948 -CONFIG_GENERIC_NVRAM=y
56949 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
56950 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
56951 -CONFIG_PPC_OF=y
56952 -CONFIG_OF=y
56953 -CONFIG_PPC_UDBG_16550=y
56954 -# CONFIG_GENERIC_TBSYNC is not set
56955 -CONFIG_AUDIT_ARCH=y
56956 -CONFIG_GENERIC_BUG=y
56957 -CONFIG_DEFAULT_UIMAGE=y
56958 -# CONFIG_PPC_DCR_NATIVE is not set
56959 -# CONFIG_PPC_DCR_MMIO is not set
56960 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
56961 -
56962 -#
56963 -# General setup
56964 -#
56965 -CONFIG_EXPERIMENTAL=y
56966 -CONFIG_BROKEN_ON_SMP=y
56967 -CONFIG_INIT_ENV_ARG_LIMIT=32
56968 -CONFIG_LOCALVERSION=""
56969 -CONFIG_LOCALVERSION_AUTO=y
56970 -CONFIG_SWAP=y
56971 -CONFIG_SYSVIPC=y
56972 -CONFIG_SYSVIPC_SYSCTL=y
56973 -# CONFIG_POSIX_MQUEUE is not set
56974 -# CONFIG_BSD_PROCESS_ACCT is not set
56975 -# CONFIG_TASKSTATS is not set
56976 -# CONFIG_AUDIT is not set
56977 -# CONFIG_IKCONFIG is not set
56978 -CONFIG_LOG_BUF_SHIFT=14
56979 -# CONFIG_CGROUPS is not set
56980 -CONFIG_GROUP_SCHED=y
56981 -# CONFIG_FAIR_GROUP_SCHED is not set
56982 -# CONFIG_RT_GROUP_SCHED is not set
56983 -CONFIG_USER_SCHED=y
56984 -# CONFIG_CGROUP_SCHED is not set
56985 -CONFIG_SYSFS_DEPRECATED=y
56986 -CONFIG_SYSFS_DEPRECATED_V2=y
56987 -# CONFIG_RELAY is not set
56988 -# CONFIG_NAMESPACES is not set
56989 -CONFIG_BLK_DEV_INITRD=y
56990 -CONFIG_INITRAMFS_SOURCE=""
56991 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
56992 -CONFIG_SYSCTL=y
56993 -CONFIG_EMBEDDED=y
56994 -CONFIG_SYSCTL_SYSCALL=y
56995 -# CONFIG_KALLSYMS is not set
56996 -CONFIG_HOTPLUG=y
56997 -CONFIG_PRINTK=y
56998 -CONFIG_BUG=y
56999 -CONFIG_ELF_CORE=y
57000 -CONFIG_COMPAT_BRK=y
57001 -CONFIG_BASE_FULL=y
57002 -CONFIG_FUTEX=y
57003 -CONFIG_ANON_INODES=y
57004 -# CONFIG_EPOLL is not set
57005 -CONFIG_SIGNALFD=y
57006 -CONFIG_TIMERFD=y
57007 -CONFIG_EVENTFD=y
57008 -CONFIG_SHMEM=y
57009 -CONFIG_VM_EVENT_COUNTERS=y
57010 -CONFIG_SLUB_DEBUG=y
57011 -# CONFIG_SLAB is not set
57012 -CONFIG_SLUB=y
57013 -# CONFIG_SLOB is not set
57014 -# CONFIG_PROFILING is not set
57015 -# CONFIG_MARKERS is not set
57016 -CONFIG_HAVE_OPROFILE=y
57017 -CONFIG_HAVE_KPROBES=y
57018 -CONFIG_HAVE_KRETPROBES=y
57019 -CONFIG_PROC_PAGE_MONITOR=y
57020 -CONFIG_SLABINFO=y
57021 -CONFIG_RT_MUTEXES=y
57022 -# CONFIG_TINY_SHMEM is not set
57023 -CONFIG_BASE_SMALL=0
57024 -CONFIG_MODULES=y
57025 -CONFIG_MODULE_UNLOAD=y
57026 -# CONFIG_MODULE_FORCE_UNLOAD is not set
57027 -# CONFIG_MODVERSIONS is not set
57028 -# CONFIG_MODULE_SRCVERSION_ALL is not set
57029 -# CONFIG_KMOD is not set
57030 -CONFIG_BLOCK=y
57031 -# CONFIG_LBD is not set
57032 -# CONFIG_BLK_DEV_IO_TRACE is not set
57033 -# CONFIG_LSF is not set
57034 -# CONFIG_BLK_DEV_BSG is not set
57035 -
57036 -#
57037 -# IO Schedulers
57038 -#
57039 -CONFIG_IOSCHED_NOOP=y
57040 -CONFIG_IOSCHED_AS=y
57041 -CONFIG_IOSCHED_DEADLINE=y
57042 -CONFIG_IOSCHED_CFQ=y
57043 -CONFIG_DEFAULT_AS=y
57044 -# CONFIG_DEFAULT_DEADLINE is not set
57045 -# CONFIG_DEFAULT_CFQ is not set
57046 -# CONFIG_DEFAULT_NOOP is not set
57047 -CONFIG_DEFAULT_IOSCHED="anticipatory"
57048 -CONFIG_CLASSIC_RCU=y
57049 -
57050 -#
57051 -# Platform support
57052 -#
57053 -# CONFIG_PPC_MULTIPLATFORM is not set
57054 -# CONFIG_PPC_82xx is not set
57055 -CONFIG_PPC_83xx=y
57056 -# CONFIG_PPC_86xx is not set
57057 -# CONFIG_PPC_MPC512x is not set
57058 -# CONFIG_PPC_MPC5121 is not set
57059 -# CONFIG_PPC_CELL is not set
57060 -# CONFIG_PPC_CELL_NATIVE is not set
57061 -# CONFIG_PQ2ADS is not set
57062 -CONFIG_MPC83xx=y
57063 -# CONFIG_MPC831x_RDB is not set
57064 -CONFIG_MPC832x_MDS=y
57065 -# CONFIG_MPC832x_RDB is not set
57066 -# CONFIG_MPC834x_MDS is not set
57067 -# CONFIG_MPC834x_ITX is not set
57068 -# CONFIG_MPC836x_MDS is not set
57069 -# CONFIG_MPC837x_MDS is not set
57070 -# CONFIG_MPC837x_RDB is not set
57071 -# CONFIG_SBC834x is not set
57072 -CONFIG_PPC_MPC832x=y
57073 -CONFIG_IPIC=y
57074 -# CONFIG_MPIC is not set
57075 -# CONFIG_MPIC_WEIRD is not set
57076 -# CONFIG_PPC_I8259 is not set
57077 -# CONFIG_PPC_RTAS is not set
57078 -# CONFIG_MMIO_NVRAM is not set
57079 -# CONFIG_PPC_MPC106 is not set
57080 -# CONFIG_PPC_970_NAP is not set
57081 -# CONFIG_PPC_INDIRECT_IO is not set
57082 -# CONFIG_GENERIC_IOMAP is not set
57083 -# CONFIG_CPU_FREQ is not set
57084 -CONFIG_QUICC_ENGINE=y
57085 -# CONFIG_FSL_ULI1575 is not set
57086 -
57087 -#
57088 -# Kernel options
57089 -#
57090 -# CONFIG_HIGHMEM is not set
57091 -CONFIG_TICK_ONESHOT=y
57092 -CONFIG_NO_HZ=y
57093 -CONFIG_HIGH_RES_TIMERS=y
57094 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
57095 -# CONFIG_HZ_100 is not set
57096 -CONFIG_HZ_250=y
57097 -# CONFIG_HZ_300 is not set
57098 -# CONFIG_HZ_1000 is not set
57099 -CONFIG_HZ=250
57100 -# CONFIG_SCHED_HRTICK is not set
57101 -CONFIG_PREEMPT_NONE=y
57102 -# CONFIG_PREEMPT_VOLUNTARY is not set
57103 -# CONFIG_PREEMPT is not set
57104 -CONFIG_BINFMT_ELF=y
57105 -# CONFIG_BINFMT_MISC is not set
57106 -CONFIG_MATH_EMULATION=y
57107 -# CONFIG_IOMMU_HELPER is not set
57108 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
57109 -CONFIG_ARCH_HAS_WALK_MEMORY=y
57110 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
57111 -CONFIG_ARCH_FLATMEM_ENABLE=y
57112 -CONFIG_ARCH_POPULATES_NODE_MAP=y
57113 -CONFIG_SELECT_MEMORY_MODEL=y
57114 -CONFIG_FLATMEM_MANUAL=y
57115 -# CONFIG_DISCONTIGMEM_MANUAL is not set
57116 -# CONFIG_SPARSEMEM_MANUAL is not set
57117 -CONFIG_FLATMEM=y
57118 -CONFIG_FLAT_NODE_MEM_MAP=y
57119 -# CONFIG_SPARSEMEM_STATIC is not set
57120 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
57121 -CONFIG_SPLIT_PTLOCK_CPUS=4
57122 -# CONFIG_RESOURCES_64BIT is not set
57123 -CONFIG_ZONE_DMA_FLAG=1
57124 -CONFIG_BOUNCE=y
57125 -CONFIG_VIRT_TO_BUS=y
57126 -CONFIG_PROC_DEVICETREE=y
57127 -# CONFIG_CMDLINE_BOOL is not set
57128 -# CONFIG_PM is not set
57129 -CONFIG_SECCOMP=y
57130 -CONFIG_ISA_DMA_API=y
57131 -
57132 -#
57133 -# Bus options
57134 -#
57135 -CONFIG_ZONE_DMA=y
57136 -CONFIG_GENERIC_ISA_DMA=y
57137 -CONFIG_PPC_INDIRECT_PCI=y
57138 -CONFIG_FSL_SOC=y
57139 -CONFIG_PCI=y
57140 -CONFIG_PCI_DOMAINS=y
57141 -CONFIG_PCI_SYSCALL=y
57142 -# CONFIG_PCIEPORTBUS is not set
57143 -CONFIG_ARCH_SUPPORTS_MSI=y
57144 -# CONFIG_PCI_MSI is not set
57145 -CONFIG_PCI_LEGACY=y
57146 -# CONFIG_PCCARD is not set
57147 -# CONFIG_HOTPLUG_PCI is not set
57148 -
57149 -#
57150 -# Advanced setup
57151 -#
57152 -# CONFIG_ADVANCED_OPTIONS is not set
57153 -
57154 -#
57155 -# Default settings for advanced configuration options are used
57156 -#
57157 -CONFIG_HIGHMEM_START=0xfe000000
57158 -CONFIG_LOWMEM_SIZE=0x30000000
57159 -CONFIG_KERNEL_START=0xc0000000
57160 -CONFIG_TASK_SIZE=0xc0000000
57161 -CONFIG_BOOT_LOAD=0x00800000
57162 -
57163 -#
57164 -# Networking
57165 -#
57166 -CONFIG_NET=y
57167 -
57168 -#
57169 -# Networking options
57170 -#
57171 -CONFIG_PACKET=y
57172 -# CONFIG_PACKET_MMAP is not set
57173 -CONFIG_UNIX=y
57174 -CONFIG_XFRM=y
57175 -# CONFIG_XFRM_USER is not set
57176 -# CONFIG_XFRM_SUB_POLICY is not set
57177 -# CONFIG_XFRM_MIGRATE is not set
57178 -# CONFIG_XFRM_STATISTICS is not set
57179 -# CONFIG_NET_KEY is not set
57180 -CONFIG_INET=y
57181 -CONFIG_IP_MULTICAST=y
57182 -# CONFIG_IP_ADVANCED_ROUTER is not set
57183 -CONFIG_IP_FIB_HASH=y
57184 -CONFIG_IP_PNP=y
57185 -CONFIG_IP_PNP_DHCP=y
57186 -CONFIG_IP_PNP_BOOTP=y
57187 -# CONFIG_IP_PNP_RARP is not set
57188 -# CONFIG_NET_IPIP is not set
57189 -# CONFIG_NET_IPGRE is not set
57190 -# CONFIG_IP_MROUTE is not set
57191 -# CONFIG_ARPD is not set
57192 -CONFIG_SYN_COOKIES=y
57193 -# CONFIG_INET_AH is not set
57194 -# CONFIG_INET_ESP is not set
57195 -# CONFIG_INET_IPCOMP is not set
57196 -# CONFIG_INET_XFRM_TUNNEL is not set
57197 -# CONFIG_INET_TUNNEL is not set
57198 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
57199 -CONFIG_INET_XFRM_MODE_TUNNEL=y
57200 -CONFIG_INET_XFRM_MODE_BEET=y
57201 -# CONFIG_INET_LRO is not set
57202 -CONFIG_INET_DIAG=y
57203 -CONFIG_INET_TCP_DIAG=y
57204 -# CONFIG_TCP_CONG_ADVANCED is not set
57205 -CONFIG_TCP_CONG_CUBIC=y
57206 -CONFIG_DEFAULT_TCP_CONG="cubic"
57207 -# CONFIG_TCP_MD5SIG is not set
57208 -# CONFIG_IPV6 is not set
57209 -# CONFIG_INET6_XFRM_TUNNEL is not set
57210 -# CONFIG_INET6_TUNNEL is not set
57211 -# CONFIG_NETWORK_SECMARK is not set
57212 -# CONFIG_NETFILTER is not set
57213 -# CONFIG_IP_DCCP is not set
57214 -# CONFIG_IP_SCTP is not set
57215 -# CONFIG_TIPC is not set
57216 -# CONFIG_ATM is not set
57217 -# CONFIG_BRIDGE is not set
57218 -# CONFIG_VLAN_8021Q is not set
57219 -# CONFIG_DECNET is not set
57220 -# CONFIG_LLC2 is not set
57221 -# CONFIG_IPX is not set
57222 -# CONFIG_ATALK is not set
57223 -# CONFIG_X25 is not set
57224 -# CONFIG_LAPB is not set
57225 -# CONFIG_ECONET is not set
57226 -# CONFIG_WAN_ROUTER is not set
57227 -# CONFIG_NET_SCHED is not set
57228 -
57229 -#
57230 -# Network testing
57231 -#
57232 -# CONFIG_NET_PKTGEN is not set
57233 -# CONFIG_HAMRADIO is not set
57234 -# CONFIG_CAN is not set
57235 -# CONFIG_IRDA is not set
57236 -# CONFIG_BT is not set
57237 -# CONFIG_AF_RXRPC is not set
57238 -
57239 -#
57240 -# Wireless
57241 -#
57242 -# CONFIG_CFG80211 is not set
57243 -# CONFIG_WIRELESS_EXT is not set
57244 -# CONFIG_MAC80211 is not set
57245 -# CONFIG_IEEE80211 is not set
57246 -# CONFIG_RFKILL is not set
57247 -# CONFIG_NET_9P is not set
57248 -
57249 -#
57250 -# Device Drivers
57251 -#
57252 -
57253 -#
57254 -# Generic Driver Options
57255 -#
57256 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
57257 -CONFIG_STANDALONE=y
57258 -CONFIG_PREVENT_FIRMWARE_BUILD=y
57259 -# CONFIG_FW_LOADER is not set
57260 -# CONFIG_SYS_HYPERVISOR is not set
57261 -# CONFIG_CONNECTOR is not set
57262 -# CONFIG_MTD is not set
57263 -CONFIG_OF_DEVICE=y
57264 -# CONFIG_PARPORT is not set
57265 -CONFIG_BLK_DEV=y
57266 -# CONFIG_BLK_DEV_FD is not set
57267 -# CONFIG_BLK_CPQ_DA is not set
57268 -# CONFIG_BLK_CPQ_CISS_DA is not set
57269 -# CONFIG_BLK_DEV_DAC960 is not set
57270 -# CONFIG_BLK_DEV_UMEM is not set
57271 -# CONFIG_BLK_DEV_COW_COMMON is not set
57272 -CONFIG_BLK_DEV_LOOP=y
57273 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
57274 -# CONFIG_BLK_DEV_NBD is not set
57275 -# CONFIG_BLK_DEV_SX8 is not set
57276 -CONFIG_BLK_DEV_RAM=y
57277 -CONFIG_BLK_DEV_RAM_COUNT=16
57278 -CONFIG_BLK_DEV_RAM_SIZE=32768
57279 -# CONFIG_BLK_DEV_XIP is not set
57280 -# CONFIG_CDROM_PKTCDVD is not set
57281 -# CONFIG_ATA_OVER_ETH is not set
57282 -CONFIG_MISC_DEVICES=y
57283 -# CONFIG_PHANTOM is not set
57284 -# CONFIG_EEPROM_93CX6 is not set
57285 -# CONFIG_SGI_IOC4 is not set
57286 -# CONFIG_TIFM_CORE is not set
57287 -# CONFIG_ENCLOSURE_SERVICES is not set
57288 -CONFIG_HAVE_IDE=y
57289 -# CONFIG_IDE is not set
57290 -
57291 -#
57292 -# SCSI device support
57293 -#
57294 -# CONFIG_RAID_ATTRS is not set
57295 -CONFIG_SCSI=y
57296 -CONFIG_SCSI_DMA=y
57297 -# CONFIG_SCSI_TGT is not set
57298 -# CONFIG_SCSI_NETLINK is not set
57299 -CONFIG_SCSI_PROC_FS=y
57300 -
57301 -#
57302 -# SCSI support type (disk, tape, CD-ROM)
57303 -#
57304 -# CONFIG_BLK_DEV_SD is not set
57305 -# CONFIG_CHR_DEV_ST is not set
57306 -# CONFIG_CHR_DEV_OSST is not set
57307 -# CONFIG_BLK_DEV_SR is not set
57308 -# CONFIG_CHR_DEV_SG is not set
57309 -# CONFIG_CHR_DEV_SCH is not set
57310 -
57311 -#
57312 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
57313 -#
57314 -# CONFIG_SCSI_MULTI_LUN is not set
57315 -# CONFIG_SCSI_CONSTANTS is not set
57316 -# CONFIG_SCSI_LOGGING is not set
57317 -# CONFIG_SCSI_SCAN_ASYNC is not set
57318 -CONFIG_SCSI_WAIT_SCAN=m
57319 -
57320 -#
57321 -# SCSI Transports
57322 -#
57323 -# CONFIG_SCSI_SPI_ATTRS is not set
57324 -# CONFIG_SCSI_FC_ATTRS is not set
57325 -# CONFIG_SCSI_ISCSI_ATTRS is not set
57326 -# CONFIG_SCSI_SAS_LIBSAS is not set
57327 -# CONFIG_SCSI_SRP_ATTRS is not set
57328 -CONFIG_SCSI_LOWLEVEL=y
57329 -# CONFIG_ISCSI_TCP is not set
57330 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
57331 -# CONFIG_SCSI_3W_9XXX is not set
57332 -# CONFIG_SCSI_ACARD is not set
57333 -# CONFIG_SCSI_AACRAID is not set
57334 -# CONFIG_SCSI_AIC7XXX is not set
57335 -# CONFIG_SCSI_AIC7XXX_OLD is not set
57336 -# CONFIG_SCSI_AIC79XX is not set
57337 -# CONFIG_SCSI_AIC94XX is not set
57338 -# CONFIG_SCSI_DPT_I2O is not set
57339 -# CONFIG_SCSI_ADVANSYS is not set
57340 -# CONFIG_SCSI_ARCMSR is not set
57341 -# CONFIG_MEGARAID_NEWGEN is not set
57342 -# CONFIG_MEGARAID_LEGACY is not set
57343 -# CONFIG_MEGARAID_SAS is not set
57344 -# CONFIG_SCSI_HPTIOP is not set
57345 -# CONFIG_SCSI_BUSLOGIC is not set
57346 -# CONFIG_SCSI_DMX3191D is not set
57347 -# CONFIG_SCSI_EATA is not set
57348 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
57349 -# CONFIG_SCSI_GDTH is not set
57350 -# CONFIG_SCSI_IPS is not set
57351 -# CONFIG_SCSI_INITIO is not set
57352 -# CONFIG_SCSI_INIA100 is not set
57353 -# CONFIG_SCSI_MVSAS is not set
57354 -# CONFIG_SCSI_STEX is not set
57355 -# CONFIG_SCSI_SYM53C8XX_2 is not set
57356 -# CONFIG_SCSI_QLOGIC_1280 is not set
57357 -# CONFIG_SCSI_QLA_FC is not set
57358 -# CONFIG_SCSI_QLA_ISCSI is not set
57359 -# CONFIG_SCSI_LPFC is not set
57360 -# CONFIG_SCSI_DC395x is not set
57361 -# CONFIG_SCSI_DC390T is not set
57362 -# CONFIG_SCSI_NSP32 is not set
57363 -# CONFIG_SCSI_DEBUG is not set
57364 -# CONFIG_SCSI_SRP is not set
57365 -# CONFIG_ATA is not set
57366 -# CONFIG_MD is not set
57367 -# CONFIG_FUSION is not set
57368 -
57369 -#
57370 -# IEEE 1394 (FireWire) support
57371 -#
57372 -# CONFIG_FIREWIRE is not set
57373 -# CONFIG_IEEE1394 is not set
57374 -# CONFIG_I2O is not set
57375 -# CONFIG_MACINTOSH_DRIVERS is not set
57376 -CONFIG_NETDEVICES=y
57377 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
57378 -# CONFIG_DUMMY is not set
57379 -# CONFIG_BONDING is not set
57380 -# CONFIG_MACVLAN is not set
57381 -# CONFIG_EQUALIZER is not set
57382 -# CONFIG_TUN is not set
57383 -# CONFIG_VETH is not set
57384 -# CONFIG_ARCNET is not set
57385 -CONFIG_PHYLIB=y
57386 -
57387 -#
57388 -# MII PHY device drivers
57389 -#
57390 -# CONFIG_MARVELL_PHY is not set
57391 -CONFIG_DAVICOM_PHY=y
57392 -# CONFIG_QSEMI_PHY is not set
57393 -# CONFIG_LXT_PHY is not set
57394 -# CONFIG_CICADA_PHY is not set
57395 -# CONFIG_VITESSE_PHY is not set
57396 -# CONFIG_SMSC_PHY is not set
57397 -# CONFIG_BROADCOM_PHY is not set
57398 -# CONFIG_ICPLUS_PHY is not set
57399 -# CONFIG_REALTEK_PHY is not set
57400 -# CONFIG_FIXED_PHY is not set
57401 -# CONFIG_MDIO_BITBANG is not set
57402 -CONFIG_NET_ETHERNET=y
57403 -CONFIG_MII=y
57404 -# CONFIG_HAPPYMEAL is not set
57405 -# CONFIG_SUNGEM is not set
57406 -# CONFIG_CASSINI is not set
57407 -# CONFIG_NET_VENDOR_3COM is not set
57408 -# CONFIG_NET_TULIP is not set
57409 -# CONFIG_HP100 is not set
57410 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
57411 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
57412 -# CONFIG_IBM_NEW_EMAC_TAH is not set
57413 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
57414 -# CONFIG_NET_PCI is not set
57415 -# CONFIG_B44 is not set
57416 -CONFIG_NETDEV_1000=y
57417 -# CONFIG_ACENIC is not set
57418 -# CONFIG_DL2K is not set
57419 -# CONFIG_E1000 is not set
57420 -# CONFIG_E1000E is not set
57421 -# CONFIG_E1000E_ENABLED is not set
57422 -# CONFIG_IP1000 is not set
57423 -# CONFIG_IGB is not set
57424 -# CONFIG_NS83820 is not set
57425 -# CONFIG_HAMACHI is not set
57426 -# CONFIG_YELLOWFIN is not set
57427 -# CONFIG_R8169 is not set
57428 -# CONFIG_SIS190 is not set
57429 -# CONFIG_SKGE is not set
57430 -# CONFIG_SKY2 is not set
57431 -# CONFIG_SK98LIN is not set
57432 -# CONFIG_VIA_VELOCITY is not set
57433 -# CONFIG_TIGON3 is not set
57434 -# CONFIG_BNX2 is not set
57435 -# CONFIG_GIANFAR is not set
57436 -CONFIG_UCC_GETH=y
57437 -# CONFIG_UGETH_NAPI is not set
57438 -# CONFIG_UGETH_MAGIC_PACKET is not set
57439 -# CONFIG_UGETH_FILTERING is not set
57440 -# CONFIG_UGETH_TX_ON_DEMAND is not set
57441 -# CONFIG_QLA3XXX is not set
57442 -# CONFIG_ATL1 is not set
57443 -CONFIG_NETDEV_10000=y
57444 -# CONFIG_CHELSIO_T1 is not set
57445 -# CONFIG_CHELSIO_T3 is not set
57446 -# CONFIG_IXGBE is not set
57447 -# CONFIG_IXGB is not set
57448 -# CONFIG_S2IO is not set
57449 -# CONFIG_MYRI10GE is not set
57450 -# CONFIG_NETXEN_NIC is not set
57451 -# CONFIG_NIU is not set
57452 -# CONFIG_MLX4_CORE is not set
57453 -# CONFIG_TEHUTI is not set
57454 -# CONFIG_BNX2X is not set
57455 -# CONFIG_TR is not set
57456 -
57457 -#
57458 -# Wireless LAN
57459 -#
57460 -# CONFIG_WLAN_PRE80211 is not set
57461 -# CONFIG_WLAN_80211 is not set
57462 -# CONFIG_WAN is not set
57463 -# CONFIG_FDDI is not set
57464 -# CONFIG_HIPPI is not set
57465 -# CONFIG_PPP is not set
57466 -# CONFIG_SLIP is not set
57467 -# CONFIG_NET_FC is not set
57468 -# CONFIG_NETCONSOLE is not set
57469 -# CONFIG_NETPOLL is not set
57470 -# CONFIG_NET_POLL_CONTROLLER is not set
57471 -# CONFIG_ISDN is not set
57472 -# CONFIG_PHONE is not set
57473 -
57474 -#
57475 -# Input device support
57476 -#
57477 -CONFIG_INPUT=y
57478 -# CONFIG_INPUT_FF_MEMLESS is not set
57479 -# CONFIG_INPUT_POLLDEV is not set
57480 -
57481 -#
57482 -# Userland interfaces
57483 -#
57484 -# CONFIG_INPUT_MOUSEDEV is not set
57485 -# CONFIG_INPUT_JOYDEV is not set
57486 -# CONFIG_INPUT_EVDEV is not set
57487 -# CONFIG_INPUT_EVBUG is not set
57488 -
57489 -#
57490 -# Input Device Drivers
57491 -#
57492 -# CONFIG_INPUT_KEYBOARD is not set
57493 -# CONFIG_INPUT_MOUSE is not set
57494 -# CONFIG_INPUT_JOYSTICK is not set
57495 -# CONFIG_INPUT_TABLET is not set
57496 -# CONFIG_INPUT_TOUCHSCREEN is not set
57497 -# CONFIG_INPUT_MISC is not set
57498 -
57499 -#
57500 -# Hardware I/O ports
57501 -#
57502 -# CONFIG_SERIO is not set
57503 -# CONFIG_GAMEPORT is not set
57504 -
57505 -#
57506 -# Character devices
57507 -#
57508 -# CONFIG_VT is not set
57509 -# CONFIG_SERIAL_NONSTANDARD is not set
57510 -# CONFIG_NOZOMI is not set
57511 -
57512 -#
57513 -# Serial drivers
57514 -#
57515 -CONFIG_SERIAL_8250=y
57516 -CONFIG_SERIAL_8250_CONSOLE=y
57517 -CONFIG_SERIAL_8250_PCI=y
57518 -CONFIG_SERIAL_8250_NR_UARTS=4
57519 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
57520 -# CONFIG_SERIAL_8250_EXTENDED is not set
57521 -
57522 -#
57523 -# Non-8250 serial port support
57524 -#
57525 -# CONFIG_SERIAL_UARTLITE is not set
57526 -CONFIG_SERIAL_CORE=y
57527 -CONFIG_SERIAL_CORE_CONSOLE=y
57528 -# CONFIG_SERIAL_JSM is not set
57529 -# CONFIG_SERIAL_OF_PLATFORM is not set
57530 -# CONFIG_SERIAL_QE is not set
57531 -CONFIG_UNIX98_PTYS=y
57532 -CONFIG_LEGACY_PTYS=y
57533 -CONFIG_LEGACY_PTY_COUNT=256
57534 -# CONFIG_IPMI_HANDLER is not set
57535 -CONFIG_HW_RANDOM=y
57536 -# CONFIG_NVRAM is not set
57537 -# CONFIG_GEN_RTC is not set
57538 -# CONFIG_R3964 is not set
57539 -# CONFIG_APPLICOM is not set
57540 -# CONFIG_RAW_DRIVER is not set
57541 -# CONFIG_TCG_TPM is not set
57542 -CONFIG_DEVPORT=y
57543 -CONFIG_I2C=y
57544 -CONFIG_I2C_BOARDINFO=y
57545 -CONFIG_I2C_CHARDEV=y
57546 -
57547 -#
57548 -# I2C Algorithms
57549 -#
57550 -# CONFIG_I2C_ALGOBIT is not set
57551 -# CONFIG_I2C_ALGOPCF is not set
57552 -# CONFIG_I2C_ALGOPCA is not set
57553 -
57554 -#
57555 -# I2C Hardware Bus support
57556 -#
57557 -# CONFIG_I2C_ALI1535 is not set
57558 -# CONFIG_I2C_ALI1563 is not set
57559 -# CONFIG_I2C_ALI15X3 is not set
57560 -# CONFIG_I2C_AMD756 is not set
57561 -# CONFIG_I2C_AMD8111 is not set
57562 -# CONFIG_I2C_I801 is not set
57563 -# CONFIG_I2C_I810 is not set
57564 -# CONFIG_I2C_PIIX4 is not set
57565 -CONFIG_I2C_MPC=y
57566 -# CONFIG_I2C_NFORCE2 is not set
57567 -# CONFIG_I2C_OCORES is not set
57568 -# CONFIG_I2C_PARPORT_LIGHT is not set
57569 -# CONFIG_I2C_PROSAVAGE is not set
57570 -# CONFIG_I2C_SAVAGE4 is not set
57571 -# CONFIG_I2C_SIMTEC is not set
57572 -# CONFIG_I2C_SIS5595 is not set
57573 -# CONFIG_I2C_SIS630 is not set
57574 -# CONFIG_I2C_SIS96X is not set
57575 -# CONFIG_I2C_TAOS_EVM is not set
57576 -# CONFIG_I2C_STUB is not set
57577 -# CONFIG_I2C_VIA is not set
57578 -# CONFIG_I2C_VIAPRO is not set
57579 -# CONFIG_I2C_VOODOO3 is not set
57580 -
57581 -#
57582 -# Miscellaneous I2C Chip support
57583 -#
57584 -# CONFIG_DS1682 is not set
57585 -# CONFIG_SENSORS_EEPROM is not set
57586 -# CONFIG_SENSORS_PCF8574 is not set
57587 -# CONFIG_PCF8575 is not set
57588 -# CONFIG_SENSORS_PCF8591 is not set
57589 -# CONFIG_TPS65010 is not set
57590 -# CONFIG_SENSORS_MAX6875 is not set
57591 -# CONFIG_SENSORS_TSL2550 is not set
57592 -# CONFIG_I2C_DEBUG_CORE is not set
57593 -# CONFIG_I2C_DEBUG_ALGO is not set
57594 -# CONFIG_I2C_DEBUG_BUS is not set
57595 -# CONFIG_I2C_DEBUG_CHIP is not set
57596 -
57597 -#
57598 -# SPI support
57599 -#
57600 -# CONFIG_SPI is not set
57601 -# CONFIG_SPI_MASTER is not set
57602 -# CONFIG_W1 is not set
57603 -# CONFIG_POWER_SUPPLY is not set
57604 -CONFIG_HWMON=y
57605 -# CONFIG_HWMON_VID is not set
57606 -# CONFIG_SENSORS_AD7418 is not set
57607 -# CONFIG_SENSORS_ADM1021 is not set
57608 -# CONFIG_SENSORS_ADM1025 is not set
57609 -# CONFIG_SENSORS_ADM1026 is not set
57610 -# CONFIG_SENSORS_ADM1029 is not set
57611 -# CONFIG_SENSORS_ADM1031 is not set
57612 -# CONFIG_SENSORS_ADM9240 is not set
57613 -# CONFIG_SENSORS_ADT7470 is not set
57614 -# CONFIG_SENSORS_ADT7473 is not set
57615 -# CONFIG_SENSORS_ATXP1 is not set
57616 -# CONFIG_SENSORS_DS1621 is not set
57617 -# CONFIG_SENSORS_I5K_AMB is not set
57618 -# CONFIG_SENSORS_F71805F is not set
57619 -# CONFIG_SENSORS_F71882FG is not set
57620 -# CONFIG_SENSORS_F75375S is not set
57621 -# CONFIG_SENSORS_GL518SM is not set
57622 -# CONFIG_SENSORS_GL520SM is not set
57623 -# CONFIG_SENSORS_IT87 is not set
57624 -# CONFIG_SENSORS_LM63 is not set
57625 -# CONFIG_SENSORS_LM75 is not set
57626 -# CONFIG_SENSORS_LM77 is not set
57627 -# CONFIG_SENSORS_LM78 is not set
57628 -# CONFIG_SENSORS_LM80 is not set
57629 -# CONFIG_SENSORS_LM83 is not set
57630 -# CONFIG_SENSORS_LM85 is not set
57631 -# CONFIG_SENSORS_LM87 is not set
57632 -# CONFIG_SENSORS_LM90 is not set
57633 -# CONFIG_SENSORS_LM92 is not set
57634 -# CONFIG_SENSORS_LM93 is not set
57635 -# CONFIG_SENSORS_MAX1619 is not set
57636 -# CONFIG_SENSORS_MAX6650 is not set
57637 -# CONFIG_SENSORS_PC87360 is not set
57638 -# CONFIG_SENSORS_PC87427 is not set
57639 -# CONFIG_SENSORS_SIS5595 is not set
57640 -# CONFIG_SENSORS_DME1737 is not set
57641 -# CONFIG_SENSORS_SMSC47M1 is not set
57642 -# CONFIG_SENSORS_SMSC47M192 is not set
57643 -# CONFIG_SENSORS_SMSC47B397 is not set
57644 -# CONFIG_SENSORS_ADS7828 is not set
57645 -# CONFIG_SENSORS_THMC50 is not set
57646 -# CONFIG_SENSORS_VIA686A is not set
57647 -# CONFIG_SENSORS_VT1211 is not set
57648 -# CONFIG_SENSORS_VT8231 is not set
57649 -# CONFIG_SENSORS_W83781D is not set
57650 -# CONFIG_SENSORS_W83791D is not set
57651 -# CONFIG_SENSORS_W83792D is not set
57652 -# CONFIG_SENSORS_W83793 is not set
57653 -# CONFIG_SENSORS_W83L785TS is not set
57654 -# CONFIG_SENSORS_W83L786NG is not set
57655 -# CONFIG_SENSORS_W83627HF is not set
57656 -# CONFIG_SENSORS_W83627EHF is not set
57657 -# CONFIG_HWMON_DEBUG_CHIP is not set
57658 -# CONFIG_THERMAL is not set
57659 -CONFIG_WATCHDOG=y
57660 -# CONFIG_WATCHDOG_NOWAYOUT is not set
57661 -
57662 -#
57663 -# Watchdog Device Drivers
57664 -#
57665 -# CONFIG_SOFT_WATCHDOG is not set
57666 -CONFIG_83xx_WDT=y
57667 -
57668 -#
57669 -# PCI-based Watchdog Cards
57670 -#
57671 -# CONFIG_PCIPCWATCHDOG is not set
57672 -# CONFIG_WDTPCI is not set
57673 -
57674 -#
57675 -# Sonics Silicon Backplane
57676 -#
57677 -CONFIG_SSB_POSSIBLE=y
57678 -# CONFIG_SSB is not set
57679 -
57680 -#
57681 -# Multifunction device drivers
57682 -#
57683 -# CONFIG_MFD_SM501 is not set
57684 -
57685 -#
57686 -# Multimedia devices
57687 -#
57688 -# CONFIG_VIDEO_DEV is not set
57689 -# CONFIG_DVB_CORE is not set
57690 -CONFIG_DAB=y
57691 -
57692 -#
57693 -# Graphics support
57694 -#
57695 -# CONFIG_AGP is not set
57696 -# CONFIG_DRM is not set
57697 -# CONFIG_VGASTATE is not set
57698 -CONFIG_VIDEO_OUTPUT_CONTROL=m
57699 -# CONFIG_FB is not set
57700 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
57701 -
57702 -#
57703 -# Display device support
57704 -#
57705 -# CONFIG_DISPLAY_SUPPORT is not set
57706 -
57707 -#
57708 -# Sound
57709 -#
57710 -# CONFIG_SOUND is not set
57711 -CONFIG_HID_SUPPORT=y
57712 -CONFIG_HID=y
57713 -# CONFIG_HID_DEBUG is not set
57714 -# CONFIG_HIDRAW is not set
57715 -CONFIG_USB_SUPPORT=y
57716 -CONFIG_USB_ARCH_HAS_HCD=y
57717 -CONFIG_USB_ARCH_HAS_OHCI=y
57718 -CONFIG_USB_ARCH_HAS_EHCI=y
57719 -# CONFIG_USB is not set
57720 -
57721 -#
57722 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
57723 -#
57724 -# CONFIG_USB_GADGET is not set
57725 -# CONFIG_MMC is not set
57726 -# CONFIG_MEMSTICK is not set
57727 -# CONFIG_NEW_LEDS is not set
57728 -# CONFIG_INFINIBAND is not set
57729 -# CONFIG_EDAC is not set
57730 -CONFIG_RTC_LIB=y
57731 -CONFIG_RTC_CLASS=y
57732 -CONFIG_RTC_HCTOSYS=y
57733 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
57734 -# CONFIG_RTC_DEBUG is not set
57735 -
57736 -#
57737 -# RTC interfaces
57738 -#
57739 -CONFIG_RTC_INTF_SYSFS=y
57740 -CONFIG_RTC_INTF_PROC=y
57741 -CONFIG_RTC_INTF_DEV=y
57742 -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
57743 -# CONFIG_RTC_DRV_TEST is not set
57744 -
57745 -#
57746 -# I2C RTC drivers
57747 -#
57748 -# CONFIG_RTC_DRV_DS1307 is not set
57749 -CONFIG_RTC_DRV_DS1374=y
57750 -# CONFIG_RTC_DRV_DS1672 is not set
57751 -# CONFIG_RTC_DRV_MAX6900 is not set
57752 -# CONFIG_RTC_DRV_RS5C372 is not set
57753 -# CONFIG_RTC_DRV_ISL1208 is not set
57754 -# CONFIG_RTC_DRV_X1205 is not set
57755 -# CONFIG_RTC_DRV_PCF8563 is not set
57756 -# CONFIG_RTC_DRV_PCF8583 is not set
57757 -# CONFIG_RTC_DRV_M41T80 is not set
57758 -# CONFIG_RTC_DRV_S35390A is not set
57759 -
57760 -#
57761 -# SPI RTC drivers
57762 -#
57763 -
57764 -#
57765 -# Platform RTC drivers
57766 -#
57767 -# CONFIG_RTC_DRV_CMOS is not set
57768 -# CONFIG_RTC_DRV_DS1511 is not set
57769 -# CONFIG_RTC_DRV_DS1553 is not set
57770 -# CONFIG_RTC_DRV_DS1742 is not set
57771 -# CONFIG_RTC_DRV_STK17TA8 is not set
57772 -# CONFIG_RTC_DRV_M48T86 is not set
57773 -# CONFIG_RTC_DRV_M48T59 is not set
57774 -# CONFIG_RTC_DRV_V3020 is not set
57775 -
57776 -#
57777 -# on-CPU RTC drivers
57778 -#
57779 -# CONFIG_DMADEVICES is not set
57780 -
57781 -#
57782 -# Userspace I/O
57783 -#
57784 -# CONFIG_UIO is not set
57785 -
57786 -#
57787 -# File systems
57788 -#
57789 -CONFIG_EXT2_FS=y
57790 -# CONFIG_EXT2_FS_XATTR is not set
57791 -# CONFIG_EXT2_FS_XIP is not set
57792 -CONFIG_EXT3_FS=y
57793 -CONFIG_EXT3_FS_XATTR=y
57794 -# CONFIG_EXT3_FS_POSIX_ACL is not set
57795 -# CONFIG_EXT3_FS_SECURITY is not set
57796 -# CONFIG_EXT4DEV_FS is not set
57797 -CONFIG_JBD=y
57798 -CONFIG_FS_MBCACHE=y
57799 -# CONFIG_REISERFS_FS is not set
57800 -# CONFIG_JFS_FS is not set
57801 -# CONFIG_FS_POSIX_ACL is not set
57802 -# CONFIG_XFS_FS is not set
57803 -# CONFIG_GFS2_FS is not set
57804 -# CONFIG_OCFS2_FS is not set
57805 -CONFIG_DNOTIFY=y
57806 -CONFIG_INOTIFY=y
57807 -CONFIG_INOTIFY_USER=y
57808 -# CONFIG_QUOTA is not set
57809 -# CONFIG_AUTOFS_FS is not set
57810 -# CONFIG_AUTOFS4_FS is not set
57811 -# CONFIG_FUSE_FS is not set
57812 -
57813 -#
57814 -# CD-ROM/DVD Filesystems
57815 -#
57816 -# CONFIG_ISO9660_FS is not set
57817 -# CONFIG_UDF_FS is not set
57818 -
57819 -#
57820 -# DOS/FAT/NT Filesystems
57821 -#
57822 -# CONFIG_MSDOS_FS is not set
57823 -# CONFIG_VFAT_FS is not set
57824 -# CONFIG_NTFS_FS is not set
57825 -
57826 -#
57827 -# Pseudo filesystems
57828 -#
57829 -CONFIG_PROC_FS=y
57830 -CONFIG_PROC_KCORE=y
57831 -CONFIG_PROC_SYSCTL=y
57832 -CONFIG_SYSFS=y
57833 -CONFIG_TMPFS=y
57834 -# CONFIG_TMPFS_POSIX_ACL is not set
57835 -# CONFIG_HUGETLB_PAGE is not set
57836 -# CONFIG_CONFIGFS_FS is not set
57837 -
57838 -#
57839 -# Miscellaneous filesystems
57840 -#
57841 -# CONFIG_ADFS_FS is not set
57842 -# CONFIG_AFFS_FS is not set
57843 -# CONFIG_HFS_FS is not set
57844 -# CONFIG_HFSPLUS_FS is not set
57845 -# CONFIG_BEFS_FS is not set
57846 -# CONFIG_BFS_FS is not set
57847 -# CONFIG_EFS_FS is not set
57848 -# CONFIG_CRAMFS is not set
57849 -# CONFIG_VXFS_FS is not set
57850 -# CONFIG_MINIX_FS is not set
57851 -# CONFIG_HPFS_FS is not set
57852 -# CONFIG_QNX4FS_FS is not set
57853 -# CONFIG_ROMFS_FS is not set
57854 -# CONFIG_SYSV_FS is not set
57855 -# CONFIG_UFS_FS is not set
57856 -CONFIG_NETWORK_FILESYSTEMS=y
57857 -CONFIG_NFS_FS=y
57858 -CONFIG_NFS_V3=y
57859 -# CONFIG_NFS_V3_ACL is not set
57860 -CONFIG_NFS_V4=y
57861 -# CONFIG_NFS_DIRECTIO is not set
57862 -# CONFIG_NFSD is not set
57863 -CONFIG_ROOT_NFS=y
57864 -CONFIG_LOCKD=y
57865 -CONFIG_LOCKD_V4=y
57866 -CONFIG_NFS_COMMON=y
57867 -CONFIG_SUNRPC=y
57868 -CONFIG_SUNRPC_GSS=y
57869 -# CONFIG_SUNRPC_BIND34 is not set
57870 -CONFIG_RPCSEC_GSS_KRB5=y
57871 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
57872 -# CONFIG_SMB_FS is not set
57873 -# CONFIG_CIFS is not set
57874 -# CONFIG_NCP_FS is not set
57875 -# CONFIG_CODA_FS is not set
57876 -# CONFIG_AFS_FS is not set
57877 -
57878 -#
57879 -# Partition Types
57880 -#
57881 -CONFIG_PARTITION_ADVANCED=y
57882 -# CONFIG_ACORN_PARTITION is not set
57883 -# CONFIG_OSF_PARTITION is not set
57884 -# CONFIG_AMIGA_PARTITION is not set
57885 -# CONFIG_ATARI_PARTITION is not set
57886 -# CONFIG_MAC_PARTITION is not set
57887 -# CONFIG_MSDOS_PARTITION is not set
57888 -# CONFIG_LDM_PARTITION is not set
57889 -# CONFIG_SGI_PARTITION is not set
57890 -# CONFIG_ULTRIX_PARTITION is not set
57891 -# CONFIG_SUN_PARTITION is not set
57892 -# CONFIG_KARMA_PARTITION is not set
57893 -# CONFIG_EFI_PARTITION is not set
57894 -# CONFIG_SYSV68_PARTITION is not set
57895 -# CONFIG_NLS is not set
57896 -# CONFIG_DLM is not set
57897 -CONFIG_UCC_FAST=y
57898 -CONFIG_UCC=y
57899 -
57900 -#
57901 -# Library routines
57902 -#
57903 -CONFIG_BITREVERSE=y
57904 -# CONFIG_CRC_CCITT is not set
57905 -# CONFIG_CRC16 is not set
57906 -# CONFIG_CRC_ITU_T is not set
57907 -CONFIG_CRC32=y
57908 -# CONFIG_CRC7 is not set
57909 -# CONFIG_LIBCRC32C is not set
57910 -CONFIG_PLIST=y
57911 -CONFIG_HAS_IOMEM=y
57912 -CONFIG_HAS_IOPORT=y
57913 -CONFIG_HAS_DMA=y
57914 -
57915 -#
57916 -# Kernel hacking
57917 -#
57918 -# CONFIG_PRINTK_TIME is not set
57919 -CONFIG_ENABLE_WARN_DEPRECATED=y
57920 -CONFIG_ENABLE_MUST_CHECK=y
57921 -# CONFIG_MAGIC_SYSRQ is not set
57922 -# CONFIG_UNUSED_SYMBOLS is not set
57923 -# CONFIG_DEBUG_FS is not set
57924 -# CONFIG_HEADERS_CHECK is not set
57925 -# CONFIG_DEBUG_KERNEL is not set
57926 -# CONFIG_SLUB_DEBUG_ON is not set
57927 -# CONFIG_SLUB_STATS is not set
57928 -# CONFIG_DEBUG_BUGVERBOSE is not set
57929 -# CONFIG_SAMPLES is not set
57930 -# CONFIG_PPC_EARLY_DEBUG is not set
57931 -
57932 -#
57933 -# Security options
57934 -#
57935 -# CONFIG_KEYS is not set
57936 -# CONFIG_SECURITY is not set
57937 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
57938 -CONFIG_CRYPTO=y
57939 -CONFIG_CRYPTO_ALGAPI=y
57940 -CONFIG_CRYPTO_BLKCIPHER=y
57941 -# CONFIG_CRYPTO_SEQIV is not set
57942 -CONFIG_CRYPTO_MANAGER=y
57943 -# CONFIG_CRYPTO_HMAC is not set
57944 -# CONFIG_CRYPTO_XCBC is not set
57945 -# CONFIG_CRYPTO_NULL is not set
57946 -# CONFIG_CRYPTO_MD4 is not set
57947 -CONFIG_CRYPTO_MD5=y
57948 -# CONFIG_CRYPTO_SHA1 is not set
57949 -# CONFIG_CRYPTO_SHA256 is not set
57950 -# CONFIG_CRYPTO_SHA512 is not set
57951 -# CONFIG_CRYPTO_WP512 is not set
57952 -# CONFIG_CRYPTO_TGR192 is not set
57953 -# CONFIG_CRYPTO_GF128MUL is not set
57954 -CONFIG_CRYPTO_ECB=m
57955 -CONFIG_CRYPTO_CBC=y
57956 -CONFIG_CRYPTO_PCBC=m
57957 -# CONFIG_CRYPTO_LRW is not set
57958 -# CONFIG_CRYPTO_XTS is not set
57959 -# CONFIG_CRYPTO_CTR is not set
57960 -# CONFIG_CRYPTO_GCM is not set
57961 -# CONFIG_CRYPTO_CCM is not set
57962 -# CONFIG_CRYPTO_CRYPTD is not set
57963 -CONFIG_CRYPTO_DES=y
57964 -# CONFIG_CRYPTO_FCRYPT is not set
57965 -# CONFIG_CRYPTO_BLOWFISH is not set
57966 -# CONFIG_CRYPTO_TWOFISH is not set
57967 -# CONFIG_CRYPTO_SERPENT is not set
57968 -# CONFIG_CRYPTO_AES is not set
57969 -# CONFIG_CRYPTO_CAST5 is not set
57970 -# CONFIG_CRYPTO_CAST6 is not set
57971 -# CONFIG_CRYPTO_TEA is not set
57972 -# CONFIG_CRYPTO_ARC4 is not set
57973 -# CONFIG_CRYPTO_KHAZAD is not set
57974 -# CONFIG_CRYPTO_ANUBIS is not set
57975 -# CONFIG_CRYPTO_SEED is not set
57976 -# CONFIG_CRYPTO_SALSA20 is not set
57977 -# CONFIG_CRYPTO_DEFLATE is not set
57978 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
57979 -# CONFIG_CRYPTO_CRC32C is not set
57980 -# CONFIG_CRYPTO_CAMELLIA is not set
57981 -# CONFIG_CRYPTO_TEST is not set
57982 -# CONFIG_CRYPTO_AUTHENC is not set
57983 -# CONFIG_CRYPTO_LZO is not set
57984 -CONFIG_CRYPTO_HW=y
57985 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
57986 -# CONFIG_PPC_CLOCK is not set
57987 -CONFIG_PPC_LIB_RHEAP=y
57988 Index: linux-2.6.25.4/arch/powerpc/configs/mpc832x_rdb_defconfig
57989 ===================================================================
57990 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc832x_rdb_defconfig
57991 +++ /dev/null
57992 @@ -1,1233 +0,0 @@
57993 -#
57994 -# Automatically generated make config: don't edit
57995 -# Linux kernel version: 2.6.25-rc6
57996 -# Mon Mar 24 08:48:16 2008
57997 -#
57998 -# CONFIG_PPC64 is not set
57999 -
58000 -#
58001 -# Processor support
58002 -#
58003 -CONFIG_6xx=y
58004 -# CONFIG_PPC_85xx is not set
58005 -# CONFIG_PPC_8xx is not set
58006 -# CONFIG_40x is not set
58007 -# CONFIG_44x is not set
58008 -# CONFIG_E200 is not set
58009 -CONFIG_PPC_FPU=y
58010 -# CONFIG_FSL_EMB_PERFMON is not set
58011 -CONFIG_PPC_STD_MMU=y
58012 -CONFIG_PPC_STD_MMU_32=y
58013 -# CONFIG_PPC_MM_SLICES is not set
58014 -# CONFIG_SMP is not set
58015 -CONFIG_PPC32=y
58016 -CONFIG_WORD_SIZE=32
58017 -CONFIG_PPC_MERGE=y
58018 -CONFIG_MMU=y
58019 -CONFIG_GENERIC_CMOS_UPDATE=y
58020 -CONFIG_GENERIC_TIME=y
58021 -CONFIG_GENERIC_TIME_VSYSCALL=y
58022 -CONFIG_GENERIC_CLOCKEVENTS=y
58023 -CONFIG_GENERIC_HARDIRQS=y
58024 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
58025 -CONFIG_IRQ_PER_CPU=y
58026 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
58027 -CONFIG_ARCH_HAS_ILOG2_U32=y
58028 -CONFIG_GENERIC_HWEIGHT=y
58029 -CONFIG_GENERIC_CALIBRATE_DELAY=y
58030 -CONFIG_GENERIC_FIND_NEXT_BIT=y
58031 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
58032 -CONFIG_PPC=y
58033 -CONFIG_EARLY_PRINTK=y
58034 -CONFIG_GENERIC_NVRAM=y
58035 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
58036 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
58037 -CONFIG_PPC_OF=y
58038 -CONFIG_OF=y
58039 -CONFIG_PPC_UDBG_16550=y
58040 -# CONFIG_GENERIC_TBSYNC is not set
58041 -CONFIG_AUDIT_ARCH=y
58042 -CONFIG_GENERIC_BUG=y
58043 -CONFIG_DEFAULT_UIMAGE=y
58044 -# CONFIG_PPC_DCR_NATIVE is not set
58045 -# CONFIG_PPC_DCR_MMIO is not set
58046 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
58047 -
58048 -#
58049 -# General setup
58050 -#
58051 -CONFIG_EXPERIMENTAL=y
58052 -CONFIG_BROKEN_ON_SMP=y
58053 -CONFIG_INIT_ENV_ARG_LIMIT=32
58054 -CONFIG_LOCALVERSION=""
58055 -CONFIG_LOCALVERSION_AUTO=y
58056 -CONFIG_SWAP=y
58057 -CONFIG_SYSVIPC=y
58058 -CONFIG_SYSVIPC_SYSCTL=y
58059 -# CONFIG_POSIX_MQUEUE is not set
58060 -# CONFIG_BSD_PROCESS_ACCT is not set
58061 -# CONFIG_TASKSTATS is not set
58062 -# CONFIG_AUDIT is not set
58063 -# CONFIG_IKCONFIG is not set
58064 -CONFIG_LOG_BUF_SHIFT=14
58065 -# CONFIG_CGROUPS is not set
58066 -CONFIG_GROUP_SCHED=y
58067 -# CONFIG_FAIR_GROUP_SCHED is not set
58068 -# CONFIG_RT_GROUP_SCHED is not set
58069 -CONFIG_USER_SCHED=y
58070 -# CONFIG_CGROUP_SCHED is not set
58071 -CONFIG_SYSFS_DEPRECATED=y
58072 -CONFIG_SYSFS_DEPRECATED_V2=y
58073 -# CONFIG_RELAY is not set
58074 -# CONFIG_NAMESPACES is not set
58075 -CONFIG_BLK_DEV_INITRD=y
58076 -CONFIG_INITRAMFS_SOURCE=""
58077 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
58078 -CONFIG_SYSCTL=y
58079 -CONFIG_EMBEDDED=y
58080 -CONFIG_SYSCTL_SYSCALL=y
58081 -# CONFIG_KALLSYMS is not set
58082 -CONFIG_HOTPLUG=y
58083 -CONFIG_PRINTK=y
58084 -CONFIG_BUG=y
58085 -CONFIG_ELF_CORE=y
58086 -CONFIG_COMPAT_BRK=y
58087 -CONFIG_BASE_FULL=y
58088 -CONFIG_FUTEX=y
58089 -CONFIG_ANON_INODES=y
58090 -# CONFIG_EPOLL is not set
58091 -CONFIG_SIGNALFD=y
58092 -CONFIG_TIMERFD=y
58093 -CONFIG_EVENTFD=y
58094 -CONFIG_SHMEM=y
58095 -CONFIG_VM_EVENT_COUNTERS=y
58096 -CONFIG_SLUB_DEBUG=y
58097 -# CONFIG_SLAB is not set
58098 -CONFIG_SLUB=y
58099 -# CONFIG_SLOB is not set
58100 -# CONFIG_PROFILING is not set
58101 -# CONFIG_MARKERS is not set
58102 -CONFIG_HAVE_OPROFILE=y
58103 -CONFIG_HAVE_KPROBES=y
58104 -CONFIG_HAVE_KRETPROBES=y
58105 -CONFIG_PROC_PAGE_MONITOR=y
58106 -CONFIG_SLABINFO=y
58107 -CONFIG_RT_MUTEXES=y
58108 -# CONFIG_TINY_SHMEM is not set
58109 -CONFIG_BASE_SMALL=0
58110 -CONFIG_MODULES=y
58111 -CONFIG_MODULE_UNLOAD=y
58112 -# CONFIG_MODULE_FORCE_UNLOAD is not set
58113 -# CONFIG_MODVERSIONS is not set
58114 -# CONFIG_MODULE_SRCVERSION_ALL is not set
58115 -# CONFIG_KMOD is not set
58116 -CONFIG_BLOCK=y
58117 -# CONFIG_LBD is not set
58118 -# CONFIG_BLK_DEV_IO_TRACE is not set
58119 -# CONFIG_LSF is not set
58120 -# CONFIG_BLK_DEV_BSG is not set
58121 -
58122 -#
58123 -# IO Schedulers
58124 -#
58125 -CONFIG_IOSCHED_NOOP=y
58126 -CONFIG_IOSCHED_AS=y
58127 -CONFIG_IOSCHED_DEADLINE=y
58128 -CONFIG_IOSCHED_CFQ=y
58129 -CONFIG_DEFAULT_AS=y
58130 -# CONFIG_DEFAULT_DEADLINE is not set
58131 -# CONFIG_DEFAULT_CFQ is not set
58132 -# CONFIG_DEFAULT_NOOP is not set
58133 -CONFIG_DEFAULT_IOSCHED="anticipatory"
58134 -CONFIG_CLASSIC_RCU=y
58135 -
58136 -#
58137 -# Platform support
58138 -#
58139 -# CONFIG_PPC_MULTIPLATFORM is not set
58140 -# CONFIG_PPC_82xx is not set
58141 -CONFIG_PPC_83xx=y
58142 -# CONFIG_PPC_86xx is not set
58143 -# CONFIG_PPC_MPC512x is not set
58144 -# CONFIG_PPC_MPC5121 is not set
58145 -# CONFIG_PPC_CELL is not set
58146 -# CONFIG_PPC_CELL_NATIVE is not set
58147 -# CONFIG_PQ2ADS is not set
58148 -CONFIG_MPC83xx=y
58149 -# CONFIG_MPC831x_RDB is not set
58150 -# CONFIG_MPC832x_MDS is not set
58151 -CONFIG_MPC832x_RDB=y
58152 -# CONFIG_MPC834x_MDS is not set
58153 -# CONFIG_MPC834x_ITX is not set
58154 -# CONFIG_MPC836x_MDS is not set
58155 -# CONFIG_MPC837x_MDS is not set
58156 -# CONFIG_MPC837x_RDB is not set
58157 -# CONFIG_SBC834x is not set
58158 -CONFIG_PPC_MPC832x=y
58159 -CONFIG_IPIC=y
58160 -# CONFIG_MPIC is not set
58161 -# CONFIG_MPIC_WEIRD is not set
58162 -# CONFIG_PPC_I8259 is not set
58163 -# CONFIG_PPC_RTAS is not set
58164 -# CONFIG_MMIO_NVRAM is not set
58165 -# CONFIG_PPC_MPC106 is not set
58166 -# CONFIG_PPC_970_NAP is not set
58167 -# CONFIG_PPC_INDIRECT_IO is not set
58168 -# CONFIG_GENERIC_IOMAP is not set
58169 -# CONFIG_CPU_FREQ is not set
58170 -CONFIG_QUICC_ENGINE=y
58171 -# CONFIG_FSL_ULI1575 is not set
58172 -
58173 -#
58174 -# Kernel options
58175 -#
58176 -# CONFIG_HIGHMEM is not set
58177 -CONFIG_TICK_ONESHOT=y
58178 -CONFIG_NO_HZ=y
58179 -CONFIG_HIGH_RES_TIMERS=y
58180 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
58181 -# CONFIG_HZ_100 is not set
58182 -CONFIG_HZ_250=y
58183 -# CONFIG_HZ_300 is not set
58184 -# CONFIG_HZ_1000 is not set
58185 -CONFIG_HZ=250
58186 -# CONFIG_SCHED_HRTICK is not set
58187 -CONFIG_PREEMPT_NONE=y
58188 -# CONFIG_PREEMPT_VOLUNTARY is not set
58189 -# CONFIG_PREEMPT is not set
58190 -CONFIG_BINFMT_ELF=y
58191 -# CONFIG_BINFMT_MISC is not set
58192 -CONFIG_MATH_EMULATION=y
58193 -# CONFIG_IOMMU_HELPER is not set
58194 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
58195 -CONFIG_ARCH_HAS_WALK_MEMORY=y
58196 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
58197 -CONFIG_ARCH_FLATMEM_ENABLE=y
58198 -CONFIG_ARCH_POPULATES_NODE_MAP=y
58199 -CONFIG_SELECT_MEMORY_MODEL=y
58200 -CONFIG_FLATMEM_MANUAL=y
58201 -# CONFIG_DISCONTIGMEM_MANUAL is not set
58202 -# CONFIG_SPARSEMEM_MANUAL is not set
58203 -CONFIG_FLATMEM=y
58204 -CONFIG_FLAT_NODE_MEM_MAP=y
58205 -# CONFIG_SPARSEMEM_STATIC is not set
58206 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
58207 -CONFIG_SPLIT_PTLOCK_CPUS=4
58208 -# CONFIG_RESOURCES_64BIT is not set
58209 -CONFIG_ZONE_DMA_FLAG=1
58210 -CONFIG_BOUNCE=y
58211 -CONFIG_VIRT_TO_BUS=y
58212 -CONFIG_PROC_DEVICETREE=y
58213 -# CONFIG_CMDLINE_BOOL is not set
58214 -# CONFIG_PM is not set
58215 -CONFIG_SECCOMP=y
58216 -CONFIG_ISA_DMA_API=y
58217 -
58218 -#
58219 -# Bus options
58220 -#
58221 -CONFIG_ZONE_DMA=y
58222 -CONFIG_GENERIC_ISA_DMA=y
58223 -CONFIG_PPC_INDIRECT_PCI=y
58224 -CONFIG_FSL_SOC=y
58225 -CONFIG_PCI=y
58226 -CONFIG_PCI_DOMAINS=y
58227 -CONFIG_PCI_SYSCALL=y
58228 -# CONFIG_PCIEPORTBUS is not set
58229 -CONFIG_ARCH_SUPPORTS_MSI=y
58230 -# CONFIG_PCI_MSI is not set
58231 -CONFIG_PCI_LEGACY=y
58232 -# CONFIG_PCCARD is not set
58233 -# CONFIG_HOTPLUG_PCI is not set
58234 -
58235 -#
58236 -# Advanced setup
58237 -#
58238 -# CONFIG_ADVANCED_OPTIONS is not set
58239 -
58240 -#
58241 -# Default settings for advanced configuration options are used
58242 -#
58243 -CONFIG_HIGHMEM_START=0xfe000000
58244 -CONFIG_LOWMEM_SIZE=0x30000000
58245 -CONFIG_KERNEL_START=0xc0000000
58246 -CONFIG_TASK_SIZE=0xc0000000
58247 -CONFIG_BOOT_LOAD=0x00800000
58248 -
58249 -#
58250 -# Networking
58251 -#
58252 -CONFIG_NET=y
58253 -
58254 -#
58255 -# Networking options
58256 -#
58257 -CONFIG_PACKET=y
58258 -# CONFIG_PACKET_MMAP is not set
58259 -CONFIG_UNIX=y
58260 -CONFIG_XFRM=y
58261 -# CONFIG_XFRM_USER is not set
58262 -# CONFIG_XFRM_SUB_POLICY is not set
58263 -# CONFIG_XFRM_MIGRATE is not set
58264 -# CONFIG_XFRM_STATISTICS is not set
58265 -# CONFIG_NET_KEY is not set
58266 -CONFIG_INET=y
58267 -CONFIG_IP_MULTICAST=y
58268 -# CONFIG_IP_ADVANCED_ROUTER is not set
58269 -CONFIG_IP_FIB_HASH=y
58270 -CONFIG_IP_PNP=y
58271 -CONFIG_IP_PNP_DHCP=y
58272 -CONFIG_IP_PNP_BOOTP=y
58273 -# CONFIG_IP_PNP_RARP is not set
58274 -# CONFIG_NET_IPIP is not set
58275 -# CONFIG_NET_IPGRE is not set
58276 -# CONFIG_IP_MROUTE is not set
58277 -# CONFIG_ARPD is not set
58278 -CONFIG_SYN_COOKIES=y
58279 -# CONFIG_INET_AH is not set
58280 -# CONFIG_INET_ESP is not set
58281 -# CONFIG_INET_IPCOMP is not set
58282 -# CONFIG_INET_XFRM_TUNNEL is not set
58283 -# CONFIG_INET_TUNNEL is not set
58284 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
58285 -CONFIG_INET_XFRM_MODE_TUNNEL=y
58286 -CONFIG_INET_XFRM_MODE_BEET=y
58287 -# CONFIG_INET_LRO is not set
58288 -CONFIG_INET_DIAG=y
58289 -CONFIG_INET_TCP_DIAG=y
58290 -# CONFIG_TCP_CONG_ADVANCED is not set
58291 -CONFIG_TCP_CONG_CUBIC=y
58292 -CONFIG_DEFAULT_TCP_CONG="cubic"
58293 -# CONFIG_TCP_MD5SIG is not set
58294 -# CONFIG_IPV6 is not set
58295 -# CONFIG_INET6_XFRM_TUNNEL is not set
58296 -# CONFIG_INET6_TUNNEL is not set
58297 -# CONFIG_NETWORK_SECMARK is not set
58298 -# CONFIG_NETFILTER is not set
58299 -# CONFIG_IP_DCCP is not set
58300 -# CONFIG_IP_SCTP is not set
58301 -# CONFIG_TIPC is not set
58302 -# CONFIG_ATM is not set
58303 -# CONFIG_BRIDGE is not set
58304 -# CONFIG_VLAN_8021Q is not set
58305 -# CONFIG_DECNET is not set
58306 -# CONFIG_LLC2 is not set
58307 -# CONFIG_IPX is not set
58308 -# CONFIG_ATALK is not set
58309 -# CONFIG_X25 is not set
58310 -# CONFIG_LAPB is not set
58311 -# CONFIG_ECONET is not set
58312 -# CONFIG_WAN_ROUTER is not set
58313 -# CONFIG_NET_SCHED is not set
58314 -
58315 -#
58316 -# Network testing
58317 -#
58318 -# CONFIG_NET_PKTGEN is not set
58319 -# CONFIG_HAMRADIO is not set
58320 -# CONFIG_CAN is not set
58321 -# CONFIG_IRDA is not set
58322 -# CONFIG_BT is not set
58323 -# CONFIG_AF_RXRPC is not set
58324 -
58325 -#
58326 -# Wireless
58327 -#
58328 -# CONFIG_CFG80211 is not set
58329 -# CONFIG_WIRELESS_EXT is not set
58330 -# CONFIG_MAC80211 is not set
58331 -# CONFIG_IEEE80211 is not set
58332 -# CONFIG_RFKILL is not set
58333 -# CONFIG_NET_9P is not set
58334 -
58335 -#
58336 -# Device Drivers
58337 -#
58338 -
58339 -#
58340 -# Generic Driver Options
58341 -#
58342 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
58343 -CONFIG_STANDALONE=y
58344 -CONFIG_PREVENT_FIRMWARE_BUILD=y
58345 -# CONFIG_FW_LOADER is not set
58346 -# CONFIG_SYS_HYPERVISOR is not set
58347 -# CONFIG_CONNECTOR is not set
58348 -# CONFIG_MTD is not set
58349 -CONFIG_OF_DEVICE=y
58350 -# CONFIG_PARPORT is not set
58351 -CONFIG_BLK_DEV=y
58352 -# CONFIG_BLK_DEV_FD is not set
58353 -# CONFIG_BLK_CPQ_DA is not set
58354 -# CONFIG_BLK_CPQ_CISS_DA is not set
58355 -# CONFIG_BLK_DEV_DAC960 is not set
58356 -# CONFIG_BLK_DEV_UMEM is not set
58357 -# CONFIG_BLK_DEV_COW_COMMON is not set
58358 -CONFIG_BLK_DEV_LOOP=y
58359 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
58360 -# CONFIG_BLK_DEV_NBD is not set
58361 -# CONFIG_BLK_DEV_SX8 is not set
58362 -# CONFIG_BLK_DEV_UB is not set
58363 -CONFIG_BLK_DEV_RAM=y
58364 -CONFIG_BLK_DEV_RAM_COUNT=16
58365 -CONFIG_BLK_DEV_RAM_SIZE=32768
58366 -# CONFIG_BLK_DEV_XIP is not set
58367 -# CONFIG_CDROM_PKTCDVD is not set
58368 -# CONFIG_ATA_OVER_ETH is not set
58369 -CONFIG_MISC_DEVICES=y
58370 -# CONFIG_PHANTOM is not set
58371 -# CONFIG_EEPROM_93CX6 is not set
58372 -# CONFIG_SGI_IOC4 is not set
58373 -# CONFIG_TIFM_CORE is not set
58374 -# CONFIG_ENCLOSURE_SERVICES is not set
58375 -CONFIG_HAVE_IDE=y
58376 -# CONFIG_IDE is not set
58377 -
58378 -#
58379 -# SCSI device support
58380 -#
58381 -# CONFIG_RAID_ATTRS is not set
58382 -CONFIG_SCSI=y
58383 -CONFIG_SCSI_DMA=y
58384 -# CONFIG_SCSI_TGT is not set
58385 -# CONFIG_SCSI_NETLINK is not set
58386 -CONFIG_SCSI_PROC_FS=y
58387 -
58388 -#
58389 -# SCSI support type (disk, tape, CD-ROM)
58390 -#
58391 -CONFIG_BLK_DEV_SD=y
58392 -# CONFIG_CHR_DEV_ST is not set
58393 -# CONFIG_CHR_DEV_OSST is not set
58394 -# CONFIG_BLK_DEV_SR is not set
58395 -# CONFIG_CHR_DEV_SG is not set
58396 -# CONFIG_CHR_DEV_SCH is not set
58397 -
58398 -#
58399 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
58400 -#
58401 -# CONFIG_SCSI_MULTI_LUN is not set
58402 -# CONFIG_SCSI_CONSTANTS is not set
58403 -# CONFIG_SCSI_LOGGING is not set
58404 -# CONFIG_SCSI_SCAN_ASYNC is not set
58405 -CONFIG_SCSI_WAIT_SCAN=m
58406 -
58407 -#
58408 -# SCSI Transports
58409 -#
58410 -# CONFIG_SCSI_SPI_ATTRS is not set
58411 -# CONFIG_SCSI_FC_ATTRS is not set
58412 -# CONFIG_SCSI_ISCSI_ATTRS is not set
58413 -# CONFIG_SCSI_SAS_LIBSAS is not set
58414 -# CONFIG_SCSI_SRP_ATTRS is not set
58415 -CONFIG_SCSI_LOWLEVEL=y
58416 -# CONFIG_ISCSI_TCP is not set
58417 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
58418 -# CONFIG_SCSI_3W_9XXX is not set
58419 -# CONFIG_SCSI_ACARD is not set
58420 -# CONFIG_SCSI_AACRAID is not set
58421 -# CONFIG_SCSI_AIC7XXX is not set
58422 -# CONFIG_SCSI_AIC7XXX_OLD is not set
58423 -# CONFIG_SCSI_AIC79XX is not set
58424 -# CONFIG_SCSI_AIC94XX is not set
58425 -# CONFIG_SCSI_DPT_I2O is not set
58426 -# CONFIG_SCSI_ADVANSYS is not set
58427 -# CONFIG_SCSI_ARCMSR is not set
58428 -# CONFIG_MEGARAID_NEWGEN is not set
58429 -# CONFIG_MEGARAID_LEGACY is not set
58430 -# CONFIG_MEGARAID_SAS is not set
58431 -# CONFIG_SCSI_HPTIOP is not set
58432 -# CONFIG_SCSI_BUSLOGIC is not set
58433 -# CONFIG_SCSI_DMX3191D is not set
58434 -# CONFIG_SCSI_EATA is not set
58435 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
58436 -# CONFIG_SCSI_GDTH is not set
58437 -# CONFIG_SCSI_IPS is not set
58438 -# CONFIG_SCSI_INITIO is not set
58439 -# CONFIG_SCSI_INIA100 is not set
58440 -# CONFIG_SCSI_MVSAS is not set
58441 -# CONFIG_SCSI_STEX is not set
58442 -# CONFIG_SCSI_SYM53C8XX_2 is not set
58443 -# CONFIG_SCSI_QLOGIC_1280 is not set
58444 -# CONFIG_SCSI_QLA_FC is not set
58445 -# CONFIG_SCSI_QLA_ISCSI is not set
58446 -# CONFIG_SCSI_LPFC is not set
58447 -# CONFIG_SCSI_DC395x is not set
58448 -# CONFIG_SCSI_DC390T is not set
58449 -# CONFIG_SCSI_NSP32 is not set
58450 -# CONFIG_SCSI_DEBUG is not set
58451 -# CONFIG_SCSI_SRP is not set
58452 -# CONFIG_ATA is not set
58453 -# CONFIG_MD is not set
58454 -# CONFIG_FUSION is not set
58455 -
58456 -#
58457 -# IEEE 1394 (FireWire) support
58458 -#
58459 -# CONFIG_FIREWIRE is not set
58460 -# CONFIG_IEEE1394 is not set
58461 -# CONFIG_I2O is not set
58462 -# CONFIG_MACINTOSH_DRIVERS is not set
58463 -CONFIG_NETDEVICES=y
58464 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
58465 -# CONFIG_DUMMY is not set
58466 -# CONFIG_BONDING is not set
58467 -# CONFIG_MACVLAN is not set
58468 -# CONFIG_EQUALIZER is not set
58469 -# CONFIG_TUN is not set
58470 -# CONFIG_VETH is not set
58471 -# CONFIG_ARCNET is not set
58472 -CONFIG_PHYLIB=y
58473 -
58474 -#
58475 -# MII PHY device drivers
58476 -#
58477 -# CONFIG_MARVELL_PHY is not set
58478 -# CONFIG_DAVICOM_PHY is not set
58479 -# CONFIG_QSEMI_PHY is not set
58480 -# CONFIG_LXT_PHY is not set
58481 -# CONFIG_CICADA_PHY is not set
58482 -# CONFIG_VITESSE_PHY is not set
58483 -# CONFIG_SMSC_PHY is not set
58484 -# CONFIG_BROADCOM_PHY is not set
58485 -CONFIG_ICPLUS_PHY=y
58486 -# CONFIG_REALTEK_PHY is not set
58487 -# CONFIG_FIXED_PHY is not set
58488 -# CONFIG_MDIO_BITBANG is not set
58489 -CONFIG_NET_ETHERNET=y
58490 -CONFIG_MII=y
58491 -# CONFIG_HAPPYMEAL is not set
58492 -# CONFIG_SUNGEM is not set
58493 -# CONFIG_CASSINI is not set
58494 -# CONFIG_NET_VENDOR_3COM is not set
58495 -# CONFIG_ENC28J60 is not set
58496 -# CONFIG_NET_TULIP is not set
58497 -# CONFIG_HP100 is not set
58498 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
58499 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
58500 -# CONFIG_IBM_NEW_EMAC_TAH is not set
58501 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
58502 -# CONFIG_NET_PCI is not set
58503 -# CONFIG_B44 is not set
58504 -CONFIG_NETDEV_1000=y
58505 -# CONFIG_ACENIC is not set
58506 -# CONFIG_DL2K is not set
58507 -CONFIG_E1000=y
58508 -# CONFIG_E1000_NAPI is not set
58509 -# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set
58510 -# CONFIG_E1000E is not set
58511 -# CONFIG_E1000E_ENABLED is not set
58512 -# CONFIG_IP1000 is not set
58513 -# CONFIG_IGB is not set
58514 -# CONFIG_NS83820 is not set
58515 -# CONFIG_HAMACHI is not set
58516 -# CONFIG_YELLOWFIN is not set
58517 -# CONFIG_R8169 is not set
58518 -# CONFIG_SIS190 is not set
58519 -# CONFIG_SKGE is not set
58520 -# CONFIG_SKY2 is not set
58521 -# CONFIG_SK98LIN is not set
58522 -# CONFIG_VIA_VELOCITY is not set
58523 -# CONFIG_TIGON3 is not set
58524 -# CONFIG_BNX2 is not set
58525 -# CONFIG_GIANFAR is not set
58526 -CONFIG_UCC_GETH=y
58527 -CONFIG_UGETH_NAPI=y
58528 -# CONFIG_UGETH_MAGIC_PACKET is not set
58529 -# CONFIG_UGETH_FILTERING is not set
58530 -# CONFIG_UGETH_TX_ON_DEMAND is not set
58531 -# CONFIG_QLA3XXX is not set
58532 -# CONFIG_ATL1 is not set
58533 -CONFIG_NETDEV_10000=y
58534 -# CONFIG_CHELSIO_T1 is not set
58535 -# CONFIG_CHELSIO_T3 is not set
58536 -# CONFIG_IXGBE is not set
58537 -# CONFIG_IXGB is not set
58538 -# CONFIG_S2IO is not set
58539 -# CONFIG_MYRI10GE is not set
58540 -# CONFIG_NETXEN_NIC is not set
58541 -# CONFIG_NIU is not set
58542 -# CONFIG_MLX4_CORE is not set
58543 -# CONFIG_TEHUTI is not set
58544 -# CONFIG_BNX2X is not set
58545 -# CONFIG_TR is not set
58546 -
58547 -#
58548 -# Wireless LAN
58549 -#
58550 -# CONFIG_WLAN_PRE80211 is not set
58551 -# CONFIG_WLAN_80211 is not set
58552 -
58553 -#
58554 -# USB Network Adapters
58555 -#
58556 -# CONFIG_USB_CATC is not set
58557 -# CONFIG_USB_KAWETH is not set
58558 -# CONFIG_USB_PEGASUS is not set
58559 -# CONFIG_USB_RTL8150 is not set
58560 -# CONFIG_USB_USBNET is not set
58561 -# CONFIG_WAN is not set
58562 -# CONFIG_FDDI is not set
58563 -# CONFIG_HIPPI is not set
58564 -# CONFIG_PPP is not set
58565 -# CONFIG_SLIP is not set
58566 -# CONFIG_NET_FC is not set
58567 -# CONFIG_NETCONSOLE is not set
58568 -# CONFIG_NETPOLL is not set
58569 -# CONFIG_NET_POLL_CONTROLLER is not set
58570 -# CONFIG_ISDN is not set
58571 -# CONFIG_PHONE is not set
58572 -
58573 -#
58574 -# Input device support
58575 -#
58576 -CONFIG_INPUT=y
58577 -# CONFIG_INPUT_FF_MEMLESS is not set
58578 -# CONFIG_INPUT_POLLDEV is not set
58579 -
58580 -#
58581 -# Userland interfaces
58582 -#
58583 -# CONFIG_INPUT_MOUSEDEV is not set
58584 -# CONFIG_INPUT_JOYDEV is not set
58585 -# CONFIG_INPUT_EVDEV is not set
58586 -# CONFIG_INPUT_EVBUG is not set
58587 -
58588 -#
58589 -# Input Device Drivers
58590 -#
58591 -# CONFIG_INPUT_KEYBOARD is not set
58592 -# CONFIG_INPUT_MOUSE is not set
58593 -# CONFIG_INPUT_JOYSTICK is not set
58594 -# CONFIG_INPUT_TABLET is not set
58595 -# CONFIG_INPUT_TOUCHSCREEN is not set
58596 -# CONFIG_INPUT_MISC is not set
58597 -
58598 -#
58599 -# Hardware I/O ports
58600 -#
58601 -# CONFIG_SERIO is not set
58602 -# CONFIG_GAMEPORT is not set
58603 -
58604 -#
58605 -# Character devices
58606 -#
58607 -# CONFIG_VT is not set
58608 -# CONFIG_SERIAL_NONSTANDARD is not set
58609 -# CONFIG_NOZOMI is not set
58610 -
58611 -#
58612 -# Serial drivers
58613 -#
58614 -CONFIG_SERIAL_8250=y
58615 -CONFIG_SERIAL_8250_CONSOLE=y
58616 -CONFIG_SERIAL_8250_PCI=y
58617 -CONFIG_SERIAL_8250_NR_UARTS=4
58618 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
58619 -# CONFIG_SERIAL_8250_EXTENDED is not set
58620 -
58621 -#
58622 -# Non-8250 serial port support
58623 -#
58624 -# CONFIG_SERIAL_UARTLITE is not set
58625 -CONFIG_SERIAL_CORE=y
58626 -CONFIG_SERIAL_CORE_CONSOLE=y
58627 -# CONFIG_SERIAL_JSM is not set
58628 -# CONFIG_SERIAL_OF_PLATFORM is not set
58629 -# CONFIG_SERIAL_QE is not set
58630 -CONFIG_UNIX98_PTYS=y
58631 -CONFIG_LEGACY_PTYS=y
58632 -CONFIG_LEGACY_PTY_COUNT=256
58633 -# CONFIG_IPMI_HANDLER is not set
58634 -CONFIG_HW_RANDOM=y
58635 -# CONFIG_NVRAM is not set
58636 -CONFIG_GEN_RTC=y
58637 -# CONFIG_GEN_RTC_X is not set
58638 -# CONFIG_R3964 is not set
58639 -# CONFIG_APPLICOM is not set
58640 -# CONFIG_RAW_DRIVER is not set
58641 -# CONFIG_TCG_TPM is not set
58642 -CONFIG_DEVPORT=y
58643 -CONFIG_I2C=y
58644 -CONFIG_I2C_BOARDINFO=y
58645 -CONFIG_I2C_CHARDEV=y
58646 -
58647 -#
58648 -# I2C Algorithms
58649 -#
58650 -# CONFIG_I2C_ALGOBIT is not set
58651 -# CONFIG_I2C_ALGOPCF is not set
58652 -# CONFIG_I2C_ALGOPCA is not set
58653 -
58654 -#
58655 -# I2C Hardware Bus support
58656 -#
58657 -# CONFIG_I2C_ALI1535 is not set
58658 -# CONFIG_I2C_ALI1563 is not set
58659 -# CONFIG_I2C_ALI15X3 is not set
58660 -# CONFIG_I2C_AMD756 is not set
58661 -# CONFIG_I2C_AMD8111 is not set
58662 -# CONFIG_I2C_I801 is not set
58663 -# CONFIG_I2C_I810 is not set
58664 -# CONFIG_I2C_PIIX4 is not set
58665 -CONFIG_I2C_MPC=y
58666 -# CONFIG_I2C_NFORCE2 is not set
58667 -# CONFIG_I2C_OCORES is not set
58668 -# CONFIG_I2C_PARPORT_LIGHT is not set
58669 -# CONFIG_I2C_PROSAVAGE is not set
58670 -# CONFIG_I2C_SAVAGE4 is not set
58671 -# CONFIG_I2C_SIMTEC is not set
58672 -# CONFIG_I2C_SIS5595 is not set
58673 -# CONFIG_I2C_SIS630 is not set
58674 -# CONFIG_I2C_SIS96X is not set
58675 -# CONFIG_I2C_TAOS_EVM is not set
58676 -# CONFIG_I2C_STUB is not set
58677 -# CONFIG_I2C_TINY_USB is not set
58678 -# CONFIG_I2C_VIA is not set
58679 -# CONFIG_I2C_VIAPRO is not set
58680 -# CONFIG_I2C_VOODOO3 is not set
58681 -
58682 -#
58683 -# Miscellaneous I2C Chip support
58684 -#
58685 -# CONFIG_DS1682 is not set
58686 -# CONFIG_SENSORS_EEPROM is not set
58687 -# CONFIG_SENSORS_PCF8574 is not set
58688 -# CONFIG_PCF8575 is not set
58689 -# CONFIG_SENSORS_PCF8591 is not set
58690 -# CONFIG_TPS65010 is not set
58691 -# CONFIG_SENSORS_MAX6875 is not set
58692 -# CONFIG_SENSORS_TSL2550 is not set
58693 -# CONFIG_I2C_DEBUG_CORE is not set
58694 -# CONFIG_I2C_DEBUG_ALGO is not set
58695 -# CONFIG_I2C_DEBUG_BUS is not set
58696 -# CONFIG_I2C_DEBUG_CHIP is not set
58697 -
58698 -#
58699 -# SPI support
58700 -#
58701 -CONFIG_SPI=y
58702 -CONFIG_SPI_MASTER=y
58703 -
58704 -#
58705 -# SPI Master Controller Drivers
58706 -#
58707 -CONFIG_SPI_BITBANG=y
58708 -CONFIG_SPI_MPC83xx=y
58709 -
58710 -#
58711 -# SPI Protocol Masters
58712 -#
58713 -# CONFIG_SPI_AT25 is not set
58714 -# CONFIG_SPI_SPIDEV is not set
58715 -# CONFIG_SPI_TLE62X0 is not set
58716 -# CONFIG_W1 is not set
58717 -# CONFIG_POWER_SUPPLY is not set
58718 -CONFIG_HWMON=y
58719 -# CONFIG_HWMON_VID is not set
58720 -# CONFIG_SENSORS_AD7418 is not set
58721 -# CONFIG_SENSORS_ADM1021 is not set
58722 -# CONFIG_SENSORS_ADM1025 is not set
58723 -# CONFIG_SENSORS_ADM1026 is not set
58724 -# CONFIG_SENSORS_ADM1029 is not set
58725 -# CONFIG_SENSORS_ADM1031 is not set
58726 -# CONFIG_SENSORS_ADM9240 is not set
58727 -# CONFIG_SENSORS_ADT7470 is not set
58728 -# CONFIG_SENSORS_ADT7473 is not set
58729 -# CONFIG_SENSORS_ATXP1 is not set
58730 -# CONFIG_SENSORS_DS1621 is not set
58731 -# CONFIG_SENSORS_I5K_AMB is not set
58732 -# CONFIG_SENSORS_F71805F is not set
58733 -# CONFIG_SENSORS_F71882FG is not set
58734 -# CONFIG_SENSORS_F75375S is not set
58735 -# CONFIG_SENSORS_GL518SM is not set
58736 -# CONFIG_SENSORS_GL520SM is not set
58737 -# CONFIG_SENSORS_IT87 is not set
58738 -# CONFIG_SENSORS_LM63 is not set
58739 -# CONFIG_SENSORS_LM70 is not set
58740 -# CONFIG_SENSORS_LM75 is not set
58741 -# CONFIG_SENSORS_LM77 is not set
58742 -# CONFIG_SENSORS_LM78 is not set
58743 -# CONFIG_SENSORS_LM80 is not set
58744 -# CONFIG_SENSORS_LM83 is not set
58745 -# CONFIG_SENSORS_LM85 is not set
58746 -# CONFIG_SENSORS_LM87 is not set
58747 -# CONFIG_SENSORS_LM90 is not set
58748 -# CONFIG_SENSORS_LM92 is not set
58749 -# CONFIG_SENSORS_LM93 is not set
58750 -# CONFIG_SENSORS_MAX1619 is not set
58751 -# CONFIG_SENSORS_MAX6650 is not set
58752 -# CONFIG_SENSORS_PC87360 is not set
58753 -# CONFIG_SENSORS_PC87427 is not set
58754 -# CONFIG_SENSORS_SIS5595 is not set
58755 -# CONFIG_SENSORS_DME1737 is not set
58756 -# CONFIG_SENSORS_SMSC47M1 is not set
58757 -# CONFIG_SENSORS_SMSC47M192 is not set
58758 -# CONFIG_SENSORS_SMSC47B397 is not set
58759 -# CONFIG_SENSORS_ADS7828 is not set
58760 -# CONFIG_SENSORS_THMC50 is not set
58761 -# CONFIG_SENSORS_VIA686A is not set
58762 -# CONFIG_SENSORS_VT1211 is not set
58763 -# CONFIG_SENSORS_VT8231 is not set
58764 -# CONFIG_SENSORS_W83781D is not set
58765 -# CONFIG_SENSORS_W83791D is not set
58766 -# CONFIG_SENSORS_W83792D is not set
58767 -# CONFIG_SENSORS_W83793 is not set
58768 -# CONFIG_SENSORS_W83L785TS is not set
58769 -# CONFIG_SENSORS_W83L786NG is not set
58770 -# CONFIG_SENSORS_W83627HF is not set
58771 -# CONFIG_SENSORS_W83627EHF is not set
58772 -# CONFIG_HWMON_DEBUG_CHIP is not set
58773 -# CONFIG_THERMAL is not set
58774 -CONFIG_WATCHDOG=y
58775 -# CONFIG_WATCHDOG_NOWAYOUT is not set
58776 -
58777 -#
58778 -# Watchdog Device Drivers
58779 -#
58780 -# CONFIG_SOFT_WATCHDOG is not set
58781 -CONFIG_83xx_WDT=y
58782 -
58783 -#
58784 -# PCI-based Watchdog Cards
58785 -#
58786 -# CONFIG_PCIPCWATCHDOG is not set
58787 -# CONFIG_WDTPCI is not set
58788 -
58789 -#
58790 -# USB-based Watchdog Cards
58791 -#
58792 -# CONFIG_USBPCWATCHDOG is not set
58793 -
58794 -#
58795 -# Sonics Silicon Backplane
58796 -#
58797 -CONFIG_SSB_POSSIBLE=y
58798 -# CONFIG_SSB is not set
58799 -
58800 -#
58801 -# Multifunction device drivers
58802 -#
58803 -# CONFIG_MFD_SM501 is not set
58804 -
58805 -#
58806 -# Multimedia devices
58807 -#
58808 -# CONFIG_VIDEO_DEV is not set
58809 -# CONFIG_DVB_CORE is not set
58810 -CONFIG_DAB=y
58811 -# CONFIG_USB_DABUSB is not set
58812 -
58813 -#
58814 -# Graphics support
58815 -#
58816 -# CONFIG_AGP is not set
58817 -# CONFIG_DRM is not set
58818 -# CONFIG_VGASTATE is not set
58819 -CONFIG_VIDEO_OUTPUT_CONTROL=m
58820 -# CONFIG_FB is not set
58821 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
58822 -
58823 -#
58824 -# Display device support
58825 -#
58826 -# CONFIG_DISPLAY_SUPPORT is not set
58827 -
58828 -#
58829 -# Sound
58830 -#
58831 -# CONFIG_SOUND is not set
58832 -CONFIG_HID_SUPPORT=y
58833 -CONFIG_HID=y
58834 -# CONFIG_HID_DEBUG is not set
58835 -# CONFIG_HIDRAW is not set
58836 -
58837 -#
58838 -# USB Input Devices
58839 -#
58840 -# CONFIG_USB_HID is not set
58841 -
58842 -#
58843 -# USB HID Boot Protocol drivers
58844 -#
58845 -# CONFIG_USB_KBD is not set
58846 -# CONFIG_USB_MOUSE is not set
58847 -CONFIG_USB_SUPPORT=y
58848 -CONFIG_USB_ARCH_HAS_HCD=y
58849 -CONFIG_USB_ARCH_HAS_OHCI=y
58850 -CONFIG_USB_ARCH_HAS_EHCI=y
58851 -CONFIG_USB=y
58852 -# CONFIG_USB_DEBUG is not set
58853 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
58854 -
58855 -#
58856 -# Miscellaneous USB options
58857 -#
58858 -CONFIG_USB_DEVICEFS=y
58859 -CONFIG_USB_DEVICE_CLASS=y
58860 -# CONFIG_USB_DYNAMIC_MINORS is not set
58861 -# CONFIG_USB_OTG is not set
58862 -
58863 -#
58864 -# USB Host Controller Drivers
58865 -#
58866 -CONFIG_USB_EHCI_HCD=y
58867 -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
58868 -# CONFIG_USB_EHCI_TT_NEWSCHED is not set
58869 -# CONFIG_USB_EHCI_FSL is not set
58870 -CONFIG_USB_EHCI_HCD_PPC_OF=y
58871 -# CONFIG_USB_ISP116X_HCD is not set
58872 -CONFIG_USB_OHCI_HCD=y
58873 -CONFIG_USB_OHCI_HCD_PPC_OF=y
58874 -CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
58875 -# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set
58876 -CONFIG_USB_OHCI_HCD_PCI=y
58877 -CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
58878 -CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
58879 -CONFIG_USB_OHCI_LITTLE_ENDIAN=y
58880 -# CONFIG_USB_UHCI_HCD is not set
58881 -# CONFIG_USB_SL811_HCD is not set
58882 -# CONFIG_USB_R8A66597_HCD is not set
58883 -
58884 -#
58885 -# USB Device Class drivers
58886 -#
58887 -# CONFIG_USB_ACM is not set
58888 -# CONFIG_USB_PRINTER is not set
58889 -
58890 -#
58891 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
58892 -#
58893 -
58894 -#
58895 -# may also be needed; see USB_STORAGE Help for more information
58896 -#
58897 -CONFIG_USB_STORAGE=y
58898 -# CONFIG_USB_STORAGE_DEBUG is not set
58899 -# CONFIG_USB_STORAGE_DATAFAB is not set
58900 -# CONFIG_USB_STORAGE_FREECOM is not set
58901 -# CONFIG_USB_STORAGE_ISD200 is not set
58902 -# CONFIG_USB_STORAGE_DPCM is not set
58903 -# CONFIG_USB_STORAGE_USBAT is not set
58904 -# CONFIG_USB_STORAGE_SDDR09 is not set
58905 -# CONFIG_USB_STORAGE_SDDR55 is not set
58906 -# CONFIG_USB_STORAGE_JUMPSHOT is not set
58907 -# CONFIG_USB_STORAGE_ALAUDA is not set
58908 -# CONFIG_USB_STORAGE_KARMA is not set
58909 -# CONFIG_USB_LIBUSUAL is not set
58910 -
58911 -#
58912 -# USB Imaging devices
58913 -#
58914 -# CONFIG_USB_MDC800 is not set
58915 -# CONFIG_USB_MICROTEK is not set
58916 -CONFIG_USB_MON=y
58917 -
58918 -#
58919 -# USB port drivers
58920 -#
58921 -# CONFIG_USB_SERIAL is not set
58922 -
58923 -#
58924 -# USB Miscellaneous drivers
58925 -#
58926 -# CONFIG_USB_EMI62 is not set
58927 -# CONFIG_USB_EMI26 is not set
58928 -# CONFIG_USB_ADUTUX is not set
58929 -# CONFIG_USB_AUERSWALD is not set
58930 -# CONFIG_USB_RIO500 is not set
58931 -# CONFIG_USB_LEGOTOWER is not set
58932 -# CONFIG_USB_LCD is not set
58933 -# CONFIG_USB_BERRY_CHARGE is not set
58934 -# CONFIG_USB_LED is not set
58935 -# CONFIG_USB_CYPRESS_CY7C63 is not set
58936 -# CONFIG_USB_CYTHERM is not set
58937 -# CONFIG_USB_PHIDGET is not set
58938 -# CONFIG_USB_IDMOUSE is not set
58939 -# CONFIG_USB_FTDI_ELAN is not set
58940 -# CONFIG_USB_APPLEDISPLAY is not set
58941 -# CONFIG_USB_SISUSBVGA is not set
58942 -# CONFIG_USB_LD is not set
58943 -# CONFIG_USB_TRANCEVIBRATOR is not set
58944 -# CONFIG_USB_IOWARRIOR is not set
58945 -# CONFIG_USB_TEST is not set
58946 -# CONFIG_USB_GADGET is not set
58947 -CONFIG_MMC=y
58948 -# CONFIG_MMC_DEBUG is not set
58949 -# CONFIG_MMC_UNSAFE_RESUME is not set
58950 -
58951 -#
58952 -# MMC/SD Card Drivers
58953 -#
58954 -CONFIG_MMC_BLOCK=y
58955 -CONFIG_MMC_BLOCK_BOUNCE=y
58956 -# CONFIG_SDIO_UART is not set
58957 -
58958 -#
58959 -# MMC/SD Host Controller Drivers
58960 -#
58961 -# CONFIG_MMC_SDHCI is not set
58962 -# CONFIG_MMC_WBSD is not set
58963 -# CONFIG_MMC_TIFM_SD is not set
58964 -CONFIG_MMC_SPI=y
58965 -# CONFIG_MEMSTICK is not set
58966 -# CONFIG_NEW_LEDS is not set
58967 -# CONFIG_INFINIBAND is not set
58968 -# CONFIG_EDAC is not set
58969 -# CONFIG_RTC_CLASS is not set
58970 -# CONFIG_DMADEVICES is not set
58971 -
58972 -#
58973 -# Userspace I/O
58974 -#
58975 -# CONFIG_UIO is not set
58976 -
58977 -#
58978 -# File systems
58979 -#
58980 -CONFIG_EXT2_FS=y
58981 -# CONFIG_EXT2_FS_XATTR is not set
58982 -# CONFIG_EXT2_FS_XIP is not set
58983 -CONFIG_EXT3_FS=y
58984 -CONFIG_EXT3_FS_XATTR=y
58985 -# CONFIG_EXT3_FS_POSIX_ACL is not set
58986 -# CONFIG_EXT3_FS_SECURITY is not set
58987 -# CONFIG_EXT4DEV_FS is not set
58988 -CONFIG_JBD=y
58989 -CONFIG_FS_MBCACHE=y
58990 -# CONFIG_REISERFS_FS is not set
58991 -# CONFIG_JFS_FS is not set
58992 -# CONFIG_FS_POSIX_ACL is not set
58993 -# CONFIG_XFS_FS is not set
58994 -# CONFIG_GFS2_FS is not set
58995 -# CONFIG_OCFS2_FS is not set
58996 -CONFIG_DNOTIFY=y
58997 -CONFIG_INOTIFY=y
58998 -CONFIG_INOTIFY_USER=y
58999 -# CONFIG_QUOTA is not set
59000 -# CONFIG_AUTOFS_FS is not set
59001 -# CONFIG_AUTOFS4_FS is not set
59002 -# CONFIG_FUSE_FS is not set
59003 -
59004 -#
59005 -# CD-ROM/DVD Filesystems
59006 -#
59007 -# CONFIG_ISO9660_FS is not set
59008 -# CONFIG_UDF_FS is not set
59009 -
59010 -#
59011 -# DOS/FAT/NT Filesystems
59012 -#
59013 -CONFIG_FAT_FS=y
59014 -CONFIG_MSDOS_FS=y
59015 -CONFIG_VFAT_FS=y
59016 -CONFIG_FAT_DEFAULT_CODEPAGE=437
59017 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
59018 -# CONFIG_NTFS_FS is not set
59019 -
59020 -#
59021 -# Pseudo filesystems
59022 -#
59023 -CONFIG_PROC_FS=y
59024 -CONFIG_PROC_KCORE=y
59025 -CONFIG_PROC_SYSCTL=y
59026 -CONFIG_SYSFS=y
59027 -CONFIG_TMPFS=y
59028 -# CONFIG_TMPFS_POSIX_ACL is not set
59029 -# CONFIG_HUGETLB_PAGE is not set
59030 -# CONFIG_CONFIGFS_FS is not set
59031 -
59032 -#
59033 -# Miscellaneous filesystems
59034 -#
59035 -# CONFIG_ADFS_FS is not set
59036 -# CONFIG_AFFS_FS is not set
59037 -# CONFIG_HFS_FS is not set
59038 -# CONFIG_HFSPLUS_FS is not set
59039 -# CONFIG_BEFS_FS is not set
59040 -# CONFIG_BFS_FS is not set
59041 -# CONFIG_EFS_FS is not set
59042 -# CONFIG_CRAMFS is not set
59043 -# CONFIG_VXFS_FS is not set
59044 -# CONFIG_MINIX_FS is not set
59045 -# CONFIG_HPFS_FS is not set
59046 -# CONFIG_QNX4FS_FS is not set
59047 -# CONFIG_ROMFS_FS is not set
59048 -# CONFIG_SYSV_FS is not set
59049 -# CONFIG_UFS_FS is not set
59050 -CONFIG_NETWORK_FILESYSTEMS=y
59051 -CONFIG_NFS_FS=y
59052 -CONFIG_NFS_V3=y
59053 -# CONFIG_NFS_V3_ACL is not set
59054 -CONFIG_NFS_V4=y
59055 -# CONFIG_NFS_DIRECTIO is not set
59056 -# CONFIG_NFSD is not set
59057 -CONFIG_ROOT_NFS=y
59058 -CONFIG_LOCKD=y
59059 -CONFIG_LOCKD_V4=y
59060 -CONFIG_NFS_COMMON=y
59061 -CONFIG_SUNRPC=y
59062 -CONFIG_SUNRPC_GSS=y
59063 -# CONFIG_SUNRPC_BIND34 is not set
59064 -CONFIG_RPCSEC_GSS_KRB5=y
59065 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
59066 -# CONFIG_SMB_FS is not set
59067 -# CONFIG_CIFS is not set
59068 -# CONFIG_NCP_FS is not set
59069 -# CONFIG_CODA_FS is not set
59070 -# CONFIG_AFS_FS is not set
59071 -
59072 -#
59073 -# Partition Types
59074 -#
59075 -CONFIG_PARTITION_ADVANCED=y
59076 -# CONFIG_ACORN_PARTITION is not set
59077 -# CONFIG_OSF_PARTITION is not set
59078 -# CONFIG_AMIGA_PARTITION is not set
59079 -# CONFIG_ATARI_PARTITION is not set
59080 -# CONFIG_MAC_PARTITION is not set
59081 -CONFIG_MSDOS_PARTITION=y
59082 -# CONFIG_BSD_DISKLABEL is not set
59083 -# CONFIG_MINIX_SUBPARTITION is not set
59084 -# CONFIG_SOLARIS_X86_PARTITION is not set
59085 -# CONFIG_UNIXWARE_DISKLABEL is not set
59086 -CONFIG_LDM_PARTITION=y
59087 -# CONFIG_LDM_DEBUG is not set
59088 -# CONFIG_SGI_PARTITION is not set
59089 -# CONFIG_ULTRIX_PARTITION is not set
59090 -# CONFIG_SUN_PARTITION is not set
59091 -# CONFIG_KARMA_PARTITION is not set
59092 -# CONFIG_EFI_PARTITION is not set
59093 -# CONFIG_SYSV68_PARTITION is not set
59094 -CONFIG_NLS=y
59095 -CONFIG_NLS_DEFAULT="iso8859-1"
59096 -CONFIG_NLS_CODEPAGE_437=y
59097 -# CONFIG_NLS_CODEPAGE_737 is not set
59098 -# CONFIG_NLS_CODEPAGE_775 is not set
59099 -# CONFIG_NLS_CODEPAGE_850 is not set
59100 -# CONFIG_NLS_CODEPAGE_852 is not set
59101 -# CONFIG_NLS_CODEPAGE_855 is not set
59102 -# CONFIG_NLS_CODEPAGE_857 is not set
59103 -# CONFIG_NLS_CODEPAGE_860 is not set
59104 -# CONFIG_NLS_CODEPAGE_861 is not set
59105 -# CONFIG_NLS_CODEPAGE_862 is not set
59106 -# CONFIG_NLS_CODEPAGE_863 is not set
59107 -# CONFIG_NLS_CODEPAGE_864 is not set
59108 -# CONFIG_NLS_CODEPAGE_865 is not set
59109 -# CONFIG_NLS_CODEPAGE_866 is not set
59110 -# CONFIG_NLS_CODEPAGE_869 is not set
59111 -# CONFIG_NLS_CODEPAGE_936 is not set
59112 -# CONFIG_NLS_CODEPAGE_950 is not set
59113 -CONFIG_NLS_CODEPAGE_932=y
59114 -# CONFIG_NLS_CODEPAGE_949 is not set
59115 -# CONFIG_NLS_CODEPAGE_874 is not set
59116 -CONFIG_NLS_ISO8859_8=y
59117 -# CONFIG_NLS_CODEPAGE_1250 is not set
59118 -# CONFIG_NLS_CODEPAGE_1251 is not set
59119 -# CONFIG_NLS_ASCII is not set
59120 -CONFIG_NLS_ISO8859_1=y
59121 -# CONFIG_NLS_ISO8859_2 is not set
59122 -# CONFIG_NLS_ISO8859_3 is not set
59123 -# CONFIG_NLS_ISO8859_4 is not set
59124 -# CONFIG_NLS_ISO8859_5 is not set
59125 -# CONFIG_NLS_ISO8859_6 is not set
59126 -# CONFIG_NLS_ISO8859_7 is not set
59127 -# CONFIG_NLS_ISO8859_9 is not set
59128 -# CONFIG_NLS_ISO8859_13 is not set
59129 -# CONFIG_NLS_ISO8859_14 is not set
59130 -# CONFIG_NLS_ISO8859_15 is not set
59131 -# CONFIG_NLS_KOI8_R is not set
59132 -# CONFIG_NLS_KOI8_U is not set
59133 -# CONFIG_NLS_UTF8 is not set
59134 -# CONFIG_DLM is not set
59135 -CONFIG_UCC_FAST=y
59136 -CONFIG_UCC=y
59137 -
59138 -#
59139 -# Library routines
59140 -#
59141 -CONFIG_BITREVERSE=y
59142 -# CONFIG_CRC_CCITT is not set
59143 -# CONFIG_CRC16 is not set
59144 -CONFIG_CRC_ITU_T=y
59145 -CONFIG_CRC32=y
59146 -CONFIG_CRC7=y
59147 -# CONFIG_LIBCRC32C is not set
59148 -CONFIG_PLIST=y
59149 -CONFIG_HAS_IOMEM=y
59150 -CONFIG_HAS_IOPORT=y
59151 -CONFIG_HAS_DMA=y
59152 -
59153 -#
59154 -# Kernel hacking
59155 -#
59156 -# CONFIG_PRINTK_TIME is not set
59157 -CONFIG_ENABLE_WARN_DEPRECATED=y
59158 -CONFIG_ENABLE_MUST_CHECK=y
59159 -# CONFIG_MAGIC_SYSRQ is not set
59160 -# CONFIG_UNUSED_SYMBOLS is not set
59161 -# CONFIG_DEBUG_FS is not set
59162 -# CONFIG_HEADERS_CHECK is not set
59163 -# CONFIG_DEBUG_KERNEL is not set
59164 -# CONFIG_SLUB_DEBUG_ON is not set
59165 -# CONFIG_SLUB_STATS is not set
59166 -# CONFIG_DEBUG_BUGVERBOSE is not set
59167 -# CONFIG_SAMPLES is not set
59168 -# CONFIG_PPC_EARLY_DEBUG is not set
59169 -
59170 -#
59171 -# Security options
59172 -#
59173 -# CONFIG_KEYS is not set
59174 -# CONFIG_SECURITY is not set
59175 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
59176 -CONFIG_CRYPTO=y
59177 -CONFIG_CRYPTO_ALGAPI=y
59178 -CONFIG_CRYPTO_BLKCIPHER=y
59179 -# CONFIG_CRYPTO_SEQIV is not set
59180 -CONFIG_CRYPTO_MANAGER=y
59181 -# CONFIG_CRYPTO_HMAC is not set
59182 -# CONFIG_CRYPTO_XCBC is not set
59183 -# CONFIG_CRYPTO_NULL is not set
59184 -# CONFIG_CRYPTO_MD4 is not set
59185 -CONFIG_CRYPTO_MD5=y
59186 -# CONFIG_CRYPTO_SHA1 is not set
59187 -# CONFIG_CRYPTO_SHA256 is not set
59188 -# CONFIG_CRYPTO_SHA512 is not set
59189 -# CONFIG_CRYPTO_WP512 is not set
59190 -# CONFIG_CRYPTO_TGR192 is not set
59191 -# CONFIG_CRYPTO_GF128MUL is not set
59192 -CONFIG_CRYPTO_ECB=m
59193 -CONFIG_CRYPTO_CBC=y
59194 -CONFIG_CRYPTO_PCBC=m
59195 -# CONFIG_CRYPTO_LRW is not set
59196 -# CONFIG_CRYPTO_XTS is not set
59197 -# CONFIG_CRYPTO_CTR is not set
59198 -# CONFIG_CRYPTO_GCM is not set
59199 -# CONFIG_CRYPTO_CCM is not set
59200 -# CONFIG_CRYPTO_CRYPTD is not set
59201 -CONFIG_CRYPTO_DES=y
59202 -# CONFIG_CRYPTO_FCRYPT is not set
59203 -# CONFIG_CRYPTO_BLOWFISH is not set
59204 -# CONFIG_CRYPTO_TWOFISH is not set
59205 -# CONFIG_CRYPTO_SERPENT is not set
59206 -# CONFIG_CRYPTO_AES is not set
59207 -# CONFIG_CRYPTO_CAST5 is not set
59208 -# CONFIG_CRYPTO_CAST6 is not set
59209 -# CONFIG_CRYPTO_TEA is not set
59210 -# CONFIG_CRYPTO_ARC4 is not set
59211 -# CONFIG_CRYPTO_KHAZAD is not set
59212 -# CONFIG_CRYPTO_ANUBIS is not set
59213 -# CONFIG_CRYPTO_SEED is not set
59214 -# CONFIG_CRYPTO_SALSA20 is not set
59215 -# CONFIG_CRYPTO_DEFLATE is not set
59216 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
59217 -# CONFIG_CRYPTO_CRC32C is not set
59218 -# CONFIG_CRYPTO_CAMELLIA is not set
59219 -# CONFIG_CRYPTO_TEST is not set
59220 -# CONFIG_CRYPTO_AUTHENC is not set
59221 -# CONFIG_CRYPTO_LZO is not set
59222 -CONFIG_CRYPTO_HW=y
59223 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
59224 -# CONFIG_PPC_CLOCK is not set
59225 -CONFIG_PPC_LIB_RHEAP=y
59226 Index: linux-2.6.25.4/arch/powerpc/configs/mpc834x_itx_defconfig
59227 ===================================================================
59228 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc834x_itx_defconfig
59229 +++ /dev/null
59230 @@ -1,1295 +0,0 @@
59231 -#
59232 -# Automatically generated make config: don't edit
59233 -# Linux kernel version: 2.6.25-rc6
59234 -# Mon Mar 24 08:48:17 2008
59235 -#
59236 -# CONFIG_PPC64 is not set
59237 -
59238 -#
59239 -# Processor support
59240 -#
59241 -CONFIG_6xx=y
59242 -# CONFIG_PPC_85xx is not set
59243 -# CONFIG_PPC_8xx is not set
59244 -# CONFIG_40x is not set
59245 -# CONFIG_44x is not set
59246 -# CONFIG_E200 is not set
59247 -CONFIG_PPC_FPU=y
59248 -# CONFIG_FSL_EMB_PERFMON is not set
59249 -CONFIG_PPC_STD_MMU=y
59250 -CONFIG_PPC_STD_MMU_32=y
59251 -# CONFIG_PPC_MM_SLICES is not set
59252 -# CONFIG_SMP is not set
59253 -CONFIG_PPC32=y
59254 -CONFIG_WORD_SIZE=32
59255 -CONFIG_PPC_MERGE=y
59256 -CONFIG_MMU=y
59257 -CONFIG_GENERIC_CMOS_UPDATE=y
59258 -CONFIG_GENERIC_TIME=y
59259 -CONFIG_GENERIC_TIME_VSYSCALL=y
59260 -CONFIG_GENERIC_CLOCKEVENTS=y
59261 -CONFIG_GENERIC_HARDIRQS=y
59262 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
59263 -CONFIG_IRQ_PER_CPU=y
59264 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
59265 -CONFIG_ARCH_HAS_ILOG2_U32=y
59266 -CONFIG_GENERIC_HWEIGHT=y
59267 -CONFIG_GENERIC_CALIBRATE_DELAY=y
59268 -CONFIG_GENERIC_FIND_NEXT_BIT=y
59269 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
59270 -CONFIG_PPC=y
59271 -CONFIG_EARLY_PRINTK=y
59272 -CONFIG_GENERIC_NVRAM=y
59273 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
59274 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
59275 -CONFIG_PPC_OF=y
59276 -CONFIG_OF=y
59277 -CONFIG_PPC_UDBG_16550=y
59278 -# CONFIG_GENERIC_TBSYNC is not set
59279 -CONFIG_AUDIT_ARCH=y
59280 -CONFIG_GENERIC_BUG=y
59281 -CONFIG_DEFAULT_UIMAGE=y
59282 -# CONFIG_PPC_DCR_NATIVE is not set
59283 -# CONFIG_PPC_DCR_MMIO is not set
59284 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
59285 -
59286 -#
59287 -# General setup
59288 -#
59289 -CONFIG_EXPERIMENTAL=y
59290 -CONFIG_BROKEN_ON_SMP=y
59291 -CONFIG_INIT_ENV_ARG_LIMIT=32
59292 -CONFIG_LOCALVERSION=""
59293 -CONFIG_LOCALVERSION_AUTO=y
59294 -CONFIG_SWAP=y
59295 -CONFIG_SYSVIPC=y
59296 -CONFIG_SYSVIPC_SYSCTL=y
59297 -# CONFIG_POSIX_MQUEUE is not set
59298 -# CONFIG_BSD_PROCESS_ACCT is not set
59299 -# CONFIG_TASKSTATS is not set
59300 -# CONFIG_AUDIT is not set
59301 -# CONFIG_IKCONFIG is not set
59302 -CONFIG_LOG_BUF_SHIFT=14
59303 -# CONFIG_CGROUPS is not set
59304 -CONFIG_GROUP_SCHED=y
59305 -# CONFIG_FAIR_GROUP_SCHED is not set
59306 -# CONFIG_RT_GROUP_SCHED is not set
59307 -CONFIG_USER_SCHED=y
59308 -# CONFIG_CGROUP_SCHED is not set
59309 -CONFIG_SYSFS_DEPRECATED=y
59310 -CONFIG_SYSFS_DEPRECATED_V2=y
59311 -# CONFIG_RELAY is not set
59312 -# CONFIG_NAMESPACES is not set
59313 -CONFIG_BLK_DEV_INITRD=y
59314 -CONFIG_INITRAMFS_SOURCE=""
59315 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
59316 -CONFIG_SYSCTL=y
59317 -CONFIG_EMBEDDED=y
59318 -CONFIG_SYSCTL_SYSCALL=y
59319 -# CONFIG_KALLSYMS is not set
59320 -CONFIG_HOTPLUG=y
59321 -CONFIG_PRINTK=y
59322 -CONFIG_BUG=y
59323 -CONFIG_ELF_CORE=y
59324 -CONFIG_COMPAT_BRK=y
59325 -CONFIG_BASE_FULL=y
59326 -CONFIG_FUTEX=y
59327 -CONFIG_ANON_INODES=y
59328 -# CONFIG_EPOLL is not set
59329 -CONFIG_SIGNALFD=y
59330 -CONFIG_TIMERFD=y
59331 -CONFIG_EVENTFD=y
59332 -CONFIG_SHMEM=y
59333 -CONFIG_VM_EVENT_COUNTERS=y
59334 -CONFIG_SLUB_DEBUG=y
59335 -# CONFIG_SLAB is not set
59336 -CONFIG_SLUB=y
59337 -# CONFIG_SLOB is not set
59338 -# CONFIG_PROFILING is not set
59339 -# CONFIG_MARKERS is not set
59340 -CONFIG_HAVE_OPROFILE=y
59341 -CONFIG_HAVE_KPROBES=y
59342 -CONFIG_HAVE_KRETPROBES=y
59343 -CONFIG_PROC_PAGE_MONITOR=y
59344 -CONFIG_SLABINFO=y
59345 -CONFIG_RT_MUTEXES=y
59346 -# CONFIG_TINY_SHMEM is not set
59347 -CONFIG_BASE_SMALL=0
59348 -CONFIG_MODULES=y
59349 -CONFIG_MODULE_UNLOAD=y
59350 -# CONFIG_MODULE_FORCE_UNLOAD is not set
59351 -# CONFIG_MODVERSIONS is not set
59352 -# CONFIG_MODULE_SRCVERSION_ALL is not set
59353 -# CONFIG_KMOD is not set
59354 -CONFIG_BLOCK=y
59355 -# CONFIG_LBD is not set
59356 -# CONFIG_BLK_DEV_IO_TRACE is not set
59357 -# CONFIG_LSF is not set
59358 -# CONFIG_BLK_DEV_BSG is not set
59359 -
59360 -#
59361 -# IO Schedulers
59362 -#
59363 -CONFIG_IOSCHED_NOOP=y
59364 -CONFIG_IOSCHED_AS=y
59365 -CONFIG_IOSCHED_DEADLINE=y
59366 -CONFIG_IOSCHED_CFQ=y
59367 -CONFIG_DEFAULT_AS=y
59368 -# CONFIG_DEFAULT_DEADLINE is not set
59369 -# CONFIG_DEFAULT_CFQ is not set
59370 -# CONFIG_DEFAULT_NOOP is not set
59371 -CONFIG_DEFAULT_IOSCHED="anticipatory"
59372 -CONFIG_CLASSIC_RCU=y
59373 -
59374 -#
59375 -# Platform support
59376 -#
59377 -# CONFIG_PPC_MULTIPLATFORM is not set
59378 -# CONFIG_PPC_82xx is not set
59379 -CONFIG_PPC_83xx=y
59380 -# CONFIG_PPC_86xx is not set
59381 -# CONFIG_PPC_MPC512x is not set
59382 -# CONFIG_PPC_MPC5121 is not set
59383 -# CONFIG_PPC_CELL is not set
59384 -# CONFIG_PPC_CELL_NATIVE is not set
59385 -# CONFIG_PQ2ADS is not set
59386 -CONFIG_MPC83xx=y
59387 -# CONFIG_MPC831x_RDB is not set
59388 -# CONFIG_MPC832x_MDS is not set
59389 -# CONFIG_MPC832x_RDB is not set
59390 -# CONFIG_MPC834x_MDS is not set
59391 -CONFIG_MPC834x_ITX=y
59392 -# CONFIG_MPC836x_MDS is not set
59393 -# CONFIG_MPC837x_MDS is not set
59394 -# CONFIG_MPC837x_RDB is not set
59395 -# CONFIG_SBC834x is not set
59396 -CONFIG_PPC_MPC834x=y
59397 -CONFIG_IPIC=y
59398 -# CONFIG_MPIC is not set
59399 -# CONFIG_MPIC_WEIRD is not set
59400 -# CONFIG_PPC_I8259 is not set
59401 -# CONFIG_PPC_RTAS is not set
59402 -# CONFIG_MMIO_NVRAM is not set
59403 -# CONFIG_PPC_MPC106 is not set
59404 -# CONFIG_PPC_970_NAP is not set
59405 -# CONFIG_PPC_INDIRECT_IO is not set
59406 -# CONFIG_GENERIC_IOMAP is not set
59407 -# CONFIG_CPU_FREQ is not set
59408 -# CONFIG_FSL_ULI1575 is not set
59409 -
59410 -#
59411 -# Kernel options
59412 -#
59413 -# CONFIG_HIGHMEM is not set
59414 -CONFIG_TICK_ONESHOT=y
59415 -CONFIG_NO_HZ=y
59416 -CONFIG_HIGH_RES_TIMERS=y
59417 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
59418 -# CONFIG_HZ_100 is not set
59419 -CONFIG_HZ_250=y
59420 -# CONFIG_HZ_300 is not set
59421 -# CONFIG_HZ_1000 is not set
59422 -CONFIG_HZ=250
59423 -# CONFIG_SCHED_HRTICK is not set
59424 -CONFIG_PREEMPT_NONE=y
59425 -# CONFIG_PREEMPT_VOLUNTARY is not set
59426 -# CONFIG_PREEMPT is not set
59427 -CONFIG_BINFMT_ELF=y
59428 -# CONFIG_BINFMT_MISC is not set
59429 -# CONFIG_IOMMU_HELPER is not set
59430 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
59431 -CONFIG_ARCH_HAS_WALK_MEMORY=y
59432 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
59433 -CONFIG_ARCH_FLATMEM_ENABLE=y
59434 -CONFIG_ARCH_POPULATES_NODE_MAP=y
59435 -CONFIG_SELECT_MEMORY_MODEL=y
59436 -CONFIG_FLATMEM_MANUAL=y
59437 -# CONFIG_DISCONTIGMEM_MANUAL is not set
59438 -# CONFIG_SPARSEMEM_MANUAL is not set
59439 -CONFIG_FLATMEM=y
59440 -CONFIG_FLAT_NODE_MEM_MAP=y
59441 -# CONFIG_SPARSEMEM_STATIC is not set
59442 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
59443 -CONFIG_SPLIT_PTLOCK_CPUS=4
59444 -# CONFIG_RESOURCES_64BIT is not set
59445 -CONFIG_ZONE_DMA_FLAG=1
59446 -CONFIG_BOUNCE=y
59447 -CONFIG_VIRT_TO_BUS=y
59448 -CONFIG_PROC_DEVICETREE=y
59449 -# CONFIG_CMDLINE_BOOL is not set
59450 -# CONFIG_PM is not set
59451 -CONFIG_SECCOMP=y
59452 -CONFIG_ISA_DMA_API=y
59453 -
59454 -#
59455 -# Bus options
59456 -#
59457 -CONFIG_ZONE_DMA=y
59458 -CONFIG_GENERIC_ISA_DMA=y
59459 -CONFIG_PPC_INDIRECT_PCI=y
59460 -CONFIG_FSL_SOC=y
59461 -CONFIG_PCI=y
59462 -CONFIG_PCI_DOMAINS=y
59463 -CONFIG_PCI_SYSCALL=y
59464 -# CONFIG_PCIEPORTBUS is not set
59465 -CONFIG_ARCH_SUPPORTS_MSI=y
59466 -# CONFIG_PCI_MSI is not set
59467 -CONFIG_PCI_LEGACY=y
59468 -# CONFIG_PCCARD is not set
59469 -# CONFIG_HOTPLUG_PCI is not set
59470 -
59471 -#
59472 -# Advanced setup
59473 -#
59474 -# CONFIG_ADVANCED_OPTIONS is not set
59475 -
59476 -#
59477 -# Default settings for advanced configuration options are used
59478 -#
59479 -CONFIG_HIGHMEM_START=0xfe000000
59480 -CONFIG_LOWMEM_SIZE=0x30000000
59481 -CONFIG_KERNEL_START=0xc0000000
59482 -CONFIG_TASK_SIZE=0xc0000000
59483 -CONFIG_BOOT_LOAD=0x00800000
59484 -
59485 -#
59486 -# Networking
59487 -#
59488 -CONFIG_NET=y
59489 -
59490 -#
59491 -# Networking options
59492 -#
59493 -CONFIG_PACKET=y
59494 -# CONFIG_PACKET_MMAP is not set
59495 -CONFIG_UNIX=y
59496 -CONFIG_XFRM=y
59497 -# CONFIG_XFRM_USER is not set
59498 -# CONFIG_XFRM_SUB_POLICY is not set
59499 -# CONFIG_XFRM_MIGRATE is not set
59500 -# CONFIG_XFRM_STATISTICS is not set
59501 -# CONFIG_NET_KEY is not set
59502 -CONFIG_INET=y
59503 -CONFIG_IP_MULTICAST=y
59504 -# CONFIG_IP_ADVANCED_ROUTER is not set
59505 -CONFIG_IP_FIB_HASH=y
59506 -CONFIG_IP_PNP=y
59507 -CONFIG_IP_PNP_DHCP=y
59508 -CONFIG_IP_PNP_BOOTP=y
59509 -# CONFIG_IP_PNP_RARP is not set
59510 -# CONFIG_NET_IPIP is not set
59511 -# CONFIG_NET_IPGRE is not set
59512 -# CONFIG_IP_MROUTE is not set
59513 -# CONFIG_ARPD is not set
59514 -CONFIG_SYN_COOKIES=y
59515 -# CONFIG_INET_AH is not set
59516 -# CONFIG_INET_ESP is not set
59517 -# CONFIG_INET_IPCOMP is not set
59518 -# CONFIG_INET_XFRM_TUNNEL is not set
59519 -# CONFIG_INET_TUNNEL is not set
59520 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
59521 -CONFIG_INET_XFRM_MODE_TUNNEL=y
59522 -CONFIG_INET_XFRM_MODE_BEET=y
59523 -# CONFIG_INET_LRO is not set
59524 -CONFIG_INET_DIAG=y
59525 -CONFIG_INET_TCP_DIAG=y
59526 -# CONFIG_TCP_CONG_ADVANCED is not set
59527 -CONFIG_TCP_CONG_CUBIC=y
59528 -CONFIG_DEFAULT_TCP_CONG="cubic"
59529 -# CONFIG_TCP_MD5SIG is not set
59530 -# CONFIG_IPV6 is not set
59531 -# CONFIG_INET6_XFRM_TUNNEL is not set
59532 -# CONFIG_INET6_TUNNEL is not set
59533 -# CONFIG_NETWORK_SECMARK is not set
59534 -# CONFIG_NETFILTER is not set
59535 -# CONFIG_IP_DCCP is not set
59536 -# CONFIG_IP_SCTP is not set
59537 -# CONFIG_TIPC is not set
59538 -# CONFIG_ATM is not set
59539 -# CONFIG_BRIDGE is not set
59540 -# CONFIG_VLAN_8021Q is not set
59541 -# CONFIG_DECNET is not set
59542 -# CONFIG_LLC2 is not set
59543 -# CONFIG_IPX is not set
59544 -# CONFIG_ATALK is not set
59545 -# CONFIG_X25 is not set
59546 -# CONFIG_LAPB is not set
59547 -# CONFIG_ECONET is not set
59548 -# CONFIG_WAN_ROUTER is not set
59549 -# CONFIG_NET_SCHED is not set
59550 -
59551 -#
59552 -# Network testing
59553 -#
59554 -# CONFIG_NET_PKTGEN is not set
59555 -# CONFIG_HAMRADIO is not set
59556 -# CONFIG_CAN is not set
59557 -# CONFIG_IRDA is not set
59558 -# CONFIG_BT is not set
59559 -# CONFIG_AF_RXRPC is not set
59560 -
59561 -#
59562 -# Wireless
59563 -#
59564 -# CONFIG_CFG80211 is not set
59565 -# CONFIG_WIRELESS_EXT is not set
59566 -# CONFIG_MAC80211 is not set
59567 -# CONFIG_IEEE80211 is not set
59568 -# CONFIG_RFKILL is not set
59569 -# CONFIG_NET_9P is not set
59570 -
59571 -#
59572 -# Device Drivers
59573 -#
59574 -
59575 -#
59576 -# Generic Driver Options
59577 -#
59578 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
59579 -CONFIG_STANDALONE=y
59580 -CONFIG_PREVENT_FIRMWARE_BUILD=y
59581 -# CONFIG_FW_LOADER is not set
59582 -# CONFIG_SYS_HYPERVISOR is not set
59583 -# CONFIG_CONNECTOR is not set
59584 -CONFIG_MTD=y
59585 -# CONFIG_MTD_DEBUG is not set
59586 -# CONFIG_MTD_CONCAT is not set
59587 -# CONFIG_MTD_PARTITIONS is not set
59588 -
59589 -#
59590 -# User Modules And Translation Layers
59591 -#
59592 -CONFIG_MTD_CHAR=y
59593 -# CONFIG_MTD_BLKDEVS is not set
59594 -# CONFIG_MTD_BLOCK is not set
59595 -# CONFIG_MTD_BLOCK_RO is not set
59596 -# CONFIG_FTL is not set
59597 -# CONFIG_NFTL is not set
59598 -# CONFIG_INFTL is not set
59599 -# CONFIG_RFD_FTL is not set
59600 -# CONFIG_SSFDC is not set
59601 -# CONFIG_MTD_OOPS is not set
59602 -
59603 -#
59604 -# RAM/ROM/Flash chip drivers
59605 -#
59606 -CONFIG_MTD_CFI=y
59607 -# CONFIG_MTD_JEDECPROBE is not set
59608 -CONFIG_MTD_GEN_PROBE=y
59609 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
59610 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
59611 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
59612 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
59613 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
59614 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
59615 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
59616 -CONFIG_MTD_CFI_I1=y
59617 -CONFIG_MTD_CFI_I2=y
59618 -# CONFIG_MTD_CFI_I4 is not set
59619 -# CONFIG_MTD_CFI_I8 is not set
59620 -# CONFIG_MTD_CFI_INTELEXT is not set
59621 -CONFIG_MTD_CFI_AMDSTD=y
59622 -# CONFIG_MTD_CFI_STAA is not set
59623 -CONFIG_MTD_CFI_UTIL=y
59624 -# CONFIG_MTD_RAM is not set
59625 -# CONFIG_MTD_ROM is not set
59626 -# CONFIG_MTD_ABSENT is not set
59627 -
59628 -#
59629 -# Mapping drivers for chip access
59630 -#
59631 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
59632 -CONFIG_MTD_PHYSMAP=y
59633 -CONFIG_MTD_PHYSMAP_START=0xfe000000
59634 -CONFIG_MTD_PHYSMAP_LEN=0x1000000
59635 -CONFIG_MTD_PHYSMAP_BANKWIDTH=2
59636 -# CONFIG_MTD_PHYSMAP_OF is not set
59637 -# CONFIG_MTD_INTEL_VR_NOR is not set
59638 -# CONFIG_MTD_PLATRAM is not set
59639 -
59640 -#
59641 -# Self-contained MTD device drivers
59642 -#
59643 -# CONFIG_MTD_PMC551 is not set
59644 -# CONFIG_MTD_DATAFLASH is not set
59645 -# CONFIG_MTD_M25P80 is not set
59646 -# CONFIG_MTD_SLRAM is not set
59647 -# CONFIG_MTD_PHRAM is not set
59648 -# CONFIG_MTD_MTDRAM is not set
59649 -# CONFIG_MTD_BLOCK2MTD is not set
59650 -
59651 -#
59652 -# Disk-On-Chip Device Drivers
59653 -#
59654 -# CONFIG_MTD_DOC2000 is not set
59655 -# CONFIG_MTD_DOC2001 is not set
59656 -# CONFIG_MTD_DOC2001PLUS is not set
59657 -# CONFIG_MTD_NAND is not set
59658 -# CONFIG_MTD_ONENAND is not set
59659 -
59660 -#
59661 -# UBI - Unsorted block images
59662 -#
59663 -# CONFIG_MTD_UBI is not set
59664 -CONFIG_OF_DEVICE=y
59665 -# CONFIG_PARPORT is not set
59666 -CONFIG_BLK_DEV=y
59667 -# CONFIG_BLK_DEV_FD is not set
59668 -# CONFIG_BLK_CPQ_DA is not set
59669 -# CONFIG_BLK_CPQ_CISS_DA is not set
59670 -# CONFIG_BLK_DEV_DAC960 is not set
59671 -# CONFIG_BLK_DEV_UMEM is not set
59672 -# CONFIG_BLK_DEV_COW_COMMON is not set
59673 -CONFIG_BLK_DEV_LOOP=y
59674 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
59675 -# CONFIG_BLK_DEV_NBD is not set
59676 -# CONFIG_BLK_DEV_SX8 is not set
59677 -# CONFIG_BLK_DEV_UB is not set
59678 -CONFIG_BLK_DEV_RAM=y
59679 -CONFIG_BLK_DEV_RAM_COUNT=16
59680 -CONFIG_BLK_DEV_RAM_SIZE=32768
59681 -# CONFIG_BLK_DEV_XIP is not set
59682 -# CONFIG_CDROM_PKTCDVD is not set
59683 -# CONFIG_ATA_OVER_ETH is not set
59684 -CONFIG_MISC_DEVICES=y
59685 -# CONFIG_PHANTOM is not set
59686 -# CONFIG_EEPROM_93CX6 is not set
59687 -# CONFIG_SGI_IOC4 is not set
59688 -# CONFIG_TIFM_CORE is not set
59689 -# CONFIG_ENCLOSURE_SERVICES is not set
59690 -CONFIG_HAVE_IDE=y
59691 -CONFIG_IDE=y
59692 -CONFIG_IDE_MAX_HWIFS=4
59693 -# CONFIG_BLK_DEV_IDE is not set
59694 -# CONFIG_BLK_DEV_HD_ONLY is not set
59695 -# CONFIG_BLK_DEV_HD is not set
59696 -
59697 -#
59698 -# SCSI device support
59699 -#
59700 -# CONFIG_RAID_ATTRS is not set
59701 -CONFIG_SCSI=y
59702 -CONFIG_SCSI_DMA=y
59703 -# CONFIG_SCSI_TGT is not set
59704 -# CONFIG_SCSI_NETLINK is not set
59705 -CONFIG_SCSI_PROC_FS=y
59706 -
59707 -#
59708 -# SCSI support type (disk, tape, CD-ROM)
59709 -#
59710 -CONFIG_BLK_DEV_SD=y
59711 -# CONFIG_CHR_DEV_ST is not set
59712 -# CONFIG_CHR_DEV_OSST is not set
59713 -# CONFIG_BLK_DEV_SR is not set
59714 -CONFIG_CHR_DEV_SG=y
59715 -# CONFIG_CHR_DEV_SCH is not set
59716 -
59717 -#
59718 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
59719 -#
59720 -# CONFIG_SCSI_MULTI_LUN is not set
59721 -# CONFIG_SCSI_CONSTANTS is not set
59722 -# CONFIG_SCSI_LOGGING is not set
59723 -# CONFIG_SCSI_SCAN_ASYNC is not set
59724 -CONFIG_SCSI_WAIT_SCAN=m
59725 -
59726 -#
59727 -# SCSI Transports
59728 -#
59729 -CONFIG_SCSI_SPI_ATTRS=y
59730 -# CONFIG_SCSI_FC_ATTRS is not set
59731 -# CONFIG_SCSI_ISCSI_ATTRS is not set
59732 -# CONFIG_SCSI_SAS_LIBSAS is not set
59733 -# CONFIG_SCSI_SRP_ATTRS is not set
59734 -CONFIG_SCSI_LOWLEVEL=y
59735 -# CONFIG_ISCSI_TCP is not set
59736 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
59737 -# CONFIG_SCSI_3W_9XXX is not set
59738 -# CONFIG_SCSI_ACARD is not set
59739 -# CONFIG_SCSI_AACRAID is not set
59740 -# CONFIG_SCSI_AIC7XXX is not set
59741 -# CONFIG_SCSI_AIC7XXX_OLD is not set
59742 -# CONFIG_SCSI_AIC79XX is not set
59743 -# CONFIG_SCSI_AIC94XX is not set
59744 -# CONFIG_SCSI_DPT_I2O is not set
59745 -# CONFIG_SCSI_ADVANSYS is not set
59746 -# CONFIG_SCSI_ARCMSR is not set
59747 -# CONFIG_MEGARAID_NEWGEN is not set
59748 -# CONFIG_MEGARAID_LEGACY is not set
59749 -# CONFIG_MEGARAID_SAS is not set
59750 -# CONFIG_SCSI_HPTIOP is not set
59751 -# CONFIG_SCSI_BUSLOGIC is not set
59752 -# CONFIG_SCSI_DMX3191D is not set
59753 -# CONFIG_SCSI_EATA is not set
59754 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
59755 -# CONFIG_SCSI_GDTH is not set
59756 -# CONFIG_SCSI_IPS is not set
59757 -# CONFIG_SCSI_INITIO is not set
59758 -# CONFIG_SCSI_INIA100 is not set
59759 -# CONFIG_SCSI_MVSAS is not set
59760 -# CONFIG_SCSI_STEX is not set
59761 -# CONFIG_SCSI_SYM53C8XX_2 is not set
59762 -# CONFIG_SCSI_IPR is not set
59763 -# CONFIG_SCSI_QLOGIC_1280 is not set
59764 -# CONFIG_SCSI_QLA_FC is not set
59765 -# CONFIG_SCSI_QLA_ISCSI is not set
59766 -# CONFIG_SCSI_LPFC is not set
59767 -# CONFIG_SCSI_DC395x is not set
59768 -# CONFIG_SCSI_DC390T is not set
59769 -# CONFIG_SCSI_NSP32 is not set
59770 -# CONFIG_SCSI_DEBUG is not set
59771 -# CONFIG_SCSI_SRP is not set
59772 -CONFIG_ATA=y
59773 -# CONFIG_ATA_NONSTANDARD is not set
59774 -# CONFIG_SATA_AHCI is not set
59775 -# CONFIG_SATA_SVW is not set
59776 -# CONFIG_ATA_PIIX is not set
59777 -# CONFIG_SATA_MV is not set
59778 -# CONFIG_SATA_NV is not set
59779 -# CONFIG_PDC_ADMA is not set
59780 -# CONFIG_SATA_QSTOR is not set
59781 -# CONFIG_SATA_PROMISE is not set
59782 -# CONFIG_SATA_SX4 is not set
59783 -CONFIG_SATA_SIL=y
59784 -# CONFIG_SATA_SIL24 is not set
59785 -# CONFIG_SATA_SIS is not set
59786 -# CONFIG_SATA_ULI is not set
59787 -# CONFIG_SATA_VIA is not set
59788 -# CONFIG_SATA_VITESSE is not set
59789 -# CONFIG_SATA_INIC162X is not set
59790 -# CONFIG_SATA_FSL is not set
59791 -# CONFIG_PATA_ALI is not set
59792 -# CONFIG_PATA_AMD is not set
59793 -# CONFIG_PATA_ARTOP is not set
59794 -# CONFIG_PATA_ATIIXP is not set
59795 -# CONFIG_PATA_CMD640_PCI is not set
59796 -# CONFIG_PATA_CMD64X is not set
59797 -# CONFIG_PATA_CS5520 is not set
59798 -# CONFIG_PATA_CS5530 is not set
59799 -# CONFIG_PATA_CYPRESS is not set
59800 -# CONFIG_PATA_EFAR is not set
59801 -# CONFIG_ATA_GENERIC is not set
59802 -# CONFIG_PATA_HPT366 is not set
59803 -# CONFIG_PATA_HPT37X is not set
59804 -# CONFIG_PATA_HPT3X2N is not set
59805 -# CONFIG_PATA_HPT3X3 is not set
59806 -# CONFIG_PATA_IT821X is not set
59807 -# CONFIG_PATA_IT8213 is not set
59808 -# CONFIG_PATA_JMICRON is not set
59809 -# CONFIG_PATA_TRIFLEX is not set
59810 -# CONFIG_PATA_MARVELL is not set
59811 -# CONFIG_PATA_MPIIX is not set
59812 -# CONFIG_PATA_OLDPIIX is not set
59813 -# CONFIG_PATA_NETCELL is not set
59814 -# CONFIG_PATA_NINJA32 is not set
59815 -# CONFIG_PATA_NS87410 is not set
59816 -# CONFIG_PATA_NS87415 is not set
59817 -# CONFIG_PATA_OPTI is not set
59818 -# CONFIG_PATA_OPTIDMA is not set
59819 -# CONFIG_PATA_PDC_OLD is not set
59820 -# CONFIG_PATA_RADISYS is not set
59821 -# CONFIG_PATA_RZ1000 is not set
59822 -# CONFIG_PATA_SC1200 is not set
59823 -# CONFIG_PATA_SERVERWORKS is not set
59824 -# CONFIG_PATA_PDC2027X is not set
59825 -# CONFIG_PATA_SIL680 is not set
59826 -# CONFIG_PATA_SIS is not set
59827 -# CONFIG_PATA_VIA is not set
59828 -# CONFIG_PATA_WINBOND is not set
59829 -CONFIG_PATA_PLATFORM=y
59830 -CONFIG_PATA_OF_PLATFORM=y
59831 -CONFIG_MD=y
59832 -CONFIG_BLK_DEV_MD=y
59833 -CONFIG_MD_LINEAR=y
59834 -CONFIG_MD_RAID0=y
59835 -CONFIG_MD_RAID1=y
59836 -# CONFIG_MD_RAID10 is not set
59837 -# CONFIG_MD_RAID456 is not set
59838 -# CONFIG_MD_MULTIPATH is not set
59839 -# CONFIG_MD_FAULTY is not set
59840 -# CONFIG_BLK_DEV_DM is not set
59841 -# CONFIG_FUSION is not set
59842 -
59843 -#
59844 -# IEEE 1394 (FireWire) support
59845 -#
59846 -# CONFIG_FIREWIRE is not set
59847 -# CONFIG_IEEE1394 is not set
59848 -# CONFIG_I2O is not set
59849 -# CONFIG_MACINTOSH_DRIVERS is not set
59850 -CONFIG_NETDEVICES=y
59851 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
59852 -# CONFIG_DUMMY is not set
59853 -# CONFIG_BONDING is not set
59854 -# CONFIG_MACVLAN is not set
59855 -# CONFIG_EQUALIZER is not set
59856 -# CONFIG_TUN is not set
59857 -# CONFIG_VETH is not set
59858 -# CONFIG_ARCNET is not set
59859 -CONFIG_PHYLIB=y
59860 -
59861 -#
59862 -# MII PHY device drivers
59863 -#
59864 -# CONFIG_MARVELL_PHY is not set
59865 -# CONFIG_DAVICOM_PHY is not set
59866 -# CONFIG_QSEMI_PHY is not set
59867 -# CONFIG_LXT_PHY is not set
59868 -CONFIG_CICADA_PHY=y
59869 -# CONFIG_VITESSE_PHY is not set
59870 -# CONFIG_SMSC_PHY is not set
59871 -# CONFIG_BROADCOM_PHY is not set
59872 -# CONFIG_ICPLUS_PHY is not set
59873 -# CONFIG_REALTEK_PHY is not set
59874 -# CONFIG_FIXED_PHY is not set
59875 -# CONFIG_MDIO_BITBANG is not set
59876 -# CONFIG_NET_ETHERNET is not set
59877 -CONFIG_NETDEV_1000=y
59878 -# CONFIG_ACENIC is not set
59879 -# CONFIG_DL2K is not set
59880 -# CONFIG_E1000 is not set
59881 -# CONFIG_E1000E is not set
59882 -# CONFIG_E1000E_ENABLED is not set
59883 -# CONFIG_IP1000 is not set
59884 -# CONFIG_IGB is not set
59885 -# CONFIG_NS83820 is not set
59886 -# CONFIG_HAMACHI is not set
59887 -# CONFIG_YELLOWFIN is not set
59888 -# CONFIG_R8169 is not set
59889 -# CONFIG_SIS190 is not set
59890 -# CONFIG_SKGE is not set
59891 -# CONFIG_SKY2 is not set
59892 -# CONFIG_SK98LIN is not set
59893 -# CONFIG_VIA_VELOCITY is not set
59894 -# CONFIG_TIGON3 is not set
59895 -# CONFIG_BNX2 is not set
59896 -CONFIG_GIANFAR=y
59897 -CONFIG_GFAR_NAPI=y
59898 -# CONFIG_QLA3XXX is not set
59899 -# CONFIG_ATL1 is not set
59900 -CONFIG_NETDEV_10000=y
59901 -# CONFIG_CHELSIO_T1 is not set
59902 -# CONFIG_CHELSIO_T3 is not set
59903 -# CONFIG_IXGBE is not set
59904 -# CONFIG_IXGB is not set
59905 -# CONFIG_S2IO is not set
59906 -# CONFIG_MYRI10GE is not set
59907 -# CONFIG_NETXEN_NIC is not set
59908 -# CONFIG_NIU is not set
59909 -# CONFIG_MLX4_CORE is not set
59910 -# CONFIG_TEHUTI is not set
59911 -# CONFIG_BNX2X is not set
59912 -# CONFIG_TR is not set
59913 -
59914 -#
59915 -# Wireless LAN
59916 -#
59917 -# CONFIG_WLAN_PRE80211 is not set
59918 -# CONFIG_WLAN_80211 is not set
59919 -
59920 -#
59921 -# USB Network Adapters
59922 -#
59923 -# CONFIG_USB_CATC is not set
59924 -# CONFIG_USB_KAWETH is not set
59925 -# CONFIG_USB_PEGASUS is not set
59926 -# CONFIG_USB_RTL8150 is not set
59927 -# CONFIG_USB_USBNET is not set
59928 -# CONFIG_WAN is not set
59929 -# CONFIG_FDDI is not set
59930 -# CONFIG_HIPPI is not set
59931 -# CONFIG_PPP is not set
59932 -# CONFIG_SLIP is not set
59933 -# CONFIG_NET_FC is not set
59934 -# CONFIG_NETCONSOLE is not set
59935 -# CONFIG_NETPOLL is not set
59936 -# CONFIG_NET_POLL_CONTROLLER is not set
59937 -# CONFIG_ISDN is not set
59938 -# CONFIG_PHONE is not set
59939 -
59940 -#
59941 -# Input device support
59942 -#
59943 -# CONFIG_INPUT is not set
59944 -
59945 -#
59946 -# Hardware I/O ports
59947 -#
59948 -# CONFIG_SERIO is not set
59949 -# CONFIG_GAMEPORT is not set
59950 -
59951 -#
59952 -# Character devices
59953 -#
59954 -# CONFIG_VT is not set
59955 -# CONFIG_SERIAL_NONSTANDARD is not set
59956 -# CONFIG_NOZOMI is not set
59957 -
59958 -#
59959 -# Serial drivers
59960 -#
59961 -CONFIG_SERIAL_8250=y
59962 -CONFIG_SERIAL_8250_CONSOLE=y
59963 -# CONFIG_SERIAL_8250_PCI is not set
59964 -CONFIG_SERIAL_8250_NR_UARTS=4
59965 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
59966 -# CONFIG_SERIAL_8250_EXTENDED is not set
59967 -
59968 -#
59969 -# Non-8250 serial port support
59970 -#
59971 -# CONFIG_SERIAL_UARTLITE is not set
59972 -CONFIG_SERIAL_CORE=y
59973 -CONFIG_SERIAL_CORE_CONSOLE=y
59974 -# CONFIG_SERIAL_JSM is not set
59975 -# CONFIG_SERIAL_OF_PLATFORM is not set
59976 -CONFIG_UNIX98_PTYS=y
59977 -CONFIG_LEGACY_PTYS=y
59978 -CONFIG_LEGACY_PTY_COUNT=256
59979 -# CONFIG_IPMI_HANDLER is not set
59980 -CONFIG_HW_RANDOM=y
59981 -# CONFIG_NVRAM is not set
59982 -# CONFIG_GEN_RTC is not set
59983 -# CONFIG_R3964 is not set
59984 -# CONFIG_APPLICOM is not set
59985 -# CONFIG_RAW_DRIVER is not set
59986 -# CONFIG_TCG_TPM is not set
59987 -CONFIG_DEVPORT=y
59988 -CONFIG_I2C=y
59989 -CONFIG_I2C_BOARDINFO=y
59990 -CONFIG_I2C_CHARDEV=y
59991 -
59992 -#
59993 -# I2C Algorithms
59994 -#
59995 -# CONFIG_I2C_ALGOBIT is not set
59996 -# CONFIG_I2C_ALGOPCF is not set
59997 -# CONFIG_I2C_ALGOPCA is not set
59998 -
59999 -#
60000 -# I2C Hardware Bus support
60001 -#
60002 -# CONFIG_I2C_ALI1535 is not set
60003 -# CONFIG_I2C_ALI1563 is not set
60004 -# CONFIG_I2C_ALI15X3 is not set
60005 -# CONFIG_I2C_AMD756 is not set
60006 -# CONFIG_I2C_AMD8111 is not set
60007 -# CONFIG_I2C_I801 is not set
60008 -# CONFIG_I2C_I810 is not set
60009 -# CONFIG_I2C_PIIX4 is not set
60010 -CONFIG_I2C_MPC=y
60011 -# CONFIG_I2C_NFORCE2 is not set
60012 -# CONFIG_I2C_OCORES is not set
60013 -# CONFIG_I2C_PARPORT_LIGHT is not set
60014 -# CONFIG_I2C_PROSAVAGE is not set
60015 -# CONFIG_I2C_SAVAGE4 is not set
60016 -# CONFIG_I2C_SIMTEC is not set
60017 -# CONFIG_I2C_SIS5595 is not set
60018 -# CONFIG_I2C_SIS630 is not set
60019 -# CONFIG_I2C_SIS96X is not set
60020 -# CONFIG_I2C_TAOS_EVM is not set
60021 -# CONFIG_I2C_STUB is not set
60022 -# CONFIG_I2C_TINY_USB is not set
60023 -# CONFIG_I2C_VIA is not set
60024 -# CONFIG_I2C_VIAPRO is not set
60025 -# CONFIG_I2C_VOODOO3 is not set
60026 -
60027 -#
60028 -# Miscellaneous I2C Chip support
60029 -#
60030 -# CONFIG_DS1682 is not set
60031 -# CONFIG_SENSORS_EEPROM is not set
60032 -CONFIG_SENSORS_PCF8574=y
60033 -# CONFIG_PCF8575 is not set
60034 -# CONFIG_SENSORS_PCF8591 is not set
60035 -# CONFIG_TPS65010 is not set
60036 -# CONFIG_SENSORS_MAX6875 is not set
60037 -# CONFIG_SENSORS_TSL2550 is not set
60038 -# CONFIG_I2C_DEBUG_CORE is not set
60039 -# CONFIG_I2C_DEBUG_ALGO is not set
60040 -# CONFIG_I2C_DEBUG_BUS is not set
60041 -# CONFIG_I2C_DEBUG_CHIP is not set
60042 -
60043 -#
60044 -# SPI support
60045 -#
60046 -CONFIG_SPI=y
60047 -CONFIG_SPI_MASTER=y
60048 -
60049 -#
60050 -# SPI Master Controller Drivers
60051 -#
60052 -CONFIG_SPI_BITBANG=y
60053 -CONFIG_SPI_MPC83xx=y
60054 -
60055 -#
60056 -# SPI Protocol Masters
60057 -#
60058 -# CONFIG_SPI_AT25 is not set
60059 -# CONFIG_SPI_SPIDEV is not set
60060 -# CONFIG_SPI_TLE62X0 is not set
60061 -# CONFIG_W1 is not set
60062 -# CONFIG_POWER_SUPPLY is not set
60063 -# CONFIG_HWMON is not set
60064 -# CONFIG_THERMAL is not set
60065 -CONFIG_WATCHDOG=y
60066 -# CONFIG_WATCHDOG_NOWAYOUT is not set
60067 -
60068 -#
60069 -# Watchdog Device Drivers
60070 -#
60071 -# CONFIG_SOFT_WATCHDOG is not set
60072 -CONFIG_83xx_WDT=y
60073 -
60074 -#
60075 -# PCI-based Watchdog Cards
60076 -#
60077 -# CONFIG_PCIPCWATCHDOG is not set
60078 -# CONFIG_WDTPCI is not set
60079 -
60080 -#
60081 -# USB-based Watchdog Cards
60082 -#
60083 -# CONFIG_USBPCWATCHDOG is not set
60084 -
60085 -#
60086 -# Sonics Silicon Backplane
60087 -#
60088 -CONFIG_SSB_POSSIBLE=y
60089 -# CONFIG_SSB is not set
60090 -
60091 -#
60092 -# Multifunction device drivers
60093 -#
60094 -# CONFIG_MFD_SM501 is not set
60095 -
60096 -#
60097 -# Multimedia devices
60098 -#
60099 -# CONFIG_VIDEO_DEV is not set
60100 -# CONFIG_DVB_CORE is not set
60101 -CONFIG_DAB=y
60102 -# CONFIG_USB_DABUSB is not set
60103 -
60104 -#
60105 -# Graphics support
60106 -#
60107 -# CONFIG_AGP is not set
60108 -# CONFIG_DRM is not set
60109 -# CONFIG_VGASTATE is not set
60110 -CONFIG_VIDEO_OUTPUT_CONTROL=m
60111 -# CONFIG_FB is not set
60112 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
60113 -
60114 -#
60115 -# Display device support
60116 -#
60117 -# CONFIG_DISPLAY_SUPPORT is not set
60118 -
60119 -#
60120 -# Sound
60121 -#
60122 -# CONFIG_SOUND is not set
60123 -CONFIG_USB_SUPPORT=y
60124 -CONFIG_USB_ARCH_HAS_HCD=y
60125 -CONFIG_USB_ARCH_HAS_OHCI=y
60126 -CONFIG_USB_ARCH_HAS_EHCI=y
60127 -CONFIG_USB=y
60128 -# CONFIG_USB_DEBUG is not set
60129 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
60130 -
60131 -#
60132 -# Miscellaneous USB options
60133 -#
60134 -CONFIG_USB_DEVICEFS=y
60135 -CONFIG_USB_DEVICE_CLASS=y
60136 -# CONFIG_USB_DYNAMIC_MINORS is not set
60137 -# CONFIG_USB_OTG is not set
60138 -
60139 -#
60140 -# USB Host Controller Drivers
60141 -#
60142 -CONFIG_USB_EHCI_HCD=y
60143 -CONFIG_USB_EHCI_ROOT_HUB_TT=y
60144 -# CONFIG_USB_EHCI_TT_NEWSCHED is not set
60145 -CONFIG_USB_EHCI_FSL=y
60146 -CONFIG_USB_EHCI_HCD_PPC_OF=y
60147 -# CONFIG_USB_ISP116X_HCD is not set
60148 -# CONFIG_USB_OHCI_HCD is not set
60149 -CONFIG_USB_UHCI_HCD=y
60150 -# CONFIG_USB_SL811_HCD is not set
60151 -# CONFIG_USB_R8A66597_HCD is not set
60152 -
60153 -#
60154 -# USB Device Class drivers
60155 -#
60156 -# CONFIG_USB_ACM is not set
60157 -# CONFIG_USB_PRINTER is not set
60158 -
60159 -#
60160 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
60161 -#
60162 -
60163 -#
60164 -# may also be needed; see USB_STORAGE Help for more information
60165 -#
60166 -CONFIG_USB_STORAGE=y
60167 -# CONFIG_USB_STORAGE_DEBUG is not set
60168 -# CONFIG_USB_STORAGE_DATAFAB is not set
60169 -# CONFIG_USB_STORAGE_FREECOM is not set
60170 -# CONFIG_USB_STORAGE_ISD200 is not set
60171 -# CONFIG_USB_STORAGE_DPCM is not set
60172 -# CONFIG_USB_STORAGE_USBAT is not set
60173 -# CONFIG_USB_STORAGE_SDDR09 is not set
60174 -# CONFIG_USB_STORAGE_SDDR55 is not set
60175 -# CONFIG_USB_STORAGE_JUMPSHOT is not set
60176 -# CONFIG_USB_STORAGE_ALAUDA is not set
60177 -# CONFIG_USB_STORAGE_KARMA is not set
60178 -# CONFIG_USB_LIBUSUAL is not set
60179 -
60180 -#
60181 -# USB Imaging devices
60182 -#
60183 -# CONFIG_USB_MDC800 is not set
60184 -# CONFIG_USB_MICROTEK is not set
60185 -CONFIG_USB_MON=y
60186 -
60187 -#
60188 -# USB port drivers
60189 -#
60190 -# CONFIG_USB_SERIAL is not set
60191 -
60192 -#
60193 -# USB Miscellaneous drivers
60194 -#
60195 -# CONFIG_USB_EMI62 is not set
60196 -# CONFIG_USB_EMI26 is not set
60197 -# CONFIG_USB_ADUTUX is not set
60198 -# CONFIG_USB_AUERSWALD is not set
60199 -# CONFIG_USB_RIO500 is not set
60200 -# CONFIG_USB_LEGOTOWER is not set
60201 -# CONFIG_USB_LCD is not set
60202 -# CONFIG_USB_BERRY_CHARGE is not set
60203 -# CONFIG_USB_LED is not set
60204 -# CONFIG_USB_CYPRESS_CY7C63 is not set
60205 -# CONFIG_USB_CYTHERM is not set
60206 -# CONFIG_USB_PHIDGET is not set
60207 -# CONFIG_USB_IDMOUSE is not set
60208 -# CONFIG_USB_FTDI_ELAN is not set
60209 -# CONFIG_USB_APPLEDISPLAY is not set
60210 -# CONFIG_USB_SISUSBVGA is not set
60211 -# CONFIG_USB_LD is not set
60212 -# CONFIG_USB_TRANCEVIBRATOR is not set
60213 -# CONFIG_USB_IOWARRIOR is not set
60214 -# CONFIG_USB_TEST is not set
60215 -# CONFIG_USB_GADGET is not set
60216 -# CONFIG_MMC is not set
60217 -# CONFIG_MEMSTICK is not set
60218 -# CONFIG_NEW_LEDS is not set
60219 -# CONFIG_INFINIBAND is not set
60220 -# CONFIG_EDAC is not set
60221 -CONFIG_RTC_LIB=y
60222 -CONFIG_RTC_CLASS=y
60223 -CONFIG_RTC_HCTOSYS=y
60224 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
60225 -# CONFIG_RTC_DEBUG is not set
60226 -
60227 -#
60228 -# RTC interfaces
60229 -#
60230 -CONFIG_RTC_INTF_SYSFS=y
60231 -CONFIG_RTC_INTF_PROC=y
60232 -CONFIG_RTC_INTF_DEV=y
60233 -CONFIG_RTC_INTF_DEV_UIE_EMUL=y
60234 -# CONFIG_RTC_DRV_TEST is not set
60235 -
60236 -#
60237 -# I2C RTC drivers
60238 -#
60239 -CONFIG_RTC_DRV_DS1307=y
60240 -# CONFIG_RTC_DRV_DS1374 is not set
60241 -# CONFIG_RTC_DRV_DS1672 is not set
60242 -# CONFIG_RTC_DRV_MAX6900 is not set
60243 -# CONFIG_RTC_DRV_RS5C372 is not set
60244 -# CONFIG_RTC_DRV_ISL1208 is not set
60245 -# CONFIG_RTC_DRV_X1205 is not set
60246 -# CONFIG_RTC_DRV_PCF8563 is not set
60247 -# CONFIG_RTC_DRV_PCF8583 is not set
60248 -# CONFIG_RTC_DRV_M41T80 is not set
60249 -# CONFIG_RTC_DRV_S35390A is not set
60250 -
60251 -#
60252 -# SPI RTC drivers
60253 -#
60254 -# CONFIG_RTC_DRV_MAX6902 is not set
60255 -# CONFIG_RTC_DRV_R9701 is not set
60256 -# CONFIG_RTC_DRV_RS5C348 is not set
60257 -
60258 -#
60259 -# Platform RTC drivers
60260 -#
60261 -# CONFIG_RTC_DRV_CMOS is not set
60262 -# CONFIG_RTC_DRV_DS1511 is not set
60263 -# CONFIG_RTC_DRV_DS1553 is not set
60264 -# CONFIG_RTC_DRV_DS1742 is not set
60265 -# CONFIG_RTC_DRV_STK17TA8 is not set
60266 -# CONFIG_RTC_DRV_M48T86 is not set
60267 -# CONFIG_RTC_DRV_M48T59 is not set
60268 -# CONFIG_RTC_DRV_V3020 is not set
60269 -
60270 -#
60271 -# on-CPU RTC drivers
60272 -#
60273 -# CONFIG_DMADEVICES is not set
60274 -
60275 -#
60276 -# Userspace I/O
60277 -#
60278 -# CONFIG_UIO is not set
60279 -
60280 -#
60281 -# File systems
60282 -#
60283 -CONFIG_EXT2_FS=y
60284 -# CONFIG_EXT2_FS_XATTR is not set
60285 -# CONFIG_EXT2_FS_XIP is not set
60286 -CONFIG_EXT3_FS=y
60287 -CONFIG_EXT3_FS_XATTR=y
60288 -# CONFIG_EXT3_FS_POSIX_ACL is not set
60289 -# CONFIG_EXT3_FS_SECURITY is not set
60290 -# CONFIG_EXT4DEV_FS is not set
60291 -CONFIG_JBD=y
60292 -CONFIG_FS_MBCACHE=y
60293 -# CONFIG_REISERFS_FS is not set
60294 -# CONFIG_JFS_FS is not set
60295 -# CONFIG_FS_POSIX_ACL is not set
60296 -# CONFIG_XFS_FS is not set
60297 -# CONFIG_GFS2_FS is not set
60298 -# CONFIG_OCFS2_FS is not set
60299 -CONFIG_DNOTIFY=y
60300 -CONFIG_INOTIFY=y
60301 -CONFIG_INOTIFY_USER=y
60302 -# CONFIG_QUOTA is not set
60303 -# CONFIG_AUTOFS_FS is not set
60304 -# CONFIG_AUTOFS4_FS is not set
60305 -# CONFIG_FUSE_FS is not set
60306 -
60307 -#
60308 -# CD-ROM/DVD Filesystems
60309 -#
60310 -# CONFIG_ISO9660_FS is not set
60311 -# CONFIG_UDF_FS is not set
60312 -
60313 -#
60314 -# DOS/FAT/NT Filesystems
60315 -#
60316 -CONFIG_FAT_FS=y
60317 -CONFIG_MSDOS_FS=y
60318 -CONFIG_VFAT_FS=y
60319 -CONFIG_FAT_DEFAULT_CODEPAGE=437
60320 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
60321 -# CONFIG_NTFS_FS is not set
60322 -
60323 -#
60324 -# Pseudo filesystems
60325 -#
60326 -CONFIG_PROC_FS=y
60327 -CONFIG_PROC_KCORE=y
60328 -CONFIG_PROC_SYSCTL=y
60329 -CONFIG_SYSFS=y
60330 -CONFIG_TMPFS=y
60331 -# CONFIG_TMPFS_POSIX_ACL is not set
60332 -# CONFIG_HUGETLB_PAGE is not set
60333 -# CONFIG_CONFIGFS_FS is not set
60334 -
60335 -#
60336 -# Miscellaneous filesystems
60337 -#
60338 -# CONFIG_ADFS_FS is not set
60339 -# CONFIG_AFFS_FS is not set
60340 -# CONFIG_HFS_FS is not set
60341 -# CONFIG_HFSPLUS_FS is not set
60342 -# CONFIG_BEFS_FS is not set
60343 -# CONFIG_BFS_FS is not set
60344 -# CONFIG_EFS_FS is not set
60345 -# CONFIG_JFFS2_FS is not set
60346 -# CONFIG_CRAMFS is not set
60347 -# CONFIG_VXFS_FS is not set
60348 -# CONFIG_MINIX_FS is not set
60349 -# CONFIG_HPFS_FS is not set
60350 -# CONFIG_QNX4FS_FS is not set
60351 -# CONFIG_ROMFS_FS is not set
60352 -# CONFIG_SYSV_FS is not set
60353 -# CONFIG_UFS_FS is not set
60354 -CONFIG_NETWORK_FILESYSTEMS=y
60355 -CONFIG_NFS_FS=y
60356 -CONFIG_NFS_V3=y
60357 -# CONFIG_NFS_V3_ACL is not set
60358 -CONFIG_NFS_V4=y
60359 -# CONFIG_NFS_DIRECTIO is not set
60360 -# CONFIG_NFSD is not set
60361 -CONFIG_ROOT_NFS=y
60362 -CONFIG_LOCKD=y
60363 -CONFIG_LOCKD_V4=y
60364 -CONFIG_NFS_COMMON=y
60365 -CONFIG_SUNRPC=y
60366 -CONFIG_SUNRPC_GSS=y
60367 -# CONFIG_SUNRPC_BIND34 is not set
60368 -CONFIG_RPCSEC_GSS_KRB5=y
60369 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
60370 -# CONFIG_SMB_FS is not set
60371 -# CONFIG_CIFS is not set
60372 -# CONFIG_NCP_FS is not set
60373 -# CONFIG_CODA_FS is not set
60374 -# CONFIG_AFS_FS is not set
60375 -
60376 -#
60377 -# Partition Types
60378 -#
60379 -CONFIG_PARTITION_ADVANCED=y
60380 -# CONFIG_ACORN_PARTITION is not set
60381 -# CONFIG_OSF_PARTITION is not set
60382 -# CONFIG_AMIGA_PARTITION is not set
60383 -# CONFIG_ATARI_PARTITION is not set
60384 -CONFIG_MAC_PARTITION=y
60385 -CONFIG_MSDOS_PARTITION=y
60386 -# CONFIG_BSD_DISKLABEL is not set
60387 -# CONFIG_MINIX_SUBPARTITION is not set
60388 -# CONFIG_SOLARIS_X86_PARTITION is not set
60389 -# CONFIG_UNIXWARE_DISKLABEL is not set
60390 -# CONFIG_LDM_PARTITION is not set
60391 -# CONFIG_SGI_PARTITION is not set
60392 -# CONFIG_ULTRIX_PARTITION is not set
60393 -# CONFIG_SUN_PARTITION is not set
60394 -# CONFIG_KARMA_PARTITION is not set
60395 -# CONFIG_EFI_PARTITION is not set
60396 -# CONFIG_SYSV68_PARTITION is not set
60397 -CONFIG_NLS=y
60398 -CONFIG_NLS_DEFAULT="iso8859-1"
60399 -# CONFIG_NLS_CODEPAGE_437 is not set
60400 -# CONFIG_NLS_CODEPAGE_737 is not set
60401 -# CONFIG_NLS_CODEPAGE_775 is not set
60402 -# CONFIG_NLS_CODEPAGE_850 is not set
60403 -# CONFIG_NLS_CODEPAGE_852 is not set
60404 -# CONFIG_NLS_CODEPAGE_855 is not set
60405 -# CONFIG_NLS_CODEPAGE_857 is not set
60406 -# CONFIG_NLS_CODEPAGE_860 is not set
60407 -# CONFIG_NLS_CODEPAGE_861 is not set
60408 -# CONFIG_NLS_CODEPAGE_862 is not set
60409 -# CONFIG_NLS_CODEPAGE_863 is not set
60410 -# CONFIG_NLS_CODEPAGE_864 is not set
60411 -# CONFIG_NLS_CODEPAGE_865 is not set
60412 -# CONFIG_NLS_CODEPAGE_866 is not set
60413 -# CONFIG_NLS_CODEPAGE_869 is not set
60414 -# CONFIG_NLS_CODEPAGE_936 is not set
60415 -# CONFIG_NLS_CODEPAGE_950 is not set
60416 -# CONFIG_NLS_CODEPAGE_932 is not set
60417 -# CONFIG_NLS_CODEPAGE_949 is not set
60418 -# CONFIG_NLS_CODEPAGE_874 is not set
60419 -# CONFIG_NLS_ISO8859_8 is not set
60420 -# CONFIG_NLS_CODEPAGE_1250 is not set
60421 -# CONFIG_NLS_CODEPAGE_1251 is not set
60422 -# CONFIG_NLS_ASCII is not set
60423 -# CONFIG_NLS_ISO8859_1 is not set
60424 -# CONFIG_NLS_ISO8859_2 is not set
60425 -# CONFIG_NLS_ISO8859_3 is not set
60426 -# CONFIG_NLS_ISO8859_4 is not set
60427 -# CONFIG_NLS_ISO8859_5 is not set
60428 -# CONFIG_NLS_ISO8859_6 is not set
60429 -# CONFIG_NLS_ISO8859_7 is not set
60430 -# CONFIG_NLS_ISO8859_9 is not set
60431 -# CONFIG_NLS_ISO8859_13 is not set
60432 -# CONFIG_NLS_ISO8859_14 is not set
60433 -# CONFIG_NLS_ISO8859_15 is not set
60434 -# CONFIG_NLS_KOI8_R is not set
60435 -# CONFIG_NLS_KOI8_U is not set
60436 -# CONFIG_NLS_UTF8 is not set
60437 -# CONFIG_DLM is not set
60438 -
60439 -#
60440 -# Library routines
60441 -#
60442 -CONFIG_BITREVERSE=y
60443 -# CONFIG_CRC_CCITT is not set
60444 -# CONFIG_CRC16 is not set
60445 -# CONFIG_CRC_ITU_T is not set
60446 -CONFIG_CRC32=y
60447 -# CONFIG_CRC7 is not set
60448 -# CONFIG_LIBCRC32C is not set
60449 -CONFIG_PLIST=y
60450 -CONFIG_HAS_IOMEM=y
60451 -CONFIG_HAS_IOPORT=y
60452 -CONFIG_HAS_DMA=y
60453 -
60454 -#
60455 -# Kernel hacking
60456 -#
60457 -# CONFIG_PRINTK_TIME is not set
60458 -CONFIG_ENABLE_WARN_DEPRECATED=y
60459 -CONFIG_ENABLE_MUST_CHECK=y
60460 -# CONFIG_MAGIC_SYSRQ is not set
60461 -# CONFIG_UNUSED_SYMBOLS is not set
60462 -# CONFIG_DEBUG_FS is not set
60463 -# CONFIG_HEADERS_CHECK is not set
60464 -# CONFIG_DEBUG_KERNEL is not set
60465 -# CONFIG_SLUB_DEBUG_ON is not set
60466 -# CONFIG_SLUB_STATS is not set
60467 -# CONFIG_DEBUG_BUGVERBOSE is not set
60468 -# CONFIG_SAMPLES is not set
60469 -# CONFIG_PPC_EARLY_DEBUG is not set
60470 -
60471 -#
60472 -# Security options
60473 -#
60474 -# CONFIG_KEYS is not set
60475 -# CONFIG_SECURITY is not set
60476 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
60477 -CONFIG_CRYPTO=y
60478 -CONFIG_CRYPTO_ALGAPI=y
60479 -CONFIG_CRYPTO_BLKCIPHER=y
60480 -# CONFIG_CRYPTO_SEQIV is not set
60481 -CONFIG_CRYPTO_MANAGER=y
60482 -# CONFIG_CRYPTO_HMAC is not set
60483 -# CONFIG_CRYPTO_XCBC is not set
60484 -# CONFIG_CRYPTO_NULL is not set
60485 -# CONFIG_CRYPTO_MD4 is not set
60486 -CONFIG_CRYPTO_MD5=y
60487 -# CONFIG_CRYPTO_SHA1 is not set
60488 -# CONFIG_CRYPTO_SHA256 is not set
60489 -# CONFIG_CRYPTO_SHA512 is not set
60490 -# CONFIG_CRYPTO_WP512 is not set
60491 -# CONFIG_CRYPTO_TGR192 is not set
60492 -# CONFIG_CRYPTO_GF128MUL is not set
60493 -# CONFIG_CRYPTO_ECB is not set
60494 -CONFIG_CRYPTO_CBC=y
60495 -CONFIG_CRYPTO_PCBC=m
60496 -# CONFIG_CRYPTO_LRW is not set
60497 -# CONFIG_CRYPTO_XTS is not set
60498 -# CONFIG_CRYPTO_CTR is not set
60499 -# CONFIG_CRYPTO_GCM is not set
60500 -# CONFIG_CRYPTO_CCM is not set
60501 -# CONFIG_CRYPTO_CRYPTD is not set
60502 -CONFIG_CRYPTO_DES=y
60503 -# CONFIG_CRYPTO_FCRYPT is not set
60504 -# CONFIG_CRYPTO_BLOWFISH is not set
60505 -# CONFIG_CRYPTO_TWOFISH is not set
60506 -# CONFIG_CRYPTO_SERPENT is not set
60507 -# CONFIG_CRYPTO_AES is not set
60508 -# CONFIG_CRYPTO_CAST5 is not set
60509 -# CONFIG_CRYPTO_CAST6 is not set
60510 -# CONFIG_CRYPTO_TEA is not set
60511 -# CONFIG_CRYPTO_ARC4 is not set
60512 -# CONFIG_CRYPTO_KHAZAD is not set
60513 -# CONFIG_CRYPTO_ANUBIS is not set
60514 -# CONFIG_CRYPTO_SEED is not set
60515 -# CONFIG_CRYPTO_SALSA20 is not set
60516 -# CONFIG_CRYPTO_DEFLATE is not set
60517 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
60518 -# CONFIG_CRYPTO_CRC32C is not set
60519 -# CONFIG_CRYPTO_CAMELLIA is not set
60520 -# CONFIG_CRYPTO_TEST is not set
60521 -# CONFIG_CRYPTO_AUTHENC is not set
60522 -# CONFIG_CRYPTO_LZO is not set
60523 -CONFIG_CRYPTO_HW=y
60524 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
60525 -# CONFIG_PPC_CLOCK is not set
60526 Index: linux-2.6.25.4/arch/powerpc/configs/mpc834x_itxgp_defconfig
60527 ===================================================================
60528 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc834x_itxgp_defconfig
60529 +++ /dev/null
60530 @@ -1,1222 +0,0 @@
60531 -#
60532 -# Automatically generated make config: don't edit
60533 -# Linux kernel version: 2.6.25-rc6
60534 -# Mon Mar 24 08:48:18 2008
60535 -#
60536 -# CONFIG_PPC64 is not set
60537 -
60538 -#
60539 -# Processor support
60540 -#
60541 -CONFIG_6xx=y
60542 -# CONFIG_PPC_85xx is not set
60543 -# CONFIG_PPC_8xx is not set
60544 -# CONFIG_40x is not set
60545 -# CONFIG_44x is not set
60546 -# CONFIG_E200 is not set
60547 -CONFIG_PPC_FPU=y
60548 -# CONFIG_FSL_EMB_PERFMON is not set
60549 -CONFIG_PPC_STD_MMU=y
60550 -CONFIG_PPC_STD_MMU_32=y
60551 -# CONFIG_PPC_MM_SLICES is not set
60552 -# CONFIG_SMP is not set
60553 -CONFIG_PPC32=y
60554 -CONFIG_WORD_SIZE=32
60555 -CONFIG_PPC_MERGE=y
60556 -CONFIG_MMU=y
60557 -CONFIG_GENERIC_CMOS_UPDATE=y
60558 -CONFIG_GENERIC_TIME=y
60559 -CONFIG_GENERIC_TIME_VSYSCALL=y
60560 -CONFIG_GENERIC_CLOCKEVENTS=y
60561 -CONFIG_GENERIC_HARDIRQS=y
60562 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
60563 -CONFIG_IRQ_PER_CPU=y
60564 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
60565 -CONFIG_ARCH_HAS_ILOG2_U32=y
60566 -CONFIG_GENERIC_HWEIGHT=y
60567 -CONFIG_GENERIC_CALIBRATE_DELAY=y
60568 -CONFIG_GENERIC_FIND_NEXT_BIT=y
60569 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
60570 -CONFIG_PPC=y
60571 -CONFIG_EARLY_PRINTK=y
60572 -CONFIG_GENERIC_NVRAM=y
60573 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
60574 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
60575 -CONFIG_PPC_OF=y
60576 -CONFIG_OF=y
60577 -CONFIG_PPC_UDBG_16550=y
60578 -# CONFIG_GENERIC_TBSYNC is not set
60579 -CONFIG_AUDIT_ARCH=y
60580 -CONFIG_GENERIC_BUG=y
60581 -CONFIG_DEFAULT_UIMAGE=y
60582 -# CONFIG_PPC_DCR_NATIVE is not set
60583 -# CONFIG_PPC_DCR_MMIO is not set
60584 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
60585 -
60586 -#
60587 -# General setup
60588 -#
60589 -CONFIG_EXPERIMENTAL=y
60590 -CONFIG_BROKEN_ON_SMP=y
60591 -CONFIG_INIT_ENV_ARG_LIMIT=32
60592 -CONFIG_LOCALVERSION=""
60593 -CONFIG_LOCALVERSION_AUTO=y
60594 -CONFIG_SWAP=y
60595 -CONFIG_SYSVIPC=y
60596 -CONFIG_SYSVIPC_SYSCTL=y
60597 -# CONFIG_POSIX_MQUEUE is not set
60598 -# CONFIG_BSD_PROCESS_ACCT is not set
60599 -# CONFIG_TASKSTATS is not set
60600 -# CONFIG_AUDIT is not set
60601 -# CONFIG_IKCONFIG is not set
60602 -CONFIG_LOG_BUF_SHIFT=14
60603 -# CONFIG_CGROUPS is not set
60604 -CONFIG_GROUP_SCHED=y
60605 -# CONFIG_FAIR_GROUP_SCHED is not set
60606 -# CONFIG_RT_GROUP_SCHED is not set
60607 -CONFIG_USER_SCHED=y
60608 -# CONFIG_CGROUP_SCHED is not set
60609 -CONFIG_SYSFS_DEPRECATED=y
60610 -CONFIG_SYSFS_DEPRECATED_V2=y
60611 -# CONFIG_RELAY is not set
60612 -# CONFIG_NAMESPACES is not set
60613 -CONFIG_BLK_DEV_INITRD=y
60614 -CONFIG_INITRAMFS_SOURCE=""
60615 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
60616 -CONFIG_SYSCTL=y
60617 -CONFIG_EMBEDDED=y
60618 -CONFIG_SYSCTL_SYSCALL=y
60619 -# CONFIG_KALLSYMS is not set
60620 -CONFIG_HOTPLUG=y
60621 -CONFIG_PRINTK=y
60622 -CONFIG_BUG=y
60623 -CONFIG_ELF_CORE=y
60624 -CONFIG_COMPAT_BRK=y
60625 -CONFIG_BASE_FULL=y
60626 -CONFIG_FUTEX=y
60627 -CONFIG_ANON_INODES=y
60628 -# CONFIG_EPOLL is not set
60629 -CONFIG_SIGNALFD=y
60630 -CONFIG_TIMERFD=y
60631 -CONFIG_EVENTFD=y
60632 -CONFIG_SHMEM=y
60633 -CONFIG_VM_EVENT_COUNTERS=y
60634 -CONFIG_SLUB_DEBUG=y
60635 -# CONFIG_SLAB is not set
60636 -CONFIG_SLUB=y
60637 -# CONFIG_SLOB is not set
60638 -# CONFIG_PROFILING is not set
60639 -# CONFIG_MARKERS is not set
60640 -CONFIG_HAVE_OPROFILE=y
60641 -CONFIG_HAVE_KPROBES=y
60642 -CONFIG_HAVE_KRETPROBES=y
60643 -CONFIG_PROC_PAGE_MONITOR=y
60644 -CONFIG_SLABINFO=y
60645 -CONFIG_RT_MUTEXES=y
60646 -# CONFIG_TINY_SHMEM is not set
60647 -CONFIG_BASE_SMALL=0
60648 -CONFIG_MODULES=y
60649 -CONFIG_MODULE_UNLOAD=y
60650 -# CONFIG_MODULE_FORCE_UNLOAD is not set
60651 -# CONFIG_MODVERSIONS is not set
60652 -# CONFIG_MODULE_SRCVERSION_ALL is not set
60653 -# CONFIG_KMOD is not set
60654 -CONFIG_BLOCK=y
60655 -# CONFIG_LBD is not set
60656 -# CONFIG_BLK_DEV_IO_TRACE is not set
60657 -# CONFIG_LSF is not set
60658 -# CONFIG_BLK_DEV_BSG is not set
60659 -
60660 -#
60661 -# IO Schedulers
60662 -#
60663 -CONFIG_IOSCHED_NOOP=y
60664 -CONFIG_IOSCHED_AS=y
60665 -CONFIG_IOSCHED_DEADLINE=y
60666 -CONFIG_IOSCHED_CFQ=y
60667 -CONFIG_DEFAULT_AS=y
60668 -# CONFIG_DEFAULT_DEADLINE is not set
60669 -# CONFIG_DEFAULT_CFQ is not set
60670 -# CONFIG_DEFAULT_NOOP is not set
60671 -CONFIG_DEFAULT_IOSCHED="anticipatory"
60672 -CONFIG_CLASSIC_RCU=y
60673 -
60674 -#
60675 -# Platform support
60676 -#
60677 -# CONFIG_PPC_MULTIPLATFORM is not set
60678 -# CONFIG_PPC_82xx is not set
60679 -CONFIG_PPC_83xx=y
60680 -# CONFIG_PPC_86xx is not set
60681 -# CONFIG_PPC_MPC512x is not set
60682 -# CONFIG_PPC_MPC5121 is not set
60683 -# CONFIG_PPC_CELL is not set
60684 -# CONFIG_PPC_CELL_NATIVE is not set
60685 -# CONFIG_PQ2ADS is not set
60686 -CONFIG_MPC83xx=y
60687 -# CONFIG_MPC831x_RDB is not set
60688 -# CONFIG_MPC832x_MDS is not set
60689 -# CONFIG_MPC832x_RDB is not set
60690 -# CONFIG_MPC834x_MDS is not set
60691 -CONFIG_MPC834x_ITX=y
60692 -# CONFIG_MPC836x_MDS is not set
60693 -# CONFIG_MPC837x_MDS is not set
60694 -# CONFIG_MPC837x_RDB is not set
60695 -# CONFIG_SBC834x is not set
60696 -CONFIG_PPC_MPC834x=y
60697 -CONFIG_IPIC=y
60698 -# CONFIG_MPIC is not set
60699 -# CONFIG_MPIC_WEIRD is not set
60700 -# CONFIG_PPC_I8259 is not set
60701 -# CONFIG_PPC_RTAS is not set
60702 -# CONFIG_MMIO_NVRAM is not set
60703 -# CONFIG_PPC_MPC106 is not set
60704 -# CONFIG_PPC_970_NAP is not set
60705 -# CONFIG_PPC_INDIRECT_IO is not set
60706 -# CONFIG_GENERIC_IOMAP is not set
60707 -# CONFIG_CPU_FREQ is not set
60708 -# CONFIG_FSL_ULI1575 is not set
60709 -
60710 -#
60711 -# Kernel options
60712 -#
60713 -# CONFIG_HIGHMEM is not set
60714 -CONFIG_TICK_ONESHOT=y
60715 -CONFIG_NO_HZ=y
60716 -CONFIG_HIGH_RES_TIMERS=y
60717 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
60718 -# CONFIG_HZ_100 is not set
60719 -CONFIG_HZ_250=y
60720 -# CONFIG_HZ_300 is not set
60721 -# CONFIG_HZ_1000 is not set
60722 -CONFIG_HZ=250
60723 -# CONFIG_SCHED_HRTICK is not set
60724 -CONFIG_PREEMPT_NONE=y
60725 -# CONFIG_PREEMPT_VOLUNTARY is not set
60726 -# CONFIG_PREEMPT is not set
60727 -CONFIG_BINFMT_ELF=y
60728 -# CONFIG_BINFMT_MISC is not set
60729 -# CONFIG_IOMMU_HELPER is not set
60730 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
60731 -CONFIG_ARCH_HAS_WALK_MEMORY=y
60732 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
60733 -CONFIG_ARCH_FLATMEM_ENABLE=y
60734 -CONFIG_ARCH_POPULATES_NODE_MAP=y
60735 -CONFIG_SELECT_MEMORY_MODEL=y
60736 -CONFIG_FLATMEM_MANUAL=y
60737 -# CONFIG_DISCONTIGMEM_MANUAL is not set
60738 -# CONFIG_SPARSEMEM_MANUAL is not set
60739 -CONFIG_FLATMEM=y
60740 -CONFIG_FLAT_NODE_MEM_MAP=y
60741 -# CONFIG_SPARSEMEM_STATIC is not set
60742 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
60743 -CONFIG_SPLIT_PTLOCK_CPUS=4
60744 -# CONFIG_RESOURCES_64BIT is not set
60745 -CONFIG_ZONE_DMA_FLAG=1
60746 -CONFIG_BOUNCE=y
60747 -CONFIG_VIRT_TO_BUS=y
60748 -CONFIG_PROC_DEVICETREE=y
60749 -# CONFIG_CMDLINE_BOOL is not set
60750 -# CONFIG_PM is not set
60751 -CONFIG_SECCOMP=y
60752 -CONFIG_ISA_DMA_API=y
60753 -
60754 -#
60755 -# Bus options
60756 -#
60757 -CONFIG_ZONE_DMA=y
60758 -CONFIG_GENERIC_ISA_DMA=y
60759 -CONFIG_PPC_INDIRECT_PCI=y
60760 -CONFIG_FSL_SOC=y
60761 -CONFIG_PCI=y
60762 -CONFIG_PCI_DOMAINS=y
60763 -CONFIG_PCI_SYSCALL=y
60764 -# CONFIG_PCIEPORTBUS is not set
60765 -CONFIG_ARCH_SUPPORTS_MSI=y
60766 -# CONFIG_PCI_MSI is not set
60767 -CONFIG_PCI_LEGACY=y
60768 -# CONFIG_PCCARD is not set
60769 -# CONFIG_HOTPLUG_PCI is not set
60770 -
60771 -#
60772 -# Advanced setup
60773 -#
60774 -# CONFIG_ADVANCED_OPTIONS is not set
60775 -
60776 -#
60777 -# Default settings for advanced configuration options are used
60778 -#
60779 -CONFIG_HIGHMEM_START=0xfe000000
60780 -CONFIG_LOWMEM_SIZE=0x30000000
60781 -CONFIG_KERNEL_START=0xc0000000
60782 -CONFIG_TASK_SIZE=0xc0000000
60783 -CONFIG_BOOT_LOAD=0x00800000
60784 -
60785 -#
60786 -# Networking
60787 -#
60788 -CONFIG_NET=y
60789 -
60790 -#
60791 -# Networking options
60792 -#
60793 -CONFIG_PACKET=y
60794 -# CONFIG_PACKET_MMAP is not set
60795 -CONFIG_UNIX=y
60796 -CONFIG_XFRM=y
60797 -# CONFIG_XFRM_USER is not set
60798 -# CONFIG_XFRM_SUB_POLICY is not set
60799 -# CONFIG_XFRM_MIGRATE is not set
60800 -# CONFIG_XFRM_STATISTICS is not set
60801 -# CONFIG_NET_KEY is not set
60802 -CONFIG_INET=y
60803 -CONFIG_IP_MULTICAST=y
60804 -# CONFIG_IP_ADVANCED_ROUTER is not set
60805 -CONFIG_IP_FIB_HASH=y
60806 -CONFIG_IP_PNP=y
60807 -CONFIG_IP_PNP_DHCP=y
60808 -CONFIG_IP_PNP_BOOTP=y
60809 -# CONFIG_IP_PNP_RARP is not set
60810 -# CONFIG_NET_IPIP is not set
60811 -# CONFIG_NET_IPGRE is not set
60812 -# CONFIG_IP_MROUTE is not set
60813 -# CONFIG_ARPD is not set
60814 -CONFIG_SYN_COOKIES=y
60815 -# CONFIG_INET_AH is not set
60816 -# CONFIG_INET_ESP is not set
60817 -# CONFIG_INET_IPCOMP is not set
60818 -# CONFIG_INET_XFRM_TUNNEL is not set
60819 -# CONFIG_INET_TUNNEL is not set
60820 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
60821 -CONFIG_INET_XFRM_MODE_TUNNEL=y
60822 -CONFIG_INET_XFRM_MODE_BEET=y
60823 -# CONFIG_INET_LRO is not set
60824 -CONFIG_INET_DIAG=y
60825 -CONFIG_INET_TCP_DIAG=y
60826 -# CONFIG_TCP_CONG_ADVANCED is not set
60827 -CONFIG_TCP_CONG_CUBIC=y
60828 -CONFIG_DEFAULT_TCP_CONG="cubic"
60829 -# CONFIG_TCP_MD5SIG is not set
60830 -# CONFIG_IPV6 is not set
60831 -# CONFIG_INET6_XFRM_TUNNEL is not set
60832 -# CONFIG_INET6_TUNNEL is not set
60833 -# CONFIG_NETWORK_SECMARK is not set
60834 -# CONFIG_NETFILTER is not set
60835 -# CONFIG_IP_DCCP is not set
60836 -# CONFIG_IP_SCTP is not set
60837 -# CONFIG_TIPC is not set
60838 -# CONFIG_ATM is not set
60839 -# CONFIG_BRIDGE is not set
60840 -# CONFIG_VLAN_8021Q is not set
60841 -# CONFIG_DECNET is not set
60842 -# CONFIG_LLC2 is not set
60843 -# CONFIG_IPX is not set
60844 -# CONFIG_ATALK is not set
60845 -# CONFIG_X25 is not set
60846 -# CONFIG_LAPB is not set
60847 -# CONFIG_ECONET is not set
60848 -# CONFIG_WAN_ROUTER is not set
60849 -# CONFIG_NET_SCHED is not set
60850 -
60851 -#
60852 -# Network testing
60853 -#
60854 -# CONFIG_NET_PKTGEN is not set
60855 -# CONFIG_HAMRADIO is not set
60856 -# CONFIG_CAN is not set
60857 -# CONFIG_IRDA is not set
60858 -# CONFIG_BT is not set
60859 -# CONFIG_AF_RXRPC is not set
60860 -
60861 -#
60862 -# Wireless
60863 -#
60864 -# CONFIG_CFG80211 is not set
60865 -# CONFIG_WIRELESS_EXT is not set
60866 -# CONFIG_MAC80211 is not set
60867 -# CONFIG_IEEE80211 is not set
60868 -# CONFIG_RFKILL is not set
60869 -# CONFIG_NET_9P is not set
60870 -
60871 -#
60872 -# Device Drivers
60873 -#
60874 -
60875 -#
60876 -# Generic Driver Options
60877 -#
60878 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
60879 -CONFIG_STANDALONE=y
60880 -CONFIG_PREVENT_FIRMWARE_BUILD=y
60881 -# CONFIG_FW_LOADER is not set
60882 -# CONFIG_SYS_HYPERVISOR is not set
60883 -# CONFIG_CONNECTOR is not set
60884 -CONFIG_MTD=y
60885 -# CONFIG_MTD_DEBUG is not set
60886 -# CONFIG_MTD_CONCAT is not set
60887 -# CONFIG_MTD_PARTITIONS is not set
60888 -
60889 -#
60890 -# User Modules And Translation Layers
60891 -#
60892 -CONFIG_MTD_CHAR=y
60893 -# CONFIG_MTD_BLKDEVS is not set
60894 -# CONFIG_MTD_BLOCK is not set
60895 -# CONFIG_MTD_BLOCK_RO is not set
60896 -# CONFIG_FTL is not set
60897 -# CONFIG_NFTL is not set
60898 -# CONFIG_INFTL is not set
60899 -# CONFIG_RFD_FTL is not set
60900 -# CONFIG_SSFDC is not set
60901 -# CONFIG_MTD_OOPS is not set
60902 -
60903 -#
60904 -# RAM/ROM/Flash chip drivers
60905 -#
60906 -CONFIG_MTD_CFI=y
60907 -# CONFIG_MTD_JEDECPROBE is not set
60908 -CONFIG_MTD_GEN_PROBE=y
60909 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
60910 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
60911 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
60912 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
60913 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
60914 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
60915 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
60916 -CONFIG_MTD_CFI_I1=y
60917 -CONFIG_MTD_CFI_I2=y
60918 -# CONFIG_MTD_CFI_I4 is not set
60919 -# CONFIG_MTD_CFI_I8 is not set
60920 -# CONFIG_MTD_CFI_INTELEXT is not set
60921 -CONFIG_MTD_CFI_AMDSTD=y
60922 -# CONFIG_MTD_CFI_STAA is not set
60923 -CONFIG_MTD_CFI_UTIL=y
60924 -# CONFIG_MTD_RAM is not set
60925 -# CONFIG_MTD_ROM is not set
60926 -# CONFIG_MTD_ABSENT is not set
60927 -
60928 -#
60929 -# Mapping drivers for chip access
60930 -#
60931 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
60932 -CONFIG_MTD_PHYSMAP=y
60933 -CONFIG_MTD_PHYSMAP_START=0xfe000000
60934 -CONFIG_MTD_PHYSMAP_LEN=0x800000
60935 -CONFIG_MTD_PHYSMAP_BANKWIDTH=2
60936 -# CONFIG_MTD_PHYSMAP_OF is not set
60937 -# CONFIG_MTD_INTEL_VR_NOR is not set
60938 -# CONFIG_MTD_PLATRAM is not set
60939 -
60940 -#
60941 -# Self-contained MTD device drivers
60942 -#
60943 -# CONFIG_MTD_PMC551 is not set
60944 -# CONFIG_MTD_DATAFLASH is not set
60945 -# CONFIG_MTD_M25P80 is not set
60946 -# CONFIG_MTD_SLRAM is not set
60947 -# CONFIG_MTD_PHRAM is not set
60948 -# CONFIG_MTD_MTDRAM is not set
60949 -# CONFIG_MTD_BLOCK2MTD is not set
60950 -
60951 -#
60952 -# Disk-On-Chip Device Drivers
60953 -#
60954 -# CONFIG_MTD_DOC2000 is not set
60955 -# CONFIG_MTD_DOC2001 is not set
60956 -# CONFIG_MTD_DOC2001PLUS is not set
60957 -# CONFIG_MTD_NAND is not set
60958 -# CONFIG_MTD_ONENAND is not set
60959 -
60960 -#
60961 -# UBI - Unsorted block images
60962 -#
60963 -# CONFIG_MTD_UBI is not set
60964 -CONFIG_OF_DEVICE=y
60965 -# CONFIG_PARPORT is not set
60966 -CONFIG_BLK_DEV=y
60967 -# CONFIG_BLK_DEV_FD is not set
60968 -# CONFIG_BLK_CPQ_DA is not set
60969 -# CONFIG_BLK_CPQ_CISS_DA is not set
60970 -# CONFIG_BLK_DEV_DAC960 is not set
60971 -# CONFIG_BLK_DEV_UMEM is not set
60972 -# CONFIG_BLK_DEV_COW_COMMON is not set
60973 -CONFIG_BLK_DEV_LOOP=y
60974 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
60975 -# CONFIG_BLK_DEV_NBD is not set
60976 -# CONFIG_BLK_DEV_SX8 is not set
60977 -# CONFIG_BLK_DEV_UB is not set
60978 -CONFIG_BLK_DEV_RAM=y
60979 -CONFIG_BLK_DEV_RAM_COUNT=16
60980 -CONFIG_BLK_DEV_RAM_SIZE=32768
60981 -# CONFIG_BLK_DEV_XIP is not set
60982 -# CONFIG_CDROM_PKTCDVD is not set
60983 -# CONFIG_ATA_OVER_ETH is not set
60984 -CONFIG_MISC_DEVICES=y
60985 -# CONFIG_PHANTOM is not set
60986 -# CONFIG_EEPROM_93CX6 is not set
60987 -# CONFIG_SGI_IOC4 is not set
60988 -# CONFIG_TIFM_CORE is not set
60989 -# CONFIG_ENCLOSURE_SERVICES is not set
60990 -CONFIG_HAVE_IDE=y
60991 -# CONFIG_IDE is not set
60992 -
60993 -#
60994 -# SCSI device support
60995 -#
60996 -# CONFIG_RAID_ATTRS is not set
60997 -CONFIG_SCSI=y
60998 -CONFIG_SCSI_DMA=y
60999 -# CONFIG_SCSI_TGT is not set
61000 -# CONFIG_SCSI_NETLINK is not set
61001 -CONFIG_SCSI_PROC_FS=y
61002 -
61003 -#
61004 -# SCSI support type (disk, tape, CD-ROM)
61005 -#
61006 -CONFIG_BLK_DEV_SD=y
61007 -# CONFIG_CHR_DEV_ST is not set
61008 -# CONFIG_CHR_DEV_OSST is not set
61009 -# CONFIG_BLK_DEV_SR is not set
61010 -CONFIG_CHR_DEV_SG=y
61011 -# CONFIG_CHR_DEV_SCH is not set
61012 -
61013 -#
61014 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
61015 -#
61016 -# CONFIG_SCSI_MULTI_LUN is not set
61017 -# CONFIG_SCSI_CONSTANTS is not set
61018 -# CONFIG_SCSI_LOGGING is not set
61019 -# CONFIG_SCSI_SCAN_ASYNC is not set
61020 -CONFIG_SCSI_WAIT_SCAN=m
61021 -
61022 -#
61023 -# SCSI Transports
61024 -#
61025 -CONFIG_SCSI_SPI_ATTRS=y
61026 -# CONFIG_SCSI_FC_ATTRS is not set
61027 -# CONFIG_SCSI_ISCSI_ATTRS is not set
61028 -# CONFIG_SCSI_SAS_LIBSAS is not set
61029 -# CONFIG_SCSI_SRP_ATTRS is not set
61030 -CONFIG_SCSI_LOWLEVEL=y
61031 -# CONFIG_ISCSI_TCP is not set
61032 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
61033 -# CONFIG_SCSI_3W_9XXX is not set
61034 -# CONFIG_SCSI_ACARD is not set
61035 -# CONFIG_SCSI_AACRAID is not set
61036 -# CONFIG_SCSI_AIC7XXX is not set
61037 -# CONFIG_SCSI_AIC7XXX_OLD is not set
61038 -# CONFIG_SCSI_AIC79XX is not set
61039 -# CONFIG_SCSI_AIC94XX is not set
61040 -# CONFIG_SCSI_DPT_I2O is not set
61041 -# CONFIG_SCSI_ADVANSYS is not set
61042 -# CONFIG_SCSI_ARCMSR is not set
61043 -# CONFIG_MEGARAID_NEWGEN is not set
61044 -# CONFIG_MEGARAID_LEGACY is not set
61045 -# CONFIG_MEGARAID_SAS is not set
61046 -# CONFIG_SCSI_HPTIOP is not set
61047 -# CONFIG_SCSI_BUSLOGIC is not set
61048 -# CONFIG_SCSI_DMX3191D is not set
61049 -# CONFIG_SCSI_EATA is not set
61050 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
61051 -# CONFIG_SCSI_GDTH is not set
61052 -# CONFIG_SCSI_IPS is not set
61053 -# CONFIG_SCSI_INITIO is not set
61054 -# CONFIG_SCSI_INIA100 is not set
61055 -# CONFIG_SCSI_MVSAS is not set
61056 -# CONFIG_SCSI_STEX is not set
61057 -# CONFIG_SCSI_SYM53C8XX_2 is not set
61058 -# CONFIG_SCSI_QLOGIC_1280 is not set
61059 -# CONFIG_SCSI_QLA_FC is not set
61060 -# CONFIG_SCSI_QLA_ISCSI is not set
61061 -# CONFIG_SCSI_LPFC is not set
61062 -# CONFIG_SCSI_DC395x is not set
61063 -# CONFIG_SCSI_DC390T is not set
61064 -# CONFIG_SCSI_NSP32 is not set
61065 -# CONFIG_SCSI_DEBUG is not set
61066 -# CONFIG_SCSI_SRP is not set
61067 -# CONFIG_ATA is not set
61068 -# CONFIG_MD is not set
61069 -# CONFIG_FUSION is not set
61070 -
61071 -#
61072 -# IEEE 1394 (FireWire) support
61073 -#
61074 -# CONFIG_FIREWIRE is not set
61075 -# CONFIG_IEEE1394 is not set
61076 -# CONFIG_I2O is not set
61077 -# CONFIG_MACINTOSH_DRIVERS is not set
61078 -CONFIG_NETDEVICES=y
61079 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
61080 -# CONFIG_DUMMY is not set
61081 -# CONFIG_BONDING is not set
61082 -# CONFIG_MACVLAN is not set
61083 -# CONFIG_EQUALIZER is not set
61084 -# CONFIG_TUN is not set
61085 -# CONFIG_VETH is not set
61086 -# CONFIG_ARCNET is not set
61087 -CONFIG_PHYLIB=y
61088 -
61089 -#
61090 -# MII PHY device drivers
61091 -#
61092 -# CONFIG_MARVELL_PHY is not set
61093 -# CONFIG_DAVICOM_PHY is not set
61094 -# CONFIG_QSEMI_PHY is not set
61095 -# CONFIG_LXT_PHY is not set
61096 -CONFIG_CICADA_PHY=y
61097 -# CONFIG_VITESSE_PHY is not set
61098 -# CONFIG_SMSC_PHY is not set
61099 -# CONFIG_BROADCOM_PHY is not set
61100 -# CONFIG_ICPLUS_PHY is not set
61101 -# CONFIG_REALTEK_PHY is not set
61102 -# CONFIG_FIXED_PHY is not set
61103 -# CONFIG_MDIO_BITBANG is not set
61104 -# CONFIG_NET_ETHERNET is not set
61105 -CONFIG_NETDEV_1000=y
61106 -# CONFIG_ACENIC is not set
61107 -# CONFIG_DL2K is not set
61108 -# CONFIG_E1000 is not set
61109 -# CONFIG_E1000E is not set
61110 -# CONFIG_E1000E_ENABLED is not set
61111 -# CONFIG_IP1000 is not set
61112 -# CONFIG_IGB is not set
61113 -# CONFIG_NS83820 is not set
61114 -# CONFIG_HAMACHI is not set
61115 -# CONFIG_YELLOWFIN is not set
61116 -# CONFIG_R8169 is not set
61117 -# CONFIG_SIS190 is not set
61118 -# CONFIG_SKGE is not set
61119 -# CONFIG_SKY2 is not set
61120 -# CONFIG_SK98LIN is not set
61121 -# CONFIG_VIA_VELOCITY is not set
61122 -# CONFIG_TIGON3 is not set
61123 -# CONFIG_BNX2 is not set
61124 -CONFIG_GIANFAR=y
61125 -CONFIG_GFAR_NAPI=y
61126 -# CONFIG_QLA3XXX is not set
61127 -# CONFIG_ATL1 is not set
61128 -CONFIG_NETDEV_10000=y
61129 -# CONFIG_CHELSIO_T1 is not set
61130 -# CONFIG_CHELSIO_T3 is not set
61131 -# CONFIG_IXGBE is not set
61132 -# CONFIG_IXGB is not set
61133 -# CONFIG_S2IO is not set
61134 -# CONFIG_MYRI10GE is not set
61135 -# CONFIG_NETXEN_NIC is not set
61136 -# CONFIG_NIU is not set
61137 -# CONFIG_MLX4_CORE is not set
61138 -# CONFIG_TEHUTI is not set
61139 -# CONFIG_BNX2X is not set
61140 -# CONFIG_TR is not set
61141 -
61142 -#
61143 -# Wireless LAN
61144 -#
61145 -# CONFIG_WLAN_PRE80211 is not set
61146 -# CONFIG_WLAN_80211 is not set
61147 -
61148 -#
61149 -# USB Network Adapters
61150 -#
61151 -# CONFIG_USB_CATC is not set
61152 -# CONFIG_USB_KAWETH is not set
61153 -# CONFIG_USB_PEGASUS is not set
61154 -# CONFIG_USB_RTL8150 is not set
61155 -# CONFIG_USB_USBNET is not set
61156 -# CONFIG_WAN is not set
61157 -# CONFIG_FDDI is not set
61158 -# CONFIG_HIPPI is not set
61159 -# CONFIG_PPP is not set
61160 -# CONFIG_SLIP is not set
61161 -# CONFIG_NET_FC is not set
61162 -# CONFIG_NETCONSOLE is not set
61163 -# CONFIG_NETPOLL is not set
61164 -# CONFIG_NET_POLL_CONTROLLER is not set
61165 -# CONFIG_ISDN is not set
61166 -# CONFIG_PHONE is not set
61167 -
61168 -#
61169 -# Input device support
61170 -#
61171 -# CONFIG_INPUT is not set
61172 -
61173 -#
61174 -# Hardware I/O ports
61175 -#
61176 -# CONFIG_SERIO is not set
61177 -# CONFIG_GAMEPORT is not set
61178 -
61179 -#
61180 -# Character devices
61181 -#
61182 -# CONFIG_VT is not set
61183 -# CONFIG_SERIAL_NONSTANDARD is not set
61184 -# CONFIG_NOZOMI is not set
61185 -
61186 -#
61187 -# Serial drivers
61188 -#
61189 -CONFIG_SERIAL_8250=y
61190 -CONFIG_SERIAL_8250_CONSOLE=y
61191 -# CONFIG_SERIAL_8250_PCI is not set
61192 -CONFIG_SERIAL_8250_NR_UARTS=4
61193 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
61194 -# CONFIG_SERIAL_8250_EXTENDED is not set
61195 -
61196 -#
61197 -# Non-8250 serial port support
61198 -#
61199 -# CONFIG_SERIAL_UARTLITE is not set
61200 -CONFIG_SERIAL_CORE=y
61201 -CONFIG_SERIAL_CORE_CONSOLE=y
61202 -# CONFIG_SERIAL_JSM is not set
61203 -# CONFIG_SERIAL_OF_PLATFORM is not set
61204 -CONFIG_UNIX98_PTYS=y
61205 -CONFIG_LEGACY_PTYS=y
61206 -CONFIG_LEGACY_PTY_COUNT=256
61207 -# CONFIG_IPMI_HANDLER is not set
61208 -CONFIG_HW_RANDOM=y
61209 -# CONFIG_NVRAM is not set
61210 -# CONFIG_GEN_RTC is not set
61211 -# CONFIG_R3964 is not set
61212 -# CONFIG_APPLICOM is not set
61213 -# CONFIG_RAW_DRIVER is not set
61214 -# CONFIG_TCG_TPM is not set
61215 -CONFIG_DEVPORT=y
61216 -CONFIG_I2C=y
61217 -CONFIG_I2C_BOARDINFO=y
61218 -CONFIG_I2C_CHARDEV=y
61219 -
61220 -#
61221 -# I2C Algorithms
61222 -#
61223 -# CONFIG_I2C_ALGOBIT is not set
61224 -# CONFIG_I2C_ALGOPCF is not set
61225 -# CONFIG_I2C_ALGOPCA is not set
61226 -
61227 -#
61228 -# I2C Hardware Bus support
61229 -#
61230 -# CONFIG_I2C_ALI1535 is not set
61231 -# CONFIG_I2C_ALI1563 is not set
61232 -# CONFIG_I2C_ALI15X3 is not set
61233 -# CONFIG_I2C_AMD756 is not set
61234 -# CONFIG_I2C_AMD8111 is not set
61235 -# CONFIG_I2C_I801 is not set
61236 -# CONFIG_I2C_I810 is not set
61237 -# CONFIG_I2C_PIIX4 is not set
61238 -CONFIG_I2C_MPC=y
61239 -# CONFIG_I2C_NFORCE2 is not set
61240 -# CONFIG_I2C_OCORES is not set
61241 -# CONFIG_I2C_PARPORT_LIGHT is not set
61242 -# CONFIG_I2C_PROSAVAGE is not set
61243 -# CONFIG_I2C_SAVAGE4 is not set
61244 -# CONFIG_I2C_SIMTEC is not set
61245 -# CONFIG_I2C_SIS5595 is not set
61246 -# CONFIG_I2C_SIS630 is not set
61247 -# CONFIG_I2C_SIS96X is not set
61248 -# CONFIG_I2C_TAOS_EVM is not set
61249 -# CONFIG_I2C_STUB is not set
61250 -# CONFIG_I2C_TINY_USB is not set
61251 -# CONFIG_I2C_VIA is not set
61252 -# CONFIG_I2C_VIAPRO is not set
61253 -# CONFIG_I2C_VOODOO3 is not set
61254 -
61255 -#
61256 -# Miscellaneous I2C Chip support
61257 -#
61258 -# CONFIG_DS1682 is not set
61259 -# CONFIG_SENSORS_EEPROM is not set
61260 -CONFIG_SENSORS_PCF8574=y
61261 -# CONFIG_PCF8575 is not set
61262 -# CONFIG_SENSORS_PCF8591 is not set
61263 -# CONFIG_TPS65010 is not set
61264 -# CONFIG_SENSORS_MAX6875 is not set
61265 -# CONFIG_SENSORS_TSL2550 is not set
61266 -# CONFIG_I2C_DEBUG_CORE is not set
61267 -# CONFIG_I2C_DEBUG_ALGO is not set
61268 -# CONFIG_I2C_DEBUG_BUS is not set
61269 -# CONFIG_I2C_DEBUG_CHIP is not set
61270 -
61271 -#
61272 -# SPI support
61273 -#
61274 -CONFIG_SPI=y
61275 -CONFIG_SPI_MASTER=y
61276 -
61277 -#
61278 -# SPI Master Controller Drivers
61279 -#
61280 -CONFIG_SPI_BITBANG=y
61281 -CONFIG_SPI_MPC83xx=y
61282 -
61283 -#
61284 -# SPI Protocol Masters
61285 -#
61286 -# CONFIG_SPI_AT25 is not set
61287 -# CONFIG_SPI_SPIDEV is not set
61288 -# CONFIG_SPI_TLE62X0 is not set
61289 -# CONFIG_W1 is not set
61290 -# CONFIG_POWER_SUPPLY is not set
61291 -# CONFIG_HWMON is not set
61292 -# CONFIG_THERMAL is not set
61293 -CONFIG_WATCHDOG=y
61294 -# CONFIG_WATCHDOG_NOWAYOUT is not set
61295 -
61296 -#
61297 -# Watchdog Device Drivers
61298 -#
61299 -# CONFIG_SOFT_WATCHDOG is not set
61300 -CONFIG_83xx_WDT=y
61301 -
61302 -#
61303 -# PCI-based Watchdog Cards
61304 -#
61305 -# CONFIG_PCIPCWATCHDOG is not set
61306 -# CONFIG_WDTPCI is not set
61307 -
61308 -#
61309 -# USB-based Watchdog Cards
61310 -#
61311 -# CONFIG_USBPCWATCHDOG is not set
61312 -
61313 -#
61314 -# Sonics Silicon Backplane
61315 -#
61316 -CONFIG_SSB_POSSIBLE=y
61317 -# CONFIG_SSB is not set
61318 -
61319 -#
61320 -# Multifunction device drivers
61321 -#
61322 -# CONFIG_MFD_SM501 is not set
61323 -
61324 -#
61325 -# Multimedia devices
61326 -#
61327 -# CONFIG_VIDEO_DEV is not set
61328 -# CONFIG_DVB_CORE is not set
61329 -CONFIG_DAB=y
61330 -# CONFIG_USB_DABUSB is not set
61331 -
61332 -#
61333 -# Graphics support
61334 -#
61335 -# CONFIG_AGP is not set
61336 -# CONFIG_DRM is not set
61337 -# CONFIG_VGASTATE is not set
61338 -CONFIG_VIDEO_OUTPUT_CONTROL=m
61339 -# CONFIG_FB is not set
61340 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
61341 -
61342 -#
61343 -# Display device support
61344 -#
61345 -# CONFIG_DISPLAY_SUPPORT is not set
61346 -
61347 -#
61348 -# Sound
61349 -#
61350 -# CONFIG_SOUND is not set
61351 -CONFIG_USB_SUPPORT=y
61352 -CONFIG_USB_ARCH_HAS_HCD=y
61353 -CONFIG_USB_ARCH_HAS_OHCI=y
61354 -CONFIG_USB_ARCH_HAS_EHCI=y
61355 -CONFIG_USB=y
61356 -# CONFIG_USB_DEBUG is not set
61357 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
61358 -
61359 -#
61360 -# Miscellaneous USB options
61361 -#
61362 -# CONFIG_USB_DEVICEFS is not set
61363 -CONFIG_USB_DEVICE_CLASS=y
61364 -# CONFIG_USB_DYNAMIC_MINORS is not set
61365 -# CONFIG_USB_OTG is not set
61366 -
61367 -#
61368 -# USB Host Controller Drivers
61369 -#
61370 -CONFIG_USB_EHCI_HCD=y
61371 -CONFIG_USB_EHCI_ROOT_HUB_TT=y
61372 -# CONFIG_USB_EHCI_TT_NEWSCHED is not set
61373 -CONFIG_USB_EHCI_FSL=y
61374 -CONFIG_USB_EHCI_HCD_PPC_OF=y
61375 -# CONFIG_USB_ISP116X_HCD is not set
61376 -# CONFIG_USB_OHCI_HCD is not set
61377 -CONFIG_USB_UHCI_HCD=y
61378 -# CONFIG_USB_SL811_HCD is not set
61379 -# CONFIG_USB_R8A66597_HCD is not set
61380 -
61381 -#
61382 -# USB Device Class drivers
61383 -#
61384 -# CONFIG_USB_ACM is not set
61385 -# CONFIG_USB_PRINTER is not set
61386 -
61387 -#
61388 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
61389 -#
61390 -
61391 -#
61392 -# may also be needed; see USB_STORAGE Help for more information
61393 -#
61394 -CONFIG_USB_STORAGE=y
61395 -# CONFIG_USB_STORAGE_DEBUG is not set
61396 -# CONFIG_USB_STORAGE_DATAFAB is not set
61397 -# CONFIG_USB_STORAGE_FREECOM is not set
61398 -# CONFIG_USB_STORAGE_ISD200 is not set
61399 -# CONFIG_USB_STORAGE_DPCM is not set
61400 -# CONFIG_USB_STORAGE_USBAT is not set
61401 -# CONFIG_USB_STORAGE_SDDR09 is not set
61402 -# CONFIG_USB_STORAGE_SDDR55 is not set
61403 -# CONFIG_USB_STORAGE_JUMPSHOT is not set
61404 -# CONFIG_USB_STORAGE_ALAUDA is not set
61405 -# CONFIG_USB_STORAGE_KARMA is not set
61406 -# CONFIG_USB_LIBUSUAL is not set
61407 -
61408 -#
61409 -# USB Imaging devices
61410 -#
61411 -# CONFIG_USB_MDC800 is not set
61412 -# CONFIG_USB_MICROTEK is not set
61413 -CONFIG_USB_MON=y
61414 -
61415 -#
61416 -# USB port drivers
61417 -#
61418 -# CONFIG_USB_SERIAL is not set
61419 -
61420 -#
61421 -# USB Miscellaneous drivers
61422 -#
61423 -# CONFIG_USB_EMI62 is not set
61424 -# CONFIG_USB_EMI26 is not set
61425 -# CONFIG_USB_ADUTUX is not set
61426 -# CONFIG_USB_AUERSWALD is not set
61427 -# CONFIG_USB_RIO500 is not set
61428 -# CONFIG_USB_LEGOTOWER is not set
61429 -# CONFIG_USB_LCD is not set
61430 -# CONFIG_USB_BERRY_CHARGE is not set
61431 -# CONFIG_USB_LED is not set
61432 -# CONFIG_USB_CYPRESS_CY7C63 is not set
61433 -# CONFIG_USB_CYTHERM is not set
61434 -# CONFIG_USB_PHIDGET is not set
61435 -# CONFIG_USB_IDMOUSE is not set
61436 -# CONFIG_USB_FTDI_ELAN is not set
61437 -# CONFIG_USB_APPLEDISPLAY is not set
61438 -# CONFIG_USB_SISUSBVGA is not set
61439 -# CONFIG_USB_LD is not set
61440 -# CONFIG_USB_TRANCEVIBRATOR is not set
61441 -# CONFIG_USB_IOWARRIOR is not set
61442 -# CONFIG_USB_GADGET is not set
61443 -# CONFIG_MMC is not set
61444 -# CONFIG_MEMSTICK is not set
61445 -# CONFIG_NEW_LEDS is not set
61446 -# CONFIG_INFINIBAND is not set
61447 -# CONFIG_EDAC is not set
61448 -CONFIG_RTC_LIB=y
61449 -CONFIG_RTC_CLASS=y
61450 -CONFIG_RTC_HCTOSYS=y
61451 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
61452 -# CONFIG_RTC_DEBUG is not set
61453 -
61454 -#
61455 -# RTC interfaces
61456 -#
61457 -CONFIG_RTC_INTF_SYSFS=y
61458 -CONFIG_RTC_INTF_PROC=y
61459 -CONFIG_RTC_INTF_DEV=y
61460 -CONFIG_RTC_INTF_DEV_UIE_EMUL=y
61461 -# CONFIG_RTC_DRV_TEST is not set
61462 -
61463 -#
61464 -# I2C RTC drivers
61465 -#
61466 -CONFIG_RTC_DRV_DS1307=y
61467 -# CONFIG_RTC_DRV_DS1374 is not set
61468 -# CONFIG_RTC_DRV_DS1672 is not set
61469 -# CONFIG_RTC_DRV_MAX6900 is not set
61470 -# CONFIG_RTC_DRV_RS5C372 is not set
61471 -# CONFIG_RTC_DRV_ISL1208 is not set
61472 -# CONFIG_RTC_DRV_X1205 is not set
61473 -# CONFIG_RTC_DRV_PCF8563 is not set
61474 -# CONFIG_RTC_DRV_PCF8583 is not set
61475 -# CONFIG_RTC_DRV_M41T80 is not set
61476 -# CONFIG_RTC_DRV_S35390A is not set
61477 -
61478 -#
61479 -# SPI RTC drivers
61480 -#
61481 -# CONFIG_RTC_DRV_MAX6902 is not set
61482 -# CONFIG_RTC_DRV_R9701 is not set
61483 -# CONFIG_RTC_DRV_RS5C348 is not set
61484 -
61485 -#
61486 -# Platform RTC drivers
61487 -#
61488 -# CONFIG_RTC_DRV_CMOS is not set
61489 -# CONFIG_RTC_DRV_DS1511 is not set
61490 -# CONFIG_RTC_DRV_DS1553 is not set
61491 -# CONFIG_RTC_DRV_DS1742 is not set
61492 -# CONFIG_RTC_DRV_STK17TA8 is not set
61493 -# CONFIG_RTC_DRV_M48T86 is not set
61494 -# CONFIG_RTC_DRV_M48T59 is not set
61495 -# CONFIG_RTC_DRV_V3020 is not set
61496 -
61497 -#
61498 -# on-CPU RTC drivers
61499 -#
61500 -# CONFIG_DMADEVICES is not set
61501 -
61502 -#
61503 -# Userspace I/O
61504 -#
61505 -# CONFIG_UIO is not set
61506 -
61507 -#
61508 -# File systems
61509 -#
61510 -CONFIG_EXT2_FS=y
61511 -# CONFIG_EXT2_FS_XATTR is not set
61512 -# CONFIG_EXT2_FS_XIP is not set
61513 -CONFIG_EXT3_FS=y
61514 -CONFIG_EXT3_FS_XATTR=y
61515 -# CONFIG_EXT3_FS_POSIX_ACL is not set
61516 -# CONFIG_EXT3_FS_SECURITY is not set
61517 -# CONFIG_EXT4DEV_FS is not set
61518 -CONFIG_JBD=y
61519 -CONFIG_FS_MBCACHE=y
61520 -# CONFIG_REISERFS_FS is not set
61521 -# CONFIG_JFS_FS is not set
61522 -# CONFIG_FS_POSIX_ACL is not set
61523 -# CONFIG_XFS_FS is not set
61524 -# CONFIG_GFS2_FS is not set
61525 -# CONFIG_OCFS2_FS is not set
61526 -CONFIG_DNOTIFY=y
61527 -CONFIG_INOTIFY=y
61528 -CONFIG_INOTIFY_USER=y
61529 -# CONFIG_QUOTA is not set
61530 -# CONFIG_AUTOFS_FS is not set
61531 -# CONFIG_AUTOFS4_FS is not set
61532 -# CONFIG_FUSE_FS is not set
61533 -
61534 -#
61535 -# CD-ROM/DVD Filesystems
61536 -#
61537 -# CONFIG_ISO9660_FS is not set
61538 -# CONFIG_UDF_FS is not set
61539 -
61540 -#
61541 -# DOS/FAT/NT Filesystems
61542 -#
61543 -CONFIG_FAT_FS=y
61544 -CONFIG_MSDOS_FS=y
61545 -CONFIG_VFAT_FS=y
61546 -CONFIG_FAT_DEFAULT_CODEPAGE=437
61547 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
61548 -# CONFIG_NTFS_FS is not set
61549 -
61550 -#
61551 -# Pseudo filesystems
61552 -#
61553 -CONFIG_PROC_FS=y
61554 -CONFIG_PROC_KCORE=y
61555 -CONFIG_PROC_SYSCTL=y
61556 -CONFIG_SYSFS=y
61557 -CONFIG_TMPFS=y
61558 -# CONFIG_TMPFS_POSIX_ACL is not set
61559 -# CONFIG_HUGETLB_PAGE is not set
61560 -# CONFIG_CONFIGFS_FS is not set
61561 -
61562 -#
61563 -# Miscellaneous filesystems
61564 -#
61565 -# CONFIG_ADFS_FS is not set
61566 -# CONFIG_AFFS_FS is not set
61567 -# CONFIG_HFS_FS is not set
61568 -# CONFIG_HFSPLUS_FS is not set
61569 -# CONFIG_BEFS_FS is not set
61570 -# CONFIG_BFS_FS is not set
61571 -# CONFIG_EFS_FS is not set
61572 -# CONFIG_JFFS2_FS is not set
61573 -# CONFIG_CRAMFS is not set
61574 -# CONFIG_VXFS_FS is not set
61575 -# CONFIG_MINIX_FS is not set
61576 -# CONFIG_HPFS_FS is not set
61577 -# CONFIG_QNX4FS_FS is not set
61578 -# CONFIG_ROMFS_FS is not set
61579 -# CONFIG_SYSV_FS is not set
61580 -# CONFIG_UFS_FS is not set
61581 -CONFIG_NETWORK_FILESYSTEMS=y
61582 -CONFIG_NFS_FS=y
61583 -CONFIG_NFS_V3=y
61584 -# CONFIG_NFS_V3_ACL is not set
61585 -CONFIG_NFS_V4=y
61586 -# CONFIG_NFS_DIRECTIO is not set
61587 -# CONFIG_NFSD is not set
61588 -CONFIG_ROOT_NFS=y
61589 -CONFIG_LOCKD=y
61590 -CONFIG_LOCKD_V4=y
61591 -CONFIG_NFS_COMMON=y
61592 -CONFIG_SUNRPC=y
61593 -CONFIG_SUNRPC_GSS=y
61594 -# CONFIG_SUNRPC_BIND34 is not set
61595 -CONFIG_RPCSEC_GSS_KRB5=y
61596 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
61597 -# CONFIG_SMB_FS is not set
61598 -# CONFIG_CIFS is not set
61599 -# CONFIG_NCP_FS is not set
61600 -# CONFIG_CODA_FS is not set
61601 -# CONFIG_AFS_FS is not set
61602 -
61603 -#
61604 -# Partition Types
61605 -#
61606 -CONFIG_PARTITION_ADVANCED=y
61607 -# CONFIG_ACORN_PARTITION is not set
61608 -# CONFIG_OSF_PARTITION is not set
61609 -# CONFIG_AMIGA_PARTITION is not set
61610 -# CONFIG_ATARI_PARTITION is not set
61611 -CONFIG_MAC_PARTITION=y
61612 -CONFIG_MSDOS_PARTITION=y
61613 -# CONFIG_BSD_DISKLABEL is not set
61614 -# CONFIG_MINIX_SUBPARTITION is not set
61615 -# CONFIG_SOLARIS_X86_PARTITION is not set
61616 -# CONFIG_UNIXWARE_DISKLABEL is not set
61617 -# CONFIG_LDM_PARTITION is not set
61618 -# CONFIG_SGI_PARTITION is not set
61619 -# CONFIG_ULTRIX_PARTITION is not set
61620 -# CONFIG_SUN_PARTITION is not set
61621 -# CONFIG_KARMA_PARTITION is not set
61622 -# CONFIG_EFI_PARTITION is not set
61623 -# CONFIG_SYSV68_PARTITION is not set
61624 -CONFIG_NLS=y
61625 -CONFIG_NLS_DEFAULT="iso8859-1"
61626 -# CONFIG_NLS_CODEPAGE_437 is not set
61627 -# CONFIG_NLS_CODEPAGE_737 is not set
61628 -# CONFIG_NLS_CODEPAGE_775 is not set
61629 -# CONFIG_NLS_CODEPAGE_850 is not set
61630 -# CONFIG_NLS_CODEPAGE_852 is not set
61631 -# CONFIG_NLS_CODEPAGE_855 is not set
61632 -# CONFIG_NLS_CODEPAGE_857 is not set
61633 -# CONFIG_NLS_CODEPAGE_860 is not set
61634 -# CONFIG_NLS_CODEPAGE_861 is not set
61635 -# CONFIG_NLS_CODEPAGE_862 is not set
61636 -# CONFIG_NLS_CODEPAGE_863 is not set
61637 -# CONFIG_NLS_CODEPAGE_864 is not set
61638 -# CONFIG_NLS_CODEPAGE_865 is not set
61639 -# CONFIG_NLS_CODEPAGE_866 is not set
61640 -# CONFIG_NLS_CODEPAGE_869 is not set
61641 -# CONFIG_NLS_CODEPAGE_936 is not set
61642 -# CONFIG_NLS_CODEPAGE_950 is not set
61643 -# CONFIG_NLS_CODEPAGE_932 is not set
61644 -# CONFIG_NLS_CODEPAGE_949 is not set
61645 -# CONFIG_NLS_CODEPAGE_874 is not set
61646 -# CONFIG_NLS_ISO8859_8 is not set
61647 -# CONFIG_NLS_CODEPAGE_1250 is not set
61648 -# CONFIG_NLS_CODEPAGE_1251 is not set
61649 -# CONFIG_NLS_ASCII is not set
61650 -# CONFIG_NLS_ISO8859_1 is not set
61651 -# CONFIG_NLS_ISO8859_2 is not set
61652 -# CONFIG_NLS_ISO8859_3 is not set
61653 -# CONFIG_NLS_ISO8859_4 is not set
61654 -# CONFIG_NLS_ISO8859_5 is not set
61655 -# CONFIG_NLS_ISO8859_6 is not set
61656 -# CONFIG_NLS_ISO8859_7 is not set
61657 -# CONFIG_NLS_ISO8859_9 is not set
61658 -# CONFIG_NLS_ISO8859_13 is not set
61659 -# CONFIG_NLS_ISO8859_14 is not set
61660 -# CONFIG_NLS_ISO8859_15 is not set
61661 -# CONFIG_NLS_KOI8_R is not set
61662 -# CONFIG_NLS_KOI8_U is not set
61663 -# CONFIG_NLS_UTF8 is not set
61664 -# CONFIG_DLM is not set
61665 -
61666 -#
61667 -# Library routines
61668 -#
61669 -CONFIG_BITREVERSE=y
61670 -# CONFIG_CRC_CCITT is not set
61671 -# CONFIG_CRC16 is not set
61672 -# CONFIG_CRC_ITU_T is not set
61673 -CONFIG_CRC32=y
61674 -# CONFIG_CRC7 is not set
61675 -# CONFIG_LIBCRC32C is not set
61676 -CONFIG_PLIST=y
61677 -CONFIG_HAS_IOMEM=y
61678 -CONFIG_HAS_IOPORT=y
61679 -CONFIG_HAS_DMA=y
61680 -
61681 -#
61682 -# Kernel hacking
61683 -#
61684 -# CONFIG_PRINTK_TIME is not set
61685 -CONFIG_ENABLE_WARN_DEPRECATED=y
61686 -CONFIG_ENABLE_MUST_CHECK=y
61687 -# CONFIG_MAGIC_SYSRQ is not set
61688 -# CONFIG_UNUSED_SYMBOLS is not set
61689 -# CONFIG_DEBUG_FS is not set
61690 -# CONFIG_HEADERS_CHECK is not set
61691 -# CONFIG_DEBUG_KERNEL is not set
61692 -# CONFIG_SLUB_DEBUG_ON is not set
61693 -# CONFIG_SLUB_STATS is not set
61694 -# CONFIG_DEBUG_BUGVERBOSE is not set
61695 -# CONFIG_SAMPLES is not set
61696 -# CONFIG_PPC_EARLY_DEBUG is not set
61697 -
61698 -#
61699 -# Security options
61700 -#
61701 -# CONFIG_KEYS is not set
61702 -# CONFIG_SECURITY is not set
61703 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
61704 -CONFIG_CRYPTO=y
61705 -CONFIG_CRYPTO_ALGAPI=y
61706 -CONFIG_CRYPTO_BLKCIPHER=y
61707 -# CONFIG_CRYPTO_SEQIV is not set
61708 -CONFIG_CRYPTO_MANAGER=y
61709 -# CONFIG_CRYPTO_HMAC is not set
61710 -# CONFIG_CRYPTO_XCBC is not set
61711 -# CONFIG_CRYPTO_NULL is not set
61712 -# CONFIG_CRYPTO_MD4 is not set
61713 -CONFIG_CRYPTO_MD5=y
61714 -# CONFIG_CRYPTO_SHA1 is not set
61715 -# CONFIG_CRYPTO_SHA256 is not set
61716 -# CONFIG_CRYPTO_SHA512 is not set
61717 -# CONFIG_CRYPTO_WP512 is not set
61718 -# CONFIG_CRYPTO_TGR192 is not set
61719 -# CONFIG_CRYPTO_GF128MUL is not set
61720 -# CONFIG_CRYPTO_ECB is not set
61721 -CONFIG_CRYPTO_CBC=y
61722 -CONFIG_CRYPTO_PCBC=m
61723 -# CONFIG_CRYPTO_LRW is not set
61724 -# CONFIG_CRYPTO_XTS is not set
61725 -# CONFIG_CRYPTO_CTR is not set
61726 -# CONFIG_CRYPTO_GCM is not set
61727 -# CONFIG_CRYPTO_CCM is not set
61728 -# CONFIG_CRYPTO_CRYPTD is not set
61729 -CONFIG_CRYPTO_DES=y
61730 -# CONFIG_CRYPTO_FCRYPT is not set
61731 -# CONFIG_CRYPTO_BLOWFISH is not set
61732 -# CONFIG_CRYPTO_TWOFISH is not set
61733 -# CONFIG_CRYPTO_SERPENT is not set
61734 -# CONFIG_CRYPTO_AES is not set
61735 -# CONFIG_CRYPTO_CAST5 is not set
61736 -# CONFIG_CRYPTO_CAST6 is not set
61737 -# CONFIG_CRYPTO_TEA is not set
61738 -# CONFIG_CRYPTO_ARC4 is not set
61739 -# CONFIG_CRYPTO_KHAZAD is not set
61740 -# CONFIG_CRYPTO_ANUBIS is not set
61741 -# CONFIG_CRYPTO_SEED is not set
61742 -# CONFIG_CRYPTO_SALSA20 is not set
61743 -# CONFIG_CRYPTO_DEFLATE is not set
61744 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
61745 -# CONFIG_CRYPTO_CRC32C is not set
61746 -# CONFIG_CRYPTO_CAMELLIA is not set
61747 -# CONFIG_CRYPTO_TEST is not set
61748 -# CONFIG_CRYPTO_AUTHENC is not set
61749 -# CONFIG_CRYPTO_LZO is not set
61750 -CONFIG_CRYPTO_HW=y
61751 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
61752 -# CONFIG_PPC_CLOCK is not set
61753 Index: linux-2.6.25.4/arch/powerpc/configs/mpc834x_mds_defconfig
61754 ===================================================================
61755 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc834x_mds_defconfig
61756 +++ /dev/null
61757 @@ -1,1021 +0,0 @@
61758 -#
61759 -# Automatically generated make config: don't edit
61760 -# Linux kernel version: 2.6.25-rc7
61761 -# Mon Mar 31 11:36:56 2008
61762 -#
61763 -# CONFIG_PPC64 is not set
61764 -
61765 -#
61766 -# Processor support
61767 -#
61768 -CONFIG_6xx=y
61769 -# CONFIG_PPC_85xx is not set
61770 -# CONFIG_PPC_8xx is not set
61771 -# CONFIG_40x is not set
61772 -# CONFIG_44x is not set
61773 -# CONFIG_E200 is not set
61774 -CONFIG_PPC_FPU=y
61775 -# CONFIG_FSL_EMB_PERFMON is not set
61776 -CONFIG_PPC_STD_MMU=y
61777 -CONFIG_PPC_STD_MMU_32=y
61778 -# CONFIG_PPC_MM_SLICES is not set
61779 -# CONFIG_SMP is not set
61780 -CONFIG_PPC32=y
61781 -CONFIG_WORD_SIZE=32
61782 -CONFIG_PPC_MERGE=y
61783 -CONFIG_MMU=y
61784 -CONFIG_GENERIC_CMOS_UPDATE=y
61785 -CONFIG_GENERIC_TIME=y
61786 -CONFIG_GENERIC_TIME_VSYSCALL=y
61787 -CONFIG_GENERIC_CLOCKEVENTS=y
61788 -CONFIG_GENERIC_HARDIRQS=y
61789 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
61790 -CONFIG_IRQ_PER_CPU=y
61791 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
61792 -CONFIG_ARCH_HAS_ILOG2_U32=y
61793 -CONFIG_GENERIC_HWEIGHT=y
61794 -CONFIG_GENERIC_CALIBRATE_DELAY=y
61795 -CONFIG_GENERIC_FIND_NEXT_BIT=y
61796 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
61797 -CONFIG_PPC=y
61798 -CONFIG_EARLY_PRINTK=y
61799 -CONFIG_GENERIC_NVRAM=y
61800 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
61801 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
61802 -CONFIG_PPC_OF=y
61803 -CONFIG_OF=y
61804 -CONFIG_PPC_UDBG_16550=y
61805 -# CONFIG_GENERIC_TBSYNC is not set
61806 -CONFIG_AUDIT_ARCH=y
61807 -CONFIG_GENERIC_BUG=y
61808 -CONFIG_DEFAULT_UIMAGE=y
61809 -# CONFIG_PPC_DCR_NATIVE is not set
61810 -# CONFIG_PPC_DCR_MMIO is not set
61811 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
61812 -
61813 -#
61814 -# General setup
61815 -#
61816 -CONFIG_EXPERIMENTAL=y
61817 -CONFIG_BROKEN_ON_SMP=y
61818 -CONFIG_INIT_ENV_ARG_LIMIT=32
61819 -CONFIG_LOCALVERSION=""
61820 -CONFIG_LOCALVERSION_AUTO=y
61821 -CONFIG_SWAP=y
61822 -CONFIG_SYSVIPC=y
61823 -CONFIG_SYSVIPC_SYSCTL=y
61824 -# CONFIG_POSIX_MQUEUE is not set
61825 -# CONFIG_BSD_PROCESS_ACCT is not set
61826 -# CONFIG_TASKSTATS is not set
61827 -# CONFIG_AUDIT is not set
61828 -# CONFIG_IKCONFIG is not set
61829 -CONFIG_LOG_BUF_SHIFT=14
61830 -# CONFIG_CGROUPS is not set
61831 -CONFIG_GROUP_SCHED=y
61832 -# CONFIG_FAIR_GROUP_SCHED is not set
61833 -# CONFIG_RT_GROUP_SCHED is not set
61834 -CONFIG_USER_SCHED=y
61835 -# CONFIG_CGROUP_SCHED is not set
61836 -CONFIG_SYSFS_DEPRECATED=y
61837 -CONFIG_SYSFS_DEPRECATED_V2=y
61838 -# CONFIG_RELAY is not set
61839 -# CONFIG_NAMESPACES is not set
61840 -CONFIG_BLK_DEV_INITRD=y
61841 -CONFIG_INITRAMFS_SOURCE=""
61842 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
61843 -CONFIG_SYSCTL=y
61844 -CONFIG_EMBEDDED=y
61845 -CONFIG_SYSCTL_SYSCALL=y
61846 -# CONFIG_KALLSYMS is not set
61847 -CONFIG_HOTPLUG=y
61848 -CONFIG_PRINTK=y
61849 -CONFIG_BUG=y
61850 -CONFIG_ELF_CORE=y
61851 -CONFIG_COMPAT_BRK=y
61852 -CONFIG_BASE_FULL=y
61853 -CONFIG_FUTEX=y
61854 -CONFIG_ANON_INODES=y
61855 -# CONFIG_EPOLL is not set
61856 -CONFIG_SIGNALFD=y
61857 -CONFIG_TIMERFD=y
61858 -CONFIG_EVENTFD=y
61859 -CONFIG_SHMEM=y
61860 -CONFIG_VM_EVENT_COUNTERS=y
61861 -CONFIG_SLUB_DEBUG=y
61862 -# CONFIG_SLAB is not set
61863 -CONFIG_SLUB=y
61864 -# CONFIG_SLOB is not set
61865 -# CONFIG_PROFILING is not set
61866 -# CONFIG_MARKERS is not set
61867 -CONFIG_HAVE_OPROFILE=y
61868 -CONFIG_HAVE_KPROBES=y
61869 -CONFIG_HAVE_KRETPROBES=y
61870 -CONFIG_PROC_PAGE_MONITOR=y
61871 -CONFIG_SLABINFO=y
61872 -CONFIG_RT_MUTEXES=y
61873 -# CONFIG_TINY_SHMEM is not set
61874 -CONFIG_BASE_SMALL=0
61875 -CONFIG_MODULES=y
61876 -CONFIG_MODULE_UNLOAD=y
61877 -# CONFIG_MODULE_FORCE_UNLOAD is not set
61878 -# CONFIG_MODVERSIONS is not set
61879 -# CONFIG_MODULE_SRCVERSION_ALL is not set
61880 -# CONFIG_KMOD is not set
61881 -CONFIG_BLOCK=y
61882 -# CONFIG_LBD is not set
61883 -# CONFIG_BLK_DEV_IO_TRACE is not set
61884 -# CONFIG_LSF is not set
61885 -# CONFIG_BLK_DEV_BSG is not set
61886 -
61887 -#
61888 -# IO Schedulers
61889 -#
61890 -CONFIG_IOSCHED_NOOP=y
61891 -CONFIG_IOSCHED_AS=y
61892 -CONFIG_IOSCHED_DEADLINE=y
61893 -CONFIG_IOSCHED_CFQ=y
61894 -CONFIG_DEFAULT_AS=y
61895 -# CONFIG_DEFAULT_DEADLINE is not set
61896 -# CONFIG_DEFAULT_CFQ is not set
61897 -# CONFIG_DEFAULT_NOOP is not set
61898 -CONFIG_DEFAULT_IOSCHED="anticipatory"
61899 -CONFIG_CLASSIC_RCU=y
61900 -
61901 -#
61902 -# Platform support
61903 -#
61904 -# CONFIG_PPC_MULTIPLATFORM is not set
61905 -# CONFIG_PPC_82xx is not set
61906 -CONFIG_PPC_83xx=y
61907 -# CONFIG_PPC_86xx is not set
61908 -# CONFIG_PPC_MPC512x is not set
61909 -# CONFIG_PPC_MPC5121 is not set
61910 -# CONFIG_PPC_CELL is not set
61911 -# CONFIG_PPC_CELL_NATIVE is not set
61912 -# CONFIG_PQ2ADS is not set
61913 -CONFIG_MPC83xx=y
61914 -# CONFIG_MPC831x_RDB is not set
61915 -# CONFIG_MPC832x_MDS is not set
61916 -# CONFIG_MPC832x_RDB is not set
61917 -CONFIG_MPC834x_MDS=y
61918 -# CONFIG_MPC834x_ITX is not set
61919 -# CONFIG_MPC836x_MDS is not set
61920 -# CONFIG_MPC837x_MDS is not set
61921 -# CONFIG_MPC837x_RDB is not set
61922 -# CONFIG_SBC834x is not set
61923 -CONFIG_PPC_MPC834x=y
61924 -CONFIG_IPIC=y
61925 -# CONFIG_MPIC is not set
61926 -# CONFIG_MPIC_WEIRD is not set
61927 -# CONFIG_PPC_I8259 is not set
61928 -# CONFIG_PPC_RTAS is not set
61929 -# CONFIG_MMIO_NVRAM is not set
61930 -# CONFIG_PPC_MPC106 is not set
61931 -# CONFIG_PPC_970_NAP is not set
61932 -# CONFIG_PPC_INDIRECT_IO is not set
61933 -# CONFIG_GENERIC_IOMAP is not set
61934 -# CONFIG_CPU_FREQ is not set
61935 -# CONFIG_FSL_ULI1575 is not set
61936 -
61937 -#
61938 -# Kernel options
61939 -#
61940 -# CONFIG_HIGHMEM is not set
61941 -CONFIG_TICK_ONESHOT=y
61942 -CONFIG_NO_HZ=y
61943 -CONFIG_HIGH_RES_TIMERS=y
61944 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
61945 -# CONFIG_HZ_100 is not set
61946 -CONFIG_HZ_250=y
61947 -# CONFIG_HZ_300 is not set
61948 -# CONFIG_HZ_1000 is not set
61949 -CONFIG_HZ=250
61950 -# CONFIG_SCHED_HRTICK is not set
61951 -CONFIG_PREEMPT_NONE=y
61952 -# CONFIG_PREEMPT_VOLUNTARY is not set
61953 -# CONFIG_PREEMPT is not set
61954 -CONFIG_BINFMT_ELF=y
61955 -# CONFIG_BINFMT_MISC is not set
61956 -# CONFIG_IOMMU_HELPER is not set
61957 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
61958 -CONFIG_ARCH_HAS_WALK_MEMORY=y
61959 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
61960 -CONFIG_ARCH_FLATMEM_ENABLE=y
61961 -CONFIG_ARCH_POPULATES_NODE_MAP=y
61962 -CONFIG_SELECT_MEMORY_MODEL=y
61963 -CONFIG_FLATMEM_MANUAL=y
61964 -# CONFIG_DISCONTIGMEM_MANUAL is not set
61965 -# CONFIG_SPARSEMEM_MANUAL is not set
61966 -CONFIG_FLATMEM=y
61967 -CONFIG_FLAT_NODE_MEM_MAP=y
61968 -# CONFIG_SPARSEMEM_STATIC is not set
61969 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
61970 -CONFIG_SPLIT_PTLOCK_CPUS=4
61971 -# CONFIG_RESOURCES_64BIT is not set
61972 -CONFIG_ZONE_DMA_FLAG=1
61973 -CONFIG_BOUNCE=y
61974 -CONFIG_VIRT_TO_BUS=y
61975 -CONFIG_PROC_DEVICETREE=y
61976 -# CONFIG_CMDLINE_BOOL is not set
61977 -# CONFIG_PM is not set
61978 -CONFIG_SECCOMP=y
61979 -CONFIG_ISA_DMA_API=y
61980 -
61981 -#
61982 -# Bus options
61983 -#
61984 -CONFIG_ZONE_DMA=y
61985 -CONFIG_GENERIC_ISA_DMA=y
61986 -CONFIG_PPC_INDIRECT_PCI=y
61987 -CONFIG_FSL_SOC=y
61988 -CONFIG_PCI=y
61989 -CONFIG_PCI_DOMAINS=y
61990 -CONFIG_PCI_SYSCALL=y
61991 -# CONFIG_PCIEPORTBUS is not set
61992 -CONFIG_ARCH_SUPPORTS_MSI=y
61993 -# CONFIG_PCI_MSI is not set
61994 -CONFIG_PCI_LEGACY=y
61995 -# CONFIG_PCCARD is not set
61996 -# CONFIG_HOTPLUG_PCI is not set
61997 -
61998 -#
61999 -# Advanced setup
62000 -#
62001 -# CONFIG_ADVANCED_OPTIONS is not set
62002 -
62003 -#
62004 -# Default settings for advanced configuration options are used
62005 -#
62006 -CONFIG_HIGHMEM_START=0xfe000000
62007 -CONFIG_LOWMEM_SIZE=0x30000000
62008 -CONFIG_KERNEL_START=0xc0000000
62009 -CONFIG_TASK_SIZE=0xc0000000
62010 -CONFIG_BOOT_LOAD=0x00800000
62011 -
62012 -#
62013 -# Networking
62014 -#
62015 -CONFIG_NET=y
62016 -
62017 -#
62018 -# Networking options
62019 -#
62020 -CONFIG_PACKET=y
62021 -# CONFIG_PACKET_MMAP is not set
62022 -CONFIG_UNIX=y
62023 -CONFIG_XFRM=y
62024 -CONFIG_XFRM_USER=m
62025 -# CONFIG_XFRM_SUB_POLICY is not set
62026 -# CONFIG_XFRM_MIGRATE is not set
62027 -# CONFIG_XFRM_STATISTICS is not set
62028 -# CONFIG_NET_KEY is not set
62029 -CONFIG_INET=y
62030 -CONFIG_IP_MULTICAST=y
62031 -# CONFIG_IP_ADVANCED_ROUTER is not set
62032 -CONFIG_IP_FIB_HASH=y
62033 -CONFIG_IP_PNP=y
62034 -CONFIG_IP_PNP_DHCP=y
62035 -CONFIG_IP_PNP_BOOTP=y
62036 -# CONFIG_IP_PNP_RARP is not set
62037 -# CONFIG_NET_IPIP is not set
62038 -# CONFIG_NET_IPGRE is not set
62039 -# CONFIG_IP_MROUTE is not set
62040 -# CONFIG_ARPD is not set
62041 -CONFIG_SYN_COOKIES=y
62042 -# CONFIG_INET_AH is not set
62043 -# CONFIG_INET_ESP is not set
62044 -# CONFIG_INET_IPCOMP is not set
62045 -# CONFIG_INET_XFRM_TUNNEL is not set
62046 -# CONFIG_INET_TUNNEL is not set
62047 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
62048 -CONFIG_INET_XFRM_MODE_TUNNEL=y
62049 -CONFIG_INET_XFRM_MODE_BEET=y
62050 -# CONFIG_INET_LRO is not set
62051 -CONFIG_INET_DIAG=y
62052 -CONFIG_INET_TCP_DIAG=y
62053 -# CONFIG_TCP_CONG_ADVANCED is not set
62054 -CONFIG_TCP_CONG_CUBIC=y
62055 -CONFIG_DEFAULT_TCP_CONG="cubic"
62056 -# CONFIG_TCP_MD5SIG is not set
62057 -# CONFIG_IPV6 is not set
62058 -# CONFIG_INET6_XFRM_TUNNEL is not set
62059 -# CONFIG_INET6_TUNNEL is not set
62060 -# CONFIG_NETWORK_SECMARK is not set
62061 -# CONFIG_NETFILTER is not set
62062 -# CONFIG_IP_DCCP is not set
62063 -# CONFIG_IP_SCTP is not set
62064 -# CONFIG_TIPC is not set
62065 -# CONFIG_ATM is not set
62066 -# CONFIG_BRIDGE is not set
62067 -# CONFIG_VLAN_8021Q is not set
62068 -# CONFIG_DECNET is not set
62069 -# CONFIG_LLC2 is not set
62070 -# CONFIG_IPX is not set
62071 -# CONFIG_ATALK is not set
62072 -# CONFIG_X25 is not set
62073 -# CONFIG_LAPB is not set
62074 -# CONFIG_ECONET is not set
62075 -# CONFIG_WAN_ROUTER is not set
62076 -# CONFIG_NET_SCHED is not set
62077 -
62078 -#
62079 -# Network testing
62080 -#
62081 -# CONFIG_NET_PKTGEN is not set
62082 -# CONFIG_HAMRADIO is not set
62083 -# CONFIG_CAN is not set
62084 -# CONFIG_IRDA is not set
62085 -# CONFIG_BT is not set
62086 -# CONFIG_AF_RXRPC is not set
62087 -
62088 -#
62089 -# Wireless
62090 -#
62091 -# CONFIG_CFG80211 is not set
62092 -# CONFIG_WIRELESS_EXT is not set
62093 -# CONFIG_MAC80211 is not set
62094 -# CONFIG_IEEE80211 is not set
62095 -# CONFIG_RFKILL is not set
62096 -# CONFIG_NET_9P is not set
62097 -
62098 -#
62099 -# Device Drivers
62100 -#
62101 -
62102 -#
62103 -# Generic Driver Options
62104 -#
62105 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
62106 -CONFIG_STANDALONE=y
62107 -CONFIG_PREVENT_FIRMWARE_BUILD=y
62108 -# CONFIG_FW_LOADER is not set
62109 -# CONFIG_SYS_HYPERVISOR is not set
62110 -# CONFIG_CONNECTOR is not set
62111 -# CONFIG_MTD is not set
62112 -CONFIG_OF_DEVICE=y
62113 -# CONFIG_PARPORT is not set
62114 -CONFIG_BLK_DEV=y
62115 -# CONFIG_BLK_DEV_FD is not set
62116 -# CONFIG_BLK_CPQ_DA is not set
62117 -# CONFIG_BLK_CPQ_CISS_DA is not set
62118 -# CONFIG_BLK_DEV_DAC960 is not set
62119 -# CONFIG_BLK_DEV_UMEM is not set
62120 -# CONFIG_BLK_DEV_COW_COMMON is not set
62121 -CONFIG_BLK_DEV_LOOP=y
62122 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
62123 -# CONFIG_BLK_DEV_NBD is not set
62124 -# CONFIG_BLK_DEV_SX8 is not set
62125 -CONFIG_BLK_DEV_RAM=y
62126 -CONFIG_BLK_DEV_RAM_COUNT=16
62127 -CONFIG_BLK_DEV_RAM_SIZE=32768
62128 -# CONFIG_BLK_DEV_XIP is not set
62129 -# CONFIG_CDROM_PKTCDVD is not set
62130 -# CONFIG_ATA_OVER_ETH is not set
62131 -CONFIG_MISC_DEVICES=y
62132 -# CONFIG_PHANTOM is not set
62133 -# CONFIG_EEPROM_93CX6 is not set
62134 -# CONFIG_SGI_IOC4 is not set
62135 -# CONFIG_TIFM_CORE is not set
62136 -# CONFIG_ENCLOSURE_SERVICES is not set
62137 -CONFIG_HAVE_IDE=y
62138 -# CONFIG_IDE is not set
62139 -
62140 -#
62141 -# SCSI device support
62142 -#
62143 -# CONFIG_RAID_ATTRS is not set
62144 -# CONFIG_SCSI is not set
62145 -# CONFIG_SCSI_DMA is not set
62146 -# CONFIG_SCSI_NETLINK is not set
62147 -# CONFIG_ATA is not set
62148 -# CONFIG_MD is not set
62149 -# CONFIG_FUSION is not set
62150 -
62151 -#
62152 -# IEEE 1394 (FireWire) support
62153 -#
62154 -# CONFIG_FIREWIRE is not set
62155 -# CONFIG_IEEE1394 is not set
62156 -# CONFIG_I2O is not set
62157 -# CONFIG_MACINTOSH_DRIVERS is not set
62158 -CONFIG_NETDEVICES=y
62159 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
62160 -# CONFIG_DUMMY is not set
62161 -# CONFIG_BONDING is not set
62162 -# CONFIG_MACVLAN is not set
62163 -# CONFIG_EQUALIZER is not set
62164 -# CONFIG_TUN is not set
62165 -# CONFIG_VETH is not set
62166 -# CONFIG_ARCNET is not set
62167 -CONFIG_PHYLIB=y
62168 -
62169 -#
62170 -# MII PHY device drivers
62171 -#
62172 -CONFIG_MARVELL_PHY=y
62173 -# CONFIG_DAVICOM_PHY is not set
62174 -# CONFIG_QSEMI_PHY is not set
62175 -# CONFIG_LXT_PHY is not set
62176 -# CONFIG_CICADA_PHY is not set
62177 -# CONFIG_VITESSE_PHY is not set
62178 -# CONFIG_SMSC_PHY is not set
62179 -# CONFIG_BROADCOM_PHY is not set
62180 -# CONFIG_ICPLUS_PHY is not set
62181 -# CONFIG_REALTEK_PHY is not set
62182 -# CONFIG_FIXED_PHY is not set
62183 -# CONFIG_MDIO_BITBANG is not set
62184 -CONFIG_NET_ETHERNET=y
62185 -CONFIG_MII=y
62186 -# CONFIG_HAPPYMEAL is not set
62187 -# CONFIG_SUNGEM is not set
62188 -# CONFIG_CASSINI is not set
62189 -# CONFIG_NET_VENDOR_3COM is not set
62190 -# CONFIG_NET_TULIP is not set
62191 -# CONFIG_HP100 is not set
62192 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
62193 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
62194 -# CONFIG_IBM_NEW_EMAC_TAH is not set
62195 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
62196 -CONFIG_NET_PCI=y
62197 -# CONFIG_PCNET32 is not set
62198 -# CONFIG_AMD8111_ETH is not set
62199 -# CONFIG_ADAPTEC_STARFIRE is not set
62200 -# CONFIG_B44 is not set
62201 -# CONFIG_FORCEDETH is not set
62202 -# CONFIG_EEPRO100 is not set
62203 -CONFIG_E100=y
62204 -# CONFIG_FEALNX is not set
62205 -# CONFIG_NATSEMI is not set
62206 -# CONFIG_NE2K_PCI is not set
62207 -# CONFIG_8139CP is not set
62208 -# CONFIG_8139TOO is not set
62209 -# CONFIG_R6040 is not set
62210 -# CONFIG_SIS900 is not set
62211 -# CONFIG_EPIC100 is not set
62212 -# CONFIG_SUNDANCE is not set
62213 -# CONFIG_TLAN is not set
62214 -# CONFIG_VIA_RHINE is not set
62215 -# CONFIG_SC92031 is not set
62216 -CONFIG_NETDEV_1000=y
62217 -# CONFIG_ACENIC is not set
62218 -# CONFIG_DL2K is not set
62219 -# CONFIG_E1000 is not set
62220 -# CONFIG_E1000E is not set
62221 -# CONFIG_E1000E_ENABLED is not set
62222 -# CONFIG_IP1000 is not set
62223 -# CONFIG_IGB is not set
62224 -# CONFIG_NS83820 is not set
62225 -# CONFIG_HAMACHI is not set
62226 -# CONFIG_YELLOWFIN is not set
62227 -# CONFIG_R8169 is not set
62228 -# CONFIG_SIS190 is not set
62229 -# CONFIG_SKGE is not set
62230 -# CONFIG_SKY2 is not set
62231 -# CONFIG_SK98LIN is not set
62232 -# CONFIG_VIA_VELOCITY is not set
62233 -# CONFIG_TIGON3 is not set
62234 -# CONFIG_BNX2 is not set
62235 -CONFIG_GIANFAR=y
62236 -# CONFIG_GFAR_NAPI is not set
62237 -# CONFIG_QLA3XXX is not set
62238 -# CONFIG_ATL1 is not set
62239 -CONFIG_NETDEV_10000=y
62240 -# CONFIG_CHELSIO_T1 is not set
62241 -# CONFIG_CHELSIO_T3 is not set
62242 -# CONFIG_IXGBE is not set
62243 -# CONFIG_IXGB is not set
62244 -# CONFIG_S2IO is not set
62245 -# CONFIG_MYRI10GE is not set
62246 -# CONFIG_NETXEN_NIC is not set
62247 -# CONFIG_NIU is not set
62248 -# CONFIG_MLX4_CORE is not set
62249 -# CONFIG_TEHUTI is not set
62250 -# CONFIG_BNX2X is not set
62251 -# CONFIG_TR is not set
62252 -
62253 -#
62254 -# Wireless LAN
62255 -#
62256 -# CONFIG_WLAN_PRE80211 is not set
62257 -# CONFIG_WLAN_80211 is not set
62258 -# CONFIG_WAN is not set
62259 -# CONFIG_FDDI is not set
62260 -# CONFIG_HIPPI is not set
62261 -# CONFIG_PPP is not set
62262 -# CONFIG_SLIP is not set
62263 -# CONFIG_NETCONSOLE is not set
62264 -# CONFIG_NETPOLL is not set
62265 -# CONFIG_NET_POLL_CONTROLLER is not set
62266 -# CONFIG_ISDN is not set
62267 -# CONFIG_PHONE is not set
62268 -
62269 -#
62270 -# Input device support
62271 -#
62272 -CONFIG_INPUT=y
62273 -# CONFIG_INPUT_FF_MEMLESS is not set
62274 -# CONFIG_INPUT_POLLDEV is not set
62275 -
62276 -#
62277 -# Userland interfaces
62278 -#
62279 -# CONFIG_INPUT_MOUSEDEV is not set
62280 -# CONFIG_INPUT_JOYDEV is not set
62281 -# CONFIG_INPUT_EVDEV is not set
62282 -# CONFIG_INPUT_EVBUG is not set
62283 -
62284 -#
62285 -# Input Device Drivers
62286 -#
62287 -# CONFIG_INPUT_KEYBOARD is not set
62288 -# CONFIG_INPUT_MOUSE is not set
62289 -# CONFIG_INPUT_JOYSTICK is not set
62290 -# CONFIG_INPUT_TABLET is not set
62291 -# CONFIG_INPUT_TOUCHSCREEN is not set
62292 -# CONFIG_INPUT_MISC is not set
62293 -
62294 -#
62295 -# Hardware I/O ports
62296 -#
62297 -# CONFIG_SERIO is not set
62298 -# CONFIG_GAMEPORT is not set
62299 -
62300 -#
62301 -# Character devices
62302 -#
62303 -# CONFIG_VT is not set
62304 -# CONFIG_SERIAL_NONSTANDARD is not set
62305 -# CONFIG_NOZOMI is not set
62306 -
62307 -#
62308 -# Serial drivers
62309 -#
62310 -CONFIG_SERIAL_8250=y
62311 -CONFIG_SERIAL_8250_CONSOLE=y
62312 -CONFIG_SERIAL_8250_PCI=y
62313 -CONFIG_SERIAL_8250_NR_UARTS=4
62314 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
62315 -# CONFIG_SERIAL_8250_EXTENDED is not set
62316 -
62317 -#
62318 -# Non-8250 serial port support
62319 -#
62320 -# CONFIG_SERIAL_UARTLITE is not set
62321 -CONFIG_SERIAL_CORE=y
62322 -CONFIG_SERIAL_CORE_CONSOLE=y
62323 -# CONFIG_SERIAL_JSM is not set
62324 -# CONFIG_SERIAL_OF_PLATFORM is not set
62325 -CONFIG_UNIX98_PTYS=y
62326 -CONFIG_LEGACY_PTYS=y
62327 -CONFIG_LEGACY_PTY_COUNT=256
62328 -# CONFIG_IPMI_HANDLER is not set
62329 -# CONFIG_HW_RANDOM is not set
62330 -# CONFIG_NVRAM is not set
62331 -# CONFIG_GEN_RTC is not set
62332 -# CONFIG_R3964 is not set
62333 -# CONFIG_APPLICOM is not set
62334 -# CONFIG_RAW_DRIVER is not set
62335 -# CONFIG_TCG_TPM is not set
62336 -CONFIG_DEVPORT=y
62337 -CONFIG_I2C=y
62338 -CONFIG_I2C_BOARDINFO=y
62339 -CONFIG_I2C_CHARDEV=y
62340 -
62341 -#
62342 -# I2C Algorithms
62343 -#
62344 -# CONFIG_I2C_ALGOBIT is not set
62345 -# CONFIG_I2C_ALGOPCF is not set
62346 -# CONFIG_I2C_ALGOPCA is not set
62347 -
62348 -#
62349 -# I2C Hardware Bus support
62350 -#
62351 -# CONFIG_I2C_ALI1535 is not set
62352 -# CONFIG_I2C_ALI1563 is not set
62353 -# CONFIG_I2C_ALI15X3 is not set
62354 -# CONFIG_I2C_AMD756 is not set
62355 -# CONFIG_I2C_AMD8111 is not set
62356 -# CONFIG_I2C_I801 is not set
62357 -# CONFIG_I2C_I810 is not set
62358 -# CONFIG_I2C_PIIX4 is not set
62359 -CONFIG_I2C_MPC=y
62360 -# CONFIG_I2C_NFORCE2 is not set
62361 -# CONFIG_I2C_OCORES is not set
62362 -# CONFIG_I2C_PARPORT_LIGHT is not set
62363 -# CONFIG_I2C_PROSAVAGE is not set
62364 -# CONFIG_I2C_SAVAGE4 is not set
62365 -# CONFIG_I2C_SIMTEC is not set
62366 -# CONFIG_I2C_SIS5595 is not set
62367 -# CONFIG_I2C_SIS630 is not set
62368 -# CONFIG_I2C_SIS96X is not set
62369 -# CONFIG_I2C_TAOS_EVM is not set
62370 -# CONFIG_I2C_STUB is not set
62371 -# CONFIG_I2C_VIA is not set
62372 -# CONFIG_I2C_VIAPRO is not set
62373 -# CONFIG_I2C_VOODOO3 is not set
62374 -
62375 -#
62376 -# Miscellaneous I2C Chip support
62377 -#
62378 -# CONFIG_DS1682 is not set
62379 -# CONFIG_SENSORS_EEPROM is not set
62380 -# CONFIG_SENSORS_PCF8574 is not set
62381 -# CONFIG_PCF8575 is not set
62382 -# CONFIG_SENSORS_PCF8591 is not set
62383 -# CONFIG_TPS65010 is not set
62384 -# CONFIG_SENSORS_MAX6875 is not set
62385 -# CONFIG_SENSORS_TSL2550 is not set
62386 -# CONFIG_I2C_DEBUG_CORE is not set
62387 -# CONFIG_I2C_DEBUG_ALGO is not set
62388 -# CONFIG_I2C_DEBUG_BUS is not set
62389 -# CONFIG_I2C_DEBUG_CHIP is not set
62390 -
62391 -#
62392 -# SPI support
62393 -#
62394 -# CONFIG_SPI is not set
62395 -# CONFIG_SPI_MASTER is not set
62396 -# CONFIG_W1 is not set
62397 -# CONFIG_POWER_SUPPLY is not set
62398 -CONFIG_HWMON=y
62399 -# CONFIG_HWMON_VID is not set
62400 -# CONFIG_SENSORS_AD7418 is not set
62401 -# CONFIG_SENSORS_ADM1021 is not set
62402 -# CONFIG_SENSORS_ADM1025 is not set
62403 -# CONFIG_SENSORS_ADM1026 is not set
62404 -# CONFIG_SENSORS_ADM1029 is not set
62405 -# CONFIG_SENSORS_ADM1031 is not set
62406 -# CONFIG_SENSORS_ADM9240 is not set
62407 -# CONFIG_SENSORS_ADT7470 is not set
62408 -# CONFIG_SENSORS_ADT7473 is not set
62409 -# CONFIG_SENSORS_ATXP1 is not set
62410 -# CONFIG_SENSORS_DS1621 is not set
62411 -# CONFIG_SENSORS_I5K_AMB is not set
62412 -# CONFIG_SENSORS_F71805F is not set
62413 -# CONFIG_SENSORS_F71882FG is not set
62414 -# CONFIG_SENSORS_F75375S is not set
62415 -# CONFIG_SENSORS_GL518SM is not set
62416 -# CONFIG_SENSORS_GL520SM is not set
62417 -# CONFIG_SENSORS_IT87 is not set
62418 -# CONFIG_SENSORS_LM63 is not set
62419 -# CONFIG_SENSORS_LM75 is not set
62420 -# CONFIG_SENSORS_LM77 is not set
62421 -# CONFIG_SENSORS_LM78 is not set
62422 -# CONFIG_SENSORS_LM80 is not set
62423 -# CONFIG_SENSORS_LM83 is not set
62424 -# CONFIG_SENSORS_LM85 is not set
62425 -# CONFIG_SENSORS_LM87 is not set
62426 -# CONFIG_SENSORS_LM90 is not set
62427 -# CONFIG_SENSORS_LM92 is not set
62428 -# CONFIG_SENSORS_LM93 is not set
62429 -# CONFIG_SENSORS_MAX1619 is not set
62430 -# CONFIG_SENSORS_MAX6650 is not set
62431 -# CONFIG_SENSORS_PC87360 is not set
62432 -# CONFIG_SENSORS_PC87427 is not set
62433 -# CONFIG_SENSORS_SIS5595 is not set
62434 -# CONFIG_SENSORS_DME1737 is not set
62435 -# CONFIG_SENSORS_SMSC47M1 is not set
62436 -# CONFIG_SENSORS_SMSC47M192 is not set
62437 -# CONFIG_SENSORS_SMSC47B397 is not set
62438 -# CONFIG_SENSORS_ADS7828 is not set
62439 -# CONFIG_SENSORS_THMC50 is not set
62440 -# CONFIG_SENSORS_VIA686A is not set
62441 -# CONFIG_SENSORS_VT1211 is not set
62442 -# CONFIG_SENSORS_VT8231 is not set
62443 -# CONFIG_SENSORS_W83781D is not set
62444 -# CONFIG_SENSORS_W83791D is not set
62445 -# CONFIG_SENSORS_W83792D is not set
62446 -# CONFIG_SENSORS_W83793 is not set
62447 -# CONFIG_SENSORS_W83L785TS is not set
62448 -# CONFIG_SENSORS_W83L786NG is not set
62449 -# CONFIG_SENSORS_W83627HF is not set
62450 -# CONFIG_SENSORS_W83627EHF is not set
62451 -# CONFIG_HWMON_DEBUG_CHIP is not set
62452 -# CONFIG_THERMAL is not set
62453 -CONFIG_WATCHDOG=y
62454 -# CONFIG_WATCHDOG_NOWAYOUT is not set
62455 -
62456 -#
62457 -# Watchdog Device Drivers
62458 -#
62459 -# CONFIG_SOFT_WATCHDOG is not set
62460 -CONFIG_83xx_WDT=y
62461 -
62462 -#
62463 -# PCI-based Watchdog Cards
62464 -#
62465 -# CONFIG_PCIPCWATCHDOG is not set
62466 -# CONFIG_WDTPCI is not set
62467 -
62468 -#
62469 -# Sonics Silicon Backplane
62470 -#
62471 -CONFIG_SSB_POSSIBLE=y
62472 -# CONFIG_SSB is not set
62473 -
62474 -#
62475 -# Multifunction device drivers
62476 -#
62477 -# CONFIG_MFD_SM501 is not set
62478 -
62479 -#
62480 -# Multimedia devices
62481 -#
62482 -# CONFIG_VIDEO_DEV is not set
62483 -# CONFIG_DVB_CORE is not set
62484 -CONFIG_DAB=y
62485 -
62486 -#
62487 -# Graphics support
62488 -#
62489 -# CONFIG_AGP is not set
62490 -# CONFIG_DRM is not set
62491 -# CONFIG_VGASTATE is not set
62492 -CONFIG_VIDEO_OUTPUT_CONTROL=m
62493 -# CONFIG_FB is not set
62494 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
62495 -
62496 -#
62497 -# Display device support
62498 -#
62499 -# CONFIG_DISPLAY_SUPPORT is not set
62500 -
62501 -#
62502 -# Sound
62503 -#
62504 -# CONFIG_SOUND is not set
62505 -CONFIG_HID_SUPPORT=y
62506 -CONFIG_HID=y
62507 -# CONFIG_HID_DEBUG is not set
62508 -# CONFIG_HIDRAW is not set
62509 -CONFIG_USB_SUPPORT=y
62510 -CONFIG_USB_ARCH_HAS_HCD=y
62511 -CONFIG_USB_ARCH_HAS_OHCI=y
62512 -CONFIG_USB_ARCH_HAS_EHCI=y
62513 -# CONFIG_USB is not set
62514 -
62515 -#
62516 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
62517 -#
62518 -# CONFIG_USB_GADGET is not set
62519 -# CONFIG_MMC is not set
62520 -# CONFIG_MEMSTICK is not set
62521 -# CONFIG_NEW_LEDS is not set
62522 -# CONFIG_INFINIBAND is not set
62523 -# CONFIG_EDAC is not set
62524 -CONFIG_RTC_LIB=y
62525 -CONFIG_RTC_CLASS=y
62526 -CONFIG_RTC_HCTOSYS=y
62527 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
62528 -# CONFIG_RTC_DEBUG is not set
62529 -
62530 -#
62531 -# RTC interfaces
62532 -#
62533 -CONFIG_RTC_INTF_SYSFS=y
62534 -CONFIG_RTC_INTF_PROC=y
62535 -CONFIG_RTC_INTF_DEV=y
62536 -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
62537 -# CONFIG_RTC_DRV_TEST is not set
62538 -
62539 -#
62540 -# I2C RTC drivers
62541 -#
62542 -# CONFIG_RTC_DRV_DS1307 is not set
62543 -CONFIG_RTC_DRV_DS1374=y
62544 -# CONFIG_RTC_DRV_DS1672 is not set
62545 -# CONFIG_RTC_DRV_MAX6900 is not set
62546 -# CONFIG_RTC_DRV_RS5C372 is not set
62547 -# CONFIG_RTC_DRV_ISL1208 is not set
62548 -# CONFIG_RTC_DRV_X1205 is not set
62549 -# CONFIG_RTC_DRV_PCF8563 is not set
62550 -# CONFIG_RTC_DRV_PCF8583 is not set
62551 -# CONFIG_RTC_DRV_M41T80 is not set
62552 -# CONFIG_RTC_DRV_S35390A is not set
62553 -
62554 -#
62555 -# SPI RTC drivers
62556 -#
62557 -
62558 -#
62559 -# Platform RTC drivers
62560 -#
62561 -# CONFIG_RTC_DRV_CMOS is not set
62562 -# CONFIG_RTC_DRV_DS1511 is not set
62563 -# CONFIG_RTC_DRV_DS1553 is not set
62564 -# CONFIG_RTC_DRV_DS1742 is not set
62565 -# CONFIG_RTC_DRV_STK17TA8 is not set
62566 -# CONFIG_RTC_DRV_M48T86 is not set
62567 -# CONFIG_RTC_DRV_M48T59 is not set
62568 -# CONFIG_RTC_DRV_V3020 is not set
62569 -
62570 -#
62571 -# on-CPU RTC drivers
62572 -#
62573 -# CONFIG_DMADEVICES is not set
62574 -
62575 -#
62576 -# Userspace I/O
62577 -#
62578 -# CONFIG_UIO is not set
62579 -
62580 -#
62581 -# File systems
62582 -#
62583 -CONFIG_EXT2_FS=y
62584 -# CONFIG_EXT2_FS_XATTR is not set
62585 -# CONFIG_EXT2_FS_XIP is not set
62586 -CONFIG_EXT3_FS=y
62587 -CONFIG_EXT3_FS_XATTR=y
62588 -# CONFIG_EXT3_FS_POSIX_ACL is not set
62589 -# CONFIG_EXT3_FS_SECURITY is not set
62590 -# CONFIG_EXT4DEV_FS is not set
62591 -CONFIG_JBD=y
62592 -CONFIG_FS_MBCACHE=y
62593 -# CONFIG_REISERFS_FS is not set
62594 -# CONFIG_JFS_FS is not set
62595 -# CONFIG_FS_POSIX_ACL is not set
62596 -# CONFIG_XFS_FS is not set
62597 -# CONFIG_GFS2_FS is not set
62598 -# CONFIG_OCFS2_FS is not set
62599 -CONFIG_DNOTIFY=y
62600 -CONFIG_INOTIFY=y
62601 -CONFIG_INOTIFY_USER=y
62602 -# CONFIG_QUOTA is not set
62603 -# CONFIG_AUTOFS_FS is not set
62604 -# CONFIG_AUTOFS4_FS is not set
62605 -# CONFIG_FUSE_FS is not set
62606 -
62607 -#
62608 -# CD-ROM/DVD Filesystems
62609 -#
62610 -# CONFIG_ISO9660_FS is not set
62611 -# CONFIG_UDF_FS is not set
62612 -
62613 -#
62614 -# DOS/FAT/NT Filesystems
62615 -#
62616 -# CONFIG_MSDOS_FS is not set
62617 -# CONFIG_VFAT_FS is not set
62618 -# CONFIG_NTFS_FS is not set
62619 -
62620 -#
62621 -# Pseudo filesystems
62622 -#
62623 -CONFIG_PROC_FS=y
62624 -CONFIG_PROC_KCORE=y
62625 -CONFIG_PROC_SYSCTL=y
62626 -CONFIG_SYSFS=y
62627 -CONFIG_TMPFS=y
62628 -# CONFIG_TMPFS_POSIX_ACL is not set
62629 -# CONFIG_HUGETLB_PAGE is not set
62630 -# CONFIG_CONFIGFS_FS is not set
62631 -
62632 -#
62633 -# Miscellaneous filesystems
62634 -#
62635 -# CONFIG_ADFS_FS is not set
62636 -# CONFIG_AFFS_FS is not set
62637 -# CONFIG_HFS_FS is not set
62638 -# CONFIG_HFSPLUS_FS is not set
62639 -# CONFIG_BEFS_FS is not set
62640 -# CONFIG_BFS_FS is not set
62641 -# CONFIG_EFS_FS is not set
62642 -# CONFIG_CRAMFS is not set
62643 -# CONFIG_VXFS_FS is not set
62644 -# CONFIG_MINIX_FS is not set
62645 -# CONFIG_HPFS_FS is not set
62646 -# CONFIG_QNX4FS_FS is not set
62647 -# CONFIG_ROMFS_FS is not set
62648 -# CONFIG_SYSV_FS is not set
62649 -# CONFIG_UFS_FS is not set
62650 -CONFIG_NETWORK_FILESYSTEMS=y
62651 -CONFIG_NFS_FS=y
62652 -CONFIG_NFS_V3=y
62653 -# CONFIG_NFS_V3_ACL is not set
62654 -CONFIG_NFS_V4=y
62655 -# CONFIG_NFS_DIRECTIO is not set
62656 -# CONFIG_NFSD is not set
62657 -CONFIG_ROOT_NFS=y
62658 -CONFIG_LOCKD=y
62659 -CONFIG_LOCKD_V4=y
62660 -CONFIG_NFS_COMMON=y
62661 -CONFIG_SUNRPC=y
62662 -CONFIG_SUNRPC_GSS=y
62663 -# CONFIG_SUNRPC_BIND34 is not set
62664 -CONFIG_RPCSEC_GSS_KRB5=y
62665 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
62666 -# CONFIG_SMB_FS is not set
62667 -# CONFIG_CIFS is not set
62668 -# CONFIG_NCP_FS is not set
62669 -# CONFIG_CODA_FS is not set
62670 -# CONFIG_AFS_FS is not set
62671 -
62672 -#
62673 -# Partition Types
62674 -#
62675 -CONFIG_PARTITION_ADVANCED=y
62676 -# CONFIG_ACORN_PARTITION is not set
62677 -# CONFIG_OSF_PARTITION is not set
62678 -# CONFIG_AMIGA_PARTITION is not set
62679 -# CONFIG_ATARI_PARTITION is not set
62680 -# CONFIG_MAC_PARTITION is not set
62681 -# CONFIG_MSDOS_PARTITION is not set
62682 -# CONFIG_LDM_PARTITION is not set
62683 -# CONFIG_SGI_PARTITION is not set
62684 -# CONFIG_ULTRIX_PARTITION is not set
62685 -# CONFIG_SUN_PARTITION is not set
62686 -# CONFIG_KARMA_PARTITION is not set
62687 -# CONFIG_EFI_PARTITION is not set
62688 -# CONFIG_SYSV68_PARTITION is not set
62689 -# CONFIG_NLS is not set
62690 -# CONFIG_DLM is not set
62691 -
62692 -#
62693 -# Library routines
62694 -#
62695 -CONFIG_BITREVERSE=y
62696 -# CONFIG_CRC_CCITT is not set
62697 -# CONFIG_CRC16 is not set
62698 -# CONFIG_CRC_ITU_T is not set
62699 -CONFIG_CRC32=y
62700 -# CONFIG_CRC7 is not set
62701 -# CONFIG_LIBCRC32C is not set
62702 -CONFIG_PLIST=y
62703 -CONFIG_HAS_IOMEM=y
62704 -CONFIG_HAS_IOPORT=y
62705 -CONFIG_HAS_DMA=y
62706 -
62707 -#
62708 -# Kernel hacking
62709 -#
62710 -# CONFIG_PRINTK_TIME is not set
62711 -CONFIG_ENABLE_WARN_DEPRECATED=y
62712 -CONFIG_ENABLE_MUST_CHECK=y
62713 -# CONFIG_MAGIC_SYSRQ is not set
62714 -# CONFIG_UNUSED_SYMBOLS is not set
62715 -# CONFIG_DEBUG_FS is not set
62716 -# CONFIG_HEADERS_CHECK is not set
62717 -# CONFIG_DEBUG_KERNEL is not set
62718 -# CONFIG_SLUB_DEBUG_ON is not set
62719 -# CONFIG_SLUB_STATS is not set
62720 -# CONFIG_DEBUG_BUGVERBOSE is not set
62721 -# CONFIG_SAMPLES is not set
62722 -# CONFIG_PPC_EARLY_DEBUG is not set
62723 -
62724 -#
62725 -# Security options
62726 -#
62727 -# CONFIG_KEYS is not set
62728 -# CONFIG_SECURITY is not set
62729 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
62730 -CONFIG_CRYPTO=y
62731 -CONFIG_CRYPTO_ALGAPI=y
62732 -CONFIG_CRYPTO_BLKCIPHER=y
62733 -# CONFIG_CRYPTO_SEQIV is not set
62734 -CONFIG_CRYPTO_MANAGER=y
62735 -# CONFIG_CRYPTO_HMAC is not set
62736 -# CONFIG_CRYPTO_XCBC is not set
62737 -# CONFIG_CRYPTO_NULL is not set
62738 -# CONFIG_CRYPTO_MD4 is not set
62739 -CONFIG_CRYPTO_MD5=y
62740 -# CONFIG_CRYPTO_SHA1 is not set
62741 -# CONFIG_CRYPTO_SHA256 is not set
62742 -# CONFIG_CRYPTO_SHA512 is not set
62743 -# CONFIG_CRYPTO_WP512 is not set
62744 -# CONFIG_CRYPTO_TGR192 is not set
62745 -# CONFIG_CRYPTO_GF128MUL is not set
62746 -CONFIG_CRYPTO_ECB=m
62747 -CONFIG_CRYPTO_CBC=y
62748 -CONFIG_CRYPTO_PCBC=m
62749 -# CONFIG_CRYPTO_LRW is not set
62750 -# CONFIG_CRYPTO_XTS is not set
62751 -# CONFIG_CRYPTO_CTR is not set
62752 -# CONFIG_CRYPTO_GCM is not set
62753 -# CONFIG_CRYPTO_CCM is not set
62754 -# CONFIG_CRYPTO_CRYPTD is not set
62755 -CONFIG_CRYPTO_DES=y
62756 -# CONFIG_CRYPTO_FCRYPT is not set
62757 -# CONFIG_CRYPTO_BLOWFISH is not set
62758 -# CONFIG_CRYPTO_TWOFISH is not set
62759 -# CONFIG_CRYPTO_SERPENT is not set
62760 -# CONFIG_CRYPTO_AES is not set
62761 -# CONFIG_CRYPTO_CAST5 is not set
62762 -# CONFIG_CRYPTO_CAST6 is not set
62763 -# CONFIG_CRYPTO_TEA is not set
62764 -# CONFIG_CRYPTO_ARC4 is not set
62765 -# CONFIG_CRYPTO_KHAZAD is not set
62766 -# CONFIG_CRYPTO_ANUBIS is not set
62767 -# CONFIG_CRYPTO_SEED is not set
62768 -# CONFIG_CRYPTO_SALSA20 is not set
62769 -# CONFIG_CRYPTO_DEFLATE is not set
62770 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
62771 -# CONFIG_CRYPTO_CRC32C is not set
62772 -# CONFIG_CRYPTO_CAMELLIA is not set
62773 -# CONFIG_CRYPTO_TEST is not set
62774 -# CONFIG_CRYPTO_AUTHENC is not set
62775 -# CONFIG_CRYPTO_LZO is not set
62776 -CONFIG_CRYPTO_HW=y
62777 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
62778 -# CONFIG_PPC_CLOCK is not set
62779 Index: linux-2.6.25.4/arch/powerpc/configs/mpc836x_mds_defconfig
62780 ===================================================================
62781 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc836x_mds_defconfig
62782 +++ /dev/null
62783 @@ -1,1079 +0,0 @@
62784 -#
62785 -# Automatically generated make config: don't edit
62786 -# Linux kernel version: 2.6.25-rc7
62787 -# Mon Mar 31 11:36:57 2008
62788 -#
62789 -# CONFIG_PPC64 is not set
62790 -
62791 -#
62792 -# Processor support
62793 -#
62794 -CONFIG_6xx=y
62795 -# CONFIG_PPC_85xx is not set
62796 -# CONFIG_PPC_8xx is not set
62797 -# CONFIG_40x is not set
62798 -# CONFIG_44x is not set
62799 -# CONFIG_E200 is not set
62800 -CONFIG_PPC_FPU=y
62801 -# CONFIG_FSL_EMB_PERFMON is not set
62802 -CONFIG_PPC_STD_MMU=y
62803 -CONFIG_PPC_STD_MMU_32=y
62804 -# CONFIG_PPC_MM_SLICES is not set
62805 -# CONFIG_SMP is not set
62806 -CONFIG_PPC32=y
62807 -CONFIG_WORD_SIZE=32
62808 -CONFIG_PPC_MERGE=y
62809 -CONFIG_MMU=y
62810 -CONFIG_GENERIC_CMOS_UPDATE=y
62811 -CONFIG_GENERIC_TIME=y
62812 -CONFIG_GENERIC_TIME_VSYSCALL=y
62813 -CONFIG_GENERIC_CLOCKEVENTS=y
62814 -CONFIG_GENERIC_HARDIRQS=y
62815 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
62816 -CONFIG_IRQ_PER_CPU=y
62817 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
62818 -CONFIG_ARCH_HAS_ILOG2_U32=y
62819 -CONFIG_GENERIC_HWEIGHT=y
62820 -CONFIG_GENERIC_CALIBRATE_DELAY=y
62821 -CONFIG_GENERIC_FIND_NEXT_BIT=y
62822 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
62823 -CONFIG_PPC=y
62824 -CONFIG_EARLY_PRINTK=y
62825 -CONFIG_GENERIC_NVRAM=y
62826 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
62827 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
62828 -CONFIG_PPC_OF=y
62829 -CONFIG_OF=y
62830 -CONFIG_PPC_UDBG_16550=y
62831 -# CONFIG_GENERIC_TBSYNC is not set
62832 -CONFIG_AUDIT_ARCH=y
62833 -CONFIG_GENERIC_BUG=y
62834 -CONFIG_DEFAULT_UIMAGE=y
62835 -# CONFIG_PPC_DCR_NATIVE is not set
62836 -# CONFIG_PPC_DCR_MMIO is not set
62837 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
62838 -
62839 -#
62840 -# General setup
62841 -#
62842 -CONFIG_EXPERIMENTAL=y
62843 -CONFIG_BROKEN_ON_SMP=y
62844 -CONFIG_INIT_ENV_ARG_LIMIT=32
62845 -CONFIG_LOCALVERSION=""
62846 -CONFIG_LOCALVERSION_AUTO=y
62847 -CONFIG_SWAP=y
62848 -CONFIG_SYSVIPC=y
62849 -CONFIG_SYSVIPC_SYSCTL=y
62850 -# CONFIG_POSIX_MQUEUE is not set
62851 -# CONFIG_BSD_PROCESS_ACCT is not set
62852 -# CONFIG_TASKSTATS is not set
62853 -# CONFIG_AUDIT is not set
62854 -# CONFIG_IKCONFIG is not set
62855 -CONFIG_LOG_BUF_SHIFT=14
62856 -# CONFIG_CGROUPS is not set
62857 -CONFIG_GROUP_SCHED=y
62858 -# CONFIG_FAIR_GROUP_SCHED is not set
62859 -# CONFIG_RT_GROUP_SCHED is not set
62860 -CONFIG_USER_SCHED=y
62861 -# CONFIG_CGROUP_SCHED is not set
62862 -CONFIG_SYSFS_DEPRECATED=y
62863 -CONFIG_SYSFS_DEPRECATED_V2=y
62864 -# CONFIG_RELAY is not set
62865 -# CONFIG_NAMESPACES is not set
62866 -CONFIG_BLK_DEV_INITRD=y
62867 -CONFIG_INITRAMFS_SOURCE=""
62868 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
62869 -CONFIG_SYSCTL=y
62870 -CONFIG_EMBEDDED=y
62871 -CONFIG_SYSCTL_SYSCALL=y
62872 -# CONFIG_KALLSYMS is not set
62873 -CONFIG_HOTPLUG=y
62874 -CONFIG_PRINTK=y
62875 -CONFIG_BUG=y
62876 -CONFIG_ELF_CORE=y
62877 -CONFIG_COMPAT_BRK=y
62878 -CONFIG_BASE_FULL=y
62879 -CONFIG_FUTEX=y
62880 -CONFIG_ANON_INODES=y
62881 -# CONFIG_EPOLL is not set
62882 -CONFIG_SIGNALFD=y
62883 -CONFIG_TIMERFD=y
62884 -CONFIG_EVENTFD=y
62885 -CONFIG_SHMEM=y
62886 -CONFIG_VM_EVENT_COUNTERS=y
62887 -CONFIG_SLUB_DEBUG=y
62888 -# CONFIG_SLAB is not set
62889 -CONFIG_SLUB=y
62890 -# CONFIG_SLOB is not set
62891 -# CONFIG_PROFILING is not set
62892 -# CONFIG_MARKERS is not set
62893 -CONFIG_HAVE_OPROFILE=y
62894 -CONFIG_HAVE_KPROBES=y
62895 -CONFIG_HAVE_KRETPROBES=y
62896 -CONFIG_PROC_PAGE_MONITOR=y
62897 -CONFIG_SLABINFO=y
62898 -CONFIG_RT_MUTEXES=y
62899 -# CONFIG_TINY_SHMEM is not set
62900 -CONFIG_BASE_SMALL=0
62901 -CONFIG_MODULES=y
62902 -CONFIG_MODULE_UNLOAD=y
62903 -# CONFIG_MODULE_FORCE_UNLOAD is not set
62904 -# CONFIG_MODVERSIONS is not set
62905 -# CONFIG_MODULE_SRCVERSION_ALL is not set
62906 -# CONFIG_KMOD is not set
62907 -CONFIG_BLOCK=y
62908 -# CONFIG_LBD is not set
62909 -# CONFIG_BLK_DEV_IO_TRACE is not set
62910 -# CONFIG_LSF is not set
62911 -# CONFIG_BLK_DEV_BSG is not set
62912 -
62913 -#
62914 -# IO Schedulers
62915 -#
62916 -CONFIG_IOSCHED_NOOP=y
62917 -CONFIG_IOSCHED_AS=y
62918 -CONFIG_IOSCHED_DEADLINE=y
62919 -CONFIG_IOSCHED_CFQ=y
62920 -CONFIG_DEFAULT_AS=y
62921 -# CONFIG_DEFAULT_DEADLINE is not set
62922 -# CONFIG_DEFAULT_CFQ is not set
62923 -# CONFIG_DEFAULT_NOOP is not set
62924 -CONFIG_DEFAULT_IOSCHED="anticipatory"
62925 -CONFIG_CLASSIC_RCU=y
62926 -
62927 -#
62928 -# Platform support
62929 -#
62930 -# CONFIG_PPC_MULTIPLATFORM is not set
62931 -# CONFIG_PPC_82xx is not set
62932 -CONFIG_PPC_83xx=y
62933 -# CONFIG_PPC_86xx is not set
62934 -# CONFIG_PPC_MPC512x is not set
62935 -# CONFIG_PPC_MPC5121 is not set
62936 -# CONFIG_PPC_CELL is not set
62937 -# CONFIG_PPC_CELL_NATIVE is not set
62938 -# CONFIG_PQ2ADS is not set
62939 -CONFIG_MPC83xx=y
62940 -# CONFIG_MPC831x_RDB is not set
62941 -# CONFIG_MPC832x_MDS is not set
62942 -# CONFIG_MPC832x_RDB is not set
62943 -# CONFIG_MPC834x_MDS is not set
62944 -# CONFIG_MPC834x_ITX is not set
62945 -CONFIG_MPC836x_MDS=y
62946 -# CONFIG_MPC837x_MDS is not set
62947 -# CONFIG_MPC837x_RDB is not set
62948 -# CONFIG_SBC834x is not set
62949 -CONFIG_IPIC=y
62950 -# CONFIG_MPIC is not set
62951 -# CONFIG_MPIC_WEIRD is not set
62952 -# CONFIG_PPC_I8259 is not set
62953 -# CONFIG_PPC_RTAS is not set
62954 -# CONFIG_MMIO_NVRAM is not set
62955 -# CONFIG_PPC_MPC106 is not set
62956 -# CONFIG_PPC_970_NAP is not set
62957 -# CONFIG_PPC_INDIRECT_IO is not set
62958 -# CONFIG_GENERIC_IOMAP is not set
62959 -# CONFIG_CPU_FREQ is not set
62960 -CONFIG_QUICC_ENGINE=y
62961 -# CONFIG_FSL_ULI1575 is not set
62962 -
62963 -#
62964 -# Kernel options
62965 -#
62966 -# CONFIG_HIGHMEM is not set
62967 -CONFIG_TICK_ONESHOT=y
62968 -CONFIG_NO_HZ=y
62969 -CONFIG_HIGH_RES_TIMERS=y
62970 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
62971 -# CONFIG_HZ_100 is not set
62972 -CONFIG_HZ_250=y
62973 -# CONFIG_HZ_300 is not set
62974 -# CONFIG_HZ_1000 is not set
62975 -CONFIG_HZ=250
62976 -# CONFIG_SCHED_HRTICK is not set
62977 -CONFIG_PREEMPT_NONE=y
62978 -# CONFIG_PREEMPT_VOLUNTARY is not set
62979 -# CONFIG_PREEMPT is not set
62980 -CONFIG_BINFMT_ELF=y
62981 -# CONFIG_BINFMT_MISC is not set
62982 -# CONFIG_IOMMU_HELPER is not set
62983 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
62984 -CONFIG_ARCH_HAS_WALK_MEMORY=y
62985 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
62986 -CONFIG_ARCH_FLATMEM_ENABLE=y
62987 -CONFIG_ARCH_POPULATES_NODE_MAP=y
62988 -CONFIG_SELECT_MEMORY_MODEL=y
62989 -CONFIG_FLATMEM_MANUAL=y
62990 -# CONFIG_DISCONTIGMEM_MANUAL is not set
62991 -# CONFIG_SPARSEMEM_MANUAL is not set
62992 -CONFIG_FLATMEM=y
62993 -CONFIG_FLAT_NODE_MEM_MAP=y
62994 -# CONFIG_SPARSEMEM_STATIC is not set
62995 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
62996 -CONFIG_SPLIT_PTLOCK_CPUS=4
62997 -# CONFIG_RESOURCES_64BIT is not set
62998 -CONFIG_ZONE_DMA_FLAG=1
62999 -CONFIG_BOUNCE=y
63000 -CONFIG_VIRT_TO_BUS=y
63001 -CONFIG_PROC_DEVICETREE=y
63002 -# CONFIG_CMDLINE_BOOL is not set
63003 -# CONFIG_PM is not set
63004 -CONFIG_SECCOMP=y
63005 -CONFIG_ISA_DMA_API=y
63006 -
63007 -#
63008 -# Bus options
63009 -#
63010 -CONFIG_ZONE_DMA=y
63011 -CONFIG_GENERIC_ISA_DMA=y
63012 -CONFIG_PPC_INDIRECT_PCI=y
63013 -CONFIG_FSL_SOC=y
63014 -CONFIG_PCI=y
63015 -CONFIG_PCI_DOMAINS=y
63016 -CONFIG_PCI_SYSCALL=y
63017 -# CONFIG_PCIEPORTBUS is not set
63018 -CONFIG_ARCH_SUPPORTS_MSI=y
63019 -# CONFIG_PCI_MSI is not set
63020 -CONFIG_PCI_LEGACY=y
63021 -# CONFIG_PCCARD is not set
63022 -# CONFIG_HOTPLUG_PCI is not set
63023 -
63024 -#
63025 -# Advanced setup
63026 -#
63027 -# CONFIG_ADVANCED_OPTIONS is not set
63028 -
63029 -#
63030 -# Default settings for advanced configuration options are used
63031 -#
63032 -CONFIG_HIGHMEM_START=0xfe000000
63033 -CONFIG_LOWMEM_SIZE=0x30000000
63034 -CONFIG_KERNEL_START=0xc0000000
63035 -CONFIG_TASK_SIZE=0xc0000000
63036 -CONFIG_BOOT_LOAD=0x00800000
63037 -
63038 -#
63039 -# Networking
63040 -#
63041 -CONFIG_NET=y
63042 -
63043 -#
63044 -# Networking options
63045 -#
63046 -CONFIG_PACKET=y
63047 -# CONFIG_PACKET_MMAP is not set
63048 -CONFIG_UNIX=y
63049 -CONFIG_XFRM=y
63050 -# CONFIG_XFRM_USER is not set
63051 -# CONFIG_XFRM_SUB_POLICY is not set
63052 -# CONFIG_XFRM_MIGRATE is not set
63053 -# CONFIG_XFRM_STATISTICS is not set
63054 -# CONFIG_NET_KEY is not set
63055 -CONFIG_INET=y
63056 -CONFIG_IP_MULTICAST=y
63057 -# CONFIG_IP_ADVANCED_ROUTER is not set
63058 -CONFIG_IP_FIB_HASH=y
63059 -CONFIG_IP_PNP=y
63060 -CONFIG_IP_PNP_DHCP=y
63061 -CONFIG_IP_PNP_BOOTP=y
63062 -# CONFIG_IP_PNP_RARP is not set
63063 -# CONFIG_NET_IPIP is not set
63064 -# CONFIG_NET_IPGRE is not set
63065 -# CONFIG_IP_MROUTE is not set
63066 -# CONFIG_ARPD is not set
63067 -CONFIG_SYN_COOKIES=y
63068 -# CONFIG_INET_AH is not set
63069 -# CONFIG_INET_ESP is not set
63070 -# CONFIG_INET_IPCOMP is not set
63071 -# CONFIG_INET_XFRM_TUNNEL is not set
63072 -# CONFIG_INET_TUNNEL is not set
63073 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
63074 -CONFIG_INET_XFRM_MODE_TUNNEL=y
63075 -CONFIG_INET_XFRM_MODE_BEET=y
63076 -# CONFIG_INET_LRO is not set
63077 -CONFIG_INET_DIAG=y
63078 -CONFIG_INET_TCP_DIAG=y
63079 -# CONFIG_TCP_CONG_ADVANCED is not set
63080 -CONFIG_TCP_CONG_CUBIC=y
63081 -CONFIG_DEFAULT_TCP_CONG="cubic"
63082 -# CONFIG_TCP_MD5SIG is not set
63083 -# CONFIG_IPV6 is not set
63084 -# CONFIG_INET6_XFRM_TUNNEL is not set
63085 -# CONFIG_INET6_TUNNEL is not set
63086 -# CONFIG_NETWORK_SECMARK is not set
63087 -# CONFIG_NETFILTER is not set
63088 -# CONFIG_IP_DCCP is not set
63089 -# CONFIG_IP_SCTP is not set
63090 -# CONFIG_TIPC is not set
63091 -# CONFIG_ATM is not set
63092 -# CONFIG_BRIDGE is not set
63093 -# CONFIG_VLAN_8021Q is not set
63094 -# CONFIG_DECNET is not set
63095 -# CONFIG_LLC2 is not set
63096 -# CONFIG_IPX is not set
63097 -# CONFIG_ATALK is not set
63098 -# CONFIG_X25 is not set
63099 -# CONFIG_LAPB is not set
63100 -# CONFIG_ECONET is not set
63101 -# CONFIG_WAN_ROUTER is not set
63102 -# CONFIG_NET_SCHED is not set
63103 -
63104 -#
63105 -# Network testing
63106 -#
63107 -# CONFIG_NET_PKTGEN is not set
63108 -# CONFIG_HAMRADIO is not set
63109 -# CONFIG_CAN is not set
63110 -# CONFIG_IRDA is not set
63111 -# CONFIG_BT is not set
63112 -# CONFIG_AF_RXRPC is not set
63113 -
63114 -#
63115 -# Wireless
63116 -#
63117 -# CONFIG_CFG80211 is not set
63118 -# CONFIG_WIRELESS_EXT is not set
63119 -# CONFIG_MAC80211 is not set
63120 -# CONFIG_IEEE80211 is not set
63121 -# CONFIG_RFKILL is not set
63122 -# CONFIG_NET_9P is not set
63123 -
63124 -#
63125 -# Device Drivers
63126 -#
63127 -
63128 -#
63129 -# Generic Driver Options
63130 -#
63131 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
63132 -CONFIG_STANDALONE=y
63133 -CONFIG_PREVENT_FIRMWARE_BUILD=y
63134 -# CONFIG_FW_LOADER is not set
63135 -# CONFIG_SYS_HYPERVISOR is not set
63136 -# CONFIG_CONNECTOR is not set
63137 -# CONFIG_MTD is not set
63138 -CONFIG_OF_DEVICE=y
63139 -# CONFIG_PARPORT is not set
63140 -CONFIG_BLK_DEV=y
63141 -# CONFIG_BLK_DEV_FD is not set
63142 -# CONFIG_BLK_CPQ_DA is not set
63143 -# CONFIG_BLK_CPQ_CISS_DA is not set
63144 -# CONFIG_BLK_DEV_DAC960 is not set
63145 -# CONFIG_BLK_DEV_UMEM is not set
63146 -# CONFIG_BLK_DEV_COW_COMMON is not set
63147 -CONFIG_BLK_DEV_LOOP=y
63148 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
63149 -# CONFIG_BLK_DEV_NBD is not set
63150 -# CONFIG_BLK_DEV_SX8 is not set
63151 -CONFIG_BLK_DEV_RAM=y
63152 -CONFIG_BLK_DEV_RAM_COUNT=16
63153 -CONFIG_BLK_DEV_RAM_SIZE=32768
63154 -# CONFIG_BLK_DEV_XIP is not set
63155 -# CONFIG_CDROM_PKTCDVD is not set
63156 -# CONFIG_ATA_OVER_ETH is not set
63157 -CONFIG_MISC_DEVICES=y
63158 -# CONFIG_PHANTOM is not set
63159 -# CONFIG_EEPROM_93CX6 is not set
63160 -# CONFIG_SGI_IOC4 is not set
63161 -# CONFIG_TIFM_CORE is not set
63162 -# CONFIG_ENCLOSURE_SERVICES is not set
63163 -CONFIG_HAVE_IDE=y
63164 -# CONFIG_IDE is not set
63165 -
63166 -#
63167 -# SCSI device support
63168 -#
63169 -# CONFIG_RAID_ATTRS is not set
63170 -CONFIG_SCSI=y
63171 -CONFIG_SCSI_DMA=y
63172 -# CONFIG_SCSI_TGT is not set
63173 -# CONFIG_SCSI_NETLINK is not set
63174 -CONFIG_SCSI_PROC_FS=y
63175 -
63176 -#
63177 -# SCSI support type (disk, tape, CD-ROM)
63178 -#
63179 -# CONFIG_BLK_DEV_SD is not set
63180 -# CONFIG_CHR_DEV_ST is not set
63181 -# CONFIG_CHR_DEV_OSST is not set
63182 -# CONFIG_BLK_DEV_SR is not set
63183 -# CONFIG_CHR_DEV_SG is not set
63184 -# CONFIG_CHR_DEV_SCH is not set
63185 -
63186 -#
63187 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
63188 -#
63189 -# CONFIG_SCSI_MULTI_LUN is not set
63190 -# CONFIG_SCSI_CONSTANTS is not set
63191 -# CONFIG_SCSI_LOGGING is not set
63192 -# CONFIG_SCSI_SCAN_ASYNC is not set
63193 -CONFIG_SCSI_WAIT_SCAN=m
63194 -
63195 -#
63196 -# SCSI Transports
63197 -#
63198 -# CONFIG_SCSI_SPI_ATTRS is not set
63199 -# CONFIG_SCSI_FC_ATTRS is not set
63200 -# CONFIG_SCSI_ISCSI_ATTRS is not set
63201 -# CONFIG_SCSI_SAS_LIBSAS is not set
63202 -# CONFIG_SCSI_SRP_ATTRS is not set
63203 -CONFIG_SCSI_LOWLEVEL=y
63204 -# CONFIG_ISCSI_TCP is not set
63205 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
63206 -# CONFIG_SCSI_3W_9XXX is not set
63207 -# CONFIG_SCSI_ACARD is not set
63208 -# CONFIG_SCSI_AACRAID is not set
63209 -# CONFIG_SCSI_AIC7XXX is not set
63210 -# CONFIG_SCSI_AIC7XXX_OLD is not set
63211 -# CONFIG_SCSI_AIC79XX is not set
63212 -# CONFIG_SCSI_AIC94XX is not set
63213 -# CONFIG_SCSI_DPT_I2O is not set
63214 -# CONFIG_SCSI_ADVANSYS is not set
63215 -# CONFIG_SCSI_ARCMSR is not set
63216 -# CONFIG_MEGARAID_NEWGEN is not set
63217 -# CONFIG_MEGARAID_LEGACY is not set
63218 -# CONFIG_MEGARAID_SAS is not set
63219 -# CONFIG_SCSI_HPTIOP is not set
63220 -# CONFIG_SCSI_BUSLOGIC is not set
63221 -# CONFIG_SCSI_DMX3191D is not set
63222 -# CONFIG_SCSI_EATA is not set
63223 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
63224 -# CONFIG_SCSI_GDTH is not set
63225 -# CONFIG_SCSI_IPS is not set
63226 -# CONFIG_SCSI_INITIO is not set
63227 -# CONFIG_SCSI_INIA100 is not set
63228 -# CONFIG_SCSI_MVSAS is not set
63229 -# CONFIG_SCSI_STEX is not set
63230 -# CONFIG_SCSI_SYM53C8XX_2 is not set
63231 -# CONFIG_SCSI_QLOGIC_1280 is not set
63232 -# CONFIG_SCSI_QLA_FC is not set
63233 -# CONFIG_SCSI_QLA_ISCSI is not set
63234 -# CONFIG_SCSI_LPFC is not set
63235 -# CONFIG_SCSI_DC395x is not set
63236 -# CONFIG_SCSI_DC390T is not set
63237 -# CONFIG_SCSI_NSP32 is not set
63238 -# CONFIG_SCSI_DEBUG is not set
63239 -# CONFIG_SCSI_SRP is not set
63240 -# CONFIG_ATA is not set
63241 -# CONFIG_MD is not set
63242 -# CONFIG_FUSION is not set
63243 -
63244 -#
63245 -# IEEE 1394 (FireWire) support
63246 -#
63247 -# CONFIG_FIREWIRE is not set
63248 -# CONFIG_IEEE1394 is not set
63249 -# CONFIG_I2O is not set
63250 -# CONFIG_MACINTOSH_DRIVERS is not set
63251 -CONFIG_NETDEVICES=y
63252 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
63253 -# CONFIG_DUMMY is not set
63254 -# CONFIG_BONDING is not set
63255 -# CONFIG_MACVLAN is not set
63256 -# CONFIG_EQUALIZER is not set
63257 -# CONFIG_TUN is not set
63258 -# CONFIG_VETH is not set
63259 -# CONFIG_ARCNET is not set
63260 -CONFIG_PHYLIB=y
63261 -
63262 -#
63263 -# MII PHY device drivers
63264 -#
63265 -CONFIG_MARVELL_PHY=y
63266 -# CONFIG_DAVICOM_PHY is not set
63267 -# CONFIG_QSEMI_PHY is not set
63268 -# CONFIG_LXT_PHY is not set
63269 -# CONFIG_CICADA_PHY is not set
63270 -# CONFIG_VITESSE_PHY is not set
63271 -# CONFIG_SMSC_PHY is not set
63272 -# CONFIG_BROADCOM_PHY is not set
63273 -# CONFIG_ICPLUS_PHY is not set
63274 -# CONFIG_REALTEK_PHY is not set
63275 -# CONFIG_FIXED_PHY is not set
63276 -# CONFIG_MDIO_BITBANG is not set
63277 -CONFIG_NET_ETHERNET=y
63278 -CONFIG_MII=y
63279 -# CONFIG_HAPPYMEAL is not set
63280 -# CONFIG_SUNGEM is not set
63281 -# CONFIG_CASSINI is not set
63282 -# CONFIG_NET_VENDOR_3COM is not set
63283 -# CONFIG_NET_TULIP is not set
63284 -# CONFIG_HP100 is not set
63285 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
63286 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
63287 -# CONFIG_IBM_NEW_EMAC_TAH is not set
63288 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
63289 -# CONFIG_NET_PCI is not set
63290 -# CONFIG_B44 is not set
63291 -CONFIG_NETDEV_1000=y
63292 -# CONFIG_ACENIC is not set
63293 -# CONFIG_DL2K is not set
63294 -# CONFIG_E1000 is not set
63295 -# CONFIG_E1000E is not set
63296 -# CONFIG_E1000E_ENABLED is not set
63297 -# CONFIG_IP1000 is not set
63298 -# CONFIG_IGB is not set
63299 -# CONFIG_NS83820 is not set
63300 -# CONFIG_HAMACHI is not set
63301 -# CONFIG_YELLOWFIN is not set
63302 -# CONFIG_R8169 is not set
63303 -# CONFIG_SIS190 is not set
63304 -# CONFIG_SKGE is not set
63305 -# CONFIG_SKY2 is not set
63306 -# CONFIG_SK98LIN is not set
63307 -# CONFIG_VIA_VELOCITY is not set
63308 -# CONFIG_TIGON3 is not set
63309 -# CONFIG_BNX2 is not set
63310 -# CONFIG_GIANFAR is not set
63311 -CONFIG_UCC_GETH=y
63312 -# CONFIG_UGETH_NAPI is not set
63313 -# CONFIG_UGETH_MAGIC_PACKET is not set
63314 -# CONFIG_UGETH_FILTERING is not set
63315 -# CONFIG_UGETH_TX_ON_DEMAND is not set
63316 -# CONFIG_QLA3XXX is not set
63317 -# CONFIG_ATL1 is not set
63318 -CONFIG_NETDEV_10000=y
63319 -# CONFIG_CHELSIO_T1 is not set
63320 -# CONFIG_CHELSIO_T3 is not set
63321 -# CONFIG_IXGBE is not set
63322 -# CONFIG_IXGB is not set
63323 -# CONFIG_S2IO is not set
63324 -# CONFIG_MYRI10GE is not set
63325 -# CONFIG_NETXEN_NIC is not set
63326 -# CONFIG_NIU is not set
63327 -# CONFIG_MLX4_CORE is not set
63328 -# CONFIG_TEHUTI is not set
63329 -# CONFIG_BNX2X is not set
63330 -# CONFIG_TR is not set
63331 -
63332 -#
63333 -# Wireless LAN
63334 -#
63335 -# CONFIG_WLAN_PRE80211 is not set
63336 -# CONFIG_WLAN_80211 is not set
63337 -# CONFIG_WAN is not set
63338 -# CONFIG_FDDI is not set
63339 -# CONFIG_HIPPI is not set
63340 -# CONFIG_PPP is not set
63341 -# CONFIG_SLIP is not set
63342 -# CONFIG_NET_FC is not set
63343 -# CONFIG_NETCONSOLE is not set
63344 -# CONFIG_NETPOLL is not set
63345 -# CONFIG_NET_POLL_CONTROLLER is not set
63346 -# CONFIG_ISDN is not set
63347 -# CONFIG_PHONE is not set
63348 -
63349 -#
63350 -# Input device support
63351 -#
63352 -CONFIG_INPUT=y
63353 -# CONFIG_INPUT_FF_MEMLESS is not set
63354 -# CONFIG_INPUT_POLLDEV is not set
63355 -
63356 -#
63357 -# Userland interfaces
63358 -#
63359 -# CONFIG_INPUT_MOUSEDEV is not set
63360 -# CONFIG_INPUT_JOYDEV is not set
63361 -# CONFIG_INPUT_EVDEV is not set
63362 -# CONFIG_INPUT_EVBUG is not set
63363 -
63364 -#
63365 -# Input Device Drivers
63366 -#
63367 -# CONFIG_INPUT_KEYBOARD is not set
63368 -# CONFIG_INPUT_MOUSE is not set
63369 -# CONFIG_INPUT_JOYSTICK is not set
63370 -# CONFIG_INPUT_TABLET is not set
63371 -# CONFIG_INPUT_TOUCHSCREEN is not set
63372 -# CONFIG_INPUT_MISC is not set
63373 -
63374 -#
63375 -# Hardware I/O ports
63376 -#
63377 -# CONFIG_SERIO is not set
63378 -# CONFIG_GAMEPORT is not set
63379 -
63380 -#
63381 -# Character devices
63382 -#
63383 -# CONFIG_VT is not set
63384 -# CONFIG_SERIAL_NONSTANDARD is not set
63385 -# CONFIG_NOZOMI is not set
63386 -
63387 -#
63388 -# Serial drivers
63389 -#
63390 -CONFIG_SERIAL_8250=y
63391 -CONFIG_SERIAL_8250_CONSOLE=y
63392 -CONFIG_SERIAL_8250_PCI=y
63393 -CONFIG_SERIAL_8250_NR_UARTS=4
63394 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
63395 -# CONFIG_SERIAL_8250_EXTENDED is not set
63396 -
63397 -#
63398 -# Non-8250 serial port support
63399 -#
63400 -# CONFIG_SERIAL_UARTLITE is not set
63401 -CONFIG_SERIAL_CORE=y
63402 -CONFIG_SERIAL_CORE_CONSOLE=y
63403 -# CONFIG_SERIAL_JSM is not set
63404 -# CONFIG_SERIAL_OF_PLATFORM is not set
63405 -# CONFIG_SERIAL_QE is not set
63406 -CONFIG_UNIX98_PTYS=y
63407 -CONFIG_LEGACY_PTYS=y
63408 -CONFIG_LEGACY_PTY_COUNT=256
63409 -# CONFIG_IPMI_HANDLER is not set
63410 -CONFIG_HW_RANDOM=y
63411 -# CONFIG_NVRAM is not set
63412 -# CONFIG_GEN_RTC is not set
63413 -# CONFIG_R3964 is not set
63414 -# CONFIG_APPLICOM is not set
63415 -# CONFIG_RAW_DRIVER is not set
63416 -# CONFIG_TCG_TPM is not set
63417 -CONFIG_DEVPORT=y
63418 -CONFIG_I2C=y
63419 -CONFIG_I2C_BOARDINFO=y
63420 -CONFIG_I2C_CHARDEV=y
63421 -
63422 -#
63423 -# I2C Algorithms
63424 -#
63425 -# CONFIG_I2C_ALGOBIT is not set
63426 -# CONFIG_I2C_ALGOPCF is not set
63427 -# CONFIG_I2C_ALGOPCA is not set
63428 -
63429 -#
63430 -# I2C Hardware Bus support
63431 -#
63432 -# CONFIG_I2C_ALI1535 is not set
63433 -# CONFIG_I2C_ALI1563 is not set
63434 -# CONFIG_I2C_ALI15X3 is not set
63435 -# CONFIG_I2C_AMD756 is not set
63436 -# CONFIG_I2C_AMD8111 is not set
63437 -# CONFIG_I2C_I801 is not set
63438 -# CONFIG_I2C_I810 is not set
63439 -# CONFIG_I2C_PIIX4 is not set
63440 -CONFIG_I2C_MPC=y
63441 -# CONFIG_I2C_NFORCE2 is not set
63442 -# CONFIG_I2C_OCORES is not set
63443 -# CONFIG_I2C_PARPORT_LIGHT is not set
63444 -# CONFIG_I2C_PROSAVAGE is not set
63445 -# CONFIG_I2C_SAVAGE4 is not set
63446 -# CONFIG_I2C_SIMTEC is not set
63447 -# CONFIG_I2C_SIS5595 is not set
63448 -# CONFIG_I2C_SIS630 is not set
63449 -# CONFIG_I2C_SIS96X is not set
63450 -# CONFIG_I2C_TAOS_EVM is not set
63451 -# CONFIG_I2C_STUB is not set
63452 -# CONFIG_I2C_VIA is not set
63453 -# CONFIG_I2C_VIAPRO is not set
63454 -# CONFIG_I2C_VOODOO3 is not set
63455 -
63456 -#
63457 -# Miscellaneous I2C Chip support
63458 -#
63459 -# CONFIG_DS1682 is not set
63460 -# CONFIG_SENSORS_EEPROM is not set
63461 -# CONFIG_SENSORS_PCF8574 is not set
63462 -# CONFIG_PCF8575 is not set
63463 -# CONFIG_SENSORS_PCF8591 is not set
63464 -# CONFIG_TPS65010 is not set
63465 -# CONFIG_SENSORS_MAX6875 is not set
63466 -# CONFIG_SENSORS_TSL2550 is not set
63467 -# CONFIG_I2C_DEBUG_CORE is not set
63468 -# CONFIG_I2C_DEBUG_ALGO is not set
63469 -# CONFIG_I2C_DEBUG_BUS is not set
63470 -# CONFIG_I2C_DEBUG_CHIP is not set
63471 -
63472 -#
63473 -# SPI support
63474 -#
63475 -# CONFIG_SPI is not set
63476 -# CONFIG_SPI_MASTER is not set
63477 -# CONFIG_W1 is not set
63478 -# CONFIG_POWER_SUPPLY is not set
63479 -CONFIG_HWMON=y
63480 -# CONFIG_HWMON_VID is not set
63481 -# CONFIG_SENSORS_AD7418 is not set
63482 -# CONFIG_SENSORS_ADM1021 is not set
63483 -# CONFIG_SENSORS_ADM1025 is not set
63484 -# CONFIG_SENSORS_ADM1026 is not set
63485 -# CONFIG_SENSORS_ADM1029 is not set
63486 -# CONFIG_SENSORS_ADM1031 is not set
63487 -# CONFIG_SENSORS_ADM9240 is not set
63488 -# CONFIG_SENSORS_ADT7470 is not set
63489 -# CONFIG_SENSORS_ADT7473 is not set
63490 -# CONFIG_SENSORS_ATXP1 is not set
63491 -# CONFIG_SENSORS_DS1621 is not set
63492 -# CONFIG_SENSORS_I5K_AMB is not set
63493 -# CONFIG_SENSORS_F71805F is not set
63494 -# CONFIG_SENSORS_F71882FG is not set
63495 -# CONFIG_SENSORS_F75375S is not set
63496 -# CONFIG_SENSORS_GL518SM is not set
63497 -# CONFIG_SENSORS_GL520SM is not set
63498 -# CONFIG_SENSORS_IT87 is not set
63499 -# CONFIG_SENSORS_LM63 is not set
63500 -# CONFIG_SENSORS_LM75 is not set
63501 -# CONFIG_SENSORS_LM77 is not set
63502 -# CONFIG_SENSORS_LM78 is not set
63503 -# CONFIG_SENSORS_LM80 is not set
63504 -# CONFIG_SENSORS_LM83 is not set
63505 -# CONFIG_SENSORS_LM85 is not set
63506 -# CONFIG_SENSORS_LM87 is not set
63507 -# CONFIG_SENSORS_LM90 is not set
63508 -# CONFIG_SENSORS_LM92 is not set
63509 -# CONFIG_SENSORS_LM93 is not set
63510 -# CONFIG_SENSORS_MAX1619 is not set
63511 -# CONFIG_SENSORS_MAX6650 is not set
63512 -# CONFIG_SENSORS_PC87360 is not set
63513 -# CONFIG_SENSORS_PC87427 is not set
63514 -# CONFIG_SENSORS_SIS5595 is not set
63515 -# CONFIG_SENSORS_DME1737 is not set
63516 -# CONFIG_SENSORS_SMSC47M1 is not set
63517 -# CONFIG_SENSORS_SMSC47M192 is not set
63518 -# CONFIG_SENSORS_SMSC47B397 is not set
63519 -# CONFIG_SENSORS_ADS7828 is not set
63520 -# CONFIG_SENSORS_THMC50 is not set
63521 -# CONFIG_SENSORS_VIA686A is not set
63522 -# CONFIG_SENSORS_VT1211 is not set
63523 -# CONFIG_SENSORS_VT8231 is not set
63524 -# CONFIG_SENSORS_W83781D is not set
63525 -# CONFIG_SENSORS_W83791D is not set
63526 -# CONFIG_SENSORS_W83792D is not set
63527 -# CONFIG_SENSORS_W83793 is not set
63528 -# CONFIG_SENSORS_W83L785TS is not set
63529 -# CONFIG_SENSORS_W83L786NG is not set
63530 -# CONFIG_SENSORS_W83627HF is not set
63531 -# CONFIG_SENSORS_W83627EHF is not set
63532 -# CONFIG_HWMON_DEBUG_CHIP is not set
63533 -# CONFIG_THERMAL is not set
63534 -CONFIG_WATCHDOG=y
63535 -# CONFIG_WATCHDOG_NOWAYOUT is not set
63536 -
63537 -#
63538 -# Watchdog Device Drivers
63539 -#
63540 -# CONFIG_SOFT_WATCHDOG is not set
63541 -CONFIG_83xx_WDT=y
63542 -
63543 -#
63544 -# PCI-based Watchdog Cards
63545 -#
63546 -# CONFIG_PCIPCWATCHDOG is not set
63547 -# CONFIG_WDTPCI is not set
63548 -
63549 -#
63550 -# Sonics Silicon Backplane
63551 -#
63552 -CONFIG_SSB_POSSIBLE=y
63553 -# CONFIG_SSB is not set
63554 -
63555 -#
63556 -# Multifunction device drivers
63557 -#
63558 -# CONFIG_MFD_SM501 is not set
63559 -
63560 -#
63561 -# Multimedia devices
63562 -#
63563 -# CONFIG_VIDEO_DEV is not set
63564 -# CONFIG_DVB_CORE is not set
63565 -CONFIG_DAB=y
63566 -
63567 -#
63568 -# Graphics support
63569 -#
63570 -# CONFIG_AGP is not set
63571 -# CONFIG_DRM is not set
63572 -# CONFIG_VGASTATE is not set
63573 -CONFIG_VIDEO_OUTPUT_CONTROL=m
63574 -# CONFIG_FB is not set
63575 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
63576 -
63577 -#
63578 -# Display device support
63579 -#
63580 -# CONFIG_DISPLAY_SUPPORT is not set
63581 -
63582 -#
63583 -# Sound
63584 -#
63585 -# CONFIG_SOUND is not set
63586 -CONFIG_HID_SUPPORT=y
63587 -CONFIG_HID=y
63588 -# CONFIG_HID_DEBUG is not set
63589 -# CONFIG_HIDRAW is not set
63590 -CONFIG_USB_SUPPORT=y
63591 -CONFIG_USB_ARCH_HAS_HCD=y
63592 -CONFIG_USB_ARCH_HAS_OHCI=y
63593 -CONFIG_USB_ARCH_HAS_EHCI=y
63594 -# CONFIG_USB is not set
63595 -
63596 -#
63597 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
63598 -#
63599 -# CONFIG_USB_GADGET is not set
63600 -# CONFIG_MMC is not set
63601 -# CONFIG_MEMSTICK is not set
63602 -# CONFIG_NEW_LEDS is not set
63603 -# CONFIG_INFINIBAND is not set
63604 -# CONFIG_EDAC is not set
63605 -CONFIG_RTC_LIB=y
63606 -CONFIG_RTC_CLASS=y
63607 -CONFIG_RTC_HCTOSYS=y
63608 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
63609 -# CONFIG_RTC_DEBUG is not set
63610 -
63611 -#
63612 -# RTC interfaces
63613 -#
63614 -CONFIG_RTC_INTF_SYSFS=y
63615 -CONFIG_RTC_INTF_PROC=y
63616 -CONFIG_RTC_INTF_DEV=y
63617 -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
63618 -# CONFIG_RTC_DRV_TEST is not set
63619 -
63620 -#
63621 -# I2C RTC drivers
63622 -#
63623 -# CONFIG_RTC_DRV_DS1307 is not set
63624 -CONFIG_RTC_DRV_DS1374=y
63625 -# CONFIG_RTC_DRV_DS1672 is not set
63626 -# CONFIG_RTC_DRV_MAX6900 is not set
63627 -# CONFIG_RTC_DRV_RS5C372 is not set
63628 -# CONFIG_RTC_DRV_ISL1208 is not set
63629 -# CONFIG_RTC_DRV_X1205 is not set
63630 -# CONFIG_RTC_DRV_PCF8563 is not set
63631 -# CONFIG_RTC_DRV_PCF8583 is not set
63632 -# CONFIG_RTC_DRV_M41T80 is not set
63633 -# CONFIG_RTC_DRV_S35390A is not set
63634 -
63635 -#
63636 -# SPI RTC drivers
63637 -#
63638 -
63639 -#
63640 -# Platform RTC drivers
63641 -#
63642 -# CONFIG_RTC_DRV_CMOS is not set
63643 -# CONFIG_RTC_DRV_DS1511 is not set
63644 -# CONFIG_RTC_DRV_DS1553 is not set
63645 -# CONFIG_RTC_DRV_DS1742 is not set
63646 -# CONFIG_RTC_DRV_STK17TA8 is not set
63647 -# CONFIG_RTC_DRV_M48T86 is not set
63648 -# CONFIG_RTC_DRV_M48T59 is not set
63649 -# CONFIG_RTC_DRV_V3020 is not set
63650 -
63651 -#
63652 -# on-CPU RTC drivers
63653 -#
63654 -# CONFIG_DMADEVICES is not set
63655 -
63656 -#
63657 -# Userspace I/O
63658 -#
63659 -# CONFIG_UIO is not set
63660 -
63661 -#
63662 -# File systems
63663 -#
63664 -CONFIG_EXT2_FS=y
63665 -# CONFIG_EXT2_FS_XATTR is not set
63666 -# CONFIG_EXT2_FS_XIP is not set
63667 -CONFIG_EXT3_FS=y
63668 -CONFIG_EXT3_FS_XATTR=y
63669 -# CONFIG_EXT3_FS_POSIX_ACL is not set
63670 -# CONFIG_EXT3_FS_SECURITY is not set
63671 -# CONFIG_EXT4DEV_FS is not set
63672 -CONFIG_JBD=y
63673 -CONFIG_FS_MBCACHE=y
63674 -# CONFIG_REISERFS_FS is not set
63675 -# CONFIG_JFS_FS is not set
63676 -# CONFIG_FS_POSIX_ACL is not set
63677 -# CONFIG_XFS_FS is not set
63678 -# CONFIG_GFS2_FS is not set
63679 -# CONFIG_OCFS2_FS is not set
63680 -CONFIG_DNOTIFY=y
63681 -CONFIG_INOTIFY=y
63682 -CONFIG_INOTIFY_USER=y
63683 -# CONFIG_QUOTA is not set
63684 -# CONFIG_AUTOFS_FS is not set
63685 -# CONFIG_AUTOFS4_FS is not set
63686 -# CONFIG_FUSE_FS is not set
63687 -
63688 -#
63689 -# CD-ROM/DVD Filesystems
63690 -#
63691 -# CONFIG_ISO9660_FS is not set
63692 -# CONFIG_UDF_FS is not set
63693 -
63694 -#
63695 -# DOS/FAT/NT Filesystems
63696 -#
63697 -# CONFIG_MSDOS_FS is not set
63698 -# CONFIG_VFAT_FS is not set
63699 -# CONFIG_NTFS_FS is not set
63700 -
63701 -#
63702 -# Pseudo filesystems
63703 -#
63704 -CONFIG_PROC_FS=y
63705 -CONFIG_PROC_KCORE=y
63706 -CONFIG_PROC_SYSCTL=y
63707 -CONFIG_SYSFS=y
63708 -CONFIG_TMPFS=y
63709 -# CONFIG_TMPFS_POSIX_ACL is not set
63710 -# CONFIG_HUGETLB_PAGE is not set
63711 -# CONFIG_CONFIGFS_FS is not set
63712 -
63713 -#
63714 -# Miscellaneous filesystems
63715 -#
63716 -# CONFIG_ADFS_FS is not set
63717 -# CONFIG_AFFS_FS is not set
63718 -# CONFIG_HFS_FS is not set
63719 -# CONFIG_HFSPLUS_FS is not set
63720 -# CONFIG_BEFS_FS is not set
63721 -# CONFIG_BFS_FS is not set
63722 -# CONFIG_EFS_FS is not set
63723 -# CONFIG_CRAMFS is not set
63724 -# CONFIG_VXFS_FS is not set
63725 -# CONFIG_MINIX_FS is not set
63726 -# CONFIG_HPFS_FS is not set
63727 -# CONFIG_QNX4FS_FS is not set
63728 -# CONFIG_ROMFS_FS is not set
63729 -# CONFIG_SYSV_FS is not set
63730 -# CONFIG_UFS_FS is not set
63731 -CONFIG_NETWORK_FILESYSTEMS=y
63732 -CONFIG_NFS_FS=y
63733 -CONFIG_NFS_V3=y
63734 -# CONFIG_NFS_V3_ACL is not set
63735 -CONFIG_NFS_V4=y
63736 -# CONFIG_NFS_DIRECTIO is not set
63737 -# CONFIG_NFSD is not set
63738 -CONFIG_ROOT_NFS=y
63739 -CONFIG_LOCKD=y
63740 -CONFIG_LOCKD_V4=y
63741 -CONFIG_NFS_COMMON=y
63742 -CONFIG_SUNRPC=y
63743 -CONFIG_SUNRPC_GSS=y
63744 -# CONFIG_SUNRPC_BIND34 is not set
63745 -CONFIG_RPCSEC_GSS_KRB5=y
63746 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
63747 -# CONFIG_SMB_FS is not set
63748 -# CONFIG_CIFS is not set
63749 -# CONFIG_NCP_FS is not set
63750 -# CONFIG_CODA_FS is not set
63751 -# CONFIG_AFS_FS is not set
63752 -
63753 -#
63754 -# Partition Types
63755 -#
63756 -CONFIG_PARTITION_ADVANCED=y
63757 -# CONFIG_ACORN_PARTITION is not set
63758 -# CONFIG_OSF_PARTITION is not set
63759 -# CONFIG_AMIGA_PARTITION is not set
63760 -# CONFIG_ATARI_PARTITION is not set
63761 -# CONFIG_MAC_PARTITION is not set
63762 -# CONFIG_MSDOS_PARTITION is not set
63763 -# CONFIG_LDM_PARTITION is not set
63764 -# CONFIG_SGI_PARTITION is not set
63765 -# CONFIG_ULTRIX_PARTITION is not set
63766 -# CONFIG_SUN_PARTITION is not set
63767 -# CONFIG_KARMA_PARTITION is not set
63768 -# CONFIG_EFI_PARTITION is not set
63769 -# CONFIG_SYSV68_PARTITION is not set
63770 -# CONFIG_NLS is not set
63771 -# CONFIG_DLM is not set
63772 -CONFIG_UCC_FAST=y
63773 -CONFIG_UCC=y
63774 -
63775 -#
63776 -# Library routines
63777 -#
63778 -CONFIG_BITREVERSE=y
63779 -# CONFIG_CRC_CCITT is not set
63780 -# CONFIG_CRC16 is not set
63781 -# CONFIG_CRC_ITU_T is not set
63782 -CONFIG_CRC32=y
63783 -# CONFIG_CRC7 is not set
63784 -# CONFIG_LIBCRC32C is not set
63785 -CONFIG_PLIST=y
63786 -CONFIG_HAS_IOMEM=y
63787 -CONFIG_HAS_IOPORT=y
63788 -CONFIG_HAS_DMA=y
63789 -
63790 -#
63791 -# Kernel hacking
63792 -#
63793 -# CONFIG_PRINTK_TIME is not set
63794 -CONFIG_ENABLE_WARN_DEPRECATED=y
63795 -CONFIG_ENABLE_MUST_CHECK=y
63796 -# CONFIG_MAGIC_SYSRQ is not set
63797 -# CONFIG_UNUSED_SYMBOLS is not set
63798 -# CONFIG_DEBUG_FS is not set
63799 -# CONFIG_HEADERS_CHECK is not set
63800 -# CONFIG_DEBUG_KERNEL is not set
63801 -# CONFIG_SLUB_DEBUG_ON is not set
63802 -# CONFIG_SLUB_STATS is not set
63803 -# CONFIG_DEBUG_BUGVERBOSE is not set
63804 -# CONFIG_SAMPLES is not set
63805 -# CONFIG_PPC_EARLY_DEBUG is not set
63806 -
63807 -#
63808 -# Security options
63809 -#
63810 -# CONFIG_KEYS is not set
63811 -# CONFIG_SECURITY is not set
63812 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
63813 -CONFIG_CRYPTO=y
63814 -CONFIG_CRYPTO_ALGAPI=y
63815 -CONFIG_CRYPTO_BLKCIPHER=y
63816 -# CONFIG_CRYPTO_SEQIV is not set
63817 -CONFIG_CRYPTO_MANAGER=y
63818 -# CONFIG_CRYPTO_HMAC is not set
63819 -# CONFIG_CRYPTO_XCBC is not set
63820 -# CONFIG_CRYPTO_NULL is not set
63821 -# CONFIG_CRYPTO_MD4 is not set
63822 -CONFIG_CRYPTO_MD5=y
63823 -# CONFIG_CRYPTO_SHA1 is not set
63824 -# CONFIG_CRYPTO_SHA256 is not set
63825 -# CONFIG_CRYPTO_SHA512 is not set
63826 -# CONFIG_CRYPTO_WP512 is not set
63827 -# CONFIG_CRYPTO_TGR192 is not set
63828 -# CONFIG_CRYPTO_GF128MUL is not set
63829 -CONFIG_CRYPTO_ECB=m
63830 -CONFIG_CRYPTO_CBC=y
63831 -CONFIG_CRYPTO_PCBC=m
63832 -# CONFIG_CRYPTO_LRW is not set
63833 -# CONFIG_CRYPTO_XTS is not set
63834 -# CONFIG_CRYPTO_CTR is not set
63835 -# CONFIG_CRYPTO_GCM is not set
63836 -# CONFIG_CRYPTO_CCM is not set
63837 -# CONFIG_CRYPTO_CRYPTD is not set
63838 -CONFIG_CRYPTO_DES=y
63839 -# CONFIG_CRYPTO_FCRYPT is not set
63840 -# CONFIG_CRYPTO_BLOWFISH is not set
63841 -# CONFIG_CRYPTO_TWOFISH is not set
63842 -# CONFIG_CRYPTO_SERPENT is not set
63843 -# CONFIG_CRYPTO_AES is not set
63844 -# CONFIG_CRYPTO_CAST5 is not set
63845 -# CONFIG_CRYPTO_CAST6 is not set
63846 -# CONFIG_CRYPTO_TEA is not set
63847 -# CONFIG_CRYPTO_ARC4 is not set
63848 -# CONFIG_CRYPTO_KHAZAD is not set
63849 -# CONFIG_CRYPTO_ANUBIS is not set
63850 -# CONFIG_CRYPTO_SEED is not set
63851 -# CONFIG_CRYPTO_SALSA20 is not set
63852 -# CONFIG_CRYPTO_DEFLATE is not set
63853 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
63854 -# CONFIG_CRYPTO_CRC32C is not set
63855 -# CONFIG_CRYPTO_CAMELLIA is not set
63856 -# CONFIG_CRYPTO_TEST is not set
63857 -# CONFIG_CRYPTO_AUTHENC is not set
63858 -# CONFIG_CRYPTO_LZO is not set
63859 -CONFIG_CRYPTO_HW=y
63860 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
63861 -# CONFIG_PPC_CLOCK is not set
63862 -CONFIG_PPC_LIB_RHEAP=y
63863 Index: linux-2.6.25.4/arch/powerpc/configs/mpc837x_mds_defconfig
63864 ===================================================================
63865 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc837x_mds_defconfig
63866 +++ /dev/null
63867 @@ -1,899 +0,0 @@
63868 -#
63869 -# Automatically generated make config: don't edit
63870 -# Linux kernel version: 2.6.25-rc6
63871 -# Mon Mar 24 08:48:23 2008
63872 -#
63873 -# CONFIG_PPC64 is not set
63874 -
63875 -#
63876 -# Processor support
63877 -#
63878 -CONFIG_6xx=y
63879 -# CONFIG_PPC_85xx is not set
63880 -# CONFIG_PPC_8xx is not set
63881 -# CONFIG_40x is not set
63882 -# CONFIG_44x is not set
63883 -# CONFIG_E200 is not set
63884 -CONFIG_PPC_FPU=y
63885 -# CONFIG_FSL_EMB_PERFMON is not set
63886 -CONFIG_PPC_STD_MMU=y
63887 -CONFIG_PPC_STD_MMU_32=y
63888 -# CONFIG_PPC_MM_SLICES is not set
63889 -# CONFIG_SMP is not set
63890 -CONFIG_PPC32=y
63891 -CONFIG_WORD_SIZE=32
63892 -CONFIG_PPC_MERGE=y
63893 -CONFIG_MMU=y
63894 -CONFIG_GENERIC_CMOS_UPDATE=y
63895 -CONFIG_GENERIC_TIME=y
63896 -CONFIG_GENERIC_TIME_VSYSCALL=y
63897 -CONFIG_GENERIC_CLOCKEVENTS=y
63898 -CONFIG_GENERIC_HARDIRQS=y
63899 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
63900 -CONFIG_IRQ_PER_CPU=y
63901 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
63902 -CONFIG_ARCH_HAS_ILOG2_U32=y
63903 -CONFIG_GENERIC_HWEIGHT=y
63904 -CONFIG_GENERIC_CALIBRATE_DELAY=y
63905 -CONFIG_GENERIC_FIND_NEXT_BIT=y
63906 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
63907 -CONFIG_PPC=y
63908 -CONFIG_EARLY_PRINTK=y
63909 -CONFIG_GENERIC_NVRAM=y
63910 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
63911 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
63912 -CONFIG_PPC_OF=y
63913 -CONFIG_OF=y
63914 -CONFIG_PPC_UDBG_16550=y
63915 -# CONFIG_GENERIC_TBSYNC is not set
63916 -CONFIG_AUDIT_ARCH=y
63917 -CONFIG_GENERIC_BUG=y
63918 -CONFIG_DEFAULT_UIMAGE=y
63919 -# CONFIG_PPC_DCR_NATIVE is not set
63920 -# CONFIG_PPC_DCR_MMIO is not set
63921 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
63922 -
63923 -#
63924 -# General setup
63925 -#
63926 -CONFIG_EXPERIMENTAL=y
63927 -CONFIG_BROKEN_ON_SMP=y
63928 -CONFIG_INIT_ENV_ARG_LIMIT=32
63929 -CONFIG_LOCALVERSION=""
63930 -CONFIG_LOCALVERSION_AUTO=y
63931 -CONFIG_SWAP=y
63932 -CONFIG_SYSVIPC=y
63933 -CONFIG_SYSVIPC_SYSCTL=y
63934 -# CONFIG_POSIX_MQUEUE is not set
63935 -# CONFIG_BSD_PROCESS_ACCT is not set
63936 -# CONFIG_TASKSTATS is not set
63937 -# CONFIG_AUDIT is not set
63938 -# CONFIG_IKCONFIG is not set
63939 -CONFIG_LOG_BUF_SHIFT=14
63940 -# CONFIG_CGROUPS is not set
63941 -CONFIG_GROUP_SCHED=y
63942 -CONFIG_FAIR_GROUP_SCHED=y
63943 -# CONFIG_RT_GROUP_SCHED is not set
63944 -CONFIG_USER_SCHED=y
63945 -# CONFIG_CGROUP_SCHED is not set
63946 -CONFIG_SYSFS_DEPRECATED=y
63947 -CONFIG_SYSFS_DEPRECATED_V2=y
63948 -# CONFIG_RELAY is not set
63949 -# CONFIG_NAMESPACES is not set
63950 -CONFIG_BLK_DEV_INITRD=y
63951 -CONFIG_INITRAMFS_SOURCE=""
63952 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
63953 -CONFIG_SYSCTL=y
63954 -CONFIG_EMBEDDED=y
63955 -CONFIG_SYSCTL_SYSCALL=y
63956 -CONFIG_KALLSYMS=y
63957 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
63958 -CONFIG_HOTPLUG=y
63959 -CONFIG_PRINTK=y
63960 -CONFIG_BUG=y
63961 -CONFIG_ELF_CORE=y
63962 -CONFIG_COMPAT_BRK=y
63963 -CONFIG_BASE_FULL=y
63964 -CONFIG_FUTEX=y
63965 -CONFIG_ANON_INODES=y
63966 -# CONFIG_EPOLL is not set
63967 -CONFIG_SIGNALFD=y
63968 -CONFIG_TIMERFD=y
63969 -CONFIG_EVENTFD=y
63970 -CONFIG_SHMEM=y
63971 -CONFIG_VM_EVENT_COUNTERS=y
63972 -CONFIG_SLAB=y
63973 -# CONFIG_SLUB is not set
63974 -# CONFIG_SLOB is not set
63975 -# CONFIG_PROFILING is not set
63976 -# CONFIG_MARKERS is not set
63977 -CONFIG_HAVE_OPROFILE=y
63978 -# CONFIG_KPROBES is not set
63979 -CONFIG_HAVE_KPROBES=y
63980 -CONFIG_HAVE_KRETPROBES=y
63981 -CONFIG_PROC_PAGE_MONITOR=y
63982 -CONFIG_SLABINFO=y
63983 -CONFIG_RT_MUTEXES=y
63984 -# CONFIG_TINY_SHMEM is not set
63985 -CONFIG_BASE_SMALL=0
63986 -CONFIG_MODULES=y
63987 -CONFIG_MODULE_UNLOAD=y
63988 -# CONFIG_MODULE_FORCE_UNLOAD is not set
63989 -# CONFIG_MODVERSIONS is not set
63990 -# CONFIG_MODULE_SRCVERSION_ALL is not set
63991 -# CONFIG_KMOD is not set
63992 -CONFIG_BLOCK=y
63993 -# CONFIG_LBD is not set
63994 -# CONFIG_BLK_DEV_IO_TRACE is not set
63995 -# CONFIG_LSF is not set
63996 -# CONFIG_BLK_DEV_BSG is not set
63997 -
63998 -#
63999 -# IO Schedulers
64000 -#
64001 -CONFIG_IOSCHED_NOOP=y
64002 -CONFIG_IOSCHED_AS=y
64003 -CONFIG_IOSCHED_DEADLINE=y
64004 -CONFIG_IOSCHED_CFQ=y
64005 -CONFIG_DEFAULT_AS=y
64006 -# CONFIG_DEFAULT_DEADLINE is not set
64007 -# CONFIG_DEFAULT_CFQ is not set
64008 -# CONFIG_DEFAULT_NOOP is not set
64009 -CONFIG_DEFAULT_IOSCHED="anticipatory"
64010 -CONFIG_CLASSIC_RCU=y
64011 -
64012 -#
64013 -# Platform support
64014 -#
64015 -# CONFIG_PPC_MULTIPLATFORM is not set
64016 -# CONFIG_PPC_82xx is not set
64017 -CONFIG_PPC_83xx=y
64018 -# CONFIG_PPC_86xx is not set
64019 -# CONFIG_PPC_MPC512x is not set
64020 -# CONFIG_PPC_MPC5121 is not set
64021 -# CONFIG_PPC_CELL is not set
64022 -# CONFIG_PPC_CELL_NATIVE is not set
64023 -# CONFIG_PQ2ADS is not set
64024 -CONFIG_MPC83xx=y
64025 -# CONFIG_MPC831x_RDB is not set
64026 -# CONFIG_MPC832x_MDS is not set
64027 -# CONFIG_MPC832x_RDB is not set
64028 -# CONFIG_MPC834x_MDS is not set
64029 -# CONFIG_MPC834x_ITX is not set
64030 -# CONFIG_MPC836x_MDS is not set
64031 -CONFIG_MPC837x_MDS=y
64032 -# CONFIG_MPC837x_RDB is not set
64033 -# CONFIG_SBC834x is not set
64034 -CONFIG_PPC_MPC837x=y
64035 -CONFIG_IPIC=y
64036 -# CONFIG_MPIC is not set
64037 -# CONFIG_MPIC_WEIRD is not set
64038 -# CONFIG_PPC_I8259 is not set
64039 -# CONFIG_PPC_RTAS is not set
64040 -# CONFIG_MMIO_NVRAM is not set
64041 -# CONFIG_PPC_MPC106 is not set
64042 -# CONFIG_PPC_970_NAP is not set
64043 -# CONFIG_PPC_INDIRECT_IO is not set
64044 -# CONFIG_GENERIC_IOMAP is not set
64045 -# CONFIG_CPU_FREQ is not set
64046 -# CONFIG_FSL_ULI1575 is not set
64047 -
64048 -#
64049 -# Kernel options
64050 -#
64051 -# CONFIG_HIGHMEM is not set
64052 -# CONFIG_TICK_ONESHOT is not set
64053 -# CONFIG_NO_HZ is not set
64054 -# CONFIG_HIGH_RES_TIMERS is not set
64055 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
64056 -# CONFIG_HZ_100 is not set
64057 -CONFIG_HZ_250=y
64058 -# CONFIG_HZ_300 is not set
64059 -# CONFIG_HZ_1000 is not set
64060 -CONFIG_HZ=250
64061 -# CONFIG_SCHED_HRTICK is not set
64062 -CONFIG_PREEMPT_NONE=y
64063 -# CONFIG_PREEMPT_VOLUNTARY is not set
64064 -# CONFIG_PREEMPT is not set
64065 -CONFIG_BINFMT_ELF=y
64066 -# CONFIG_BINFMT_MISC is not set
64067 -# CONFIG_IOMMU_HELPER is not set
64068 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
64069 -CONFIG_ARCH_HAS_WALK_MEMORY=y
64070 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
64071 -CONFIG_ARCH_FLATMEM_ENABLE=y
64072 -CONFIG_ARCH_POPULATES_NODE_MAP=y
64073 -CONFIG_SELECT_MEMORY_MODEL=y
64074 -CONFIG_FLATMEM_MANUAL=y
64075 -# CONFIG_DISCONTIGMEM_MANUAL is not set
64076 -# CONFIG_SPARSEMEM_MANUAL is not set
64077 -CONFIG_FLATMEM=y
64078 -CONFIG_FLAT_NODE_MEM_MAP=y
64079 -# CONFIG_SPARSEMEM_STATIC is not set
64080 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
64081 -CONFIG_SPLIT_PTLOCK_CPUS=4
64082 -# CONFIG_RESOURCES_64BIT is not set
64083 -CONFIG_ZONE_DMA_FLAG=1
64084 -CONFIG_BOUNCE=y
64085 -CONFIG_VIRT_TO_BUS=y
64086 -CONFIG_PROC_DEVICETREE=y
64087 -# CONFIG_CMDLINE_BOOL is not set
64088 -# CONFIG_PM is not set
64089 -CONFIG_SECCOMP=y
64090 -CONFIG_ISA_DMA_API=y
64091 -
64092 -#
64093 -# Bus options
64094 -#
64095 -CONFIG_ZONE_DMA=y
64096 -CONFIG_GENERIC_ISA_DMA=y
64097 -CONFIG_PPC_INDIRECT_PCI=y
64098 -CONFIG_FSL_SOC=y
64099 -# CONFIG_PCI is not set
64100 -# CONFIG_PCI_DOMAINS is not set
64101 -# CONFIG_PCI_SYSCALL is not set
64102 -# CONFIG_ARCH_SUPPORTS_MSI is not set
64103 -# CONFIG_PCCARD is not set
64104 -
64105 -#
64106 -# Advanced setup
64107 -#
64108 -# CONFIG_ADVANCED_OPTIONS is not set
64109 -
64110 -#
64111 -# Default settings for advanced configuration options are used
64112 -#
64113 -CONFIG_HIGHMEM_START=0xfe000000
64114 -CONFIG_LOWMEM_SIZE=0x30000000
64115 -CONFIG_KERNEL_START=0xc0000000
64116 -CONFIG_TASK_SIZE=0xc0000000
64117 -CONFIG_BOOT_LOAD=0x00800000
64118 -
64119 -#
64120 -# Networking
64121 -#
64122 -CONFIG_NET=y
64123 -
64124 -#
64125 -# Networking options
64126 -#
64127 -CONFIG_PACKET=y
64128 -# CONFIG_PACKET_MMAP is not set
64129 -CONFIG_UNIX=y
64130 -CONFIG_XFRM=y
64131 -CONFIG_XFRM_USER=m
64132 -# CONFIG_XFRM_SUB_POLICY is not set
64133 -# CONFIG_XFRM_MIGRATE is not set
64134 -# CONFIG_XFRM_STATISTICS is not set
64135 -# CONFIG_NET_KEY is not set
64136 -CONFIG_INET=y
64137 -CONFIG_IP_MULTICAST=y
64138 -# CONFIG_IP_ADVANCED_ROUTER is not set
64139 -CONFIG_IP_FIB_HASH=y
64140 -CONFIG_IP_PNP=y
64141 -CONFIG_IP_PNP_DHCP=y
64142 -CONFIG_IP_PNP_BOOTP=y
64143 -# CONFIG_IP_PNP_RARP is not set
64144 -# CONFIG_NET_IPIP is not set
64145 -# CONFIG_NET_IPGRE is not set
64146 -# CONFIG_IP_MROUTE is not set
64147 -# CONFIG_ARPD is not set
64148 -CONFIG_SYN_COOKIES=y
64149 -# CONFIG_INET_AH is not set
64150 -# CONFIG_INET_ESP is not set
64151 -# CONFIG_INET_IPCOMP is not set
64152 -# CONFIG_INET_XFRM_TUNNEL is not set
64153 -# CONFIG_INET_TUNNEL is not set
64154 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
64155 -CONFIG_INET_XFRM_MODE_TUNNEL=y
64156 -CONFIG_INET_XFRM_MODE_BEET=y
64157 -# CONFIG_INET_LRO is not set
64158 -CONFIG_INET_DIAG=y
64159 -CONFIG_INET_TCP_DIAG=y
64160 -# CONFIG_TCP_CONG_ADVANCED is not set
64161 -CONFIG_TCP_CONG_CUBIC=y
64162 -CONFIG_DEFAULT_TCP_CONG="cubic"
64163 -# CONFIG_TCP_MD5SIG is not set
64164 -# CONFIG_IPV6 is not set
64165 -# CONFIG_INET6_XFRM_TUNNEL is not set
64166 -# CONFIG_INET6_TUNNEL is not set
64167 -# CONFIG_NETWORK_SECMARK is not set
64168 -# CONFIG_NETFILTER is not set
64169 -# CONFIG_IP_DCCP is not set
64170 -# CONFIG_IP_SCTP is not set
64171 -# CONFIG_TIPC is not set
64172 -# CONFIG_ATM is not set
64173 -# CONFIG_BRIDGE is not set
64174 -# CONFIG_VLAN_8021Q is not set
64175 -# CONFIG_DECNET is not set
64176 -# CONFIG_LLC2 is not set
64177 -# CONFIG_IPX is not set
64178 -# CONFIG_ATALK is not set
64179 -# CONFIG_X25 is not set
64180 -# CONFIG_LAPB is not set
64181 -# CONFIG_ECONET is not set
64182 -# CONFIG_WAN_ROUTER is not set
64183 -# CONFIG_NET_SCHED is not set
64184 -
64185 -#
64186 -# Network testing
64187 -#
64188 -# CONFIG_NET_PKTGEN is not set
64189 -# CONFIG_HAMRADIO is not set
64190 -# CONFIG_CAN is not set
64191 -# CONFIG_IRDA is not set
64192 -# CONFIG_BT is not set
64193 -# CONFIG_AF_RXRPC is not set
64194 -
64195 -#
64196 -# Wireless
64197 -#
64198 -# CONFIG_CFG80211 is not set
64199 -# CONFIG_WIRELESS_EXT is not set
64200 -# CONFIG_MAC80211 is not set
64201 -# CONFIG_IEEE80211 is not set
64202 -# CONFIG_RFKILL is not set
64203 -# CONFIG_NET_9P is not set
64204 -
64205 -#
64206 -# Device Drivers
64207 -#
64208 -
64209 -#
64210 -# Generic Driver Options
64211 -#
64212 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
64213 -CONFIG_STANDALONE=y
64214 -CONFIG_PREVENT_FIRMWARE_BUILD=y
64215 -# CONFIG_FW_LOADER is not set
64216 -# CONFIG_SYS_HYPERVISOR is not set
64217 -# CONFIG_CONNECTOR is not set
64218 -# CONFIG_MTD is not set
64219 -CONFIG_OF_DEVICE=y
64220 -# CONFIG_PARPORT is not set
64221 -CONFIG_BLK_DEV=y
64222 -# CONFIG_BLK_DEV_FD is not set
64223 -# CONFIG_BLK_DEV_COW_COMMON is not set
64224 -CONFIG_BLK_DEV_LOOP=y
64225 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
64226 -# CONFIG_BLK_DEV_NBD is not set
64227 -CONFIG_BLK_DEV_RAM=y
64228 -CONFIG_BLK_DEV_RAM_COUNT=16
64229 -CONFIG_BLK_DEV_RAM_SIZE=32768
64230 -# CONFIG_BLK_DEV_XIP is not set
64231 -# CONFIG_CDROM_PKTCDVD is not set
64232 -# CONFIG_ATA_OVER_ETH is not set
64233 -CONFIG_MISC_DEVICES=y
64234 -# CONFIG_EEPROM_93CX6 is not set
64235 -# CONFIG_ENCLOSURE_SERVICES is not set
64236 -CONFIG_HAVE_IDE=y
64237 -# CONFIG_IDE is not set
64238 -
64239 -#
64240 -# SCSI device support
64241 -#
64242 -# CONFIG_RAID_ATTRS is not set
64243 -CONFIG_SCSI=y
64244 -CONFIG_SCSI_DMA=y
64245 -# CONFIG_SCSI_TGT is not set
64246 -# CONFIG_SCSI_NETLINK is not set
64247 -CONFIG_SCSI_PROC_FS=y
64248 -
64249 -#
64250 -# SCSI support type (disk, tape, CD-ROM)
64251 -#
64252 -CONFIG_BLK_DEV_SD=y
64253 -# CONFIG_CHR_DEV_ST is not set
64254 -# CONFIG_CHR_DEV_OSST is not set
64255 -# CONFIG_BLK_DEV_SR is not set
64256 -CONFIG_CHR_DEV_SG=y
64257 -# CONFIG_CHR_DEV_SCH is not set
64258 -
64259 -#
64260 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
64261 -#
64262 -# CONFIG_SCSI_MULTI_LUN is not set
64263 -# CONFIG_SCSI_CONSTANTS is not set
64264 -# CONFIG_SCSI_LOGGING is not set
64265 -# CONFIG_SCSI_SCAN_ASYNC is not set
64266 -CONFIG_SCSI_WAIT_SCAN=m
64267 -
64268 -#
64269 -# SCSI Transports
64270 -#
64271 -# CONFIG_SCSI_SPI_ATTRS is not set
64272 -# CONFIG_SCSI_FC_ATTRS is not set
64273 -# CONFIG_SCSI_ISCSI_ATTRS is not set
64274 -# CONFIG_SCSI_SAS_LIBSAS is not set
64275 -# CONFIG_SCSI_SRP_ATTRS is not set
64276 -CONFIG_SCSI_LOWLEVEL=y
64277 -# CONFIG_ISCSI_TCP is not set
64278 -# CONFIG_SCSI_DEBUG is not set
64279 -CONFIG_ATA=y
64280 -# CONFIG_ATA_NONSTANDARD is not set
64281 -# CONFIG_SATA_MV is not set
64282 -CONFIG_SATA_FSL=y
64283 -# CONFIG_PATA_PLATFORM is not set
64284 -# CONFIG_MD is not set
64285 -# CONFIG_MACINTOSH_DRIVERS is not set
64286 -CONFIG_NETDEVICES=y
64287 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
64288 -# CONFIG_DUMMY is not set
64289 -# CONFIG_BONDING is not set
64290 -# CONFIG_MACVLAN is not set
64291 -# CONFIG_EQUALIZER is not set
64292 -# CONFIG_TUN is not set
64293 -# CONFIG_VETH is not set
64294 -CONFIG_PHYLIB=y
64295 -
64296 -#
64297 -# MII PHY device drivers
64298 -#
64299 -CONFIG_MARVELL_PHY=y
64300 -# CONFIG_DAVICOM_PHY is not set
64301 -# CONFIG_QSEMI_PHY is not set
64302 -# CONFIG_LXT_PHY is not set
64303 -# CONFIG_CICADA_PHY is not set
64304 -# CONFIG_VITESSE_PHY is not set
64305 -# CONFIG_SMSC_PHY is not set
64306 -# CONFIG_BROADCOM_PHY is not set
64307 -# CONFIG_ICPLUS_PHY is not set
64308 -# CONFIG_REALTEK_PHY is not set
64309 -# CONFIG_FIXED_PHY is not set
64310 -# CONFIG_MDIO_BITBANG is not set
64311 -CONFIG_NET_ETHERNET=y
64312 -CONFIG_MII=y
64313 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
64314 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
64315 -# CONFIG_IBM_NEW_EMAC_TAH is not set
64316 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
64317 -# CONFIG_B44 is not set
64318 -CONFIG_NETDEV_1000=y
64319 -# CONFIG_E1000E_ENABLED is not set
64320 -CONFIG_GIANFAR=y
64321 -# CONFIG_GFAR_NAPI is not set
64322 -CONFIG_NETDEV_10000=y
64323 -
64324 -#
64325 -# Wireless LAN
64326 -#
64327 -# CONFIG_WLAN_PRE80211 is not set
64328 -# CONFIG_WLAN_80211 is not set
64329 -# CONFIG_WAN is not set
64330 -# CONFIG_PPP is not set
64331 -# CONFIG_SLIP is not set
64332 -# CONFIG_NETCONSOLE is not set
64333 -# CONFIG_NETPOLL is not set
64334 -# CONFIG_NET_POLL_CONTROLLER is not set
64335 -# CONFIG_ISDN is not set
64336 -# CONFIG_PHONE is not set
64337 -
64338 -#
64339 -# Input device support
64340 -#
64341 -CONFIG_INPUT=y
64342 -# CONFIG_INPUT_FF_MEMLESS is not set
64343 -# CONFIG_INPUT_POLLDEV is not set
64344 -
64345 -#
64346 -# Userland interfaces
64347 -#
64348 -# CONFIG_INPUT_MOUSEDEV is not set
64349 -# CONFIG_INPUT_JOYDEV is not set
64350 -# CONFIG_INPUT_EVDEV is not set
64351 -# CONFIG_INPUT_EVBUG is not set
64352 -
64353 -#
64354 -# Input Device Drivers
64355 -#
64356 -# CONFIG_INPUT_KEYBOARD is not set
64357 -# CONFIG_INPUT_MOUSE is not set
64358 -# CONFIG_INPUT_JOYSTICK is not set
64359 -# CONFIG_INPUT_TABLET is not set
64360 -# CONFIG_INPUT_TOUCHSCREEN is not set
64361 -# CONFIG_INPUT_MISC is not set
64362 -
64363 -#
64364 -# Hardware I/O ports
64365 -#
64366 -# CONFIG_SERIO is not set
64367 -# CONFIG_GAMEPORT is not set
64368 -
64369 -#
64370 -# Character devices
64371 -#
64372 -# CONFIG_VT is not set
64373 -# CONFIG_SERIAL_NONSTANDARD is not set
64374 -
64375 -#
64376 -# Serial drivers
64377 -#
64378 -CONFIG_SERIAL_8250=y
64379 -CONFIG_SERIAL_8250_CONSOLE=y
64380 -CONFIG_SERIAL_8250_NR_UARTS=4
64381 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
64382 -# CONFIG_SERIAL_8250_EXTENDED is not set
64383 -
64384 -#
64385 -# Non-8250 serial port support
64386 -#
64387 -# CONFIG_SERIAL_UARTLITE is not set
64388 -CONFIG_SERIAL_CORE=y
64389 -CONFIG_SERIAL_CORE_CONSOLE=y
64390 -# CONFIG_SERIAL_OF_PLATFORM is not set
64391 -CONFIG_UNIX98_PTYS=y
64392 -CONFIG_LEGACY_PTYS=y
64393 -CONFIG_LEGACY_PTY_COUNT=256
64394 -# CONFIG_IPMI_HANDLER is not set
64395 -# CONFIG_HW_RANDOM is not set
64396 -# CONFIG_NVRAM is not set
64397 -CONFIG_GEN_RTC=y
64398 -# CONFIG_GEN_RTC_X is not set
64399 -# CONFIG_R3964 is not set
64400 -# CONFIG_RAW_DRIVER is not set
64401 -# CONFIG_TCG_TPM is not set
64402 -CONFIG_I2C=y
64403 -CONFIG_I2C_BOARDINFO=y
64404 -CONFIG_I2C_CHARDEV=y
64405 -
64406 -#
64407 -# I2C Algorithms
64408 -#
64409 -# CONFIG_I2C_ALGOBIT is not set
64410 -# CONFIG_I2C_ALGOPCF is not set
64411 -# CONFIG_I2C_ALGOPCA is not set
64412 -
64413 -#
64414 -# I2C Hardware Bus support
64415 -#
64416 -CONFIG_I2C_MPC=y
64417 -# CONFIG_I2C_OCORES is not set
64418 -# CONFIG_I2C_PARPORT_LIGHT is not set
64419 -# CONFIG_I2C_SIMTEC is not set
64420 -# CONFIG_I2C_TAOS_EVM is not set
64421 -# CONFIG_I2C_STUB is not set
64422 -
64423 -#
64424 -# Miscellaneous I2C Chip support
64425 -#
64426 -# CONFIG_DS1682 is not set
64427 -# CONFIG_SENSORS_EEPROM is not set
64428 -# CONFIG_SENSORS_PCF8574 is not set
64429 -# CONFIG_PCF8575 is not set
64430 -# CONFIG_SENSORS_PCF8591 is not set
64431 -# CONFIG_TPS65010 is not set
64432 -# CONFIG_SENSORS_MAX6875 is not set
64433 -# CONFIG_SENSORS_TSL2550 is not set
64434 -# CONFIG_I2C_DEBUG_CORE is not set
64435 -# CONFIG_I2C_DEBUG_ALGO is not set
64436 -# CONFIG_I2C_DEBUG_BUS is not set
64437 -# CONFIG_I2C_DEBUG_CHIP is not set
64438 -
64439 -#
64440 -# SPI support
64441 -#
64442 -# CONFIG_SPI is not set
64443 -# CONFIG_SPI_MASTER is not set
64444 -# CONFIG_W1 is not set
64445 -# CONFIG_POWER_SUPPLY is not set
64446 -CONFIG_HWMON=y
64447 -# CONFIG_HWMON_VID is not set
64448 -# CONFIG_SENSORS_AD7418 is not set
64449 -# CONFIG_SENSORS_ADM1021 is not set
64450 -# CONFIG_SENSORS_ADM1025 is not set
64451 -# CONFIG_SENSORS_ADM1026 is not set
64452 -# CONFIG_SENSORS_ADM1029 is not set
64453 -# CONFIG_SENSORS_ADM1031 is not set
64454 -# CONFIG_SENSORS_ADM9240 is not set
64455 -# CONFIG_SENSORS_ADT7470 is not set
64456 -# CONFIG_SENSORS_ADT7473 is not set
64457 -# CONFIG_SENSORS_ATXP1 is not set
64458 -# CONFIG_SENSORS_DS1621 is not set
64459 -# CONFIG_SENSORS_F71805F is not set
64460 -# CONFIG_SENSORS_F71882FG is not set
64461 -# CONFIG_SENSORS_F75375S is not set
64462 -# CONFIG_SENSORS_GL518SM is not set
64463 -# CONFIG_SENSORS_GL520SM is not set
64464 -# CONFIG_SENSORS_IT87 is not set
64465 -# CONFIG_SENSORS_LM63 is not set
64466 -# CONFIG_SENSORS_LM75 is not set
64467 -# CONFIG_SENSORS_LM77 is not set
64468 -# CONFIG_SENSORS_LM78 is not set
64469 -# CONFIG_SENSORS_LM80 is not set
64470 -# CONFIG_SENSORS_LM83 is not set
64471 -# CONFIG_SENSORS_LM85 is not set
64472 -# CONFIG_SENSORS_LM87 is not set
64473 -# CONFIG_SENSORS_LM90 is not set
64474 -# CONFIG_SENSORS_LM92 is not set
64475 -# CONFIG_SENSORS_LM93 is not set
64476 -# CONFIG_SENSORS_MAX1619 is not set
64477 -# CONFIG_SENSORS_MAX6650 is not set
64478 -# CONFIG_SENSORS_PC87360 is not set
64479 -# CONFIG_SENSORS_PC87427 is not set
64480 -# CONFIG_SENSORS_DME1737 is not set
64481 -# CONFIG_SENSORS_SMSC47M1 is not set
64482 -# CONFIG_SENSORS_SMSC47M192 is not set
64483 -# CONFIG_SENSORS_SMSC47B397 is not set
64484 -# CONFIG_SENSORS_ADS7828 is not set
64485 -# CONFIG_SENSORS_THMC50 is not set
64486 -# CONFIG_SENSORS_VT1211 is not set
64487 -# CONFIG_SENSORS_W83781D is not set
64488 -# CONFIG_SENSORS_W83791D is not set
64489 -# CONFIG_SENSORS_W83792D is not set
64490 -# CONFIG_SENSORS_W83793 is not set
64491 -# CONFIG_SENSORS_W83L785TS is not set
64492 -# CONFIG_SENSORS_W83L786NG is not set
64493 -# CONFIG_SENSORS_W83627HF is not set
64494 -# CONFIG_SENSORS_W83627EHF is not set
64495 -# CONFIG_HWMON_DEBUG_CHIP is not set
64496 -# CONFIG_THERMAL is not set
64497 -CONFIG_WATCHDOG=y
64498 -# CONFIG_WATCHDOG_NOWAYOUT is not set
64499 -
64500 -#
64501 -# Watchdog Device Drivers
64502 -#
64503 -# CONFIG_SOFT_WATCHDOG is not set
64504 -CONFIG_83xx_WDT=y
64505 -
64506 -#
64507 -# Sonics Silicon Backplane
64508 -#
64509 -CONFIG_SSB_POSSIBLE=y
64510 -# CONFIG_SSB is not set
64511 -
64512 -#
64513 -# Multifunction device drivers
64514 -#
64515 -# CONFIG_MFD_SM501 is not set
64516 -
64517 -#
64518 -# Multimedia devices
64519 -#
64520 -# CONFIG_VIDEO_DEV is not set
64521 -# CONFIG_DVB_CORE is not set
64522 -CONFIG_DAB=y
64523 -
64524 -#
64525 -# Graphics support
64526 -#
64527 -# CONFIG_VGASTATE is not set
64528 -CONFIG_VIDEO_OUTPUT_CONTROL=m
64529 -# CONFIG_FB is not set
64530 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
64531 -
64532 -#
64533 -# Display device support
64534 -#
64535 -# CONFIG_DISPLAY_SUPPORT is not set
64536 -
64537 -#
64538 -# Sound
64539 -#
64540 -# CONFIG_SOUND is not set
64541 -CONFIG_HID_SUPPORT=y
64542 -CONFIG_HID=y
64543 -# CONFIG_HID_DEBUG is not set
64544 -# CONFIG_HIDRAW is not set
64545 -CONFIG_USB_SUPPORT=y
64546 -CONFIG_USB_ARCH_HAS_HCD=y
64547 -# CONFIG_USB_ARCH_HAS_OHCI is not set
64548 -CONFIG_USB_ARCH_HAS_EHCI=y
64549 -# CONFIG_USB is not set
64550 -
64551 -#
64552 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
64553 -#
64554 -# CONFIG_USB_GADGET is not set
64555 -# CONFIG_MMC is not set
64556 -# CONFIG_MEMSTICK is not set
64557 -# CONFIG_NEW_LEDS is not set
64558 -# CONFIG_EDAC is not set
64559 -# CONFIG_RTC_CLASS is not set
64560 -# CONFIG_DMADEVICES is not set
64561 -
64562 -#
64563 -# Userspace I/O
64564 -#
64565 -# CONFIG_UIO is not set
64566 -
64567 -#
64568 -# File systems
64569 -#
64570 -CONFIG_EXT2_FS=y
64571 -# CONFIG_EXT2_FS_XATTR is not set
64572 -# CONFIG_EXT2_FS_XIP is not set
64573 -CONFIG_EXT3_FS=y
64574 -CONFIG_EXT3_FS_XATTR=y
64575 -# CONFIG_EXT3_FS_POSIX_ACL is not set
64576 -# CONFIG_EXT3_FS_SECURITY is not set
64577 -# CONFIG_EXT4DEV_FS is not set
64578 -CONFIG_JBD=y
64579 -CONFIG_FS_MBCACHE=y
64580 -# CONFIG_REISERFS_FS is not set
64581 -# CONFIG_JFS_FS is not set
64582 -# CONFIG_FS_POSIX_ACL is not set
64583 -# CONFIG_XFS_FS is not set
64584 -# CONFIG_GFS2_FS is not set
64585 -# CONFIG_OCFS2_FS is not set
64586 -CONFIG_DNOTIFY=y
64587 -CONFIG_INOTIFY=y
64588 -CONFIG_INOTIFY_USER=y
64589 -# CONFIG_QUOTA is not set
64590 -# CONFIG_AUTOFS_FS is not set
64591 -# CONFIG_AUTOFS4_FS is not set
64592 -# CONFIG_FUSE_FS is not set
64593 -
64594 -#
64595 -# CD-ROM/DVD Filesystems
64596 -#
64597 -# CONFIG_ISO9660_FS is not set
64598 -# CONFIG_UDF_FS is not set
64599 -
64600 -#
64601 -# DOS/FAT/NT Filesystems
64602 -#
64603 -# CONFIG_MSDOS_FS is not set
64604 -# CONFIG_VFAT_FS is not set
64605 -# CONFIG_NTFS_FS is not set
64606 -
64607 -#
64608 -# Pseudo filesystems
64609 -#
64610 -CONFIG_PROC_FS=y
64611 -CONFIG_PROC_KCORE=y
64612 -CONFIG_PROC_SYSCTL=y
64613 -CONFIG_SYSFS=y
64614 -CONFIG_TMPFS=y
64615 -# CONFIG_TMPFS_POSIX_ACL is not set
64616 -# CONFIG_HUGETLB_PAGE is not set
64617 -# CONFIG_CONFIGFS_FS is not set
64618 -
64619 -#
64620 -# Miscellaneous filesystems
64621 -#
64622 -# CONFIG_ADFS_FS is not set
64623 -# CONFIG_AFFS_FS is not set
64624 -# CONFIG_HFS_FS is not set
64625 -# CONFIG_HFSPLUS_FS is not set
64626 -# CONFIG_BEFS_FS is not set
64627 -# CONFIG_BFS_FS is not set
64628 -# CONFIG_EFS_FS is not set
64629 -# CONFIG_CRAMFS is not set
64630 -# CONFIG_VXFS_FS is not set
64631 -# CONFIG_MINIX_FS is not set
64632 -# CONFIG_HPFS_FS is not set
64633 -# CONFIG_QNX4FS_FS is not set
64634 -# CONFIG_ROMFS_FS is not set
64635 -# CONFIG_SYSV_FS is not set
64636 -# CONFIG_UFS_FS is not set
64637 -CONFIG_NETWORK_FILESYSTEMS=y
64638 -CONFIG_NFS_FS=y
64639 -CONFIG_NFS_V3=y
64640 -# CONFIG_NFS_V3_ACL is not set
64641 -CONFIG_NFS_V4=y
64642 -# CONFIG_NFS_DIRECTIO is not set
64643 -# CONFIG_NFSD is not set
64644 -CONFIG_ROOT_NFS=y
64645 -CONFIG_LOCKD=y
64646 -CONFIG_LOCKD_V4=y
64647 -CONFIG_NFS_COMMON=y
64648 -CONFIG_SUNRPC=y
64649 -CONFIG_SUNRPC_GSS=y
64650 -# CONFIG_SUNRPC_BIND34 is not set
64651 -CONFIG_RPCSEC_GSS_KRB5=y
64652 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
64653 -# CONFIG_SMB_FS is not set
64654 -# CONFIG_CIFS is not set
64655 -# CONFIG_NCP_FS is not set
64656 -# CONFIG_CODA_FS is not set
64657 -# CONFIG_AFS_FS is not set
64658 -
64659 -#
64660 -# Partition Types
64661 -#
64662 -CONFIG_PARTITION_ADVANCED=y
64663 -# CONFIG_ACORN_PARTITION is not set
64664 -# CONFIG_OSF_PARTITION is not set
64665 -# CONFIG_AMIGA_PARTITION is not set
64666 -# CONFIG_ATARI_PARTITION is not set
64667 -# CONFIG_MAC_PARTITION is not set
64668 -CONFIG_MSDOS_PARTITION=y
64669 -# CONFIG_BSD_DISKLABEL is not set
64670 -# CONFIG_MINIX_SUBPARTITION is not set
64671 -# CONFIG_SOLARIS_X86_PARTITION is not set
64672 -# CONFIG_UNIXWARE_DISKLABEL is not set
64673 -# CONFIG_LDM_PARTITION is not set
64674 -# CONFIG_SGI_PARTITION is not set
64675 -# CONFIG_ULTRIX_PARTITION is not set
64676 -# CONFIG_SUN_PARTITION is not set
64677 -# CONFIG_KARMA_PARTITION is not set
64678 -# CONFIG_EFI_PARTITION is not set
64679 -# CONFIG_SYSV68_PARTITION is not set
64680 -# CONFIG_NLS is not set
64681 -# CONFIG_DLM is not set
64682 -
64683 -#
64684 -# Library routines
64685 -#
64686 -CONFIG_BITREVERSE=y
64687 -# CONFIG_CRC_CCITT is not set
64688 -# CONFIG_CRC16 is not set
64689 -# CONFIG_CRC_ITU_T is not set
64690 -CONFIG_CRC32=y
64691 -# CONFIG_CRC7 is not set
64692 -# CONFIG_LIBCRC32C is not set
64693 -CONFIG_PLIST=y
64694 -CONFIG_HAS_IOMEM=y
64695 -CONFIG_HAS_IOPORT=y
64696 -CONFIG_HAS_DMA=y
64697 -
64698 -#
64699 -# Kernel hacking
64700 -#
64701 -# CONFIG_PRINTK_TIME is not set
64702 -CONFIG_ENABLE_WARN_DEPRECATED=y
64703 -CONFIG_ENABLE_MUST_CHECK=y
64704 -# CONFIG_MAGIC_SYSRQ is not set
64705 -# CONFIG_UNUSED_SYMBOLS is not set
64706 -# CONFIG_DEBUG_FS is not set
64707 -# CONFIG_HEADERS_CHECK is not set
64708 -# CONFIG_DEBUG_KERNEL is not set
64709 -# CONFIG_DEBUG_BUGVERBOSE is not set
64710 -# CONFIG_SAMPLES is not set
64711 -# CONFIG_PPC_EARLY_DEBUG is not set
64712 -
64713 -#
64714 -# Security options
64715 -#
64716 -# CONFIG_KEYS is not set
64717 -# CONFIG_SECURITY is not set
64718 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
64719 -CONFIG_CRYPTO=y
64720 -CONFIG_CRYPTO_ALGAPI=y
64721 -CONFIG_CRYPTO_BLKCIPHER=y
64722 -# CONFIG_CRYPTO_SEQIV is not set
64723 -CONFIG_CRYPTO_MANAGER=y
64724 -# CONFIG_CRYPTO_HMAC is not set
64725 -# CONFIG_CRYPTO_XCBC is not set
64726 -# CONFIG_CRYPTO_NULL is not set
64727 -# CONFIG_CRYPTO_MD4 is not set
64728 -CONFIG_CRYPTO_MD5=y
64729 -# CONFIG_CRYPTO_SHA1 is not set
64730 -# CONFIG_CRYPTO_SHA256 is not set
64731 -# CONFIG_CRYPTO_SHA512 is not set
64732 -# CONFIG_CRYPTO_WP512 is not set
64733 -# CONFIG_CRYPTO_TGR192 is not set
64734 -# CONFIG_CRYPTO_GF128MUL is not set
64735 -CONFIG_CRYPTO_ECB=m
64736 -CONFIG_CRYPTO_CBC=y
64737 -CONFIG_CRYPTO_PCBC=m
64738 -# CONFIG_CRYPTO_LRW is not set
64739 -# CONFIG_CRYPTO_XTS is not set
64740 -# CONFIG_CRYPTO_CTR is not set
64741 -# CONFIG_CRYPTO_GCM is not set
64742 -# CONFIG_CRYPTO_CCM is not set
64743 -# CONFIG_CRYPTO_CRYPTD is not set
64744 -CONFIG_CRYPTO_DES=y
64745 -# CONFIG_CRYPTO_FCRYPT is not set
64746 -# CONFIG_CRYPTO_BLOWFISH is not set
64747 -# CONFIG_CRYPTO_TWOFISH is not set
64748 -# CONFIG_CRYPTO_SERPENT is not set
64749 -# CONFIG_CRYPTO_AES is not set
64750 -# CONFIG_CRYPTO_CAST5 is not set
64751 -# CONFIG_CRYPTO_CAST6 is not set
64752 -# CONFIG_CRYPTO_TEA is not set
64753 -# CONFIG_CRYPTO_ARC4 is not set
64754 -# CONFIG_CRYPTO_KHAZAD is not set
64755 -# CONFIG_CRYPTO_ANUBIS is not set
64756 -# CONFIG_CRYPTO_SEED is not set
64757 -# CONFIG_CRYPTO_SALSA20 is not set
64758 -# CONFIG_CRYPTO_DEFLATE is not set
64759 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
64760 -# CONFIG_CRYPTO_CRC32C is not set
64761 -# CONFIG_CRYPTO_CAMELLIA is not set
64762 -# CONFIG_CRYPTO_TEST is not set
64763 -# CONFIG_CRYPTO_AUTHENC is not set
64764 -# CONFIG_CRYPTO_LZO is not set
64765 -CONFIG_CRYPTO_HW=y
64766 -# CONFIG_PPC_CLOCK is not set
64767 Index: linux-2.6.25.4/arch/powerpc/configs/mpc837x_rdb_defconfig
64768 ===================================================================
64769 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc837x_rdb_defconfig
64770 +++ /dev/null
64771 @@ -1,930 +0,0 @@
64772 -#
64773 -# Automatically generated make config: don't edit
64774 -# Linux kernel version: 2.6.25-rc6
64775 -# Mon Mar 24 08:48:24 2008
64776 -#
64777 -# CONFIG_PPC64 is not set
64778 -
64779 -#
64780 -# Processor support
64781 -#
64782 -CONFIG_6xx=y
64783 -# CONFIG_PPC_85xx is not set
64784 -# CONFIG_PPC_8xx is not set
64785 -# CONFIG_40x is not set
64786 -# CONFIG_44x is not set
64787 -# CONFIG_E200 is not set
64788 -CONFIG_PPC_FPU=y
64789 -# CONFIG_FSL_EMB_PERFMON is not set
64790 -CONFIG_PPC_STD_MMU=y
64791 -CONFIG_PPC_STD_MMU_32=y
64792 -# CONFIG_PPC_MM_SLICES is not set
64793 -# CONFIG_SMP is not set
64794 -CONFIG_PPC32=y
64795 -CONFIG_WORD_SIZE=32
64796 -CONFIG_PPC_MERGE=y
64797 -CONFIG_MMU=y
64798 -CONFIG_GENERIC_CMOS_UPDATE=y
64799 -CONFIG_GENERIC_TIME=y
64800 -CONFIG_GENERIC_TIME_VSYSCALL=y
64801 -CONFIG_GENERIC_CLOCKEVENTS=y
64802 -CONFIG_GENERIC_HARDIRQS=y
64803 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
64804 -CONFIG_IRQ_PER_CPU=y
64805 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
64806 -CONFIG_ARCH_HAS_ILOG2_U32=y
64807 -CONFIG_GENERIC_HWEIGHT=y
64808 -CONFIG_GENERIC_CALIBRATE_DELAY=y
64809 -CONFIG_GENERIC_FIND_NEXT_BIT=y
64810 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
64811 -CONFIG_PPC=y
64812 -CONFIG_EARLY_PRINTK=y
64813 -CONFIG_GENERIC_NVRAM=y
64814 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
64815 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
64816 -CONFIG_PPC_OF=y
64817 -CONFIG_OF=y
64818 -CONFIG_PPC_UDBG_16550=y
64819 -# CONFIG_GENERIC_TBSYNC is not set
64820 -CONFIG_AUDIT_ARCH=y
64821 -CONFIG_GENERIC_BUG=y
64822 -CONFIG_DEFAULT_UIMAGE=y
64823 -# CONFIG_PPC_DCR_NATIVE is not set
64824 -# CONFIG_PPC_DCR_MMIO is not set
64825 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
64826 -
64827 -#
64828 -# General setup
64829 -#
64830 -CONFIG_EXPERIMENTAL=y
64831 -CONFIG_BROKEN_ON_SMP=y
64832 -CONFIG_INIT_ENV_ARG_LIMIT=32
64833 -CONFIG_LOCALVERSION=""
64834 -CONFIG_LOCALVERSION_AUTO=y
64835 -CONFIG_SWAP=y
64836 -CONFIG_SYSVIPC=y
64837 -CONFIG_SYSVIPC_SYSCTL=y
64838 -# CONFIG_POSIX_MQUEUE is not set
64839 -# CONFIG_BSD_PROCESS_ACCT is not set
64840 -# CONFIG_TASKSTATS is not set
64841 -# CONFIG_AUDIT is not set
64842 -# CONFIG_IKCONFIG is not set
64843 -CONFIG_LOG_BUF_SHIFT=14
64844 -# CONFIG_CGROUPS is not set
64845 -CONFIG_GROUP_SCHED=y
64846 -CONFIG_FAIR_GROUP_SCHED=y
64847 -# CONFIG_RT_GROUP_SCHED is not set
64848 -CONFIG_USER_SCHED=y
64849 -# CONFIG_CGROUP_SCHED is not set
64850 -CONFIG_SYSFS_DEPRECATED=y
64851 -CONFIG_SYSFS_DEPRECATED_V2=y
64852 -# CONFIG_RELAY is not set
64853 -# CONFIG_NAMESPACES is not set
64854 -CONFIG_BLK_DEV_INITRD=y
64855 -CONFIG_INITRAMFS_SOURCE=""
64856 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
64857 -CONFIG_SYSCTL=y
64858 -CONFIG_EMBEDDED=y
64859 -CONFIG_SYSCTL_SYSCALL=y
64860 -CONFIG_KALLSYMS=y
64861 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
64862 -CONFIG_HOTPLUG=y
64863 -CONFIG_PRINTK=y
64864 -CONFIG_BUG=y
64865 -CONFIG_ELF_CORE=y
64866 -CONFIG_COMPAT_BRK=y
64867 -CONFIG_BASE_FULL=y
64868 -CONFIG_FUTEX=y
64869 -CONFIG_ANON_INODES=y
64870 -# CONFIG_EPOLL is not set
64871 -CONFIG_SIGNALFD=y
64872 -CONFIG_TIMERFD=y
64873 -CONFIG_EVENTFD=y
64874 -CONFIG_SHMEM=y
64875 -CONFIG_VM_EVENT_COUNTERS=y
64876 -CONFIG_SLAB=y
64877 -# CONFIG_SLUB is not set
64878 -# CONFIG_SLOB is not set
64879 -# CONFIG_PROFILING is not set
64880 -# CONFIG_MARKERS is not set
64881 -CONFIG_HAVE_OPROFILE=y
64882 -# CONFIG_KPROBES is not set
64883 -CONFIG_HAVE_KPROBES=y
64884 -CONFIG_HAVE_KRETPROBES=y
64885 -CONFIG_PROC_PAGE_MONITOR=y
64886 -CONFIG_SLABINFO=y
64887 -CONFIG_RT_MUTEXES=y
64888 -# CONFIG_TINY_SHMEM is not set
64889 -CONFIG_BASE_SMALL=0
64890 -CONFIG_MODULES=y
64891 -CONFIG_MODULE_UNLOAD=y
64892 -# CONFIG_MODULE_FORCE_UNLOAD is not set
64893 -# CONFIG_MODVERSIONS is not set
64894 -# CONFIG_MODULE_SRCVERSION_ALL is not set
64895 -# CONFIG_KMOD is not set
64896 -CONFIG_BLOCK=y
64897 -# CONFIG_LBD is not set
64898 -# CONFIG_BLK_DEV_IO_TRACE is not set
64899 -# CONFIG_LSF is not set
64900 -# CONFIG_BLK_DEV_BSG is not set
64901 -
64902 -#
64903 -# IO Schedulers
64904 -#
64905 -CONFIG_IOSCHED_NOOP=y
64906 -CONFIG_IOSCHED_AS=y
64907 -CONFIG_IOSCHED_DEADLINE=y
64908 -CONFIG_IOSCHED_CFQ=y
64909 -CONFIG_DEFAULT_AS=y
64910 -# CONFIG_DEFAULT_DEADLINE is not set
64911 -# CONFIG_DEFAULT_CFQ is not set
64912 -# CONFIG_DEFAULT_NOOP is not set
64913 -CONFIG_DEFAULT_IOSCHED="anticipatory"
64914 -CONFIG_CLASSIC_RCU=y
64915 -
64916 -#
64917 -# Platform support
64918 -#
64919 -# CONFIG_PPC_MULTIPLATFORM is not set
64920 -# CONFIG_PPC_82xx is not set
64921 -CONFIG_PPC_83xx=y
64922 -# CONFIG_PPC_86xx is not set
64923 -# CONFIG_PPC_MPC512x is not set
64924 -# CONFIG_PPC_MPC5121 is not set
64925 -# CONFIG_PPC_CELL is not set
64926 -# CONFIG_PPC_CELL_NATIVE is not set
64927 -# CONFIG_PQ2ADS is not set
64928 -CONFIG_MPC83xx=y
64929 -# CONFIG_MPC831x_RDB is not set
64930 -# CONFIG_MPC832x_MDS is not set
64931 -# CONFIG_MPC832x_RDB is not set
64932 -# CONFIG_MPC834x_MDS is not set
64933 -# CONFIG_MPC834x_ITX is not set
64934 -# CONFIG_MPC836x_MDS is not set
64935 -# CONFIG_MPC837x_MDS is not set
64936 -CONFIG_MPC837x_RDB=y
64937 -# CONFIG_SBC834x is not set
64938 -CONFIG_PPC_MPC837x=y
64939 -CONFIG_IPIC=y
64940 -# CONFIG_MPIC is not set
64941 -# CONFIG_MPIC_WEIRD is not set
64942 -# CONFIG_PPC_I8259 is not set
64943 -# CONFIG_PPC_RTAS is not set
64944 -# CONFIG_MMIO_NVRAM is not set
64945 -# CONFIG_PPC_MPC106 is not set
64946 -# CONFIG_PPC_970_NAP is not set
64947 -# CONFIG_PPC_INDIRECT_IO is not set
64948 -# CONFIG_GENERIC_IOMAP is not set
64949 -# CONFIG_CPU_FREQ is not set
64950 -# CONFIG_FSL_ULI1575 is not set
64951 -
64952 -#
64953 -# Kernel options
64954 -#
64955 -# CONFIG_HIGHMEM is not set
64956 -# CONFIG_TICK_ONESHOT is not set
64957 -# CONFIG_NO_HZ is not set
64958 -# CONFIG_HIGH_RES_TIMERS is not set
64959 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
64960 -# CONFIG_HZ_100 is not set
64961 -CONFIG_HZ_250=y
64962 -# CONFIG_HZ_300 is not set
64963 -# CONFIG_HZ_1000 is not set
64964 -CONFIG_HZ=250
64965 -# CONFIG_SCHED_HRTICK is not set
64966 -CONFIG_PREEMPT_NONE=y
64967 -# CONFIG_PREEMPT_VOLUNTARY is not set
64968 -# CONFIG_PREEMPT is not set
64969 -CONFIG_BINFMT_ELF=y
64970 -# CONFIG_BINFMT_MISC is not set
64971 -# CONFIG_IOMMU_HELPER is not set
64972 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
64973 -CONFIG_ARCH_HAS_WALK_MEMORY=y
64974 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
64975 -CONFIG_ARCH_FLATMEM_ENABLE=y
64976 -CONFIG_ARCH_POPULATES_NODE_MAP=y
64977 -CONFIG_SELECT_MEMORY_MODEL=y
64978 -CONFIG_FLATMEM_MANUAL=y
64979 -# CONFIG_DISCONTIGMEM_MANUAL is not set
64980 -# CONFIG_SPARSEMEM_MANUAL is not set
64981 -CONFIG_FLATMEM=y
64982 -CONFIG_FLAT_NODE_MEM_MAP=y
64983 -# CONFIG_SPARSEMEM_STATIC is not set
64984 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
64985 -CONFIG_SPLIT_PTLOCK_CPUS=4
64986 -# CONFIG_RESOURCES_64BIT is not set
64987 -CONFIG_ZONE_DMA_FLAG=1
64988 -CONFIG_BOUNCE=y
64989 -CONFIG_VIRT_TO_BUS=y
64990 -CONFIG_PROC_DEVICETREE=y
64991 -# CONFIG_CMDLINE_BOOL is not set
64992 -# CONFIG_PM is not set
64993 -CONFIG_SECCOMP=y
64994 -CONFIG_ISA_DMA_API=y
64995 -
64996 -#
64997 -# Bus options
64998 -#
64999 -CONFIG_ZONE_DMA=y
65000 -CONFIG_GENERIC_ISA_DMA=y
65001 -CONFIG_PPC_INDIRECT_PCI=y
65002 -CONFIG_FSL_SOC=y
65003 -# CONFIG_PCI is not set
65004 -# CONFIG_PCI_DOMAINS is not set
65005 -# CONFIG_PCI_SYSCALL is not set
65006 -# CONFIG_ARCH_SUPPORTS_MSI is not set
65007 -# CONFIG_PCCARD is not set
65008 -
65009 -#
65010 -# Advanced setup
65011 -#
65012 -# CONFIG_ADVANCED_OPTIONS is not set
65013 -
65014 -#
65015 -# Default settings for advanced configuration options are used
65016 -#
65017 -CONFIG_HIGHMEM_START=0xfe000000
65018 -CONFIG_LOWMEM_SIZE=0x30000000
65019 -CONFIG_KERNEL_START=0xc0000000
65020 -CONFIG_TASK_SIZE=0xc0000000
65021 -CONFIG_BOOT_LOAD=0x00800000
65022 -
65023 -#
65024 -# Networking
65025 -#
65026 -CONFIG_NET=y
65027 -
65028 -#
65029 -# Networking options
65030 -#
65031 -CONFIG_PACKET=y
65032 -# CONFIG_PACKET_MMAP is not set
65033 -CONFIG_UNIX=y
65034 -# CONFIG_NET_KEY is not set
65035 -CONFIG_INET=y
65036 -CONFIG_IP_MULTICAST=y
65037 -# CONFIG_IP_ADVANCED_ROUTER is not set
65038 -CONFIG_IP_FIB_HASH=y
65039 -CONFIG_IP_PNP=y
65040 -CONFIG_IP_PNP_DHCP=y
65041 -CONFIG_IP_PNP_BOOTP=y
65042 -# CONFIG_IP_PNP_RARP is not set
65043 -# CONFIG_NET_IPIP is not set
65044 -# CONFIG_NET_IPGRE is not set
65045 -# CONFIG_IP_MROUTE is not set
65046 -# CONFIG_ARPD is not set
65047 -CONFIG_SYN_COOKIES=y
65048 -# CONFIG_INET_AH is not set
65049 -# CONFIG_INET_ESP is not set
65050 -# CONFIG_INET_IPCOMP is not set
65051 -# CONFIG_INET_XFRM_TUNNEL is not set
65052 -# CONFIG_INET_TUNNEL is not set
65053 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
65054 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
65055 -# CONFIG_INET_XFRM_MODE_BEET is not set
65056 -# CONFIG_INET_LRO is not set
65057 -CONFIG_INET_DIAG=y
65058 -CONFIG_INET_TCP_DIAG=y
65059 -# CONFIG_TCP_CONG_ADVANCED is not set
65060 -CONFIG_TCP_CONG_CUBIC=y
65061 -CONFIG_DEFAULT_TCP_CONG="cubic"
65062 -# CONFIG_TCP_MD5SIG is not set
65063 -# CONFIG_IPV6 is not set
65064 -# CONFIG_INET6_XFRM_TUNNEL is not set
65065 -# CONFIG_INET6_TUNNEL is not set
65066 -# CONFIG_NETWORK_SECMARK is not set
65067 -# CONFIG_NETFILTER is not set
65068 -# CONFIG_IP_DCCP is not set
65069 -# CONFIG_IP_SCTP is not set
65070 -# CONFIG_TIPC is not set
65071 -# CONFIG_ATM is not set
65072 -# CONFIG_BRIDGE is not set
65073 -# CONFIG_VLAN_8021Q is not set
65074 -# CONFIG_DECNET is not set
65075 -# CONFIG_LLC2 is not set
65076 -# CONFIG_IPX is not set
65077 -# CONFIG_ATALK is not set
65078 -# CONFIG_X25 is not set
65079 -# CONFIG_LAPB is not set
65080 -# CONFIG_ECONET is not set
65081 -# CONFIG_WAN_ROUTER is not set
65082 -# CONFIG_NET_SCHED is not set
65083 -
65084 -#
65085 -# Network testing
65086 -#
65087 -# CONFIG_NET_PKTGEN is not set
65088 -# CONFIG_HAMRADIO is not set
65089 -# CONFIG_CAN is not set
65090 -# CONFIG_IRDA is not set
65091 -# CONFIG_BT is not set
65092 -# CONFIG_AF_RXRPC is not set
65093 -
65094 -#
65095 -# Wireless
65096 -#
65097 -# CONFIG_CFG80211 is not set
65098 -# CONFIG_WIRELESS_EXT is not set
65099 -# CONFIG_MAC80211 is not set
65100 -# CONFIG_IEEE80211 is not set
65101 -# CONFIG_RFKILL is not set
65102 -# CONFIG_NET_9P is not set
65103 -
65104 -#
65105 -# Device Drivers
65106 -#
65107 -
65108 -#
65109 -# Generic Driver Options
65110 -#
65111 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
65112 -CONFIG_STANDALONE=y
65113 -CONFIG_PREVENT_FIRMWARE_BUILD=y
65114 -# CONFIG_FW_LOADER is not set
65115 -# CONFIG_SYS_HYPERVISOR is not set
65116 -# CONFIG_CONNECTOR is not set
65117 -# CONFIG_MTD is not set
65118 -CONFIG_OF_DEVICE=y
65119 -# CONFIG_PARPORT is not set
65120 -CONFIG_BLK_DEV=y
65121 -# CONFIG_BLK_DEV_FD is not set
65122 -# CONFIG_BLK_DEV_COW_COMMON is not set
65123 -CONFIG_BLK_DEV_LOOP=y
65124 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
65125 -# CONFIG_BLK_DEV_NBD is not set
65126 -CONFIG_BLK_DEV_RAM=y
65127 -CONFIG_BLK_DEV_RAM_COUNT=16
65128 -CONFIG_BLK_DEV_RAM_SIZE=32768
65129 -# CONFIG_BLK_DEV_XIP is not set
65130 -# CONFIG_CDROM_PKTCDVD is not set
65131 -# CONFIG_ATA_OVER_ETH is not set
65132 -CONFIG_MISC_DEVICES=y
65133 -# CONFIG_EEPROM_93CX6 is not set
65134 -# CONFIG_ENCLOSURE_SERVICES is not set
65135 -CONFIG_HAVE_IDE=y
65136 -# CONFIG_IDE is not set
65137 -
65138 -#
65139 -# SCSI device support
65140 -#
65141 -# CONFIG_RAID_ATTRS is not set
65142 -CONFIG_SCSI=y
65143 -CONFIG_SCSI_DMA=y
65144 -# CONFIG_SCSI_TGT is not set
65145 -# CONFIG_SCSI_NETLINK is not set
65146 -CONFIG_SCSI_PROC_FS=y
65147 -
65148 -#
65149 -# SCSI support type (disk, tape, CD-ROM)
65150 -#
65151 -CONFIG_BLK_DEV_SD=y
65152 -# CONFIG_CHR_DEV_ST is not set
65153 -# CONFIG_CHR_DEV_OSST is not set
65154 -# CONFIG_BLK_DEV_SR is not set
65155 -CONFIG_CHR_DEV_SG=y
65156 -# CONFIG_CHR_DEV_SCH is not set
65157 -
65158 -#
65159 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
65160 -#
65161 -# CONFIG_SCSI_MULTI_LUN is not set
65162 -# CONFIG_SCSI_CONSTANTS is not set
65163 -# CONFIG_SCSI_LOGGING is not set
65164 -# CONFIG_SCSI_SCAN_ASYNC is not set
65165 -CONFIG_SCSI_WAIT_SCAN=m
65166 -
65167 -#
65168 -# SCSI Transports
65169 -#
65170 -# CONFIG_SCSI_SPI_ATTRS is not set
65171 -# CONFIG_SCSI_FC_ATTRS is not set
65172 -# CONFIG_SCSI_ISCSI_ATTRS is not set
65173 -# CONFIG_SCSI_SAS_LIBSAS is not set
65174 -# CONFIG_SCSI_SRP_ATTRS is not set
65175 -CONFIG_SCSI_LOWLEVEL=y
65176 -# CONFIG_ISCSI_TCP is not set
65177 -# CONFIG_SCSI_DEBUG is not set
65178 -CONFIG_ATA=y
65179 -# CONFIG_ATA_NONSTANDARD is not set
65180 -# CONFIG_SATA_MV is not set
65181 -CONFIG_SATA_FSL=y
65182 -# CONFIG_PATA_PLATFORM is not set
65183 -CONFIG_MD=y
65184 -CONFIG_BLK_DEV_MD=y
65185 -# CONFIG_MD_LINEAR is not set
65186 -# CONFIG_MD_RAID0 is not set
65187 -CONFIG_MD_RAID1=y
65188 -# CONFIG_MD_RAID10 is not set
65189 -CONFIG_MD_RAID456=y
65190 -CONFIG_MD_RAID5_RESHAPE=y
65191 -# CONFIG_MD_MULTIPATH is not set
65192 -# CONFIG_MD_FAULTY is not set
65193 -# CONFIG_BLK_DEV_DM is not set
65194 -# CONFIG_MACINTOSH_DRIVERS is not set
65195 -CONFIG_NETDEVICES=y
65196 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
65197 -# CONFIG_DUMMY is not set
65198 -# CONFIG_BONDING is not set
65199 -# CONFIG_MACVLAN is not set
65200 -# CONFIG_EQUALIZER is not set
65201 -# CONFIG_TUN is not set
65202 -# CONFIG_VETH is not set
65203 -CONFIG_PHYLIB=y
65204 -
65205 -#
65206 -# MII PHY device drivers
65207 -#
65208 -CONFIG_MARVELL_PHY=y
65209 -# CONFIG_DAVICOM_PHY is not set
65210 -# CONFIG_QSEMI_PHY is not set
65211 -# CONFIG_LXT_PHY is not set
65212 -# CONFIG_CICADA_PHY is not set
65213 -# CONFIG_VITESSE_PHY is not set
65214 -# CONFIG_SMSC_PHY is not set
65215 -# CONFIG_BROADCOM_PHY is not set
65216 -# CONFIG_ICPLUS_PHY is not set
65217 -# CONFIG_REALTEK_PHY is not set
65218 -# CONFIG_FIXED_PHY is not set
65219 -# CONFIG_MDIO_BITBANG is not set
65220 -CONFIG_NET_ETHERNET=y
65221 -CONFIG_MII=y
65222 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
65223 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
65224 -# CONFIG_IBM_NEW_EMAC_TAH is not set
65225 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
65226 -# CONFIG_B44 is not set
65227 -CONFIG_NETDEV_1000=y
65228 -# CONFIG_E1000E_ENABLED is not set
65229 -CONFIG_GIANFAR=y
65230 -CONFIG_GFAR_NAPI=y
65231 -# CONFIG_NETDEV_10000 is not set
65232 -
65233 -#
65234 -# Wireless LAN
65235 -#
65236 -# CONFIG_WLAN_PRE80211 is not set
65237 -# CONFIG_WLAN_80211 is not set
65238 -# CONFIG_WAN is not set
65239 -# CONFIG_PPP is not set
65240 -# CONFIG_SLIP is not set
65241 -# CONFIG_NETCONSOLE is not set
65242 -# CONFIG_NETPOLL is not set
65243 -# CONFIG_NET_POLL_CONTROLLER is not set
65244 -# CONFIG_ISDN is not set
65245 -# CONFIG_PHONE is not set
65246 -
65247 -#
65248 -# Input device support
65249 -#
65250 -CONFIG_INPUT=y
65251 -# CONFIG_INPUT_FF_MEMLESS is not set
65252 -# CONFIG_INPUT_POLLDEV is not set
65253 -
65254 -#
65255 -# Userland interfaces
65256 -#
65257 -# CONFIG_INPUT_MOUSEDEV is not set
65258 -# CONFIG_INPUT_JOYDEV is not set
65259 -# CONFIG_INPUT_EVDEV is not set
65260 -# CONFIG_INPUT_EVBUG is not set
65261 -
65262 -#
65263 -# Input Device Drivers
65264 -#
65265 -# CONFIG_INPUT_KEYBOARD is not set
65266 -# CONFIG_INPUT_MOUSE is not set
65267 -# CONFIG_INPUT_JOYSTICK is not set
65268 -# CONFIG_INPUT_TABLET is not set
65269 -# CONFIG_INPUT_TOUCHSCREEN is not set
65270 -# CONFIG_INPUT_MISC is not set
65271 -
65272 -#
65273 -# Hardware I/O ports
65274 -#
65275 -# CONFIG_SERIO is not set
65276 -# CONFIG_GAMEPORT is not set
65277 -
65278 -#
65279 -# Character devices
65280 -#
65281 -# CONFIG_VT is not set
65282 -# CONFIG_SERIAL_NONSTANDARD is not set
65283 -
65284 -#
65285 -# Serial drivers
65286 -#
65287 -CONFIG_SERIAL_8250=y
65288 -CONFIG_SERIAL_8250_CONSOLE=y
65289 -CONFIG_SERIAL_8250_NR_UARTS=4
65290 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
65291 -# CONFIG_SERIAL_8250_EXTENDED is not set
65292 -
65293 -#
65294 -# Non-8250 serial port support
65295 -#
65296 -# CONFIG_SERIAL_UARTLITE is not set
65297 -CONFIG_SERIAL_CORE=y
65298 -CONFIG_SERIAL_CORE_CONSOLE=y
65299 -# CONFIG_SERIAL_OF_PLATFORM is not set
65300 -CONFIG_UNIX98_PTYS=y
65301 -CONFIG_LEGACY_PTYS=y
65302 -CONFIG_LEGACY_PTY_COUNT=256
65303 -# CONFIG_IPMI_HANDLER is not set
65304 -# CONFIG_HW_RANDOM is not set
65305 -# CONFIG_NVRAM is not set
65306 -CONFIG_GEN_RTC=y
65307 -# CONFIG_GEN_RTC_X is not set
65308 -# CONFIG_R3964 is not set
65309 -# CONFIG_RAW_DRIVER is not set
65310 -# CONFIG_TCG_TPM is not set
65311 -CONFIG_I2C=y
65312 -CONFIG_I2C_BOARDINFO=y
65313 -CONFIG_I2C_CHARDEV=y
65314 -
65315 -#
65316 -# I2C Algorithms
65317 -#
65318 -# CONFIG_I2C_ALGOBIT is not set
65319 -# CONFIG_I2C_ALGOPCF is not set
65320 -# CONFIG_I2C_ALGOPCA is not set
65321 -
65322 -#
65323 -# I2C Hardware Bus support
65324 -#
65325 -CONFIG_I2C_MPC=y
65326 -# CONFIG_I2C_OCORES is not set
65327 -# CONFIG_I2C_PARPORT_LIGHT is not set
65328 -# CONFIG_I2C_SIMTEC is not set
65329 -# CONFIG_I2C_TAOS_EVM is not set
65330 -# CONFIG_I2C_STUB is not set
65331 -
65332 -#
65333 -# Miscellaneous I2C Chip support
65334 -#
65335 -# CONFIG_DS1682 is not set
65336 -# CONFIG_SENSORS_EEPROM is not set
65337 -# CONFIG_SENSORS_PCF8574 is not set
65338 -# CONFIG_PCF8575 is not set
65339 -# CONFIG_SENSORS_PCF8591 is not set
65340 -# CONFIG_TPS65010 is not set
65341 -# CONFIG_SENSORS_MAX6875 is not set
65342 -# CONFIG_SENSORS_TSL2550 is not set
65343 -# CONFIG_I2C_DEBUG_CORE is not set
65344 -# CONFIG_I2C_DEBUG_ALGO is not set
65345 -# CONFIG_I2C_DEBUG_BUS is not set
65346 -# CONFIG_I2C_DEBUG_CHIP is not set
65347 -
65348 -#
65349 -# SPI support
65350 -#
65351 -# CONFIG_SPI is not set
65352 -# CONFIG_SPI_MASTER is not set
65353 -# CONFIG_W1 is not set
65354 -# CONFIG_POWER_SUPPLY is not set
65355 -CONFIG_HWMON=y
65356 -# CONFIG_HWMON_VID is not set
65357 -# CONFIG_SENSORS_AD7418 is not set
65358 -# CONFIG_SENSORS_ADM1021 is not set
65359 -# CONFIG_SENSORS_ADM1025 is not set
65360 -# CONFIG_SENSORS_ADM1026 is not set
65361 -# CONFIG_SENSORS_ADM1029 is not set
65362 -# CONFIG_SENSORS_ADM1031 is not set
65363 -# CONFIG_SENSORS_ADM9240 is not set
65364 -# CONFIG_SENSORS_ADT7470 is not set
65365 -# CONFIG_SENSORS_ADT7473 is not set
65366 -# CONFIG_SENSORS_ATXP1 is not set
65367 -# CONFIG_SENSORS_DS1621 is not set
65368 -# CONFIG_SENSORS_F71805F is not set
65369 -# CONFIG_SENSORS_F71882FG is not set
65370 -# CONFIG_SENSORS_F75375S is not set
65371 -# CONFIG_SENSORS_GL518SM is not set
65372 -# CONFIG_SENSORS_GL520SM is not set
65373 -# CONFIG_SENSORS_IT87 is not set
65374 -# CONFIG_SENSORS_LM63 is not set
65375 -# CONFIG_SENSORS_LM75 is not set
65376 -# CONFIG_SENSORS_LM77 is not set
65377 -# CONFIG_SENSORS_LM78 is not set
65378 -# CONFIG_SENSORS_LM80 is not set
65379 -# CONFIG_SENSORS_LM83 is not set
65380 -# CONFIG_SENSORS_LM85 is not set
65381 -# CONFIG_SENSORS_LM87 is not set
65382 -# CONFIG_SENSORS_LM90 is not set
65383 -# CONFIG_SENSORS_LM92 is not set
65384 -# CONFIG_SENSORS_LM93 is not set
65385 -# CONFIG_SENSORS_MAX1619 is not set
65386 -# CONFIG_SENSORS_MAX6650 is not set
65387 -# CONFIG_SENSORS_PC87360 is not set
65388 -# CONFIG_SENSORS_PC87427 is not set
65389 -# CONFIG_SENSORS_DME1737 is not set
65390 -# CONFIG_SENSORS_SMSC47M1 is not set
65391 -# CONFIG_SENSORS_SMSC47M192 is not set
65392 -# CONFIG_SENSORS_SMSC47B397 is not set
65393 -# CONFIG_SENSORS_ADS7828 is not set
65394 -# CONFIG_SENSORS_THMC50 is not set
65395 -# CONFIG_SENSORS_VT1211 is not set
65396 -# CONFIG_SENSORS_W83781D is not set
65397 -# CONFIG_SENSORS_W83791D is not set
65398 -# CONFIG_SENSORS_W83792D is not set
65399 -# CONFIG_SENSORS_W83793 is not set
65400 -# CONFIG_SENSORS_W83L785TS is not set
65401 -# CONFIG_SENSORS_W83L786NG is not set
65402 -# CONFIG_SENSORS_W83627HF is not set
65403 -# CONFIG_SENSORS_W83627EHF is not set
65404 -# CONFIG_HWMON_DEBUG_CHIP is not set
65405 -# CONFIG_THERMAL is not set
65406 -CONFIG_WATCHDOG=y
65407 -# CONFIG_WATCHDOG_NOWAYOUT is not set
65408 -
65409 -#
65410 -# Watchdog Device Drivers
65411 -#
65412 -# CONFIG_SOFT_WATCHDOG is not set
65413 -CONFIG_83xx_WDT=y
65414 -
65415 -#
65416 -# Sonics Silicon Backplane
65417 -#
65418 -CONFIG_SSB_POSSIBLE=y
65419 -# CONFIG_SSB is not set
65420 -
65421 -#
65422 -# Multifunction device drivers
65423 -#
65424 -# CONFIG_MFD_SM501 is not set
65425 -
65426 -#
65427 -# Multimedia devices
65428 -#
65429 -# CONFIG_VIDEO_DEV is not set
65430 -# CONFIG_DVB_CORE is not set
65431 -CONFIG_DAB=y
65432 -
65433 -#
65434 -# Graphics support
65435 -#
65436 -# CONFIG_VGASTATE is not set
65437 -CONFIG_VIDEO_OUTPUT_CONTROL=m
65438 -# CONFIG_FB is not set
65439 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
65440 -
65441 -#
65442 -# Display device support
65443 -#
65444 -# CONFIG_DISPLAY_SUPPORT is not set
65445 -
65446 -#
65447 -# Sound
65448 -#
65449 -# CONFIG_SOUND is not set
65450 -CONFIG_HID_SUPPORT=y
65451 -CONFIG_HID=y
65452 -# CONFIG_HID_DEBUG is not set
65453 -# CONFIG_HIDRAW is not set
65454 -CONFIG_USB_SUPPORT=y
65455 -CONFIG_USB_ARCH_HAS_HCD=y
65456 -# CONFIG_USB_ARCH_HAS_OHCI is not set
65457 -CONFIG_USB_ARCH_HAS_EHCI=y
65458 -CONFIG_USB=y
65459 -# CONFIG_USB_DEBUG is not set
65460 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
65461 -
65462 -#
65463 -# Miscellaneous USB options
65464 -#
65465 -# CONFIG_USB_DEVICEFS is not set
65466 -CONFIG_USB_DEVICE_CLASS=y
65467 -# CONFIG_USB_DYNAMIC_MINORS is not set
65468 -# CONFIG_USB_OTG is not set
65469 -
65470 -#
65471 -# USB Host Controller Drivers
65472 -#
65473 -CONFIG_USB_EHCI_HCD=y
65474 -CONFIG_USB_EHCI_ROOT_HUB_TT=y
65475 -# CONFIG_USB_EHCI_TT_NEWSCHED is not set
65476 -CONFIG_USB_EHCI_FSL=y
65477 -CONFIG_USB_EHCI_HCD_PPC_OF=y
65478 -# CONFIG_USB_ISP116X_HCD is not set
65479 -# CONFIG_USB_SL811_HCD is not set
65480 -# CONFIG_USB_R8A66597_HCD is not set
65481 -
65482 -#
65483 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
65484 -#
65485 -# CONFIG_USB_GADGET is not set
65486 -# CONFIG_MMC is not set
65487 -# CONFIG_MEMSTICK is not set
65488 -# CONFIG_NEW_LEDS is not set
65489 -# CONFIG_EDAC is not set
65490 -# CONFIG_RTC_CLASS is not set
65491 -# CONFIG_DMADEVICES is not set
65492 -
65493 -#
65494 -# Userspace I/O
65495 -#
65496 -# CONFIG_UIO is not set
65497 -
65498 -#
65499 -# File systems
65500 -#
65501 -CONFIG_EXT2_FS=y
65502 -# CONFIG_EXT2_FS_XATTR is not set
65503 -# CONFIG_EXT2_FS_XIP is not set
65504 -CONFIG_EXT3_FS=y
65505 -CONFIG_EXT3_FS_XATTR=y
65506 -# CONFIG_EXT3_FS_POSIX_ACL is not set
65507 -# CONFIG_EXT3_FS_SECURITY is not set
65508 -# CONFIG_EXT4DEV_FS is not set
65509 -CONFIG_JBD=y
65510 -CONFIG_FS_MBCACHE=y
65511 -# CONFIG_REISERFS_FS is not set
65512 -# CONFIG_JFS_FS is not set
65513 -# CONFIG_FS_POSIX_ACL is not set
65514 -# CONFIG_XFS_FS is not set
65515 -# CONFIG_GFS2_FS is not set
65516 -# CONFIG_OCFS2_FS is not set
65517 -CONFIG_DNOTIFY=y
65518 -CONFIG_INOTIFY=y
65519 -CONFIG_INOTIFY_USER=y
65520 -# CONFIG_QUOTA is not set
65521 -# CONFIG_AUTOFS_FS is not set
65522 -# CONFIG_AUTOFS4_FS is not set
65523 -# CONFIG_FUSE_FS is not set
65524 -
65525 -#
65526 -# CD-ROM/DVD Filesystems
65527 -#
65528 -# CONFIG_ISO9660_FS is not set
65529 -# CONFIG_UDF_FS is not set
65530 -
65531 -#
65532 -# DOS/FAT/NT Filesystems
65533 -#
65534 -# CONFIG_MSDOS_FS is not set
65535 -# CONFIG_VFAT_FS is not set
65536 -# CONFIG_NTFS_FS is not set
65537 -
65538 -#
65539 -# Pseudo filesystems
65540 -#
65541 -CONFIG_PROC_FS=y
65542 -CONFIG_PROC_KCORE=y
65543 -CONFIG_PROC_SYSCTL=y
65544 -CONFIG_SYSFS=y
65545 -CONFIG_TMPFS=y
65546 -# CONFIG_TMPFS_POSIX_ACL is not set
65547 -# CONFIG_HUGETLB_PAGE is not set
65548 -# CONFIG_CONFIGFS_FS is not set
65549 -
65550 -#
65551 -# Miscellaneous filesystems
65552 -#
65553 -# CONFIG_ADFS_FS is not set
65554 -# CONFIG_AFFS_FS is not set
65555 -# CONFIG_HFS_FS is not set
65556 -# CONFIG_HFSPLUS_FS is not set
65557 -# CONFIG_BEFS_FS is not set
65558 -# CONFIG_BFS_FS is not set
65559 -# CONFIG_EFS_FS is not set
65560 -# CONFIG_CRAMFS is not set
65561 -# CONFIG_VXFS_FS is not set
65562 -# CONFIG_MINIX_FS is not set
65563 -# CONFIG_HPFS_FS is not set
65564 -# CONFIG_QNX4FS_FS is not set
65565 -# CONFIG_ROMFS_FS is not set
65566 -# CONFIG_SYSV_FS is not set
65567 -# CONFIG_UFS_FS is not set
65568 -CONFIG_NETWORK_FILESYSTEMS=y
65569 -CONFIG_NFS_FS=y
65570 -CONFIG_NFS_V3=y
65571 -# CONFIG_NFS_V3_ACL is not set
65572 -CONFIG_NFS_V4=y
65573 -# CONFIG_NFS_DIRECTIO is not set
65574 -# CONFIG_NFSD is not set
65575 -CONFIG_ROOT_NFS=y
65576 -CONFIG_LOCKD=y
65577 -CONFIG_LOCKD_V4=y
65578 -CONFIG_NFS_COMMON=y
65579 -CONFIG_SUNRPC=y
65580 -CONFIG_SUNRPC_GSS=y
65581 -# CONFIG_SUNRPC_BIND34 is not set
65582 -CONFIG_RPCSEC_GSS_KRB5=y
65583 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
65584 -# CONFIG_SMB_FS is not set
65585 -# CONFIG_CIFS is not set
65586 -# CONFIG_NCP_FS is not set
65587 -# CONFIG_CODA_FS is not set
65588 -# CONFIG_AFS_FS is not set
65589 -
65590 -#
65591 -# Partition Types
65592 -#
65593 -CONFIG_PARTITION_ADVANCED=y
65594 -# CONFIG_ACORN_PARTITION is not set
65595 -# CONFIG_OSF_PARTITION is not set
65596 -# CONFIG_AMIGA_PARTITION is not set
65597 -# CONFIG_ATARI_PARTITION is not set
65598 -# CONFIG_MAC_PARTITION is not set
65599 -CONFIG_MSDOS_PARTITION=y
65600 -# CONFIG_BSD_DISKLABEL is not set
65601 -# CONFIG_MINIX_SUBPARTITION is not set
65602 -# CONFIG_SOLARIS_X86_PARTITION is not set
65603 -# CONFIG_UNIXWARE_DISKLABEL is not set
65604 -# CONFIG_LDM_PARTITION is not set
65605 -# CONFIG_SGI_PARTITION is not set
65606 -# CONFIG_ULTRIX_PARTITION is not set
65607 -# CONFIG_SUN_PARTITION is not set
65608 -# CONFIG_KARMA_PARTITION is not set
65609 -# CONFIG_EFI_PARTITION is not set
65610 -# CONFIG_SYSV68_PARTITION is not set
65611 -# CONFIG_NLS is not set
65612 -# CONFIG_DLM is not set
65613 -
65614 -#
65615 -# Library routines
65616 -#
65617 -CONFIG_BITREVERSE=y
65618 -# CONFIG_CRC_CCITT is not set
65619 -# CONFIG_CRC16 is not set
65620 -# CONFIG_CRC_ITU_T is not set
65621 -CONFIG_CRC32=y
65622 -# CONFIG_CRC7 is not set
65623 -# CONFIG_LIBCRC32C is not set
65624 -CONFIG_PLIST=y
65625 -CONFIG_HAS_IOMEM=y
65626 -CONFIG_HAS_IOPORT=y
65627 -CONFIG_HAS_DMA=y
65628 -
65629 -#
65630 -# Kernel hacking
65631 -#
65632 -# CONFIG_PRINTK_TIME is not set
65633 -CONFIG_ENABLE_WARN_DEPRECATED=y
65634 -# CONFIG_ENABLE_MUST_CHECK is not set
65635 -# CONFIG_MAGIC_SYSRQ is not set
65636 -# CONFIG_UNUSED_SYMBOLS is not set
65637 -# CONFIG_DEBUG_FS is not set
65638 -# CONFIG_HEADERS_CHECK is not set
65639 -# CONFIG_DEBUG_KERNEL is not set
65640 -# CONFIG_DEBUG_BUGVERBOSE is not set
65641 -# CONFIG_SAMPLES is not set
65642 -# CONFIG_PPC_EARLY_DEBUG is not set
65643 -
65644 -#
65645 -# Security options
65646 -#
65647 -# CONFIG_KEYS is not set
65648 -# CONFIG_SECURITY is not set
65649 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
65650 -CONFIG_XOR_BLOCKS=y
65651 -CONFIG_ASYNC_CORE=y
65652 -CONFIG_ASYNC_MEMCPY=y
65653 -CONFIG_ASYNC_XOR=y
65654 -CONFIG_CRYPTO=y
65655 -CONFIG_CRYPTO_ALGAPI=y
65656 -CONFIG_CRYPTO_BLKCIPHER=y
65657 -# CONFIG_CRYPTO_SEQIV is not set
65658 -CONFIG_CRYPTO_MANAGER=y
65659 -# CONFIG_CRYPTO_HMAC is not set
65660 -# CONFIG_CRYPTO_XCBC is not set
65661 -# CONFIG_CRYPTO_NULL is not set
65662 -# CONFIG_CRYPTO_MD4 is not set
65663 -CONFIG_CRYPTO_MD5=y
65664 -# CONFIG_CRYPTO_SHA1 is not set
65665 -# CONFIG_CRYPTO_SHA256 is not set
65666 -# CONFIG_CRYPTO_SHA512 is not set
65667 -# CONFIG_CRYPTO_WP512 is not set
65668 -# CONFIG_CRYPTO_TGR192 is not set
65669 -# CONFIG_CRYPTO_GF128MUL is not set
65670 -CONFIG_CRYPTO_ECB=m
65671 -CONFIG_CRYPTO_CBC=y
65672 -CONFIG_CRYPTO_PCBC=m
65673 -# CONFIG_CRYPTO_LRW is not set
65674 -# CONFIG_CRYPTO_XTS is not set
65675 -# CONFIG_CRYPTO_CTR is not set
65676 -# CONFIG_CRYPTO_GCM is not set
65677 -# CONFIG_CRYPTO_CCM is not set
65678 -# CONFIG_CRYPTO_CRYPTD is not set
65679 -CONFIG_CRYPTO_DES=y
65680 -# CONFIG_CRYPTO_FCRYPT is not set
65681 -# CONFIG_CRYPTO_BLOWFISH is not set
65682 -# CONFIG_CRYPTO_TWOFISH is not set
65683 -# CONFIG_CRYPTO_SERPENT is not set
65684 -# CONFIG_CRYPTO_AES is not set
65685 -# CONFIG_CRYPTO_CAST5 is not set
65686 -# CONFIG_CRYPTO_CAST6 is not set
65687 -# CONFIG_CRYPTO_TEA is not set
65688 -# CONFIG_CRYPTO_ARC4 is not set
65689 -# CONFIG_CRYPTO_KHAZAD is not set
65690 -# CONFIG_CRYPTO_ANUBIS is not set
65691 -# CONFIG_CRYPTO_SEED is not set
65692 -# CONFIG_CRYPTO_SALSA20 is not set
65693 -# CONFIG_CRYPTO_DEFLATE is not set
65694 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
65695 -# CONFIG_CRYPTO_CRC32C is not set
65696 -# CONFIG_CRYPTO_CAMELLIA is not set
65697 -# CONFIG_CRYPTO_TEST is not set
65698 -# CONFIG_CRYPTO_AUTHENC is not set
65699 -# CONFIG_CRYPTO_LZO is not set
65700 -CONFIG_CRYPTO_HW=y
65701 -# CONFIG_PPC_CLOCK is not set
65702 Index: linux-2.6.25.4/arch/powerpc/configs/mpc83xx_defconfig
65703 ===================================================================
65704 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc83xx_defconfig
65705 +++ linux-2.6.25.4/arch/powerpc/configs/mpc83xx_defconfig
65706 @@ -1,7 +1,7 @@
65707 #
65708 # Automatically generated make config: don't edit
65709 -# Linux kernel version: 2.6.25-rc6
65710 -# Mon Mar 24 08:48:25 2008
65711 +# Linux kernel version: 2.6.25-rc9
65712 +# Tue Apr 15 18:07:36 2008
65713 #
65714 # CONFIG_PPC64 is not set
65715
65716 @@ -201,6 +201,7 @@ CONFIG_PREEMPT_NONE=y
65717 # CONFIG_PREEMPT is not set
65718 CONFIG_BINFMT_ELF=y
65719 # CONFIG_BINFMT_MISC is not set
65720 +CONFIG_FORCE_MAX_ZONEORDER=11
65721 CONFIG_MATH_EMULATION=y
65722 # CONFIG_IOMMU_HELPER is not set
65723 CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
65724 @@ -353,7 +354,90 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
65725 # CONFIG_FW_LOADER is not set
65726 # CONFIG_SYS_HYPERVISOR is not set
65727 # CONFIG_CONNECTOR is not set
65728 -# CONFIG_MTD is not set
65729 +CONFIG_MTD=y
65730 +# CONFIG_MTD_DEBUG is not set
65731 +# CONFIG_MTD_CONCAT is not set
65732 +CONFIG_MTD_PARTITIONS=y
65733 +# CONFIG_MTD_REDBOOT_PARTS is not set
65734 +# CONFIG_MTD_CMDLINE_PARTS is not set
65735 +CONFIG_MTD_OF_PARTS=y
65736 +
65737 +#
65738 +# User Modules And Translation Layers
65739 +#
65740 +CONFIG_MTD_CHAR=y
65741 +CONFIG_MTD_BLKDEVS=y
65742 +CONFIG_MTD_BLOCK=y
65743 +# CONFIG_FTL is not set
65744 +# CONFIG_NFTL is not set
65745 +# CONFIG_INFTL is not set
65746 +# CONFIG_RFD_FTL is not set
65747 +# CONFIG_SSFDC is not set
65748 +# CONFIG_MTD_OOPS is not set
65749 +
65750 +#
65751 +# RAM/ROM/Flash chip drivers
65752 +#
65753 +CONFIG_MTD_CFI=y
65754 +# CONFIG_MTD_JEDECPROBE is not set
65755 +CONFIG_MTD_GEN_PROBE=y
65756 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
65757 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
65758 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
65759 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
65760 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
65761 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
65762 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
65763 +CONFIG_MTD_CFI_I1=y
65764 +CONFIG_MTD_CFI_I2=y
65765 +# CONFIG_MTD_CFI_I4 is not set
65766 +# CONFIG_MTD_CFI_I8 is not set
65767 +# CONFIG_MTD_CFI_INTELEXT is not set
65768 +CONFIG_MTD_CFI_AMDSTD=y
65769 +# CONFIG_MTD_CFI_STAA is not set
65770 +CONFIG_MTD_CFI_UTIL=y
65771 +# CONFIG_MTD_RAM is not set
65772 +# CONFIG_MTD_ROM is not set
65773 +# CONFIG_MTD_ABSENT is not set
65774 +
65775 +#
65776 +# Mapping drivers for chip access
65777 +#
65778 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
65779 +# CONFIG_MTD_PHYSMAP is not set
65780 +CONFIG_MTD_PHYSMAP_OF=y
65781 +# CONFIG_MTD_PLATRAM is not set
65782 +
65783 +#
65784 +# Self-contained MTD device drivers
65785 +#
65786 +# CONFIG_MTD_SLRAM is not set
65787 +# CONFIG_MTD_PHRAM is not set
65788 +# CONFIG_MTD_MTDRAM is not set
65789 +# CONFIG_MTD_BLOCK2MTD is not set
65790 +
65791 +#
65792 +# Disk-On-Chip Device Drivers
65793 +#
65794 +# CONFIG_MTD_DOC2000 is not set
65795 +# CONFIG_MTD_DOC2001 is not set
65796 +# CONFIG_MTD_DOC2001PLUS is not set
65797 +CONFIG_MTD_NAND=y
65798 +CONFIG_MTD_NAND_VERIFY_WRITE=y
65799 +# CONFIG_MTD_NAND_ECC_SMC is not set
65800 +# CONFIG_MTD_NAND_MUSEUM_IDS is not set
65801 +CONFIG_MTD_NAND_IDS=y
65802 +# CONFIG_MTD_NAND_DISKONCHIP is not set
65803 +# CONFIG_MTD_NAND_NANDSIM is not set
65804 +# CONFIG_MTD_NAND_PLATFORM is not set
65805 +# CONFIG_MTD_ALAUDA is not set
65806 +CONFIG_MTD_NAND_FSL_ELBC=y
65807 +# CONFIG_MTD_ONENAND is not set
65808 +
65809 +#
65810 +# UBI - Unsorted block images
65811 +#
65812 +# CONFIG_MTD_UBI is not set
65813 CONFIG_OF_DEVICE=y
65814 # CONFIG_PARPORT is not set
65815 CONFIG_BLK_DEV=y
65816 @@ -362,6 +446,7 @@ CONFIG_BLK_DEV=y
65817 CONFIG_BLK_DEV_LOOP=y
65818 # CONFIG_BLK_DEV_CRYPTOLOOP is not set
65819 # CONFIG_BLK_DEV_NBD is not set
65820 +# CONFIG_BLK_DEV_UB is not set
65821 CONFIG_BLK_DEV_RAM=y
65822 CONFIG_BLK_DEV_RAM_COUNT=16
65823 CONFIG_BLK_DEV_RAM_SIZE=32768
65824 @@ -469,6 +554,15 @@ CONFIG_NETDEV_10000=y
65825 #
65826 # CONFIG_WLAN_PRE80211 is not set
65827 # CONFIG_WLAN_80211 is not set
65828 +
65829 +#
65830 +# USB Network Adapters
65831 +#
65832 +# CONFIG_USB_CATC is not set
65833 +# CONFIG_USB_KAWETH is not set
65834 +# CONFIG_USB_PEGASUS is not set
65835 +# CONFIG_USB_RTL8150 is not set
65836 +# CONFIG_USB_USBNET is not set
65837 # CONFIG_WAN is not set
65838 # CONFIG_PPP is not set
65839 # CONFIG_SLIP is not set
65840 @@ -563,6 +657,7 @@ CONFIG_I2C_MPC=y
65841 # CONFIG_I2C_SIMTEC is not set
65842 # CONFIG_I2C_TAOS_EVM is not set
65843 # CONFIG_I2C_STUB is not set
65844 +# CONFIG_I2C_TINY_USB is not set
65845
65846 #
65847 # Miscellaneous I2C Chip support
65848 @@ -648,6 +743,11 @@ CONFIG_WATCHDOG=y
65849 CONFIG_83xx_WDT=y
65850
65851 #
65852 +# USB-based Watchdog Cards
65853 +#
65854 +# CONFIG_USBPCWATCHDOG is not set
65855 +
65856 +#
65857 # Sonics Silicon Backplane
65858 #
65859 CONFIG_SSB_POSSIBLE=y
65860 @@ -664,6 +764,7 @@ CONFIG_SSB_POSSIBLE=y
65861 # CONFIG_VIDEO_DEV is not set
65862 # CONFIG_DVB_CORE is not set
65863 CONFIG_DAB=y
65864 +# CONFIG_USB_DABUSB is not set
65865
65866 #
65867 # Graphics support
65868 @@ -686,6 +787,14 @@ CONFIG_HID_SUPPORT=y
65869 CONFIG_HID=y
65870 # CONFIG_HID_DEBUG is not set
65871 # CONFIG_HIDRAW is not set
65872 +
65873 +#
65874 +# USB Input Devices
65875 +#
65876 +CONFIG_USB_HID=y
65877 +# CONFIG_USB_HIDINPUT_POWERBOOK is not set
65878 +# CONFIG_HID_FF is not set
65879 +# CONFIG_USB_HIDDEV is not set
65880 CONFIG_USB_SUPPORT=y
65881 CONFIG_USB_ARCH_HAS_HCD=y
65882 # CONFIG_USB_ARCH_HAS_OHCI is not set
65883 @@ -715,8 +824,55 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y
65884 # CONFIG_USB_R8A66597_HCD is not set
65885
65886 #
65887 +# USB Device Class drivers
65888 +#
65889 +# CONFIG_USB_ACM is not set
65890 +# CONFIG_USB_PRINTER is not set
65891 +
65892 +#
65893 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
65894 #
65895 +
65896 +#
65897 +# may also be needed; see USB_STORAGE Help for more information
65898 +#
65899 +# CONFIG_USB_STORAGE is not set
65900 +# CONFIG_USB_LIBUSUAL is not set
65901 +
65902 +#
65903 +# USB Imaging devices
65904 +#
65905 +# CONFIG_USB_MDC800 is not set
65906 +# CONFIG_USB_MICROTEK is not set
65907 +CONFIG_USB_MON=y
65908 +
65909 +#
65910 +# USB port drivers
65911 +#
65912 +# CONFIG_USB_SERIAL is not set
65913 +
65914 +#
65915 +# USB Miscellaneous drivers
65916 +#
65917 +# CONFIG_USB_EMI62 is not set
65918 +# CONFIG_USB_EMI26 is not set
65919 +# CONFIG_USB_ADUTUX is not set
65920 +# CONFIG_USB_AUERSWALD is not set
65921 +# CONFIG_USB_RIO500 is not set
65922 +# CONFIG_USB_LEGOTOWER is not set
65923 +# CONFIG_USB_LCD is not set
65924 +# CONFIG_USB_BERRY_CHARGE is not set
65925 +# CONFIG_USB_LED is not set
65926 +# CONFIG_USB_CYPRESS_CY7C63 is not set
65927 +# CONFIG_USB_CYTHERM is not set
65928 +# CONFIG_USB_PHIDGET is not set
65929 +# CONFIG_USB_IDMOUSE is not set
65930 +# CONFIG_USB_FTDI_ELAN is not set
65931 +# CONFIG_USB_APPLEDISPLAY is not set
65932 +# CONFIG_USB_SISUSBVGA is not set
65933 +# CONFIG_USB_LD is not set
65934 +# CONFIG_USB_TRANCEVIBRATOR is not set
65935 +# CONFIG_USB_IOWARRIOR is not set
65936 # CONFIG_USB_GADGET is not set
65937 # CONFIG_MMC is not set
65938 # CONFIG_MEMSTICK is not set
65939 @@ -792,6 +948,7 @@ CONFIG_TMPFS=y
65940 # CONFIG_BEFS_FS is not set
65941 # CONFIG_BFS_FS is not set
65942 # CONFIG_EFS_FS is not set
65943 +# CONFIG_JFFS2_FS is not set
65944 # CONFIG_CRAMFS is not set
65945 # CONFIG_VXFS_FS is not set
65946 # CONFIG_MINIX_FS is not set
65947 @@ -862,6 +1019,7 @@ CONFIG_PLIST=y
65948 CONFIG_HAS_IOMEM=y
65949 CONFIG_HAS_IOPORT=y
65950 CONFIG_HAS_DMA=y
65951 +CONFIG_HAVE_LMB=y
65952
65953 #
65954 # Kernel hacking
65955 Index: linux-2.6.25.4/arch/powerpc/configs/mpc8540_ads_defconfig
65956 ===================================================================
65957 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc8540_ads_defconfig
65958 +++ /dev/null
65959 @@ -1,796 +0,0 @@
65960 -#
65961 -# Automatically generated make config: don't edit
65962 -# Linux kernel version: 2.6.25-rc6
65963 -# Mon Mar 24 08:48:25 2008
65964 -#
65965 -# CONFIG_PPC64 is not set
65966 -
65967 -#
65968 -# Processor support
65969 -#
65970 -# CONFIG_6xx is not set
65971 -CONFIG_PPC_85xx=y
65972 -# CONFIG_PPC_8xx is not set
65973 -# CONFIG_40x is not set
65974 -# CONFIG_44x is not set
65975 -# CONFIG_E200 is not set
65976 -CONFIG_E500=y
65977 -CONFIG_BOOKE=y
65978 -CONFIG_FSL_BOOKE=y
65979 -CONFIG_FSL_EMB_PERFMON=y
65980 -# CONFIG_PHYS_64BIT is not set
65981 -CONFIG_SPE=y
65982 -# CONFIG_PPC_MM_SLICES is not set
65983 -CONFIG_PPC32=y
65984 -CONFIG_WORD_SIZE=32
65985 -CONFIG_PPC_MERGE=y
65986 -CONFIG_MMU=y
65987 -CONFIG_GENERIC_CMOS_UPDATE=y
65988 -CONFIG_GENERIC_TIME=y
65989 -CONFIG_GENERIC_TIME_VSYSCALL=y
65990 -CONFIG_GENERIC_CLOCKEVENTS=y
65991 -CONFIG_GENERIC_HARDIRQS=y
65992 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
65993 -CONFIG_IRQ_PER_CPU=y
65994 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
65995 -CONFIG_ARCH_HAS_ILOG2_U32=y
65996 -CONFIG_GENERIC_HWEIGHT=y
65997 -CONFIG_GENERIC_CALIBRATE_DELAY=y
65998 -CONFIG_GENERIC_FIND_NEXT_BIT=y
65999 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
66000 -CONFIG_PPC=y
66001 -CONFIG_EARLY_PRINTK=y
66002 -CONFIG_GENERIC_NVRAM=y
66003 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
66004 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
66005 -CONFIG_PPC_OF=y
66006 -CONFIG_OF=y
66007 -CONFIG_PPC_UDBG_16550=y
66008 -# CONFIG_GENERIC_TBSYNC is not set
66009 -CONFIG_AUDIT_ARCH=y
66010 -CONFIG_GENERIC_BUG=y
66011 -CONFIG_DEFAULT_UIMAGE=y
66012 -# CONFIG_PPC_DCR_NATIVE is not set
66013 -# CONFIG_PPC_DCR_MMIO is not set
66014 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
66015 -
66016 -#
66017 -# General setup
66018 -#
66019 -CONFIG_EXPERIMENTAL=y
66020 -CONFIG_BROKEN_ON_SMP=y
66021 -CONFIG_INIT_ENV_ARG_LIMIT=32
66022 -CONFIG_LOCALVERSION=""
66023 -CONFIG_LOCALVERSION_AUTO=y
66024 -CONFIG_SWAP=y
66025 -CONFIG_SYSVIPC=y
66026 -CONFIG_SYSVIPC_SYSCTL=y
66027 -# CONFIG_POSIX_MQUEUE is not set
66028 -# CONFIG_BSD_PROCESS_ACCT is not set
66029 -# CONFIG_TASKSTATS is not set
66030 -# CONFIG_AUDIT is not set
66031 -# CONFIG_IKCONFIG is not set
66032 -CONFIG_LOG_BUF_SHIFT=14
66033 -# CONFIG_CGROUPS is not set
66034 -CONFIG_GROUP_SCHED=y
66035 -# CONFIG_FAIR_GROUP_SCHED is not set
66036 -# CONFIG_RT_GROUP_SCHED is not set
66037 -CONFIG_USER_SCHED=y
66038 -# CONFIG_CGROUP_SCHED is not set
66039 -CONFIG_SYSFS_DEPRECATED=y
66040 -CONFIG_SYSFS_DEPRECATED_V2=y
66041 -# CONFIG_RELAY is not set
66042 -# CONFIG_NAMESPACES is not set
66043 -CONFIG_BLK_DEV_INITRD=y
66044 -CONFIG_INITRAMFS_SOURCE=""
66045 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
66046 -CONFIG_SYSCTL=y
66047 -CONFIG_EMBEDDED=y
66048 -CONFIG_SYSCTL_SYSCALL=y
66049 -CONFIG_KALLSYMS=y
66050 -# CONFIG_KALLSYMS_ALL is not set
66051 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
66052 -CONFIG_HOTPLUG=y
66053 -CONFIG_PRINTK=y
66054 -CONFIG_BUG=y
66055 -CONFIG_ELF_CORE=y
66056 -CONFIG_COMPAT_BRK=y
66057 -CONFIG_BASE_FULL=y
66058 -CONFIG_FUTEX=y
66059 -CONFIG_ANON_INODES=y
66060 -CONFIG_EPOLL=y
66061 -CONFIG_SIGNALFD=y
66062 -CONFIG_TIMERFD=y
66063 -CONFIG_EVENTFD=y
66064 -CONFIG_SHMEM=y
66065 -CONFIG_VM_EVENT_COUNTERS=y
66066 -CONFIG_SLUB_DEBUG=y
66067 -# CONFIG_SLAB is not set
66068 -CONFIG_SLUB=y
66069 -# CONFIG_SLOB is not set
66070 -# CONFIG_PROFILING is not set
66071 -# CONFIG_MARKERS is not set
66072 -CONFIG_HAVE_OPROFILE=y
66073 -CONFIG_HAVE_KPROBES=y
66074 -CONFIG_HAVE_KRETPROBES=y
66075 -CONFIG_PROC_PAGE_MONITOR=y
66076 -CONFIG_SLABINFO=y
66077 -CONFIG_RT_MUTEXES=y
66078 -# CONFIG_TINY_SHMEM is not set
66079 -CONFIG_BASE_SMALL=0
66080 -# CONFIG_MODULES is not set
66081 -CONFIG_BLOCK=y
66082 -# CONFIG_LBD is not set
66083 -# CONFIG_BLK_DEV_IO_TRACE is not set
66084 -# CONFIG_LSF is not set
66085 -# CONFIG_BLK_DEV_BSG is not set
66086 -
66087 -#
66088 -# IO Schedulers
66089 -#
66090 -CONFIG_IOSCHED_NOOP=y
66091 -CONFIG_IOSCHED_AS=y
66092 -CONFIG_IOSCHED_DEADLINE=y
66093 -CONFIG_IOSCHED_CFQ=y
66094 -CONFIG_DEFAULT_AS=y
66095 -# CONFIG_DEFAULT_DEADLINE is not set
66096 -# CONFIG_DEFAULT_CFQ is not set
66097 -# CONFIG_DEFAULT_NOOP is not set
66098 -CONFIG_DEFAULT_IOSCHED="anticipatory"
66099 -CONFIG_CLASSIC_RCU=y
66100 -
66101 -#
66102 -# Platform support
66103 -#
66104 -# CONFIG_PPC_MPC512x is not set
66105 -# CONFIG_PPC_MPC5121 is not set
66106 -# CONFIG_PPC_CELL is not set
66107 -# CONFIG_PPC_CELL_NATIVE is not set
66108 -# CONFIG_PQ2ADS is not set
66109 -CONFIG_MPC85xx=y
66110 -CONFIG_MPC8540_ADS=y
66111 -# CONFIG_MPC8560_ADS is not set
66112 -# CONFIG_MPC85xx_CDS is not set
66113 -# CONFIG_MPC85xx_MDS is not set
66114 -# CONFIG_MPC85xx_DS is not set
66115 -# CONFIG_STX_GP3 is not set
66116 -# CONFIG_TQM8540 is not set
66117 -# CONFIG_TQM8541 is not set
66118 -# CONFIG_TQM8555 is not set
66119 -# CONFIG_TQM8560 is not set
66120 -# CONFIG_SBC8548 is not set
66121 -# CONFIG_SBC8560 is not set
66122 -# CONFIG_IPIC is not set
66123 -CONFIG_MPIC=y
66124 -# CONFIG_MPIC_WEIRD is not set
66125 -# CONFIG_PPC_I8259 is not set
66126 -# CONFIG_PPC_RTAS is not set
66127 -# CONFIG_MMIO_NVRAM is not set
66128 -# CONFIG_PPC_MPC106 is not set
66129 -# CONFIG_PPC_970_NAP is not set
66130 -# CONFIG_PPC_INDIRECT_IO is not set
66131 -# CONFIG_GENERIC_IOMAP is not set
66132 -# CONFIG_CPU_FREQ is not set
66133 -# CONFIG_CPM2 is not set
66134 -# CONFIG_FSL_ULI1575 is not set
66135 -
66136 -#
66137 -# Kernel options
66138 -#
66139 -# CONFIG_HIGHMEM is not set
66140 -CONFIG_TICK_ONESHOT=y
66141 -CONFIG_NO_HZ=y
66142 -CONFIG_HIGH_RES_TIMERS=y
66143 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
66144 -# CONFIG_HZ_100 is not set
66145 -CONFIG_HZ_250=y
66146 -# CONFIG_HZ_300 is not set
66147 -# CONFIG_HZ_1000 is not set
66148 -CONFIG_HZ=250
66149 -# CONFIG_SCHED_HRTICK is not set
66150 -CONFIG_PREEMPT_NONE=y
66151 -# CONFIG_PREEMPT_VOLUNTARY is not set
66152 -# CONFIG_PREEMPT is not set
66153 -CONFIG_BINFMT_ELF=y
66154 -CONFIG_BINFMT_MISC=y
66155 -CONFIG_MATH_EMULATION=y
66156 -# CONFIG_IOMMU_HELPER is not set
66157 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
66158 -CONFIG_ARCH_HAS_WALK_MEMORY=y
66159 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
66160 -CONFIG_ARCH_FLATMEM_ENABLE=y
66161 -CONFIG_ARCH_POPULATES_NODE_MAP=y
66162 -CONFIG_SELECT_MEMORY_MODEL=y
66163 -CONFIG_FLATMEM_MANUAL=y
66164 -# CONFIG_DISCONTIGMEM_MANUAL is not set
66165 -# CONFIG_SPARSEMEM_MANUAL is not set
66166 -CONFIG_FLATMEM=y
66167 -CONFIG_FLAT_NODE_MEM_MAP=y
66168 -# CONFIG_SPARSEMEM_STATIC is not set
66169 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
66170 -CONFIG_SPLIT_PTLOCK_CPUS=4
66171 -# CONFIG_RESOURCES_64BIT is not set
66172 -CONFIG_ZONE_DMA_FLAG=1
66173 -CONFIG_BOUNCE=y
66174 -CONFIG_VIRT_TO_BUS=y
66175 -CONFIG_PROC_DEVICETREE=y
66176 -# CONFIG_CMDLINE_BOOL is not set
66177 -# CONFIG_PM is not set
66178 -# CONFIG_SECCOMP is not set
66179 -CONFIG_ISA_DMA_API=y
66180 -
66181 -#
66182 -# Bus options
66183 -#
66184 -CONFIG_ZONE_DMA=y
66185 -CONFIG_FSL_SOC=y
66186 -# CONFIG_PCI is not set
66187 -# CONFIG_PCI_DOMAINS is not set
66188 -# CONFIG_PCI_SYSCALL is not set
66189 -# CONFIG_ARCH_SUPPORTS_MSI is not set
66190 -# CONFIG_PCCARD is not set
66191 -
66192 -#
66193 -# Advanced setup
66194 -#
66195 -# CONFIG_ADVANCED_OPTIONS is not set
66196 -
66197 -#
66198 -# Default settings for advanced configuration options are used
66199 -#
66200 -CONFIG_HIGHMEM_START=0xfe000000
66201 -CONFIG_LOWMEM_SIZE=0x30000000
66202 -CONFIG_KERNEL_START=0xc0000000
66203 -CONFIG_TASK_SIZE=0xc0000000
66204 -CONFIG_BOOT_LOAD=0x00800000
66205 -
66206 -#
66207 -# Networking
66208 -#
66209 -CONFIG_NET=y
66210 -
66211 -#
66212 -# Networking options
66213 -#
66214 -CONFIG_PACKET=y
66215 -# CONFIG_PACKET_MMAP is not set
66216 -CONFIG_UNIX=y
66217 -CONFIG_XFRM=y
66218 -CONFIG_XFRM_USER=y
66219 -# CONFIG_XFRM_SUB_POLICY is not set
66220 -# CONFIG_XFRM_MIGRATE is not set
66221 -# CONFIG_XFRM_STATISTICS is not set
66222 -# CONFIG_NET_KEY is not set
66223 -CONFIG_INET=y
66224 -CONFIG_IP_MULTICAST=y
66225 -# CONFIG_IP_ADVANCED_ROUTER is not set
66226 -CONFIG_IP_FIB_HASH=y
66227 -CONFIG_IP_PNP=y
66228 -CONFIG_IP_PNP_DHCP=y
66229 -CONFIG_IP_PNP_BOOTP=y
66230 -# CONFIG_IP_PNP_RARP is not set
66231 -# CONFIG_NET_IPIP is not set
66232 -# CONFIG_NET_IPGRE is not set
66233 -# CONFIG_IP_MROUTE is not set
66234 -# CONFIG_ARPD is not set
66235 -CONFIG_SYN_COOKIES=y
66236 -# CONFIG_INET_AH is not set
66237 -# CONFIG_INET_ESP is not set
66238 -# CONFIG_INET_IPCOMP is not set
66239 -# CONFIG_INET_XFRM_TUNNEL is not set
66240 -# CONFIG_INET_TUNNEL is not set
66241 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
66242 -CONFIG_INET_XFRM_MODE_TUNNEL=y
66243 -CONFIG_INET_XFRM_MODE_BEET=y
66244 -# CONFIG_INET_LRO is not set
66245 -CONFIG_INET_DIAG=y
66246 -CONFIG_INET_TCP_DIAG=y
66247 -# CONFIG_TCP_CONG_ADVANCED is not set
66248 -CONFIG_TCP_CONG_CUBIC=y
66249 -CONFIG_DEFAULT_TCP_CONG="cubic"
66250 -# CONFIG_TCP_MD5SIG is not set
66251 -# CONFIG_IPV6 is not set
66252 -# CONFIG_INET6_XFRM_TUNNEL is not set
66253 -# CONFIG_INET6_TUNNEL is not set
66254 -# CONFIG_NETWORK_SECMARK is not set
66255 -# CONFIG_NETFILTER is not set
66256 -# CONFIG_IP_DCCP is not set
66257 -# CONFIG_IP_SCTP is not set
66258 -# CONFIG_TIPC is not set
66259 -# CONFIG_ATM is not set
66260 -# CONFIG_BRIDGE is not set
66261 -# CONFIG_VLAN_8021Q is not set
66262 -# CONFIG_DECNET is not set
66263 -# CONFIG_LLC2 is not set
66264 -# CONFIG_IPX is not set
66265 -# CONFIG_ATALK is not set
66266 -# CONFIG_X25 is not set
66267 -# CONFIG_LAPB is not set
66268 -# CONFIG_ECONET is not set
66269 -# CONFIG_WAN_ROUTER is not set
66270 -# CONFIG_NET_SCHED is not set
66271 -
66272 -#
66273 -# Network testing
66274 -#
66275 -# CONFIG_NET_PKTGEN is not set
66276 -# CONFIG_HAMRADIO is not set
66277 -# CONFIG_CAN is not set
66278 -# CONFIG_IRDA is not set
66279 -# CONFIG_BT is not set
66280 -# CONFIG_AF_RXRPC is not set
66281 -
66282 -#
66283 -# Wireless
66284 -#
66285 -# CONFIG_CFG80211 is not set
66286 -# CONFIG_WIRELESS_EXT is not set
66287 -# CONFIG_MAC80211 is not set
66288 -# CONFIG_IEEE80211 is not set
66289 -# CONFIG_RFKILL is not set
66290 -# CONFIG_NET_9P is not set
66291 -
66292 -#
66293 -# Device Drivers
66294 -#
66295 -
66296 -#
66297 -# Generic Driver Options
66298 -#
66299 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
66300 -CONFIG_STANDALONE=y
66301 -CONFIG_PREVENT_FIRMWARE_BUILD=y
66302 -# CONFIG_FW_LOADER is not set
66303 -# CONFIG_DEBUG_DRIVER is not set
66304 -# CONFIG_DEBUG_DEVRES is not set
66305 -# CONFIG_SYS_HYPERVISOR is not set
66306 -# CONFIG_CONNECTOR is not set
66307 -# CONFIG_MTD is not set
66308 -CONFIG_OF_DEVICE=y
66309 -# CONFIG_PARPORT is not set
66310 -CONFIG_BLK_DEV=y
66311 -# CONFIG_BLK_DEV_FD is not set
66312 -# CONFIG_BLK_DEV_COW_COMMON is not set
66313 -CONFIG_BLK_DEV_LOOP=y
66314 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
66315 -# CONFIG_BLK_DEV_NBD is not set
66316 -CONFIG_BLK_DEV_RAM=y
66317 -CONFIG_BLK_DEV_RAM_COUNT=16
66318 -CONFIG_BLK_DEV_RAM_SIZE=32768
66319 -# CONFIG_BLK_DEV_XIP is not set
66320 -# CONFIG_CDROM_PKTCDVD is not set
66321 -# CONFIG_ATA_OVER_ETH is not set
66322 -CONFIG_MISC_DEVICES=y
66323 -# CONFIG_EEPROM_93CX6 is not set
66324 -# CONFIG_ENCLOSURE_SERVICES is not set
66325 -CONFIG_HAVE_IDE=y
66326 -# CONFIG_IDE is not set
66327 -
66328 -#
66329 -# SCSI device support
66330 -#
66331 -# CONFIG_RAID_ATTRS is not set
66332 -# CONFIG_SCSI is not set
66333 -# CONFIG_SCSI_DMA is not set
66334 -# CONFIG_SCSI_NETLINK is not set
66335 -# CONFIG_ATA is not set
66336 -# CONFIG_MD is not set
66337 -# CONFIG_MACINTOSH_DRIVERS is not set
66338 -CONFIG_NETDEVICES=y
66339 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
66340 -# CONFIG_DUMMY is not set
66341 -# CONFIG_BONDING is not set
66342 -# CONFIG_MACVLAN is not set
66343 -# CONFIG_EQUALIZER is not set
66344 -# CONFIG_TUN is not set
66345 -# CONFIG_VETH is not set
66346 -CONFIG_PHYLIB=y
66347 -
66348 -#
66349 -# MII PHY device drivers
66350 -#
66351 -# CONFIG_MARVELL_PHY is not set
66352 -# CONFIG_DAVICOM_PHY is not set
66353 -# CONFIG_QSEMI_PHY is not set
66354 -# CONFIG_LXT_PHY is not set
66355 -# CONFIG_CICADA_PHY is not set
66356 -# CONFIG_VITESSE_PHY is not set
66357 -# CONFIG_SMSC_PHY is not set
66358 -# CONFIG_BROADCOM_PHY is not set
66359 -# CONFIG_ICPLUS_PHY is not set
66360 -# CONFIG_REALTEK_PHY is not set
66361 -# CONFIG_FIXED_PHY is not set
66362 -# CONFIG_MDIO_BITBANG is not set
66363 -CONFIG_NET_ETHERNET=y
66364 -CONFIG_MII=y
66365 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
66366 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
66367 -# CONFIG_IBM_NEW_EMAC_TAH is not set
66368 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
66369 -# CONFIG_B44 is not set
66370 -CONFIG_NETDEV_1000=y
66371 -# CONFIG_E1000E_ENABLED is not set
66372 -CONFIG_GIANFAR=y
66373 -CONFIG_GFAR_NAPI=y
66374 -CONFIG_NETDEV_10000=y
66375 -
66376 -#
66377 -# Wireless LAN
66378 -#
66379 -# CONFIG_WLAN_PRE80211 is not set
66380 -# CONFIG_WLAN_80211 is not set
66381 -# CONFIG_WAN is not set
66382 -# CONFIG_PPP is not set
66383 -# CONFIG_SLIP is not set
66384 -# CONFIG_NETCONSOLE is not set
66385 -# CONFIG_NETPOLL is not set
66386 -# CONFIG_NET_POLL_CONTROLLER is not set
66387 -# CONFIG_ISDN is not set
66388 -# CONFIG_PHONE is not set
66389 -
66390 -#
66391 -# Input device support
66392 -#
66393 -CONFIG_INPUT=y
66394 -# CONFIG_INPUT_FF_MEMLESS is not set
66395 -# CONFIG_INPUT_POLLDEV is not set
66396 -
66397 -#
66398 -# Userland interfaces
66399 -#
66400 -# CONFIG_INPUT_MOUSEDEV is not set
66401 -# CONFIG_INPUT_JOYDEV is not set
66402 -# CONFIG_INPUT_EVDEV is not set
66403 -# CONFIG_INPUT_EVBUG is not set
66404 -
66405 -#
66406 -# Input Device Drivers
66407 -#
66408 -# CONFIG_INPUT_KEYBOARD is not set
66409 -# CONFIG_INPUT_MOUSE is not set
66410 -# CONFIG_INPUT_JOYSTICK is not set
66411 -# CONFIG_INPUT_TABLET is not set
66412 -# CONFIG_INPUT_TOUCHSCREEN is not set
66413 -# CONFIG_INPUT_MISC is not set
66414 -
66415 -#
66416 -# Hardware I/O ports
66417 -#
66418 -# CONFIG_SERIO is not set
66419 -# CONFIG_GAMEPORT is not set
66420 -
66421 -#
66422 -# Character devices
66423 -#
66424 -# CONFIG_VT is not set
66425 -# CONFIG_SERIAL_NONSTANDARD is not set
66426 -
66427 -#
66428 -# Serial drivers
66429 -#
66430 -CONFIG_SERIAL_8250=y
66431 -CONFIG_SERIAL_8250_CONSOLE=y
66432 -CONFIG_SERIAL_8250_NR_UARTS=4
66433 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
66434 -# CONFIG_SERIAL_8250_EXTENDED is not set
66435 -CONFIG_SERIAL_8250_SHARE_IRQ=y
66436 -
66437 -#
66438 -# Non-8250 serial port support
66439 -#
66440 -# CONFIG_SERIAL_UARTLITE is not set
66441 -CONFIG_SERIAL_CORE=y
66442 -CONFIG_SERIAL_CORE_CONSOLE=y
66443 -# CONFIG_SERIAL_OF_PLATFORM is not set
66444 -CONFIG_UNIX98_PTYS=y
66445 -CONFIG_LEGACY_PTYS=y
66446 -CONFIG_LEGACY_PTY_COUNT=256
66447 -# CONFIG_IPMI_HANDLER is not set
66448 -# CONFIG_HW_RANDOM is not set
66449 -# CONFIG_NVRAM is not set
66450 -CONFIG_GEN_RTC=y
66451 -# CONFIG_GEN_RTC_X is not set
66452 -# CONFIG_R3964 is not set
66453 -# CONFIG_RAW_DRIVER is not set
66454 -# CONFIG_TCG_TPM is not set
66455 -# CONFIG_I2C is not set
66456 -
66457 -#
66458 -# SPI support
66459 -#
66460 -# CONFIG_SPI is not set
66461 -# CONFIG_SPI_MASTER is not set
66462 -# CONFIG_W1 is not set
66463 -# CONFIG_POWER_SUPPLY is not set
66464 -CONFIG_HWMON=y
66465 -# CONFIG_HWMON_VID is not set
66466 -# CONFIG_SENSORS_F71805F is not set
66467 -# CONFIG_SENSORS_F71882FG is not set
66468 -# CONFIG_SENSORS_IT87 is not set
66469 -# CONFIG_SENSORS_PC87360 is not set
66470 -# CONFIG_SENSORS_PC87427 is not set
66471 -# CONFIG_SENSORS_SMSC47M1 is not set
66472 -# CONFIG_SENSORS_SMSC47B397 is not set
66473 -# CONFIG_SENSORS_VT1211 is not set
66474 -# CONFIG_SENSORS_W83627HF is not set
66475 -# CONFIG_SENSORS_W83627EHF is not set
66476 -# CONFIG_HWMON_DEBUG_CHIP is not set
66477 -# CONFIG_THERMAL is not set
66478 -# CONFIG_WATCHDOG is not set
66479 -
66480 -#
66481 -# Sonics Silicon Backplane
66482 -#
66483 -CONFIG_SSB_POSSIBLE=y
66484 -# CONFIG_SSB is not set
66485 -
66486 -#
66487 -# Multifunction device drivers
66488 -#
66489 -# CONFIG_MFD_SM501 is not set
66490 -
66491 -#
66492 -# Multimedia devices
66493 -#
66494 -# CONFIG_VIDEO_DEV is not set
66495 -# CONFIG_DVB_CORE is not set
66496 -CONFIG_DAB=y
66497 -
66498 -#
66499 -# Graphics support
66500 -#
66501 -# CONFIG_VGASTATE is not set
66502 -CONFIG_VIDEO_OUTPUT_CONTROL=y
66503 -# CONFIG_FB is not set
66504 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
66505 -
66506 -#
66507 -# Display device support
66508 -#
66509 -# CONFIG_DISPLAY_SUPPORT is not set
66510 -
66511 -#
66512 -# Sound
66513 -#
66514 -# CONFIG_SOUND is not set
66515 -CONFIG_HID_SUPPORT=y
66516 -CONFIG_HID=y
66517 -# CONFIG_HID_DEBUG is not set
66518 -# CONFIG_HIDRAW is not set
66519 -CONFIG_USB_SUPPORT=y
66520 -# CONFIG_USB_ARCH_HAS_HCD is not set
66521 -# CONFIG_USB_ARCH_HAS_OHCI is not set
66522 -# CONFIG_USB_ARCH_HAS_EHCI is not set
66523 -
66524 -#
66525 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
66526 -#
66527 -# CONFIG_USB_GADGET is not set
66528 -# CONFIG_MMC is not set
66529 -# CONFIG_MEMSTICK is not set
66530 -# CONFIG_NEW_LEDS is not set
66531 -# CONFIG_EDAC is not set
66532 -# CONFIG_RTC_CLASS is not set
66533 -# CONFIG_DMADEVICES is not set
66534 -
66535 -#
66536 -# Userspace I/O
66537 -#
66538 -# CONFIG_UIO is not set
66539 -
66540 -#
66541 -# File systems
66542 -#
66543 -CONFIG_EXT2_FS=y
66544 -# CONFIG_EXT2_FS_XATTR is not set
66545 -# CONFIG_EXT2_FS_XIP is not set
66546 -CONFIG_EXT3_FS=y
66547 -CONFIG_EXT3_FS_XATTR=y
66548 -# CONFIG_EXT3_FS_POSIX_ACL is not set
66549 -# CONFIG_EXT3_FS_SECURITY is not set
66550 -# CONFIG_EXT4DEV_FS is not set
66551 -CONFIG_JBD=y
66552 -CONFIG_FS_MBCACHE=y
66553 -# CONFIG_REISERFS_FS is not set
66554 -# CONFIG_JFS_FS is not set
66555 -# CONFIG_FS_POSIX_ACL is not set
66556 -# CONFIG_XFS_FS is not set
66557 -# CONFIG_GFS2_FS is not set
66558 -# CONFIG_OCFS2_FS is not set
66559 -CONFIG_DNOTIFY=y
66560 -CONFIG_INOTIFY=y
66561 -CONFIG_INOTIFY_USER=y
66562 -# CONFIG_QUOTA is not set
66563 -# CONFIG_AUTOFS_FS is not set
66564 -# CONFIG_AUTOFS4_FS is not set
66565 -# CONFIG_FUSE_FS is not set
66566 -
66567 -#
66568 -# CD-ROM/DVD Filesystems
66569 -#
66570 -# CONFIG_ISO9660_FS is not set
66571 -# CONFIG_UDF_FS is not set
66572 -
66573 -#
66574 -# DOS/FAT/NT Filesystems
66575 -#
66576 -# CONFIG_MSDOS_FS is not set
66577 -# CONFIG_VFAT_FS is not set
66578 -# CONFIG_NTFS_FS is not set
66579 -
66580 -#
66581 -# Pseudo filesystems
66582 -#
66583 -CONFIG_PROC_FS=y
66584 -CONFIG_PROC_KCORE=y
66585 -CONFIG_PROC_SYSCTL=y
66586 -CONFIG_SYSFS=y
66587 -CONFIG_TMPFS=y
66588 -# CONFIG_TMPFS_POSIX_ACL is not set
66589 -# CONFIG_HUGETLB_PAGE is not set
66590 -# CONFIG_CONFIGFS_FS is not set
66591 -
66592 -#
66593 -# Miscellaneous filesystems
66594 -#
66595 -# CONFIG_ADFS_FS is not set
66596 -# CONFIG_AFFS_FS is not set
66597 -# CONFIG_HFS_FS is not set
66598 -# CONFIG_HFSPLUS_FS is not set
66599 -# CONFIG_BEFS_FS is not set
66600 -# CONFIG_BFS_FS is not set
66601 -# CONFIG_EFS_FS is not set
66602 -# CONFIG_CRAMFS is not set
66603 -# CONFIG_VXFS_FS is not set
66604 -# CONFIG_MINIX_FS is not set
66605 -# CONFIG_HPFS_FS is not set
66606 -# CONFIG_QNX4FS_FS is not set
66607 -# CONFIG_ROMFS_FS is not set
66608 -# CONFIG_SYSV_FS is not set
66609 -# CONFIG_UFS_FS is not set
66610 -CONFIG_NETWORK_FILESYSTEMS=y
66611 -CONFIG_NFS_FS=y
66612 -# CONFIG_NFS_V3 is not set
66613 -# CONFIG_NFS_V4 is not set
66614 -# CONFIG_NFS_DIRECTIO is not set
66615 -# CONFIG_NFSD is not set
66616 -CONFIG_ROOT_NFS=y
66617 -CONFIG_LOCKD=y
66618 -CONFIG_NFS_COMMON=y
66619 -CONFIG_SUNRPC=y
66620 -# CONFIG_SUNRPC_BIND34 is not set
66621 -# CONFIG_RPCSEC_GSS_KRB5 is not set
66622 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
66623 -# CONFIG_SMB_FS is not set
66624 -# CONFIG_CIFS is not set
66625 -# CONFIG_NCP_FS is not set
66626 -# CONFIG_CODA_FS is not set
66627 -# CONFIG_AFS_FS is not set
66628 -
66629 -#
66630 -# Partition Types
66631 -#
66632 -CONFIG_PARTITION_ADVANCED=y
66633 -# CONFIG_ACORN_PARTITION is not set
66634 -# CONFIG_OSF_PARTITION is not set
66635 -# CONFIG_AMIGA_PARTITION is not set
66636 -# CONFIG_ATARI_PARTITION is not set
66637 -# CONFIG_MAC_PARTITION is not set
66638 -# CONFIG_MSDOS_PARTITION is not set
66639 -# CONFIG_LDM_PARTITION is not set
66640 -# CONFIG_SGI_PARTITION is not set
66641 -# CONFIG_ULTRIX_PARTITION is not set
66642 -# CONFIG_SUN_PARTITION is not set
66643 -# CONFIG_KARMA_PARTITION is not set
66644 -# CONFIG_EFI_PARTITION is not set
66645 -# CONFIG_SYSV68_PARTITION is not set
66646 -# CONFIG_NLS is not set
66647 -# CONFIG_DLM is not set
66648 -
66649 -#
66650 -# Library routines
66651 -#
66652 -CONFIG_BITREVERSE=y
66653 -# CONFIG_CRC_CCITT is not set
66654 -# CONFIG_CRC16 is not set
66655 -# CONFIG_CRC_ITU_T is not set
66656 -CONFIG_CRC32=y
66657 -# CONFIG_CRC7 is not set
66658 -# CONFIG_LIBCRC32C is not set
66659 -CONFIG_PLIST=y
66660 -CONFIG_HAS_IOMEM=y
66661 -CONFIG_HAS_IOPORT=y
66662 -CONFIG_HAS_DMA=y
66663 -
66664 -#
66665 -# Kernel hacking
66666 -#
66667 -# CONFIG_PRINTK_TIME is not set
66668 -CONFIG_ENABLE_WARN_DEPRECATED=y
66669 -CONFIG_ENABLE_MUST_CHECK=y
66670 -# CONFIG_MAGIC_SYSRQ is not set
66671 -# CONFIG_UNUSED_SYMBOLS is not set
66672 -# CONFIG_DEBUG_FS is not set
66673 -# CONFIG_HEADERS_CHECK is not set
66674 -CONFIG_DEBUG_KERNEL=y
66675 -# CONFIG_DEBUG_SHIRQ is not set
66676 -CONFIG_DETECT_SOFTLOCKUP=y
66677 -CONFIG_SCHED_DEBUG=y
66678 -# CONFIG_SCHEDSTATS is not set
66679 -# CONFIG_TIMER_STATS is not set
66680 -# CONFIG_SLUB_DEBUG_ON is not set
66681 -# CONFIG_SLUB_STATS is not set
66682 -# CONFIG_DEBUG_RT_MUTEXES is not set
66683 -# CONFIG_RT_MUTEX_TESTER is not set
66684 -# CONFIG_DEBUG_SPINLOCK is not set
66685 -CONFIG_DEBUG_MUTEXES=y
66686 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
66687 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
66688 -# CONFIG_DEBUG_KOBJECT is not set
66689 -# CONFIG_DEBUG_BUGVERBOSE is not set
66690 -# CONFIG_DEBUG_INFO is not set
66691 -# CONFIG_DEBUG_VM is not set
66692 -# CONFIG_DEBUG_LIST is not set
66693 -# CONFIG_DEBUG_SG is not set
66694 -# CONFIG_BOOT_PRINTK_DELAY is not set
66695 -# CONFIG_BACKTRACE_SELF_TEST is not set
66696 -# CONFIG_FAULT_INJECTION is not set
66697 -# CONFIG_SAMPLES is not set
66698 -# CONFIG_DEBUG_STACKOVERFLOW is not set
66699 -# CONFIG_DEBUG_STACK_USAGE is not set
66700 -# CONFIG_DEBUG_PAGEALLOC is not set
66701 -# CONFIG_DEBUGGER is not set
66702 -# CONFIG_BDI_SWITCH is not set
66703 -# CONFIG_PPC_EARLY_DEBUG is not set
66704 -
66705 -#
66706 -# Security options
66707 -#
66708 -# CONFIG_KEYS is not set
66709 -# CONFIG_SECURITY is not set
66710 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
66711 -CONFIG_CRYPTO=y
66712 -# CONFIG_CRYPTO_SEQIV is not set
66713 -# CONFIG_CRYPTO_MANAGER is not set
66714 -# CONFIG_CRYPTO_HMAC is not set
66715 -# CONFIG_CRYPTO_XCBC is not set
66716 -# CONFIG_CRYPTO_NULL is not set
66717 -# CONFIG_CRYPTO_MD4 is not set
66718 -# CONFIG_CRYPTO_MD5 is not set
66719 -# CONFIG_CRYPTO_SHA1 is not set
66720 -# CONFIG_CRYPTO_SHA256 is not set
66721 -# CONFIG_CRYPTO_SHA512 is not set
66722 -# CONFIG_CRYPTO_WP512 is not set
66723 -# CONFIG_CRYPTO_TGR192 is not set
66724 -# CONFIG_CRYPTO_GF128MUL is not set
66725 -# CONFIG_CRYPTO_ECB is not set
66726 -# CONFIG_CRYPTO_CBC is not set
66727 -# CONFIG_CRYPTO_PCBC is not set
66728 -# CONFIG_CRYPTO_LRW is not set
66729 -# CONFIG_CRYPTO_XTS is not set
66730 -# CONFIG_CRYPTO_CTR is not set
66731 -# CONFIG_CRYPTO_GCM is not set
66732 -# CONFIG_CRYPTO_CCM is not set
66733 -# CONFIG_CRYPTO_CRYPTD is not set
66734 -# CONFIG_CRYPTO_DES is not set
66735 -# CONFIG_CRYPTO_FCRYPT is not set
66736 -# CONFIG_CRYPTO_BLOWFISH is not set
66737 -# CONFIG_CRYPTO_TWOFISH is not set
66738 -# CONFIG_CRYPTO_SERPENT is not set
66739 -# CONFIG_CRYPTO_AES is not set
66740 -# CONFIG_CRYPTO_CAST5 is not set
66741 -# CONFIG_CRYPTO_CAST6 is not set
66742 -# CONFIG_CRYPTO_TEA is not set
66743 -# CONFIG_CRYPTO_ARC4 is not set
66744 -# CONFIG_CRYPTO_KHAZAD is not set
66745 -# CONFIG_CRYPTO_ANUBIS is not set
66746 -# CONFIG_CRYPTO_SEED is not set
66747 -# CONFIG_CRYPTO_SALSA20 is not set
66748 -# CONFIG_CRYPTO_DEFLATE is not set
66749 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
66750 -# CONFIG_CRYPTO_CRC32C is not set
66751 -# CONFIG_CRYPTO_CAMELLIA is not set
66752 -# CONFIG_CRYPTO_AUTHENC is not set
66753 -# CONFIG_CRYPTO_LZO is not set
66754 -CONFIG_CRYPTO_HW=y
66755 -# CONFIG_PPC_CLOCK is not set
66756 Index: linux-2.6.25.4/arch/powerpc/configs/mpc8544_ds_defconfig
66757 ===================================================================
66758 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc8544_ds_defconfig
66759 +++ /dev/null
66760 @@ -1,1549 +0,0 @@
66761 -#
66762 -# Automatically generated make config: don't edit
66763 -# Linux kernel version: 2.6.25-rc7
66764 -# Mon Mar 31 11:37:03 2008
66765 -#
66766 -# CONFIG_PPC64 is not set
66767 -
66768 -#
66769 -# Processor support
66770 -#
66771 -# CONFIG_6xx is not set
66772 -CONFIG_PPC_85xx=y
66773 -# CONFIG_PPC_8xx is not set
66774 -# CONFIG_40x is not set
66775 -# CONFIG_44x is not set
66776 -# CONFIG_E200 is not set
66777 -CONFIG_E500=y
66778 -CONFIG_BOOKE=y
66779 -CONFIG_FSL_BOOKE=y
66780 -CONFIG_FSL_EMB_PERFMON=y
66781 -# CONFIG_PHYS_64BIT is not set
66782 -CONFIG_SPE=y
66783 -# CONFIG_PPC_MM_SLICES is not set
66784 -CONFIG_PPC32=y
66785 -CONFIG_WORD_SIZE=32
66786 -CONFIG_PPC_MERGE=y
66787 -CONFIG_MMU=y
66788 -CONFIG_GENERIC_CMOS_UPDATE=y
66789 -CONFIG_GENERIC_TIME=y
66790 -CONFIG_GENERIC_TIME_VSYSCALL=y
66791 -CONFIG_GENERIC_CLOCKEVENTS=y
66792 -CONFIG_GENERIC_HARDIRQS=y
66793 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
66794 -CONFIG_IRQ_PER_CPU=y
66795 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
66796 -CONFIG_ARCH_HAS_ILOG2_U32=y
66797 -CONFIG_GENERIC_HWEIGHT=y
66798 -CONFIG_GENERIC_CALIBRATE_DELAY=y
66799 -CONFIG_GENERIC_FIND_NEXT_BIT=y
66800 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
66801 -CONFIG_PPC=y
66802 -CONFIG_EARLY_PRINTK=y
66803 -CONFIG_GENERIC_NVRAM=y
66804 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
66805 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
66806 -CONFIG_PPC_OF=y
66807 -CONFIG_OF=y
66808 -CONFIG_PPC_UDBG_16550=y
66809 -# CONFIG_GENERIC_TBSYNC is not set
66810 -CONFIG_AUDIT_ARCH=y
66811 -CONFIG_GENERIC_BUG=y
66812 -CONFIG_DEFAULT_UIMAGE=y
66813 -# CONFIG_PPC_DCR_NATIVE is not set
66814 -# CONFIG_PPC_DCR_MMIO is not set
66815 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
66816 -
66817 -#
66818 -# General setup
66819 -#
66820 -CONFIG_EXPERIMENTAL=y
66821 -CONFIG_BROKEN_ON_SMP=y
66822 -CONFIG_INIT_ENV_ARG_LIMIT=32
66823 -CONFIG_LOCALVERSION=""
66824 -CONFIG_LOCALVERSION_AUTO=y
66825 -CONFIG_SWAP=y
66826 -CONFIG_SYSVIPC=y
66827 -CONFIG_SYSVIPC_SYSCTL=y
66828 -CONFIG_POSIX_MQUEUE=y
66829 -CONFIG_BSD_PROCESS_ACCT=y
66830 -# CONFIG_BSD_PROCESS_ACCT_V3 is not set
66831 -# CONFIG_TASKSTATS is not set
66832 -CONFIG_AUDIT=y
66833 -# CONFIG_AUDITSYSCALL is not set
66834 -CONFIG_IKCONFIG=y
66835 -CONFIG_IKCONFIG_PROC=y
66836 -CONFIG_LOG_BUF_SHIFT=14
66837 -# CONFIG_CGROUPS is not set
66838 -CONFIG_GROUP_SCHED=y
66839 -# CONFIG_FAIR_GROUP_SCHED is not set
66840 -# CONFIG_RT_GROUP_SCHED is not set
66841 -CONFIG_USER_SCHED=y
66842 -# CONFIG_CGROUP_SCHED is not set
66843 -CONFIG_SYSFS_DEPRECATED=y
66844 -CONFIG_SYSFS_DEPRECATED_V2=y
66845 -# CONFIG_RELAY is not set
66846 -# CONFIG_NAMESPACES is not set
66847 -CONFIG_BLK_DEV_INITRD=y
66848 -CONFIG_INITRAMFS_SOURCE=""
66849 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
66850 -CONFIG_SYSCTL=y
66851 -CONFIG_EMBEDDED=y
66852 -CONFIG_SYSCTL_SYSCALL=y
66853 -CONFIG_KALLSYMS=y
66854 -CONFIG_KALLSYMS_ALL=y
66855 -CONFIG_KALLSYMS_EXTRA_PASS=y
66856 -CONFIG_HOTPLUG=y
66857 -CONFIG_PRINTK=y
66858 -CONFIG_BUG=y
66859 -CONFIG_ELF_CORE=y
66860 -CONFIG_COMPAT_BRK=y
66861 -CONFIG_BASE_FULL=y
66862 -CONFIG_FUTEX=y
66863 -CONFIG_ANON_INODES=y
66864 -CONFIG_EPOLL=y
66865 -CONFIG_SIGNALFD=y
66866 -CONFIG_TIMERFD=y
66867 -CONFIG_EVENTFD=y
66868 -CONFIG_SHMEM=y
66869 -CONFIG_VM_EVENT_COUNTERS=y
66870 -CONFIG_SLUB_DEBUG=y
66871 -# CONFIG_SLAB is not set
66872 -CONFIG_SLUB=y
66873 -# CONFIG_SLOB is not set
66874 -# CONFIG_PROFILING is not set
66875 -# CONFIG_MARKERS is not set
66876 -CONFIG_HAVE_OPROFILE=y
66877 -# CONFIG_KPROBES is not set
66878 -CONFIG_HAVE_KPROBES=y
66879 -CONFIG_HAVE_KRETPROBES=y
66880 -CONFIG_PROC_PAGE_MONITOR=y
66881 -CONFIG_SLABINFO=y
66882 -CONFIG_RT_MUTEXES=y
66883 -# CONFIG_TINY_SHMEM is not set
66884 -CONFIG_BASE_SMALL=0
66885 -CONFIG_MODULES=y
66886 -CONFIG_MODULE_UNLOAD=y
66887 -CONFIG_MODULE_FORCE_UNLOAD=y
66888 -CONFIG_MODVERSIONS=y
66889 -# CONFIG_MODULE_SRCVERSION_ALL is not set
66890 -CONFIG_KMOD=y
66891 -CONFIG_BLOCK=y
66892 -CONFIG_LBD=y
66893 -# CONFIG_BLK_DEV_IO_TRACE is not set
66894 -# CONFIG_LSF is not set
66895 -# CONFIG_BLK_DEV_BSG is not set
66896 -
66897 -#
66898 -# IO Schedulers
66899 -#
66900 -CONFIG_IOSCHED_NOOP=y
66901 -CONFIG_IOSCHED_AS=y
66902 -CONFIG_IOSCHED_DEADLINE=y
66903 -CONFIG_IOSCHED_CFQ=y
66904 -# CONFIG_DEFAULT_AS is not set
66905 -# CONFIG_DEFAULT_DEADLINE is not set
66906 -CONFIG_DEFAULT_CFQ=y
66907 -# CONFIG_DEFAULT_NOOP is not set
66908 -CONFIG_DEFAULT_IOSCHED="cfq"
66909 -CONFIG_CLASSIC_RCU=y
66910 -
66911 -#
66912 -# Platform support
66913 -#
66914 -# CONFIG_PPC_MPC512x is not set
66915 -# CONFIG_PPC_MPC5121 is not set
66916 -# CONFIG_PPC_CELL is not set
66917 -# CONFIG_PPC_CELL_NATIVE is not set
66918 -# CONFIG_PQ2ADS is not set
66919 -CONFIG_MPC85xx=y
66920 -# CONFIG_MPC8540_ADS is not set
66921 -# CONFIG_MPC8560_ADS is not set
66922 -# CONFIG_MPC85xx_CDS is not set
66923 -# CONFIG_MPC85xx_MDS is not set
66924 -CONFIG_MPC85xx_DS=y
66925 -# CONFIG_STX_GP3 is not set
66926 -# CONFIG_TQM8540 is not set
66927 -# CONFIG_TQM8541 is not set
66928 -# CONFIG_TQM8555 is not set
66929 -# CONFIG_TQM8560 is not set
66930 -# CONFIG_SBC8548 is not set
66931 -# CONFIG_SBC8560 is not set
66932 -# CONFIG_IPIC is not set
66933 -CONFIG_MPIC=y
66934 -# CONFIG_MPIC_WEIRD is not set
66935 -CONFIG_PPC_I8259=y
66936 -# CONFIG_PPC_RTAS is not set
66937 -# CONFIG_MMIO_NVRAM is not set
66938 -# CONFIG_PPC_MPC106 is not set
66939 -# CONFIG_PPC_970_NAP is not set
66940 -# CONFIG_PPC_INDIRECT_IO is not set
66941 -# CONFIG_GENERIC_IOMAP is not set
66942 -# CONFIG_CPU_FREQ is not set
66943 -# CONFIG_CPM2 is not set
66944 -CONFIG_FSL_ULI1575=y
66945 -
66946 -#
66947 -# Kernel options
66948 -#
66949 -CONFIG_HIGHMEM=y
66950 -CONFIG_TICK_ONESHOT=y
66951 -CONFIG_NO_HZ=y
66952 -CONFIG_HIGH_RES_TIMERS=y
66953 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
66954 -# CONFIG_HZ_100 is not set
66955 -CONFIG_HZ_250=y
66956 -# CONFIG_HZ_300 is not set
66957 -# CONFIG_HZ_1000 is not set
66958 -CONFIG_HZ=250
66959 -# CONFIG_SCHED_HRTICK is not set
66960 -CONFIG_PREEMPT_NONE=y
66961 -# CONFIG_PREEMPT_VOLUNTARY is not set
66962 -# CONFIG_PREEMPT is not set
66963 -CONFIG_BINFMT_ELF=y
66964 -CONFIG_BINFMT_MISC=m
66965 -CONFIG_MATH_EMULATION=y
66966 -# CONFIG_IOMMU_HELPER is not set
66967 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
66968 -CONFIG_ARCH_HAS_WALK_MEMORY=y
66969 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
66970 -CONFIG_ARCH_FLATMEM_ENABLE=y
66971 -CONFIG_ARCH_POPULATES_NODE_MAP=y
66972 -CONFIG_SELECT_MEMORY_MODEL=y
66973 -CONFIG_FLATMEM_MANUAL=y
66974 -# CONFIG_DISCONTIGMEM_MANUAL is not set
66975 -# CONFIG_SPARSEMEM_MANUAL is not set
66976 -CONFIG_FLATMEM=y
66977 -CONFIG_FLAT_NODE_MEM_MAP=y
66978 -# CONFIG_SPARSEMEM_STATIC is not set
66979 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
66980 -CONFIG_SPLIT_PTLOCK_CPUS=4
66981 -# CONFIG_RESOURCES_64BIT is not set
66982 -CONFIG_ZONE_DMA_FLAG=1
66983 -CONFIG_BOUNCE=y
66984 -CONFIG_VIRT_TO_BUS=y
66985 -CONFIG_PROC_DEVICETREE=y
66986 -# CONFIG_CMDLINE_BOOL is not set
66987 -# CONFIG_PM is not set
66988 -CONFIG_SECCOMP=y
66989 -CONFIG_ISA_DMA_API=y
66990 -
66991 -#
66992 -# Bus options
66993 -#
66994 -CONFIG_ZONE_DMA=y
66995 -CONFIG_GENERIC_ISA_DMA=y
66996 -CONFIG_PPC_INDIRECT_PCI=y
66997 -CONFIG_FSL_SOC=y
66998 -CONFIG_FSL_PCI=y
66999 -CONFIG_PCI=y
67000 -CONFIG_PCI_DOMAINS=y
67001 -CONFIG_PCI_SYSCALL=y
67002 -# CONFIG_PCIEPORTBUS is not set
67003 -CONFIG_ARCH_SUPPORTS_MSI=y
67004 -# CONFIG_PCI_MSI is not set
67005 -CONFIG_PCI_LEGACY=y
67006 -# CONFIG_PCI_DEBUG is not set
67007 -# CONFIG_PCCARD is not set
67008 -# CONFIG_HOTPLUG_PCI is not set
67009 -
67010 -#
67011 -# Advanced setup
67012 -#
67013 -# CONFIG_ADVANCED_OPTIONS is not set
67014 -
67015 -#
67016 -# Default settings for advanced configuration options are used
67017 -#
67018 -CONFIG_HIGHMEM_START=0xfe000000
67019 -CONFIG_LOWMEM_SIZE=0x30000000
67020 -CONFIG_KERNEL_START=0xc0000000
67021 -CONFIG_TASK_SIZE=0xc0000000
67022 -CONFIG_BOOT_LOAD=0x00800000
67023 -
67024 -#
67025 -# Networking
67026 -#
67027 -CONFIG_NET=y
67028 -
67029 -#
67030 -# Networking options
67031 -#
67032 -CONFIG_PACKET=y
67033 -# CONFIG_PACKET_MMAP is not set
67034 -CONFIG_UNIX=y
67035 -CONFIG_XFRM=y
67036 -CONFIG_XFRM_USER=y
67037 -# CONFIG_XFRM_SUB_POLICY is not set
67038 -# CONFIG_XFRM_MIGRATE is not set
67039 -# CONFIG_XFRM_STATISTICS is not set
67040 -CONFIG_NET_KEY=m
67041 -# CONFIG_NET_KEY_MIGRATE is not set
67042 -CONFIG_INET=y
67043 -CONFIG_IP_MULTICAST=y
67044 -CONFIG_IP_ADVANCED_ROUTER=y
67045 -CONFIG_ASK_IP_FIB_HASH=y
67046 -# CONFIG_IP_FIB_TRIE is not set
67047 -CONFIG_IP_FIB_HASH=y
67048 -CONFIG_IP_MULTIPLE_TABLES=y
67049 -CONFIG_IP_ROUTE_MULTIPATH=y
67050 -CONFIG_IP_ROUTE_VERBOSE=y
67051 -CONFIG_IP_PNP=y
67052 -CONFIG_IP_PNP_DHCP=y
67053 -CONFIG_IP_PNP_BOOTP=y
67054 -CONFIG_IP_PNP_RARP=y
67055 -CONFIG_NET_IPIP=y
67056 -CONFIG_NET_IPGRE=y
67057 -CONFIG_NET_IPGRE_BROADCAST=y
67058 -CONFIG_IP_MROUTE=y
67059 -CONFIG_IP_PIMSM_V1=y
67060 -CONFIG_IP_PIMSM_V2=y
67061 -CONFIG_ARPD=y
67062 -# CONFIG_SYN_COOKIES is not set
67063 -# CONFIG_INET_AH is not set
67064 -# CONFIG_INET_ESP is not set
67065 -# CONFIG_INET_IPCOMP is not set
67066 -# CONFIG_INET_XFRM_TUNNEL is not set
67067 -CONFIG_INET_TUNNEL=y
67068 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
67069 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
67070 -# CONFIG_INET_XFRM_MODE_BEET is not set
67071 -# CONFIG_INET_LRO is not set
67072 -CONFIG_INET_DIAG=y
67073 -CONFIG_INET_TCP_DIAG=y
67074 -# CONFIG_TCP_CONG_ADVANCED is not set
67075 -CONFIG_TCP_CONG_CUBIC=y
67076 -CONFIG_DEFAULT_TCP_CONG="cubic"
67077 -# CONFIG_TCP_MD5SIG is not set
67078 -CONFIG_IPV6=y
67079 -# CONFIG_IPV6_PRIVACY is not set
67080 -# CONFIG_IPV6_ROUTER_PREF is not set
67081 -# CONFIG_IPV6_OPTIMISTIC_DAD is not set
67082 -# CONFIG_INET6_AH is not set
67083 -# CONFIG_INET6_ESP is not set
67084 -# CONFIG_INET6_IPCOMP is not set
67085 -# CONFIG_IPV6_MIP6 is not set
67086 -# CONFIG_INET6_XFRM_TUNNEL is not set
67087 -# CONFIG_INET6_TUNNEL is not set
67088 -CONFIG_INET6_XFRM_MODE_TRANSPORT=y
67089 -CONFIG_INET6_XFRM_MODE_TUNNEL=y
67090 -CONFIG_INET6_XFRM_MODE_BEET=y
67091 -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
67092 -CONFIG_IPV6_SIT=y
67093 -# CONFIG_IPV6_TUNNEL is not set
67094 -# CONFIG_IPV6_MULTIPLE_TABLES is not set
67095 -# CONFIG_NETWORK_SECMARK is not set
67096 -# CONFIG_NETFILTER is not set
67097 -# CONFIG_IP_DCCP is not set
67098 -CONFIG_IP_SCTP=m
67099 -# CONFIG_SCTP_DBG_MSG is not set
67100 -# CONFIG_SCTP_DBG_OBJCNT is not set
67101 -# CONFIG_SCTP_HMAC_NONE is not set
67102 -# CONFIG_SCTP_HMAC_SHA1 is not set
67103 -CONFIG_SCTP_HMAC_MD5=y
67104 -# CONFIG_TIPC is not set
67105 -# CONFIG_ATM is not set
67106 -# CONFIG_BRIDGE is not set
67107 -# CONFIG_VLAN_8021Q is not set
67108 -# CONFIG_DECNET is not set
67109 -# CONFIG_LLC2 is not set
67110 -# CONFIG_IPX is not set
67111 -# CONFIG_ATALK is not set
67112 -# CONFIG_X25 is not set
67113 -# CONFIG_LAPB is not set
67114 -# CONFIG_ECONET is not set
67115 -# CONFIG_WAN_ROUTER is not set
67116 -# CONFIG_NET_SCHED is not set
67117 -
67118 -#
67119 -# Network testing
67120 -#
67121 -# CONFIG_NET_PKTGEN is not set
67122 -# CONFIG_HAMRADIO is not set
67123 -# CONFIG_CAN is not set
67124 -# CONFIG_IRDA is not set
67125 -# CONFIG_BT is not set
67126 -# CONFIG_AF_RXRPC is not set
67127 -CONFIG_FIB_RULES=y
67128 -
67129 -#
67130 -# Wireless
67131 -#
67132 -# CONFIG_CFG80211 is not set
67133 -# CONFIG_WIRELESS_EXT is not set
67134 -# CONFIG_MAC80211 is not set
67135 -# CONFIG_IEEE80211 is not set
67136 -# CONFIG_RFKILL is not set
67137 -# CONFIG_NET_9P is not set
67138 -
67139 -#
67140 -# Device Drivers
67141 -#
67142 -
67143 -#
67144 -# Generic Driver Options
67145 -#
67146 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
67147 -CONFIG_STANDALONE=y
67148 -CONFIG_PREVENT_FIRMWARE_BUILD=y
67149 -CONFIG_FW_LOADER=y
67150 -# CONFIG_DEBUG_DRIVER is not set
67151 -# CONFIG_DEBUG_DEVRES is not set
67152 -# CONFIG_SYS_HYPERVISOR is not set
67153 -# CONFIG_CONNECTOR is not set
67154 -# CONFIG_MTD is not set
67155 -CONFIG_OF_DEVICE=y
67156 -# CONFIG_PARPORT is not set
67157 -CONFIG_BLK_DEV=y
67158 -# CONFIG_BLK_DEV_FD is not set
67159 -# CONFIG_BLK_CPQ_DA is not set
67160 -# CONFIG_BLK_CPQ_CISS_DA is not set
67161 -# CONFIG_BLK_DEV_DAC960 is not set
67162 -# CONFIG_BLK_DEV_UMEM is not set
67163 -# CONFIG_BLK_DEV_COW_COMMON is not set
67164 -CONFIG_BLK_DEV_LOOP=y
67165 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
67166 -CONFIG_BLK_DEV_NBD=y
67167 -# CONFIG_BLK_DEV_SX8 is not set
67168 -# CONFIG_BLK_DEV_UB is not set
67169 -CONFIG_BLK_DEV_RAM=y
67170 -CONFIG_BLK_DEV_RAM_COUNT=16
67171 -CONFIG_BLK_DEV_RAM_SIZE=131072
67172 -# CONFIG_BLK_DEV_XIP is not set
67173 -# CONFIG_CDROM_PKTCDVD is not set
67174 -# CONFIG_ATA_OVER_ETH is not set
67175 -CONFIG_MISC_DEVICES=y
67176 -# CONFIG_PHANTOM is not set
67177 -# CONFIG_EEPROM_93CX6 is not set
67178 -# CONFIG_SGI_IOC4 is not set
67179 -# CONFIG_TIFM_CORE is not set
67180 -# CONFIG_ENCLOSURE_SERVICES is not set
67181 -CONFIG_HAVE_IDE=y
67182 -# CONFIG_IDE is not set
67183 -
67184 -#
67185 -# SCSI device support
67186 -#
67187 -# CONFIG_RAID_ATTRS is not set
67188 -CONFIG_SCSI=y
67189 -CONFIG_SCSI_DMA=y
67190 -# CONFIG_SCSI_TGT is not set
67191 -# CONFIG_SCSI_NETLINK is not set
67192 -CONFIG_SCSI_PROC_FS=y
67193 -
67194 -#
67195 -# SCSI support type (disk, tape, CD-ROM)
67196 -#
67197 -CONFIG_BLK_DEV_SD=y
67198 -CONFIG_CHR_DEV_ST=y
67199 -# CONFIG_CHR_DEV_OSST is not set
67200 -CONFIG_BLK_DEV_SR=y
67201 -# CONFIG_BLK_DEV_SR_VENDOR is not set
67202 -CONFIG_CHR_DEV_SG=y
67203 -# CONFIG_CHR_DEV_SCH is not set
67204 -
67205 -#
67206 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
67207 -#
67208 -CONFIG_SCSI_MULTI_LUN=y
67209 -# CONFIG_SCSI_CONSTANTS is not set
67210 -CONFIG_SCSI_LOGGING=y
67211 -# CONFIG_SCSI_SCAN_ASYNC is not set
67212 -CONFIG_SCSI_WAIT_SCAN=m
67213 -
67214 -#
67215 -# SCSI Transports
67216 -#
67217 -# CONFIG_SCSI_SPI_ATTRS is not set
67218 -# CONFIG_SCSI_FC_ATTRS is not set
67219 -# CONFIG_SCSI_ISCSI_ATTRS is not set
67220 -# CONFIG_SCSI_SAS_LIBSAS is not set
67221 -# CONFIG_SCSI_SRP_ATTRS is not set
67222 -CONFIG_SCSI_LOWLEVEL=y
67223 -# CONFIG_ISCSI_TCP is not set
67224 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
67225 -# CONFIG_SCSI_3W_9XXX is not set
67226 -# CONFIG_SCSI_ACARD is not set
67227 -# CONFIG_SCSI_AACRAID is not set
67228 -# CONFIG_SCSI_AIC7XXX is not set
67229 -# CONFIG_SCSI_AIC7XXX_OLD is not set
67230 -# CONFIG_SCSI_AIC79XX is not set
67231 -# CONFIG_SCSI_AIC94XX is not set
67232 -# CONFIG_SCSI_DPT_I2O is not set
67233 -# CONFIG_SCSI_ADVANSYS is not set
67234 -# CONFIG_SCSI_ARCMSR is not set
67235 -# CONFIG_MEGARAID_NEWGEN is not set
67236 -# CONFIG_MEGARAID_LEGACY is not set
67237 -# CONFIG_MEGARAID_SAS is not set
67238 -# CONFIG_SCSI_HPTIOP is not set
67239 -# CONFIG_SCSI_BUSLOGIC is not set
67240 -# CONFIG_SCSI_DMX3191D is not set
67241 -# CONFIG_SCSI_EATA is not set
67242 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
67243 -# CONFIG_SCSI_GDTH is not set
67244 -# CONFIG_SCSI_IPS is not set
67245 -# CONFIG_SCSI_INITIO is not set
67246 -# CONFIG_SCSI_INIA100 is not set
67247 -# CONFIG_SCSI_MVSAS is not set
67248 -# CONFIG_SCSI_STEX is not set
67249 -# CONFIG_SCSI_SYM53C8XX_2 is not set
67250 -# CONFIG_SCSI_IPR is not set
67251 -# CONFIG_SCSI_QLOGIC_1280 is not set
67252 -# CONFIG_SCSI_QLA_FC is not set
67253 -# CONFIG_SCSI_QLA_ISCSI is not set
67254 -# CONFIG_SCSI_LPFC is not set
67255 -# CONFIG_SCSI_DC395x is not set
67256 -# CONFIG_SCSI_DC390T is not set
67257 -# CONFIG_SCSI_NSP32 is not set
67258 -# CONFIG_SCSI_DEBUG is not set
67259 -# CONFIG_SCSI_SRP is not set
67260 -CONFIG_ATA=y
67261 -# CONFIG_ATA_NONSTANDARD is not set
67262 -CONFIG_SATA_AHCI=y
67263 -# CONFIG_SATA_SVW is not set
67264 -# CONFIG_ATA_PIIX is not set
67265 -# CONFIG_SATA_MV is not set
67266 -# CONFIG_SATA_NV is not set
67267 -# CONFIG_PDC_ADMA is not set
67268 -# CONFIG_SATA_QSTOR is not set
67269 -# CONFIG_SATA_PROMISE is not set
67270 -# CONFIG_SATA_SX4 is not set
67271 -# CONFIG_SATA_SIL is not set
67272 -# CONFIG_SATA_SIL24 is not set
67273 -# CONFIG_SATA_SIS is not set
67274 -# CONFIG_SATA_ULI is not set
67275 -# CONFIG_SATA_VIA is not set
67276 -# CONFIG_SATA_VITESSE is not set
67277 -# CONFIG_SATA_INIC162X is not set
67278 -# CONFIG_SATA_FSL is not set
67279 -CONFIG_PATA_ALI=y
67280 -# CONFIG_PATA_AMD is not set
67281 -# CONFIG_PATA_ARTOP is not set
67282 -# CONFIG_PATA_ATIIXP is not set
67283 -# CONFIG_PATA_CMD640_PCI is not set
67284 -# CONFIG_PATA_CMD64X is not set
67285 -# CONFIG_PATA_CS5520 is not set
67286 -# CONFIG_PATA_CS5530 is not set
67287 -# CONFIG_PATA_CYPRESS is not set
67288 -# CONFIG_PATA_EFAR is not set
67289 -# CONFIG_ATA_GENERIC is not set
67290 -# CONFIG_PATA_HPT366 is not set
67291 -# CONFIG_PATA_HPT37X is not set
67292 -# CONFIG_PATA_HPT3X2N is not set
67293 -# CONFIG_PATA_HPT3X3 is not set
67294 -# CONFIG_PATA_IT821X is not set
67295 -# CONFIG_PATA_IT8213 is not set
67296 -# CONFIG_PATA_JMICRON is not set
67297 -# CONFIG_PATA_TRIFLEX is not set
67298 -# CONFIG_PATA_MARVELL is not set
67299 -# CONFIG_PATA_MPIIX is not set
67300 -# CONFIG_PATA_OLDPIIX is not set
67301 -# CONFIG_PATA_NETCELL is not set
67302 -# CONFIG_PATA_NINJA32 is not set
67303 -# CONFIG_PATA_NS87410 is not set
67304 -# CONFIG_PATA_NS87415 is not set
67305 -# CONFIG_PATA_OPTI is not set
67306 -# CONFIG_PATA_OPTIDMA is not set
67307 -# CONFIG_PATA_PDC_OLD is not set
67308 -# CONFIG_PATA_RADISYS is not set
67309 -# CONFIG_PATA_RZ1000 is not set
67310 -# CONFIG_PATA_SC1200 is not set
67311 -# CONFIG_PATA_SERVERWORKS is not set
67312 -# CONFIG_PATA_PDC2027X is not set
67313 -# CONFIG_PATA_SIL680 is not set
67314 -# CONFIG_PATA_SIS is not set
67315 -# CONFIG_PATA_VIA is not set
67316 -# CONFIG_PATA_WINBOND is not set
67317 -# CONFIG_PATA_PLATFORM is not set
67318 -# CONFIG_MD is not set
67319 -# CONFIG_FUSION is not set
67320 -
67321 -#
67322 -# IEEE 1394 (FireWire) support
67323 -#
67324 -# CONFIG_FIREWIRE is not set
67325 -# CONFIG_IEEE1394 is not set
67326 -# CONFIG_I2O is not set
67327 -# CONFIG_MACINTOSH_DRIVERS is not set
67328 -CONFIG_NETDEVICES=y
67329 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
67330 -CONFIG_DUMMY=y
67331 -# CONFIG_BONDING is not set
67332 -# CONFIG_MACVLAN is not set
67333 -# CONFIG_EQUALIZER is not set
67334 -# CONFIG_TUN is not set
67335 -# CONFIG_VETH is not set
67336 -# CONFIG_ARCNET is not set
67337 -CONFIG_PHYLIB=y
67338 -
67339 -#
67340 -# MII PHY device drivers
67341 -#
67342 -# CONFIG_MARVELL_PHY is not set
67343 -# CONFIG_DAVICOM_PHY is not set
67344 -# CONFIG_QSEMI_PHY is not set
67345 -# CONFIG_LXT_PHY is not set
67346 -# CONFIG_CICADA_PHY is not set
67347 -CONFIG_VITESSE_PHY=y
67348 -# CONFIG_SMSC_PHY is not set
67349 -# CONFIG_BROADCOM_PHY is not set
67350 -# CONFIG_ICPLUS_PHY is not set
67351 -# CONFIG_REALTEK_PHY is not set
67352 -# CONFIG_FIXED_PHY is not set
67353 -# CONFIG_MDIO_BITBANG is not set
67354 -CONFIG_NET_ETHERNET=y
67355 -CONFIG_MII=y
67356 -# CONFIG_HAPPYMEAL is not set
67357 -# CONFIG_SUNGEM is not set
67358 -# CONFIG_CASSINI is not set
67359 -# CONFIG_NET_VENDOR_3COM is not set
67360 -# CONFIG_NET_TULIP is not set
67361 -# CONFIG_HP100 is not set
67362 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
67363 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
67364 -# CONFIG_IBM_NEW_EMAC_TAH is not set
67365 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
67366 -# CONFIG_NET_PCI is not set
67367 -# CONFIG_B44 is not set
67368 -CONFIG_NETDEV_1000=y
67369 -# CONFIG_ACENIC is not set
67370 -# CONFIG_DL2K is not set
67371 -# CONFIG_E1000 is not set
67372 -# CONFIG_E1000E is not set
67373 -# CONFIG_E1000E_ENABLED is not set
67374 -# CONFIG_IP1000 is not set
67375 -# CONFIG_IGB is not set
67376 -# CONFIG_NS83820 is not set
67377 -# CONFIG_HAMACHI is not set
67378 -# CONFIG_YELLOWFIN is not set
67379 -# CONFIG_R8169 is not set
67380 -# CONFIG_SIS190 is not set
67381 -# CONFIG_SKGE is not set
67382 -# CONFIG_SKY2 is not set
67383 -# CONFIG_SK98LIN is not set
67384 -# CONFIG_VIA_VELOCITY is not set
67385 -# CONFIG_TIGON3 is not set
67386 -# CONFIG_BNX2 is not set
67387 -CONFIG_GIANFAR=y
67388 -CONFIG_GFAR_NAPI=y
67389 -# CONFIG_QLA3XXX is not set
67390 -# CONFIG_ATL1 is not set
67391 -CONFIG_NETDEV_10000=y
67392 -# CONFIG_CHELSIO_T1 is not set
67393 -# CONFIG_CHELSIO_T3 is not set
67394 -# CONFIG_IXGBE is not set
67395 -# CONFIG_IXGB is not set
67396 -# CONFIG_S2IO is not set
67397 -# CONFIG_MYRI10GE is not set
67398 -# CONFIG_NETXEN_NIC is not set
67399 -# CONFIG_NIU is not set
67400 -# CONFIG_MLX4_CORE is not set
67401 -# CONFIG_TEHUTI is not set
67402 -# CONFIG_BNX2X is not set
67403 -# CONFIG_TR is not set
67404 -
67405 -#
67406 -# Wireless LAN
67407 -#
67408 -# CONFIG_WLAN_PRE80211 is not set
67409 -# CONFIG_WLAN_80211 is not set
67410 -
67411 -#
67412 -# USB Network Adapters
67413 -#
67414 -# CONFIG_USB_CATC is not set
67415 -# CONFIG_USB_KAWETH is not set
67416 -# CONFIG_USB_PEGASUS is not set
67417 -# CONFIG_USB_RTL8150 is not set
67418 -# CONFIG_USB_USBNET is not set
67419 -# CONFIG_WAN is not set
67420 -# CONFIG_FDDI is not set
67421 -# CONFIG_HIPPI is not set
67422 -# CONFIG_PPP is not set
67423 -# CONFIG_SLIP is not set
67424 -# CONFIG_NET_FC is not set
67425 -# CONFIG_NETCONSOLE is not set
67426 -# CONFIG_NETPOLL is not set
67427 -# CONFIG_NET_POLL_CONTROLLER is not set
67428 -# CONFIG_ISDN is not set
67429 -# CONFIG_PHONE is not set
67430 -
67431 -#
67432 -# Input device support
67433 -#
67434 -CONFIG_INPUT=y
67435 -# CONFIG_INPUT_FF_MEMLESS is not set
67436 -# CONFIG_INPUT_POLLDEV is not set
67437 -
67438 -#
67439 -# Userland interfaces
67440 -#
67441 -# CONFIG_INPUT_MOUSEDEV is not set
67442 -# CONFIG_INPUT_JOYDEV is not set
67443 -# CONFIG_INPUT_EVDEV is not set
67444 -# CONFIG_INPUT_EVBUG is not set
67445 -
67446 -#
67447 -# Input Device Drivers
67448 -#
67449 -# CONFIG_INPUT_KEYBOARD is not set
67450 -# CONFIG_INPUT_MOUSE is not set
67451 -# CONFIG_INPUT_JOYSTICK is not set
67452 -# CONFIG_INPUT_TABLET is not set
67453 -# CONFIG_INPUT_TOUCHSCREEN is not set
67454 -# CONFIG_INPUT_MISC is not set
67455 -
67456 -#
67457 -# Hardware I/O ports
67458 -#
67459 -CONFIG_SERIO=y
67460 -CONFIG_SERIO_I8042=y
67461 -CONFIG_SERIO_SERPORT=y
67462 -# CONFIG_SERIO_PCIPS2 is not set
67463 -CONFIG_SERIO_LIBPS2=y
67464 -# CONFIG_SERIO_RAW is not set
67465 -# CONFIG_GAMEPORT is not set
67466 -
67467 -#
67468 -# Character devices
67469 -#
67470 -CONFIG_VT=y
67471 -CONFIG_VT_CONSOLE=y
67472 -CONFIG_HW_CONSOLE=y
67473 -# CONFIG_VT_HW_CONSOLE_BINDING is not set
67474 -# CONFIG_SERIAL_NONSTANDARD is not set
67475 -# CONFIG_NOZOMI is not set
67476 -
67477 -#
67478 -# Serial drivers
67479 -#
67480 -CONFIG_SERIAL_8250=y
67481 -CONFIG_SERIAL_8250_CONSOLE=y
67482 -CONFIG_SERIAL_8250_PCI=y
67483 -CONFIG_SERIAL_8250_NR_UARTS=2
67484 -CONFIG_SERIAL_8250_RUNTIME_UARTS=2
67485 -CONFIG_SERIAL_8250_EXTENDED=y
67486 -CONFIG_SERIAL_8250_MANY_PORTS=y
67487 -CONFIG_SERIAL_8250_SHARE_IRQ=y
67488 -CONFIG_SERIAL_8250_DETECT_IRQ=y
67489 -CONFIG_SERIAL_8250_RSA=y
67490 -
67491 -#
67492 -# Non-8250 serial port support
67493 -#
67494 -# CONFIG_SERIAL_UARTLITE is not set
67495 -CONFIG_SERIAL_CORE=y
67496 -CONFIG_SERIAL_CORE_CONSOLE=y
67497 -# CONFIG_SERIAL_JSM is not set
67498 -# CONFIG_SERIAL_OF_PLATFORM is not set
67499 -CONFIG_UNIX98_PTYS=y
67500 -CONFIG_LEGACY_PTYS=y
67501 -CONFIG_LEGACY_PTY_COUNT=256
67502 -# CONFIG_IPMI_HANDLER is not set
67503 -# CONFIG_HW_RANDOM is not set
67504 -CONFIG_NVRAM=y
67505 -# CONFIG_GEN_RTC is not set
67506 -# CONFIG_R3964 is not set
67507 -# CONFIG_APPLICOM is not set
67508 -# CONFIG_RAW_DRIVER is not set
67509 -# CONFIG_TCG_TPM is not set
67510 -CONFIG_DEVPORT=y
67511 -CONFIG_I2C=y
67512 -CONFIG_I2C_BOARDINFO=y
67513 -# CONFIG_I2C_CHARDEV is not set
67514 -
67515 -#
67516 -# I2C Algorithms
67517 -#
67518 -# CONFIG_I2C_ALGOBIT is not set
67519 -# CONFIG_I2C_ALGOPCF is not set
67520 -# CONFIG_I2C_ALGOPCA is not set
67521 -
67522 -#
67523 -# I2C Hardware Bus support
67524 -#
67525 -# CONFIG_I2C_ALI1535 is not set
67526 -# CONFIG_I2C_ALI1563 is not set
67527 -# CONFIG_I2C_ALI15X3 is not set
67528 -# CONFIG_I2C_AMD756 is not set
67529 -# CONFIG_I2C_AMD8111 is not set
67530 -# CONFIG_I2C_I801 is not set
67531 -# CONFIG_I2C_I810 is not set
67532 -# CONFIG_I2C_PIIX4 is not set
67533 -CONFIG_I2C_MPC=y
67534 -# CONFIG_I2C_NFORCE2 is not set
67535 -# CONFIG_I2C_OCORES is not set
67536 -# CONFIG_I2C_PARPORT_LIGHT is not set
67537 -# CONFIG_I2C_PROSAVAGE is not set
67538 -# CONFIG_I2C_SAVAGE4 is not set
67539 -# CONFIG_I2C_SIMTEC is not set
67540 -# CONFIG_I2C_SIS5595 is not set
67541 -# CONFIG_I2C_SIS630 is not set
67542 -# CONFIG_I2C_SIS96X is not set
67543 -# CONFIG_I2C_TAOS_EVM is not set
67544 -# CONFIG_I2C_STUB is not set
67545 -# CONFIG_I2C_TINY_USB is not set
67546 -# CONFIG_I2C_VIA is not set
67547 -# CONFIG_I2C_VIAPRO is not set
67548 -# CONFIG_I2C_VOODOO3 is not set
67549 -
67550 -#
67551 -# Miscellaneous I2C Chip support
67552 -#
67553 -# CONFIG_DS1682 is not set
67554 -CONFIG_SENSORS_EEPROM=y
67555 -# CONFIG_SENSORS_PCF8574 is not set
67556 -# CONFIG_PCF8575 is not set
67557 -# CONFIG_SENSORS_PCF8591 is not set
67558 -# CONFIG_TPS65010 is not set
67559 -# CONFIG_SENSORS_MAX6875 is not set
67560 -# CONFIG_SENSORS_TSL2550 is not set
67561 -# CONFIG_I2C_DEBUG_CORE is not set
67562 -# CONFIG_I2C_DEBUG_ALGO is not set
67563 -# CONFIG_I2C_DEBUG_BUS is not set
67564 -# CONFIG_I2C_DEBUG_CHIP is not set
67565 -
67566 -#
67567 -# SPI support
67568 -#
67569 -# CONFIG_SPI is not set
67570 -# CONFIG_SPI_MASTER is not set
67571 -# CONFIG_W1 is not set
67572 -# CONFIG_POWER_SUPPLY is not set
67573 -# CONFIG_HWMON is not set
67574 -# CONFIG_THERMAL is not set
67575 -# CONFIG_WATCHDOG is not set
67576 -
67577 -#
67578 -# Sonics Silicon Backplane
67579 -#
67580 -CONFIG_SSB_POSSIBLE=y
67581 -# CONFIG_SSB is not set
67582 -
67583 -#
67584 -# Multifunction device drivers
67585 -#
67586 -# CONFIG_MFD_SM501 is not set
67587 -
67588 -#
67589 -# Multimedia devices
67590 -#
67591 -# CONFIG_VIDEO_DEV is not set
67592 -CONFIG_DVB_CORE=m
67593 -# CONFIG_DVB_CORE_ATTACH is not set
67594 -CONFIG_DVB_CAPTURE_DRIVERS=y
67595 -
67596 -#
67597 -# Supported SAA7146 based PCI Adapters
67598 -#
67599 -# CONFIG_TTPCI_EEPROM is not set
67600 -# CONFIG_DVB_BUDGET_CORE is not set
67601 -
67602 -#
67603 -# Supported USB Adapters
67604 -#
67605 -# CONFIG_DVB_USB is not set
67606 -# CONFIG_DVB_TTUSB_BUDGET is not set
67607 -# CONFIG_DVB_TTUSB_DEC is not set
67608 -# CONFIG_DVB_CINERGYT2 is not set
67609 -
67610 -#
67611 -# Supported FlexCopII (B2C2) Adapters
67612 -#
67613 -# CONFIG_DVB_B2C2_FLEXCOP is not set
67614 -
67615 -#
67616 -# Supported BT878 Adapters
67617 -#
67618 -
67619 -#
67620 -# Supported Pluto2 Adapters
67621 -#
67622 -# CONFIG_DVB_PLUTO2 is not set
67623 -
67624 -#
67625 -# Supported DVB Frontends
67626 -#
67627 -
67628 -#
67629 -# Customise DVB Frontends
67630 -#
67631 -# CONFIG_DVB_FE_CUSTOMISE is not set
67632 -
67633 -#
67634 -# DVB-S (satellite) frontends
67635 -#
67636 -# CONFIG_DVB_STV0299 is not set
67637 -# CONFIG_DVB_CX24110 is not set
67638 -# CONFIG_DVB_CX24123 is not set
67639 -# CONFIG_DVB_TDA8083 is not set
67640 -# CONFIG_DVB_MT312 is not set
67641 -# CONFIG_DVB_VES1X93 is not set
67642 -# CONFIG_DVB_S5H1420 is not set
67643 -# CONFIG_DVB_TDA10086 is not set
67644 -
67645 -#
67646 -# DVB-T (terrestrial) frontends
67647 -#
67648 -# CONFIG_DVB_SP8870 is not set
67649 -# CONFIG_DVB_SP887X is not set
67650 -# CONFIG_DVB_CX22700 is not set
67651 -# CONFIG_DVB_CX22702 is not set
67652 -# CONFIG_DVB_L64781 is not set
67653 -# CONFIG_DVB_TDA1004X is not set
67654 -# CONFIG_DVB_NXT6000 is not set
67655 -# CONFIG_DVB_MT352 is not set
67656 -# CONFIG_DVB_ZL10353 is not set
67657 -# CONFIG_DVB_DIB3000MB is not set
67658 -# CONFIG_DVB_DIB3000MC is not set
67659 -# CONFIG_DVB_DIB7000M is not set
67660 -# CONFIG_DVB_DIB7000P is not set
67661 -
67662 -#
67663 -# DVB-C (cable) frontends
67664 -#
67665 -# CONFIG_DVB_VES1820 is not set
67666 -# CONFIG_DVB_TDA10021 is not set
67667 -# CONFIG_DVB_TDA10023 is not set
67668 -# CONFIG_DVB_STV0297 is not set
67669 -
67670 -#
67671 -# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
67672 -#
67673 -# CONFIG_DVB_NXT200X is not set
67674 -# CONFIG_DVB_OR51211 is not set
67675 -# CONFIG_DVB_OR51132 is not set
67676 -# CONFIG_DVB_BCM3510 is not set
67677 -# CONFIG_DVB_LGDT330X is not set
67678 -# CONFIG_DVB_S5H1409 is not set
67679 -
67680 -#
67681 -# Tuners/PLL support
67682 -#
67683 -# CONFIG_DVB_PLL is not set
67684 -# CONFIG_DVB_TDA826X is not set
67685 -# CONFIG_DVB_TDA827X is not set
67686 -# CONFIG_DVB_TDA18271 is not set
67687 -# CONFIG_DVB_TUNER_QT1010 is not set
67688 -# CONFIG_DVB_TUNER_MT2060 is not set
67689 -# CONFIG_DVB_TUNER_MT2266 is not set
67690 -# CONFIG_DVB_TUNER_MT2131 is not set
67691 -# CONFIG_DVB_TUNER_DIB0070 is not set
67692 -# CONFIG_DVB_TUNER_XC5000 is not set
67693 -
67694 -#
67695 -# Miscellaneous devices
67696 -#
67697 -# CONFIG_DVB_LNBP21 is not set
67698 -# CONFIG_DVB_ISL6421 is not set
67699 -# CONFIG_DVB_TUA6100 is not set
67700 -CONFIG_DAB=y
67701 -# CONFIG_USB_DABUSB is not set
67702 -
67703 -#
67704 -# Graphics support
67705 -#
67706 -# CONFIG_AGP is not set
67707 -# CONFIG_DRM is not set
67708 -# CONFIG_VGASTATE is not set
67709 -CONFIG_VIDEO_OUTPUT_CONTROL=y
67710 -# CONFIG_FB is not set
67711 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
67712 -
67713 -#
67714 -# Display device support
67715 -#
67716 -# CONFIG_DISPLAY_SUPPORT is not set
67717 -
67718 -#
67719 -# Console display driver support
67720 -#
67721 -CONFIG_VGA_CONSOLE=y
67722 -# CONFIG_VGACON_SOFT_SCROLLBACK is not set
67723 -CONFIG_DUMMY_CONSOLE=y
67724 -
67725 -#
67726 -# Sound
67727 -#
67728 -CONFIG_SOUND=y
67729 -
67730 -#
67731 -# Advanced Linux Sound Architecture
67732 -#
67733 -CONFIG_SND=y
67734 -CONFIG_SND_TIMER=y
67735 -CONFIG_SND_PCM=y
67736 -# CONFIG_SND_SEQUENCER is not set
67737 -# CONFIG_SND_MIXER_OSS is not set
67738 -# CONFIG_SND_PCM_OSS is not set
67739 -# CONFIG_SND_DYNAMIC_MINORS is not set
67740 -CONFIG_SND_SUPPORT_OLD_API=y
67741 -CONFIG_SND_VERBOSE_PROCFS=y
67742 -# CONFIG_SND_VERBOSE_PRINTK is not set
67743 -# CONFIG_SND_DEBUG is not set
67744 -
67745 -#
67746 -# Generic devices
67747 -#
67748 -CONFIG_SND_AC97_CODEC=y
67749 -# CONFIG_SND_DUMMY is not set
67750 -# CONFIG_SND_MTPAV is not set
67751 -# CONFIG_SND_SERIAL_U16550 is not set
67752 -# CONFIG_SND_MPU401 is not set
67753 -
67754 -#
67755 -# PCI devices
67756 -#
67757 -# CONFIG_SND_AD1889 is not set
67758 -# CONFIG_SND_ALS300 is not set
67759 -# CONFIG_SND_ALS4000 is not set
67760 -# CONFIG_SND_ALI5451 is not set
67761 -# CONFIG_SND_ATIIXP is not set
67762 -# CONFIG_SND_ATIIXP_MODEM is not set
67763 -# CONFIG_SND_AU8810 is not set
67764 -# CONFIG_SND_AU8820 is not set
67765 -# CONFIG_SND_AU8830 is not set
67766 -# CONFIG_SND_AZT3328 is not set
67767 -# CONFIG_SND_BT87X is not set
67768 -# CONFIG_SND_CA0106 is not set
67769 -# CONFIG_SND_CMIPCI is not set
67770 -# CONFIG_SND_OXYGEN is not set
67771 -# CONFIG_SND_CS4281 is not set
67772 -# CONFIG_SND_CS46XX is not set
67773 -# CONFIG_SND_CS5530 is not set
67774 -# CONFIG_SND_DARLA20 is not set
67775 -# CONFIG_SND_GINA20 is not set
67776 -# CONFIG_SND_LAYLA20 is not set
67777 -# CONFIG_SND_DARLA24 is not set
67778 -# CONFIG_SND_GINA24 is not set
67779 -# CONFIG_SND_LAYLA24 is not set
67780 -# CONFIG_SND_MONA is not set
67781 -# CONFIG_SND_MIA is not set
67782 -# CONFIG_SND_ECHO3G is not set
67783 -# CONFIG_SND_INDIGO is not set
67784 -# CONFIG_SND_INDIGOIO is not set
67785 -# CONFIG_SND_INDIGODJ is not set
67786 -# CONFIG_SND_EMU10K1 is not set
67787 -# CONFIG_SND_EMU10K1X is not set
67788 -# CONFIG_SND_ENS1370 is not set
67789 -# CONFIG_SND_ENS1371 is not set
67790 -# CONFIG_SND_ES1938 is not set
67791 -# CONFIG_SND_ES1968 is not set
67792 -# CONFIG_SND_FM801 is not set
67793 -# CONFIG_SND_HDA_INTEL is not set
67794 -# CONFIG_SND_HDSP is not set
67795 -# CONFIG_SND_HDSPM is not set
67796 -# CONFIG_SND_HIFIER is not set
67797 -# CONFIG_SND_ICE1712 is not set
67798 -# CONFIG_SND_ICE1724 is not set
67799 -CONFIG_SND_INTEL8X0=y
67800 -# CONFIG_SND_INTEL8X0M is not set
67801 -# CONFIG_SND_KORG1212 is not set
67802 -# CONFIG_SND_MAESTRO3 is not set
67803 -# CONFIG_SND_MIXART is not set
67804 -# CONFIG_SND_NM256 is not set
67805 -# CONFIG_SND_PCXHR is not set
67806 -# CONFIG_SND_RIPTIDE is not set
67807 -# CONFIG_SND_RME32 is not set
67808 -# CONFIG_SND_RME96 is not set
67809 -# CONFIG_SND_RME9652 is not set
67810 -# CONFIG_SND_SONICVIBES is not set
67811 -# CONFIG_SND_TRIDENT is not set
67812 -# CONFIG_SND_VIA82XX is not set
67813 -# CONFIG_SND_VIA82XX_MODEM is not set
67814 -# CONFIG_SND_VIRTUOSO is not set
67815 -# CONFIG_SND_VX222 is not set
67816 -# CONFIG_SND_YMFPCI is not set
67817 -# CONFIG_SND_AC97_POWER_SAVE is not set
67818 -
67819 -#
67820 -# ALSA PowerMac devices
67821 -#
67822 -
67823 -#
67824 -# ALSA PowerPC devices
67825 -#
67826 -
67827 -#
67828 -# USB devices
67829 -#
67830 -# CONFIG_SND_USB_AUDIO is not set
67831 -# CONFIG_SND_USB_USX2Y is not set
67832 -# CONFIG_SND_USB_CAIAQ is not set
67833 -
67834 -#
67835 -# System on Chip audio support
67836 -#
67837 -# CONFIG_SND_SOC is not set
67838 -
67839 -#
67840 -# SoC Audio support for SuperH
67841 -#
67842 -
67843 -#
67844 -# ALSA SoC audio for Freescale SOCs
67845 -#
67846 -
67847 -#
67848 -# Open Sound System
67849 -#
67850 -# CONFIG_SOUND_PRIME is not set
67851 -CONFIG_AC97_BUS=y
67852 -CONFIG_HID_SUPPORT=y
67853 -CONFIG_HID=y
67854 -# CONFIG_HID_DEBUG is not set
67855 -# CONFIG_HIDRAW is not set
67856 -
67857 -#
67858 -# USB Input Devices
67859 -#
67860 -CONFIG_USB_HID=y
67861 -# CONFIG_USB_HIDINPUT_POWERBOOK is not set
67862 -# CONFIG_HID_FF is not set
67863 -# CONFIG_USB_HIDDEV is not set
67864 -CONFIG_USB_SUPPORT=y
67865 -CONFIG_USB_ARCH_HAS_HCD=y
67866 -CONFIG_USB_ARCH_HAS_OHCI=y
67867 -CONFIG_USB_ARCH_HAS_EHCI=y
67868 -CONFIG_USB=y
67869 -# CONFIG_USB_DEBUG is not set
67870 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
67871 -
67872 -#
67873 -# Miscellaneous USB options
67874 -#
67875 -CONFIG_USB_DEVICEFS=y
67876 -CONFIG_USB_DEVICE_CLASS=y
67877 -# CONFIG_USB_DYNAMIC_MINORS is not set
67878 -# CONFIG_USB_OTG is not set
67879 -
67880 -#
67881 -# USB Host Controller Drivers
67882 -#
67883 -CONFIG_USB_EHCI_HCD=y
67884 -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
67885 -# CONFIG_USB_EHCI_TT_NEWSCHED is not set
67886 -# CONFIG_USB_EHCI_FSL is not set
67887 -CONFIG_USB_EHCI_HCD_PPC_OF=y
67888 -# CONFIG_USB_ISP116X_HCD is not set
67889 -CONFIG_USB_OHCI_HCD=y
67890 -CONFIG_USB_OHCI_HCD_PPC_OF=y
67891 -CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
67892 -CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
67893 -CONFIG_USB_OHCI_HCD_PCI=y
67894 -CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
67895 -CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
67896 -CONFIG_USB_OHCI_LITTLE_ENDIAN=y
67897 -# CONFIG_USB_UHCI_HCD is not set
67898 -# CONFIG_USB_SL811_HCD is not set
67899 -# CONFIG_USB_R8A66597_HCD is not set
67900 -
67901 -#
67902 -# USB Device Class drivers
67903 -#
67904 -# CONFIG_USB_ACM is not set
67905 -# CONFIG_USB_PRINTER is not set
67906 -
67907 -#
67908 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
67909 -#
67910 -
67911 -#
67912 -# may also be needed; see USB_STORAGE Help for more information
67913 -#
67914 -CONFIG_USB_STORAGE=y
67915 -# CONFIG_USB_STORAGE_DEBUG is not set
67916 -# CONFIG_USB_STORAGE_DATAFAB is not set
67917 -# CONFIG_USB_STORAGE_FREECOM is not set
67918 -# CONFIG_USB_STORAGE_ISD200 is not set
67919 -# CONFIG_USB_STORAGE_DPCM is not set
67920 -# CONFIG_USB_STORAGE_USBAT is not set
67921 -# CONFIG_USB_STORAGE_SDDR09 is not set
67922 -# CONFIG_USB_STORAGE_SDDR55 is not set
67923 -# CONFIG_USB_STORAGE_JUMPSHOT is not set
67924 -# CONFIG_USB_STORAGE_ALAUDA is not set
67925 -# CONFIG_USB_STORAGE_KARMA is not set
67926 -# CONFIG_USB_LIBUSUAL is not set
67927 -
67928 -#
67929 -# USB Imaging devices
67930 -#
67931 -# CONFIG_USB_MDC800 is not set
67932 -# CONFIG_USB_MICROTEK is not set
67933 -CONFIG_USB_MON=y
67934 -
67935 -#
67936 -# USB port drivers
67937 -#
67938 -# CONFIG_USB_SERIAL is not set
67939 -
67940 -#
67941 -# USB Miscellaneous drivers
67942 -#
67943 -# CONFIG_USB_EMI62 is not set
67944 -# CONFIG_USB_EMI26 is not set
67945 -# CONFIG_USB_ADUTUX is not set
67946 -# CONFIG_USB_AUERSWALD is not set
67947 -# CONFIG_USB_RIO500 is not set
67948 -# CONFIG_USB_LEGOTOWER is not set
67949 -# CONFIG_USB_LCD is not set
67950 -# CONFIG_USB_BERRY_CHARGE is not set
67951 -# CONFIG_USB_LED is not set
67952 -# CONFIG_USB_CYPRESS_CY7C63 is not set
67953 -# CONFIG_USB_CYTHERM is not set
67954 -# CONFIG_USB_PHIDGET is not set
67955 -# CONFIG_USB_IDMOUSE is not set
67956 -# CONFIG_USB_FTDI_ELAN is not set
67957 -# CONFIG_USB_APPLEDISPLAY is not set
67958 -# CONFIG_USB_SISUSBVGA is not set
67959 -# CONFIG_USB_LD is not set
67960 -# CONFIG_USB_TRANCEVIBRATOR is not set
67961 -# CONFIG_USB_IOWARRIOR is not set
67962 -# CONFIG_USB_TEST is not set
67963 -# CONFIG_USB_GADGET is not set
67964 -# CONFIG_MMC is not set
67965 -# CONFIG_MEMSTICK is not set
67966 -# CONFIG_NEW_LEDS is not set
67967 -# CONFIG_INFINIBAND is not set
67968 -# CONFIG_EDAC is not set
67969 -CONFIG_RTC_LIB=y
67970 -CONFIG_RTC_CLASS=y
67971 -CONFIG_RTC_HCTOSYS=y
67972 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
67973 -# CONFIG_RTC_DEBUG is not set
67974 -
67975 -#
67976 -# RTC interfaces
67977 -#
67978 -CONFIG_RTC_INTF_SYSFS=y
67979 -CONFIG_RTC_INTF_PROC=y
67980 -CONFIG_RTC_INTF_DEV=y
67981 -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
67982 -# CONFIG_RTC_DRV_TEST is not set
67983 -
67984 -#
67985 -# I2C RTC drivers
67986 -#
67987 -# CONFIG_RTC_DRV_DS1307 is not set
67988 -# CONFIG_RTC_DRV_DS1374 is not set
67989 -# CONFIG_RTC_DRV_DS1672 is not set
67990 -# CONFIG_RTC_DRV_MAX6900 is not set
67991 -# CONFIG_RTC_DRV_RS5C372 is not set
67992 -# CONFIG_RTC_DRV_ISL1208 is not set
67993 -# CONFIG_RTC_DRV_X1205 is not set
67994 -# CONFIG_RTC_DRV_PCF8563 is not set
67995 -# CONFIG_RTC_DRV_PCF8583 is not set
67996 -# CONFIG_RTC_DRV_M41T80 is not set
67997 -# CONFIG_RTC_DRV_S35390A is not set
67998 -
67999 -#
68000 -# SPI RTC drivers
68001 -#
68002 -
68003 -#
68004 -# Platform RTC drivers
68005 -#
68006 -CONFIG_RTC_DRV_CMOS=y
68007 -# CONFIG_RTC_DRV_DS1511 is not set
68008 -# CONFIG_RTC_DRV_DS1553 is not set
68009 -# CONFIG_RTC_DRV_DS1742 is not set
68010 -# CONFIG_RTC_DRV_STK17TA8 is not set
68011 -# CONFIG_RTC_DRV_M48T86 is not set
68012 -# CONFIG_RTC_DRV_M48T59 is not set
68013 -# CONFIG_RTC_DRV_V3020 is not set
68014 -
68015 -#
68016 -# on-CPU RTC drivers
68017 -#
68018 -# CONFIG_DMADEVICES is not set
68019 -
68020 -#
68021 -# Userspace I/O
68022 -#
68023 -# CONFIG_UIO is not set
68024 -
68025 -#
68026 -# File systems
68027 -#
68028 -CONFIG_EXT2_FS=y
68029 -# CONFIG_EXT2_FS_XATTR is not set
68030 -# CONFIG_EXT2_FS_XIP is not set
68031 -CONFIG_EXT3_FS=y
68032 -CONFIG_EXT3_FS_XATTR=y
68033 -# CONFIG_EXT3_FS_POSIX_ACL is not set
68034 -# CONFIG_EXT3_FS_SECURITY is not set
68035 -# CONFIG_EXT4DEV_FS is not set
68036 -CONFIG_JBD=y
68037 -CONFIG_FS_MBCACHE=y
68038 -# CONFIG_REISERFS_FS is not set
68039 -# CONFIG_JFS_FS is not set
68040 -# CONFIG_FS_POSIX_ACL is not set
68041 -# CONFIG_XFS_FS is not set
68042 -# CONFIG_GFS2_FS is not set
68043 -# CONFIG_OCFS2_FS is not set
68044 -CONFIG_DNOTIFY=y
68045 -CONFIG_INOTIFY=y
68046 -CONFIG_INOTIFY_USER=y
68047 -# CONFIG_QUOTA is not set
68048 -# CONFIG_AUTOFS_FS is not set
68049 -# CONFIG_AUTOFS4_FS is not set
68050 -# CONFIG_FUSE_FS is not set
68051 -
68052 -#
68053 -# CD-ROM/DVD Filesystems
68054 -#
68055 -CONFIG_ISO9660_FS=m
68056 -CONFIG_JOLIET=y
68057 -CONFIG_ZISOFS=y
68058 -CONFIG_UDF_FS=m
68059 -CONFIG_UDF_NLS=y
68060 -
68061 -#
68062 -# DOS/FAT/NT Filesystems
68063 -#
68064 -CONFIG_FAT_FS=y
68065 -CONFIG_MSDOS_FS=m
68066 -CONFIG_VFAT_FS=y
68067 -CONFIG_FAT_DEFAULT_CODEPAGE=437
68068 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
68069 -CONFIG_NTFS_FS=y
68070 -# CONFIG_NTFS_DEBUG is not set
68071 -# CONFIG_NTFS_RW is not set
68072 -
68073 -#
68074 -# Pseudo filesystems
68075 -#
68076 -CONFIG_PROC_FS=y
68077 -CONFIG_PROC_KCORE=y
68078 -CONFIG_PROC_SYSCTL=y
68079 -CONFIG_SYSFS=y
68080 -CONFIG_TMPFS=y
68081 -# CONFIG_TMPFS_POSIX_ACL is not set
68082 -# CONFIG_HUGETLB_PAGE is not set
68083 -# CONFIG_CONFIGFS_FS is not set
68084 -
68085 -#
68086 -# Miscellaneous filesystems
68087 -#
68088 -CONFIG_ADFS_FS=m
68089 -# CONFIG_ADFS_FS_RW is not set
68090 -CONFIG_AFFS_FS=m
68091 -CONFIG_HFS_FS=m
68092 -CONFIG_HFSPLUS_FS=m
68093 -CONFIG_BEFS_FS=m
68094 -# CONFIG_BEFS_DEBUG is not set
68095 -CONFIG_BFS_FS=m
68096 -CONFIG_EFS_FS=m
68097 -CONFIG_CRAMFS=y
68098 -CONFIG_VXFS_FS=m
68099 -# CONFIG_MINIX_FS is not set
68100 -CONFIG_HPFS_FS=m
68101 -CONFIG_QNX4FS_FS=m
68102 -# CONFIG_ROMFS_FS is not set
68103 -CONFIG_SYSV_FS=m
68104 -CONFIG_UFS_FS=m
68105 -# CONFIG_UFS_FS_WRITE is not set
68106 -# CONFIG_UFS_DEBUG is not set
68107 -CONFIG_NETWORK_FILESYSTEMS=y
68108 -CONFIG_NFS_FS=y
68109 -CONFIG_NFS_V3=y
68110 -# CONFIG_NFS_V3_ACL is not set
68111 -CONFIG_NFS_V4=y
68112 -# CONFIG_NFS_DIRECTIO is not set
68113 -CONFIG_NFSD=y
68114 -# CONFIG_NFSD_V3 is not set
68115 -CONFIG_NFSD_TCP=y
68116 -CONFIG_ROOT_NFS=y
68117 -CONFIG_LOCKD=y
68118 -CONFIG_LOCKD_V4=y
68119 -CONFIG_EXPORTFS=y
68120 -CONFIG_NFS_COMMON=y
68121 -CONFIG_SUNRPC=y
68122 -CONFIG_SUNRPC_GSS=y
68123 -# CONFIG_SUNRPC_BIND34 is not set
68124 -CONFIG_RPCSEC_GSS_KRB5=y
68125 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
68126 -# CONFIG_SMB_FS is not set
68127 -# CONFIG_CIFS is not set
68128 -# CONFIG_NCP_FS is not set
68129 -# CONFIG_CODA_FS is not set
68130 -# CONFIG_AFS_FS is not set
68131 -
68132 -#
68133 -# Partition Types
68134 -#
68135 -CONFIG_PARTITION_ADVANCED=y
68136 -# CONFIG_ACORN_PARTITION is not set
68137 -# CONFIG_OSF_PARTITION is not set
68138 -# CONFIG_AMIGA_PARTITION is not set
68139 -# CONFIG_ATARI_PARTITION is not set
68140 -CONFIG_MAC_PARTITION=y
68141 -CONFIG_MSDOS_PARTITION=y
68142 -# CONFIG_BSD_DISKLABEL is not set
68143 -# CONFIG_MINIX_SUBPARTITION is not set
68144 -# CONFIG_SOLARIS_X86_PARTITION is not set
68145 -# CONFIG_UNIXWARE_DISKLABEL is not set
68146 -# CONFIG_LDM_PARTITION is not set
68147 -# CONFIG_SGI_PARTITION is not set
68148 -# CONFIG_ULTRIX_PARTITION is not set
68149 -# CONFIG_SUN_PARTITION is not set
68150 -# CONFIG_KARMA_PARTITION is not set
68151 -# CONFIG_EFI_PARTITION is not set
68152 -# CONFIG_SYSV68_PARTITION is not set
68153 -CONFIG_NLS=y
68154 -CONFIG_NLS_DEFAULT="iso8859-1"
68155 -# CONFIG_NLS_CODEPAGE_437 is not set
68156 -# CONFIG_NLS_CODEPAGE_737 is not set
68157 -# CONFIG_NLS_CODEPAGE_775 is not set
68158 -# CONFIG_NLS_CODEPAGE_850 is not set
68159 -# CONFIG_NLS_CODEPAGE_852 is not set
68160 -# CONFIG_NLS_CODEPAGE_855 is not set
68161 -# CONFIG_NLS_CODEPAGE_857 is not set
68162 -# CONFIG_NLS_CODEPAGE_860 is not set
68163 -# CONFIG_NLS_CODEPAGE_861 is not set
68164 -# CONFIG_NLS_CODEPAGE_862 is not set
68165 -# CONFIG_NLS_CODEPAGE_863 is not set
68166 -# CONFIG_NLS_CODEPAGE_864 is not set
68167 -# CONFIG_NLS_CODEPAGE_865 is not set
68168 -# CONFIG_NLS_CODEPAGE_866 is not set
68169 -# CONFIG_NLS_CODEPAGE_869 is not set
68170 -# CONFIG_NLS_CODEPAGE_936 is not set
68171 -# CONFIG_NLS_CODEPAGE_950 is not set
68172 -# CONFIG_NLS_CODEPAGE_932 is not set
68173 -# CONFIG_NLS_CODEPAGE_949 is not set
68174 -# CONFIG_NLS_CODEPAGE_874 is not set
68175 -# CONFIG_NLS_ISO8859_8 is not set
68176 -# CONFIG_NLS_CODEPAGE_1250 is not set
68177 -# CONFIG_NLS_CODEPAGE_1251 is not set
68178 -# CONFIG_NLS_ASCII is not set
68179 -# CONFIG_NLS_ISO8859_1 is not set
68180 -# CONFIG_NLS_ISO8859_2 is not set
68181 -# CONFIG_NLS_ISO8859_3 is not set
68182 -# CONFIG_NLS_ISO8859_4 is not set
68183 -# CONFIG_NLS_ISO8859_5 is not set
68184 -# CONFIG_NLS_ISO8859_6 is not set
68185 -# CONFIG_NLS_ISO8859_7 is not set
68186 -# CONFIG_NLS_ISO8859_9 is not set
68187 -# CONFIG_NLS_ISO8859_13 is not set
68188 -# CONFIG_NLS_ISO8859_14 is not set
68189 -# CONFIG_NLS_ISO8859_15 is not set
68190 -# CONFIG_NLS_KOI8_R is not set
68191 -# CONFIG_NLS_KOI8_U is not set
68192 -CONFIG_NLS_UTF8=m
68193 -# CONFIG_DLM is not set
68194 -
68195 -#
68196 -# Library routines
68197 -#
68198 -CONFIG_BITREVERSE=y
68199 -# CONFIG_CRC_CCITT is not set
68200 -# CONFIG_CRC16 is not set
68201 -# CONFIG_CRC_ITU_T is not set
68202 -CONFIG_CRC32=y
68203 -# CONFIG_CRC7 is not set
68204 -CONFIG_LIBCRC32C=m
68205 -CONFIG_ZLIB_INFLATE=y
68206 -CONFIG_PLIST=y
68207 -CONFIG_HAS_IOMEM=y
68208 -CONFIG_HAS_IOPORT=y
68209 -CONFIG_HAS_DMA=y
68210 -
68211 -#
68212 -# Kernel hacking
68213 -#
68214 -# CONFIG_PRINTK_TIME is not set
68215 -CONFIG_ENABLE_WARN_DEPRECATED=y
68216 -CONFIG_ENABLE_MUST_CHECK=y
68217 -# CONFIG_MAGIC_SYSRQ is not set
68218 -# CONFIG_UNUSED_SYMBOLS is not set
68219 -# CONFIG_DEBUG_FS is not set
68220 -# CONFIG_HEADERS_CHECK is not set
68221 -CONFIG_DEBUG_KERNEL=y
68222 -# CONFIG_DEBUG_SHIRQ is not set
68223 -CONFIG_DETECT_SOFTLOCKUP=y
68224 -CONFIG_SCHED_DEBUG=y
68225 -# CONFIG_SCHEDSTATS is not set
68226 -# CONFIG_TIMER_STATS is not set
68227 -# CONFIG_SLUB_DEBUG_ON is not set
68228 -# CONFIG_SLUB_STATS is not set
68229 -# CONFIG_DEBUG_RT_MUTEXES is not set
68230 -# CONFIG_RT_MUTEX_TESTER is not set
68231 -# CONFIG_DEBUG_SPINLOCK is not set
68232 -# CONFIG_DEBUG_MUTEXES is not set
68233 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
68234 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
68235 -# CONFIG_DEBUG_KOBJECT is not set
68236 -# CONFIG_DEBUG_HIGHMEM is not set
68237 -# CONFIG_DEBUG_BUGVERBOSE is not set
68238 -CONFIG_DEBUG_INFO=y
68239 -# CONFIG_DEBUG_VM is not set
68240 -# CONFIG_DEBUG_LIST is not set
68241 -# CONFIG_DEBUG_SG is not set
68242 -# CONFIG_BOOT_PRINTK_DELAY is not set
68243 -# CONFIG_RCU_TORTURE_TEST is not set
68244 -# CONFIG_BACKTRACE_SELF_TEST is not set
68245 -# CONFIG_FAULT_INJECTION is not set
68246 -# CONFIG_SAMPLES is not set
68247 -# CONFIG_DEBUG_STACKOVERFLOW is not set
68248 -# CONFIG_DEBUG_STACK_USAGE is not set
68249 -# CONFIG_DEBUG_PAGEALLOC is not set
68250 -# CONFIG_DEBUGGER is not set
68251 -# CONFIG_BDI_SWITCH is not set
68252 -# CONFIG_PPC_EARLY_DEBUG is not set
68253 -
68254 -#
68255 -# Security options
68256 -#
68257 -# CONFIG_KEYS is not set
68258 -# CONFIG_SECURITY is not set
68259 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
68260 -CONFIG_CRYPTO=y
68261 -CONFIG_CRYPTO_ALGAPI=y
68262 -CONFIG_CRYPTO_BLKCIPHER=y
68263 -# CONFIG_CRYPTO_SEQIV is not set
68264 -CONFIG_CRYPTO_HASH=y
68265 -CONFIG_CRYPTO_MANAGER=y
68266 -CONFIG_CRYPTO_HMAC=y
68267 -# CONFIG_CRYPTO_XCBC is not set
68268 -# CONFIG_CRYPTO_NULL is not set
68269 -# CONFIG_CRYPTO_MD4 is not set
68270 -CONFIG_CRYPTO_MD5=y
68271 -CONFIG_CRYPTO_SHA1=m
68272 -# CONFIG_CRYPTO_SHA256 is not set
68273 -# CONFIG_CRYPTO_SHA512 is not set
68274 -# CONFIG_CRYPTO_WP512 is not set
68275 -# CONFIG_CRYPTO_TGR192 is not set
68276 -# CONFIG_CRYPTO_GF128MUL is not set
68277 -# CONFIG_CRYPTO_ECB is not set
68278 -CONFIG_CRYPTO_CBC=y
68279 -CONFIG_CRYPTO_PCBC=m
68280 -# CONFIG_CRYPTO_LRW is not set
68281 -# CONFIG_CRYPTO_XTS is not set
68282 -# CONFIG_CRYPTO_CTR is not set
68283 -# CONFIG_CRYPTO_GCM is not set
68284 -# CONFIG_CRYPTO_CCM is not set
68285 -# CONFIG_CRYPTO_CRYPTD is not set
68286 -CONFIG_CRYPTO_DES=y
68287 -# CONFIG_CRYPTO_FCRYPT is not set
68288 -# CONFIG_CRYPTO_BLOWFISH is not set
68289 -# CONFIG_CRYPTO_TWOFISH is not set
68290 -# CONFIG_CRYPTO_SERPENT is not set
68291 -# CONFIG_CRYPTO_AES is not set
68292 -# CONFIG_CRYPTO_CAST5 is not set
68293 -# CONFIG_CRYPTO_CAST6 is not set
68294 -# CONFIG_CRYPTO_TEA is not set
68295 -# CONFIG_CRYPTO_ARC4 is not set
68296 -# CONFIG_CRYPTO_KHAZAD is not set
68297 -# CONFIG_CRYPTO_ANUBIS is not set
68298 -# CONFIG_CRYPTO_SEED is not set
68299 -# CONFIG_CRYPTO_SALSA20 is not set
68300 -# CONFIG_CRYPTO_DEFLATE is not set
68301 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
68302 -# CONFIG_CRYPTO_CRC32C is not set
68303 -# CONFIG_CRYPTO_CAMELLIA is not set
68304 -# CONFIG_CRYPTO_TEST is not set
68305 -# CONFIG_CRYPTO_AUTHENC is not set
68306 -# CONFIG_CRYPTO_LZO is not set
68307 -CONFIG_CRYPTO_HW=y
68308 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
68309 -# CONFIG_PPC_CLOCK is not set
68310 Index: linux-2.6.25.4/arch/powerpc/configs/mpc8560_ads_defconfig
68311 ===================================================================
68312 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc8560_ads_defconfig
68313 +++ /dev/null
68314 @@ -1,885 +0,0 @@
68315 -#
68316 -# Automatically generated make config: don't edit
68317 -# Linux kernel version: 2.6.25-rc6
68318 -# Mon Mar 24 08:48:27 2008
68319 -#
68320 -# CONFIG_PPC64 is not set
68321 -
68322 -#
68323 -# Processor support
68324 -#
68325 -# CONFIG_6xx is not set
68326 -CONFIG_PPC_85xx=y
68327 -# CONFIG_PPC_8xx is not set
68328 -# CONFIG_40x is not set
68329 -# CONFIG_44x is not set
68330 -# CONFIG_E200 is not set
68331 -CONFIG_E500=y
68332 -CONFIG_BOOKE=y
68333 -CONFIG_FSL_BOOKE=y
68334 -CONFIG_FSL_EMB_PERFMON=y
68335 -# CONFIG_PHYS_64BIT is not set
68336 -CONFIG_SPE=y
68337 -# CONFIG_PPC_MM_SLICES is not set
68338 -CONFIG_PPC32=y
68339 -CONFIG_WORD_SIZE=32
68340 -CONFIG_PPC_MERGE=y
68341 -CONFIG_MMU=y
68342 -CONFIG_GENERIC_CMOS_UPDATE=y
68343 -CONFIG_GENERIC_TIME=y
68344 -CONFIG_GENERIC_TIME_VSYSCALL=y
68345 -CONFIG_GENERIC_CLOCKEVENTS=y
68346 -CONFIG_GENERIC_HARDIRQS=y
68347 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
68348 -CONFIG_IRQ_PER_CPU=y
68349 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
68350 -CONFIG_ARCH_HAS_ILOG2_U32=y
68351 -CONFIG_GENERIC_HWEIGHT=y
68352 -CONFIG_GENERIC_CALIBRATE_DELAY=y
68353 -CONFIG_GENERIC_FIND_NEXT_BIT=y
68354 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
68355 -CONFIG_PPC=y
68356 -CONFIG_EARLY_PRINTK=y
68357 -CONFIG_GENERIC_NVRAM=y
68358 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
68359 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
68360 -CONFIG_PPC_OF=y
68361 -CONFIG_OF=y
68362 -CONFIG_PPC_UDBG_16550=y
68363 -# CONFIG_GENERIC_TBSYNC is not set
68364 -CONFIG_AUDIT_ARCH=y
68365 -CONFIG_GENERIC_BUG=y
68366 -CONFIG_DEFAULT_UIMAGE=y
68367 -# CONFIG_PPC_DCR_NATIVE is not set
68368 -# CONFIG_PPC_DCR_MMIO is not set
68369 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
68370 -
68371 -#
68372 -# General setup
68373 -#
68374 -CONFIG_EXPERIMENTAL=y
68375 -CONFIG_BROKEN_ON_SMP=y
68376 -CONFIG_INIT_ENV_ARG_LIMIT=32
68377 -CONFIG_LOCALVERSION=""
68378 -CONFIG_LOCALVERSION_AUTO=y
68379 -CONFIG_SWAP=y
68380 -CONFIG_SYSVIPC=y
68381 -CONFIG_SYSVIPC_SYSCTL=y
68382 -# CONFIG_POSIX_MQUEUE is not set
68383 -# CONFIG_BSD_PROCESS_ACCT is not set
68384 -# CONFIG_TASKSTATS is not set
68385 -# CONFIG_AUDIT is not set
68386 -# CONFIG_IKCONFIG is not set
68387 -CONFIG_LOG_BUF_SHIFT=14
68388 -# CONFIG_CGROUPS is not set
68389 -CONFIG_GROUP_SCHED=y
68390 -# CONFIG_FAIR_GROUP_SCHED is not set
68391 -# CONFIG_RT_GROUP_SCHED is not set
68392 -CONFIG_USER_SCHED=y
68393 -# CONFIG_CGROUP_SCHED is not set
68394 -CONFIG_SYSFS_DEPRECATED=y
68395 -CONFIG_SYSFS_DEPRECATED_V2=y
68396 -# CONFIG_RELAY is not set
68397 -# CONFIG_NAMESPACES is not set
68398 -CONFIG_BLK_DEV_INITRD=y
68399 -CONFIG_INITRAMFS_SOURCE=""
68400 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
68401 -CONFIG_SYSCTL=y
68402 -CONFIG_EMBEDDED=y
68403 -CONFIG_SYSCTL_SYSCALL=y
68404 -CONFIG_KALLSYMS=y
68405 -# CONFIG_KALLSYMS_ALL is not set
68406 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
68407 -CONFIG_HOTPLUG=y
68408 -CONFIG_PRINTK=y
68409 -CONFIG_BUG=y
68410 -CONFIG_ELF_CORE=y
68411 -CONFIG_COMPAT_BRK=y
68412 -CONFIG_BASE_FULL=y
68413 -CONFIG_FUTEX=y
68414 -CONFIG_ANON_INODES=y
68415 -CONFIG_EPOLL=y
68416 -CONFIG_SIGNALFD=y
68417 -CONFIG_TIMERFD=y
68418 -CONFIG_EVENTFD=y
68419 -CONFIG_SHMEM=y
68420 -CONFIG_VM_EVENT_COUNTERS=y
68421 -CONFIG_SLUB_DEBUG=y
68422 -# CONFIG_SLAB is not set
68423 -CONFIG_SLUB=y
68424 -# CONFIG_SLOB is not set
68425 -# CONFIG_PROFILING is not set
68426 -# CONFIG_MARKERS is not set
68427 -CONFIG_HAVE_OPROFILE=y
68428 -CONFIG_HAVE_KPROBES=y
68429 -CONFIG_HAVE_KRETPROBES=y
68430 -CONFIG_PROC_PAGE_MONITOR=y
68431 -CONFIG_SLABINFO=y
68432 -CONFIG_RT_MUTEXES=y
68433 -# CONFIG_TINY_SHMEM is not set
68434 -CONFIG_BASE_SMALL=0
68435 -# CONFIG_MODULES is not set
68436 -CONFIG_BLOCK=y
68437 -# CONFIG_LBD is not set
68438 -# CONFIG_BLK_DEV_IO_TRACE is not set
68439 -# CONFIG_LSF is not set
68440 -# CONFIG_BLK_DEV_BSG is not set
68441 -
68442 -#
68443 -# IO Schedulers
68444 -#
68445 -CONFIG_IOSCHED_NOOP=y
68446 -CONFIG_IOSCHED_AS=y
68447 -CONFIG_IOSCHED_DEADLINE=y
68448 -CONFIG_IOSCHED_CFQ=y
68449 -CONFIG_DEFAULT_AS=y
68450 -# CONFIG_DEFAULT_DEADLINE is not set
68451 -# CONFIG_DEFAULT_CFQ is not set
68452 -# CONFIG_DEFAULT_NOOP is not set
68453 -CONFIG_DEFAULT_IOSCHED="anticipatory"
68454 -CONFIG_CLASSIC_RCU=y
68455 -
68456 -#
68457 -# Platform support
68458 -#
68459 -# CONFIG_PPC_MPC512x is not set
68460 -# CONFIG_PPC_MPC5121 is not set
68461 -# CONFIG_PPC_CELL is not set
68462 -# CONFIG_PPC_CELL_NATIVE is not set
68463 -# CONFIG_PQ2ADS is not set
68464 -CONFIG_MPC85xx=y
68465 -# CONFIG_MPC8540_ADS is not set
68466 -CONFIG_MPC8560_ADS=y
68467 -# CONFIG_MPC85xx_CDS is not set
68468 -# CONFIG_MPC85xx_MDS is not set
68469 -# CONFIG_MPC85xx_DS is not set
68470 -# CONFIG_STX_GP3 is not set
68471 -# CONFIG_TQM8540 is not set
68472 -# CONFIG_TQM8541 is not set
68473 -# CONFIG_TQM8555 is not set
68474 -# CONFIG_TQM8560 is not set
68475 -# CONFIG_SBC8548 is not set
68476 -# CONFIG_SBC8560 is not set
68477 -# CONFIG_IPIC is not set
68478 -CONFIG_MPIC=y
68479 -# CONFIG_MPIC_WEIRD is not set
68480 -# CONFIG_PPC_I8259 is not set
68481 -# CONFIG_PPC_RTAS is not set
68482 -# CONFIG_MMIO_NVRAM is not set
68483 -# CONFIG_PPC_MPC106 is not set
68484 -# CONFIG_PPC_970_NAP is not set
68485 -# CONFIG_PPC_INDIRECT_IO is not set
68486 -# CONFIG_GENERIC_IOMAP is not set
68487 -# CONFIG_CPU_FREQ is not set
68488 -CONFIG_CPM2=y
68489 -CONFIG_PPC_CPM_NEW_BINDING=y
68490 -# CONFIG_FSL_ULI1575 is not set
68491 -CONFIG_CPM=y
68492 -
68493 -#
68494 -# Kernel options
68495 -#
68496 -# CONFIG_HIGHMEM is not set
68497 -# CONFIG_TICK_ONESHOT is not set
68498 -# CONFIG_NO_HZ is not set
68499 -# CONFIG_HIGH_RES_TIMERS is not set
68500 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
68501 -# CONFIG_HZ_100 is not set
68502 -CONFIG_HZ_250=y
68503 -# CONFIG_HZ_300 is not set
68504 -# CONFIG_HZ_1000 is not set
68505 -CONFIG_HZ=250
68506 -# CONFIG_SCHED_HRTICK is not set
68507 -CONFIG_PREEMPT_NONE=y
68508 -# CONFIG_PREEMPT_VOLUNTARY is not set
68509 -# CONFIG_PREEMPT is not set
68510 -CONFIG_BINFMT_ELF=y
68511 -CONFIG_BINFMT_MISC=y
68512 -CONFIG_MATH_EMULATION=y
68513 -# CONFIG_IOMMU_HELPER is not set
68514 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
68515 -CONFIG_ARCH_HAS_WALK_MEMORY=y
68516 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
68517 -CONFIG_ARCH_FLATMEM_ENABLE=y
68518 -CONFIG_ARCH_POPULATES_NODE_MAP=y
68519 -CONFIG_SELECT_MEMORY_MODEL=y
68520 -CONFIG_FLATMEM_MANUAL=y
68521 -# CONFIG_DISCONTIGMEM_MANUAL is not set
68522 -# CONFIG_SPARSEMEM_MANUAL is not set
68523 -CONFIG_FLATMEM=y
68524 -CONFIG_FLAT_NODE_MEM_MAP=y
68525 -# CONFIG_SPARSEMEM_STATIC is not set
68526 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
68527 -CONFIG_SPLIT_PTLOCK_CPUS=4
68528 -# CONFIG_RESOURCES_64BIT is not set
68529 -CONFIG_ZONE_DMA_FLAG=1
68530 -CONFIG_BOUNCE=y
68531 -CONFIG_VIRT_TO_BUS=y
68532 -# CONFIG_PROC_DEVICETREE is not set
68533 -# CONFIG_CMDLINE_BOOL is not set
68534 -# CONFIG_PM is not set
68535 -# CONFIG_SECCOMP is not set
68536 -CONFIG_ISA_DMA_API=y
68537 -
68538 -#
68539 -# Bus options
68540 -#
68541 -CONFIG_ZONE_DMA=y
68542 -CONFIG_PPC_INDIRECT_PCI=y
68543 -CONFIG_FSL_SOC=y
68544 -CONFIG_FSL_PCI=y
68545 -CONFIG_PCI=y
68546 -CONFIG_PCI_DOMAINS=y
68547 -CONFIG_PCI_SYSCALL=y
68548 -# CONFIG_PCIEPORTBUS is not set
68549 -CONFIG_ARCH_SUPPORTS_MSI=y
68550 -# CONFIG_PCI_MSI is not set
68551 -CONFIG_PCI_LEGACY=y
68552 -CONFIG_PCI_DEBUG=y
68553 -# CONFIG_PCCARD is not set
68554 -# CONFIG_HOTPLUG_PCI is not set
68555 -
68556 -#
68557 -# Advanced setup
68558 -#
68559 -# CONFIG_ADVANCED_OPTIONS is not set
68560 -
68561 -#
68562 -# Default settings for advanced configuration options are used
68563 -#
68564 -CONFIG_HIGHMEM_START=0xfe000000
68565 -CONFIG_LOWMEM_SIZE=0x30000000
68566 -CONFIG_KERNEL_START=0xc0000000
68567 -CONFIG_TASK_SIZE=0xc0000000
68568 -CONFIG_BOOT_LOAD=0x00800000
68569 -
68570 -#
68571 -# Networking
68572 -#
68573 -CONFIG_NET=y
68574 -
68575 -#
68576 -# Networking options
68577 -#
68578 -CONFIG_PACKET=y
68579 -# CONFIG_PACKET_MMAP is not set
68580 -CONFIG_UNIX=y
68581 -CONFIG_XFRM=y
68582 -# CONFIG_XFRM_USER is not set
68583 -# CONFIG_XFRM_SUB_POLICY is not set
68584 -# CONFIG_XFRM_MIGRATE is not set
68585 -# CONFIG_XFRM_STATISTICS is not set
68586 -# CONFIG_NET_KEY is not set
68587 -CONFIG_INET=y
68588 -CONFIG_IP_MULTICAST=y
68589 -# CONFIG_IP_ADVANCED_ROUTER is not set
68590 -CONFIG_IP_FIB_HASH=y
68591 -CONFIG_IP_PNP=y
68592 -CONFIG_IP_PNP_DHCP=y
68593 -CONFIG_IP_PNP_BOOTP=y
68594 -# CONFIG_IP_PNP_RARP is not set
68595 -# CONFIG_NET_IPIP is not set
68596 -# CONFIG_NET_IPGRE is not set
68597 -# CONFIG_IP_MROUTE is not set
68598 -# CONFIG_ARPD is not set
68599 -CONFIG_SYN_COOKIES=y
68600 -# CONFIG_INET_AH is not set
68601 -# CONFIG_INET_ESP is not set
68602 -# CONFIG_INET_IPCOMP is not set
68603 -# CONFIG_INET_XFRM_TUNNEL is not set
68604 -# CONFIG_INET_TUNNEL is not set
68605 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
68606 -CONFIG_INET_XFRM_MODE_TUNNEL=y
68607 -CONFIG_INET_XFRM_MODE_BEET=y
68608 -# CONFIG_INET_LRO is not set
68609 -CONFIG_INET_DIAG=y
68610 -CONFIG_INET_TCP_DIAG=y
68611 -# CONFIG_TCP_CONG_ADVANCED is not set
68612 -CONFIG_TCP_CONG_CUBIC=y
68613 -CONFIG_DEFAULT_TCP_CONG="cubic"
68614 -# CONFIG_TCP_MD5SIG is not set
68615 -# CONFIG_IPV6 is not set
68616 -# CONFIG_INET6_XFRM_TUNNEL is not set
68617 -# CONFIG_INET6_TUNNEL is not set
68618 -# CONFIG_NETWORK_SECMARK is not set
68619 -# CONFIG_NETFILTER is not set
68620 -# CONFIG_IP_DCCP is not set
68621 -# CONFIG_IP_SCTP is not set
68622 -# CONFIG_TIPC is not set
68623 -# CONFIG_ATM is not set
68624 -# CONFIG_BRIDGE is not set
68625 -# CONFIG_VLAN_8021Q is not set
68626 -# CONFIG_DECNET is not set
68627 -# CONFIG_LLC2 is not set
68628 -# CONFIG_IPX is not set
68629 -# CONFIG_ATALK is not set
68630 -# CONFIG_X25 is not set
68631 -# CONFIG_LAPB is not set
68632 -# CONFIG_ECONET is not set
68633 -# CONFIG_WAN_ROUTER is not set
68634 -# CONFIG_NET_SCHED is not set
68635 -
68636 -#
68637 -# Network testing
68638 -#
68639 -# CONFIG_NET_PKTGEN is not set
68640 -# CONFIG_HAMRADIO is not set
68641 -# CONFIG_CAN is not set
68642 -# CONFIG_IRDA is not set
68643 -# CONFIG_BT is not set
68644 -# CONFIG_AF_RXRPC is not set
68645 -
68646 -#
68647 -# Wireless
68648 -#
68649 -# CONFIG_CFG80211 is not set
68650 -# CONFIG_WIRELESS_EXT is not set
68651 -# CONFIG_MAC80211 is not set
68652 -# CONFIG_IEEE80211 is not set
68653 -# CONFIG_RFKILL is not set
68654 -# CONFIG_NET_9P is not set
68655 -
68656 -#
68657 -# Device Drivers
68658 -#
68659 -
68660 -#
68661 -# Generic Driver Options
68662 -#
68663 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
68664 -CONFIG_STANDALONE=y
68665 -CONFIG_PREVENT_FIRMWARE_BUILD=y
68666 -# CONFIG_FW_LOADER is not set
68667 -# CONFIG_DEBUG_DRIVER is not set
68668 -# CONFIG_DEBUG_DEVRES is not set
68669 -# CONFIG_SYS_HYPERVISOR is not set
68670 -# CONFIG_CONNECTOR is not set
68671 -# CONFIG_MTD is not set
68672 -CONFIG_OF_DEVICE=y
68673 -# CONFIG_PARPORT is not set
68674 -CONFIG_BLK_DEV=y
68675 -# CONFIG_BLK_DEV_FD is not set
68676 -# CONFIG_BLK_CPQ_DA is not set
68677 -# CONFIG_BLK_CPQ_CISS_DA is not set
68678 -# CONFIG_BLK_DEV_DAC960 is not set
68679 -# CONFIG_BLK_DEV_UMEM is not set
68680 -# CONFIG_BLK_DEV_COW_COMMON is not set
68681 -CONFIG_BLK_DEV_LOOP=y
68682 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
68683 -# CONFIG_BLK_DEV_NBD is not set
68684 -# CONFIG_BLK_DEV_SX8 is not set
68685 -CONFIG_BLK_DEV_RAM=y
68686 -CONFIG_BLK_DEV_RAM_COUNT=16
68687 -CONFIG_BLK_DEV_RAM_SIZE=32768
68688 -# CONFIG_BLK_DEV_XIP is not set
68689 -# CONFIG_CDROM_PKTCDVD is not set
68690 -# CONFIG_ATA_OVER_ETH is not set
68691 -CONFIG_MISC_DEVICES=y
68692 -# CONFIG_PHANTOM is not set
68693 -# CONFIG_EEPROM_93CX6 is not set
68694 -# CONFIG_SGI_IOC4 is not set
68695 -# CONFIG_TIFM_CORE is not set
68696 -# CONFIG_ENCLOSURE_SERVICES is not set
68697 -CONFIG_HAVE_IDE=y
68698 -# CONFIG_IDE is not set
68699 -
68700 -#
68701 -# SCSI device support
68702 -#
68703 -# CONFIG_RAID_ATTRS is not set
68704 -# CONFIG_SCSI is not set
68705 -# CONFIG_SCSI_DMA is not set
68706 -# CONFIG_SCSI_NETLINK is not set
68707 -# CONFIG_ATA is not set
68708 -# CONFIG_MD is not set
68709 -# CONFIG_FUSION is not set
68710 -
68711 -#
68712 -# IEEE 1394 (FireWire) support
68713 -#
68714 -# CONFIG_FIREWIRE is not set
68715 -# CONFIG_IEEE1394 is not set
68716 -# CONFIG_I2O is not set
68717 -# CONFIG_MACINTOSH_DRIVERS is not set
68718 -CONFIG_NETDEVICES=y
68719 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
68720 -# CONFIG_DUMMY is not set
68721 -# CONFIG_BONDING is not set
68722 -# CONFIG_MACVLAN is not set
68723 -# CONFIG_EQUALIZER is not set
68724 -# CONFIG_TUN is not set
68725 -# CONFIG_VETH is not set
68726 -# CONFIG_ARCNET is not set
68727 -CONFIG_PHYLIB=y
68728 -
68729 -#
68730 -# MII PHY device drivers
68731 -#
68732 -CONFIG_MARVELL_PHY=y
68733 -CONFIG_DAVICOM_PHY=y
68734 -# CONFIG_QSEMI_PHY is not set
68735 -# CONFIG_LXT_PHY is not set
68736 -# CONFIG_CICADA_PHY is not set
68737 -# CONFIG_VITESSE_PHY is not set
68738 -# CONFIG_SMSC_PHY is not set
68739 -# CONFIG_BROADCOM_PHY is not set
68740 -# CONFIG_ICPLUS_PHY is not set
68741 -# CONFIG_REALTEK_PHY is not set
68742 -# CONFIG_FIXED_PHY is not set
68743 -# CONFIG_MDIO_BITBANG is not set
68744 -CONFIG_NET_ETHERNET=y
68745 -CONFIG_MII=y
68746 -# CONFIG_HAPPYMEAL is not set
68747 -# CONFIG_SUNGEM is not set
68748 -# CONFIG_CASSINI is not set
68749 -# CONFIG_NET_VENDOR_3COM is not set
68750 -# CONFIG_NET_TULIP is not set
68751 -# CONFIG_HP100 is not set
68752 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
68753 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
68754 -# CONFIG_IBM_NEW_EMAC_TAH is not set
68755 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
68756 -# CONFIG_NET_PCI is not set
68757 -# CONFIG_B44 is not set
68758 -CONFIG_FS_ENET=y
68759 -# CONFIG_FS_ENET_HAS_SCC is not set
68760 -CONFIG_FS_ENET_HAS_FCC=y
68761 -# CONFIG_FS_ENET_MDIO_FCC is not set
68762 -CONFIG_NETDEV_1000=y
68763 -# CONFIG_ACENIC is not set
68764 -# CONFIG_DL2K is not set
68765 -CONFIG_E1000=y
68766 -CONFIG_E1000_NAPI=y
68767 -# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set
68768 -# CONFIG_E1000E is not set
68769 -# CONFIG_E1000E_ENABLED is not set
68770 -# CONFIG_IP1000 is not set
68771 -# CONFIG_IGB is not set
68772 -# CONFIG_NS83820 is not set
68773 -# CONFIG_HAMACHI is not set
68774 -# CONFIG_YELLOWFIN is not set
68775 -# CONFIG_R8169 is not set
68776 -# CONFIG_SIS190 is not set
68777 -# CONFIG_SKGE is not set
68778 -# CONFIG_SKY2 is not set
68779 -# CONFIG_SK98LIN is not set
68780 -# CONFIG_VIA_VELOCITY is not set
68781 -# CONFIG_TIGON3 is not set
68782 -# CONFIG_BNX2 is not set
68783 -CONFIG_GIANFAR=y
68784 -CONFIG_GFAR_NAPI=y
68785 -# CONFIG_QLA3XXX is not set
68786 -# CONFIG_ATL1 is not set
68787 -CONFIG_NETDEV_10000=y
68788 -# CONFIG_CHELSIO_T1 is not set
68789 -# CONFIG_CHELSIO_T3 is not set
68790 -# CONFIG_IXGBE is not set
68791 -# CONFIG_IXGB is not set
68792 -# CONFIG_S2IO is not set
68793 -# CONFIG_MYRI10GE is not set
68794 -# CONFIG_NETXEN_NIC is not set
68795 -# CONFIG_NIU is not set
68796 -# CONFIG_MLX4_CORE is not set
68797 -# CONFIG_TEHUTI is not set
68798 -# CONFIG_BNX2X is not set
68799 -# CONFIG_TR is not set
68800 -
68801 -#
68802 -# Wireless LAN
68803 -#
68804 -# CONFIG_WLAN_PRE80211 is not set
68805 -# CONFIG_WLAN_80211 is not set
68806 -# CONFIG_WAN is not set
68807 -# CONFIG_FDDI is not set
68808 -# CONFIG_HIPPI is not set
68809 -# CONFIG_PPP is not set
68810 -# CONFIG_SLIP is not set
68811 -# CONFIG_NETCONSOLE is not set
68812 -# CONFIG_NETPOLL is not set
68813 -# CONFIG_NET_POLL_CONTROLLER is not set
68814 -# CONFIG_ISDN is not set
68815 -# CONFIG_PHONE is not set
68816 -
68817 -#
68818 -# Input device support
68819 -#
68820 -CONFIG_INPUT=y
68821 -# CONFIG_INPUT_FF_MEMLESS is not set
68822 -# CONFIG_INPUT_POLLDEV is not set
68823 -
68824 -#
68825 -# Userland interfaces
68826 -#
68827 -# CONFIG_INPUT_MOUSEDEV is not set
68828 -# CONFIG_INPUT_JOYDEV is not set
68829 -# CONFIG_INPUT_EVDEV is not set
68830 -# CONFIG_INPUT_EVBUG is not set
68831 -
68832 -#
68833 -# Input Device Drivers
68834 -#
68835 -# CONFIG_INPUT_KEYBOARD is not set
68836 -# CONFIG_INPUT_MOUSE is not set
68837 -# CONFIG_INPUT_JOYSTICK is not set
68838 -# CONFIG_INPUT_TABLET is not set
68839 -# CONFIG_INPUT_TOUCHSCREEN is not set
68840 -# CONFIG_INPUT_MISC is not set
68841 -
68842 -#
68843 -# Hardware I/O ports
68844 -#
68845 -# CONFIG_SERIO is not set
68846 -# CONFIG_GAMEPORT is not set
68847 -
68848 -#
68849 -# Character devices
68850 -#
68851 -# CONFIG_VT is not set
68852 -# CONFIG_SERIAL_NONSTANDARD is not set
68853 -# CONFIG_NOZOMI is not set
68854 -
68855 -#
68856 -# Serial drivers
68857 -#
68858 -# CONFIG_SERIAL_8250 is not set
68859 -
68860 -#
68861 -# Non-8250 serial port support
68862 -#
68863 -# CONFIG_SERIAL_UARTLITE is not set
68864 -CONFIG_SERIAL_CORE=y
68865 -CONFIG_SERIAL_CORE_CONSOLE=y
68866 -CONFIG_SERIAL_CPM=y
68867 -CONFIG_SERIAL_CPM_CONSOLE=y
68868 -CONFIG_SERIAL_CPM_SCC1=y
68869 -CONFIG_SERIAL_CPM_SCC2=y
68870 -# CONFIG_SERIAL_CPM_SCC3 is not set
68871 -# CONFIG_SERIAL_CPM_SCC4 is not set
68872 -# CONFIG_SERIAL_CPM_SMC1 is not set
68873 -# CONFIG_SERIAL_CPM_SMC2 is not set
68874 -# CONFIG_SERIAL_JSM is not set
68875 -CONFIG_UNIX98_PTYS=y
68876 -CONFIG_LEGACY_PTYS=y
68877 -CONFIG_LEGACY_PTY_COUNT=256
68878 -# CONFIG_IPMI_HANDLER is not set
68879 -CONFIG_HW_RANDOM=y
68880 -# CONFIG_NVRAM is not set
68881 -CONFIG_GEN_RTC=y
68882 -# CONFIG_GEN_RTC_X is not set
68883 -# CONFIG_R3964 is not set
68884 -# CONFIG_APPLICOM is not set
68885 -# CONFIG_RAW_DRIVER is not set
68886 -# CONFIG_TCG_TPM is not set
68887 -CONFIG_DEVPORT=y
68888 -# CONFIG_I2C is not set
68889 -
68890 -#
68891 -# SPI support
68892 -#
68893 -# CONFIG_SPI is not set
68894 -# CONFIG_SPI_MASTER is not set
68895 -# CONFIG_W1 is not set
68896 -# CONFIG_POWER_SUPPLY is not set
68897 -CONFIG_HWMON=y
68898 -# CONFIG_HWMON_VID is not set
68899 -# CONFIG_SENSORS_I5K_AMB is not set
68900 -# CONFIG_SENSORS_F71805F is not set
68901 -# CONFIG_SENSORS_F71882FG is not set
68902 -# CONFIG_SENSORS_IT87 is not set
68903 -# CONFIG_SENSORS_PC87360 is not set
68904 -# CONFIG_SENSORS_PC87427 is not set
68905 -# CONFIG_SENSORS_SIS5595 is not set
68906 -# CONFIG_SENSORS_SMSC47M1 is not set
68907 -# CONFIG_SENSORS_SMSC47B397 is not set
68908 -# CONFIG_SENSORS_VIA686A is not set
68909 -# CONFIG_SENSORS_VT1211 is not set
68910 -# CONFIG_SENSORS_VT8231 is not set
68911 -# CONFIG_SENSORS_W83627HF is not set
68912 -# CONFIG_SENSORS_W83627EHF is not set
68913 -# CONFIG_HWMON_DEBUG_CHIP is not set
68914 -# CONFIG_THERMAL is not set
68915 -# CONFIG_WATCHDOG is not set
68916 -
68917 -#
68918 -# Sonics Silicon Backplane
68919 -#
68920 -CONFIG_SSB_POSSIBLE=y
68921 -# CONFIG_SSB is not set
68922 -
68923 -#
68924 -# Multifunction device drivers
68925 -#
68926 -# CONFIG_MFD_SM501 is not set
68927 -
68928 -#
68929 -# Multimedia devices
68930 -#
68931 -# CONFIG_VIDEO_DEV is not set
68932 -# CONFIG_DVB_CORE is not set
68933 -CONFIG_DAB=y
68934 -
68935 -#
68936 -# Graphics support
68937 -#
68938 -# CONFIG_AGP is not set
68939 -# CONFIG_DRM is not set
68940 -# CONFIG_VGASTATE is not set
68941 -CONFIG_VIDEO_OUTPUT_CONTROL=y
68942 -# CONFIG_FB is not set
68943 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
68944 -
68945 -#
68946 -# Display device support
68947 -#
68948 -# CONFIG_DISPLAY_SUPPORT is not set
68949 -
68950 -#
68951 -# Sound
68952 -#
68953 -# CONFIG_SOUND is not set
68954 -CONFIG_HID_SUPPORT=y
68955 -CONFIG_HID=y
68956 -# CONFIG_HID_DEBUG is not set
68957 -# CONFIG_HIDRAW is not set
68958 -CONFIG_USB_SUPPORT=y
68959 -CONFIG_USB_ARCH_HAS_HCD=y
68960 -CONFIG_USB_ARCH_HAS_OHCI=y
68961 -CONFIG_USB_ARCH_HAS_EHCI=y
68962 -# CONFIG_USB is not set
68963 -
68964 -#
68965 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
68966 -#
68967 -# CONFIG_USB_GADGET is not set
68968 -# CONFIG_MMC is not set
68969 -# CONFIG_MEMSTICK is not set
68970 -# CONFIG_NEW_LEDS is not set
68971 -# CONFIG_INFINIBAND is not set
68972 -# CONFIG_EDAC is not set
68973 -# CONFIG_RTC_CLASS is not set
68974 -# CONFIG_DMADEVICES is not set
68975 -
68976 -#
68977 -# Userspace I/O
68978 -#
68979 -# CONFIG_UIO is not set
68980 -
68981 -#
68982 -# File systems
68983 -#
68984 -CONFIG_EXT2_FS=y
68985 -# CONFIG_EXT2_FS_XATTR is not set
68986 -# CONFIG_EXT2_FS_XIP is not set
68987 -CONFIG_EXT3_FS=y
68988 -CONFIG_EXT3_FS_XATTR=y
68989 -# CONFIG_EXT3_FS_POSIX_ACL is not set
68990 -# CONFIG_EXT3_FS_SECURITY is not set
68991 -# CONFIG_EXT4DEV_FS is not set
68992 -CONFIG_JBD=y
68993 -CONFIG_FS_MBCACHE=y
68994 -# CONFIG_REISERFS_FS is not set
68995 -# CONFIG_JFS_FS is not set
68996 -# CONFIG_FS_POSIX_ACL is not set
68997 -# CONFIG_XFS_FS is not set
68998 -# CONFIG_GFS2_FS is not set
68999 -# CONFIG_OCFS2_FS is not set
69000 -CONFIG_DNOTIFY=y
69001 -CONFIG_INOTIFY=y
69002 -CONFIG_INOTIFY_USER=y
69003 -# CONFIG_QUOTA is not set
69004 -# CONFIG_AUTOFS_FS is not set
69005 -# CONFIG_AUTOFS4_FS is not set
69006 -# CONFIG_FUSE_FS is not set
69007 -
69008 -#
69009 -# CD-ROM/DVD Filesystems
69010 -#
69011 -# CONFIG_ISO9660_FS is not set
69012 -# CONFIG_UDF_FS is not set
69013 -
69014 -#
69015 -# DOS/FAT/NT Filesystems
69016 -#
69017 -# CONFIG_MSDOS_FS is not set
69018 -# CONFIG_VFAT_FS is not set
69019 -# CONFIG_NTFS_FS is not set
69020 -
69021 -#
69022 -# Pseudo filesystems
69023 -#
69024 -CONFIG_PROC_FS=y
69025 -CONFIG_PROC_KCORE=y
69026 -CONFIG_PROC_SYSCTL=y
69027 -CONFIG_SYSFS=y
69028 -CONFIG_TMPFS=y
69029 -# CONFIG_TMPFS_POSIX_ACL is not set
69030 -# CONFIG_HUGETLB_PAGE is not set
69031 -# CONFIG_CONFIGFS_FS is not set
69032 -
69033 -#
69034 -# Miscellaneous filesystems
69035 -#
69036 -# CONFIG_ADFS_FS is not set
69037 -# CONFIG_AFFS_FS is not set
69038 -# CONFIG_HFS_FS is not set
69039 -# CONFIG_HFSPLUS_FS is not set
69040 -# CONFIG_BEFS_FS is not set
69041 -# CONFIG_BFS_FS is not set
69042 -# CONFIG_EFS_FS is not set
69043 -# CONFIG_CRAMFS is not set
69044 -# CONFIG_VXFS_FS is not set
69045 -# CONFIG_MINIX_FS is not set
69046 -# CONFIG_HPFS_FS is not set
69047 -# CONFIG_QNX4FS_FS is not set
69048 -# CONFIG_ROMFS_FS is not set
69049 -# CONFIG_SYSV_FS is not set
69050 -# CONFIG_UFS_FS is not set
69051 -CONFIG_NETWORK_FILESYSTEMS=y
69052 -CONFIG_NFS_FS=y
69053 -# CONFIG_NFS_V3 is not set
69054 -# CONFIG_NFS_V4 is not set
69055 -# CONFIG_NFS_DIRECTIO is not set
69056 -# CONFIG_NFSD is not set
69057 -CONFIG_ROOT_NFS=y
69058 -CONFIG_LOCKD=y
69059 -CONFIG_NFS_COMMON=y
69060 -CONFIG_SUNRPC=y
69061 -# CONFIG_SUNRPC_BIND34 is not set
69062 -# CONFIG_RPCSEC_GSS_KRB5 is not set
69063 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
69064 -# CONFIG_SMB_FS is not set
69065 -# CONFIG_CIFS is not set
69066 -# CONFIG_NCP_FS is not set
69067 -# CONFIG_CODA_FS is not set
69068 -# CONFIG_AFS_FS is not set
69069 -
69070 -#
69071 -# Partition Types
69072 -#
69073 -CONFIG_PARTITION_ADVANCED=y
69074 -# CONFIG_ACORN_PARTITION is not set
69075 -# CONFIG_OSF_PARTITION is not set
69076 -# CONFIG_AMIGA_PARTITION is not set
69077 -# CONFIG_ATARI_PARTITION is not set
69078 -# CONFIG_MAC_PARTITION is not set
69079 -# CONFIG_MSDOS_PARTITION is not set
69080 -# CONFIG_LDM_PARTITION is not set
69081 -# CONFIG_SGI_PARTITION is not set
69082 -# CONFIG_ULTRIX_PARTITION is not set
69083 -# CONFIG_SUN_PARTITION is not set
69084 -# CONFIG_KARMA_PARTITION is not set
69085 -# CONFIG_EFI_PARTITION is not set
69086 -# CONFIG_SYSV68_PARTITION is not set
69087 -# CONFIG_NLS is not set
69088 -# CONFIG_DLM is not set
69089 -
69090 -#
69091 -# Library routines
69092 -#
69093 -CONFIG_BITREVERSE=y
69094 -# CONFIG_CRC_CCITT is not set
69095 -# CONFIG_CRC16 is not set
69096 -# CONFIG_CRC_ITU_T is not set
69097 -CONFIG_CRC32=y
69098 -# CONFIG_CRC7 is not set
69099 -# CONFIG_LIBCRC32C is not set
69100 -CONFIG_PLIST=y
69101 -CONFIG_HAS_IOMEM=y
69102 -CONFIG_HAS_IOPORT=y
69103 -CONFIG_HAS_DMA=y
69104 -
69105 -#
69106 -# Kernel hacking
69107 -#
69108 -# CONFIG_PRINTK_TIME is not set
69109 -CONFIG_ENABLE_WARN_DEPRECATED=y
69110 -CONFIG_ENABLE_MUST_CHECK=y
69111 -# CONFIG_MAGIC_SYSRQ is not set
69112 -# CONFIG_UNUSED_SYMBOLS is not set
69113 -# CONFIG_DEBUG_FS is not set
69114 -# CONFIG_HEADERS_CHECK is not set
69115 -CONFIG_DEBUG_KERNEL=y
69116 -# CONFIG_DEBUG_SHIRQ is not set
69117 -CONFIG_DETECT_SOFTLOCKUP=y
69118 -CONFIG_SCHED_DEBUG=y
69119 -# CONFIG_SCHEDSTATS is not set
69120 -# CONFIG_TIMER_STATS is not set
69121 -# CONFIG_SLUB_DEBUG_ON is not set
69122 -# CONFIG_SLUB_STATS is not set
69123 -# CONFIG_DEBUG_RT_MUTEXES is not set
69124 -# CONFIG_RT_MUTEX_TESTER is not set
69125 -# CONFIG_DEBUG_SPINLOCK is not set
69126 -CONFIG_DEBUG_MUTEXES=y
69127 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
69128 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
69129 -# CONFIG_DEBUG_KOBJECT is not set
69130 -# CONFIG_DEBUG_BUGVERBOSE is not set
69131 -# CONFIG_DEBUG_INFO is not set
69132 -# CONFIG_DEBUG_VM is not set
69133 -# CONFIG_DEBUG_LIST is not set
69134 -# CONFIG_DEBUG_SG is not set
69135 -# CONFIG_BOOT_PRINTK_DELAY is not set
69136 -# CONFIG_BACKTRACE_SELF_TEST is not set
69137 -# CONFIG_FAULT_INJECTION is not set
69138 -# CONFIG_SAMPLES is not set
69139 -# CONFIG_DEBUG_STACKOVERFLOW is not set
69140 -# CONFIG_DEBUG_STACK_USAGE is not set
69141 -# CONFIG_DEBUG_PAGEALLOC is not set
69142 -# CONFIG_DEBUGGER is not set
69143 -# CONFIG_KGDB_CONSOLE is not set
69144 -# CONFIG_BDI_SWITCH is not set
69145 -# CONFIG_PPC_EARLY_DEBUG is not set
69146 -
69147 -#
69148 -# Security options
69149 -#
69150 -# CONFIG_KEYS is not set
69151 -# CONFIG_SECURITY is not set
69152 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
69153 -CONFIG_CRYPTO=y
69154 -# CONFIG_CRYPTO_SEQIV is not set
69155 -# CONFIG_CRYPTO_MANAGER is not set
69156 -# CONFIG_CRYPTO_HMAC is not set
69157 -# CONFIG_CRYPTO_XCBC is not set
69158 -# CONFIG_CRYPTO_NULL is not set
69159 -# CONFIG_CRYPTO_MD4 is not set
69160 -# CONFIG_CRYPTO_MD5 is not set
69161 -# CONFIG_CRYPTO_SHA1 is not set
69162 -# CONFIG_CRYPTO_SHA256 is not set
69163 -# CONFIG_CRYPTO_SHA512 is not set
69164 -# CONFIG_CRYPTO_WP512 is not set
69165 -# CONFIG_CRYPTO_TGR192 is not set
69166 -# CONFIG_CRYPTO_GF128MUL is not set
69167 -# CONFIG_CRYPTO_ECB is not set
69168 -# CONFIG_CRYPTO_CBC is not set
69169 -# CONFIG_CRYPTO_PCBC is not set
69170 -# CONFIG_CRYPTO_LRW is not set
69171 -# CONFIG_CRYPTO_XTS is not set
69172 -# CONFIG_CRYPTO_CTR is not set
69173 -# CONFIG_CRYPTO_GCM is not set
69174 -# CONFIG_CRYPTO_CCM is not set
69175 -# CONFIG_CRYPTO_CRYPTD is not set
69176 -# CONFIG_CRYPTO_DES is not set
69177 -# CONFIG_CRYPTO_FCRYPT is not set
69178 -# CONFIG_CRYPTO_BLOWFISH is not set
69179 -# CONFIG_CRYPTO_TWOFISH is not set
69180 -# CONFIG_CRYPTO_SERPENT is not set
69181 -# CONFIG_CRYPTO_AES is not set
69182 -# CONFIG_CRYPTO_CAST5 is not set
69183 -# CONFIG_CRYPTO_CAST6 is not set
69184 -# CONFIG_CRYPTO_TEA is not set
69185 -# CONFIG_CRYPTO_ARC4 is not set
69186 -# CONFIG_CRYPTO_KHAZAD is not set
69187 -# CONFIG_CRYPTO_ANUBIS is not set
69188 -# CONFIG_CRYPTO_SEED is not set
69189 -# CONFIG_CRYPTO_SALSA20 is not set
69190 -# CONFIG_CRYPTO_DEFLATE is not set
69191 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
69192 -# CONFIG_CRYPTO_CRC32C is not set
69193 -# CONFIG_CRYPTO_CAMELLIA is not set
69194 -# CONFIG_CRYPTO_AUTHENC is not set
69195 -# CONFIG_CRYPTO_LZO is not set
69196 -CONFIG_CRYPTO_HW=y
69197 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
69198 -# CONFIG_PPC_CLOCK is not set
69199 -CONFIG_PPC_LIB_RHEAP=y
69200 Index: linux-2.6.25.4/arch/powerpc/configs/mpc8568mds_defconfig
69201 ===================================================================
69202 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc8568mds_defconfig
69203 +++ /dev/null
69204 @@ -1,1117 +0,0 @@
69205 -#
69206 -# Automatically generated make config: don't edit
69207 -# Linux kernel version: 2.6.25-rc7
69208 -# Mon Mar 31 11:37:05 2008
69209 -#
69210 -# CONFIG_PPC64 is not set
69211 -
69212 -#
69213 -# Processor support
69214 -#
69215 -# CONFIG_6xx is not set
69216 -CONFIG_PPC_85xx=y
69217 -# CONFIG_PPC_8xx is not set
69218 -# CONFIG_40x is not set
69219 -# CONFIG_44x is not set
69220 -# CONFIG_E200 is not set
69221 -CONFIG_E500=y
69222 -CONFIG_BOOKE=y
69223 -CONFIG_FSL_BOOKE=y
69224 -CONFIG_FSL_EMB_PERFMON=y
69225 -# CONFIG_PHYS_64BIT is not set
69226 -CONFIG_SPE=y
69227 -# CONFIG_PPC_MM_SLICES is not set
69228 -CONFIG_PPC32=y
69229 -CONFIG_WORD_SIZE=32
69230 -CONFIG_PPC_MERGE=y
69231 -CONFIG_MMU=y
69232 -CONFIG_GENERIC_CMOS_UPDATE=y
69233 -CONFIG_GENERIC_TIME=y
69234 -CONFIG_GENERIC_TIME_VSYSCALL=y
69235 -CONFIG_GENERIC_CLOCKEVENTS=y
69236 -CONFIG_GENERIC_HARDIRQS=y
69237 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
69238 -CONFIG_IRQ_PER_CPU=y
69239 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
69240 -CONFIG_ARCH_HAS_ILOG2_U32=y
69241 -CONFIG_GENERIC_HWEIGHT=y
69242 -CONFIG_GENERIC_CALIBRATE_DELAY=y
69243 -CONFIG_GENERIC_FIND_NEXT_BIT=y
69244 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
69245 -CONFIG_PPC=y
69246 -CONFIG_EARLY_PRINTK=y
69247 -CONFIG_GENERIC_NVRAM=y
69248 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
69249 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
69250 -CONFIG_PPC_OF=y
69251 -CONFIG_OF=y
69252 -CONFIG_PPC_UDBG_16550=y
69253 -# CONFIG_GENERIC_TBSYNC is not set
69254 -CONFIG_AUDIT_ARCH=y
69255 -CONFIG_GENERIC_BUG=y
69256 -CONFIG_DEFAULT_UIMAGE=y
69257 -# CONFIG_PPC_DCR_NATIVE is not set
69258 -# CONFIG_PPC_DCR_MMIO is not set
69259 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
69260 -
69261 -#
69262 -# General setup
69263 -#
69264 -CONFIG_EXPERIMENTAL=y
69265 -CONFIG_BROKEN_ON_SMP=y
69266 -CONFIG_INIT_ENV_ARG_LIMIT=32
69267 -CONFIG_LOCALVERSION=""
69268 -CONFIG_LOCALVERSION_AUTO=y
69269 -CONFIG_SWAP=y
69270 -CONFIG_SYSVIPC=y
69271 -CONFIG_SYSVIPC_SYSCTL=y
69272 -# CONFIG_POSIX_MQUEUE is not set
69273 -# CONFIG_BSD_PROCESS_ACCT is not set
69274 -# CONFIG_TASKSTATS is not set
69275 -# CONFIG_AUDIT is not set
69276 -# CONFIG_IKCONFIG is not set
69277 -CONFIG_LOG_BUF_SHIFT=14
69278 -# CONFIG_CGROUPS is not set
69279 -CONFIG_GROUP_SCHED=y
69280 -# CONFIG_FAIR_GROUP_SCHED is not set
69281 -# CONFIG_RT_GROUP_SCHED is not set
69282 -CONFIG_USER_SCHED=y
69283 -# CONFIG_CGROUP_SCHED is not set
69284 -CONFIG_SYSFS_DEPRECATED=y
69285 -CONFIG_SYSFS_DEPRECATED_V2=y
69286 -# CONFIG_RELAY is not set
69287 -# CONFIG_NAMESPACES is not set
69288 -CONFIG_BLK_DEV_INITRD=y
69289 -CONFIG_INITRAMFS_SOURCE=""
69290 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
69291 -CONFIG_SYSCTL=y
69292 -CONFIG_EMBEDDED=y
69293 -CONFIG_SYSCTL_SYSCALL=y
69294 -# CONFIG_KALLSYMS is not set
69295 -CONFIG_HOTPLUG=y
69296 -CONFIG_PRINTK=y
69297 -CONFIG_BUG=y
69298 -CONFIG_ELF_CORE=y
69299 -CONFIG_COMPAT_BRK=y
69300 -CONFIG_BASE_FULL=y
69301 -CONFIG_FUTEX=y
69302 -CONFIG_ANON_INODES=y
69303 -# CONFIG_EPOLL is not set
69304 -CONFIG_SIGNALFD=y
69305 -CONFIG_TIMERFD=y
69306 -CONFIG_EVENTFD=y
69307 -CONFIG_SHMEM=y
69308 -CONFIG_VM_EVENT_COUNTERS=y
69309 -CONFIG_SLUB_DEBUG=y
69310 -# CONFIG_SLAB is not set
69311 -CONFIG_SLUB=y
69312 -# CONFIG_SLOB is not set
69313 -# CONFIG_PROFILING is not set
69314 -# CONFIG_MARKERS is not set
69315 -CONFIG_HAVE_OPROFILE=y
69316 -CONFIG_HAVE_KPROBES=y
69317 -CONFIG_HAVE_KRETPROBES=y
69318 -CONFIG_PROC_PAGE_MONITOR=y
69319 -CONFIG_SLABINFO=y
69320 -CONFIG_RT_MUTEXES=y
69321 -# CONFIG_TINY_SHMEM is not set
69322 -CONFIG_BASE_SMALL=0
69323 -CONFIG_MODULES=y
69324 -CONFIG_MODULE_UNLOAD=y
69325 -# CONFIG_MODULE_FORCE_UNLOAD is not set
69326 -# CONFIG_MODVERSIONS is not set
69327 -# CONFIG_MODULE_SRCVERSION_ALL is not set
69328 -# CONFIG_KMOD is not set
69329 -CONFIG_BLOCK=y
69330 -# CONFIG_LBD is not set
69331 -# CONFIG_BLK_DEV_IO_TRACE is not set
69332 -# CONFIG_LSF is not set
69333 -# CONFIG_BLK_DEV_BSG is not set
69334 -
69335 -#
69336 -# IO Schedulers
69337 -#
69338 -CONFIG_IOSCHED_NOOP=y
69339 -CONFIG_IOSCHED_AS=y
69340 -CONFIG_IOSCHED_DEADLINE=y
69341 -CONFIG_IOSCHED_CFQ=y
69342 -CONFIG_DEFAULT_AS=y
69343 -# CONFIG_DEFAULT_DEADLINE is not set
69344 -# CONFIG_DEFAULT_CFQ is not set
69345 -# CONFIG_DEFAULT_NOOP is not set
69346 -CONFIG_DEFAULT_IOSCHED="anticipatory"
69347 -CONFIG_CLASSIC_RCU=y
69348 -
69349 -#
69350 -# Platform support
69351 -#
69352 -# CONFIG_PPC_MPC512x is not set
69353 -# CONFIG_PPC_MPC5121 is not set
69354 -# CONFIG_PPC_CELL is not set
69355 -# CONFIG_PPC_CELL_NATIVE is not set
69356 -# CONFIG_PQ2ADS is not set
69357 -CONFIG_MPC85xx=y
69358 -# CONFIG_MPC8540_ADS is not set
69359 -# CONFIG_MPC8560_ADS is not set
69360 -# CONFIG_MPC85xx_CDS is not set
69361 -CONFIG_MPC85xx_MDS=y
69362 -# CONFIG_MPC85xx_DS is not set
69363 -# CONFIG_STX_GP3 is not set
69364 -# CONFIG_TQM8540 is not set
69365 -# CONFIG_TQM8541 is not set
69366 -# CONFIG_TQM8555 is not set
69367 -# CONFIG_TQM8560 is not set
69368 -# CONFIG_SBC8548 is not set
69369 -# CONFIG_SBC8560 is not set
69370 -# CONFIG_IPIC is not set
69371 -CONFIG_MPIC=y
69372 -# CONFIG_MPIC_WEIRD is not set
69373 -# CONFIG_PPC_I8259 is not set
69374 -# CONFIG_PPC_RTAS is not set
69375 -# CONFIG_MMIO_NVRAM is not set
69376 -# CONFIG_PPC_MPC106 is not set
69377 -# CONFIG_PPC_970_NAP is not set
69378 -# CONFIG_PPC_INDIRECT_IO is not set
69379 -# CONFIG_GENERIC_IOMAP is not set
69380 -# CONFIG_CPU_FREQ is not set
69381 -CONFIG_QUICC_ENGINE=y
69382 -# CONFIG_CPM2 is not set
69383 -# CONFIG_FSL_ULI1575 is not set
69384 -
69385 -#
69386 -# Kernel options
69387 -#
69388 -# CONFIG_HIGHMEM is not set
69389 -CONFIG_TICK_ONESHOT=y
69390 -CONFIG_NO_HZ=y
69391 -CONFIG_HIGH_RES_TIMERS=y
69392 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
69393 -# CONFIG_HZ_100 is not set
69394 -CONFIG_HZ_250=y
69395 -# CONFIG_HZ_300 is not set
69396 -# CONFIG_HZ_1000 is not set
69397 -CONFIG_HZ=250
69398 -# CONFIG_SCHED_HRTICK is not set
69399 -CONFIG_PREEMPT_NONE=y
69400 -# CONFIG_PREEMPT_VOLUNTARY is not set
69401 -# CONFIG_PREEMPT is not set
69402 -CONFIG_BINFMT_ELF=y
69403 -# CONFIG_BINFMT_MISC is not set
69404 -CONFIG_MATH_EMULATION=y
69405 -# CONFIG_IOMMU_HELPER is not set
69406 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
69407 -CONFIG_ARCH_HAS_WALK_MEMORY=y
69408 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
69409 -CONFIG_ARCH_FLATMEM_ENABLE=y
69410 -CONFIG_ARCH_POPULATES_NODE_MAP=y
69411 -CONFIG_SELECT_MEMORY_MODEL=y
69412 -CONFIG_FLATMEM_MANUAL=y
69413 -# CONFIG_DISCONTIGMEM_MANUAL is not set
69414 -# CONFIG_SPARSEMEM_MANUAL is not set
69415 -CONFIG_FLATMEM=y
69416 -CONFIG_FLAT_NODE_MEM_MAP=y
69417 -# CONFIG_SPARSEMEM_STATIC is not set
69418 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
69419 -CONFIG_SPLIT_PTLOCK_CPUS=4
69420 -# CONFIG_RESOURCES_64BIT is not set
69421 -CONFIG_ZONE_DMA_FLAG=1
69422 -CONFIG_BOUNCE=y
69423 -CONFIG_VIRT_TO_BUS=y
69424 -CONFIG_PROC_DEVICETREE=y
69425 -# CONFIG_CMDLINE_BOOL is not set
69426 -# CONFIG_PM is not set
69427 -CONFIG_SECCOMP=y
69428 -CONFIG_ISA_DMA_API=y
69429 -
69430 -#
69431 -# Bus options
69432 -#
69433 -CONFIG_ZONE_DMA=y
69434 -CONFIG_PPC_INDIRECT_PCI=y
69435 -CONFIG_FSL_SOC=y
69436 -CONFIG_FSL_PCI=y
69437 -CONFIG_PCI=y
69438 -CONFIG_PCI_DOMAINS=y
69439 -CONFIG_PCI_SYSCALL=y
69440 -# CONFIG_PCIEPORTBUS is not set
69441 -CONFIG_ARCH_SUPPORTS_MSI=y
69442 -# CONFIG_PCI_MSI is not set
69443 -CONFIG_PCI_LEGACY=y
69444 -# CONFIG_PCI_DEBUG is not set
69445 -# CONFIG_PCCARD is not set
69446 -# CONFIG_HOTPLUG_PCI is not set
69447 -
69448 -#
69449 -# Advanced setup
69450 -#
69451 -# CONFIG_ADVANCED_OPTIONS is not set
69452 -
69453 -#
69454 -# Default settings for advanced configuration options are used
69455 -#
69456 -CONFIG_HIGHMEM_START=0xfe000000
69457 -CONFIG_LOWMEM_SIZE=0x30000000
69458 -CONFIG_KERNEL_START=0xc0000000
69459 -CONFIG_TASK_SIZE=0xc0000000
69460 -CONFIG_BOOT_LOAD=0x00800000
69461 -
69462 -#
69463 -# Networking
69464 -#
69465 -CONFIG_NET=y
69466 -
69467 -#
69468 -# Networking options
69469 -#
69470 -CONFIG_PACKET=y
69471 -# CONFIG_PACKET_MMAP is not set
69472 -CONFIG_UNIX=y
69473 -CONFIG_XFRM=y
69474 -# CONFIG_XFRM_USER is not set
69475 -# CONFIG_XFRM_SUB_POLICY is not set
69476 -# CONFIG_XFRM_MIGRATE is not set
69477 -# CONFIG_XFRM_STATISTICS is not set
69478 -# CONFIG_NET_KEY is not set
69479 -CONFIG_INET=y
69480 -CONFIG_IP_MULTICAST=y
69481 -# CONFIG_IP_ADVANCED_ROUTER is not set
69482 -CONFIG_IP_FIB_HASH=y
69483 -CONFIG_IP_PNP=y
69484 -CONFIG_IP_PNP_DHCP=y
69485 -CONFIG_IP_PNP_BOOTP=y
69486 -# CONFIG_IP_PNP_RARP is not set
69487 -# CONFIG_NET_IPIP is not set
69488 -# CONFIG_NET_IPGRE is not set
69489 -# CONFIG_IP_MROUTE is not set
69490 -# CONFIG_ARPD is not set
69491 -CONFIG_SYN_COOKIES=y
69492 -# CONFIG_INET_AH is not set
69493 -# CONFIG_INET_ESP is not set
69494 -# CONFIG_INET_IPCOMP is not set
69495 -# CONFIG_INET_XFRM_TUNNEL is not set
69496 -# CONFIG_INET_TUNNEL is not set
69497 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
69498 -CONFIG_INET_XFRM_MODE_TUNNEL=y
69499 -CONFIG_INET_XFRM_MODE_BEET=y
69500 -# CONFIG_INET_LRO is not set
69501 -CONFIG_INET_DIAG=y
69502 -CONFIG_INET_TCP_DIAG=y
69503 -# CONFIG_TCP_CONG_ADVANCED is not set
69504 -CONFIG_TCP_CONG_CUBIC=y
69505 -CONFIG_DEFAULT_TCP_CONG="cubic"
69506 -# CONFIG_TCP_MD5SIG is not set
69507 -# CONFIG_IPV6 is not set
69508 -# CONFIG_INET6_XFRM_TUNNEL is not set
69509 -# CONFIG_INET6_TUNNEL is not set
69510 -# CONFIG_NETWORK_SECMARK is not set
69511 -# CONFIG_NETFILTER is not set
69512 -# CONFIG_IP_DCCP is not set
69513 -# CONFIG_IP_SCTP is not set
69514 -# CONFIG_TIPC is not set
69515 -# CONFIG_ATM is not set
69516 -# CONFIG_BRIDGE is not set
69517 -# CONFIG_VLAN_8021Q is not set
69518 -# CONFIG_DECNET is not set
69519 -# CONFIG_LLC2 is not set
69520 -# CONFIG_IPX is not set
69521 -# CONFIG_ATALK is not set
69522 -# CONFIG_X25 is not set
69523 -# CONFIG_LAPB is not set
69524 -# CONFIG_ECONET is not set
69525 -# CONFIG_WAN_ROUTER is not set
69526 -# CONFIG_NET_SCHED is not set
69527 -
69528 -#
69529 -# Network testing
69530 -#
69531 -# CONFIG_NET_PKTGEN is not set
69532 -# CONFIG_HAMRADIO is not set
69533 -# CONFIG_CAN is not set
69534 -# CONFIG_IRDA is not set
69535 -# CONFIG_BT is not set
69536 -# CONFIG_AF_RXRPC is not set
69537 -
69538 -#
69539 -# Wireless
69540 -#
69541 -# CONFIG_CFG80211 is not set
69542 -# CONFIG_WIRELESS_EXT is not set
69543 -# CONFIG_MAC80211 is not set
69544 -# CONFIG_IEEE80211 is not set
69545 -# CONFIG_RFKILL is not set
69546 -# CONFIG_NET_9P is not set
69547 -
69548 -#
69549 -# Device Drivers
69550 -#
69551 -
69552 -#
69553 -# Generic Driver Options
69554 -#
69555 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
69556 -CONFIG_STANDALONE=y
69557 -CONFIG_PREVENT_FIRMWARE_BUILD=y
69558 -# CONFIG_FW_LOADER is not set
69559 -# CONFIG_DEBUG_DRIVER is not set
69560 -# CONFIG_DEBUG_DEVRES is not set
69561 -# CONFIG_SYS_HYPERVISOR is not set
69562 -# CONFIG_CONNECTOR is not set
69563 -# CONFIG_MTD is not set
69564 -CONFIG_OF_DEVICE=y
69565 -# CONFIG_PARPORT is not set
69566 -CONFIG_BLK_DEV=y
69567 -# CONFIG_BLK_DEV_FD is not set
69568 -# CONFIG_BLK_CPQ_DA is not set
69569 -# CONFIG_BLK_CPQ_CISS_DA is not set
69570 -# CONFIG_BLK_DEV_DAC960 is not set
69571 -# CONFIG_BLK_DEV_UMEM is not set
69572 -# CONFIG_BLK_DEV_COW_COMMON is not set
69573 -CONFIG_BLK_DEV_LOOP=y
69574 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
69575 -# CONFIG_BLK_DEV_NBD is not set
69576 -# CONFIG_BLK_DEV_SX8 is not set
69577 -CONFIG_BLK_DEV_RAM=y
69578 -CONFIG_BLK_DEV_RAM_COUNT=16
69579 -CONFIG_BLK_DEV_RAM_SIZE=32768
69580 -# CONFIG_BLK_DEV_XIP is not set
69581 -# CONFIG_CDROM_PKTCDVD is not set
69582 -# CONFIG_ATA_OVER_ETH is not set
69583 -CONFIG_MISC_DEVICES=y
69584 -# CONFIG_PHANTOM is not set
69585 -# CONFIG_EEPROM_93CX6 is not set
69586 -# CONFIG_SGI_IOC4 is not set
69587 -# CONFIG_TIFM_CORE is not set
69588 -# CONFIG_ENCLOSURE_SERVICES is not set
69589 -CONFIG_HAVE_IDE=y
69590 -# CONFIG_IDE is not set
69591 -
69592 -#
69593 -# SCSI device support
69594 -#
69595 -# CONFIG_RAID_ATTRS is not set
69596 -CONFIG_SCSI=y
69597 -CONFIG_SCSI_DMA=y
69598 -# CONFIG_SCSI_TGT is not set
69599 -# CONFIG_SCSI_NETLINK is not set
69600 -CONFIG_SCSI_PROC_FS=y
69601 -
69602 -#
69603 -# SCSI support type (disk, tape, CD-ROM)
69604 -#
69605 -# CONFIG_BLK_DEV_SD is not set
69606 -# CONFIG_CHR_DEV_ST is not set
69607 -# CONFIG_CHR_DEV_OSST is not set
69608 -# CONFIG_BLK_DEV_SR is not set
69609 -# CONFIG_CHR_DEV_SG is not set
69610 -# CONFIG_CHR_DEV_SCH is not set
69611 -
69612 -#
69613 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
69614 -#
69615 -# CONFIG_SCSI_MULTI_LUN is not set
69616 -# CONFIG_SCSI_CONSTANTS is not set
69617 -# CONFIG_SCSI_LOGGING is not set
69618 -# CONFIG_SCSI_SCAN_ASYNC is not set
69619 -CONFIG_SCSI_WAIT_SCAN=m
69620 -
69621 -#
69622 -# SCSI Transports
69623 -#
69624 -# CONFIG_SCSI_SPI_ATTRS is not set
69625 -# CONFIG_SCSI_FC_ATTRS is not set
69626 -# CONFIG_SCSI_ISCSI_ATTRS is not set
69627 -# CONFIG_SCSI_SAS_LIBSAS is not set
69628 -# CONFIG_SCSI_SRP_ATTRS is not set
69629 -CONFIG_SCSI_LOWLEVEL=y
69630 -# CONFIG_ISCSI_TCP is not set
69631 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
69632 -# CONFIG_SCSI_3W_9XXX is not set
69633 -# CONFIG_SCSI_ACARD is not set
69634 -# CONFIG_SCSI_AACRAID is not set
69635 -# CONFIG_SCSI_AIC7XXX is not set
69636 -# CONFIG_SCSI_AIC7XXX_OLD is not set
69637 -# CONFIG_SCSI_AIC79XX is not set
69638 -# CONFIG_SCSI_AIC94XX is not set
69639 -# CONFIG_SCSI_DPT_I2O is not set
69640 -# CONFIG_SCSI_ADVANSYS is not set
69641 -# CONFIG_SCSI_ARCMSR is not set
69642 -# CONFIG_MEGARAID_NEWGEN is not set
69643 -# CONFIG_MEGARAID_LEGACY is not set
69644 -# CONFIG_MEGARAID_SAS is not set
69645 -# CONFIG_SCSI_HPTIOP is not set
69646 -# CONFIG_SCSI_BUSLOGIC is not set
69647 -# CONFIG_SCSI_DMX3191D is not set
69648 -# CONFIG_SCSI_EATA is not set
69649 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
69650 -# CONFIG_SCSI_GDTH is not set
69651 -# CONFIG_SCSI_IPS is not set
69652 -# CONFIG_SCSI_INITIO is not set
69653 -# CONFIG_SCSI_INIA100 is not set
69654 -# CONFIG_SCSI_MVSAS is not set
69655 -# CONFIG_SCSI_STEX is not set
69656 -# CONFIG_SCSI_SYM53C8XX_2 is not set
69657 -# CONFIG_SCSI_QLOGIC_1280 is not set
69658 -# CONFIG_SCSI_QLA_FC is not set
69659 -# CONFIG_SCSI_QLA_ISCSI is not set
69660 -# CONFIG_SCSI_LPFC is not set
69661 -# CONFIG_SCSI_DC395x is not set
69662 -# CONFIG_SCSI_DC390T is not set
69663 -# CONFIG_SCSI_NSP32 is not set
69664 -# CONFIG_SCSI_DEBUG is not set
69665 -# CONFIG_SCSI_SRP is not set
69666 -# CONFIG_ATA is not set
69667 -# CONFIG_MD is not set
69668 -# CONFIG_FUSION is not set
69669 -
69670 -#
69671 -# IEEE 1394 (FireWire) support
69672 -#
69673 -# CONFIG_FIREWIRE is not set
69674 -# CONFIG_IEEE1394 is not set
69675 -# CONFIG_I2O is not set
69676 -# CONFIG_MACINTOSH_DRIVERS is not set
69677 -CONFIG_NETDEVICES=y
69678 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
69679 -# CONFIG_DUMMY is not set
69680 -# CONFIG_BONDING is not set
69681 -# CONFIG_MACVLAN is not set
69682 -# CONFIG_EQUALIZER is not set
69683 -# CONFIG_TUN is not set
69684 -# CONFIG_VETH is not set
69685 -# CONFIG_ARCNET is not set
69686 -CONFIG_PHYLIB=y
69687 -
69688 -#
69689 -# MII PHY device drivers
69690 -#
69691 -CONFIG_MARVELL_PHY=y
69692 -# CONFIG_DAVICOM_PHY is not set
69693 -# CONFIG_QSEMI_PHY is not set
69694 -# CONFIG_LXT_PHY is not set
69695 -# CONFIG_CICADA_PHY is not set
69696 -# CONFIG_VITESSE_PHY is not set
69697 -# CONFIG_SMSC_PHY is not set
69698 -# CONFIG_BROADCOM_PHY is not set
69699 -# CONFIG_ICPLUS_PHY is not set
69700 -# CONFIG_REALTEK_PHY is not set
69701 -# CONFIG_FIXED_PHY is not set
69702 -# CONFIG_MDIO_BITBANG is not set
69703 -CONFIG_NET_ETHERNET=y
69704 -CONFIG_MII=y
69705 -# CONFIG_HAPPYMEAL is not set
69706 -# CONFIG_SUNGEM is not set
69707 -# CONFIG_CASSINI is not set
69708 -# CONFIG_NET_VENDOR_3COM is not set
69709 -# CONFIG_NET_TULIP is not set
69710 -# CONFIG_HP100 is not set
69711 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
69712 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
69713 -# CONFIG_IBM_NEW_EMAC_TAH is not set
69714 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
69715 -# CONFIG_NET_PCI is not set
69716 -# CONFIG_B44 is not set
69717 -CONFIG_NETDEV_1000=y
69718 -# CONFIG_ACENIC is not set
69719 -# CONFIG_DL2K is not set
69720 -# CONFIG_E1000 is not set
69721 -# CONFIG_E1000E is not set
69722 -# CONFIG_E1000E_ENABLED is not set
69723 -# CONFIG_IP1000 is not set
69724 -# CONFIG_IGB is not set
69725 -# CONFIG_NS83820 is not set
69726 -# CONFIG_HAMACHI is not set
69727 -# CONFIG_YELLOWFIN is not set
69728 -# CONFIG_R8169 is not set
69729 -# CONFIG_SIS190 is not set
69730 -# CONFIG_SKGE is not set
69731 -# CONFIG_SKY2 is not set
69732 -# CONFIG_SK98LIN is not set
69733 -# CONFIG_VIA_VELOCITY is not set
69734 -# CONFIG_TIGON3 is not set
69735 -# CONFIG_BNX2 is not set
69736 -CONFIG_GIANFAR=y
69737 -CONFIG_GFAR_NAPI=y
69738 -# CONFIG_UCC_GETH is not set
69739 -# CONFIG_QLA3XXX is not set
69740 -# CONFIG_ATL1 is not set
69741 -CONFIG_NETDEV_10000=y
69742 -# CONFIG_CHELSIO_T1 is not set
69743 -# CONFIG_CHELSIO_T3 is not set
69744 -# CONFIG_IXGBE is not set
69745 -# CONFIG_IXGB is not set
69746 -# CONFIG_S2IO is not set
69747 -# CONFIG_MYRI10GE is not set
69748 -# CONFIG_NETXEN_NIC is not set
69749 -# CONFIG_NIU is not set
69750 -# CONFIG_MLX4_CORE is not set
69751 -# CONFIG_TEHUTI is not set
69752 -# CONFIG_BNX2X is not set
69753 -# CONFIG_TR is not set
69754 -
69755 -#
69756 -# Wireless LAN
69757 -#
69758 -# CONFIG_WLAN_PRE80211 is not set
69759 -# CONFIG_WLAN_80211 is not set
69760 -# CONFIG_WAN is not set
69761 -# CONFIG_FDDI is not set
69762 -# CONFIG_HIPPI is not set
69763 -# CONFIG_PPP is not set
69764 -# CONFIG_SLIP is not set
69765 -# CONFIG_NET_FC is not set
69766 -# CONFIG_NETCONSOLE is not set
69767 -# CONFIG_NETPOLL is not set
69768 -# CONFIG_NET_POLL_CONTROLLER is not set
69769 -# CONFIG_ISDN is not set
69770 -# CONFIG_PHONE is not set
69771 -
69772 -#
69773 -# Input device support
69774 -#
69775 -CONFIG_INPUT=y
69776 -# CONFIG_INPUT_FF_MEMLESS is not set
69777 -# CONFIG_INPUT_POLLDEV is not set
69778 -
69779 -#
69780 -# Userland interfaces
69781 -#
69782 -# CONFIG_INPUT_MOUSEDEV is not set
69783 -# CONFIG_INPUT_JOYDEV is not set
69784 -# CONFIG_INPUT_EVDEV is not set
69785 -# CONFIG_INPUT_EVBUG is not set
69786 -
69787 -#
69788 -# Input Device Drivers
69789 -#
69790 -# CONFIG_INPUT_KEYBOARD is not set
69791 -# CONFIG_INPUT_MOUSE is not set
69792 -# CONFIG_INPUT_JOYSTICK is not set
69793 -# CONFIG_INPUT_TABLET is not set
69794 -# CONFIG_INPUT_TOUCHSCREEN is not set
69795 -# CONFIG_INPUT_MISC is not set
69796 -
69797 -#
69798 -# Hardware I/O ports
69799 -#
69800 -# CONFIG_SERIO is not set
69801 -# CONFIG_GAMEPORT is not set
69802 -
69803 -#
69804 -# Character devices
69805 -#
69806 -# CONFIG_VT is not set
69807 -# CONFIG_SERIAL_NONSTANDARD is not set
69808 -# CONFIG_NOZOMI is not set
69809 -
69810 -#
69811 -# Serial drivers
69812 -#
69813 -CONFIG_SERIAL_8250=y
69814 -CONFIG_SERIAL_8250_CONSOLE=y
69815 -CONFIG_SERIAL_8250_PCI=y
69816 -CONFIG_SERIAL_8250_NR_UARTS=4
69817 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
69818 -# CONFIG_SERIAL_8250_EXTENDED is not set
69819 -CONFIG_SERIAL_8250_SHARE_IRQ=y
69820 -
69821 -#
69822 -# Non-8250 serial port support
69823 -#
69824 -# CONFIG_SERIAL_UARTLITE is not set
69825 -CONFIG_SERIAL_CORE=y
69826 -CONFIG_SERIAL_CORE_CONSOLE=y
69827 -# CONFIG_SERIAL_JSM is not set
69828 -# CONFIG_SERIAL_OF_PLATFORM is not set
69829 -# CONFIG_SERIAL_QE is not set
69830 -CONFIG_UNIX98_PTYS=y
69831 -CONFIG_LEGACY_PTYS=y
69832 -CONFIG_LEGACY_PTY_COUNT=256
69833 -# CONFIG_IPMI_HANDLER is not set
69834 -CONFIG_HW_RANDOM=y
69835 -# CONFIG_NVRAM is not set
69836 -# CONFIG_GEN_RTC is not set
69837 -# CONFIG_R3964 is not set
69838 -# CONFIG_APPLICOM is not set
69839 -# CONFIG_RAW_DRIVER is not set
69840 -# CONFIG_TCG_TPM is not set
69841 -CONFIG_DEVPORT=y
69842 -CONFIG_I2C=y
69843 -CONFIG_I2C_BOARDINFO=y
69844 -CONFIG_I2C_CHARDEV=y
69845 -
69846 -#
69847 -# I2C Algorithms
69848 -#
69849 -# CONFIG_I2C_ALGOBIT is not set
69850 -# CONFIG_I2C_ALGOPCF is not set
69851 -# CONFIG_I2C_ALGOPCA is not set
69852 -
69853 -#
69854 -# I2C Hardware Bus support
69855 -#
69856 -# CONFIG_I2C_ALI1535 is not set
69857 -# CONFIG_I2C_ALI1563 is not set
69858 -# CONFIG_I2C_ALI15X3 is not set
69859 -# CONFIG_I2C_AMD756 is not set
69860 -# CONFIG_I2C_AMD8111 is not set
69861 -# CONFIG_I2C_I801 is not set
69862 -# CONFIG_I2C_I810 is not set
69863 -# CONFIG_I2C_PIIX4 is not set
69864 -CONFIG_I2C_MPC=y
69865 -# CONFIG_I2C_NFORCE2 is not set
69866 -# CONFIG_I2C_OCORES is not set
69867 -# CONFIG_I2C_PARPORT_LIGHT is not set
69868 -# CONFIG_I2C_PROSAVAGE is not set
69869 -# CONFIG_I2C_SAVAGE4 is not set
69870 -# CONFIG_I2C_SIMTEC is not set
69871 -# CONFIG_I2C_SIS5595 is not set
69872 -# CONFIG_I2C_SIS630 is not set
69873 -# CONFIG_I2C_SIS96X is not set
69874 -# CONFIG_I2C_TAOS_EVM is not set
69875 -# CONFIG_I2C_STUB is not set
69876 -# CONFIG_I2C_VIA is not set
69877 -# CONFIG_I2C_VIAPRO is not set
69878 -# CONFIG_I2C_VOODOO3 is not set
69879 -
69880 -#
69881 -# Miscellaneous I2C Chip support
69882 -#
69883 -# CONFIG_DS1682 is not set
69884 -# CONFIG_SENSORS_EEPROM is not set
69885 -# CONFIG_SENSORS_PCF8574 is not set
69886 -# CONFIG_PCF8575 is not set
69887 -# CONFIG_SENSORS_PCF8591 is not set
69888 -# CONFIG_TPS65010 is not set
69889 -# CONFIG_SENSORS_MAX6875 is not set
69890 -# CONFIG_SENSORS_TSL2550 is not set
69891 -# CONFIG_I2C_DEBUG_CORE is not set
69892 -# CONFIG_I2C_DEBUG_ALGO is not set
69893 -# CONFIG_I2C_DEBUG_BUS is not set
69894 -# CONFIG_I2C_DEBUG_CHIP is not set
69895 -
69896 -#
69897 -# SPI support
69898 -#
69899 -# CONFIG_SPI is not set
69900 -# CONFIG_SPI_MASTER is not set
69901 -# CONFIG_W1 is not set
69902 -# CONFIG_POWER_SUPPLY is not set
69903 -CONFIG_HWMON=y
69904 -# CONFIG_HWMON_VID is not set
69905 -# CONFIG_SENSORS_AD7418 is not set
69906 -# CONFIG_SENSORS_ADM1021 is not set
69907 -# CONFIG_SENSORS_ADM1025 is not set
69908 -# CONFIG_SENSORS_ADM1026 is not set
69909 -# CONFIG_SENSORS_ADM1029 is not set
69910 -# CONFIG_SENSORS_ADM1031 is not set
69911 -# CONFIG_SENSORS_ADM9240 is not set
69912 -# CONFIG_SENSORS_ADT7470 is not set
69913 -# CONFIG_SENSORS_ADT7473 is not set
69914 -# CONFIG_SENSORS_ATXP1 is not set
69915 -# CONFIG_SENSORS_DS1621 is not set
69916 -# CONFIG_SENSORS_I5K_AMB is not set
69917 -# CONFIG_SENSORS_F71805F is not set
69918 -# CONFIG_SENSORS_F71882FG is not set
69919 -# CONFIG_SENSORS_F75375S is not set
69920 -# CONFIG_SENSORS_GL518SM is not set
69921 -# CONFIG_SENSORS_GL520SM is not set
69922 -# CONFIG_SENSORS_IT87 is not set
69923 -# CONFIG_SENSORS_LM63 is not set
69924 -# CONFIG_SENSORS_LM75 is not set
69925 -# CONFIG_SENSORS_LM77 is not set
69926 -# CONFIG_SENSORS_LM78 is not set
69927 -# CONFIG_SENSORS_LM80 is not set
69928 -# CONFIG_SENSORS_LM83 is not set
69929 -# CONFIG_SENSORS_LM85 is not set
69930 -# CONFIG_SENSORS_LM87 is not set
69931 -# CONFIG_SENSORS_LM90 is not set
69932 -# CONFIG_SENSORS_LM92 is not set
69933 -# CONFIG_SENSORS_LM93 is not set
69934 -# CONFIG_SENSORS_MAX1619 is not set
69935 -# CONFIG_SENSORS_MAX6650 is not set
69936 -# CONFIG_SENSORS_PC87360 is not set
69937 -# CONFIG_SENSORS_PC87427 is not set
69938 -# CONFIG_SENSORS_SIS5595 is not set
69939 -# CONFIG_SENSORS_DME1737 is not set
69940 -# CONFIG_SENSORS_SMSC47M1 is not set
69941 -# CONFIG_SENSORS_SMSC47M192 is not set
69942 -# CONFIG_SENSORS_SMSC47B397 is not set
69943 -# CONFIG_SENSORS_ADS7828 is not set
69944 -# CONFIG_SENSORS_THMC50 is not set
69945 -# CONFIG_SENSORS_VIA686A is not set
69946 -# CONFIG_SENSORS_VT1211 is not set
69947 -# CONFIG_SENSORS_VT8231 is not set
69948 -# CONFIG_SENSORS_W83781D is not set
69949 -# CONFIG_SENSORS_W83791D is not set
69950 -# CONFIG_SENSORS_W83792D is not set
69951 -# CONFIG_SENSORS_W83793 is not set
69952 -# CONFIG_SENSORS_W83L785TS is not set
69953 -# CONFIG_SENSORS_W83L786NG is not set
69954 -# CONFIG_SENSORS_W83627HF is not set
69955 -# CONFIG_SENSORS_W83627EHF is not set
69956 -# CONFIG_HWMON_DEBUG_CHIP is not set
69957 -# CONFIG_THERMAL is not set
69958 -CONFIG_WATCHDOG=y
69959 -# CONFIG_WATCHDOG_NOWAYOUT is not set
69960 -
69961 -#
69962 -# Watchdog Device Drivers
69963 -#
69964 -# CONFIG_SOFT_WATCHDOG is not set
69965 -# CONFIG_BOOKE_WDT is not set
69966 -
69967 -#
69968 -# PCI-based Watchdog Cards
69969 -#
69970 -# CONFIG_PCIPCWATCHDOG is not set
69971 -# CONFIG_WDTPCI is not set
69972 -
69973 -#
69974 -# Sonics Silicon Backplane
69975 -#
69976 -CONFIG_SSB_POSSIBLE=y
69977 -# CONFIG_SSB is not set
69978 -
69979 -#
69980 -# Multifunction device drivers
69981 -#
69982 -# CONFIG_MFD_SM501 is not set
69983 -
69984 -#
69985 -# Multimedia devices
69986 -#
69987 -# CONFIG_VIDEO_DEV is not set
69988 -# CONFIG_DVB_CORE is not set
69989 -CONFIG_DAB=y
69990 -
69991 -#
69992 -# Graphics support
69993 -#
69994 -# CONFIG_AGP is not set
69995 -# CONFIG_DRM is not set
69996 -# CONFIG_VGASTATE is not set
69997 -CONFIG_VIDEO_OUTPUT_CONTROL=m
69998 -# CONFIG_FB is not set
69999 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
70000 -
70001 -#
70002 -# Display device support
70003 -#
70004 -# CONFIG_DISPLAY_SUPPORT is not set
70005 -
70006 -#
70007 -# Sound
70008 -#
70009 -# CONFIG_SOUND is not set
70010 -CONFIG_HID_SUPPORT=y
70011 -CONFIG_HID=y
70012 -# CONFIG_HID_DEBUG is not set
70013 -# CONFIG_HIDRAW is not set
70014 -CONFIG_USB_SUPPORT=y
70015 -CONFIG_USB_ARCH_HAS_HCD=y
70016 -CONFIG_USB_ARCH_HAS_OHCI=y
70017 -CONFIG_USB_ARCH_HAS_EHCI=y
70018 -# CONFIG_USB is not set
70019 -
70020 -#
70021 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
70022 -#
70023 -# CONFIG_USB_GADGET is not set
70024 -# CONFIG_MMC is not set
70025 -# CONFIG_MEMSTICK is not set
70026 -# CONFIG_NEW_LEDS is not set
70027 -# CONFIG_INFINIBAND is not set
70028 -# CONFIG_EDAC is not set
70029 -CONFIG_RTC_LIB=y
70030 -CONFIG_RTC_CLASS=y
70031 -CONFIG_RTC_HCTOSYS=y
70032 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
70033 -# CONFIG_RTC_DEBUG is not set
70034 -
70035 -#
70036 -# RTC interfaces
70037 -#
70038 -CONFIG_RTC_INTF_SYSFS=y
70039 -CONFIG_RTC_INTF_PROC=y
70040 -CONFIG_RTC_INTF_DEV=y
70041 -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
70042 -# CONFIG_RTC_DRV_TEST is not set
70043 -
70044 -#
70045 -# I2C RTC drivers
70046 -#
70047 -# CONFIG_RTC_DRV_DS1307 is not set
70048 -CONFIG_RTC_DRV_DS1374=y
70049 -# CONFIG_RTC_DRV_DS1672 is not set
70050 -# CONFIG_RTC_DRV_MAX6900 is not set
70051 -# CONFIG_RTC_DRV_RS5C372 is not set
70052 -# CONFIG_RTC_DRV_ISL1208 is not set
70053 -# CONFIG_RTC_DRV_X1205 is not set
70054 -# CONFIG_RTC_DRV_PCF8563 is not set
70055 -# CONFIG_RTC_DRV_PCF8583 is not set
70056 -# CONFIG_RTC_DRV_M41T80 is not set
70057 -# CONFIG_RTC_DRV_S35390A is not set
70058 -
70059 -#
70060 -# SPI RTC drivers
70061 -#
70062 -
70063 -#
70064 -# Platform RTC drivers
70065 -#
70066 -# CONFIG_RTC_DRV_CMOS is not set
70067 -# CONFIG_RTC_DRV_DS1511 is not set
70068 -# CONFIG_RTC_DRV_DS1553 is not set
70069 -# CONFIG_RTC_DRV_DS1742 is not set
70070 -# CONFIG_RTC_DRV_STK17TA8 is not set
70071 -# CONFIG_RTC_DRV_M48T86 is not set
70072 -# CONFIG_RTC_DRV_M48T59 is not set
70073 -# CONFIG_RTC_DRV_V3020 is not set
70074 -
70075 -#
70076 -# on-CPU RTC drivers
70077 -#
70078 -# CONFIG_DMADEVICES is not set
70079 -
70080 -#
70081 -# Userspace I/O
70082 -#
70083 -# CONFIG_UIO is not set
70084 -
70085 -#
70086 -# File systems
70087 -#
70088 -CONFIG_EXT2_FS=y
70089 -# CONFIG_EXT2_FS_XATTR is not set
70090 -# CONFIG_EXT2_FS_XIP is not set
70091 -CONFIG_EXT3_FS=y
70092 -CONFIG_EXT3_FS_XATTR=y
70093 -# CONFIG_EXT3_FS_POSIX_ACL is not set
70094 -# CONFIG_EXT3_FS_SECURITY is not set
70095 -# CONFIG_EXT4DEV_FS is not set
70096 -CONFIG_JBD=y
70097 -CONFIG_FS_MBCACHE=y
70098 -# CONFIG_REISERFS_FS is not set
70099 -# CONFIG_JFS_FS is not set
70100 -# CONFIG_FS_POSIX_ACL is not set
70101 -# CONFIG_XFS_FS is not set
70102 -# CONFIG_GFS2_FS is not set
70103 -# CONFIG_OCFS2_FS is not set
70104 -CONFIG_DNOTIFY=y
70105 -CONFIG_INOTIFY=y
70106 -CONFIG_INOTIFY_USER=y
70107 -# CONFIG_QUOTA is not set
70108 -# CONFIG_AUTOFS_FS is not set
70109 -# CONFIG_AUTOFS4_FS is not set
70110 -# CONFIG_FUSE_FS is not set
70111 -
70112 -#
70113 -# CD-ROM/DVD Filesystems
70114 -#
70115 -# CONFIG_ISO9660_FS is not set
70116 -# CONFIG_UDF_FS is not set
70117 -
70118 -#
70119 -# DOS/FAT/NT Filesystems
70120 -#
70121 -# CONFIG_MSDOS_FS is not set
70122 -# CONFIG_VFAT_FS is not set
70123 -# CONFIG_NTFS_FS is not set
70124 -
70125 -#
70126 -# Pseudo filesystems
70127 -#
70128 -CONFIG_PROC_FS=y
70129 -CONFIG_PROC_KCORE=y
70130 -CONFIG_PROC_SYSCTL=y
70131 -CONFIG_SYSFS=y
70132 -CONFIG_TMPFS=y
70133 -# CONFIG_TMPFS_POSIX_ACL is not set
70134 -# CONFIG_HUGETLB_PAGE is not set
70135 -# CONFIG_CONFIGFS_FS is not set
70136 -
70137 -#
70138 -# Miscellaneous filesystems
70139 -#
70140 -# CONFIG_ADFS_FS is not set
70141 -# CONFIG_AFFS_FS is not set
70142 -# CONFIG_HFS_FS is not set
70143 -# CONFIG_HFSPLUS_FS is not set
70144 -# CONFIG_BEFS_FS is not set
70145 -# CONFIG_BFS_FS is not set
70146 -# CONFIG_EFS_FS is not set
70147 -# CONFIG_CRAMFS is not set
70148 -# CONFIG_VXFS_FS is not set
70149 -# CONFIG_MINIX_FS is not set
70150 -# CONFIG_HPFS_FS is not set
70151 -# CONFIG_QNX4FS_FS is not set
70152 -# CONFIG_ROMFS_FS is not set
70153 -# CONFIG_SYSV_FS is not set
70154 -# CONFIG_UFS_FS is not set
70155 -CONFIG_NETWORK_FILESYSTEMS=y
70156 -CONFIG_NFS_FS=y
70157 -CONFIG_NFS_V3=y
70158 -# CONFIG_NFS_V3_ACL is not set
70159 -CONFIG_NFS_V4=y
70160 -# CONFIG_NFS_DIRECTIO is not set
70161 -# CONFIG_NFSD is not set
70162 -CONFIG_ROOT_NFS=y
70163 -CONFIG_LOCKD=y
70164 -CONFIG_LOCKD_V4=y
70165 -CONFIG_NFS_COMMON=y
70166 -CONFIG_SUNRPC=y
70167 -CONFIG_SUNRPC_GSS=y
70168 -# CONFIG_SUNRPC_BIND34 is not set
70169 -CONFIG_RPCSEC_GSS_KRB5=y
70170 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
70171 -# CONFIG_SMB_FS is not set
70172 -# CONFIG_CIFS is not set
70173 -# CONFIG_NCP_FS is not set
70174 -# CONFIG_CODA_FS is not set
70175 -# CONFIG_AFS_FS is not set
70176 -
70177 -#
70178 -# Partition Types
70179 -#
70180 -CONFIG_PARTITION_ADVANCED=y
70181 -# CONFIG_ACORN_PARTITION is not set
70182 -# CONFIG_OSF_PARTITION is not set
70183 -# CONFIG_AMIGA_PARTITION is not set
70184 -# CONFIG_ATARI_PARTITION is not set
70185 -# CONFIG_MAC_PARTITION is not set
70186 -# CONFIG_MSDOS_PARTITION is not set
70187 -# CONFIG_LDM_PARTITION is not set
70188 -# CONFIG_SGI_PARTITION is not set
70189 -# CONFIG_ULTRIX_PARTITION is not set
70190 -# CONFIG_SUN_PARTITION is not set
70191 -# CONFIG_KARMA_PARTITION is not set
70192 -# CONFIG_EFI_PARTITION is not set
70193 -# CONFIG_SYSV68_PARTITION is not set
70194 -# CONFIG_NLS is not set
70195 -# CONFIG_DLM is not set
70196 -
70197 -#
70198 -# Library routines
70199 -#
70200 -CONFIG_BITREVERSE=y
70201 -# CONFIG_CRC_CCITT is not set
70202 -# CONFIG_CRC16 is not set
70203 -# CONFIG_CRC_ITU_T is not set
70204 -CONFIG_CRC32=y
70205 -# CONFIG_CRC7 is not set
70206 -# CONFIG_LIBCRC32C is not set
70207 -CONFIG_PLIST=y
70208 -CONFIG_HAS_IOMEM=y
70209 -CONFIG_HAS_IOPORT=y
70210 -CONFIG_HAS_DMA=y
70211 -
70212 -#
70213 -# Kernel hacking
70214 -#
70215 -# CONFIG_PRINTK_TIME is not set
70216 -CONFIG_ENABLE_WARN_DEPRECATED=y
70217 -CONFIG_ENABLE_MUST_CHECK=y
70218 -# CONFIG_MAGIC_SYSRQ is not set
70219 -# CONFIG_UNUSED_SYMBOLS is not set
70220 -# CONFIG_DEBUG_FS is not set
70221 -# CONFIG_HEADERS_CHECK is not set
70222 -CONFIG_DEBUG_KERNEL=y
70223 -# CONFIG_DEBUG_SHIRQ is not set
70224 -CONFIG_DETECT_SOFTLOCKUP=y
70225 -CONFIG_SCHED_DEBUG=y
70226 -# CONFIG_SCHEDSTATS is not set
70227 -# CONFIG_TIMER_STATS is not set
70228 -# CONFIG_SLUB_DEBUG_ON is not set
70229 -# CONFIG_SLUB_STATS is not set
70230 -# CONFIG_DEBUG_RT_MUTEXES is not set
70231 -# CONFIG_RT_MUTEX_TESTER is not set
70232 -# CONFIG_DEBUG_SPINLOCK is not set
70233 -# CONFIG_DEBUG_MUTEXES is not set
70234 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
70235 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
70236 -# CONFIG_DEBUG_KOBJECT is not set
70237 -# CONFIG_DEBUG_BUGVERBOSE is not set
70238 -# CONFIG_DEBUG_INFO is not set
70239 -# CONFIG_DEBUG_VM is not set
70240 -# CONFIG_DEBUG_LIST is not set
70241 -# CONFIG_DEBUG_SG is not set
70242 -# CONFIG_BOOT_PRINTK_DELAY is not set
70243 -# CONFIG_RCU_TORTURE_TEST is not set
70244 -# CONFIG_BACKTRACE_SELF_TEST is not set
70245 -# CONFIG_FAULT_INJECTION is not set
70246 -# CONFIG_SAMPLES is not set
70247 -# CONFIG_DEBUG_STACKOVERFLOW is not set
70248 -# CONFIG_DEBUG_STACK_USAGE is not set
70249 -# CONFIG_DEBUG_PAGEALLOC is not set
70250 -CONFIG_DEBUGGER=y
70251 -# CONFIG_XMON is not set
70252 -# CONFIG_BDI_SWITCH is not set
70253 -CONFIG_PPC_EARLY_DEBUG=y
70254 -# CONFIG_PPC_EARLY_DEBUG_LPAR is not set
70255 -# CONFIG_PPC_EARLY_DEBUG_G5 is not set
70256 -# CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set
70257 -# CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set
70258 -# CONFIG_PPC_EARLY_DEBUG_MAPLE is not set
70259 -# CONFIG_PPC_EARLY_DEBUG_ISERIES is not set
70260 -# CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set
70261 -# CONFIG_PPC_EARLY_DEBUG_BEAT is not set
70262 -# CONFIG_PPC_EARLY_DEBUG_44x is not set
70263 -# CONFIG_PPC_EARLY_DEBUG_40x is not set
70264 -# CONFIG_PPC_EARLY_DEBUG_CPM is not set
70265 -
70266 -#
70267 -# Security options
70268 -#
70269 -# CONFIG_KEYS is not set
70270 -# CONFIG_SECURITY is not set
70271 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
70272 -CONFIG_CRYPTO=y
70273 -CONFIG_CRYPTO_ALGAPI=y
70274 -CONFIG_CRYPTO_BLKCIPHER=y
70275 -# CONFIG_CRYPTO_SEQIV is not set
70276 -CONFIG_CRYPTO_MANAGER=y
70277 -# CONFIG_CRYPTO_HMAC is not set
70278 -# CONFIG_CRYPTO_XCBC is not set
70279 -# CONFIG_CRYPTO_NULL is not set
70280 -# CONFIG_CRYPTO_MD4 is not set
70281 -CONFIG_CRYPTO_MD5=y
70282 -# CONFIG_CRYPTO_SHA1 is not set
70283 -# CONFIG_CRYPTO_SHA256 is not set
70284 -# CONFIG_CRYPTO_SHA512 is not set
70285 -# CONFIG_CRYPTO_WP512 is not set
70286 -# CONFIG_CRYPTO_TGR192 is not set
70287 -# CONFIG_CRYPTO_GF128MUL is not set
70288 -CONFIG_CRYPTO_ECB=m
70289 -CONFIG_CRYPTO_CBC=y
70290 -CONFIG_CRYPTO_PCBC=m
70291 -# CONFIG_CRYPTO_LRW is not set
70292 -# CONFIG_CRYPTO_XTS is not set
70293 -# CONFIG_CRYPTO_CTR is not set
70294 -# CONFIG_CRYPTO_GCM is not set
70295 -# CONFIG_CRYPTO_CCM is not set
70296 -# CONFIG_CRYPTO_CRYPTD is not set
70297 -CONFIG_CRYPTO_DES=y
70298 -# CONFIG_CRYPTO_FCRYPT is not set
70299 -# CONFIG_CRYPTO_BLOWFISH is not set
70300 -# CONFIG_CRYPTO_TWOFISH is not set
70301 -# CONFIG_CRYPTO_SERPENT is not set
70302 -# CONFIG_CRYPTO_AES is not set
70303 -# CONFIG_CRYPTO_CAST5 is not set
70304 -# CONFIG_CRYPTO_CAST6 is not set
70305 -# CONFIG_CRYPTO_TEA is not set
70306 -# CONFIG_CRYPTO_ARC4 is not set
70307 -# CONFIG_CRYPTO_KHAZAD is not set
70308 -# CONFIG_CRYPTO_ANUBIS is not set
70309 -# CONFIG_CRYPTO_SEED is not set
70310 -# CONFIG_CRYPTO_SALSA20 is not set
70311 -# CONFIG_CRYPTO_DEFLATE is not set
70312 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
70313 -# CONFIG_CRYPTO_CRC32C is not set
70314 -# CONFIG_CRYPTO_CAMELLIA is not set
70315 -# CONFIG_CRYPTO_TEST is not set
70316 -# CONFIG_CRYPTO_AUTHENC is not set
70317 -# CONFIG_CRYPTO_LZO is not set
70318 -CONFIG_CRYPTO_HW=y
70319 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
70320 -# CONFIG_PPC_CLOCK is not set
70321 -CONFIG_PPC_LIB_RHEAP=y
70322 Index: linux-2.6.25.4/arch/powerpc/configs/mpc8572_ds_defconfig
70323 ===================================================================
70324 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc8572_ds_defconfig
70325 +++ /dev/null
70326 @@ -1,1549 +0,0 @@
70327 -#
70328 -# Automatically generated make config: don't edit
70329 -# Linux kernel version: 2.6.25-rc7
70330 -# Mon Mar 31 11:37:06 2008
70331 -#
70332 -# CONFIG_PPC64 is not set
70333 -
70334 -#
70335 -# Processor support
70336 -#
70337 -# CONFIG_6xx is not set
70338 -CONFIG_PPC_85xx=y
70339 -# CONFIG_PPC_8xx is not set
70340 -# CONFIG_40x is not set
70341 -# CONFIG_44x is not set
70342 -# CONFIG_E200 is not set
70343 -CONFIG_E500=y
70344 -CONFIG_BOOKE=y
70345 -CONFIG_FSL_BOOKE=y
70346 -CONFIG_FSL_EMB_PERFMON=y
70347 -# CONFIG_PHYS_64BIT is not set
70348 -CONFIG_SPE=y
70349 -# CONFIG_PPC_MM_SLICES is not set
70350 -CONFIG_PPC32=y
70351 -CONFIG_WORD_SIZE=32
70352 -CONFIG_PPC_MERGE=y
70353 -CONFIG_MMU=y
70354 -CONFIG_GENERIC_CMOS_UPDATE=y
70355 -CONFIG_GENERIC_TIME=y
70356 -CONFIG_GENERIC_TIME_VSYSCALL=y
70357 -CONFIG_GENERIC_CLOCKEVENTS=y
70358 -CONFIG_GENERIC_HARDIRQS=y
70359 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
70360 -CONFIG_IRQ_PER_CPU=y
70361 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
70362 -CONFIG_ARCH_HAS_ILOG2_U32=y
70363 -CONFIG_GENERIC_HWEIGHT=y
70364 -CONFIG_GENERIC_CALIBRATE_DELAY=y
70365 -CONFIG_GENERIC_FIND_NEXT_BIT=y
70366 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
70367 -CONFIG_PPC=y
70368 -CONFIG_EARLY_PRINTK=y
70369 -CONFIG_GENERIC_NVRAM=y
70370 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
70371 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
70372 -CONFIG_PPC_OF=y
70373 -CONFIG_OF=y
70374 -CONFIG_PPC_UDBG_16550=y
70375 -# CONFIG_GENERIC_TBSYNC is not set
70376 -CONFIG_AUDIT_ARCH=y
70377 -CONFIG_GENERIC_BUG=y
70378 -CONFIG_DEFAULT_UIMAGE=y
70379 -# CONFIG_PPC_DCR_NATIVE is not set
70380 -# CONFIG_PPC_DCR_MMIO is not set
70381 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
70382 -
70383 -#
70384 -# General setup
70385 -#
70386 -CONFIG_EXPERIMENTAL=y
70387 -CONFIG_BROKEN_ON_SMP=y
70388 -CONFIG_INIT_ENV_ARG_LIMIT=32
70389 -CONFIG_LOCALVERSION=""
70390 -CONFIG_LOCALVERSION_AUTO=y
70391 -CONFIG_SWAP=y
70392 -CONFIG_SYSVIPC=y
70393 -CONFIG_SYSVIPC_SYSCTL=y
70394 -CONFIG_POSIX_MQUEUE=y
70395 -CONFIG_BSD_PROCESS_ACCT=y
70396 -# CONFIG_BSD_PROCESS_ACCT_V3 is not set
70397 -# CONFIG_TASKSTATS is not set
70398 -CONFIG_AUDIT=y
70399 -# CONFIG_AUDITSYSCALL is not set
70400 -CONFIG_IKCONFIG=y
70401 -CONFIG_IKCONFIG_PROC=y
70402 -CONFIG_LOG_BUF_SHIFT=14
70403 -# CONFIG_CGROUPS is not set
70404 -CONFIG_GROUP_SCHED=y
70405 -# CONFIG_FAIR_GROUP_SCHED is not set
70406 -# CONFIG_RT_GROUP_SCHED is not set
70407 -CONFIG_USER_SCHED=y
70408 -# CONFIG_CGROUP_SCHED is not set
70409 -CONFIG_SYSFS_DEPRECATED=y
70410 -CONFIG_SYSFS_DEPRECATED_V2=y
70411 -# CONFIG_RELAY is not set
70412 -# CONFIG_NAMESPACES is not set
70413 -CONFIG_BLK_DEV_INITRD=y
70414 -CONFIG_INITRAMFS_SOURCE=""
70415 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
70416 -CONFIG_SYSCTL=y
70417 -CONFIG_EMBEDDED=y
70418 -CONFIG_SYSCTL_SYSCALL=y
70419 -CONFIG_KALLSYMS=y
70420 -CONFIG_KALLSYMS_ALL=y
70421 -CONFIG_KALLSYMS_EXTRA_PASS=y
70422 -CONFIG_HOTPLUG=y
70423 -CONFIG_PRINTK=y
70424 -CONFIG_BUG=y
70425 -CONFIG_ELF_CORE=y
70426 -CONFIG_COMPAT_BRK=y
70427 -CONFIG_BASE_FULL=y
70428 -CONFIG_FUTEX=y
70429 -CONFIG_ANON_INODES=y
70430 -CONFIG_EPOLL=y
70431 -CONFIG_SIGNALFD=y
70432 -CONFIG_TIMERFD=y
70433 -CONFIG_EVENTFD=y
70434 -CONFIG_SHMEM=y
70435 -CONFIG_VM_EVENT_COUNTERS=y
70436 -CONFIG_SLUB_DEBUG=y
70437 -# CONFIG_SLAB is not set
70438 -CONFIG_SLUB=y
70439 -# CONFIG_SLOB is not set
70440 -# CONFIG_PROFILING is not set
70441 -# CONFIG_MARKERS is not set
70442 -CONFIG_HAVE_OPROFILE=y
70443 -# CONFIG_KPROBES is not set
70444 -CONFIG_HAVE_KPROBES=y
70445 -CONFIG_HAVE_KRETPROBES=y
70446 -CONFIG_PROC_PAGE_MONITOR=y
70447 -CONFIG_SLABINFO=y
70448 -CONFIG_RT_MUTEXES=y
70449 -# CONFIG_TINY_SHMEM is not set
70450 -CONFIG_BASE_SMALL=0
70451 -CONFIG_MODULES=y
70452 -CONFIG_MODULE_UNLOAD=y
70453 -CONFIG_MODULE_FORCE_UNLOAD=y
70454 -CONFIG_MODVERSIONS=y
70455 -# CONFIG_MODULE_SRCVERSION_ALL is not set
70456 -CONFIG_KMOD=y
70457 -CONFIG_BLOCK=y
70458 -CONFIG_LBD=y
70459 -# CONFIG_BLK_DEV_IO_TRACE is not set
70460 -# CONFIG_LSF is not set
70461 -# CONFIG_BLK_DEV_BSG is not set
70462 -
70463 -#
70464 -# IO Schedulers
70465 -#
70466 -CONFIG_IOSCHED_NOOP=y
70467 -CONFIG_IOSCHED_AS=y
70468 -CONFIG_IOSCHED_DEADLINE=y
70469 -CONFIG_IOSCHED_CFQ=y
70470 -# CONFIG_DEFAULT_AS is not set
70471 -# CONFIG_DEFAULT_DEADLINE is not set
70472 -CONFIG_DEFAULT_CFQ=y
70473 -# CONFIG_DEFAULT_NOOP is not set
70474 -CONFIG_DEFAULT_IOSCHED="cfq"
70475 -CONFIG_CLASSIC_RCU=y
70476 -
70477 -#
70478 -# Platform support
70479 -#
70480 -# CONFIG_PPC_MPC512x is not set
70481 -# CONFIG_PPC_MPC5121 is not set
70482 -# CONFIG_PPC_CELL is not set
70483 -# CONFIG_PPC_CELL_NATIVE is not set
70484 -# CONFIG_PQ2ADS is not set
70485 -CONFIG_MPC85xx=y
70486 -# CONFIG_MPC8540_ADS is not set
70487 -# CONFIG_MPC8560_ADS is not set
70488 -# CONFIG_MPC85xx_CDS is not set
70489 -# CONFIG_MPC85xx_MDS is not set
70490 -CONFIG_MPC85xx_DS=y
70491 -# CONFIG_STX_GP3 is not set
70492 -# CONFIG_TQM8540 is not set
70493 -# CONFIG_TQM8541 is not set
70494 -# CONFIG_TQM8555 is not set
70495 -# CONFIG_TQM8560 is not set
70496 -# CONFIG_SBC8548 is not set
70497 -# CONFIG_SBC8560 is not set
70498 -# CONFIG_IPIC is not set
70499 -CONFIG_MPIC=y
70500 -# CONFIG_MPIC_WEIRD is not set
70501 -CONFIG_PPC_I8259=y
70502 -# CONFIG_PPC_RTAS is not set
70503 -# CONFIG_MMIO_NVRAM is not set
70504 -# CONFIG_PPC_MPC106 is not set
70505 -# CONFIG_PPC_970_NAP is not set
70506 -# CONFIG_PPC_INDIRECT_IO is not set
70507 -# CONFIG_GENERIC_IOMAP is not set
70508 -# CONFIG_CPU_FREQ is not set
70509 -# CONFIG_CPM2 is not set
70510 -CONFIG_FSL_ULI1575=y
70511 -
70512 -#
70513 -# Kernel options
70514 -#
70515 -CONFIG_HIGHMEM=y
70516 -CONFIG_TICK_ONESHOT=y
70517 -CONFIG_NO_HZ=y
70518 -CONFIG_HIGH_RES_TIMERS=y
70519 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
70520 -# CONFIG_HZ_100 is not set
70521 -CONFIG_HZ_250=y
70522 -# CONFIG_HZ_300 is not set
70523 -# CONFIG_HZ_1000 is not set
70524 -CONFIG_HZ=250
70525 -# CONFIG_SCHED_HRTICK is not set
70526 -CONFIG_PREEMPT_NONE=y
70527 -# CONFIG_PREEMPT_VOLUNTARY is not set
70528 -# CONFIG_PREEMPT is not set
70529 -CONFIG_BINFMT_ELF=y
70530 -CONFIG_BINFMT_MISC=m
70531 -CONFIG_MATH_EMULATION=y
70532 -# CONFIG_IOMMU_HELPER is not set
70533 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
70534 -CONFIG_ARCH_HAS_WALK_MEMORY=y
70535 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
70536 -CONFIG_ARCH_FLATMEM_ENABLE=y
70537 -CONFIG_ARCH_POPULATES_NODE_MAP=y
70538 -CONFIG_SELECT_MEMORY_MODEL=y
70539 -CONFIG_FLATMEM_MANUAL=y
70540 -# CONFIG_DISCONTIGMEM_MANUAL is not set
70541 -# CONFIG_SPARSEMEM_MANUAL is not set
70542 -CONFIG_FLATMEM=y
70543 -CONFIG_FLAT_NODE_MEM_MAP=y
70544 -# CONFIG_SPARSEMEM_STATIC is not set
70545 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
70546 -CONFIG_SPLIT_PTLOCK_CPUS=4
70547 -# CONFIG_RESOURCES_64BIT is not set
70548 -CONFIG_ZONE_DMA_FLAG=1
70549 -CONFIG_BOUNCE=y
70550 -CONFIG_VIRT_TO_BUS=y
70551 -CONFIG_PROC_DEVICETREE=y
70552 -# CONFIG_CMDLINE_BOOL is not set
70553 -# CONFIG_PM is not set
70554 -CONFIG_SECCOMP=y
70555 -CONFIG_ISA_DMA_API=y
70556 -
70557 -#
70558 -# Bus options
70559 -#
70560 -CONFIG_ZONE_DMA=y
70561 -CONFIG_GENERIC_ISA_DMA=y
70562 -CONFIG_PPC_INDIRECT_PCI=y
70563 -CONFIG_FSL_SOC=y
70564 -CONFIG_FSL_PCI=y
70565 -CONFIG_PCI=y
70566 -CONFIG_PCI_DOMAINS=y
70567 -CONFIG_PCI_SYSCALL=y
70568 -# CONFIG_PCIEPORTBUS is not set
70569 -CONFIG_ARCH_SUPPORTS_MSI=y
70570 -# CONFIG_PCI_MSI is not set
70571 -CONFIG_PCI_LEGACY=y
70572 -# CONFIG_PCI_DEBUG is not set
70573 -# CONFIG_PCCARD is not set
70574 -# CONFIG_HOTPLUG_PCI is not set
70575 -
70576 -#
70577 -# Advanced setup
70578 -#
70579 -# CONFIG_ADVANCED_OPTIONS is not set
70580 -
70581 -#
70582 -# Default settings for advanced configuration options are used
70583 -#
70584 -CONFIG_HIGHMEM_START=0xfe000000
70585 -CONFIG_LOWMEM_SIZE=0x30000000
70586 -CONFIG_KERNEL_START=0xc0000000
70587 -CONFIG_TASK_SIZE=0xc0000000
70588 -CONFIG_BOOT_LOAD=0x00800000
70589 -
70590 -#
70591 -# Networking
70592 -#
70593 -CONFIG_NET=y
70594 -
70595 -#
70596 -# Networking options
70597 -#
70598 -CONFIG_PACKET=y
70599 -# CONFIG_PACKET_MMAP is not set
70600 -CONFIG_UNIX=y
70601 -CONFIG_XFRM=y
70602 -CONFIG_XFRM_USER=y
70603 -# CONFIG_XFRM_SUB_POLICY is not set
70604 -# CONFIG_XFRM_MIGRATE is not set
70605 -# CONFIG_XFRM_STATISTICS is not set
70606 -CONFIG_NET_KEY=m
70607 -# CONFIG_NET_KEY_MIGRATE is not set
70608 -CONFIG_INET=y
70609 -CONFIG_IP_MULTICAST=y
70610 -CONFIG_IP_ADVANCED_ROUTER=y
70611 -CONFIG_ASK_IP_FIB_HASH=y
70612 -# CONFIG_IP_FIB_TRIE is not set
70613 -CONFIG_IP_FIB_HASH=y
70614 -CONFIG_IP_MULTIPLE_TABLES=y
70615 -CONFIG_IP_ROUTE_MULTIPATH=y
70616 -CONFIG_IP_ROUTE_VERBOSE=y
70617 -CONFIG_IP_PNP=y
70618 -CONFIG_IP_PNP_DHCP=y
70619 -CONFIG_IP_PNP_BOOTP=y
70620 -CONFIG_IP_PNP_RARP=y
70621 -CONFIG_NET_IPIP=y
70622 -CONFIG_NET_IPGRE=y
70623 -CONFIG_NET_IPGRE_BROADCAST=y
70624 -CONFIG_IP_MROUTE=y
70625 -CONFIG_IP_PIMSM_V1=y
70626 -CONFIG_IP_PIMSM_V2=y
70627 -CONFIG_ARPD=y
70628 -# CONFIG_SYN_COOKIES is not set
70629 -# CONFIG_INET_AH is not set
70630 -# CONFIG_INET_ESP is not set
70631 -# CONFIG_INET_IPCOMP is not set
70632 -# CONFIG_INET_XFRM_TUNNEL is not set
70633 -CONFIG_INET_TUNNEL=y
70634 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
70635 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
70636 -# CONFIG_INET_XFRM_MODE_BEET is not set
70637 -# CONFIG_INET_LRO is not set
70638 -CONFIG_INET_DIAG=y
70639 -CONFIG_INET_TCP_DIAG=y
70640 -# CONFIG_TCP_CONG_ADVANCED is not set
70641 -CONFIG_TCP_CONG_CUBIC=y
70642 -CONFIG_DEFAULT_TCP_CONG="cubic"
70643 -# CONFIG_TCP_MD5SIG is not set
70644 -CONFIG_IPV6=y
70645 -# CONFIG_IPV6_PRIVACY is not set
70646 -# CONFIG_IPV6_ROUTER_PREF is not set
70647 -# CONFIG_IPV6_OPTIMISTIC_DAD is not set
70648 -# CONFIG_INET6_AH is not set
70649 -# CONFIG_INET6_ESP is not set
70650 -# CONFIG_INET6_IPCOMP is not set
70651 -# CONFIG_IPV6_MIP6 is not set
70652 -# CONFIG_INET6_XFRM_TUNNEL is not set
70653 -# CONFIG_INET6_TUNNEL is not set
70654 -CONFIG_INET6_XFRM_MODE_TRANSPORT=y
70655 -CONFIG_INET6_XFRM_MODE_TUNNEL=y
70656 -CONFIG_INET6_XFRM_MODE_BEET=y
70657 -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
70658 -CONFIG_IPV6_SIT=y
70659 -# CONFIG_IPV6_TUNNEL is not set
70660 -# CONFIG_IPV6_MULTIPLE_TABLES is not set
70661 -# CONFIG_NETWORK_SECMARK is not set
70662 -# CONFIG_NETFILTER is not set
70663 -# CONFIG_IP_DCCP is not set
70664 -CONFIG_IP_SCTP=m
70665 -# CONFIG_SCTP_DBG_MSG is not set
70666 -# CONFIG_SCTP_DBG_OBJCNT is not set
70667 -# CONFIG_SCTP_HMAC_NONE is not set
70668 -# CONFIG_SCTP_HMAC_SHA1 is not set
70669 -CONFIG_SCTP_HMAC_MD5=y
70670 -# CONFIG_TIPC is not set
70671 -# CONFIG_ATM is not set
70672 -# CONFIG_BRIDGE is not set
70673 -# CONFIG_VLAN_8021Q is not set
70674 -# CONFIG_DECNET is not set
70675 -# CONFIG_LLC2 is not set
70676 -# CONFIG_IPX is not set
70677 -# CONFIG_ATALK is not set
70678 -# CONFIG_X25 is not set
70679 -# CONFIG_LAPB is not set
70680 -# CONFIG_ECONET is not set
70681 -# CONFIG_WAN_ROUTER is not set
70682 -# CONFIG_NET_SCHED is not set
70683 -
70684 -#
70685 -# Network testing
70686 -#
70687 -# CONFIG_NET_PKTGEN is not set
70688 -# CONFIG_HAMRADIO is not set
70689 -# CONFIG_CAN is not set
70690 -# CONFIG_IRDA is not set
70691 -# CONFIG_BT is not set
70692 -# CONFIG_AF_RXRPC is not set
70693 -CONFIG_FIB_RULES=y
70694 -
70695 -#
70696 -# Wireless
70697 -#
70698 -# CONFIG_CFG80211 is not set
70699 -# CONFIG_WIRELESS_EXT is not set
70700 -# CONFIG_MAC80211 is not set
70701 -# CONFIG_IEEE80211 is not set
70702 -# CONFIG_RFKILL is not set
70703 -# CONFIG_NET_9P is not set
70704 -
70705 -#
70706 -# Device Drivers
70707 -#
70708 -
70709 -#
70710 -# Generic Driver Options
70711 -#
70712 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
70713 -CONFIG_STANDALONE=y
70714 -CONFIG_PREVENT_FIRMWARE_BUILD=y
70715 -CONFIG_FW_LOADER=y
70716 -# CONFIG_DEBUG_DRIVER is not set
70717 -# CONFIG_DEBUG_DEVRES is not set
70718 -# CONFIG_SYS_HYPERVISOR is not set
70719 -# CONFIG_CONNECTOR is not set
70720 -# CONFIG_MTD is not set
70721 -CONFIG_OF_DEVICE=y
70722 -# CONFIG_PARPORT is not set
70723 -CONFIG_BLK_DEV=y
70724 -# CONFIG_BLK_DEV_FD is not set
70725 -# CONFIG_BLK_CPQ_DA is not set
70726 -# CONFIG_BLK_CPQ_CISS_DA is not set
70727 -# CONFIG_BLK_DEV_DAC960 is not set
70728 -# CONFIG_BLK_DEV_UMEM is not set
70729 -# CONFIG_BLK_DEV_COW_COMMON is not set
70730 -CONFIG_BLK_DEV_LOOP=y
70731 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
70732 -CONFIG_BLK_DEV_NBD=y
70733 -# CONFIG_BLK_DEV_SX8 is not set
70734 -# CONFIG_BLK_DEV_UB is not set
70735 -CONFIG_BLK_DEV_RAM=y
70736 -CONFIG_BLK_DEV_RAM_COUNT=16
70737 -CONFIG_BLK_DEV_RAM_SIZE=131072
70738 -# CONFIG_BLK_DEV_XIP is not set
70739 -# CONFIG_CDROM_PKTCDVD is not set
70740 -# CONFIG_ATA_OVER_ETH is not set
70741 -CONFIG_MISC_DEVICES=y
70742 -# CONFIG_PHANTOM is not set
70743 -# CONFIG_EEPROM_93CX6 is not set
70744 -# CONFIG_SGI_IOC4 is not set
70745 -# CONFIG_TIFM_CORE is not set
70746 -# CONFIG_ENCLOSURE_SERVICES is not set
70747 -CONFIG_HAVE_IDE=y
70748 -# CONFIG_IDE is not set
70749 -
70750 -#
70751 -# SCSI device support
70752 -#
70753 -# CONFIG_RAID_ATTRS is not set
70754 -CONFIG_SCSI=y
70755 -CONFIG_SCSI_DMA=y
70756 -# CONFIG_SCSI_TGT is not set
70757 -# CONFIG_SCSI_NETLINK is not set
70758 -CONFIG_SCSI_PROC_FS=y
70759 -
70760 -#
70761 -# SCSI support type (disk, tape, CD-ROM)
70762 -#
70763 -CONFIG_BLK_DEV_SD=y
70764 -CONFIG_CHR_DEV_ST=y
70765 -# CONFIG_CHR_DEV_OSST is not set
70766 -CONFIG_BLK_DEV_SR=y
70767 -# CONFIG_BLK_DEV_SR_VENDOR is not set
70768 -CONFIG_CHR_DEV_SG=y
70769 -# CONFIG_CHR_DEV_SCH is not set
70770 -
70771 -#
70772 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
70773 -#
70774 -CONFIG_SCSI_MULTI_LUN=y
70775 -# CONFIG_SCSI_CONSTANTS is not set
70776 -CONFIG_SCSI_LOGGING=y
70777 -# CONFIG_SCSI_SCAN_ASYNC is not set
70778 -CONFIG_SCSI_WAIT_SCAN=m
70779 -
70780 -#
70781 -# SCSI Transports
70782 -#
70783 -# CONFIG_SCSI_SPI_ATTRS is not set
70784 -# CONFIG_SCSI_FC_ATTRS is not set
70785 -# CONFIG_SCSI_ISCSI_ATTRS is not set
70786 -# CONFIG_SCSI_SAS_LIBSAS is not set
70787 -# CONFIG_SCSI_SRP_ATTRS is not set
70788 -CONFIG_SCSI_LOWLEVEL=y
70789 -# CONFIG_ISCSI_TCP is not set
70790 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
70791 -# CONFIG_SCSI_3W_9XXX is not set
70792 -# CONFIG_SCSI_ACARD is not set
70793 -# CONFIG_SCSI_AACRAID is not set
70794 -# CONFIG_SCSI_AIC7XXX is not set
70795 -# CONFIG_SCSI_AIC7XXX_OLD is not set
70796 -# CONFIG_SCSI_AIC79XX is not set
70797 -# CONFIG_SCSI_AIC94XX is not set
70798 -# CONFIG_SCSI_DPT_I2O is not set
70799 -# CONFIG_SCSI_ADVANSYS is not set
70800 -# CONFIG_SCSI_ARCMSR is not set
70801 -# CONFIG_MEGARAID_NEWGEN is not set
70802 -# CONFIG_MEGARAID_LEGACY is not set
70803 -# CONFIG_MEGARAID_SAS is not set
70804 -# CONFIG_SCSI_HPTIOP is not set
70805 -# CONFIG_SCSI_BUSLOGIC is not set
70806 -# CONFIG_SCSI_DMX3191D is not set
70807 -# CONFIG_SCSI_EATA is not set
70808 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
70809 -# CONFIG_SCSI_GDTH is not set
70810 -# CONFIG_SCSI_IPS is not set
70811 -# CONFIG_SCSI_INITIO is not set
70812 -# CONFIG_SCSI_INIA100 is not set
70813 -# CONFIG_SCSI_MVSAS is not set
70814 -# CONFIG_SCSI_STEX is not set
70815 -# CONFIG_SCSI_SYM53C8XX_2 is not set
70816 -# CONFIG_SCSI_IPR is not set
70817 -# CONFIG_SCSI_QLOGIC_1280 is not set
70818 -# CONFIG_SCSI_QLA_FC is not set
70819 -# CONFIG_SCSI_QLA_ISCSI is not set
70820 -# CONFIG_SCSI_LPFC is not set
70821 -# CONFIG_SCSI_DC395x is not set
70822 -# CONFIG_SCSI_DC390T is not set
70823 -# CONFIG_SCSI_NSP32 is not set
70824 -# CONFIG_SCSI_DEBUG is not set
70825 -# CONFIG_SCSI_SRP is not set
70826 -CONFIG_ATA=y
70827 -# CONFIG_ATA_NONSTANDARD is not set
70828 -CONFIG_SATA_AHCI=y
70829 -# CONFIG_SATA_SVW is not set
70830 -# CONFIG_ATA_PIIX is not set
70831 -# CONFIG_SATA_MV is not set
70832 -# CONFIG_SATA_NV is not set
70833 -# CONFIG_PDC_ADMA is not set
70834 -# CONFIG_SATA_QSTOR is not set
70835 -# CONFIG_SATA_PROMISE is not set
70836 -# CONFIG_SATA_SX4 is not set
70837 -# CONFIG_SATA_SIL is not set
70838 -# CONFIG_SATA_SIL24 is not set
70839 -# CONFIG_SATA_SIS is not set
70840 -# CONFIG_SATA_ULI is not set
70841 -# CONFIG_SATA_VIA is not set
70842 -# CONFIG_SATA_VITESSE is not set
70843 -# CONFIG_SATA_INIC162X is not set
70844 -# CONFIG_SATA_FSL is not set
70845 -CONFIG_PATA_ALI=y
70846 -# CONFIG_PATA_AMD is not set
70847 -# CONFIG_PATA_ARTOP is not set
70848 -# CONFIG_PATA_ATIIXP is not set
70849 -# CONFIG_PATA_CMD640_PCI is not set
70850 -# CONFIG_PATA_CMD64X is not set
70851 -# CONFIG_PATA_CS5520 is not set
70852 -# CONFIG_PATA_CS5530 is not set
70853 -# CONFIG_PATA_CYPRESS is not set
70854 -# CONFIG_PATA_EFAR is not set
70855 -# CONFIG_ATA_GENERIC is not set
70856 -# CONFIG_PATA_HPT366 is not set
70857 -# CONFIG_PATA_HPT37X is not set
70858 -# CONFIG_PATA_HPT3X2N is not set
70859 -# CONFIG_PATA_HPT3X3 is not set
70860 -# CONFIG_PATA_IT821X is not set
70861 -# CONFIG_PATA_IT8213 is not set
70862 -# CONFIG_PATA_JMICRON is not set
70863 -# CONFIG_PATA_TRIFLEX is not set
70864 -# CONFIG_PATA_MARVELL is not set
70865 -# CONFIG_PATA_MPIIX is not set
70866 -# CONFIG_PATA_OLDPIIX is not set
70867 -# CONFIG_PATA_NETCELL is not set
70868 -# CONFIG_PATA_NINJA32 is not set
70869 -# CONFIG_PATA_NS87410 is not set
70870 -# CONFIG_PATA_NS87415 is not set
70871 -# CONFIG_PATA_OPTI is not set
70872 -# CONFIG_PATA_OPTIDMA is not set
70873 -# CONFIG_PATA_PDC_OLD is not set
70874 -# CONFIG_PATA_RADISYS is not set
70875 -# CONFIG_PATA_RZ1000 is not set
70876 -# CONFIG_PATA_SC1200 is not set
70877 -# CONFIG_PATA_SERVERWORKS is not set
70878 -# CONFIG_PATA_PDC2027X is not set
70879 -# CONFIG_PATA_SIL680 is not set
70880 -# CONFIG_PATA_SIS is not set
70881 -# CONFIG_PATA_VIA is not set
70882 -# CONFIG_PATA_WINBOND is not set
70883 -# CONFIG_PATA_PLATFORM is not set
70884 -# CONFIG_MD is not set
70885 -# CONFIG_FUSION is not set
70886 -
70887 -#
70888 -# IEEE 1394 (FireWire) support
70889 -#
70890 -# CONFIG_FIREWIRE is not set
70891 -# CONFIG_IEEE1394 is not set
70892 -# CONFIG_I2O is not set
70893 -# CONFIG_MACINTOSH_DRIVERS is not set
70894 -CONFIG_NETDEVICES=y
70895 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
70896 -CONFIG_DUMMY=y
70897 -# CONFIG_BONDING is not set
70898 -# CONFIG_MACVLAN is not set
70899 -# CONFIG_EQUALIZER is not set
70900 -# CONFIG_TUN is not set
70901 -# CONFIG_VETH is not set
70902 -# CONFIG_ARCNET is not set
70903 -CONFIG_PHYLIB=y
70904 -
70905 -#
70906 -# MII PHY device drivers
70907 -#
70908 -# CONFIG_MARVELL_PHY is not set
70909 -# CONFIG_DAVICOM_PHY is not set
70910 -# CONFIG_QSEMI_PHY is not set
70911 -# CONFIG_LXT_PHY is not set
70912 -# CONFIG_CICADA_PHY is not set
70913 -CONFIG_VITESSE_PHY=y
70914 -# CONFIG_SMSC_PHY is not set
70915 -# CONFIG_BROADCOM_PHY is not set
70916 -# CONFIG_ICPLUS_PHY is not set
70917 -# CONFIG_REALTEK_PHY is not set
70918 -# CONFIG_FIXED_PHY is not set
70919 -# CONFIG_MDIO_BITBANG is not set
70920 -CONFIG_NET_ETHERNET=y
70921 -CONFIG_MII=y
70922 -# CONFIG_HAPPYMEAL is not set
70923 -# CONFIG_SUNGEM is not set
70924 -# CONFIG_CASSINI is not set
70925 -# CONFIG_NET_VENDOR_3COM is not set
70926 -# CONFIG_NET_TULIP is not set
70927 -# CONFIG_HP100 is not set
70928 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
70929 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
70930 -# CONFIG_IBM_NEW_EMAC_TAH is not set
70931 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
70932 -# CONFIG_NET_PCI is not set
70933 -# CONFIG_B44 is not set
70934 -CONFIG_NETDEV_1000=y
70935 -# CONFIG_ACENIC is not set
70936 -# CONFIG_DL2K is not set
70937 -# CONFIG_E1000 is not set
70938 -# CONFIG_E1000E is not set
70939 -# CONFIG_E1000E_ENABLED is not set
70940 -# CONFIG_IP1000 is not set
70941 -# CONFIG_IGB is not set
70942 -# CONFIG_NS83820 is not set
70943 -# CONFIG_HAMACHI is not set
70944 -# CONFIG_YELLOWFIN is not set
70945 -# CONFIG_R8169 is not set
70946 -# CONFIG_SIS190 is not set
70947 -# CONFIG_SKGE is not set
70948 -# CONFIG_SKY2 is not set
70949 -# CONFIG_SK98LIN is not set
70950 -# CONFIG_VIA_VELOCITY is not set
70951 -# CONFIG_TIGON3 is not set
70952 -# CONFIG_BNX2 is not set
70953 -CONFIG_GIANFAR=y
70954 -CONFIG_GFAR_NAPI=y
70955 -# CONFIG_QLA3XXX is not set
70956 -# CONFIG_ATL1 is not set
70957 -CONFIG_NETDEV_10000=y
70958 -# CONFIG_CHELSIO_T1 is not set
70959 -# CONFIG_CHELSIO_T3 is not set
70960 -# CONFIG_IXGBE is not set
70961 -# CONFIG_IXGB is not set
70962 -# CONFIG_S2IO is not set
70963 -# CONFIG_MYRI10GE is not set
70964 -# CONFIG_NETXEN_NIC is not set
70965 -# CONFIG_NIU is not set
70966 -# CONFIG_MLX4_CORE is not set
70967 -# CONFIG_TEHUTI is not set
70968 -# CONFIG_BNX2X is not set
70969 -# CONFIG_TR is not set
70970 -
70971 -#
70972 -# Wireless LAN
70973 -#
70974 -# CONFIG_WLAN_PRE80211 is not set
70975 -# CONFIG_WLAN_80211 is not set
70976 -
70977 -#
70978 -# USB Network Adapters
70979 -#
70980 -# CONFIG_USB_CATC is not set
70981 -# CONFIG_USB_KAWETH is not set
70982 -# CONFIG_USB_PEGASUS is not set
70983 -# CONFIG_USB_RTL8150 is not set
70984 -# CONFIG_USB_USBNET is not set
70985 -# CONFIG_WAN is not set
70986 -# CONFIG_FDDI is not set
70987 -# CONFIG_HIPPI is not set
70988 -# CONFIG_PPP is not set
70989 -# CONFIG_SLIP is not set
70990 -# CONFIG_NET_FC is not set
70991 -# CONFIG_NETCONSOLE is not set
70992 -# CONFIG_NETPOLL is not set
70993 -# CONFIG_NET_POLL_CONTROLLER is not set
70994 -# CONFIG_ISDN is not set
70995 -# CONFIG_PHONE is not set
70996 -
70997 -#
70998 -# Input device support
70999 -#
71000 -CONFIG_INPUT=y
71001 -# CONFIG_INPUT_FF_MEMLESS is not set
71002 -# CONFIG_INPUT_POLLDEV is not set
71003 -
71004 -#
71005 -# Userland interfaces
71006 -#
71007 -# CONFIG_INPUT_MOUSEDEV is not set
71008 -# CONFIG_INPUT_JOYDEV is not set
71009 -# CONFIG_INPUT_EVDEV is not set
71010 -# CONFIG_INPUT_EVBUG is not set
71011 -
71012 -#
71013 -# Input Device Drivers
71014 -#
71015 -# CONFIG_INPUT_KEYBOARD is not set
71016 -# CONFIG_INPUT_MOUSE is not set
71017 -# CONFIG_INPUT_JOYSTICK is not set
71018 -# CONFIG_INPUT_TABLET is not set
71019 -# CONFIG_INPUT_TOUCHSCREEN is not set
71020 -# CONFIG_INPUT_MISC is not set
71021 -
71022 -#
71023 -# Hardware I/O ports
71024 -#
71025 -CONFIG_SERIO=y
71026 -CONFIG_SERIO_I8042=y
71027 -CONFIG_SERIO_SERPORT=y
71028 -# CONFIG_SERIO_PCIPS2 is not set
71029 -CONFIG_SERIO_LIBPS2=y
71030 -# CONFIG_SERIO_RAW is not set
71031 -# CONFIG_GAMEPORT is not set
71032 -
71033 -#
71034 -# Character devices
71035 -#
71036 -CONFIG_VT=y
71037 -CONFIG_VT_CONSOLE=y
71038 -CONFIG_HW_CONSOLE=y
71039 -# CONFIG_VT_HW_CONSOLE_BINDING is not set
71040 -# CONFIG_SERIAL_NONSTANDARD is not set
71041 -# CONFIG_NOZOMI is not set
71042 -
71043 -#
71044 -# Serial drivers
71045 -#
71046 -CONFIG_SERIAL_8250=y
71047 -CONFIG_SERIAL_8250_CONSOLE=y
71048 -CONFIG_SERIAL_8250_PCI=y
71049 -CONFIG_SERIAL_8250_NR_UARTS=2
71050 -CONFIG_SERIAL_8250_RUNTIME_UARTS=2
71051 -CONFIG_SERIAL_8250_EXTENDED=y
71052 -CONFIG_SERIAL_8250_MANY_PORTS=y
71053 -CONFIG_SERIAL_8250_SHARE_IRQ=y
71054 -CONFIG_SERIAL_8250_DETECT_IRQ=y
71055 -CONFIG_SERIAL_8250_RSA=y
71056 -
71057 -#
71058 -# Non-8250 serial port support
71059 -#
71060 -# CONFIG_SERIAL_UARTLITE is not set
71061 -CONFIG_SERIAL_CORE=y
71062 -CONFIG_SERIAL_CORE_CONSOLE=y
71063 -# CONFIG_SERIAL_JSM is not set
71064 -# CONFIG_SERIAL_OF_PLATFORM is not set
71065 -CONFIG_UNIX98_PTYS=y
71066 -CONFIG_LEGACY_PTYS=y
71067 -CONFIG_LEGACY_PTY_COUNT=256
71068 -# CONFIG_IPMI_HANDLER is not set
71069 -# CONFIG_HW_RANDOM is not set
71070 -CONFIG_NVRAM=y
71071 -# CONFIG_GEN_RTC is not set
71072 -# CONFIG_R3964 is not set
71073 -# CONFIG_APPLICOM is not set
71074 -# CONFIG_RAW_DRIVER is not set
71075 -# CONFIG_TCG_TPM is not set
71076 -CONFIG_DEVPORT=y
71077 -CONFIG_I2C=y
71078 -CONFIG_I2C_BOARDINFO=y
71079 -# CONFIG_I2C_CHARDEV is not set
71080 -
71081 -#
71082 -# I2C Algorithms
71083 -#
71084 -# CONFIG_I2C_ALGOBIT is not set
71085 -# CONFIG_I2C_ALGOPCF is not set
71086 -# CONFIG_I2C_ALGOPCA is not set
71087 -
71088 -#
71089 -# I2C Hardware Bus support
71090 -#
71091 -# CONFIG_I2C_ALI1535 is not set
71092 -# CONFIG_I2C_ALI1563 is not set
71093 -# CONFIG_I2C_ALI15X3 is not set
71094 -# CONFIG_I2C_AMD756 is not set
71095 -# CONFIG_I2C_AMD8111 is not set
71096 -# CONFIG_I2C_I801 is not set
71097 -# CONFIG_I2C_I810 is not set
71098 -# CONFIG_I2C_PIIX4 is not set
71099 -CONFIG_I2C_MPC=y
71100 -# CONFIG_I2C_NFORCE2 is not set
71101 -# CONFIG_I2C_OCORES is not set
71102 -# CONFIG_I2C_PARPORT_LIGHT is not set
71103 -# CONFIG_I2C_PROSAVAGE is not set
71104 -# CONFIG_I2C_SAVAGE4 is not set
71105 -# CONFIG_I2C_SIMTEC is not set
71106 -# CONFIG_I2C_SIS5595 is not set
71107 -# CONFIG_I2C_SIS630 is not set
71108 -# CONFIG_I2C_SIS96X is not set
71109 -# CONFIG_I2C_TAOS_EVM is not set
71110 -# CONFIG_I2C_STUB is not set
71111 -# CONFIG_I2C_TINY_USB is not set
71112 -# CONFIG_I2C_VIA is not set
71113 -# CONFIG_I2C_VIAPRO is not set
71114 -# CONFIG_I2C_VOODOO3 is not set
71115 -
71116 -#
71117 -# Miscellaneous I2C Chip support
71118 -#
71119 -# CONFIG_DS1682 is not set
71120 -CONFIG_SENSORS_EEPROM=y
71121 -# CONFIG_SENSORS_PCF8574 is not set
71122 -# CONFIG_PCF8575 is not set
71123 -# CONFIG_SENSORS_PCF8591 is not set
71124 -# CONFIG_TPS65010 is not set
71125 -# CONFIG_SENSORS_MAX6875 is not set
71126 -# CONFIG_SENSORS_TSL2550 is not set
71127 -# CONFIG_I2C_DEBUG_CORE is not set
71128 -# CONFIG_I2C_DEBUG_ALGO is not set
71129 -# CONFIG_I2C_DEBUG_BUS is not set
71130 -# CONFIG_I2C_DEBUG_CHIP is not set
71131 -
71132 -#
71133 -# SPI support
71134 -#
71135 -# CONFIG_SPI is not set
71136 -# CONFIG_SPI_MASTER is not set
71137 -# CONFIG_W1 is not set
71138 -# CONFIG_POWER_SUPPLY is not set
71139 -# CONFIG_HWMON is not set
71140 -# CONFIG_THERMAL is not set
71141 -# CONFIG_WATCHDOG is not set
71142 -
71143 -#
71144 -# Sonics Silicon Backplane
71145 -#
71146 -CONFIG_SSB_POSSIBLE=y
71147 -# CONFIG_SSB is not set
71148 -
71149 -#
71150 -# Multifunction device drivers
71151 -#
71152 -# CONFIG_MFD_SM501 is not set
71153 -
71154 -#
71155 -# Multimedia devices
71156 -#
71157 -# CONFIG_VIDEO_DEV is not set
71158 -CONFIG_DVB_CORE=m
71159 -# CONFIG_DVB_CORE_ATTACH is not set
71160 -CONFIG_DVB_CAPTURE_DRIVERS=y
71161 -
71162 -#
71163 -# Supported SAA7146 based PCI Adapters
71164 -#
71165 -# CONFIG_TTPCI_EEPROM is not set
71166 -# CONFIG_DVB_BUDGET_CORE is not set
71167 -
71168 -#
71169 -# Supported USB Adapters
71170 -#
71171 -# CONFIG_DVB_USB is not set
71172 -# CONFIG_DVB_TTUSB_BUDGET is not set
71173 -# CONFIG_DVB_TTUSB_DEC is not set
71174 -# CONFIG_DVB_CINERGYT2 is not set
71175 -
71176 -#
71177 -# Supported FlexCopII (B2C2) Adapters
71178 -#
71179 -# CONFIG_DVB_B2C2_FLEXCOP is not set
71180 -
71181 -#
71182 -# Supported BT878 Adapters
71183 -#
71184 -
71185 -#
71186 -# Supported Pluto2 Adapters
71187 -#
71188 -# CONFIG_DVB_PLUTO2 is not set
71189 -
71190 -#
71191 -# Supported DVB Frontends
71192 -#
71193 -
71194 -#
71195 -# Customise DVB Frontends
71196 -#
71197 -# CONFIG_DVB_FE_CUSTOMISE is not set
71198 -
71199 -#
71200 -# DVB-S (satellite) frontends
71201 -#
71202 -# CONFIG_DVB_STV0299 is not set
71203 -# CONFIG_DVB_CX24110 is not set
71204 -# CONFIG_DVB_CX24123 is not set
71205 -# CONFIG_DVB_TDA8083 is not set
71206 -# CONFIG_DVB_MT312 is not set
71207 -# CONFIG_DVB_VES1X93 is not set
71208 -# CONFIG_DVB_S5H1420 is not set
71209 -# CONFIG_DVB_TDA10086 is not set
71210 -
71211 -#
71212 -# DVB-T (terrestrial) frontends
71213 -#
71214 -# CONFIG_DVB_SP8870 is not set
71215 -# CONFIG_DVB_SP887X is not set
71216 -# CONFIG_DVB_CX22700 is not set
71217 -# CONFIG_DVB_CX22702 is not set
71218 -# CONFIG_DVB_L64781 is not set
71219 -# CONFIG_DVB_TDA1004X is not set
71220 -# CONFIG_DVB_NXT6000 is not set
71221 -# CONFIG_DVB_MT352 is not set
71222 -# CONFIG_DVB_ZL10353 is not set
71223 -# CONFIG_DVB_DIB3000MB is not set
71224 -# CONFIG_DVB_DIB3000MC is not set
71225 -# CONFIG_DVB_DIB7000M is not set
71226 -# CONFIG_DVB_DIB7000P is not set
71227 -
71228 -#
71229 -# DVB-C (cable) frontends
71230 -#
71231 -# CONFIG_DVB_VES1820 is not set
71232 -# CONFIG_DVB_TDA10021 is not set
71233 -# CONFIG_DVB_TDA10023 is not set
71234 -# CONFIG_DVB_STV0297 is not set
71235 -
71236 -#
71237 -# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
71238 -#
71239 -# CONFIG_DVB_NXT200X is not set
71240 -# CONFIG_DVB_OR51211 is not set
71241 -# CONFIG_DVB_OR51132 is not set
71242 -# CONFIG_DVB_BCM3510 is not set
71243 -# CONFIG_DVB_LGDT330X is not set
71244 -# CONFIG_DVB_S5H1409 is not set
71245 -
71246 -#
71247 -# Tuners/PLL support
71248 -#
71249 -# CONFIG_DVB_PLL is not set
71250 -# CONFIG_DVB_TDA826X is not set
71251 -# CONFIG_DVB_TDA827X is not set
71252 -# CONFIG_DVB_TDA18271 is not set
71253 -# CONFIG_DVB_TUNER_QT1010 is not set
71254 -# CONFIG_DVB_TUNER_MT2060 is not set
71255 -# CONFIG_DVB_TUNER_MT2266 is not set
71256 -# CONFIG_DVB_TUNER_MT2131 is not set
71257 -# CONFIG_DVB_TUNER_DIB0070 is not set
71258 -# CONFIG_DVB_TUNER_XC5000 is not set
71259 -
71260 -#
71261 -# Miscellaneous devices
71262 -#
71263 -# CONFIG_DVB_LNBP21 is not set
71264 -# CONFIG_DVB_ISL6421 is not set
71265 -# CONFIG_DVB_TUA6100 is not set
71266 -CONFIG_DAB=y
71267 -# CONFIG_USB_DABUSB is not set
71268 -
71269 -#
71270 -# Graphics support
71271 -#
71272 -# CONFIG_AGP is not set
71273 -# CONFIG_DRM is not set
71274 -# CONFIG_VGASTATE is not set
71275 -CONFIG_VIDEO_OUTPUT_CONTROL=y
71276 -# CONFIG_FB is not set
71277 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
71278 -
71279 -#
71280 -# Display device support
71281 -#
71282 -# CONFIG_DISPLAY_SUPPORT is not set
71283 -
71284 -#
71285 -# Console display driver support
71286 -#
71287 -CONFIG_VGA_CONSOLE=y
71288 -# CONFIG_VGACON_SOFT_SCROLLBACK is not set
71289 -CONFIG_DUMMY_CONSOLE=y
71290 -
71291 -#
71292 -# Sound
71293 -#
71294 -CONFIG_SOUND=y
71295 -
71296 -#
71297 -# Advanced Linux Sound Architecture
71298 -#
71299 -CONFIG_SND=y
71300 -CONFIG_SND_TIMER=y
71301 -CONFIG_SND_PCM=y
71302 -# CONFIG_SND_SEQUENCER is not set
71303 -# CONFIG_SND_MIXER_OSS is not set
71304 -# CONFIG_SND_PCM_OSS is not set
71305 -# CONFIG_SND_DYNAMIC_MINORS is not set
71306 -CONFIG_SND_SUPPORT_OLD_API=y
71307 -CONFIG_SND_VERBOSE_PROCFS=y
71308 -# CONFIG_SND_VERBOSE_PRINTK is not set
71309 -# CONFIG_SND_DEBUG is not set
71310 -
71311 -#
71312 -# Generic devices
71313 -#
71314 -CONFIG_SND_AC97_CODEC=y
71315 -# CONFIG_SND_DUMMY is not set
71316 -# CONFIG_SND_MTPAV is not set
71317 -# CONFIG_SND_SERIAL_U16550 is not set
71318 -# CONFIG_SND_MPU401 is not set
71319 -
71320 -#
71321 -# PCI devices
71322 -#
71323 -# CONFIG_SND_AD1889 is not set
71324 -# CONFIG_SND_ALS300 is not set
71325 -# CONFIG_SND_ALS4000 is not set
71326 -# CONFIG_SND_ALI5451 is not set
71327 -# CONFIG_SND_ATIIXP is not set
71328 -# CONFIG_SND_ATIIXP_MODEM is not set
71329 -# CONFIG_SND_AU8810 is not set
71330 -# CONFIG_SND_AU8820 is not set
71331 -# CONFIG_SND_AU8830 is not set
71332 -# CONFIG_SND_AZT3328 is not set
71333 -# CONFIG_SND_BT87X is not set
71334 -# CONFIG_SND_CA0106 is not set
71335 -# CONFIG_SND_CMIPCI is not set
71336 -# CONFIG_SND_OXYGEN is not set
71337 -# CONFIG_SND_CS4281 is not set
71338 -# CONFIG_SND_CS46XX is not set
71339 -# CONFIG_SND_CS5530 is not set
71340 -# CONFIG_SND_DARLA20 is not set
71341 -# CONFIG_SND_GINA20 is not set
71342 -# CONFIG_SND_LAYLA20 is not set
71343 -# CONFIG_SND_DARLA24 is not set
71344 -# CONFIG_SND_GINA24 is not set
71345 -# CONFIG_SND_LAYLA24 is not set
71346 -# CONFIG_SND_MONA is not set
71347 -# CONFIG_SND_MIA is not set
71348 -# CONFIG_SND_ECHO3G is not set
71349 -# CONFIG_SND_INDIGO is not set
71350 -# CONFIG_SND_INDIGOIO is not set
71351 -# CONFIG_SND_INDIGODJ is not set
71352 -# CONFIG_SND_EMU10K1 is not set
71353 -# CONFIG_SND_EMU10K1X is not set
71354 -# CONFIG_SND_ENS1370 is not set
71355 -# CONFIG_SND_ENS1371 is not set
71356 -# CONFIG_SND_ES1938 is not set
71357 -# CONFIG_SND_ES1968 is not set
71358 -# CONFIG_SND_FM801 is not set
71359 -# CONFIG_SND_HDA_INTEL is not set
71360 -# CONFIG_SND_HDSP is not set
71361 -# CONFIG_SND_HDSPM is not set
71362 -# CONFIG_SND_HIFIER is not set
71363 -# CONFIG_SND_ICE1712 is not set
71364 -# CONFIG_SND_ICE1724 is not set
71365 -CONFIG_SND_INTEL8X0=y
71366 -# CONFIG_SND_INTEL8X0M is not set
71367 -# CONFIG_SND_KORG1212 is not set
71368 -# CONFIG_SND_MAESTRO3 is not set
71369 -# CONFIG_SND_MIXART is not set
71370 -# CONFIG_SND_NM256 is not set
71371 -# CONFIG_SND_PCXHR is not set
71372 -# CONFIG_SND_RIPTIDE is not set
71373 -# CONFIG_SND_RME32 is not set
71374 -# CONFIG_SND_RME96 is not set
71375 -# CONFIG_SND_RME9652 is not set
71376 -# CONFIG_SND_SONICVIBES is not set
71377 -# CONFIG_SND_TRIDENT is not set
71378 -# CONFIG_SND_VIA82XX is not set
71379 -# CONFIG_SND_VIA82XX_MODEM is not set
71380 -# CONFIG_SND_VIRTUOSO is not set
71381 -# CONFIG_SND_VX222 is not set
71382 -# CONFIG_SND_YMFPCI is not set
71383 -# CONFIG_SND_AC97_POWER_SAVE is not set
71384 -
71385 -#
71386 -# ALSA PowerMac devices
71387 -#
71388 -
71389 -#
71390 -# ALSA PowerPC devices
71391 -#
71392 -
71393 -#
71394 -# USB devices
71395 -#
71396 -# CONFIG_SND_USB_AUDIO is not set
71397 -# CONFIG_SND_USB_USX2Y is not set
71398 -# CONFIG_SND_USB_CAIAQ is not set
71399 -
71400 -#
71401 -# System on Chip audio support
71402 -#
71403 -# CONFIG_SND_SOC is not set
71404 -
71405 -#
71406 -# SoC Audio support for SuperH
71407 -#
71408 -
71409 -#
71410 -# ALSA SoC audio for Freescale SOCs
71411 -#
71412 -
71413 -#
71414 -# Open Sound System
71415 -#
71416 -# CONFIG_SOUND_PRIME is not set
71417 -CONFIG_AC97_BUS=y
71418 -CONFIG_HID_SUPPORT=y
71419 -CONFIG_HID=y
71420 -# CONFIG_HID_DEBUG is not set
71421 -# CONFIG_HIDRAW is not set
71422 -
71423 -#
71424 -# USB Input Devices
71425 -#
71426 -CONFIG_USB_HID=y
71427 -# CONFIG_USB_HIDINPUT_POWERBOOK is not set
71428 -# CONFIG_HID_FF is not set
71429 -# CONFIG_USB_HIDDEV is not set
71430 -CONFIG_USB_SUPPORT=y
71431 -CONFIG_USB_ARCH_HAS_HCD=y
71432 -CONFIG_USB_ARCH_HAS_OHCI=y
71433 -CONFIG_USB_ARCH_HAS_EHCI=y
71434 -CONFIG_USB=y
71435 -# CONFIG_USB_DEBUG is not set
71436 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
71437 -
71438 -#
71439 -# Miscellaneous USB options
71440 -#
71441 -CONFIG_USB_DEVICEFS=y
71442 -CONFIG_USB_DEVICE_CLASS=y
71443 -# CONFIG_USB_DYNAMIC_MINORS is not set
71444 -# CONFIG_USB_OTG is not set
71445 -
71446 -#
71447 -# USB Host Controller Drivers
71448 -#
71449 -CONFIG_USB_EHCI_HCD=y
71450 -# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
71451 -# CONFIG_USB_EHCI_TT_NEWSCHED is not set
71452 -# CONFIG_USB_EHCI_FSL is not set
71453 -CONFIG_USB_EHCI_HCD_PPC_OF=y
71454 -# CONFIG_USB_ISP116X_HCD is not set
71455 -CONFIG_USB_OHCI_HCD=y
71456 -CONFIG_USB_OHCI_HCD_PPC_OF=y
71457 -CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
71458 -CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
71459 -CONFIG_USB_OHCI_HCD_PCI=y
71460 -CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
71461 -CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
71462 -CONFIG_USB_OHCI_LITTLE_ENDIAN=y
71463 -# CONFIG_USB_UHCI_HCD is not set
71464 -# CONFIG_USB_SL811_HCD is not set
71465 -# CONFIG_USB_R8A66597_HCD is not set
71466 -
71467 -#
71468 -# USB Device Class drivers
71469 -#
71470 -# CONFIG_USB_ACM is not set
71471 -# CONFIG_USB_PRINTER is not set
71472 -
71473 -#
71474 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
71475 -#
71476 -
71477 -#
71478 -# may also be needed; see USB_STORAGE Help for more information
71479 -#
71480 -CONFIG_USB_STORAGE=y
71481 -# CONFIG_USB_STORAGE_DEBUG is not set
71482 -# CONFIG_USB_STORAGE_DATAFAB is not set
71483 -# CONFIG_USB_STORAGE_FREECOM is not set
71484 -# CONFIG_USB_STORAGE_ISD200 is not set
71485 -# CONFIG_USB_STORAGE_DPCM is not set
71486 -# CONFIG_USB_STORAGE_USBAT is not set
71487 -# CONFIG_USB_STORAGE_SDDR09 is not set
71488 -# CONFIG_USB_STORAGE_SDDR55 is not set
71489 -# CONFIG_USB_STORAGE_JUMPSHOT is not set
71490 -# CONFIG_USB_STORAGE_ALAUDA is not set
71491 -# CONFIG_USB_STORAGE_KARMA is not set
71492 -# CONFIG_USB_LIBUSUAL is not set
71493 -
71494 -#
71495 -# USB Imaging devices
71496 -#
71497 -# CONFIG_USB_MDC800 is not set
71498 -# CONFIG_USB_MICROTEK is not set
71499 -CONFIG_USB_MON=y
71500 -
71501 -#
71502 -# USB port drivers
71503 -#
71504 -# CONFIG_USB_SERIAL is not set
71505 -
71506 -#
71507 -# USB Miscellaneous drivers
71508 -#
71509 -# CONFIG_USB_EMI62 is not set
71510 -# CONFIG_USB_EMI26 is not set
71511 -# CONFIG_USB_ADUTUX is not set
71512 -# CONFIG_USB_AUERSWALD is not set
71513 -# CONFIG_USB_RIO500 is not set
71514 -# CONFIG_USB_LEGOTOWER is not set
71515 -# CONFIG_USB_LCD is not set
71516 -# CONFIG_USB_BERRY_CHARGE is not set
71517 -# CONFIG_USB_LED is not set
71518 -# CONFIG_USB_CYPRESS_CY7C63 is not set
71519 -# CONFIG_USB_CYTHERM is not set
71520 -# CONFIG_USB_PHIDGET is not set
71521 -# CONFIG_USB_IDMOUSE is not set
71522 -# CONFIG_USB_FTDI_ELAN is not set
71523 -# CONFIG_USB_APPLEDISPLAY is not set
71524 -# CONFIG_USB_SISUSBVGA is not set
71525 -# CONFIG_USB_LD is not set
71526 -# CONFIG_USB_TRANCEVIBRATOR is not set
71527 -# CONFIG_USB_IOWARRIOR is not set
71528 -# CONFIG_USB_TEST is not set
71529 -# CONFIG_USB_GADGET is not set
71530 -# CONFIG_MMC is not set
71531 -# CONFIG_MEMSTICK is not set
71532 -# CONFIG_NEW_LEDS is not set
71533 -# CONFIG_INFINIBAND is not set
71534 -# CONFIG_EDAC is not set
71535 -CONFIG_RTC_LIB=y
71536 -CONFIG_RTC_CLASS=y
71537 -CONFIG_RTC_HCTOSYS=y
71538 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
71539 -# CONFIG_RTC_DEBUG is not set
71540 -
71541 -#
71542 -# RTC interfaces
71543 -#
71544 -CONFIG_RTC_INTF_SYSFS=y
71545 -CONFIG_RTC_INTF_PROC=y
71546 -CONFIG_RTC_INTF_DEV=y
71547 -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
71548 -# CONFIG_RTC_DRV_TEST is not set
71549 -
71550 -#
71551 -# I2C RTC drivers
71552 -#
71553 -# CONFIG_RTC_DRV_DS1307 is not set
71554 -# CONFIG_RTC_DRV_DS1374 is not set
71555 -# CONFIG_RTC_DRV_DS1672 is not set
71556 -# CONFIG_RTC_DRV_MAX6900 is not set
71557 -# CONFIG_RTC_DRV_RS5C372 is not set
71558 -# CONFIG_RTC_DRV_ISL1208 is not set
71559 -# CONFIG_RTC_DRV_X1205 is not set
71560 -# CONFIG_RTC_DRV_PCF8563 is not set
71561 -# CONFIG_RTC_DRV_PCF8583 is not set
71562 -# CONFIG_RTC_DRV_M41T80 is not set
71563 -# CONFIG_RTC_DRV_S35390A is not set
71564 -
71565 -#
71566 -# SPI RTC drivers
71567 -#
71568 -
71569 -#
71570 -# Platform RTC drivers
71571 -#
71572 -CONFIG_RTC_DRV_CMOS=y
71573 -# CONFIG_RTC_DRV_DS1511 is not set
71574 -# CONFIG_RTC_DRV_DS1553 is not set
71575 -# CONFIG_RTC_DRV_DS1742 is not set
71576 -# CONFIG_RTC_DRV_STK17TA8 is not set
71577 -# CONFIG_RTC_DRV_M48T86 is not set
71578 -# CONFIG_RTC_DRV_M48T59 is not set
71579 -# CONFIG_RTC_DRV_V3020 is not set
71580 -
71581 -#
71582 -# on-CPU RTC drivers
71583 -#
71584 -# CONFIG_DMADEVICES is not set
71585 -
71586 -#
71587 -# Userspace I/O
71588 -#
71589 -# CONFIG_UIO is not set
71590 -
71591 -#
71592 -# File systems
71593 -#
71594 -CONFIG_EXT2_FS=y
71595 -# CONFIG_EXT2_FS_XATTR is not set
71596 -# CONFIG_EXT2_FS_XIP is not set
71597 -CONFIG_EXT3_FS=y
71598 -CONFIG_EXT3_FS_XATTR=y
71599 -# CONFIG_EXT3_FS_POSIX_ACL is not set
71600 -# CONFIG_EXT3_FS_SECURITY is not set
71601 -# CONFIG_EXT4DEV_FS is not set
71602 -CONFIG_JBD=y
71603 -CONFIG_FS_MBCACHE=y
71604 -# CONFIG_REISERFS_FS is not set
71605 -# CONFIG_JFS_FS is not set
71606 -# CONFIG_FS_POSIX_ACL is not set
71607 -# CONFIG_XFS_FS is not set
71608 -# CONFIG_GFS2_FS is not set
71609 -# CONFIG_OCFS2_FS is not set
71610 -CONFIG_DNOTIFY=y
71611 -CONFIG_INOTIFY=y
71612 -CONFIG_INOTIFY_USER=y
71613 -# CONFIG_QUOTA is not set
71614 -# CONFIG_AUTOFS_FS is not set
71615 -# CONFIG_AUTOFS4_FS is not set
71616 -# CONFIG_FUSE_FS is not set
71617 -
71618 -#
71619 -# CD-ROM/DVD Filesystems
71620 -#
71621 -CONFIG_ISO9660_FS=m
71622 -CONFIG_JOLIET=y
71623 -CONFIG_ZISOFS=y
71624 -CONFIG_UDF_FS=m
71625 -CONFIG_UDF_NLS=y
71626 -
71627 -#
71628 -# DOS/FAT/NT Filesystems
71629 -#
71630 -CONFIG_FAT_FS=y
71631 -CONFIG_MSDOS_FS=m
71632 -CONFIG_VFAT_FS=y
71633 -CONFIG_FAT_DEFAULT_CODEPAGE=437
71634 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
71635 -CONFIG_NTFS_FS=y
71636 -# CONFIG_NTFS_DEBUG is not set
71637 -# CONFIG_NTFS_RW is not set
71638 -
71639 -#
71640 -# Pseudo filesystems
71641 -#
71642 -CONFIG_PROC_FS=y
71643 -CONFIG_PROC_KCORE=y
71644 -CONFIG_PROC_SYSCTL=y
71645 -CONFIG_SYSFS=y
71646 -CONFIG_TMPFS=y
71647 -# CONFIG_TMPFS_POSIX_ACL is not set
71648 -# CONFIG_HUGETLB_PAGE is not set
71649 -# CONFIG_CONFIGFS_FS is not set
71650 -
71651 -#
71652 -# Miscellaneous filesystems
71653 -#
71654 -CONFIG_ADFS_FS=m
71655 -# CONFIG_ADFS_FS_RW is not set
71656 -CONFIG_AFFS_FS=m
71657 -CONFIG_HFS_FS=m
71658 -CONFIG_HFSPLUS_FS=m
71659 -CONFIG_BEFS_FS=m
71660 -# CONFIG_BEFS_DEBUG is not set
71661 -CONFIG_BFS_FS=m
71662 -CONFIG_EFS_FS=m
71663 -CONFIG_CRAMFS=y
71664 -CONFIG_VXFS_FS=m
71665 -# CONFIG_MINIX_FS is not set
71666 -CONFIG_HPFS_FS=m
71667 -CONFIG_QNX4FS_FS=m
71668 -# CONFIG_ROMFS_FS is not set
71669 -CONFIG_SYSV_FS=m
71670 -CONFIG_UFS_FS=m
71671 -# CONFIG_UFS_FS_WRITE is not set
71672 -# CONFIG_UFS_DEBUG is not set
71673 -CONFIG_NETWORK_FILESYSTEMS=y
71674 -CONFIG_NFS_FS=y
71675 -CONFIG_NFS_V3=y
71676 -# CONFIG_NFS_V3_ACL is not set
71677 -CONFIG_NFS_V4=y
71678 -# CONFIG_NFS_DIRECTIO is not set
71679 -CONFIG_NFSD=y
71680 -# CONFIG_NFSD_V3 is not set
71681 -CONFIG_NFSD_TCP=y
71682 -CONFIG_ROOT_NFS=y
71683 -CONFIG_LOCKD=y
71684 -CONFIG_LOCKD_V4=y
71685 -CONFIG_EXPORTFS=y
71686 -CONFIG_NFS_COMMON=y
71687 -CONFIG_SUNRPC=y
71688 -CONFIG_SUNRPC_GSS=y
71689 -# CONFIG_SUNRPC_BIND34 is not set
71690 -CONFIG_RPCSEC_GSS_KRB5=y
71691 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
71692 -# CONFIG_SMB_FS is not set
71693 -# CONFIG_CIFS is not set
71694 -# CONFIG_NCP_FS is not set
71695 -# CONFIG_CODA_FS is not set
71696 -# CONFIG_AFS_FS is not set
71697 -
71698 -#
71699 -# Partition Types
71700 -#
71701 -CONFIG_PARTITION_ADVANCED=y
71702 -# CONFIG_ACORN_PARTITION is not set
71703 -# CONFIG_OSF_PARTITION is not set
71704 -# CONFIG_AMIGA_PARTITION is not set
71705 -# CONFIG_ATARI_PARTITION is not set
71706 -CONFIG_MAC_PARTITION=y
71707 -CONFIG_MSDOS_PARTITION=y
71708 -# CONFIG_BSD_DISKLABEL is not set
71709 -# CONFIG_MINIX_SUBPARTITION is not set
71710 -# CONFIG_SOLARIS_X86_PARTITION is not set
71711 -# CONFIG_UNIXWARE_DISKLABEL is not set
71712 -# CONFIG_LDM_PARTITION is not set
71713 -# CONFIG_SGI_PARTITION is not set
71714 -# CONFIG_ULTRIX_PARTITION is not set
71715 -# CONFIG_SUN_PARTITION is not set
71716 -# CONFIG_KARMA_PARTITION is not set
71717 -# CONFIG_EFI_PARTITION is not set
71718 -# CONFIG_SYSV68_PARTITION is not set
71719 -CONFIG_NLS=y
71720 -CONFIG_NLS_DEFAULT="iso8859-1"
71721 -# CONFIG_NLS_CODEPAGE_437 is not set
71722 -# CONFIG_NLS_CODEPAGE_737 is not set
71723 -# CONFIG_NLS_CODEPAGE_775 is not set
71724 -# CONFIG_NLS_CODEPAGE_850 is not set
71725 -# CONFIG_NLS_CODEPAGE_852 is not set
71726 -# CONFIG_NLS_CODEPAGE_855 is not set
71727 -# CONFIG_NLS_CODEPAGE_857 is not set
71728 -# CONFIG_NLS_CODEPAGE_860 is not set
71729 -# CONFIG_NLS_CODEPAGE_861 is not set
71730 -# CONFIG_NLS_CODEPAGE_862 is not set
71731 -# CONFIG_NLS_CODEPAGE_863 is not set
71732 -# CONFIG_NLS_CODEPAGE_864 is not set
71733 -# CONFIG_NLS_CODEPAGE_865 is not set
71734 -# CONFIG_NLS_CODEPAGE_866 is not set
71735 -# CONFIG_NLS_CODEPAGE_869 is not set
71736 -# CONFIG_NLS_CODEPAGE_936 is not set
71737 -# CONFIG_NLS_CODEPAGE_950 is not set
71738 -# CONFIG_NLS_CODEPAGE_932 is not set
71739 -# CONFIG_NLS_CODEPAGE_949 is not set
71740 -# CONFIG_NLS_CODEPAGE_874 is not set
71741 -# CONFIG_NLS_ISO8859_8 is not set
71742 -# CONFIG_NLS_CODEPAGE_1250 is not set
71743 -# CONFIG_NLS_CODEPAGE_1251 is not set
71744 -# CONFIG_NLS_ASCII is not set
71745 -# CONFIG_NLS_ISO8859_1 is not set
71746 -# CONFIG_NLS_ISO8859_2 is not set
71747 -# CONFIG_NLS_ISO8859_3 is not set
71748 -# CONFIG_NLS_ISO8859_4 is not set
71749 -# CONFIG_NLS_ISO8859_5 is not set
71750 -# CONFIG_NLS_ISO8859_6 is not set
71751 -# CONFIG_NLS_ISO8859_7 is not set
71752 -# CONFIG_NLS_ISO8859_9 is not set
71753 -# CONFIG_NLS_ISO8859_13 is not set
71754 -# CONFIG_NLS_ISO8859_14 is not set
71755 -# CONFIG_NLS_ISO8859_15 is not set
71756 -# CONFIG_NLS_KOI8_R is not set
71757 -# CONFIG_NLS_KOI8_U is not set
71758 -CONFIG_NLS_UTF8=m
71759 -# CONFIG_DLM is not set
71760 -
71761 -#
71762 -# Library routines
71763 -#
71764 -CONFIG_BITREVERSE=y
71765 -# CONFIG_CRC_CCITT is not set
71766 -# CONFIG_CRC16 is not set
71767 -# CONFIG_CRC_ITU_T is not set
71768 -CONFIG_CRC32=y
71769 -# CONFIG_CRC7 is not set
71770 -CONFIG_LIBCRC32C=m
71771 -CONFIG_ZLIB_INFLATE=y
71772 -CONFIG_PLIST=y
71773 -CONFIG_HAS_IOMEM=y
71774 -CONFIG_HAS_IOPORT=y
71775 -CONFIG_HAS_DMA=y
71776 -
71777 -#
71778 -# Kernel hacking
71779 -#
71780 -# CONFIG_PRINTK_TIME is not set
71781 -CONFIG_ENABLE_WARN_DEPRECATED=y
71782 -CONFIG_ENABLE_MUST_CHECK=y
71783 -# CONFIG_MAGIC_SYSRQ is not set
71784 -# CONFIG_UNUSED_SYMBOLS is not set
71785 -# CONFIG_DEBUG_FS is not set
71786 -# CONFIG_HEADERS_CHECK is not set
71787 -CONFIG_DEBUG_KERNEL=y
71788 -# CONFIG_DEBUG_SHIRQ is not set
71789 -CONFIG_DETECT_SOFTLOCKUP=y
71790 -CONFIG_SCHED_DEBUG=y
71791 -# CONFIG_SCHEDSTATS is not set
71792 -# CONFIG_TIMER_STATS is not set
71793 -# CONFIG_SLUB_DEBUG_ON is not set
71794 -# CONFIG_SLUB_STATS is not set
71795 -# CONFIG_DEBUG_RT_MUTEXES is not set
71796 -# CONFIG_RT_MUTEX_TESTER is not set
71797 -# CONFIG_DEBUG_SPINLOCK is not set
71798 -# CONFIG_DEBUG_MUTEXES is not set
71799 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
71800 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
71801 -# CONFIG_DEBUG_KOBJECT is not set
71802 -# CONFIG_DEBUG_HIGHMEM is not set
71803 -# CONFIG_DEBUG_BUGVERBOSE is not set
71804 -CONFIG_DEBUG_INFO=y
71805 -# CONFIG_DEBUG_VM is not set
71806 -# CONFIG_DEBUG_LIST is not set
71807 -# CONFIG_DEBUG_SG is not set
71808 -# CONFIG_BOOT_PRINTK_DELAY is not set
71809 -# CONFIG_RCU_TORTURE_TEST is not set
71810 -# CONFIG_BACKTRACE_SELF_TEST is not set
71811 -# CONFIG_FAULT_INJECTION is not set
71812 -# CONFIG_SAMPLES is not set
71813 -# CONFIG_DEBUG_STACKOVERFLOW is not set
71814 -# CONFIG_DEBUG_STACK_USAGE is not set
71815 -# CONFIG_DEBUG_PAGEALLOC is not set
71816 -# CONFIG_DEBUGGER is not set
71817 -# CONFIG_BDI_SWITCH is not set
71818 -# CONFIG_PPC_EARLY_DEBUG is not set
71819 -
71820 -#
71821 -# Security options
71822 -#
71823 -# CONFIG_KEYS is not set
71824 -# CONFIG_SECURITY is not set
71825 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
71826 -CONFIG_CRYPTO=y
71827 -CONFIG_CRYPTO_ALGAPI=y
71828 -CONFIG_CRYPTO_BLKCIPHER=y
71829 -# CONFIG_CRYPTO_SEQIV is not set
71830 -CONFIG_CRYPTO_HASH=y
71831 -CONFIG_CRYPTO_MANAGER=y
71832 -CONFIG_CRYPTO_HMAC=y
71833 -# CONFIG_CRYPTO_XCBC is not set
71834 -# CONFIG_CRYPTO_NULL is not set
71835 -# CONFIG_CRYPTO_MD4 is not set
71836 -CONFIG_CRYPTO_MD5=y
71837 -CONFIG_CRYPTO_SHA1=m
71838 -# CONFIG_CRYPTO_SHA256 is not set
71839 -# CONFIG_CRYPTO_SHA512 is not set
71840 -# CONFIG_CRYPTO_WP512 is not set
71841 -# CONFIG_CRYPTO_TGR192 is not set
71842 -# CONFIG_CRYPTO_GF128MUL is not set
71843 -# CONFIG_CRYPTO_ECB is not set
71844 -CONFIG_CRYPTO_CBC=y
71845 -CONFIG_CRYPTO_PCBC=m
71846 -# CONFIG_CRYPTO_LRW is not set
71847 -# CONFIG_CRYPTO_XTS is not set
71848 -# CONFIG_CRYPTO_CTR is not set
71849 -# CONFIG_CRYPTO_GCM is not set
71850 -# CONFIG_CRYPTO_CCM is not set
71851 -# CONFIG_CRYPTO_CRYPTD is not set
71852 -CONFIG_CRYPTO_DES=y
71853 -# CONFIG_CRYPTO_FCRYPT is not set
71854 -# CONFIG_CRYPTO_BLOWFISH is not set
71855 -# CONFIG_CRYPTO_TWOFISH is not set
71856 -# CONFIG_CRYPTO_SERPENT is not set
71857 -# CONFIG_CRYPTO_AES is not set
71858 -# CONFIG_CRYPTO_CAST5 is not set
71859 -# CONFIG_CRYPTO_CAST6 is not set
71860 -# CONFIG_CRYPTO_TEA is not set
71861 -# CONFIG_CRYPTO_ARC4 is not set
71862 -# CONFIG_CRYPTO_KHAZAD is not set
71863 -# CONFIG_CRYPTO_ANUBIS is not set
71864 -# CONFIG_CRYPTO_SEED is not set
71865 -# CONFIG_CRYPTO_SALSA20 is not set
71866 -# CONFIG_CRYPTO_DEFLATE is not set
71867 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
71868 -# CONFIG_CRYPTO_CRC32C is not set
71869 -# CONFIG_CRYPTO_CAMELLIA is not set
71870 -# CONFIG_CRYPTO_TEST is not set
71871 -# CONFIG_CRYPTO_AUTHENC is not set
71872 -# CONFIG_CRYPTO_LZO is not set
71873 -CONFIG_CRYPTO_HW=y
71874 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
71875 -# CONFIG_PPC_CLOCK is not set
71876 Index: linux-2.6.25.4/arch/powerpc/configs/mpc85xx_cds_defconfig
71877 ===================================================================
71878 --- linux-2.6.25.4.orig/arch/powerpc/configs/mpc85xx_cds_defconfig
71879 +++ /dev/null
71880 @@ -1,935 +0,0 @@
71881 -#
71882 -# Automatically generated make config: don't edit
71883 -# Linux kernel version: 2.6.25-rc6
71884 -# Mon Mar 24 08:48:30 2008
71885 -#
71886 -# CONFIG_PPC64 is not set
71887 -
71888 -#
71889 -# Processor support
71890 -#
71891 -# CONFIG_6xx is not set
71892 -CONFIG_PPC_85xx=y
71893 -# CONFIG_PPC_8xx is not set
71894 -# CONFIG_40x is not set
71895 -# CONFIG_44x is not set
71896 -# CONFIG_E200 is not set
71897 -CONFIG_E500=y
71898 -CONFIG_BOOKE=y
71899 -CONFIG_FSL_BOOKE=y
71900 -CONFIG_FSL_EMB_PERFMON=y
71901 -# CONFIG_PHYS_64BIT is not set
71902 -CONFIG_SPE=y
71903 -# CONFIG_PPC_MM_SLICES is not set
71904 -CONFIG_PPC32=y
71905 -CONFIG_WORD_SIZE=32
71906 -CONFIG_PPC_MERGE=y
71907 -CONFIG_MMU=y
71908 -CONFIG_GENERIC_CMOS_UPDATE=y
71909 -CONFIG_GENERIC_TIME=y
71910 -CONFIG_GENERIC_TIME_VSYSCALL=y
71911 -CONFIG_GENERIC_CLOCKEVENTS=y
71912 -CONFIG_GENERIC_HARDIRQS=y
71913 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
71914 -CONFIG_IRQ_PER_CPU=y
71915 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
71916 -CONFIG_ARCH_HAS_ILOG2_U32=y
71917 -CONFIG_GENERIC_HWEIGHT=y
71918 -CONFIG_GENERIC_CALIBRATE_DELAY=y
71919 -CONFIG_GENERIC_FIND_NEXT_BIT=y
71920 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
71921 -CONFIG_PPC=y
71922 -CONFIG_EARLY_PRINTK=y
71923 -CONFIG_GENERIC_NVRAM=y
71924 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
71925 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
71926 -CONFIG_PPC_OF=y
71927 -CONFIG_OF=y
71928 -CONFIG_PPC_UDBG_16550=y
71929 -# CONFIG_GENERIC_TBSYNC is not set
71930 -CONFIG_AUDIT_ARCH=y
71931 -CONFIG_GENERIC_BUG=y
71932 -CONFIG_DEFAULT_UIMAGE=y
71933 -# CONFIG_PPC_DCR_NATIVE is not set
71934 -# CONFIG_PPC_DCR_MMIO is not set
71935 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
71936 -
71937 -#
71938 -# General setup
71939 -#
71940 -CONFIG_EXPERIMENTAL=y
71941 -CONFIG_BROKEN_ON_SMP=y
71942 -CONFIG_INIT_ENV_ARG_LIMIT=32
71943 -CONFIG_LOCALVERSION=""
71944 -CONFIG_LOCALVERSION_AUTO=y
71945 -CONFIG_SWAP=y
71946 -CONFIG_SYSVIPC=y
71947 -CONFIG_SYSVIPC_SYSCTL=y
71948 -# CONFIG_POSIX_MQUEUE is not set
71949 -# CONFIG_BSD_PROCESS_ACCT is not set
71950 -# CONFIG_TASKSTATS is not set
71951 -# CONFIG_AUDIT is not set
71952 -# CONFIG_IKCONFIG is not set
71953 -CONFIG_LOG_BUF_SHIFT=14
71954 -# CONFIG_CGROUPS is not set
71955 -CONFIG_GROUP_SCHED=y
71956 -# CONFIG_FAIR_GROUP_SCHED is not set
71957 -# CONFIG_RT_GROUP_SCHED is not set
71958 -CONFIG_USER_SCHED=y
71959 -# CONFIG_CGROUP_SCHED is not set
71960 -CONFIG_SYSFS_DEPRECATED=y
71961 -CONFIG_SYSFS_DEPRECATED_V2=y
71962 -# CONFIG_RELAY is not set
71963 -# CONFIG_NAMESPACES is not set
71964 -CONFIG_BLK_DEV_INITRD=y
71965 -CONFIG_INITRAMFS_SOURCE=""
71966 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
71967 -CONFIG_SYSCTL=y
71968 -CONFIG_EMBEDDED=y
71969 -CONFIG_SYSCTL_SYSCALL=y
71970 -CONFIG_KALLSYMS=y
71971 -# CONFIG_KALLSYMS_ALL is not set
71972 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
71973 -CONFIG_HOTPLUG=y
71974 -CONFIG_PRINTK=y
71975 -CONFIG_BUG=y
71976 -CONFIG_ELF_CORE=y
71977 -CONFIG_COMPAT_BRK=y
71978 -CONFIG_BASE_FULL=y
71979 -CONFIG_FUTEX=y
71980 -CONFIG_ANON_INODES=y
71981 -CONFIG_EPOLL=y
71982 -CONFIG_SIGNALFD=y
71983 -CONFIG_TIMERFD=y
71984 -CONFIG_EVENTFD=y
71985 -CONFIG_SHMEM=y
71986 -CONFIG_VM_EVENT_COUNTERS=y
71987 -CONFIG_SLUB_DEBUG=y
71988 -# CONFIG_SLAB is not set
71989 -CONFIG_SLUB=y
71990 -# CONFIG_SLOB is not set
71991 -# CONFIG_PROFILING is not set
71992 -# CONFIG_MARKERS is not set
71993 -CONFIG_HAVE_OPROFILE=y
71994 -CONFIG_HAVE_KPROBES=y
71995 -CONFIG_HAVE_KRETPROBES=y
71996 -CONFIG_PROC_PAGE_MONITOR=y
71997 -CONFIG_SLABINFO=y
71998 -CONFIG_RT_MUTEXES=y
71999 -# CONFIG_TINY_SHMEM is not set
72000 -CONFIG_BASE_SMALL=0
72001 -# CONFIG_MODULES is not set
72002 -CONFIG_BLOCK=y
72003 -# CONFIG_LBD is not set
72004 -# CONFIG_BLK_DEV_IO_TRACE is not set
72005 -# CONFIG_LSF is not set
72006 -# CONFIG_BLK_DEV_BSG is not set
72007 -
72008 -#
72009 -# IO Schedulers
72010 -#
72011 -CONFIG_IOSCHED_NOOP=y
72012 -CONFIG_IOSCHED_AS=y
72013 -CONFIG_IOSCHED_DEADLINE=y
72014 -CONFIG_IOSCHED_CFQ=y
72015 -CONFIG_DEFAULT_AS=y
72016 -# CONFIG_DEFAULT_DEADLINE is not set
72017 -# CONFIG_DEFAULT_CFQ is not set
72018 -# CONFIG_DEFAULT_NOOP is not set
72019 -CONFIG_DEFAULT_IOSCHED="anticipatory"
72020 -CONFIG_CLASSIC_RCU=y
72021 -
72022 -#
72023 -# Platform support
72024 -#
72025 -# CONFIG_PPC_MPC512x is not set
72026 -# CONFIG_PPC_MPC5121 is not set
72027 -# CONFIG_PPC_CELL is not set
72028 -# CONFIG_PPC_CELL_NATIVE is not set
72029 -# CONFIG_PQ2ADS is not set
72030 -CONFIG_MPC85xx=y
72031 -# CONFIG_MPC8540_ADS is not set
72032 -# CONFIG_MPC8560_ADS is not set
72033 -CONFIG_MPC85xx_CDS=y
72034 -# CONFIG_MPC85xx_MDS is not set
72035 -# CONFIG_MPC85xx_DS is not set
72036 -# CONFIG_STX_GP3 is not set
72037 -# CONFIG_TQM8540 is not set
72038 -# CONFIG_TQM8541 is not set
72039 -# CONFIG_TQM8555 is not set
72040 -# CONFIG_TQM8560 is not set
72041 -# CONFIG_SBC8548 is not set
72042 -# CONFIG_SBC8560 is not set
72043 -# CONFIG_IPIC is not set
72044 -CONFIG_MPIC=y
72045 -# CONFIG_MPIC_WEIRD is not set
72046 -CONFIG_PPC_I8259=y
72047 -# CONFIG_PPC_RTAS is not set
72048 -# CONFIG_MMIO_NVRAM is not set
72049 -# CONFIG_PPC_MPC106 is not set
72050 -# CONFIG_PPC_970_NAP is not set
72051 -# CONFIG_PPC_INDIRECT_IO is not set
72052 -# CONFIG_GENERIC_IOMAP is not set
72053 -# CONFIG_CPU_FREQ is not set
72054 -# CONFIG_CPM2 is not set
72055 -# CONFIG_FSL_ULI1575 is not set
72056 -
72057 -#
72058 -# Kernel options
72059 -#
72060 -# CONFIG_HIGHMEM is not set
72061 -CONFIG_TICK_ONESHOT=y
72062 -CONFIG_NO_HZ=y
72063 -CONFIG_HIGH_RES_TIMERS=y
72064 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
72065 -# CONFIG_HZ_100 is not set
72066 -CONFIG_HZ_250=y
72067 -# CONFIG_HZ_300 is not set
72068 -# CONFIG_HZ_1000 is not set
72069 -CONFIG_HZ=250
72070 -# CONFIG_SCHED_HRTICK is not set
72071 -CONFIG_PREEMPT_NONE=y
72072 -# CONFIG_PREEMPT_VOLUNTARY is not set
72073 -# CONFIG_PREEMPT is not set
72074 -CONFIG_BINFMT_ELF=y
72075 -CONFIG_BINFMT_MISC=y
72076 -CONFIG_MATH_EMULATION=y
72077 -# CONFIG_IOMMU_HELPER is not set
72078 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
72079 -CONFIG_ARCH_HAS_WALK_MEMORY=y
72080 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
72081 -CONFIG_ARCH_FLATMEM_ENABLE=y
72082 -CONFIG_ARCH_POPULATES_NODE_MAP=y
72083 -CONFIG_SELECT_MEMORY_MODEL=y
72084 -CONFIG_FLATMEM_MANUAL=y
72085 -# CONFIG_DISCONTIGMEM_MANUAL is not set
72086 -# CONFIG_SPARSEMEM_MANUAL is not set
72087 -CONFIG_FLATMEM=y
72088 -CONFIG_FLAT_NODE_MEM_MAP=y
72089 -# CONFIG_SPARSEMEM_STATIC is not set
72090 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
72091 -CONFIG_SPLIT_PTLOCK_CPUS=4
72092 -# CONFIG_RESOURCES_64BIT is not set
72093 -CONFIG_ZONE_DMA_FLAG=1
72094 -CONFIG_BOUNCE=y
72095 -CONFIG_VIRT_TO_BUS=y
72096 -CONFIG_PROC_DEVICETREE=y
72097 -# CONFIG_CMDLINE_BOOL is not set
72098 -# CONFIG_PM is not set
72099 -# CONFIG_SECCOMP is not set
72100 -CONFIG_ISA_DMA_API=y
72101 -
72102 -#
72103 -# Bus options
72104 -#
72105 -CONFIG_ZONE_DMA=y
72106 -CONFIG_PPC_INDIRECT_PCI=y
72107 -CONFIG_FSL_SOC=y
72108 -CONFIG_FSL_PCI=y
72109 -CONFIG_PCI=y
72110 -CONFIG_PCI_DOMAINS=y
72111 -CONFIG_PCI_SYSCALL=y
72112 -# CONFIG_PCIEPORTBUS is not set
72113 -CONFIG_ARCH_SUPPORTS_MSI=y
72114 -# CONFIG_PCI_MSI is not set
72115 -CONFIG_PCI_LEGACY=y
72116 -# CONFIG_PCI_DEBUG is not set
72117 -# CONFIG_PCCARD is not set
72118 -# CONFIG_HOTPLUG_PCI is not set
72119 -
72120 -#
72121 -# Advanced setup
72122 -#
72123 -# CONFIG_ADVANCED_OPTIONS is not set
72124 -
72125 -#
72126 -# Default settings for advanced configuration options are used
72127 -#
72128 -CONFIG_HIGHMEM_START=0xfe000000
72129 -CONFIG_LOWMEM_SIZE=0x30000000
72130 -CONFIG_KERNEL_START=0xc0000000
72131 -CONFIG_TASK_SIZE=0xc0000000
72132 -CONFIG_BOOT_LOAD=0x00800000
72133 -
72134 -#
72135 -# Networking
72136 -#
72137 -CONFIG_NET=y
72138 -
72139 -#
72140 -# Networking options
72141 -#
72142 -CONFIG_PACKET=y
72143 -# CONFIG_PACKET_MMAP is not set
72144 -CONFIG_UNIX=y
72145 -CONFIG_XFRM=y
72146 -CONFIG_XFRM_USER=y
72147 -# CONFIG_XFRM_SUB_POLICY is not set
72148 -# CONFIG_XFRM_MIGRATE is not set
72149 -# CONFIG_XFRM_STATISTICS is not set
72150 -# CONFIG_NET_KEY is not set
72151 -CONFIG_INET=y
72152 -CONFIG_IP_MULTICAST=y
72153 -# CONFIG_IP_ADVANCED_ROUTER is not set
72154 -CONFIG_IP_FIB_HASH=y
72155 -CONFIG_IP_PNP=y
72156 -CONFIG_IP_PNP_DHCP=y
72157 -CONFIG_IP_PNP_BOOTP=y
72158 -# CONFIG_IP_PNP_RARP is not set
72159 -# CONFIG_NET_IPIP is not set
72160 -# CONFIG_NET_IPGRE is not set
72161 -# CONFIG_IP_MROUTE is not set
72162 -# CONFIG_ARPD is not set
72163 -CONFIG_SYN_COOKIES=y
72164 -# CONFIG_INET_AH is not set
72165 -# CONFIG_INET_ESP is not set
72166 -# CONFIG_INET_IPCOMP is not set
72167 -# CONFIG_INET_XFRM_TUNNEL is not set
72168 -# CONFIG_INET_TUNNEL is not set
72169 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
72170 -CONFIG_INET_XFRM_MODE_TUNNEL=y
72171 -CONFIG_INET_XFRM_MODE_BEET=y
72172 -# CONFIG_INET_LRO is not set
72173 -CONFIG_INET_DIAG=y
72174 -CONFIG_INET_TCP_DIAG=y
72175 -# CONFIG_TCP_CONG_ADVANCED is not set
72176 -CONFIG_TCP_CONG_CUBIC=y
72177 -CONFIG_DEFAULT_TCP_CONG="cubic"
72178 -# CONFIG_TCP_MD5SIG is not set
72179 -# CONFIG_IPV6 is not set
72180 -# CONFIG_INET6_XFRM_TUNNEL is not set
72181 -# CONFIG_INET6_TUNNEL is not set
72182 -# CONFIG_NETWORK_SECMARK is not set
72183 -# CONFIG_NETFILTER is not set
72184 -# CONFIG_IP_DCCP is not set
72185 -# CONFIG_IP_SCTP is not set
72186 -# CONFIG_TIPC is not set
72187 -# CONFIG_ATM is not set
72188 -# CONFIG_BRIDGE is not set
72189 -# CONFIG_VLAN_8021Q is not set
72190 -# CONFIG_DECNET is not set
72191 -# CONFIG_LLC2 is not set
72192 -# CONFIG_IPX is not set
72193 -# CONFIG_ATALK is not set
72194 -# CONFIG_X25 is not set
72195 -# CONFIG_LAPB is not set
72196 -# CONFIG_ECONET is not set
72197 -# CONFIG_WAN_ROUTER is not set
72198 -# CONFIG_NET_SCHED is not set
72199 -
72200 -#
72201 -# Network testing
72202 -#
72203 -# CONFIG_NET_PKTGEN is not set
72204 -# CONFIG_HAMRADIO is not set
72205 -# CONFIG_CAN is not set
72206 -# CONFIG_IRDA is not set
72207 -# CONFIG_BT is not set
72208 -# CONFIG_AF_RXRPC is not set
72209 -
72210 -#
72211 -# Wireless
72212 -#
72213 -# CONFIG_CFG80211 is not set
72214 -# CONFIG_WIRELESS_EXT is not set
72215 -# CONFIG_MAC80211 is not set
72216 -# CONFIG_IEEE80211 is not set
72217 -# CONFIG_RFKILL is not set
72218 -# CONFIG_NET_9P is not set
72219 -
72220 -#
72221 -# Device Drivers
72222 -#
72223 -
72224 -#
72225 -# Generic Driver Options
72226 -#
72227 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
72228 -CONFIG_STANDALONE=y
72229 -CONFIG_PREVENT_FIRMWARE_BUILD=y
72230 -# CONFIG_FW_LOADER is not set
72231 -# CONFIG_DEBUG_DRIVER is not set
72232 -# CONFIG_DEBUG_DEVRES is not set
72233 -# CONFIG_SYS_HYPERVISOR is not set
72234 -# CONFIG_CONNECTOR is not set
72235 -# CONFIG_MTD is not set
72236 -CONFIG_OF_DEVICE=y
72237 -# CONFIG_PARPORT is not set
72238 -CONFIG_BLK_DEV=y
72239 -# CONFIG_BLK_DEV_FD is not set
72240 -# CONFIG_BLK_CPQ_DA is not set
72241 -# CONFIG_BLK_CPQ_CISS_DA is not set
72242 -# CONFIG_BLK_DEV_DAC960 is not set
72243 -# CONFIG_BLK_DEV_UMEM is not set
72244 -# CONFIG_BLK_DEV_COW_COMMON is not set
72245 -CONFIG_BLK_DEV_LOOP=y
72246 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
72247 -# CONFIG_BLK_DEV_NBD is not set
72248 -# CONFIG_BLK_DEV_SX8 is not set
72249 -CONFIG_BLK_DEV_RAM=y
72250 -CONFIG_BLK_DEV_RAM_COUNT=16
72251 -CONFIG_BLK_DEV_RAM_SIZE=32768
72252 -# CONFIG_BLK_DEV_XIP is not set
72253 -# CONFIG_CDROM_PKTCDVD is not set
72254 -# CONFIG_ATA_OVER_ETH is not set
72255 -CONFIG_MISC_DEVICES=y
72256 -# CONFIG_PHANTOM is not set
72257 -# CONFIG_EEPROM_93CX6 is not set
72258 -# CONFIG_SGI_IOC4 is not set
72259 -# CONFIG_TIFM_CORE is not set
72260 -# CONFIG_ENCLOSURE_SERVICES is not set
72261 -CONFIG_HAVE_IDE=y
72262 -CONFIG_IDE=y
72263 -CONFIG_IDE_MAX_HWIFS=4
72264 -CONFIG_BLK_DEV_IDE=y
72265 -
72266 -#
72267 -# Please see Documentation/ide/ide.txt for help/info on IDE drives
72268 -#
72269 -# CONFIG_BLK_DEV_IDE_SATA is not set
72270 -# CONFIG_BLK_DEV_IDEDISK is not set
72271 -# CONFIG_IDEDISK_MULTI_MODE is not set
72272 -# CONFIG_BLK_DEV_IDECD is not set
72273 -# CONFIG_BLK_DEV_IDETAPE is not set
72274 -# CONFIG_BLK_DEV_IDEFLOPPY is not set
72275 -# CONFIG_IDE_TASK_IOCTL is not set
72276 -CONFIG_IDE_PROC_FS=y
72277 -
72278 -#
72279 -# IDE chipset support/bugfixes
72280 -#
72281 -CONFIG_IDE_GENERIC=y
72282 -# CONFIG_BLK_DEV_PLATFORM is not set
72283 -CONFIG_BLK_DEV_IDEDMA_SFF=y
72284 -
72285 -#
72286 -# PCI IDE chipsets support
72287 -#
72288 -CONFIG_BLK_DEV_IDEPCI=y
72289 -CONFIG_IDEPCI_PCIBUS_ORDER=y
72290 -# CONFIG_BLK_DEV_OFFBOARD is not set
72291 -CONFIG_BLK_DEV_GENERIC=y
72292 -# CONFIG_BLK_DEV_OPTI621 is not set
72293 -CONFIG_BLK_DEV_IDEDMA_PCI=y
72294 -# CONFIG_BLK_DEV_AEC62XX is not set
72295 -# CONFIG_BLK_DEV_ALI15X3 is not set
72296 -# CONFIG_BLK_DEV_AMD74XX is not set
72297 -# CONFIG_BLK_DEV_CMD64X is not set
72298 -# CONFIG_BLK_DEV_TRIFLEX is not set
72299 -# CONFIG_BLK_DEV_CY82C693 is not set
72300 -# CONFIG_BLK_DEV_CS5520 is not set
72301 -# CONFIG_BLK_DEV_CS5530 is not set
72302 -# CONFIG_BLK_DEV_HPT34X is not set
72303 -# CONFIG_BLK_DEV_HPT366 is not set
72304 -# CONFIG_BLK_DEV_JMICRON is not set
72305 -# CONFIG_BLK_DEV_SC1200 is not set
72306 -# CONFIG_BLK_DEV_PIIX is not set
72307 -# CONFIG_BLK_DEV_IT8213 is not set
72308 -# CONFIG_BLK_DEV_IT821X is not set
72309 -# CONFIG_BLK_DEV_NS87415 is not set
72310 -# CONFIG_BLK_DEV_PDC202XX_OLD is not set
72311 -# CONFIG_BLK_DEV_PDC202XX_NEW is not set
72312 -# CONFIG_BLK_DEV_SVWKS is not set
72313 -# CONFIG_BLK_DEV_SIIMAGE is not set
72314 -# CONFIG_BLK_DEV_SL82C105 is not set
72315 -# CONFIG_BLK_DEV_SLC90E66 is not set
72316 -# CONFIG_BLK_DEV_TRM290 is not set
72317 -CONFIG_BLK_DEV_VIA82CXXX=y
72318 -# CONFIG_BLK_DEV_TC86C001 is not set
72319 -CONFIG_BLK_DEV_IDEDMA=y
72320 -CONFIG_IDE_ARCH_OBSOLETE_INIT=y
72321 -# CONFIG_BLK_DEV_HD is not set
72322 -
72323 -#
72324 -# SCSI device support
72325 -#
72326 -# CONFIG_RAID_ATTRS is not set
72327 -# CONFIG_SCSI is not set
72328 -# CONFIG_SCSI_DMA is not set
72329 -# CONFIG_SCSI_NETLINK is not set
72330 -# CONFIG_ATA is not set
72331 -# CONFIG_MD is not set
72332 -# CONFIG_FUSION is not set
72333 -
72334 -#
72335 -# IEEE 1394 (FireWire) support
72336 -#
72337 -# CONFIG_FIREWIRE is not set
72338 -# CONFIG_IEEE1394 is not set
72339 -# CONFIG_I2O is not set
72340 -# CONFIG_MACINTOSH_DRIVERS is not set
72341 -CONFIG_NETDEVICES=y
72342 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
72343 -# CONFIG_DUMMY is not set
72344 -# CONFIG_BONDING is not set
72345 -# CONFIG_MACVLAN is not set
72346 -# CONFIG_EQUALIZER is not set
72347 -# CONFIG_TUN is not set
72348 -# CONFIG_VETH is not set
72349 -# CONFIG_ARCNET is not set
72350 -CONFIG_PHYLIB=y
72351 -
72352 -#
72353 -# MII PHY device drivers
72354 -#
72355 -# CONFIG_MARVELL_PHY is not set
72356 -# CONFIG_DAVICOM_PHY is not set
72357 -# CONFIG_QSEMI_PHY is not set
72358 -# CONFIG_LXT_PHY is not set
72359 -# CONFIG_CICADA_PHY is not set
72360 -# CONFIG_VITESSE_PHY is not set
72361 -# CONFIG_SMSC_PHY is not set
72362 -# CONFIG_BROADCOM_PHY is not set
72363 -# CONFIG_ICPLUS_PHY is not set
72364 -# CONFIG_REALTEK_PHY is not set
72365 -# CONFIG_FIXED_PHY is not set
72366 -# CONFIG_MDIO_BITBANG is not set
72367 -CONFIG_NET_ETHERNET=y
72368 -CONFIG_MII=y
72369 -# CONFIG_HAPPYMEAL is not set
72370 -# CONFIG_SUNGEM is not set
72371 -# CONFIG_CASSINI is not set
72372 -# CONFIG_NET_VENDOR_3COM is not set
72373 -# CONFIG_NET_TULIP is not set
72374 -# CONFIG_HP100 is not set
72375 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
72376 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
72377 -# CONFIG_IBM_NEW_EMAC_TAH is not set
72378 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
72379 -# CONFIG_NET_PCI is not set
72380 -# CONFIG_B44 is not set
72381 -CONFIG_NETDEV_1000=y
72382 -# CONFIG_ACENIC is not set
72383 -# CONFIG_DL2K is not set
72384 -CONFIG_E1000=y
72385 -CONFIG_E1000_NAPI=y
72386 -# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set
72387 -# CONFIG_E1000E is not set
72388 -# CONFIG_E1000E_ENABLED is not set
72389 -# CONFIG_IP1000 is not set
72390 -# CONFIG_IGB is not set
72391 -# CONFIG_NS83820 is not set
72392 -# CONFIG_HAMACHI is not set
72393 -# CONFIG_YELLOWFIN is not set
72394 -# CONFIG_R8169 is not set
72395 -# CONFIG_SIS190 is not set
72396 -# CONFIG_SKGE is not set
72397 -# CONFIG_SKY2 is not set
72398 -# CONFIG_SK98LIN is not set
72399 -# CONFIG_VIA_VELOCITY is not set
72400 -# CONFIG_TIGON3 is not set
72401 -# CONFIG_BNX2 is not set
72402 -CONFIG_GIANFAR=y
72403 -CONFIG_GFAR_NAPI=y
72404 -# CONFIG_QLA3XXX is not set
72405 -# CONFIG_ATL1 is not set
72406 -CONFIG_NETDEV_10000=y
72407 -# CONFIG_CHELSIO_T1 is not set
72408 -# CONFIG_CHELSIO_T3 is not set
72409 -# CONFIG_IXGBE is not set
72410 -# CONFIG_IXGB is not set
72411 -# CONFIG_S2IO is not set
72412 -# CONFIG_MYRI10GE is not set
72413 -# CONFIG_NETXEN_NIC is not set
72414 -# CONFIG_NIU is not set
72415 -# CONFIG_MLX4_CORE is not set
72416 -# CONFIG_TEHUTI is not set
72417 -# CONFIG_BNX2X is not set
72418 -# CONFIG_TR is not set
72419 -
72420 -#
72421 -# Wireless LAN
72422 -#
72423 -# CONFIG_WLAN_PRE80211 is not set
72424 -# CONFIG_WLAN_80211 is not set
72425 -# CONFIG_WAN is not set
72426 -# CONFIG_FDDI is not set
72427 -# CONFIG_HIPPI is not set
72428 -# CONFIG_PPP is not set
72429 -# CONFIG_SLIP is not set
72430 -# CONFIG_NETCONSOLE is not set
72431 -# CONFIG_NETPOLL is not set
72432 -# CONFIG_NET_POLL_CONTROLLER is not set
72433 -# CONFIG_ISDN is not set
72434 -# CONFIG_PHONE is not set
72435 -
72436 -#
72437 -# Input device support
72438 -#
72439 -CONFIG_INPUT=y
72440 -# CONFIG_INPUT_FF_MEMLESS is not set
72441 -# CONFIG_INPUT_POLLDEV is not set
72442 -
72443 -#
72444 -# Userland interfaces
72445 -#
72446 -# CONFIG_INPUT_MOUSEDEV is not set
72447 -# CONFIG_INPUT_JOYDEV is not set
72448 -# CONFIG_INPUT_EVDEV is not set
72449 -# CONFIG_INPUT_EVBUG is not set
72450 -
72451 -#
72452 -# Input Device Drivers
72453 -#
72454 -# CONFIG_INPUT_KEYBOARD is not set
72455 -# CONFIG_INPUT_MOUSE is not set
72456 -# CONFIG_INPUT_JOYSTICK is not set
72457 -# CONFIG_INPUT_TABLET is not set
72458 -# CONFIG_INPUT_TOUCHSCREEN is not set
72459 -# CONFIG_INPUT_MISC is not set
72460 -
72461 -#
72462 -# Hardware I/O ports
72463 -#
72464 -# CONFIG_SERIO is not set
72465 -# CONFIG_GAMEPORT is not set
72466 -
72467 -#
72468 -# Character devices
72469 -#
72470 -# CONFIG_VT is not set
72471 -# CONFIG_SERIAL_NONSTANDARD is not set
72472 -# CONFIG_NOZOMI is not set
72473 -
72474 -#
72475 -# Serial drivers
72476 -#
72477 -CONFIG_SERIAL_8250=y
72478 -CONFIG_SERIAL_8250_CONSOLE=y
72479 -CONFIG_SERIAL_8250_PCI=y
72480 -CONFIG_SERIAL_8250_NR_UARTS=4
72481 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
72482 -# CONFIG_SERIAL_8250_EXTENDED is not set
72483 -CONFIG_SERIAL_8250_SHARE_IRQ=y
72484 -
72485 -#
72486 -# Non-8250 serial port support
72487 -#
72488 -# CONFIG_SERIAL_UARTLITE is not set
72489 -CONFIG_SERIAL_CORE=y
72490 -CONFIG_SERIAL_CORE_CONSOLE=y
72491 -# CONFIG_SERIAL_JSM is not set
72492 -# CONFIG_SERIAL_OF_PLATFORM is not set
72493 -CONFIG_UNIX98_PTYS=y
72494 -CONFIG_LEGACY_PTYS=y
72495 -CONFIG_LEGACY_PTY_COUNT=256
72496 -# CONFIG_IPMI_HANDLER is not set
72497 -# CONFIG_HW_RANDOM is not set
72498 -# CONFIG_NVRAM is not set
72499 -CONFIG_GEN_RTC=y
72500 -# CONFIG_GEN_RTC_X is not set
72501 -# CONFIG_R3964 is not set
72502 -# CONFIG_APPLICOM is not set
72503 -# CONFIG_RAW_DRIVER is not set
72504 -# CONFIG_TCG_TPM is not set
72505 -CONFIG_DEVPORT=y
72506 -# CONFIG_I2C is not set
72507 -
72508 -#
72509 -# SPI support
72510 -#
72511 -# CONFIG_SPI is not set
72512 -# CONFIG_SPI_MASTER is not set
72513 -# CONFIG_W1 is not set
72514 -# CONFIG_POWER_SUPPLY is not set
72515 -CONFIG_HWMON=y
72516 -# CONFIG_HWMON_VID is not set
72517 -# CONFIG_SENSORS_I5K_AMB is not set
72518 -# CONFIG_SENSORS_F71805F is not set
72519 -# CONFIG_SENSORS_F71882FG is not set
72520 -# CONFIG_SENSORS_IT87 is not set
72521 -# CONFIG_SENSORS_PC87360 is not set
72522 -# CONFIG_SENSORS_PC87427 is not set
72523 -# CONFIG_SENSORS_SIS5595 is not set
72524 -# CONFIG_SENSORS_SMSC47M1 is not set
72525 -# CONFIG_SENSORS_SMSC47B397 is not set
72526 -# CONFIG_SENSORS_VIA686A is not set
72527 -# CONFIG_SENSORS_VT1211 is not set
72528 -# CONFIG_SENSORS_VT8231 is not set
72529 -# CONFIG_SENSORS_W83627HF is not set
72530 -# CONFIG_SENSORS_W83627EHF is not set
72531 -# CONFIG_HWMON_DEBUG_CHIP is not set
72532 -# CONFIG_THERMAL is not set
72533 -# CONFIG_WATCHDOG is not set
72534 -
72535 -#
72536 -# Sonics Silicon Backplane
72537 -#
72538 -CONFIG_SSB_POSSIBLE=y
72539 -# CONFIG_SSB is not set
72540 -
72541 -#
72542 -# Multifunction device drivers
72543 -#
72544 -# CONFIG_MFD_SM501 is not set
72545 -
72546 -#
72547 -# Multimedia devices
72548 -#
72549 -# CONFIG_VIDEO_DEV is not set
72550 -# CONFIG_DVB_CORE is not set
72551 -CONFIG_DAB=y
72552 -
72553 -#
72554 -# Graphics support
72555 -#
72556 -# CONFIG_AGP is not set
72557 -# CONFIG_DRM is not set
72558 -# CONFIG_VGASTATE is not set
72559 -CONFIG_VIDEO_OUTPUT_CONTROL=y
72560 -# CONFIG_FB is not set
72561 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
72562 -
72563 -#
72564 -# Display device support
72565 -#
72566 -# CONFIG_DISPLAY_SUPPORT is not set
72567 -
72568 -#
72569 -# Sound
72570 -#
72571 -# CONFIG_SOUND is not set
72572 -CONFIG_HID_SUPPORT=y
72573 -CONFIG_HID=y
72574 -# CONFIG_HID_DEBUG is not set
72575 -# CONFIG_HIDRAW is not set
72576 -CONFIG_USB_SUPPORT=y
72577 -CONFIG_USB_ARCH_HAS_HCD=y
72578 -CONFIG_USB_ARCH_HAS_OHCI=y
72579 -CONFIG_USB_ARCH_HAS_EHCI=y
72580 -# CONFIG_USB is not set
72581 -
72582 -#
72583 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
72584 -#
72585 -# CONFIG_USB_GADGET is not set
72586 -# CONFIG_MMC is not set
72587 -# CONFIG_MEMSTICK is not set
72588 -# CONFIG_NEW_LEDS is not set
72589 -# CONFIG_INFINIBAND is not set
72590 -# CONFIG_EDAC is not set
72591 -# CONFIG_RTC_CLASS is not set
72592 -# CONFIG_DMADEVICES is not set
72593 -
72594 -#
72595 -# Userspace I/O
72596 -#
72597 -# CONFIG_UIO is not set
72598 -
72599 -#
72600 -# File systems
72601 -#
72602 -CONFIG_EXT2_FS=y
72603 -# CONFIG_EXT2_FS_XATTR is not set
72604 -# CONFIG_EXT2_FS_XIP is not set
72605 -CONFIG_EXT3_FS=y
72606 -CONFIG_EXT3_FS_XATTR=y
72607 -# CONFIG_EXT3_FS_POSIX_ACL is not set
72608 -# CONFIG_EXT3_FS_SECURITY is not set
72609 -# CONFIG_EXT4DEV_FS is not set
72610 -CONFIG_JBD=y
72611 -CONFIG_FS_MBCACHE=y
72612 -# CONFIG_REISERFS_FS is not set
72613 -# CONFIG_JFS_FS is not set
72614 -# CONFIG_FS_POSIX_ACL is not set
72615 -# CONFIG_XFS_FS is not set
72616 -# CONFIG_GFS2_FS is not set
72617 -# CONFIG_OCFS2_FS is not set
72618 -CONFIG_DNOTIFY=y
72619 -CONFIG_INOTIFY=y
72620 -CONFIG_INOTIFY_USER=y
72621 -# CONFIG_QUOTA is not set
72622 -# CONFIG_AUTOFS_FS is not set
72623 -# CONFIG_AUTOFS4_FS is not set
72624 -# CONFIG_FUSE_FS is not set
72625 -
72626 -#
72627 -# CD-ROM/DVD Filesystems
72628 -#
72629 -# CONFIG_ISO9660_FS is not set
72630 -# CONFIG_UDF_FS is not set
72631 -
72632 -#
72633 -# DOS/FAT/NT Filesystems
72634 -#
72635 -# CONFIG_MSDOS_FS is not set
72636 -# CONFIG_VFAT_FS is not set
72637 -# CONFIG_NTFS_FS is not set
72638 -
72639 -#
72640 -# Pseudo filesystems
72641 -#
72642 -CONFIG_PROC_FS=y
72643 -CONFIG_PROC_KCORE=y
72644 -CONFIG_PROC_SYSCTL=y
72645 -CONFIG_SYSFS=y
72646 -CONFIG_TMPFS=y
72647 -# CONFIG_TMPFS_POSIX_ACL is not set
72648 -# CONFIG_HUGETLB_PAGE is not set
72649 -# CONFIG_CONFIGFS_FS is not set
72650 -
72651 -#
72652 -# Miscellaneous filesystems
72653 -#
72654 -# CONFIG_ADFS_FS is not set
72655 -# CONFIG_AFFS_FS is not set
72656 -# CONFIG_HFS_FS is not set
72657 -# CONFIG_HFSPLUS_FS is not set
72658 -# CONFIG_BEFS_FS is not set
72659 -# CONFIG_BFS_FS is not set
72660 -# CONFIG_EFS_FS is not set
72661 -# CONFIG_CRAMFS is not set
72662 -# CONFIG_VXFS_FS is not set
72663 -# CONFIG_MINIX_FS is not set
72664 -# CONFIG_HPFS_FS is not set
72665 -# CONFIG_QNX4FS_FS is not set
72666 -# CONFIG_ROMFS_FS is not set
72667 -# CONFIG_SYSV_FS is not set
72668 -# CONFIG_UFS_FS is not set
72669 -CONFIG_NETWORK_FILESYSTEMS=y
72670 -CONFIG_NFS_FS=y
72671 -# CONFIG_NFS_V3 is not set
72672 -# CONFIG_NFS_V4 is not set
72673 -# CONFIG_NFS_DIRECTIO is not set
72674 -# CONFIG_NFSD is not set
72675 -CONFIG_ROOT_NFS=y
72676 -CONFIG_LOCKD=y
72677 -CONFIG_NFS_COMMON=y
72678 -CONFIG_SUNRPC=y
72679 -# CONFIG_SUNRPC_BIND34 is not set
72680 -# CONFIG_RPCSEC_GSS_KRB5 is not set
72681 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
72682 -# CONFIG_SMB_FS is not set
72683 -# CONFIG_CIFS is not set
72684 -# CONFIG_NCP_FS is not set
72685 -# CONFIG_CODA_FS is not set
72686 -# CONFIG_AFS_FS is not set
72687 -
72688 -#
72689 -# Partition Types
72690 -#
72691 -CONFIG_PARTITION_ADVANCED=y
72692 -# CONFIG_ACORN_PARTITION is not set
72693 -# CONFIG_OSF_PARTITION is not set
72694 -# CONFIG_AMIGA_PARTITION is not set
72695 -# CONFIG_ATARI_PARTITION is not set
72696 -# CONFIG_MAC_PARTITION is not set
72697 -# CONFIG_MSDOS_PARTITION is not set
72698 -# CONFIG_LDM_PARTITION is not set
72699 -# CONFIG_SGI_PARTITION is not set
72700 -# CONFIG_ULTRIX_PARTITION is not set
72701 -# CONFIG_SUN_PARTITION is not set
72702 -# CONFIG_KARMA_PARTITION is not set
72703 -# CONFIG_EFI_PARTITION is not set
72704 -# CONFIG_SYSV68_PARTITION is not set
72705 -# CONFIG_NLS is not set
72706 -# CONFIG_DLM is not set
72707 -
72708 -#
72709 -# Library routines
72710 -#
72711 -CONFIG_BITREVERSE=y
72712 -# CONFIG_CRC_CCITT is not set
72713 -# CONFIG_CRC16 is not set
72714 -# CONFIG_CRC_ITU_T is not set
72715 -CONFIG_CRC32=y
72716 -# CONFIG_CRC7 is not set
72717 -# CONFIG_LIBCRC32C is not set
72718 -CONFIG_PLIST=y
72719 -CONFIG_HAS_IOMEM=y
72720 -CONFIG_HAS_IOPORT=y
72721 -CONFIG_HAS_DMA=y
72722 -
72723 -#
72724 -# Kernel hacking
72725 -#
72726 -# CONFIG_PRINTK_TIME is not set
72727 -CONFIG_ENABLE_WARN_DEPRECATED=y
72728 -CONFIG_ENABLE_MUST_CHECK=y
72729 -# CONFIG_MAGIC_SYSRQ is not set
72730 -# CONFIG_UNUSED_SYMBOLS is not set
72731 -# CONFIG_DEBUG_FS is not set
72732 -# CONFIG_HEADERS_CHECK is not set
72733 -CONFIG_DEBUG_KERNEL=y
72734 -# CONFIG_DEBUG_SHIRQ is not set
72735 -CONFIG_DETECT_SOFTLOCKUP=y
72736 -CONFIG_SCHED_DEBUG=y
72737 -# CONFIG_SCHEDSTATS is not set
72738 -# CONFIG_TIMER_STATS is not set
72739 -# CONFIG_SLUB_DEBUG_ON is not set
72740 -# CONFIG_SLUB_STATS is not set
72741 -# CONFIG_DEBUG_RT_MUTEXES is not set
72742 -# CONFIG_RT_MUTEX_TESTER is not set
72743 -# CONFIG_DEBUG_SPINLOCK is not set
72744 -CONFIG_DEBUG_MUTEXES=y
72745 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
72746 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
72747 -# CONFIG_DEBUG_KOBJECT is not set
72748 -# CONFIG_DEBUG_BUGVERBOSE is not set
72749 -# CONFIG_DEBUG_INFO is not set
72750 -# CONFIG_DEBUG_VM is not set
72751 -# CONFIG_DEBUG_LIST is not set
72752 -# CONFIG_DEBUG_SG is not set
72753 -# CONFIG_BOOT_PRINTK_DELAY is not set
72754 -# CONFIG_BACKTRACE_SELF_TEST is not set
72755 -# CONFIG_FAULT_INJECTION is not set
72756 -# CONFIG_SAMPLES is not set
72757 -# CONFIG_DEBUG_STACKOVERFLOW is not set
72758 -# CONFIG_DEBUG_STACK_USAGE is not set
72759 -# CONFIG_DEBUG_PAGEALLOC is not set
72760 -# CONFIG_DEBUGGER is not set
72761 -# CONFIG_BDI_SWITCH is not set
72762 -# CONFIG_PPC_EARLY_DEBUG is not set
72763 -
72764 -#
72765 -# Security options
72766 -#
72767 -# CONFIG_KEYS is not set
72768 -# CONFIG_SECURITY is not set
72769 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
72770 -CONFIG_CRYPTO=y
72771 -# CONFIG_CRYPTO_SEQIV is not set
72772 -# CONFIG_CRYPTO_MANAGER is not set
72773 -# CONFIG_CRYPTO_HMAC is not set
72774 -# CONFIG_CRYPTO_XCBC is not set
72775 -# CONFIG_CRYPTO_NULL is not set
72776 -# CONFIG_CRYPTO_MD4 is not set
72777 -# CONFIG_CRYPTO_MD5 is not set
72778 -# CONFIG_CRYPTO_SHA1 is not set
72779 -# CONFIG_CRYPTO_SHA256 is not set
72780 -# CONFIG_CRYPTO_SHA512 is not set
72781 -# CONFIG_CRYPTO_WP512 is not set
72782 -# CONFIG_CRYPTO_TGR192 is not set
72783 -# CONFIG_CRYPTO_GF128MUL is not set
72784 -# CONFIG_CRYPTO_ECB is not set
72785 -# CONFIG_CRYPTO_CBC is not set
72786 -# CONFIG_CRYPTO_PCBC is not set
72787 -# CONFIG_CRYPTO_LRW is not set
72788 -# CONFIG_CRYPTO_XTS is not set
72789 -# CONFIG_CRYPTO_CTR is not set
72790 -# CONFIG_CRYPTO_GCM is not set
72791 -# CONFIG_CRYPTO_CCM is not set
72792 -# CONFIG_CRYPTO_CRYPTD is not set
72793 -# CONFIG_CRYPTO_DES is not set
72794 -# CONFIG_CRYPTO_FCRYPT is not set
72795 -# CONFIG_CRYPTO_BLOWFISH is not set
72796 -# CONFIG_CRYPTO_TWOFISH is not set
72797 -# CONFIG_CRYPTO_SERPENT is not set
72798 -# CONFIG_CRYPTO_AES is not set
72799 -# CONFIG_CRYPTO_CAST5 is not set
72800 -# CONFIG_CRYPTO_CAST6 is not set
72801 -# CONFIG_CRYPTO_TEA is not set
72802 -# CONFIG_CRYPTO_ARC4 is not set
72803 -# CONFIG_CRYPTO_KHAZAD is not set
72804 -# CONFIG_CRYPTO_ANUBIS is not set
72805 -# CONFIG_CRYPTO_SEED is not set
72806 -# CONFIG_CRYPTO_SALSA20 is not set
72807 -# CONFIG_CRYPTO_DEFLATE is not set
72808 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
72809 -# CONFIG_CRYPTO_CRC32C is not set
72810 -# CONFIG_CRYPTO_CAMELLIA is not set
72811 -# CONFIG_CRYPTO_AUTHENC is not set
72812 -# CONFIG_CRYPTO_LZO is not set
72813 -CONFIG_CRYPTO_HW=y
72814 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
72815 -# CONFIG_PPC_CLOCK is not set
72816 Index: linux-2.6.25.4/arch/powerpc/configs/pmac32_defconfig
72817 ===================================================================
72818 --- linux-2.6.25.4.orig/arch/powerpc/configs/pmac32_defconfig
72819 +++ linux-2.6.25.4/arch/powerpc/configs/pmac32_defconfig
72820 @@ -1,7 +1,7 @@
72821 #
72822 # Automatically generated make config: don't edit
72823 # Linux kernel version: 2.6.25-rc6
72824 -# Thu Mar 20 11:05:14 2008
72825 +# Thu Mar 27 13:56:21 2008
72826 #
72827 # CONFIG_PPC64 is not set
72828
72829 @@ -77,8 +77,6 @@ CONFIG_IKCONFIG_PROC=y
72830 CONFIG_LOG_BUF_SHIFT=14
72831 # CONFIG_CGROUPS is not set
72832 # CONFIG_GROUP_SCHED is not set
72833 -# CONFIG_USER_SCHED is not set
72834 -# CONFIG_CGROUP_SCHED is not set
72835 CONFIG_SYSFS_DEPRECATED=y
72836 CONFIG_SYSFS_DEPRECATED_V2=y
72837 # CONFIG_RELAY is not set
72838 @@ -272,7 +270,7 @@ CONFIG_PCI_SYSCALL=y
72839 # CONFIG_PCIEPORTBUS is not set
72840 CONFIG_ARCH_SUPPORTS_MSI=y
72841 # CONFIG_PCI_MSI is not set
72842 -CONFIG_PCI_LEGACY=y
72843 +# CONFIG_PCI_LEGACY is not set
72844 # CONFIG_PCI_DEBUG is not set
72845 CONFIG_PCCARD=m
72846 # CONFIG_PCMCIA_DEBUG is not set
72847 @@ -1895,6 +1893,7 @@ CONFIG_PLIST=y
72848 CONFIG_HAS_IOMEM=y
72849 CONFIG_HAS_IOPORT=y
72850 CONFIG_HAS_DMA=y
72851 +CONFIG_HAVE_LMB=y
72852
72853 #
72854 # Kernel hacking
72855 Index: linux-2.6.25.4/arch/powerpc/configs/ppc40x_defconfig
72856 ===================================================================
72857 --- /dev/null
72858 +++ linux-2.6.25.4/arch/powerpc/configs/ppc40x_defconfig
72859 @@ -0,0 +1,896 @@
72860 +#
72861 +# Automatically generated make config: don't edit
72862 +# Linux kernel version: 2.6.25-rc9
72863 +# Tue Apr 15 08:46:44 2008
72864 +#
72865 +# CONFIG_PPC64 is not set
72866 +
72867 +#
72868 +# Processor support
72869 +#
72870 +# CONFIG_6xx is not set
72871 +# CONFIG_PPC_85xx is not set
72872 +# CONFIG_PPC_8xx is not set
72873 +CONFIG_40x=y
72874 +# CONFIG_44x is not set
72875 +# CONFIG_E200 is not set
72876 +CONFIG_4xx=y
72877 +# CONFIG_PPC_MM_SLICES is not set
72878 +CONFIG_NOT_COHERENT_CACHE=y
72879 +CONFIG_PPC32=y
72880 +CONFIG_WORD_SIZE=32
72881 +CONFIG_PPC_MERGE=y
72882 +CONFIG_MMU=y
72883 +CONFIG_GENERIC_CMOS_UPDATE=y
72884 +CONFIG_GENERIC_TIME=y
72885 +CONFIG_GENERIC_TIME_VSYSCALL=y
72886 +CONFIG_GENERIC_CLOCKEVENTS=y
72887 +CONFIG_GENERIC_HARDIRQS=y
72888 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
72889 +CONFIG_IRQ_PER_CPU=y
72890 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
72891 +CONFIG_ARCH_HAS_ILOG2_U32=y
72892 +CONFIG_GENERIC_HWEIGHT=y
72893 +CONFIG_GENERIC_CALIBRATE_DELAY=y
72894 +CONFIG_GENERIC_FIND_NEXT_BIT=y
72895 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
72896 +CONFIG_PPC=y
72897 +CONFIG_EARLY_PRINTK=y
72898 +CONFIG_GENERIC_NVRAM=y
72899 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
72900 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
72901 +CONFIG_PPC_OF=y
72902 +CONFIG_OF=y
72903 +CONFIG_PPC_UDBG_16550=y
72904 +# CONFIG_GENERIC_TBSYNC is not set
72905 +CONFIG_AUDIT_ARCH=y
72906 +CONFIG_GENERIC_BUG=y
72907 +# CONFIG_DEFAULT_UIMAGE is not set
72908 +CONFIG_PPC_DCR_NATIVE=y
72909 +# CONFIG_PPC_DCR_MMIO is not set
72910 +CONFIG_PPC_DCR=y
72911 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
72912 +
72913 +#
72914 +# General setup
72915 +#
72916 +CONFIG_EXPERIMENTAL=y
72917 +CONFIG_BROKEN_ON_SMP=y
72918 +CONFIG_INIT_ENV_ARG_LIMIT=32
72919 +CONFIG_LOCALVERSION=""
72920 +CONFIG_LOCALVERSION_AUTO=y
72921 +CONFIG_SWAP=y
72922 +CONFIG_SYSVIPC=y
72923 +CONFIG_SYSVIPC_SYSCTL=y
72924 +CONFIG_POSIX_MQUEUE=y
72925 +# CONFIG_BSD_PROCESS_ACCT is not set
72926 +# CONFIG_TASKSTATS is not set
72927 +# CONFIG_AUDIT is not set
72928 +# CONFIG_IKCONFIG is not set
72929 +CONFIG_LOG_BUF_SHIFT=14
72930 +# CONFIG_CGROUPS is not set
72931 +CONFIG_GROUP_SCHED=y
72932 +CONFIG_FAIR_GROUP_SCHED=y
72933 +# CONFIG_RT_GROUP_SCHED is not set
72934 +CONFIG_USER_SCHED=y
72935 +# CONFIG_CGROUP_SCHED is not set
72936 +CONFIG_SYSFS_DEPRECATED=y
72937 +CONFIG_SYSFS_DEPRECATED_V2=y
72938 +# CONFIG_RELAY is not set
72939 +# CONFIG_NAMESPACES is not set
72940 +CONFIG_BLK_DEV_INITRD=y
72941 +CONFIG_INITRAMFS_SOURCE=""
72942 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
72943 +CONFIG_SYSCTL=y
72944 +CONFIG_EMBEDDED=y
72945 +CONFIG_SYSCTL_SYSCALL=y
72946 +CONFIG_KALLSYMS=y
72947 +CONFIG_KALLSYMS_ALL=y
72948 +CONFIG_KALLSYMS_EXTRA_PASS=y
72949 +CONFIG_HOTPLUG=y
72950 +CONFIG_PRINTK=y
72951 +CONFIG_BUG=y
72952 +CONFIG_ELF_CORE=y
72953 +CONFIG_COMPAT_BRK=y
72954 +CONFIG_BASE_FULL=y
72955 +CONFIG_FUTEX=y
72956 +CONFIG_ANON_INODES=y
72957 +CONFIG_EPOLL=y
72958 +CONFIG_SIGNALFD=y
72959 +CONFIG_TIMERFD=y
72960 +CONFIG_EVENTFD=y
72961 +CONFIG_SHMEM=y
72962 +CONFIG_VM_EVENT_COUNTERS=y
72963 +CONFIG_SLUB_DEBUG=y
72964 +# CONFIG_SLAB is not set
72965 +CONFIG_SLUB=y
72966 +# CONFIG_SLOB is not set
72967 +# CONFIG_PROFILING is not set
72968 +# CONFIG_MARKERS is not set
72969 +CONFIG_HAVE_OPROFILE=y
72970 +# CONFIG_KPROBES is not set
72971 +CONFIG_HAVE_KPROBES=y
72972 +CONFIG_HAVE_KRETPROBES=y
72973 +CONFIG_PROC_PAGE_MONITOR=y
72974 +CONFIG_SLABINFO=y
72975 +CONFIG_RT_MUTEXES=y
72976 +# CONFIG_TINY_SHMEM is not set
72977 +CONFIG_BASE_SMALL=0
72978 +CONFIG_MODULES=y
72979 +CONFIG_MODULE_UNLOAD=y
72980 +# CONFIG_MODULE_FORCE_UNLOAD is not set
72981 +# CONFIG_MODVERSIONS is not set
72982 +# CONFIG_MODULE_SRCVERSION_ALL is not set
72983 +CONFIG_KMOD=y
72984 +CONFIG_BLOCK=y
72985 +CONFIG_LBD=y
72986 +# CONFIG_BLK_DEV_IO_TRACE is not set
72987 +# CONFIG_LSF is not set
72988 +# CONFIG_BLK_DEV_BSG is not set
72989 +
72990 +#
72991 +# IO Schedulers
72992 +#
72993 +CONFIG_IOSCHED_NOOP=y
72994 +CONFIG_IOSCHED_AS=y
72995 +CONFIG_IOSCHED_DEADLINE=y
72996 +CONFIG_IOSCHED_CFQ=y
72997 +CONFIG_DEFAULT_AS=y
72998 +# CONFIG_DEFAULT_DEADLINE is not set
72999 +# CONFIG_DEFAULT_CFQ is not set
73000 +# CONFIG_DEFAULT_NOOP is not set
73001 +CONFIG_DEFAULT_IOSCHED="anticipatory"
73002 +CONFIG_CLASSIC_RCU=y
73003 +CONFIG_PPC4xx_PCI_EXPRESS=y
73004 +
73005 +#
73006 +# Platform support
73007 +#
73008 +# CONFIG_PPC_MPC512x is not set
73009 +# CONFIG_PPC_MPC5121 is not set
73010 +# CONFIG_PPC_CELL is not set
73011 +# CONFIG_PPC_CELL_NATIVE is not set
73012 +# CONFIG_PQ2ADS is not set
73013 +CONFIG_EP405=y
73014 +CONFIG_KILAUEA=y
73015 +CONFIG_MAKALU=y
73016 +CONFIG_WALNUT=y
73017 +CONFIG_XILINX_VIRTEX_GENERIC_BOARD=y
73018 +CONFIG_405GP=y
73019 +CONFIG_405EX=y
73020 +CONFIG_XILINX_VIRTEX=y
73021 +CONFIG_XILINX_VIRTEX_II_PRO=y
73022 +CONFIG_XILINX_VIRTEX_4_FX=y
73023 +CONFIG_IBM405_ERR77=y
73024 +CONFIG_IBM405_ERR51=y
73025 +# CONFIG_IPIC is not set
73026 +# CONFIG_MPIC is not set
73027 +# CONFIG_MPIC_WEIRD is not set
73028 +# CONFIG_PPC_I8259 is not set
73029 +# CONFIG_PPC_RTAS is not set
73030 +# CONFIG_MMIO_NVRAM is not set
73031 +# CONFIG_PPC_MPC106 is not set
73032 +# CONFIG_PPC_970_NAP is not set
73033 +# CONFIG_PPC_INDIRECT_IO is not set
73034 +# CONFIG_GENERIC_IOMAP is not set
73035 +# CONFIG_CPU_FREQ is not set
73036 +# CONFIG_FSL_ULI1575 is not set
73037 +CONFIG_OF_RTC=y
73038 +
73039 +#
73040 +# Kernel options
73041 +#
73042 +# CONFIG_HIGHMEM is not set
73043 +# CONFIG_TICK_ONESHOT is not set
73044 +# CONFIG_NO_HZ is not set
73045 +# CONFIG_HIGH_RES_TIMERS is not set
73046 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
73047 +# CONFIG_HZ_100 is not set
73048 +CONFIG_HZ_250=y
73049 +# CONFIG_HZ_300 is not set
73050 +# CONFIG_HZ_1000 is not set
73051 +CONFIG_HZ=250
73052 +# CONFIG_SCHED_HRTICK is not set
73053 +CONFIG_PREEMPT_NONE=y
73054 +# CONFIG_PREEMPT_VOLUNTARY is not set
73055 +# CONFIG_PREEMPT is not set
73056 +CONFIG_BINFMT_ELF=y
73057 +# CONFIG_BINFMT_MISC is not set
73058 +# CONFIG_MATH_EMULATION is not set
73059 +# CONFIG_IOMMU_HELPER is not set
73060 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
73061 +CONFIG_ARCH_HAS_WALK_MEMORY=y
73062 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
73063 +CONFIG_ARCH_FLATMEM_ENABLE=y
73064 +CONFIG_ARCH_POPULATES_NODE_MAP=y
73065 +CONFIG_SELECT_MEMORY_MODEL=y
73066 +CONFIG_FLATMEM_MANUAL=y
73067 +# CONFIG_DISCONTIGMEM_MANUAL is not set
73068 +# CONFIG_SPARSEMEM_MANUAL is not set
73069 +CONFIG_FLATMEM=y
73070 +CONFIG_FLAT_NODE_MEM_MAP=y
73071 +# CONFIG_SPARSEMEM_STATIC is not set
73072 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
73073 +CONFIG_SPLIT_PTLOCK_CPUS=4
73074 +CONFIG_RESOURCES_64BIT=y
73075 +CONFIG_ZONE_DMA_FLAG=1
73076 +CONFIG_BOUNCE=y
73077 +CONFIG_VIRT_TO_BUS=y
73078 +CONFIG_FORCE_MAX_ZONEORDER=11
73079 +CONFIG_PROC_DEVICETREE=y
73080 +# CONFIG_CMDLINE_BOOL is not set
73081 +# CONFIG_PM is not set
73082 +CONFIG_SECCOMP=y
73083 +CONFIG_ISA_DMA_API=y
73084 +
73085 +#
73086 +# Bus options
73087 +#
73088 +CONFIG_ZONE_DMA=y
73089 +CONFIG_PPC_INDIRECT_PCI=y
73090 +CONFIG_4xx_SOC=y
73091 +CONFIG_PCI=y
73092 +CONFIG_PCI_DOMAINS=y
73093 +CONFIG_PCI_SYSCALL=y
73094 +# CONFIG_PCIEPORTBUS is not set
73095 +CONFIG_ARCH_SUPPORTS_MSI=y
73096 +# CONFIG_PCI_MSI is not set
73097 +# CONFIG_PCI_LEGACY is not set
73098 +# CONFIG_PCI_DEBUG is not set
73099 +# CONFIG_PCCARD is not set
73100 +# CONFIG_HOTPLUG_PCI is not set
73101 +
73102 +#
73103 +# Advanced setup
73104 +#
73105 +# CONFIG_ADVANCED_OPTIONS is not set
73106 +
73107 +#
73108 +# Default settings for advanced configuration options are used
73109 +#
73110 +CONFIG_HIGHMEM_START=0xfe000000
73111 +CONFIG_LOWMEM_SIZE=0x30000000
73112 +CONFIG_KERNEL_START=0xc0000000
73113 +CONFIG_TASK_SIZE=0xc0000000
73114 +CONFIG_CONSISTENT_START=0xff100000
73115 +CONFIG_CONSISTENT_SIZE=0x00200000
73116 +CONFIG_BOOT_LOAD=0x00400000
73117 +
73118 +#
73119 +# Networking
73120 +#
73121 +CONFIG_NET=y
73122 +
73123 +#
73124 +# Networking options
73125 +#
73126 +CONFIG_PACKET=y
73127 +# CONFIG_PACKET_MMAP is not set
73128 +CONFIG_UNIX=y
73129 +# CONFIG_NET_KEY is not set
73130 +CONFIG_INET=y
73131 +# CONFIG_IP_MULTICAST is not set
73132 +# CONFIG_IP_ADVANCED_ROUTER is not set
73133 +CONFIG_IP_FIB_HASH=y
73134 +CONFIG_IP_PNP=y
73135 +CONFIG_IP_PNP_DHCP=y
73136 +CONFIG_IP_PNP_BOOTP=y
73137 +# CONFIG_IP_PNP_RARP is not set
73138 +# CONFIG_NET_IPIP is not set
73139 +# CONFIG_NET_IPGRE is not set
73140 +# CONFIG_ARPD is not set
73141 +# CONFIG_SYN_COOKIES is not set
73142 +# CONFIG_INET_AH is not set
73143 +# CONFIG_INET_ESP is not set
73144 +# CONFIG_INET_IPCOMP is not set
73145 +# CONFIG_INET_XFRM_TUNNEL is not set
73146 +# CONFIG_INET_TUNNEL is not set
73147 +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
73148 +# CONFIG_INET_XFRM_MODE_TUNNEL is not set
73149 +# CONFIG_INET_XFRM_MODE_BEET is not set
73150 +# CONFIG_INET_LRO is not set
73151 +CONFIG_INET_DIAG=y
73152 +CONFIG_INET_TCP_DIAG=y
73153 +# CONFIG_TCP_CONG_ADVANCED is not set
73154 +CONFIG_TCP_CONG_CUBIC=y
73155 +CONFIG_DEFAULT_TCP_CONG="cubic"
73156 +# CONFIG_TCP_MD5SIG is not set
73157 +# CONFIG_IPV6 is not set
73158 +# CONFIG_INET6_XFRM_TUNNEL is not set
73159 +# CONFIG_INET6_TUNNEL is not set
73160 +# CONFIG_NETWORK_SECMARK is not set
73161 +# CONFIG_NETFILTER is not set
73162 +# CONFIG_IP_DCCP is not set
73163 +# CONFIG_IP_SCTP is not set
73164 +# CONFIG_TIPC is not set
73165 +# CONFIG_ATM is not set
73166 +# CONFIG_BRIDGE is not set
73167 +# CONFIG_VLAN_8021Q is not set
73168 +# CONFIG_DECNET is not set
73169 +# CONFIG_LLC2 is not set
73170 +# CONFIG_IPX is not set
73171 +# CONFIG_ATALK is not set
73172 +# CONFIG_X25 is not set
73173 +# CONFIG_LAPB is not set
73174 +# CONFIG_ECONET is not set
73175 +# CONFIG_WAN_ROUTER is not set
73176 +# CONFIG_NET_SCHED is not set
73177 +
73178 +#
73179 +# Network testing
73180 +#
73181 +# CONFIG_NET_PKTGEN is not set
73182 +# CONFIG_HAMRADIO is not set
73183 +# CONFIG_CAN is not set
73184 +# CONFIG_IRDA is not set
73185 +# CONFIG_BT is not set
73186 +# CONFIG_AF_RXRPC is not set
73187 +
73188 +#
73189 +# Wireless
73190 +#
73191 +# CONFIG_CFG80211 is not set
73192 +# CONFIG_WIRELESS_EXT is not set
73193 +# CONFIG_MAC80211 is not set
73194 +# CONFIG_IEEE80211 is not set
73195 +# CONFIG_RFKILL is not set
73196 +# CONFIG_NET_9P is not set
73197 +
73198 +#
73199 +# Device Drivers
73200 +#
73201 +
73202 +#
73203 +# Generic Driver Options
73204 +#
73205 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
73206 +CONFIG_STANDALONE=y
73207 +CONFIG_PREVENT_FIRMWARE_BUILD=y
73208 +CONFIG_FW_LOADER=y
73209 +# CONFIG_DEBUG_DRIVER is not set
73210 +# CONFIG_DEBUG_DEVRES is not set
73211 +# CONFIG_SYS_HYPERVISOR is not set
73212 +CONFIG_CONNECTOR=y
73213 +CONFIG_PROC_EVENTS=y
73214 +CONFIG_MTD=y
73215 +# CONFIG_MTD_DEBUG is not set
73216 +# CONFIG_MTD_CONCAT is not set
73217 +CONFIG_MTD_PARTITIONS=y
73218 +# CONFIG_MTD_REDBOOT_PARTS is not set
73219 +CONFIG_MTD_CMDLINE_PARTS=y
73220 +CONFIG_MTD_OF_PARTS=y
73221 +
73222 +#
73223 +# User Modules And Translation Layers
73224 +#
73225 +CONFIG_MTD_CHAR=y
73226 +CONFIG_MTD_BLKDEVS=m
73227 +CONFIG_MTD_BLOCK=m
73228 +# CONFIG_MTD_BLOCK_RO is not set
73229 +# CONFIG_FTL is not set
73230 +# CONFIG_NFTL is not set
73231 +# CONFIG_INFTL is not set
73232 +# CONFIG_RFD_FTL is not set
73233 +# CONFIG_SSFDC is not set
73234 +# CONFIG_MTD_OOPS is not set
73235 +
73236 +#
73237 +# RAM/ROM/Flash chip drivers
73238 +#
73239 +CONFIG_MTD_CFI=y
73240 +CONFIG_MTD_JEDECPROBE=y
73241 +CONFIG_MTD_GEN_PROBE=y
73242 +# CONFIG_MTD_CFI_ADV_OPTIONS is not set
73243 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
73244 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
73245 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
73246 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
73247 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
73248 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
73249 +CONFIG_MTD_CFI_I1=y
73250 +CONFIG_MTD_CFI_I2=y
73251 +# CONFIG_MTD_CFI_I4 is not set
73252 +# CONFIG_MTD_CFI_I8 is not set
73253 +# CONFIG_MTD_CFI_INTELEXT is not set
73254 +CONFIG_MTD_CFI_AMDSTD=y
73255 +# CONFIG_MTD_CFI_STAA is not set
73256 +CONFIG_MTD_CFI_UTIL=y
73257 +# CONFIG_MTD_RAM is not set
73258 +# CONFIG_MTD_ROM is not set
73259 +# CONFIG_MTD_ABSENT is not set
73260 +
73261 +#
73262 +# Mapping drivers for chip access
73263 +#
73264 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
73265 +# CONFIG_MTD_PHYSMAP is not set
73266 +CONFIG_MTD_PHYSMAP_OF=y
73267 +# CONFIG_MTD_INTEL_VR_NOR is not set
73268 +# CONFIG_MTD_PLATRAM is not set
73269 +
73270 +#
73271 +# Self-contained MTD device drivers
73272 +#
73273 +# CONFIG_MTD_PMC551 is not set
73274 +# CONFIG_MTD_SLRAM is not set
73275 +# CONFIG_MTD_PHRAM is not set
73276 +# CONFIG_MTD_MTDRAM is not set
73277 +# CONFIG_MTD_BLOCK2MTD is not set
73278 +
73279 +#
73280 +# Disk-On-Chip Device Drivers
73281 +#
73282 +# CONFIG_MTD_DOC2000 is not set
73283 +# CONFIG_MTD_DOC2001 is not set
73284 +# CONFIG_MTD_DOC2001PLUS is not set
73285 +# CONFIG_MTD_NAND is not set
73286 +# CONFIG_MTD_ONENAND is not set
73287 +
73288 +#
73289 +# UBI - Unsorted block images
73290 +#
73291 +# CONFIG_MTD_UBI is not set
73292 +CONFIG_OF_DEVICE=y
73293 +# CONFIG_PARPORT is not set
73294 +CONFIG_BLK_DEV=y
73295 +# CONFIG_BLK_DEV_FD is not set
73296 +# CONFIG_BLK_CPQ_DA is not set
73297 +# CONFIG_BLK_CPQ_CISS_DA is not set
73298 +# CONFIG_BLK_DEV_DAC960 is not set
73299 +# CONFIG_BLK_DEV_UMEM is not set
73300 +# CONFIG_BLK_DEV_COW_COMMON is not set
73301 +# CONFIG_BLK_DEV_LOOP is not set
73302 +# CONFIG_BLK_DEV_NBD is not set
73303 +# CONFIG_BLK_DEV_SX8 is not set
73304 +CONFIG_BLK_DEV_RAM=y
73305 +CONFIG_BLK_DEV_RAM_COUNT=16
73306 +CONFIG_BLK_DEV_RAM_SIZE=35000
73307 +# CONFIG_BLK_DEV_XIP is not set
73308 +# CONFIG_CDROM_PKTCDVD is not set
73309 +# CONFIG_ATA_OVER_ETH is not set
73310 +# CONFIG_XILINX_SYSACE is not set
73311 +CONFIG_MISC_DEVICES=y
73312 +# CONFIG_PHANTOM is not set
73313 +# CONFIG_EEPROM_93CX6 is not set
73314 +# CONFIG_SGI_IOC4 is not set
73315 +# CONFIG_TIFM_CORE is not set
73316 +# CONFIG_ENCLOSURE_SERVICES is not set
73317 +CONFIG_HAVE_IDE=y
73318 +# CONFIG_IDE is not set
73319 +
73320 +#
73321 +# SCSI device support
73322 +#
73323 +# CONFIG_RAID_ATTRS is not set
73324 +# CONFIG_SCSI is not set
73325 +# CONFIG_SCSI_DMA is not set
73326 +# CONFIG_SCSI_NETLINK is not set
73327 +# CONFIG_ATA is not set
73328 +# CONFIG_MD is not set
73329 +# CONFIG_FUSION is not set
73330 +
73331 +#
73332 +# IEEE 1394 (FireWire) support
73333 +#
73334 +# CONFIG_FIREWIRE is not set
73335 +# CONFIG_IEEE1394 is not set
73336 +# CONFIG_I2O is not set
73337 +# CONFIG_MACINTOSH_DRIVERS is not set
73338 +CONFIG_NETDEVICES=y
73339 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
73340 +# CONFIG_DUMMY is not set
73341 +# CONFIG_BONDING is not set
73342 +# CONFIG_MACVLAN is not set
73343 +# CONFIG_EQUALIZER is not set
73344 +# CONFIG_TUN is not set
73345 +# CONFIG_VETH is not set
73346 +# CONFIG_ARCNET is not set
73347 +# CONFIG_PHYLIB is not set
73348 +CONFIG_NET_ETHERNET=y
73349 +# CONFIG_MII is not set
73350 +# CONFIG_HAPPYMEAL is not set
73351 +# CONFIG_SUNGEM is not set
73352 +# CONFIG_CASSINI is not set
73353 +# CONFIG_NET_VENDOR_3COM is not set
73354 +# CONFIG_NET_TULIP is not set
73355 +# CONFIG_HP100 is not set
73356 +CONFIG_IBM_NEW_EMAC=y
73357 +CONFIG_IBM_NEW_EMAC_RXB=128
73358 +CONFIG_IBM_NEW_EMAC_TXB=64
73359 +CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
73360 +CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
73361 +CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
73362 +# CONFIG_IBM_NEW_EMAC_DEBUG is not set
73363 +CONFIG_IBM_NEW_EMAC_ZMII=y
73364 +CONFIG_IBM_NEW_EMAC_RGMII=y
73365 +# CONFIG_IBM_NEW_EMAC_TAH is not set
73366 +CONFIG_IBM_NEW_EMAC_EMAC4=y
73367 +# CONFIG_NET_PCI is not set
73368 +# CONFIG_B44 is not set
73369 +CONFIG_NETDEV_1000=y
73370 +# CONFIG_ACENIC is not set
73371 +# CONFIG_DL2K is not set
73372 +# CONFIG_E1000 is not set
73373 +# CONFIG_E1000E is not set
73374 +# CONFIG_E1000E_ENABLED is not set
73375 +# CONFIG_IP1000 is not set
73376 +# CONFIG_IGB is not set
73377 +# CONFIG_NS83820 is not set
73378 +# CONFIG_HAMACHI is not set
73379 +# CONFIG_YELLOWFIN is not set
73380 +# CONFIG_R8169 is not set
73381 +# CONFIG_SIS190 is not set
73382 +# CONFIG_SKGE is not set
73383 +# CONFIG_SKY2 is not set
73384 +# CONFIG_SK98LIN is not set
73385 +# CONFIG_VIA_VELOCITY is not set
73386 +# CONFIG_TIGON3 is not set
73387 +# CONFIG_BNX2 is not set
73388 +# CONFIG_QLA3XXX is not set
73389 +# CONFIG_ATL1 is not set
73390 +CONFIG_NETDEV_10000=y
73391 +# CONFIG_CHELSIO_T1 is not set
73392 +# CONFIG_CHELSIO_T3 is not set
73393 +# CONFIG_IXGBE is not set
73394 +# CONFIG_IXGB is not set
73395 +# CONFIG_S2IO is not set
73396 +# CONFIG_MYRI10GE is not set
73397 +# CONFIG_NETXEN_NIC is not set
73398 +# CONFIG_NIU is not set
73399 +# CONFIG_MLX4_CORE is not set
73400 +# CONFIG_TEHUTI is not set
73401 +# CONFIG_BNX2X is not set
73402 +# CONFIG_TR is not set
73403 +
73404 +#
73405 +# Wireless LAN
73406 +#
73407 +# CONFIG_WLAN_PRE80211 is not set
73408 +# CONFIG_WLAN_80211 is not set
73409 +# CONFIG_WAN is not set
73410 +# CONFIG_FDDI is not set
73411 +# CONFIG_HIPPI is not set
73412 +# CONFIG_PPP is not set
73413 +# CONFIG_SLIP is not set
73414 +# CONFIG_NETCONSOLE is not set
73415 +# CONFIG_NETPOLL is not set
73416 +# CONFIG_NET_POLL_CONTROLLER is not set
73417 +# CONFIG_ISDN is not set
73418 +# CONFIG_PHONE is not set
73419 +
73420 +#
73421 +# Input device support
73422 +#
73423 +# CONFIG_INPUT is not set
73424 +
73425 +#
73426 +# Hardware I/O ports
73427 +#
73428 +# CONFIG_SERIO is not set
73429 +# CONFIG_GAMEPORT is not set
73430 +
73431 +#
73432 +# Character devices
73433 +#
73434 +# CONFIG_VT is not set
73435 +# CONFIG_SERIAL_NONSTANDARD is not set
73436 +# CONFIG_NOZOMI is not set
73437 +
73438 +#
73439 +# Serial drivers
73440 +#
73441 +CONFIG_SERIAL_8250=y
73442 +CONFIG_SERIAL_8250_CONSOLE=y
73443 +CONFIG_SERIAL_8250_PCI=y
73444 +CONFIG_SERIAL_8250_NR_UARTS=4
73445 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4
73446 +CONFIG_SERIAL_8250_EXTENDED=y
73447 +# CONFIG_SERIAL_8250_MANY_PORTS is not set
73448 +CONFIG_SERIAL_8250_SHARE_IRQ=y
73449 +# CONFIG_SERIAL_8250_DETECT_IRQ is not set
73450 +# CONFIG_SERIAL_8250_RSA is not set
73451 +
73452 +#
73453 +# Non-8250 serial port support
73454 +#
73455 +# CONFIG_SERIAL_UARTLITE is not set
73456 +CONFIG_SERIAL_CORE=y
73457 +CONFIG_SERIAL_CORE_CONSOLE=y
73458 +# CONFIG_SERIAL_JSM is not set
73459 +CONFIG_SERIAL_OF_PLATFORM=y
73460 +CONFIG_UNIX98_PTYS=y
73461 +CONFIG_LEGACY_PTYS=y
73462 +CONFIG_LEGACY_PTY_COUNT=256
73463 +# CONFIG_IPMI_HANDLER is not set
73464 +# CONFIG_HW_RANDOM is not set
73465 +# CONFIG_NVRAM is not set
73466 +# CONFIG_GEN_RTC is not set
73467 +CONFIG_XILINX_HWICAP=m
73468 +# CONFIG_R3964 is not set
73469 +# CONFIG_APPLICOM is not set
73470 +# CONFIG_RAW_DRIVER is not set
73471 +# CONFIG_TCG_TPM is not set
73472 +CONFIG_DEVPORT=y
73473 +# CONFIG_I2C is not set
73474 +
73475 +#
73476 +# SPI support
73477 +#
73478 +# CONFIG_SPI is not set
73479 +# CONFIG_SPI_MASTER is not set
73480 +# CONFIG_W1 is not set
73481 +# CONFIG_POWER_SUPPLY is not set
73482 +# CONFIG_HWMON is not set
73483 +CONFIG_THERMAL=y
73484 +# CONFIG_WATCHDOG is not set
73485 +
73486 +#
73487 +# Sonics Silicon Backplane
73488 +#
73489 +CONFIG_SSB_POSSIBLE=y
73490 +# CONFIG_SSB is not set
73491 +
73492 +#
73493 +# Multifunction device drivers
73494 +#
73495 +# CONFIG_MFD_SM501 is not set
73496 +
73497 +#
73498 +# Multimedia devices
73499 +#
73500 +# CONFIG_VIDEO_DEV is not set
73501 +# CONFIG_DVB_CORE is not set
73502 +# CONFIG_DAB is not set
73503 +
73504 +#
73505 +# Graphics support
73506 +#
73507 +# CONFIG_AGP is not set
73508 +# CONFIG_DRM is not set
73509 +# CONFIG_VGASTATE is not set
73510 +CONFIG_VIDEO_OUTPUT_CONTROL=m
73511 +# CONFIG_FB is not set
73512 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
73513 +
73514 +#
73515 +# Display device support
73516 +#
73517 +# CONFIG_DISPLAY_SUPPORT is not set
73518 +
73519 +#
73520 +# Sound
73521 +#
73522 +# CONFIG_SOUND is not set
73523 +CONFIG_USB_SUPPORT=y
73524 +CONFIG_USB_ARCH_HAS_HCD=y
73525 +CONFIG_USB_ARCH_HAS_OHCI=y
73526 +CONFIG_USB_ARCH_HAS_EHCI=y
73527 +# CONFIG_USB is not set
73528 +
73529 +#
73530 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
73531 +#
73532 +# CONFIG_USB_GADGET is not set
73533 +# CONFIG_MMC is not set
73534 +# CONFIG_MEMSTICK is not set
73535 +# CONFIG_NEW_LEDS is not set
73536 +# CONFIG_INFINIBAND is not set
73537 +# CONFIG_EDAC is not set
73538 +# CONFIG_RTC_CLASS is not set
73539 +# CONFIG_DMADEVICES is not set
73540 +
73541 +#
73542 +# Userspace I/O
73543 +#
73544 +# CONFIG_UIO is not set
73545 +
73546 +#
73547 +# File systems
73548 +#
73549 +CONFIG_EXT2_FS=y
73550 +# CONFIG_EXT2_FS_XATTR is not set
73551 +# CONFIG_EXT2_FS_XIP is not set
73552 +# CONFIG_EXT3_FS is not set
73553 +# CONFIG_EXT4DEV_FS is not set
73554 +# CONFIG_REISERFS_FS is not set
73555 +# CONFIG_JFS_FS is not set
73556 +# CONFIG_FS_POSIX_ACL is not set
73557 +# CONFIG_XFS_FS is not set
73558 +# CONFIG_GFS2_FS is not set
73559 +# CONFIG_OCFS2_FS is not set
73560 +CONFIG_DNOTIFY=y
73561 +CONFIG_INOTIFY=y
73562 +CONFIG_INOTIFY_USER=y
73563 +# CONFIG_QUOTA is not set
73564 +# CONFIG_AUTOFS_FS is not set
73565 +# CONFIG_AUTOFS4_FS is not set
73566 +# CONFIG_FUSE_FS is not set
73567 +
73568 +#
73569 +# CD-ROM/DVD Filesystems
73570 +#
73571 +# CONFIG_ISO9660_FS is not set
73572 +# CONFIG_UDF_FS is not set
73573 +
73574 +#
73575 +# DOS/FAT/NT Filesystems
73576 +#
73577 +# CONFIG_MSDOS_FS is not set
73578 +# CONFIG_VFAT_FS is not set
73579 +# CONFIG_NTFS_FS is not set
73580 +
73581 +#
73582 +# Pseudo filesystems
73583 +#
73584 +CONFIG_PROC_FS=y
73585 +CONFIG_PROC_KCORE=y
73586 +CONFIG_PROC_SYSCTL=y
73587 +CONFIG_SYSFS=y
73588 +CONFIG_TMPFS=y
73589 +# CONFIG_TMPFS_POSIX_ACL is not set
73590 +# CONFIG_HUGETLB_PAGE is not set
73591 +# CONFIG_CONFIGFS_FS is not set
73592 +
73593 +#
73594 +# Miscellaneous filesystems
73595 +#
73596 +# CONFIG_ADFS_FS is not set
73597 +# CONFIG_AFFS_FS is not set
73598 +# CONFIG_HFS_FS is not set
73599 +# CONFIG_HFSPLUS_FS is not set
73600 +# CONFIG_BEFS_FS is not set
73601 +# CONFIG_BFS_FS is not set
73602 +# CONFIG_EFS_FS is not set
73603 +# CONFIG_JFFS2_FS is not set
73604 +CONFIG_CRAMFS=y
73605 +# CONFIG_VXFS_FS is not set
73606 +# CONFIG_MINIX_FS is not set
73607 +# CONFIG_HPFS_FS is not set
73608 +# CONFIG_QNX4FS_FS is not set
73609 +# CONFIG_ROMFS_FS is not set
73610 +# CONFIG_SYSV_FS is not set
73611 +# CONFIG_UFS_FS is not set
73612 +CONFIG_NETWORK_FILESYSTEMS=y
73613 +CONFIG_NFS_FS=y
73614 +CONFIG_NFS_V3=y
73615 +# CONFIG_NFS_V3_ACL is not set
73616 +# CONFIG_NFS_V4 is not set
73617 +# CONFIG_NFS_DIRECTIO is not set
73618 +# CONFIG_NFSD is not set
73619 +CONFIG_ROOT_NFS=y
73620 +CONFIG_LOCKD=y
73621 +CONFIG_LOCKD_V4=y
73622 +CONFIG_NFS_COMMON=y
73623 +CONFIG_SUNRPC=y
73624 +# CONFIG_SUNRPC_BIND34 is not set
73625 +# CONFIG_RPCSEC_GSS_KRB5 is not set
73626 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
73627 +# CONFIG_SMB_FS is not set
73628 +# CONFIG_CIFS is not set
73629 +# CONFIG_NCP_FS is not set
73630 +# CONFIG_CODA_FS is not set
73631 +# CONFIG_AFS_FS is not set
73632 +
73633 +#
73634 +# Partition Types
73635 +#
73636 +# CONFIG_PARTITION_ADVANCED is not set
73637 +CONFIG_MSDOS_PARTITION=y
73638 +# CONFIG_NLS is not set
73639 +# CONFIG_DLM is not set
73640 +
73641 +#
73642 +# Library routines
73643 +#
73644 +CONFIG_BITREVERSE=y
73645 +# CONFIG_CRC_CCITT is not set
73646 +# CONFIG_CRC16 is not set
73647 +# CONFIG_CRC_ITU_T is not set
73648 +CONFIG_CRC32=y
73649 +# CONFIG_CRC7 is not set
73650 +# CONFIG_LIBCRC32C is not set
73651 +CONFIG_ZLIB_INFLATE=y
73652 +CONFIG_PLIST=y
73653 +CONFIG_HAS_IOMEM=y
73654 +CONFIG_HAS_IOPORT=y
73655 +CONFIG_HAS_DMA=y
73656 +CONFIG_HAVE_LMB=y
73657 +
73658 +#
73659 +# Kernel hacking
73660 +#
73661 +# CONFIG_PRINTK_TIME is not set
73662 +CONFIG_ENABLE_WARN_DEPRECATED=y
73663 +CONFIG_ENABLE_MUST_CHECK=y
73664 +CONFIG_MAGIC_SYSRQ=y
73665 +# CONFIG_UNUSED_SYMBOLS is not set
73666 +CONFIG_DEBUG_FS=y
73667 +# CONFIG_HEADERS_CHECK is not set
73668 +CONFIG_DEBUG_KERNEL=y
73669 +# CONFIG_DEBUG_SHIRQ is not set
73670 +CONFIG_DETECT_SOFTLOCKUP=y
73671 +CONFIG_SCHED_DEBUG=y
73672 +# CONFIG_SCHEDSTATS is not set
73673 +# CONFIG_TIMER_STATS is not set
73674 +# CONFIG_SLUB_DEBUG_ON is not set
73675 +# CONFIG_SLUB_STATS is not set
73676 +# CONFIG_DEBUG_RT_MUTEXES is not set
73677 +# CONFIG_RT_MUTEX_TESTER is not set
73678 +# CONFIG_DEBUG_SPINLOCK is not set
73679 +# CONFIG_DEBUG_MUTEXES is not set
73680 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
73681 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
73682 +# CONFIG_DEBUG_KOBJECT is not set
73683 +CONFIG_DEBUG_BUGVERBOSE=y
73684 +# CONFIG_DEBUG_INFO is not set
73685 +# CONFIG_DEBUG_VM is not set
73686 +# CONFIG_DEBUG_LIST is not set
73687 +# CONFIG_DEBUG_SG is not set
73688 +# CONFIG_BOOT_PRINTK_DELAY is not set
73689 +# CONFIG_RCU_TORTURE_TEST is not set
73690 +# CONFIG_BACKTRACE_SELF_TEST is not set
73691 +# CONFIG_FAULT_INJECTION is not set
73692 +# CONFIG_SAMPLES is not set
73693 +# CONFIG_DEBUG_STACKOVERFLOW is not set
73694 +# CONFIG_DEBUG_STACK_USAGE is not set
73695 +# CONFIG_DEBUG_PAGEALLOC is not set
73696 +# CONFIG_DEBUGGER is not set
73697 +# CONFIG_VIRQ_DEBUG is not set
73698 +# CONFIG_BDI_SWITCH is not set
73699 +# CONFIG_PPC_EARLY_DEBUG is not set
73700 +
73701 +#
73702 +# Security options
73703 +#
73704 +# CONFIG_KEYS is not set
73705 +# CONFIG_SECURITY is not set
73706 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
73707 +CONFIG_CRYPTO=y
73708 +CONFIG_CRYPTO_ALGAPI=y
73709 +CONFIG_CRYPTO_BLKCIPHER=y
73710 +# CONFIG_CRYPTO_SEQIV is not set
73711 +CONFIG_CRYPTO_MANAGER=y
73712 +# CONFIG_CRYPTO_HMAC is not set
73713 +# CONFIG_CRYPTO_XCBC is not set
73714 +# CONFIG_CRYPTO_NULL is not set
73715 +# CONFIG_CRYPTO_MD4 is not set
73716 +CONFIG_CRYPTO_MD5=y
73717 +# CONFIG_CRYPTO_SHA1 is not set
73718 +# CONFIG_CRYPTO_SHA256 is not set
73719 +# CONFIG_CRYPTO_SHA512 is not set
73720 +# CONFIG_CRYPTO_WP512 is not set
73721 +# CONFIG_CRYPTO_TGR192 is not set
73722 +# CONFIG_CRYPTO_GF128MUL is not set
73723 +CONFIG_CRYPTO_ECB=y
73724 +CONFIG_CRYPTO_CBC=y
73725 +CONFIG_CRYPTO_PCBC=y
73726 +# CONFIG_CRYPTO_LRW is not set
73727 +# CONFIG_CRYPTO_XTS is not set
73728 +# CONFIG_CRYPTO_CTR is not set
73729 +# CONFIG_CRYPTO_GCM is not set
73730 +# CONFIG_CRYPTO_CCM is not set
73731 +# CONFIG_CRYPTO_CRYPTD is not set
73732 +CONFIG_CRYPTO_DES=y
73733 +# CONFIG_CRYPTO_FCRYPT is not set
73734 +# CONFIG_CRYPTO_BLOWFISH is not set
73735 +# CONFIG_CRYPTO_TWOFISH is not set
73736 +# CONFIG_CRYPTO_SERPENT is not set
73737 +# CONFIG_CRYPTO_AES is not set
73738 +# CONFIG_CRYPTO_CAST5 is not set
73739 +# CONFIG_CRYPTO_CAST6 is not set
73740 +# CONFIG_CRYPTO_TEA is not set
73741 +# CONFIG_CRYPTO_ARC4 is not set
73742 +# CONFIG_CRYPTO_KHAZAD is not set
73743 +# CONFIG_CRYPTO_ANUBIS is not set
73744 +# CONFIG_CRYPTO_SEED is not set
73745 +# CONFIG_CRYPTO_SALSA20 is not set
73746 +# CONFIG_CRYPTO_DEFLATE is not set
73747 +# CONFIG_CRYPTO_MICHAEL_MIC is not set
73748 +# CONFIG_CRYPTO_CRC32C is not set
73749 +# CONFIG_CRYPTO_CAMELLIA is not set
73750 +# CONFIG_CRYPTO_TEST is not set
73751 +# CONFIG_CRYPTO_AUTHENC is not set
73752 +# CONFIG_CRYPTO_LZO is not set
73753 +CONFIG_CRYPTO_HW=y
73754 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
73755 +# CONFIG_PPC_CLOCK is not set
73756 Index: linux-2.6.25.4/arch/powerpc/configs/ppc44x_defconfig
73757 ===================================================================
73758 --- linux-2.6.25.4.orig/arch/powerpc/configs/ppc44x_defconfig
73759 +++ linux-2.6.25.4/arch/powerpc/configs/ppc44x_defconfig
73760 @@ -1,7 +1,7 @@
73761 #
73762 # Automatically generated make config: don't edit
73763 -# Linux kernel version: 2.6.25-rc2
73764 -# Fri Feb 15 21:57:35 2008
73765 +# Linux kernel version: 2.6.25-rc6
73766 +# Sat Apr 5 09:35:48 2008
73767 #
73768 # CONFIG_PPC64 is not set
73769
73770 @@ -79,6 +79,7 @@ CONFIG_FAIR_GROUP_SCHED=y
73771 CONFIG_USER_SCHED=y
73772 # CONFIG_CGROUP_SCHED is not set
73773 CONFIG_SYSFS_DEPRECATED=y
73774 +CONFIG_SYSFS_DEPRECATED_V2=y
73775 # CONFIG_RELAY is not set
73776 # CONFIG_NAMESPACES is not set
73777 CONFIG_BLK_DEV_INITRD=y
73778 @@ -113,6 +114,7 @@ CONFIG_SLUB=y
73779 CONFIG_HAVE_OPROFILE=y
73780 # CONFIG_KPROBES is not set
73781 CONFIG_HAVE_KPROBES=y
73782 +CONFIG_HAVE_KRETPROBES=y
73783 CONFIG_PROC_PAGE_MONITOR=y
73784 CONFIG_SLABINFO=y
73785 CONFIG_RT_MUTEXES=y
73786 @@ -143,7 +145,6 @@ CONFIG_DEFAULT_AS=y
73787 # CONFIG_DEFAULT_NOOP is not set
73788 CONFIG_DEFAULT_IOSCHED="anticipatory"
73789 CONFIG_CLASSIC_RCU=y
73790 -# CONFIG_PREEMPT_RCU is not set
73791 CONFIG_PPC4xx_PCI_EXPRESS=y
73792
73793 #
73794 @@ -161,12 +162,15 @@ CONFIG_TAISHAN=y
73795 CONFIG_KATMAI=y
73796 CONFIG_RAINIER=y
73797 CONFIG_WARP=y
73798 +CONFIG_CANYONLANDS=y
73799 +CONFIG_YOSEMITE=y
73800 CONFIG_440EP=y
73801 CONFIG_440EPX=y
73802 CONFIG_440GRX=y
73803 CONFIG_440GP=y
73804 CONFIG_440GX=y
73805 CONFIG_440SPe=y
73806 +CONFIG_460EX=y
73807 CONFIG_IBM440EP_ERR42=y
73808 # CONFIG_IPIC is not set
73809 # CONFIG_MPIC is not set
73810 @@ -199,7 +203,6 @@ CONFIG_HZ=250
73811 CONFIG_PREEMPT_NONE=y
73812 # CONFIG_PREEMPT_VOLUNTARY is not set
73813 # CONFIG_PREEMPT is not set
73814 -# CONFIG_RCU_TRACE is not set
73815 CONFIG_BINFMT_ELF=y
73816 # CONFIG_BINFMT_MISC is not set
73817 CONFIG_MATH_EMULATION=y
73818 @@ -232,6 +235,7 @@ CONFIG_ISA_DMA_API=y
73819 #
73820 CONFIG_ZONE_DMA=y
73821 CONFIG_PPC_INDIRECT_PCI=y
73822 +CONFIG_4xx_SOC=y
73823 CONFIG_PCI=y
73824 CONFIG_PCI_DOMAINS=y
73825 CONFIG_PCI_SYSCALL=y
73826 @@ -678,6 +682,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y
73827 # CONFIG_INFINIBAND is not set
73828 # CONFIG_EDAC is not set
73829 # CONFIG_RTC_CLASS is not set
73830 +# CONFIG_DMADEVICES is not set
73831
73832 #
73833 # Userspace I/O
73834 @@ -805,6 +810,7 @@ CONFIG_PLIST=y
73835 CONFIG_HAS_IOMEM=y
73836 CONFIG_HAS_IOPORT=y
73837 CONFIG_HAS_DMA=y
73838 +CONFIG_HAVE_LMB=y
73839
73840 #
73841 # Kernel hacking
73842 Index: linux-2.6.25.4/arch/powerpc/configs/ppc64_defconfig
73843 ===================================================================
73844 --- linux-2.6.25.4.orig/arch/powerpc/configs/ppc64_defconfig
73845 +++ linux-2.6.25.4/arch/powerpc/configs/ppc64_defconfig
73846 @@ -1,7 +1,7 @@
73847 #
73848 # Automatically generated make config: don't edit
73849 # Linux kernel version: 2.6.25-rc6
73850 -# Thu Mar 20 11:06:28 2008
73851 +# Thu Mar 27 13:56:24 2008
73852 #
73853 CONFIG_PPC64=y
73854
73855 @@ -84,8 +84,6 @@ CONFIG_CGROUPS=y
73856 # CONFIG_CGROUP_NS is not set
73857 CONFIG_CPUSETS=y
73858 # CONFIG_GROUP_SCHED is not set
73859 -# CONFIG_USER_SCHED is not set
73860 -# CONFIG_CGROUP_SCHED is not set
73861 # CONFIG_CGROUP_CPUACCT is not set
73862 # CONFIG_RESOURCE_COUNTERS is not set
73863 CONFIG_SYSFS_DEPRECATED=y
73864 @@ -289,6 +287,7 @@ CONFIG_ARCH_HAS_WALK_MEMORY=y
73865 CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
73866 CONFIG_KEXEC=y
73867 # CONFIG_CRASH_DUMP is not set
73868 +# CONFIG_PHYP_DUMP is not set
73869 CONFIG_IRQ_ALL_CPUS=y
73870 # CONFIG_NUMA is not set
73871 CONFIG_ARCH_SELECT_MEMORY_MODEL=y
73872 @@ -335,7 +334,7 @@ CONFIG_PCI_SYSCALL=y
73873 # CONFIG_PCIEPORTBUS is not set
73874 CONFIG_ARCH_SUPPORTS_MSI=y
73875 CONFIG_PCI_MSI=y
73876 -CONFIG_PCI_LEGACY=y
73877 +# CONFIG_PCI_LEGACY is not set
73878 # CONFIG_PCI_DEBUG is not set
73879 CONFIG_PCCARD=y
73880 # CONFIG_PCMCIA_DEBUG is not set
73881 @@ -1881,6 +1880,7 @@ CONFIG_PLIST=y
73882 CONFIG_HAS_IOMEM=y
73883 CONFIG_HAS_IOPORT=y
73884 CONFIG_HAS_DMA=y
73885 +CONFIG_HAVE_LMB=y
73886
73887 #
73888 # Kernel hacking
73889 Index: linux-2.6.25.4/arch/powerpc/configs/pseries_defconfig
73890 ===================================================================
73891 --- linux-2.6.25.4.orig/arch/powerpc/configs/pseries_defconfig
73892 +++ linux-2.6.25.4/arch/powerpc/configs/pseries_defconfig
73893 @@ -1,7 +1,7 @@
73894 #
73895 # Automatically generated make config: don't edit
73896 # Linux kernel version: 2.6.25-rc6
73897 -# Thu Mar 20 11:08:01 2008
73898 +# Thu Mar 27 13:56:28 2008
73899 #
73900 CONFIG_PPC64=y
73901
73902 @@ -83,8 +83,6 @@ CONFIG_CGROUPS=y
73903 CONFIG_CGROUP_NS=y
73904 CONFIG_CPUSETS=y
73905 # CONFIG_GROUP_SCHED is not set
73906 -# CONFIG_USER_SCHED is not set
73907 -# CONFIG_CGROUP_SCHED is not set
73908 CONFIG_CGROUP_CPUACCT=y
73909 # CONFIG_RESOURCE_COUNTERS is not set
73910 CONFIG_SYSFS_DEPRECATED=y
73911 @@ -237,6 +235,7 @@ CONFIG_ARCH_HAS_WALK_MEMORY=y
73912 CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
73913 CONFIG_KEXEC=y
73914 # CONFIG_CRASH_DUMP is not set
73915 +# CONFIG_PHYP_DUMP is not set
73916 CONFIG_IRQ_ALL_CPUS=y
73917 CONFIG_NUMA=y
73918 CONFIG_NODES_SHIFT=4
73919 @@ -283,7 +282,7 @@ CONFIG_PCI_SYSCALL=y
73920 # CONFIG_PCIEPORTBUS is not set
73921 CONFIG_ARCH_SUPPORTS_MSI=y
73922 CONFIG_PCI_MSI=y
73923 -CONFIG_PCI_LEGACY=y
73924 +# CONFIG_PCI_LEGACY is not set
73925 # CONFIG_PCI_DEBUG is not set
73926 # CONFIG_PCCARD is not set
73927 CONFIG_HOTPLUG_PCI=m
73928 @@ -1519,6 +1518,7 @@ CONFIG_PLIST=y
73929 CONFIG_HAS_IOMEM=y
73930 CONFIG_HAS_IOPORT=y
73931 CONFIG_HAS_DMA=y
73932 +CONFIG_HAVE_LMB=y
73933
73934 #
73935 # Kernel hacking
73936 Index: linux-2.6.25.4/arch/powerpc/configs/rainier_defconfig
73937 ===================================================================
73938 --- linux-2.6.25.4.orig/arch/powerpc/configs/rainier_defconfig
73939 +++ /dev/null
73940 @@ -1,899 +0,0 @@
73941 -#
73942 -# Automatically generated make config: don't edit
73943 -# Linux kernel version: 2.6.25-rc2
73944 -# Fri Feb 15 21:53:10 2008
73945 -#
73946 -# CONFIG_PPC64 is not set
73947 -
73948 -#
73949 -# Processor support
73950 -#
73951 -# CONFIG_6xx is not set
73952 -# CONFIG_PPC_85xx is not set
73953 -# CONFIG_PPC_8xx is not set
73954 -# CONFIG_40x is not set
73955 -CONFIG_44x=y
73956 -# CONFIG_E200 is not set
73957 -CONFIG_4xx=y
73958 -CONFIG_BOOKE=y
73959 -CONFIG_PTE_64BIT=y
73960 -CONFIG_PHYS_64BIT=y
73961 -# CONFIG_PPC_MM_SLICES is not set
73962 -CONFIG_NOT_COHERENT_CACHE=y
73963 -CONFIG_PPC32=y
73964 -CONFIG_WORD_SIZE=32
73965 -CONFIG_PPC_MERGE=y
73966 -CONFIG_MMU=y
73967 -CONFIG_GENERIC_CMOS_UPDATE=y
73968 -CONFIG_GENERIC_TIME=y
73969 -CONFIG_GENERIC_TIME_VSYSCALL=y
73970 -CONFIG_GENERIC_CLOCKEVENTS=y
73971 -CONFIG_GENERIC_HARDIRQS=y
73972 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
73973 -CONFIG_IRQ_PER_CPU=y
73974 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
73975 -CONFIG_ARCH_HAS_ILOG2_U32=y
73976 -CONFIG_GENERIC_HWEIGHT=y
73977 -CONFIG_GENERIC_CALIBRATE_DELAY=y
73978 -CONFIG_GENERIC_FIND_NEXT_BIT=y
73979 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
73980 -CONFIG_PPC=y
73981 -CONFIG_EARLY_PRINTK=y
73982 -CONFIG_GENERIC_NVRAM=y
73983 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
73984 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
73985 -CONFIG_PPC_OF=y
73986 -CONFIG_OF=y
73987 -CONFIG_PPC_UDBG_16550=y
73988 -# CONFIG_GENERIC_TBSYNC is not set
73989 -CONFIG_AUDIT_ARCH=y
73990 -CONFIG_GENERIC_BUG=y
73991 -# CONFIG_DEFAULT_UIMAGE is not set
73992 -CONFIG_PPC_DCR_NATIVE=y
73993 -# CONFIG_PPC_DCR_MMIO is not set
73994 -CONFIG_PPC_DCR=y
73995 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
73996 -
73997 -#
73998 -# General setup
73999 -#
74000 -CONFIG_EXPERIMENTAL=y
74001 -CONFIG_BROKEN_ON_SMP=y
74002 -CONFIG_INIT_ENV_ARG_LIMIT=32
74003 -CONFIG_LOCALVERSION=""
74004 -CONFIG_LOCALVERSION_AUTO=y
74005 -CONFIG_SWAP=y
74006 -CONFIG_SYSVIPC=y
74007 -CONFIG_SYSVIPC_SYSCTL=y
74008 -CONFIG_POSIX_MQUEUE=y
74009 -# CONFIG_BSD_PROCESS_ACCT is not set
74010 -# CONFIG_TASKSTATS is not set
74011 -# CONFIG_AUDIT is not set
74012 -# CONFIG_IKCONFIG is not set
74013 -CONFIG_LOG_BUF_SHIFT=14
74014 -# CONFIG_CGROUPS is not set
74015 -CONFIG_GROUP_SCHED=y
74016 -CONFIG_FAIR_GROUP_SCHED=y
74017 -# CONFIG_RT_GROUP_SCHED is not set
74018 -CONFIG_USER_SCHED=y
74019 -# CONFIG_CGROUP_SCHED is not set
74020 -CONFIG_SYSFS_DEPRECATED=y
74021 -# CONFIG_RELAY is not set
74022 -# CONFIG_NAMESPACES is not set
74023 -CONFIG_BLK_DEV_INITRD=y
74024 -CONFIG_INITRAMFS_SOURCE=""
74025 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
74026 -CONFIG_SYSCTL=y
74027 -CONFIG_EMBEDDED=y
74028 -CONFIG_SYSCTL_SYSCALL=y
74029 -CONFIG_KALLSYMS=y
74030 -# CONFIG_KALLSYMS_ALL is not set
74031 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
74032 -CONFIG_HOTPLUG=y
74033 -CONFIG_PRINTK=y
74034 -CONFIG_BUG=y
74035 -CONFIG_ELF_CORE=y
74036 -CONFIG_COMPAT_BRK=y
74037 -CONFIG_BASE_FULL=y
74038 -CONFIG_FUTEX=y
74039 -CONFIG_ANON_INODES=y
74040 -CONFIG_EPOLL=y
74041 -CONFIG_SIGNALFD=y
74042 -CONFIG_TIMERFD=y
74043 -CONFIG_EVENTFD=y
74044 -CONFIG_SHMEM=y
74045 -CONFIG_VM_EVENT_COUNTERS=y
74046 -CONFIG_SLUB_DEBUG=y
74047 -# CONFIG_SLAB is not set
74048 -CONFIG_SLUB=y
74049 -# CONFIG_SLOB is not set
74050 -# CONFIG_PROFILING is not set
74051 -# CONFIG_MARKERS is not set
74052 -CONFIG_HAVE_OPROFILE=y
74053 -# CONFIG_KPROBES is not set
74054 -CONFIG_HAVE_KPROBES=y
74055 -CONFIG_PROC_PAGE_MONITOR=y
74056 -CONFIG_SLABINFO=y
74057 -CONFIG_RT_MUTEXES=y
74058 -# CONFIG_TINY_SHMEM is not set
74059 -CONFIG_BASE_SMALL=0
74060 -CONFIG_MODULES=y
74061 -CONFIG_MODULE_UNLOAD=y
74062 -# CONFIG_MODULE_FORCE_UNLOAD is not set
74063 -# CONFIG_MODVERSIONS is not set
74064 -# CONFIG_MODULE_SRCVERSION_ALL is not set
74065 -CONFIG_KMOD=y
74066 -CONFIG_BLOCK=y
74067 -CONFIG_LBD=y
74068 -# CONFIG_BLK_DEV_IO_TRACE is not set
74069 -# CONFIG_LSF is not set
74070 -# CONFIG_BLK_DEV_BSG is not set
74071 -
74072 -#
74073 -# IO Schedulers
74074 -#
74075 -CONFIG_IOSCHED_NOOP=y
74076 -CONFIG_IOSCHED_AS=y
74077 -CONFIG_IOSCHED_DEADLINE=y
74078 -CONFIG_IOSCHED_CFQ=y
74079 -CONFIG_DEFAULT_AS=y
74080 -# CONFIG_DEFAULT_DEADLINE is not set
74081 -# CONFIG_DEFAULT_CFQ is not set
74082 -# CONFIG_DEFAULT_NOOP is not set
74083 -CONFIG_DEFAULT_IOSCHED="anticipatory"
74084 -CONFIG_CLASSIC_RCU=y
74085 -# CONFIG_PREEMPT_RCU is not set
74086 -# CONFIG_PPC4xx_PCI_EXPRESS is not set
74087 -
74088 -#
74089 -# Platform support
74090 -#
74091 -# CONFIG_PPC_MPC512x is not set
74092 -# CONFIG_PPC_MPC5121 is not set
74093 -# CONFIG_PPC_CELL is not set
74094 -# CONFIG_PPC_CELL_NATIVE is not set
74095 -# CONFIG_PQ2ADS is not set
74096 -# CONFIG_BAMBOO is not set
74097 -# CONFIG_EBONY is not set
74098 -# CONFIG_SEQUOIA is not set
74099 -# CONFIG_TAISHAN is not set
74100 -# CONFIG_KATMAI is not set
74101 -CONFIG_RAINIER=y
74102 -# CONFIG_WARP is not set
74103 -CONFIG_440GRX=y
74104 -# CONFIG_IPIC is not set
74105 -# CONFIG_MPIC is not set
74106 -# CONFIG_MPIC_WEIRD is not set
74107 -# CONFIG_PPC_I8259 is not set
74108 -# CONFIG_PPC_RTAS is not set
74109 -# CONFIG_MMIO_NVRAM is not set
74110 -# CONFIG_PPC_MPC106 is not set
74111 -# CONFIG_PPC_970_NAP is not set
74112 -# CONFIG_PPC_INDIRECT_IO is not set
74113 -# CONFIG_GENERIC_IOMAP is not set
74114 -# CONFIG_CPU_FREQ is not set
74115 -# CONFIG_FSL_ULI1575 is not set
74116 -
74117 -#
74118 -# Kernel options
74119 -#
74120 -# CONFIG_HIGHMEM is not set
74121 -# CONFIG_TICK_ONESHOT is not set
74122 -# CONFIG_NO_HZ is not set
74123 -# CONFIG_HIGH_RES_TIMERS is not set
74124 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
74125 -# CONFIG_HZ_100 is not set
74126 -CONFIG_HZ_250=y
74127 -# CONFIG_HZ_300 is not set
74128 -# CONFIG_HZ_1000 is not set
74129 -CONFIG_HZ=250
74130 -# CONFIG_SCHED_HRTICK is not set
74131 -CONFIG_PREEMPT_NONE=y
74132 -# CONFIG_PREEMPT_VOLUNTARY is not set
74133 -# CONFIG_PREEMPT is not set
74134 -CONFIG_RCU_TRACE=y
74135 -CONFIG_BINFMT_ELF=y
74136 -# CONFIG_BINFMT_MISC is not set
74137 -CONFIG_MATH_EMULATION=y
74138 -# CONFIG_IOMMU_HELPER is not set
74139 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
74140 -CONFIG_ARCH_HAS_WALK_MEMORY=y
74141 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
74142 -CONFIG_ARCH_FLATMEM_ENABLE=y
74143 -CONFIG_ARCH_POPULATES_NODE_MAP=y
74144 -CONFIG_SELECT_MEMORY_MODEL=y
74145 -CONFIG_FLATMEM_MANUAL=y
74146 -# CONFIG_DISCONTIGMEM_MANUAL is not set
74147 -# CONFIG_SPARSEMEM_MANUAL is not set
74148 -CONFIG_FLATMEM=y
74149 -CONFIG_FLAT_NODE_MEM_MAP=y
74150 -# CONFIG_SPARSEMEM_STATIC is not set
74151 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
74152 -CONFIG_SPLIT_PTLOCK_CPUS=4
74153 -CONFIG_RESOURCES_64BIT=y
74154 -CONFIG_ZONE_DMA_FLAG=1
74155 -CONFIG_BOUNCE=y
74156 -CONFIG_VIRT_TO_BUS=y
74157 -CONFIG_PROC_DEVICETREE=y
74158 -CONFIG_CMDLINE_BOOL=y
74159 -CONFIG_CMDLINE=""
74160 -CONFIG_SECCOMP=y
74161 -CONFIG_ISA_DMA_API=y
74162 -
74163 -#
74164 -# Bus options
74165 -#
74166 -CONFIG_ZONE_DMA=y
74167 -CONFIG_PPC_INDIRECT_PCI=y
74168 -CONFIG_PCI=y
74169 -CONFIG_PCI_DOMAINS=y
74170 -CONFIG_PCI_SYSCALL=y
74171 -# CONFIG_PCIEPORTBUS is not set
74172 -CONFIG_ARCH_SUPPORTS_MSI=y
74173 -# CONFIG_PCI_MSI is not set
74174 -CONFIG_PCI_LEGACY=y
74175 -# CONFIG_PCI_DEBUG is not set
74176 -# CONFIG_PCCARD is not set
74177 -# CONFIG_HOTPLUG_PCI is not set
74178 -
74179 -#
74180 -# Advanced setup
74181 -#
74182 -# CONFIG_ADVANCED_OPTIONS is not set
74183 -
74184 -#
74185 -# Default settings for advanced configuration options are used
74186 -#
74187 -CONFIG_HIGHMEM_START=0xfe000000
74188 -CONFIG_LOWMEM_SIZE=0x30000000
74189 -CONFIG_KERNEL_START=0xc0000000
74190 -CONFIG_TASK_SIZE=0xc0000000
74191 -CONFIG_CONSISTENT_START=0xff100000
74192 -CONFIG_CONSISTENT_SIZE=0x00200000
74193 -CONFIG_BOOT_LOAD=0x01000000
74194 -
74195 -#
74196 -# Networking
74197 -#
74198 -CONFIG_NET=y
74199 -
74200 -#
74201 -# Networking options
74202 -#
74203 -CONFIG_PACKET=y
74204 -# CONFIG_PACKET_MMAP is not set
74205 -CONFIG_UNIX=y
74206 -# CONFIG_NET_KEY is not set
74207 -CONFIG_INET=y
74208 -# CONFIG_IP_MULTICAST is not set
74209 -# CONFIG_IP_ADVANCED_ROUTER is not set
74210 -CONFIG_IP_FIB_HASH=y
74211 -CONFIG_IP_PNP=y
74212 -CONFIG_IP_PNP_DHCP=y
74213 -CONFIG_IP_PNP_BOOTP=y
74214 -# CONFIG_IP_PNP_RARP is not set
74215 -# CONFIG_NET_IPIP is not set
74216 -# CONFIG_NET_IPGRE is not set
74217 -# CONFIG_ARPD is not set
74218 -# CONFIG_SYN_COOKIES is not set
74219 -# CONFIG_INET_AH is not set
74220 -# CONFIG_INET_ESP is not set
74221 -# CONFIG_INET_IPCOMP is not set
74222 -# CONFIG_INET_XFRM_TUNNEL is not set
74223 -# CONFIG_INET_TUNNEL is not set
74224 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
74225 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
74226 -# CONFIG_INET_XFRM_MODE_BEET is not set
74227 -# CONFIG_INET_LRO is not set
74228 -CONFIG_INET_DIAG=y
74229 -CONFIG_INET_TCP_DIAG=y
74230 -# CONFIG_TCP_CONG_ADVANCED is not set
74231 -CONFIG_TCP_CONG_CUBIC=y
74232 -CONFIG_DEFAULT_TCP_CONG="cubic"
74233 -# CONFIG_TCP_MD5SIG is not set
74234 -# CONFIG_IPV6 is not set
74235 -# CONFIG_INET6_XFRM_TUNNEL is not set
74236 -# CONFIG_INET6_TUNNEL is not set
74237 -# CONFIG_NETWORK_SECMARK is not set
74238 -# CONFIG_NETFILTER is not set
74239 -# CONFIG_IP_DCCP is not set
74240 -# CONFIG_IP_SCTP is not set
74241 -# CONFIG_TIPC is not set
74242 -# CONFIG_ATM is not set
74243 -# CONFIG_BRIDGE is not set
74244 -# CONFIG_VLAN_8021Q is not set
74245 -# CONFIG_DECNET is not set
74246 -# CONFIG_LLC2 is not set
74247 -# CONFIG_IPX is not set
74248 -# CONFIG_ATALK is not set
74249 -# CONFIG_X25 is not set
74250 -# CONFIG_LAPB is not set
74251 -# CONFIG_ECONET is not set
74252 -# CONFIG_WAN_ROUTER is not set
74253 -# CONFIG_NET_SCHED is not set
74254 -
74255 -#
74256 -# Network testing
74257 -#
74258 -# CONFIG_NET_PKTGEN is not set
74259 -# CONFIG_HAMRADIO is not set
74260 -# CONFIG_CAN is not set
74261 -# CONFIG_IRDA is not set
74262 -# CONFIG_BT is not set
74263 -# CONFIG_AF_RXRPC is not set
74264 -
74265 -#
74266 -# Wireless
74267 -#
74268 -# CONFIG_CFG80211 is not set
74269 -# CONFIG_WIRELESS_EXT is not set
74270 -# CONFIG_MAC80211 is not set
74271 -# CONFIG_IEEE80211 is not set
74272 -# CONFIG_RFKILL is not set
74273 -# CONFIG_NET_9P is not set
74274 -
74275 -#
74276 -# Device Drivers
74277 -#
74278 -
74279 -#
74280 -# Generic Driver Options
74281 -#
74282 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
74283 -CONFIG_STANDALONE=y
74284 -CONFIG_PREVENT_FIRMWARE_BUILD=y
74285 -CONFIG_FW_LOADER=y
74286 -# CONFIG_DEBUG_DRIVER is not set
74287 -# CONFIG_DEBUG_DEVRES is not set
74288 -# CONFIG_SYS_HYPERVISOR is not set
74289 -CONFIG_CONNECTOR=y
74290 -CONFIG_PROC_EVENTS=y
74291 -CONFIG_MTD=y
74292 -# CONFIG_MTD_DEBUG is not set
74293 -# CONFIG_MTD_CONCAT is not set
74294 -CONFIG_MTD_PARTITIONS=y
74295 -# CONFIG_MTD_REDBOOT_PARTS is not set
74296 -CONFIG_MTD_CMDLINE_PARTS=y
74297 -CONFIG_MTD_OF_PARTS=y
74298 -
74299 -#
74300 -# User Modules And Translation Layers
74301 -#
74302 -CONFIG_MTD_CHAR=y
74303 -# CONFIG_MTD_BLKDEVS is not set
74304 -# CONFIG_MTD_BLOCK is not set
74305 -# CONFIG_MTD_BLOCK_RO is not set
74306 -# CONFIG_FTL is not set
74307 -# CONFIG_NFTL is not set
74308 -# CONFIG_INFTL is not set
74309 -# CONFIG_RFD_FTL is not set
74310 -# CONFIG_SSFDC is not set
74311 -# CONFIG_MTD_OOPS is not set
74312 -
74313 -#
74314 -# RAM/ROM/Flash chip drivers
74315 -#
74316 -CONFIG_MTD_CFI=y
74317 -CONFIG_MTD_JEDECPROBE=y
74318 -CONFIG_MTD_GEN_PROBE=y
74319 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
74320 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
74321 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
74322 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
74323 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
74324 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
74325 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
74326 -CONFIG_MTD_CFI_I1=y
74327 -CONFIG_MTD_CFI_I2=y
74328 -# CONFIG_MTD_CFI_I4 is not set
74329 -# CONFIG_MTD_CFI_I8 is not set
74330 -CONFIG_MTD_CFI_INTELEXT=y
74331 -CONFIG_MTD_CFI_AMDSTD=y
74332 -# CONFIG_MTD_CFI_STAA is not set
74333 -CONFIG_MTD_CFI_UTIL=y
74334 -# CONFIG_MTD_RAM is not set
74335 -# CONFIG_MTD_ROM is not set
74336 -# CONFIG_MTD_ABSENT is not set
74337 -
74338 -#
74339 -# Mapping drivers for chip access
74340 -#
74341 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
74342 -# CONFIG_MTD_PHYSMAP is not set
74343 -CONFIG_MTD_PHYSMAP_OF=y
74344 -# CONFIG_MTD_INTEL_VR_NOR is not set
74345 -# CONFIG_MTD_PLATRAM is not set
74346 -
74347 -#
74348 -# Self-contained MTD device drivers
74349 -#
74350 -# CONFIG_MTD_PMC551 is not set
74351 -# CONFIG_MTD_SLRAM is not set
74352 -# CONFIG_MTD_PHRAM is not set
74353 -# CONFIG_MTD_MTDRAM is not set
74354 -# CONFIG_MTD_BLOCK2MTD is not set
74355 -
74356 -#
74357 -# Disk-On-Chip Device Drivers
74358 -#
74359 -# CONFIG_MTD_DOC2000 is not set
74360 -# CONFIG_MTD_DOC2001 is not set
74361 -# CONFIG_MTD_DOC2001PLUS is not set
74362 -# CONFIG_MTD_NAND is not set
74363 -# CONFIG_MTD_ONENAND is not set
74364 -
74365 -#
74366 -# UBI - Unsorted block images
74367 -#
74368 -# CONFIG_MTD_UBI is not set
74369 -CONFIG_OF_DEVICE=y
74370 -# CONFIG_PARPORT is not set
74371 -CONFIG_BLK_DEV=y
74372 -# CONFIG_BLK_DEV_FD is not set
74373 -# CONFIG_BLK_CPQ_DA is not set
74374 -# CONFIG_BLK_CPQ_CISS_DA is not set
74375 -# CONFIG_BLK_DEV_DAC960 is not set
74376 -# CONFIG_BLK_DEV_UMEM is not set
74377 -# CONFIG_BLK_DEV_COW_COMMON is not set
74378 -# CONFIG_BLK_DEV_LOOP is not set
74379 -# CONFIG_BLK_DEV_NBD is not set
74380 -# CONFIG_BLK_DEV_SX8 is not set
74381 -CONFIG_BLK_DEV_RAM=y
74382 -CONFIG_BLK_DEV_RAM_COUNT=16
74383 -CONFIG_BLK_DEV_RAM_SIZE=35000
74384 -# CONFIG_BLK_DEV_XIP is not set
74385 -# CONFIG_CDROM_PKTCDVD is not set
74386 -# CONFIG_ATA_OVER_ETH is not set
74387 -# CONFIG_XILINX_SYSACE is not set
74388 -CONFIG_MISC_DEVICES=y
74389 -# CONFIG_PHANTOM is not set
74390 -# CONFIG_EEPROM_93CX6 is not set
74391 -# CONFIG_SGI_IOC4 is not set
74392 -# CONFIG_TIFM_CORE is not set
74393 -# CONFIG_ENCLOSURE_SERVICES is not set
74394 -CONFIG_HAVE_IDE=y
74395 -# CONFIG_IDE is not set
74396 -
74397 -#
74398 -# SCSI device support
74399 -#
74400 -# CONFIG_RAID_ATTRS is not set
74401 -# CONFIG_SCSI is not set
74402 -# CONFIG_SCSI_DMA is not set
74403 -# CONFIG_SCSI_NETLINK is not set
74404 -# CONFIG_ATA is not set
74405 -# CONFIG_MD is not set
74406 -# CONFIG_FUSION is not set
74407 -
74408 -#
74409 -# IEEE 1394 (FireWire) support
74410 -#
74411 -# CONFIG_FIREWIRE is not set
74412 -# CONFIG_IEEE1394 is not set
74413 -# CONFIG_I2O is not set
74414 -CONFIG_MACINTOSH_DRIVERS=y
74415 -# CONFIG_MAC_EMUMOUSEBTN is not set
74416 -# CONFIG_WINDFARM is not set
74417 -CONFIG_NETDEVICES=y
74418 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
74419 -# CONFIG_DUMMY is not set
74420 -# CONFIG_BONDING is not set
74421 -# CONFIG_MACVLAN is not set
74422 -# CONFIG_EQUALIZER is not set
74423 -# CONFIG_TUN is not set
74424 -# CONFIG_VETH is not set
74425 -# CONFIG_ARCNET is not set
74426 -# CONFIG_NET_ETHERNET is not set
74427 -CONFIG_IBM_NEW_EMAC_ZMII=y
74428 -CONFIG_IBM_NEW_EMAC_RGMII=y
74429 -CONFIG_IBM_NEW_EMAC_EMAC4=y
74430 -CONFIG_NETDEV_1000=y
74431 -# CONFIG_ACENIC is not set
74432 -# CONFIG_DL2K is not set
74433 -# CONFIG_E1000 is not set
74434 -# CONFIG_E1000E is not set
74435 -# CONFIG_E1000E_ENABLED is not set
74436 -# CONFIG_IP1000 is not set
74437 -# CONFIG_IGB is not set
74438 -# CONFIG_NS83820 is not set
74439 -# CONFIG_HAMACHI is not set
74440 -# CONFIG_YELLOWFIN is not set
74441 -# CONFIG_R8169 is not set
74442 -# CONFIG_SIS190 is not set
74443 -# CONFIG_SKGE is not set
74444 -# CONFIG_SKY2 is not set
74445 -# CONFIG_SK98LIN is not set
74446 -# CONFIG_VIA_VELOCITY is not set
74447 -# CONFIG_TIGON3 is not set
74448 -# CONFIG_BNX2 is not set
74449 -# CONFIG_QLA3XXX is not set
74450 -# CONFIG_ATL1 is not set
74451 -CONFIG_NETDEV_10000=y
74452 -# CONFIG_CHELSIO_T1 is not set
74453 -# CONFIG_CHELSIO_T3 is not set
74454 -# CONFIG_IXGBE is not set
74455 -# CONFIG_IXGB is not set
74456 -# CONFIG_S2IO is not set
74457 -# CONFIG_MYRI10GE is not set
74458 -# CONFIG_NETXEN_NIC is not set
74459 -# CONFIG_NIU is not set
74460 -# CONFIG_MLX4_CORE is not set
74461 -# CONFIG_TEHUTI is not set
74462 -# CONFIG_BNX2X is not set
74463 -# CONFIG_TR is not set
74464 -
74465 -#
74466 -# Wireless LAN
74467 -#
74468 -# CONFIG_WLAN_PRE80211 is not set
74469 -# CONFIG_WLAN_80211 is not set
74470 -# CONFIG_WAN is not set
74471 -# CONFIG_FDDI is not set
74472 -# CONFIG_HIPPI is not set
74473 -# CONFIG_PPP is not set
74474 -# CONFIG_SLIP is not set
74475 -# CONFIG_NETCONSOLE is not set
74476 -# CONFIG_NETPOLL is not set
74477 -# CONFIG_NET_POLL_CONTROLLER is not set
74478 -# CONFIG_ISDN is not set
74479 -# CONFIG_PHONE is not set
74480 -
74481 -#
74482 -# Input device support
74483 -#
74484 -# CONFIG_INPUT is not set
74485 -
74486 -#
74487 -# Hardware I/O ports
74488 -#
74489 -# CONFIG_SERIO is not set
74490 -# CONFIG_GAMEPORT is not set
74491 -
74492 -#
74493 -# Character devices
74494 -#
74495 -# CONFIG_VT is not set
74496 -# CONFIG_SERIAL_NONSTANDARD is not set
74497 -# CONFIG_NOZOMI is not set
74498 -
74499 -#
74500 -# Serial drivers
74501 -#
74502 -CONFIG_SERIAL_8250=y
74503 -CONFIG_SERIAL_8250_CONSOLE=y
74504 -# CONFIG_SERIAL_8250_PCI is not set
74505 -CONFIG_SERIAL_8250_NR_UARTS=4
74506 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
74507 -CONFIG_SERIAL_8250_EXTENDED=y
74508 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
74509 -CONFIG_SERIAL_8250_SHARE_IRQ=y
74510 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
74511 -# CONFIG_SERIAL_8250_RSA is not set
74512 -
74513 -#
74514 -# Non-8250 serial port support
74515 -#
74516 -# CONFIG_SERIAL_UARTLITE is not set
74517 -CONFIG_SERIAL_CORE=y
74518 -CONFIG_SERIAL_CORE_CONSOLE=y
74519 -# CONFIG_SERIAL_JSM is not set
74520 -CONFIG_SERIAL_OF_PLATFORM=y
74521 -CONFIG_UNIX98_PTYS=y
74522 -CONFIG_LEGACY_PTYS=y
74523 -CONFIG_LEGACY_PTY_COUNT=256
74524 -# CONFIG_IPMI_HANDLER is not set
74525 -# CONFIG_HW_RANDOM is not set
74526 -# CONFIG_NVRAM is not set
74527 -# CONFIG_GEN_RTC is not set
74528 -# CONFIG_R3964 is not set
74529 -# CONFIG_APPLICOM is not set
74530 -# CONFIG_RAW_DRIVER is not set
74531 -# CONFIG_TCG_TPM is not set
74532 -CONFIG_DEVPORT=y
74533 -# CONFIG_I2C is not set
74534 -
74535 -#
74536 -# SPI support
74537 -#
74538 -# CONFIG_SPI is not set
74539 -# CONFIG_SPI_MASTER is not set
74540 -# CONFIG_W1 is not set
74541 -# CONFIG_POWER_SUPPLY is not set
74542 -# CONFIG_HWMON is not set
74543 -CONFIG_THERMAL=y
74544 -# CONFIG_WATCHDOG is not set
74545 -
74546 -#
74547 -# Sonics Silicon Backplane
74548 -#
74549 -CONFIG_SSB_POSSIBLE=y
74550 -# CONFIG_SSB is not set
74551 -
74552 -#
74553 -# Multifunction device drivers
74554 -#
74555 -# CONFIG_MFD_SM501 is not set
74556 -
74557 -#
74558 -# Multimedia devices
74559 -#
74560 -# CONFIG_VIDEO_DEV is not set
74561 -# CONFIG_DVB_CORE is not set
74562 -CONFIG_DAB=y
74563 -
74564 -#
74565 -# Graphics support
74566 -#
74567 -# CONFIG_AGP is not set
74568 -# CONFIG_DRM is not set
74569 -# CONFIG_VGASTATE is not set
74570 -CONFIG_VIDEO_OUTPUT_CONTROL=m
74571 -# CONFIG_FB is not set
74572 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
74573 -
74574 -#
74575 -# Display device support
74576 -#
74577 -# CONFIG_DISPLAY_SUPPORT is not set
74578 -
74579 -#
74580 -# Sound
74581 -#
74582 -# CONFIG_SOUND is not set
74583 -CONFIG_USB_SUPPORT=y
74584 -CONFIG_USB_ARCH_HAS_HCD=y
74585 -CONFIG_USB_ARCH_HAS_OHCI=y
74586 -CONFIG_USB_ARCH_HAS_EHCI=y
74587 -# CONFIG_USB is not set
74588 -
74589 -#
74590 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
74591 -#
74592 -# CONFIG_USB_GADGET is not set
74593 -# CONFIG_MMC is not set
74594 -# CONFIG_MEMSTICK is not set
74595 -# CONFIG_NEW_LEDS is not set
74596 -# CONFIG_INFINIBAND is not set
74597 -# CONFIG_EDAC is not set
74598 -# CONFIG_RTC_CLASS is not set
74599 -
74600 -#
74601 -# Userspace I/O
74602 -#
74603 -# CONFIG_UIO is not set
74604 -
74605 -#
74606 -# File systems
74607 -#
74608 -CONFIG_EXT2_FS=y
74609 -# CONFIG_EXT2_FS_XATTR is not set
74610 -# CONFIG_EXT2_FS_XIP is not set
74611 -# CONFIG_EXT3_FS is not set
74612 -# CONFIG_EXT4DEV_FS is not set
74613 -# CONFIG_REISERFS_FS is not set
74614 -# CONFIG_JFS_FS is not set
74615 -# CONFIG_FS_POSIX_ACL is not set
74616 -# CONFIG_XFS_FS is not set
74617 -# CONFIG_GFS2_FS is not set
74618 -# CONFIG_OCFS2_FS is not set
74619 -CONFIG_DNOTIFY=y
74620 -CONFIG_INOTIFY=y
74621 -CONFIG_INOTIFY_USER=y
74622 -# CONFIG_QUOTA is not set
74623 -# CONFIG_AUTOFS_FS is not set
74624 -# CONFIG_AUTOFS4_FS is not set
74625 -# CONFIG_FUSE_FS is not set
74626 -
74627 -#
74628 -# CD-ROM/DVD Filesystems
74629 -#
74630 -# CONFIG_ISO9660_FS is not set
74631 -# CONFIG_UDF_FS is not set
74632 -
74633 -#
74634 -# DOS/FAT/NT Filesystems
74635 -#
74636 -# CONFIG_MSDOS_FS is not set
74637 -# CONFIG_VFAT_FS is not set
74638 -# CONFIG_NTFS_FS is not set
74639 -
74640 -#
74641 -# Pseudo filesystems
74642 -#
74643 -CONFIG_PROC_FS=y
74644 -CONFIG_PROC_KCORE=y
74645 -CONFIG_PROC_SYSCTL=y
74646 -CONFIG_SYSFS=y
74647 -CONFIG_TMPFS=y
74648 -# CONFIG_TMPFS_POSIX_ACL is not set
74649 -# CONFIG_HUGETLB_PAGE is not set
74650 -# CONFIG_CONFIGFS_FS is not set
74651 -
74652 -#
74653 -# Miscellaneous filesystems
74654 -#
74655 -# CONFIG_ADFS_FS is not set
74656 -# CONFIG_AFFS_FS is not set
74657 -# CONFIG_HFS_FS is not set
74658 -# CONFIG_HFSPLUS_FS is not set
74659 -# CONFIG_BEFS_FS is not set
74660 -# CONFIG_BFS_FS is not set
74661 -# CONFIG_EFS_FS is not set
74662 -CONFIG_JFFS2_FS=y
74663 -CONFIG_JFFS2_FS_DEBUG=0
74664 -CONFIG_JFFS2_FS_WRITEBUFFER=y
74665 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
74666 -# CONFIG_JFFS2_SUMMARY is not set
74667 -# CONFIG_JFFS2_FS_XATTR is not set
74668 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
74669 -CONFIG_JFFS2_ZLIB=y
74670 -# CONFIG_JFFS2_LZO is not set
74671 -CONFIG_JFFS2_RTIME=y
74672 -# CONFIG_JFFS2_RUBIN is not set
74673 -CONFIG_CRAMFS=y
74674 -# CONFIG_VXFS_FS is not set
74675 -# CONFIG_MINIX_FS is not set
74676 -# CONFIG_HPFS_FS is not set
74677 -# CONFIG_QNX4FS_FS is not set
74678 -# CONFIG_ROMFS_FS is not set
74679 -# CONFIG_SYSV_FS is not set
74680 -# CONFIG_UFS_FS is not set
74681 -CONFIG_NETWORK_FILESYSTEMS=y
74682 -CONFIG_NFS_FS=y
74683 -CONFIG_NFS_V3=y
74684 -# CONFIG_NFS_V3_ACL is not set
74685 -# CONFIG_NFS_V4 is not set
74686 -# CONFIG_NFS_DIRECTIO is not set
74687 -# CONFIG_NFSD is not set
74688 -CONFIG_ROOT_NFS=y
74689 -CONFIG_LOCKD=y
74690 -CONFIG_LOCKD_V4=y
74691 -CONFIG_NFS_COMMON=y
74692 -CONFIG_SUNRPC=y
74693 -# CONFIG_SUNRPC_BIND34 is not set
74694 -# CONFIG_RPCSEC_GSS_KRB5 is not set
74695 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
74696 -# CONFIG_SMB_FS is not set
74697 -# CONFIG_CIFS is not set
74698 -# CONFIG_NCP_FS is not set
74699 -# CONFIG_CODA_FS is not set
74700 -# CONFIG_AFS_FS is not set
74701 -
74702 -#
74703 -# Partition Types
74704 -#
74705 -# CONFIG_PARTITION_ADVANCED is not set
74706 -CONFIG_MSDOS_PARTITION=y
74707 -# CONFIG_NLS is not set
74708 -# CONFIG_DLM is not set
74709 -
74710 -#
74711 -# Library routines
74712 -#
74713 -CONFIG_BITREVERSE=y
74714 -# CONFIG_CRC_CCITT is not set
74715 -# CONFIG_CRC16 is not set
74716 -# CONFIG_CRC_ITU_T is not set
74717 -CONFIG_CRC32=y
74718 -# CONFIG_CRC7 is not set
74719 -# CONFIG_LIBCRC32C is not set
74720 -CONFIG_ZLIB_INFLATE=y
74721 -CONFIG_ZLIB_DEFLATE=y
74722 -CONFIG_PLIST=y
74723 -CONFIG_HAS_IOMEM=y
74724 -CONFIG_HAS_IOPORT=y
74725 -CONFIG_HAS_DMA=y
74726 -
74727 -#
74728 -# Kernel hacking
74729 -#
74730 -# CONFIG_PRINTK_TIME is not set
74731 -CONFIG_ENABLE_WARN_DEPRECATED=y
74732 -CONFIG_ENABLE_MUST_CHECK=y
74733 -CONFIG_MAGIC_SYSRQ=y
74734 -# CONFIG_UNUSED_SYMBOLS is not set
74735 -CONFIG_DEBUG_FS=y
74736 -# CONFIG_HEADERS_CHECK is not set
74737 -CONFIG_DEBUG_KERNEL=y
74738 -# CONFIG_DEBUG_SHIRQ is not set
74739 -CONFIG_DETECT_SOFTLOCKUP=y
74740 -CONFIG_SCHED_DEBUG=y
74741 -# CONFIG_SCHEDSTATS is not set
74742 -# CONFIG_TIMER_STATS is not set
74743 -# CONFIG_SLUB_DEBUG_ON is not set
74744 -# CONFIG_SLUB_STATS is not set
74745 -# CONFIG_DEBUG_RT_MUTEXES is not set
74746 -# CONFIG_RT_MUTEX_TESTER is not set
74747 -# CONFIG_DEBUG_SPINLOCK is not set
74748 -# CONFIG_DEBUG_MUTEXES is not set
74749 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
74750 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
74751 -# CONFIG_DEBUG_KOBJECT is not set
74752 -# CONFIG_DEBUG_BUGVERBOSE is not set
74753 -# CONFIG_DEBUG_INFO is not set
74754 -# CONFIG_DEBUG_VM is not set
74755 -# CONFIG_DEBUG_LIST is not set
74756 -# CONFIG_DEBUG_SG is not set
74757 -# CONFIG_BOOT_PRINTK_DELAY is not set
74758 -# CONFIG_RCU_TORTURE_TEST is not set
74759 -# CONFIG_BACKTRACE_SELF_TEST is not set
74760 -# CONFIG_FAULT_INJECTION is not set
74761 -# CONFIG_SAMPLES is not set
74762 -# CONFIG_DEBUG_STACKOVERFLOW is not set
74763 -# CONFIG_DEBUG_STACK_USAGE is not set
74764 -# CONFIG_DEBUG_PAGEALLOC is not set
74765 -CONFIG_DEBUGGER=y
74766 -# CONFIG_KGDB is not set
74767 -# CONFIG_XMON is not set
74768 -# CONFIG_VIRQ_DEBUG is not set
74769 -# CONFIG_BDI_SWITCH is not set
74770 -CONFIG_PPC_EARLY_DEBUG=y
74771 -# CONFIG_PPC_EARLY_DEBUG_LPAR is not set
74772 -# CONFIG_PPC_EARLY_DEBUG_G5 is not set
74773 -# CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set
74774 -# CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set
74775 -# CONFIG_PPC_EARLY_DEBUG_MAPLE is not set
74776 -# CONFIG_PPC_EARLY_DEBUG_ISERIES is not set
74777 -# CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set
74778 -# CONFIG_PPC_EARLY_DEBUG_BEAT is not set
74779 -CONFIG_PPC_EARLY_DEBUG_44x=y
74780 -# CONFIG_PPC_EARLY_DEBUG_40x is not set
74781 -# CONFIG_PPC_EARLY_DEBUG_CPM is not set
74782 -CONFIG_PPC_EARLY_DEBUG_44x_PHYSLOW=0xef600300
74783 -CONFIG_PPC_EARLY_DEBUG_44x_PHYSHIGH=0x1
74784 -
74785 -#
74786 -# Security options
74787 -#
74788 -# CONFIG_KEYS is not set
74789 -# CONFIG_SECURITY is not set
74790 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
74791 -CONFIG_CRYPTO=y
74792 -CONFIG_CRYPTO_ALGAPI=y
74793 -CONFIG_CRYPTO_BLKCIPHER=y
74794 -# CONFIG_CRYPTO_SEQIV is not set
74795 -CONFIG_CRYPTO_MANAGER=y
74796 -# CONFIG_CRYPTO_HMAC is not set
74797 -# CONFIG_CRYPTO_XCBC is not set
74798 -# CONFIG_CRYPTO_NULL is not set
74799 -# CONFIG_CRYPTO_MD4 is not set
74800 -CONFIG_CRYPTO_MD5=y
74801 -# CONFIG_CRYPTO_SHA1 is not set
74802 -# CONFIG_CRYPTO_SHA256 is not set
74803 -# CONFIG_CRYPTO_SHA512 is not set
74804 -# CONFIG_CRYPTO_WP512 is not set
74805 -# CONFIG_CRYPTO_TGR192 is not set
74806 -# CONFIG_CRYPTO_GF128MUL is not set
74807 -CONFIG_CRYPTO_ECB=y
74808 -CONFIG_CRYPTO_CBC=y
74809 -CONFIG_CRYPTO_PCBC=y
74810 -# CONFIG_CRYPTO_LRW is not set
74811 -# CONFIG_CRYPTO_XTS is not set
74812 -# CONFIG_CRYPTO_CTR is not set
74813 -# CONFIG_CRYPTO_GCM is not set
74814 -# CONFIG_CRYPTO_CCM is not set
74815 -# CONFIG_CRYPTO_CRYPTD is not set
74816 -CONFIG_CRYPTO_DES=y
74817 -# CONFIG_CRYPTO_FCRYPT is not set
74818 -# CONFIG_CRYPTO_BLOWFISH is not set
74819 -# CONFIG_CRYPTO_TWOFISH is not set
74820 -# CONFIG_CRYPTO_SERPENT is not set
74821 -# CONFIG_CRYPTO_AES is not set
74822 -# CONFIG_CRYPTO_CAST5 is not set
74823 -# CONFIG_CRYPTO_CAST6 is not set
74824 -# CONFIG_CRYPTO_TEA is not set
74825 -# CONFIG_CRYPTO_ARC4 is not set
74826 -# CONFIG_CRYPTO_KHAZAD is not set
74827 -# CONFIG_CRYPTO_ANUBIS is not set
74828 -# CONFIG_CRYPTO_SEED is not set
74829 -# CONFIG_CRYPTO_SALSA20 is not set
74830 -# CONFIG_CRYPTO_DEFLATE is not set
74831 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
74832 -# CONFIG_CRYPTO_CRC32C is not set
74833 -# CONFIG_CRYPTO_CAMELLIA is not set
74834 -# CONFIG_CRYPTO_TEST is not set
74835 -# CONFIG_CRYPTO_AUTHENC is not set
74836 -# CONFIG_CRYPTO_LZO is not set
74837 -CONFIG_CRYPTO_HW=y
74838 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
74839 -# CONFIG_PPC_CLOCK is not set
74840 Index: linux-2.6.25.4/arch/powerpc/configs/sbc834x_defconfig
74841 ===================================================================
74842 --- linux-2.6.25.4.orig/arch/powerpc/configs/sbc834x_defconfig
74843 +++ /dev/null
74844 @@ -1,828 +0,0 @@
74845 -#
74846 -# Automatically generated make config: don't edit
74847 -# Linux kernel version: 2.6.25-rc6
74848 -# Mon Mar 24 08:48:38 2008
74849 -#
74850 -# CONFIG_PPC64 is not set
74851 -
74852 -#
74853 -# Processor support
74854 -#
74855 -CONFIG_6xx=y
74856 -# CONFIG_PPC_85xx is not set
74857 -# CONFIG_PPC_8xx is not set
74858 -# CONFIG_40x is not set
74859 -# CONFIG_44x is not set
74860 -# CONFIG_E200 is not set
74861 -CONFIG_PPC_FPU=y
74862 -# CONFIG_FSL_EMB_PERFMON is not set
74863 -CONFIG_PPC_STD_MMU=y
74864 -CONFIG_PPC_STD_MMU_32=y
74865 -# CONFIG_PPC_MM_SLICES is not set
74866 -# CONFIG_SMP is not set
74867 -CONFIG_PPC32=y
74868 -CONFIG_WORD_SIZE=32
74869 -CONFIG_PPC_MERGE=y
74870 -CONFIG_MMU=y
74871 -CONFIG_GENERIC_CMOS_UPDATE=y
74872 -CONFIG_GENERIC_TIME=y
74873 -CONFIG_GENERIC_TIME_VSYSCALL=y
74874 -CONFIG_GENERIC_CLOCKEVENTS=y
74875 -CONFIG_GENERIC_HARDIRQS=y
74876 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
74877 -CONFIG_IRQ_PER_CPU=y
74878 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
74879 -CONFIG_ARCH_HAS_ILOG2_U32=y
74880 -CONFIG_GENERIC_HWEIGHT=y
74881 -CONFIG_GENERIC_CALIBRATE_DELAY=y
74882 -CONFIG_GENERIC_FIND_NEXT_BIT=y
74883 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
74884 -CONFIG_PPC=y
74885 -CONFIG_EARLY_PRINTK=y
74886 -CONFIG_GENERIC_NVRAM=y
74887 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
74888 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
74889 -CONFIG_PPC_OF=y
74890 -CONFIG_OF=y
74891 -CONFIG_PPC_UDBG_16550=y
74892 -# CONFIG_GENERIC_TBSYNC is not set
74893 -CONFIG_AUDIT_ARCH=y
74894 -CONFIG_GENERIC_BUG=y
74895 -CONFIG_DEFAULT_UIMAGE=y
74896 -# CONFIG_PPC_DCR_NATIVE is not set
74897 -# CONFIG_PPC_DCR_MMIO is not set
74898 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
74899 -
74900 -#
74901 -# General setup
74902 -#
74903 -CONFIG_EXPERIMENTAL=y
74904 -CONFIG_BROKEN_ON_SMP=y
74905 -CONFIG_INIT_ENV_ARG_LIMIT=32
74906 -CONFIG_LOCALVERSION=""
74907 -CONFIG_LOCALVERSION_AUTO=y
74908 -CONFIG_SWAP=y
74909 -CONFIG_SYSVIPC=y
74910 -CONFIG_SYSVIPC_SYSCTL=y
74911 -# CONFIG_POSIX_MQUEUE is not set
74912 -# CONFIG_BSD_PROCESS_ACCT is not set
74913 -# CONFIG_TASKSTATS is not set
74914 -# CONFIG_AUDIT is not set
74915 -# CONFIG_IKCONFIG is not set
74916 -CONFIG_LOG_BUF_SHIFT=14
74917 -# CONFIG_CGROUPS is not set
74918 -CONFIG_GROUP_SCHED=y
74919 -CONFIG_FAIR_GROUP_SCHED=y
74920 -# CONFIG_RT_GROUP_SCHED is not set
74921 -CONFIG_USER_SCHED=y
74922 -# CONFIG_CGROUP_SCHED is not set
74923 -CONFIG_SYSFS_DEPRECATED=y
74924 -CONFIG_SYSFS_DEPRECATED_V2=y
74925 -# CONFIG_RELAY is not set
74926 -# CONFIG_NAMESPACES is not set
74927 -CONFIG_BLK_DEV_INITRD=y
74928 -CONFIG_INITRAMFS_SOURCE=""
74929 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
74930 -CONFIG_SYSCTL=y
74931 -CONFIG_EMBEDDED=y
74932 -CONFIG_SYSCTL_SYSCALL=y
74933 -# CONFIG_KALLSYMS is not set
74934 -CONFIG_HOTPLUG=y
74935 -CONFIG_PRINTK=y
74936 -CONFIG_BUG=y
74937 -CONFIG_ELF_CORE=y
74938 -CONFIG_COMPAT_BRK=y
74939 -CONFIG_BASE_FULL=y
74940 -CONFIG_FUTEX=y
74941 -CONFIG_ANON_INODES=y
74942 -# CONFIG_EPOLL is not set
74943 -CONFIG_SIGNALFD=y
74944 -CONFIG_TIMERFD=y
74945 -CONFIG_EVENTFD=y
74946 -CONFIG_SHMEM=y
74947 -CONFIG_VM_EVENT_COUNTERS=y
74948 -CONFIG_SLAB=y
74949 -# CONFIG_SLUB is not set
74950 -# CONFIG_SLOB is not set
74951 -# CONFIG_PROFILING is not set
74952 -# CONFIG_MARKERS is not set
74953 -CONFIG_HAVE_OPROFILE=y
74954 -CONFIG_HAVE_KPROBES=y
74955 -CONFIG_HAVE_KRETPROBES=y
74956 -CONFIG_PROC_PAGE_MONITOR=y
74957 -CONFIG_SLABINFO=y
74958 -CONFIG_RT_MUTEXES=y
74959 -# CONFIG_TINY_SHMEM is not set
74960 -CONFIG_BASE_SMALL=0
74961 -CONFIG_MODULES=y
74962 -CONFIG_MODULE_UNLOAD=y
74963 -# CONFIG_MODULE_FORCE_UNLOAD is not set
74964 -# CONFIG_MODVERSIONS is not set
74965 -# CONFIG_MODULE_SRCVERSION_ALL is not set
74966 -# CONFIG_KMOD is not set
74967 -CONFIG_BLOCK=y
74968 -# CONFIG_LBD is not set
74969 -# CONFIG_BLK_DEV_IO_TRACE is not set
74970 -# CONFIG_LSF is not set
74971 -# CONFIG_BLK_DEV_BSG is not set
74972 -
74973 -#
74974 -# IO Schedulers
74975 -#
74976 -CONFIG_IOSCHED_NOOP=y
74977 -CONFIG_IOSCHED_AS=y
74978 -CONFIG_IOSCHED_DEADLINE=y
74979 -CONFIG_IOSCHED_CFQ=y
74980 -CONFIG_DEFAULT_AS=y
74981 -# CONFIG_DEFAULT_DEADLINE is not set
74982 -# CONFIG_DEFAULT_CFQ is not set
74983 -# CONFIG_DEFAULT_NOOP is not set
74984 -CONFIG_DEFAULT_IOSCHED="anticipatory"
74985 -CONFIG_CLASSIC_RCU=y
74986 -
74987 -#
74988 -# Platform support
74989 -#
74990 -# CONFIG_PPC_MULTIPLATFORM is not set
74991 -# CONFIG_PPC_82xx is not set
74992 -CONFIG_PPC_83xx=y
74993 -# CONFIG_PPC_86xx is not set
74994 -# CONFIG_PPC_MPC512x is not set
74995 -# CONFIG_PPC_MPC5121 is not set
74996 -# CONFIG_PPC_CELL is not set
74997 -# CONFIG_PPC_CELL_NATIVE is not set
74998 -# CONFIG_PQ2ADS is not set
74999 -CONFIG_MPC83xx=y
75000 -# CONFIG_MPC831x_RDB is not set
75001 -# CONFIG_MPC832x_MDS is not set
75002 -# CONFIG_MPC832x_RDB is not set
75003 -# CONFIG_MPC834x_MDS is not set
75004 -# CONFIG_MPC834x_ITX is not set
75005 -# CONFIG_MPC836x_MDS is not set
75006 -# CONFIG_MPC837x_MDS is not set
75007 -# CONFIG_MPC837x_RDB is not set
75008 -CONFIG_SBC834x=y
75009 -CONFIG_PPC_MPC834x=y
75010 -CONFIG_IPIC=y
75011 -# CONFIG_MPIC is not set
75012 -# CONFIG_MPIC_WEIRD is not set
75013 -# CONFIG_PPC_I8259 is not set
75014 -# CONFIG_PPC_RTAS is not set
75015 -# CONFIG_MMIO_NVRAM is not set
75016 -# CONFIG_PPC_MPC106 is not set
75017 -# CONFIG_PPC_970_NAP is not set
75018 -# CONFIG_PPC_INDIRECT_IO is not set
75019 -# CONFIG_GENERIC_IOMAP is not set
75020 -# CONFIG_CPU_FREQ is not set
75021 -# CONFIG_FSL_ULI1575 is not set
75022 -
75023 -#
75024 -# Kernel options
75025 -#
75026 -# CONFIG_HIGHMEM is not set
75027 -# CONFIG_TICK_ONESHOT is not set
75028 -# CONFIG_NO_HZ is not set
75029 -# CONFIG_HIGH_RES_TIMERS is not set
75030 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
75031 -# CONFIG_HZ_100 is not set
75032 -CONFIG_HZ_250=y
75033 -# CONFIG_HZ_300 is not set
75034 -# CONFIG_HZ_1000 is not set
75035 -CONFIG_HZ=250
75036 -# CONFIG_SCHED_HRTICK is not set
75037 -CONFIG_PREEMPT_NONE=y
75038 -# CONFIG_PREEMPT_VOLUNTARY is not set
75039 -# CONFIG_PREEMPT is not set
75040 -CONFIG_BINFMT_ELF=y
75041 -# CONFIG_BINFMT_MISC is not set
75042 -# CONFIG_IOMMU_HELPER is not set
75043 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
75044 -CONFIG_ARCH_HAS_WALK_MEMORY=y
75045 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
75046 -CONFIG_ARCH_FLATMEM_ENABLE=y
75047 -CONFIG_ARCH_POPULATES_NODE_MAP=y
75048 -CONFIG_SELECT_MEMORY_MODEL=y
75049 -CONFIG_FLATMEM_MANUAL=y
75050 -# CONFIG_DISCONTIGMEM_MANUAL is not set
75051 -# CONFIG_SPARSEMEM_MANUAL is not set
75052 -CONFIG_FLATMEM=y
75053 -CONFIG_FLAT_NODE_MEM_MAP=y
75054 -# CONFIG_SPARSEMEM_STATIC is not set
75055 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
75056 -CONFIG_SPLIT_PTLOCK_CPUS=4
75057 -# CONFIG_RESOURCES_64BIT is not set
75058 -CONFIG_ZONE_DMA_FLAG=1
75059 -CONFIG_BOUNCE=y
75060 -CONFIG_VIRT_TO_BUS=y
75061 -CONFIG_PROC_DEVICETREE=y
75062 -# CONFIG_CMDLINE_BOOL is not set
75063 -# CONFIG_PM is not set
75064 -CONFIG_SECCOMP=y
75065 -CONFIG_ISA_DMA_API=y
75066 -
75067 -#
75068 -# Bus options
75069 -#
75070 -CONFIG_ZONE_DMA=y
75071 -CONFIG_GENERIC_ISA_DMA=y
75072 -CONFIG_PPC_INDIRECT_PCI=y
75073 -CONFIG_FSL_SOC=y
75074 -# CONFIG_PCI is not set
75075 -# CONFIG_PCI_DOMAINS is not set
75076 -# CONFIG_PCI_SYSCALL is not set
75077 -# CONFIG_ARCH_SUPPORTS_MSI is not set
75078 -# CONFIG_PCCARD is not set
75079 -
75080 -#
75081 -# Advanced setup
75082 -#
75083 -# CONFIG_ADVANCED_OPTIONS is not set
75084 -
75085 -#
75086 -# Default settings for advanced configuration options are used
75087 -#
75088 -CONFIG_HIGHMEM_START=0xfe000000
75089 -CONFIG_LOWMEM_SIZE=0x30000000
75090 -CONFIG_KERNEL_START=0xc0000000
75091 -CONFIG_TASK_SIZE=0xc0000000
75092 -CONFIG_BOOT_LOAD=0x00800000
75093 -
75094 -#
75095 -# Networking
75096 -#
75097 -CONFIG_NET=y
75098 -
75099 -#
75100 -# Networking options
75101 -#
75102 -CONFIG_PACKET=y
75103 -# CONFIG_PACKET_MMAP is not set
75104 -CONFIG_UNIX=y
75105 -CONFIG_XFRM=y
75106 -CONFIG_XFRM_USER=m
75107 -# CONFIG_XFRM_SUB_POLICY is not set
75108 -# CONFIG_XFRM_MIGRATE is not set
75109 -# CONFIG_XFRM_STATISTICS is not set
75110 -# CONFIG_NET_KEY is not set
75111 -CONFIG_INET=y
75112 -CONFIG_IP_MULTICAST=y
75113 -# CONFIG_IP_ADVANCED_ROUTER is not set
75114 -CONFIG_IP_FIB_HASH=y
75115 -CONFIG_IP_PNP=y
75116 -CONFIG_IP_PNP_DHCP=y
75117 -CONFIG_IP_PNP_BOOTP=y
75118 -# CONFIG_IP_PNP_RARP is not set
75119 -# CONFIG_NET_IPIP is not set
75120 -# CONFIG_NET_IPGRE is not set
75121 -# CONFIG_IP_MROUTE is not set
75122 -# CONFIG_ARPD is not set
75123 -CONFIG_SYN_COOKIES=y
75124 -# CONFIG_INET_AH is not set
75125 -# CONFIG_INET_ESP is not set
75126 -# CONFIG_INET_IPCOMP is not set
75127 -# CONFIG_INET_XFRM_TUNNEL is not set
75128 -# CONFIG_INET_TUNNEL is not set
75129 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
75130 -CONFIG_INET_XFRM_MODE_TUNNEL=y
75131 -CONFIG_INET_XFRM_MODE_BEET=y
75132 -# CONFIG_INET_LRO is not set
75133 -CONFIG_INET_DIAG=y
75134 -CONFIG_INET_TCP_DIAG=y
75135 -# CONFIG_TCP_CONG_ADVANCED is not set
75136 -CONFIG_TCP_CONG_CUBIC=y
75137 -CONFIG_DEFAULT_TCP_CONG="cubic"
75138 -# CONFIG_TCP_MD5SIG is not set
75139 -# CONFIG_IPV6 is not set
75140 -# CONFIG_INET6_XFRM_TUNNEL is not set
75141 -# CONFIG_INET6_TUNNEL is not set
75142 -# CONFIG_NETWORK_SECMARK is not set
75143 -# CONFIG_NETFILTER is not set
75144 -# CONFIG_IP_DCCP is not set
75145 -# CONFIG_IP_SCTP is not set
75146 -# CONFIG_TIPC is not set
75147 -# CONFIG_ATM is not set
75148 -# CONFIG_BRIDGE is not set
75149 -# CONFIG_VLAN_8021Q is not set
75150 -# CONFIG_DECNET is not set
75151 -# CONFIG_LLC2 is not set
75152 -# CONFIG_IPX is not set
75153 -# CONFIG_ATALK is not set
75154 -# CONFIG_X25 is not set
75155 -# CONFIG_LAPB is not set
75156 -# CONFIG_ECONET is not set
75157 -# CONFIG_WAN_ROUTER is not set
75158 -# CONFIG_NET_SCHED is not set
75159 -
75160 -#
75161 -# Network testing
75162 -#
75163 -# CONFIG_NET_PKTGEN is not set
75164 -# CONFIG_HAMRADIO is not set
75165 -# CONFIG_CAN is not set
75166 -# CONFIG_IRDA is not set
75167 -# CONFIG_BT is not set
75168 -# CONFIG_AF_RXRPC is not set
75169 -
75170 -#
75171 -# Wireless
75172 -#
75173 -# CONFIG_CFG80211 is not set
75174 -# CONFIG_WIRELESS_EXT is not set
75175 -# CONFIG_MAC80211 is not set
75176 -# CONFIG_IEEE80211 is not set
75177 -# CONFIG_RFKILL is not set
75178 -# CONFIG_NET_9P is not set
75179 -
75180 -#
75181 -# Device Drivers
75182 -#
75183 -
75184 -#
75185 -# Generic Driver Options
75186 -#
75187 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
75188 -CONFIG_STANDALONE=y
75189 -CONFIG_PREVENT_FIRMWARE_BUILD=y
75190 -# CONFIG_FW_LOADER is not set
75191 -# CONFIG_SYS_HYPERVISOR is not set
75192 -# CONFIG_CONNECTOR is not set
75193 -# CONFIG_MTD is not set
75194 -CONFIG_OF_DEVICE=y
75195 -# CONFIG_PARPORT is not set
75196 -CONFIG_BLK_DEV=y
75197 -# CONFIG_BLK_DEV_FD is not set
75198 -# CONFIG_BLK_DEV_COW_COMMON is not set
75199 -CONFIG_BLK_DEV_LOOP=y
75200 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
75201 -# CONFIG_BLK_DEV_NBD is not set
75202 -CONFIG_BLK_DEV_RAM=y
75203 -CONFIG_BLK_DEV_RAM_COUNT=16
75204 -CONFIG_BLK_DEV_RAM_SIZE=32768
75205 -# CONFIG_BLK_DEV_XIP is not set
75206 -# CONFIG_CDROM_PKTCDVD is not set
75207 -# CONFIG_ATA_OVER_ETH is not set
75208 -CONFIG_MISC_DEVICES=y
75209 -# CONFIG_EEPROM_93CX6 is not set
75210 -# CONFIG_ENCLOSURE_SERVICES is not set
75211 -CONFIG_HAVE_IDE=y
75212 -# CONFIG_IDE is not set
75213 -
75214 -#
75215 -# SCSI device support
75216 -#
75217 -# CONFIG_RAID_ATTRS is not set
75218 -# CONFIG_SCSI is not set
75219 -# CONFIG_SCSI_DMA is not set
75220 -# CONFIG_SCSI_NETLINK is not set
75221 -# CONFIG_ATA is not set
75222 -# CONFIG_MD is not set
75223 -# CONFIG_MACINTOSH_DRIVERS is not set
75224 -CONFIG_NETDEVICES=y
75225 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
75226 -# CONFIG_DUMMY is not set
75227 -# CONFIG_BONDING is not set
75228 -# CONFIG_MACVLAN is not set
75229 -# CONFIG_EQUALIZER is not set
75230 -# CONFIG_TUN is not set
75231 -# CONFIG_VETH is not set
75232 -CONFIG_PHYLIB=y
75233 -
75234 -#
75235 -# MII PHY device drivers
75236 -#
75237 -# CONFIG_MARVELL_PHY is not set
75238 -# CONFIG_DAVICOM_PHY is not set
75239 -# CONFIG_QSEMI_PHY is not set
75240 -# CONFIG_LXT_PHY is not set
75241 -# CONFIG_CICADA_PHY is not set
75242 -# CONFIG_VITESSE_PHY is not set
75243 -# CONFIG_SMSC_PHY is not set
75244 -CONFIG_BROADCOM_PHY=y
75245 -# CONFIG_ICPLUS_PHY is not set
75246 -# CONFIG_REALTEK_PHY is not set
75247 -# CONFIG_FIXED_PHY is not set
75248 -# CONFIG_MDIO_BITBANG is not set
75249 -CONFIG_NET_ETHERNET=y
75250 -CONFIG_MII=y
75251 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
75252 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
75253 -# CONFIG_IBM_NEW_EMAC_TAH is not set
75254 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
75255 -# CONFIG_B44 is not set
75256 -CONFIG_NETDEV_1000=y
75257 -# CONFIG_E1000E_ENABLED is not set
75258 -CONFIG_GIANFAR=y
75259 -# CONFIG_GFAR_NAPI is not set
75260 -# CONFIG_NETDEV_10000 is not set
75261 -
75262 -#
75263 -# Wireless LAN
75264 -#
75265 -# CONFIG_WLAN_PRE80211 is not set
75266 -# CONFIG_WLAN_80211 is not set
75267 -# CONFIG_WAN is not set
75268 -# CONFIG_PPP is not set
75269 -# CONFIG_SLIP is not set
75270 -# CONFIG_NETCONSOLE is not set
75271 -# CONFIG_NETPOLL is not set
75272 -# CONFIG_NET_POLL_CONTROLLER is not set
75273 -# CONFIG_ISDN is not set
75274 -# CONFIG_PHONE is not set
75275 -
75276 -#
75277 -# Input device support
75278 -#
75279 -CONFIG_INPUT=y
75280 -# CONFIG_INPUT_FF_MEMLESS is not set
75281 -# CONFIG_INPUT_POLLDEV is not set
75282 -
75283 -#
75284 -# Userland interfaces
75285 -#
75286 -# CONFIG_INPUT_MOUSEDEV is not set
75287 -# CONFIG_INPUT_JOYDEV is not set
75288 -# CONFIG_INPUT_EVDEV is not set
75289 -# CONFIG_INPUT_EVBUG is not set
75290 -
75291 -#
75292 -# Input Device Drivers
75293 -#
75294 -# CONFIG_INPUT_KEYBOARD is not set
75295 -# CONFIG_INPUT_MOUSE is not set
75296 -# CONFIG_INPUT_JOYSTICK is not set
75297 -# CONFIG_INPUT_TABLET is not set
75298 -# CONFIG_INPUT_TOUCHSCREEN is not set
75299 -# CONFIG_INPUT_MISC is not set
75300 -
75301 -#
75302 -# Hardware I/O ports
75303 -#
75304 -# CONFIG_SERIO is not set
75305 -# CONFIG_GAMEPORT is not set
75306 -
75307 -#
75308 -# Character devices
75309 -#
75310 -# CONFIG_VT is not set
75311 -# CONFIG_SERIAL_NONSTANDARD is not set
75312 -
75313 -#
75314 -# Serial drivers
75315 -#
75316 -CONFIG_SERIAL_8250=y
75317 -CONFIG_SERIAL_8250_CONSOLE=y
75318 -CONFIG_SERIAL_8250_NR_UARTS=4
75319 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
75320 -# CONFIG_SERIAL_8250_EXTENDED is not set
75321 -
75322 -#
75323 -# Non-8250 serial port support
75324 -#
75325 -# CONFIG_SERIAL_UARTLITE is not set
75326 -CONFIG_SERIAL_CORE=y
75327 -CONFIG_SERIAL_CORE_CONSOLE=y
75328 -# CONFIG_SERIAL_OF_PLATFORM is not set
75329 -CONFIG_UNIX98_PTYS=y
75330 -CONFIG_LEGACY_PTYS=y
75331 -CONFIG_LEGACY_PTY_COUNT=256
75332 -# CONFIG_IPMI_HANDLER is not set
75333 -# CONFIG_HW_RANDOM is not set
75334 -# CONFIG_NVRAM is not set
75335 -CONFIG_GEN_RTC=y
75336 -# CONFIG_GEN_RTC_X is not set
75337 -# CONFIG_R3964 is not set
75338 -# CONFIG_RAW_DRIVER is not set
75339 -# CONFIG_TCG_TPM is not set
75340 -CONFIG_I2C=y
75341 -CONFIG_I2C_BOARDINFO=y
75342 -CONFIG_I2C_CHARDEV=y
75343 -
75344 -#
75345 -# I2C Algorithms
75346 -#
75347 -# CONFIG_I2C_ALGOBIT is not set
75348 -# CONFIG_I2C_ALGOPCF is not set
75349 -# CONFIG_I2C_ALGOPCA is not set
75350 -
75351 -#
75352 -# I2C Hardware Bus support
75353 -#
75354 -CONFIG_I2C_MPC=y
75355 -# CONFIG_I2C_OCORES is not set
75356 -# CONFIG_I2C_PARPORT_LIGHT is not set
75357 -# CONFIG_I2C_SIMTEC is not set
75358 -# CONFIG_I2C_TAOS_EVM is not set
75359 -# CONFIG_I2C_STUB is not set
75360 -
75361 -#
75362 -# Miscellaneous I2C Chip support
75363 -#
75364 -# CONFIG_DS1682 is not set
75365 -# CONFIG_SENSORS_EEPROM is not set
75366 -# CONFIG_SENSORS_PCF8574 is not set
75367 -# CONFIG_PCF8575 is not set
75368 -# CONFIG_SENSORS_PCF8591 is not set
75369 -# CONFIG_TPS65010 is not set
75370 -# CONFIG_SENSORS_MAX6875 is not set
75371 -# CONFIG_SENSORS_TSL2550 is not set
75372 -# CONFIG_I2C_DEBUG_CORE is not set
75373 -# CONFIG_I2C_DEBUG_ALGO is not set
75374 -# CONFIG_I2C_DEBUG_BUS is not set
75375 -# CONFIG_I2C_DEBUG_CHIP is not set
75376 -
75377 -#
75378 -# SPI support
75379 -#
75380 -# CONFIG_SPI is not set
75381 -# CONFIG_SPI_MASTER is not set
75382 -# CONFIG_W1 is not set
75383 -# CONFIG_POWER_SUPPLY is not set
75384 -CONFIG_HWMON=y
75385 -# CONFIG_HWMON_VID is not set
75386 -# CONFIG_SENSORS_AD7418 is not set
75387 -# CONFIG_SENSORS_ADM1021 is not set
75388 -# CONFIG_SENSORS_ADM1025 is not set
75389 -# CONFIG_SENSORS_ADM1026 is not set
75390 -# CONFIG_SENSORS_ADM1029 is not set
75391 -# CONFIG_SENSORS_ADM1031 is not set
75392 -# CONFIG_SENSORS_ADM9240 is not set
75393 -# CONFIG_SENSORS_ADT7470 is not set
75394 -# CONFIG_SENSORS_ADT7473 is not set
75395 -# CONFIG_SENSORS_ATXP1 is not set
75396 -# CONFIG_SENSORS_DS1621 is not set
75397 -# CONFIG_SENSORS_F71805F is not set
75398 -# CONFIG_SENSORS_F71882FG is not set
75399 -# CONFIG_SENSORS_F75375S is not set
75400 -# CONFIG_SENSORS_GL518SM is not set
75401 -# CONFIG_SENSORS_GL520SM is not set
75402 -# CONFIG_SENSORS_IT87 is not set
75403 -# CONFIG_SENSORS_LM63 is not set
75404 -# CONFIG_SENSORS_LM75 is not set
75405 -# CONFIG_SENSORS_LM77 is not set
75406 -# CONFIG_SENSORS_LM78 is not set
75407 -# CONFIG_SENSORS_LM80 is not set
75408 -# CONFIG_SENSORS_LM83 is not set
75409 -# CONFIG_SENSORS_LM85 is not set
75410 -# CONFIG_SENSORS_LM87 is not set
75411 -# CONFIG_SENSORS_LM90 is not set
75412 -# CONFIG_SENSORS_LM92 is not set
75413 -# CONFIG_SENSORS_LM93 is not set
75414 -# CONFIG_SENSORS_MAX1619 is not set
75415 -# CONFIG_SENSORS_MAX6650 is not set
75416 -# CONFIG_SENSORS_PC87360 is not set
75417 -# CONFIG_SENSORS_PC87427 is not set
75418 -# CONFIG_SENSORS_DME1737 is not set
75419 -# CONFIG_SENSORS_SMSC47M1 is not set
75420 -# CONFIG_SENSORS_SMSC47M192 is not set
75421 -# CONFIG_SENSORS_SMSC47B397 is not set
75422 -# CONFIG_SENSORS_ADS7828 is not set
75423 -# CONFIG_SENSORS_THMC50 is not set
75424 -# CONFIG_SENSORS_VT1211 is not set
75425 -# CONFIG_SENSORS_W83781D is not set
75426 -# CONFIG_SENSORS_W83791D is not set
75427 -# CONFIG_SENSORS_W83792D is not set
75428 -# CONFIG_SENSORS_W83793 is not set
75429 -# CONFIG_SENSORS_W83L785TS is not set
75430 -# CONFIG_SENSORS_W83L786NG is not set
75431 -# CONFIG_SENSORS_W83627HF is not set
75432 -# CONFIG_SENSORS_W83627EHF is not set
75433 -# CONFIG_HWMON_DEBUG_CHIP is not set
75434 -# CONFIG_THERMAL is not set
75435 -CONFIG_WATCHDOG=y
75436 -# CONFIG_WATCHDOG_NOWAYOUT is not set
75437 -
75438 -#
75439 -# Watchdog Device Drivers
75440 -#
75441 -# CONFIG_SOFT_WATCHDOG is not set
75442 -CONFIG_83xx_WDT=y
75443 -
75444 -#
75445 -# Sonics Silicon Backplane
75446 -#
75447 -CONFIG_SSB_POSSIBLE=y
75448 -# CONFIG_SSB is not set
75449 -
75450 -#
75451 -# Multifunction device drivers
75452 -#
75453 -# CONFIG_MFD_SM501 is not set
75454 -
75455 -#
75456 -# Multimedia devices
75457 -#
75458 -# CONFIG_VIDEO_DEV is not set
75459 -# CONFIG_DVB_CORE is not set
75460 -# CONFIG_DAB is not set
75461 -
75462 -#
75463 -# Graphics support
75464 -#
75465 -# CONFIG_VGASTATE is not set
75466 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
75467 -# CONFIG_FB is not set
75468 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
75469 -
75470 -#
75471 -# Display device support
75472 -#
75473 -# CONFIG_DISPLAY_SUPPORT is not set
75474 -
75475 -#
75476 -# Sound
75477 -#
75478 -# CONFIG_SOUND is not set
75479 -CONFIG_HID_SUPPORT=y
75480 -CONFIG_HID=y
75481 -# CONFIG_HID_DEBUG is not set
75482 -# CONFIG_HIDRAW is not set
75483 -# CONFIG_USB_SUPPORT is not set
75484 -# CONFIG_MMC is not set
75485 -# CONFIG_MEMSTICK is not set
75486 -# CONFIG_NEW_LEDS is not set
75487 -# CONFIG_EDAC is not set
75488 -# CONFIG_RTC_CLASS is not set
75489 -# CONFIG_DMADEVICES is not set
75490 -
75491 -#
75492 -# Userspace I/O
75493 -#
75494 -# CONFIG_UIO is not set
75495 -
75496 -#
75497 -# File systems
75498 -#
75499 -# CONFIG_EXT2_FS is not set
75500 -# CONFIG_EXT3_FS is not set
75501 -# CONFIG_EXT4DEV_FS is not set
75502 -# CONFIG_REISERFS_FS is not set
75503 -# CONFIG_JFS_FS is not set
75504 -# CONFIG_FS_POSIX_ACL is not set
75505 -# CONFIG_XFS_FS is not set
75506 -# CONFIG_GFS2_FS is not set
75507 -# CONFIG_OCFS2_FS is not set
75508 -CONFIG_DNOTIFY=y
75509 -CONFIG_INOTIFY=y
75510 -CONFIG_INOTIFY_USER=y
75511 -# CONFIG_QUOTA is not set
75512 -# CONFIG_AUTOFS_FS is not set
75513 -# CONFIG_AUTOFS4_FS is not set
75514 -# CONFIG_FUSE_FS is not set
75515 -
75516 -#
75517 -# CD-ROM/DVD Filesystems
75518 -#
75519 -# CONFIG_ISO9660_FS is not set
75520 -# CONFIG_UDF_FS is not set
75521 -
75522 -#
75523 -# DOS/FAT/NT Filesystems
75524 -#
75525 -# CONFIG_MSDOS_FS is not set
75526 -# CONFIG_VFAT_FS is not set
75527 -# CONFIG_NTFS_FS is not set
75528 -
75529 -#
75530 -# Pseudo filesystems
75531 -#
75532 -CONFIG_PROC_FS=y
75533 -CONFIG_PROC_KCORE=y
75534 -CONFIG_PROC_SYSCTL=y
75535 -CONFIG_SYSFS=y
75536 -CONFIG_TMPFS=y
75537 -# CONFIG_TMPFS_POSIX_ACL is not set
75538 -# CONFIG_HUGETLB_PAGE is not set
75539 -# CONFIG_CONFIGFS_FS is not set
75540 -
75541 -#
75542 -# Miscellaneous filesystems
75543 -#
75544 -# CONFIG_ADFS_FS is not set
75545 -# CONFIG_AFFS_FS is not set
75546 -# CONFIG_HFS_FS is not set
75547 -# CONFIG_HFSPLUS_FS is not set
75548 -# CONFIG_BEFS_FS is not set
75549 -# CONFIG_BFS_FS is not set
75550 -# CONFIG_EFS_FS is not set
75551 -# CONFIG_CRAMFS is not set
75552 -# CONFIG_VXFS_FS is not set
75553 -# CONFIG_MINIX_FS is not set
75554 -# CONFIG_HPFS_FS is not set
75555 -# CONFIG_QNX4FS_FS is not set
75556 -# CONFIG_ROMFS_FS is not set
75557 -# CONFIG_SYSV_FS is not set
75558 -# CONFIG_UFS_FS is not set
75559 -CONFIG_NETWORK_FILESYSTEMS=y
75560 -CONFIG_NFS_FS=y
75561 -CONFIG_NFS_V3=y
75562 -# CONFIG_NFS_V3_ACL is not set
75563 -CONFIG_NFS_V4=y
75564 -# CONFIG_NFS_DIRECTIO is not set
75565 -# CONFIG_NFSD is not set
75566 -CONFIG_ROOT_NFS=y
75567 -CONFIG_LOCKD=y
75568 -CONFIG_LOCKD_V4=y
75569 -CONFIG_NFS_COMMON=y
75570 -CONFIG_SUNRPC=y
75571 -CONFIG_SUNRPC_GSS=y
75572 -# CONFIG_SUNRPC_BIND34 is not set
75573 -CONFIG_RPCSEC_GSS_KRB5=y
75574 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
75575 -# CONFIG_SMB_FS is not set
75576 -# CONFIG_CIFS is not set
75577 -# CONFIG_NCP_FS is not set
75578 -# CONFIG_CODA_FS is not set
75579 -# CONFIG_AFS_FS is not set
75580 -
75581 -#
75582 -# Partition Types
75583 -#
75584 -# CONFIG_PARTITION_ADVANCED is not set
75585 -CONFIG_MSDOS_PARTITION=y
75586 -# CONFIG_NLS is not set
75587 -# CONFIG_DLM is not set
75588 -
75589 -#
75590 -# Library routines
75591 -#
75592 -CONFIG_BITREVERSE=y
75593 -# CONFIG_CRC_CCITT is not set
75594 -# CONFIG_CRC16 is not set
75595 -# CONFIG_CRC_ITU_T is not set
75596 -CONFIG_CRC32=y
75597 -# CONFIG_CRC7 is not set
75598 -# CONFIG_LIBCRC32C is not set
75599 -CONFIG_PLIST=y
75600 -CONFIG_HAS_IOMEM=y
75601 -CONFIG_HAS_IOPORT=y
75602 -CONFIG_HAS_DMA=y
75603 -
75604 -#
75605 -# Kernel hacking
75606 -#
75607 -# CONFIG_PRINTK_TIME is not set
75608 -CONFIG_ENABLE_WARN_DEPRECATED=y
75609 -CONFIG_ENABLE_MUST_CHECK=y
75610 -# CONFIG_MAGIC_SYSRQ is not set
75611 -# CONFIG_UNUSED_SYMBOLS is not set
75612 -# CONFIG_DEBUG_FS is not set
75613 -# CONFIG_HEADERS_CHECK is not set
75614 -# CONFIG_DEBUG_KERNEL is not set
75615 -# CONFIG_DEBUG_BUGVERBOSE is not set
75616 -# CONFIG_SAMPLES is not set
75617 -# CONFIG_PPC_EARLY_DEBUG is not set
75618 -
75619 -#
75620 -# Security options
75621 -#
75622 -# CONFIG_KEYS is not set
75623 -# CONFIG_SECURITY is not set
75624 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
75625 -CONFIG_CRYPTO=y
75626 -CONFIG_CRYPTO_ALGAPI=y
75627 -CONFIG_CRYPTO_BLKCIPHER=y
75628 -# CONFIG_CRYPTO_SEQIV is not set
75629 -CONFIG_CRYPTO_MANAGER=y
75630 -# CONFIG_CRYPTO_HMAC is not set
75631 -# CONFIG_CRYPTO_XCBC is not set
75632 -# CONFIG_CRYPTO_NULL is not set
75633 -# CONFIG_CRYPTO_MD4 is not set
75634 -CONFIG_CRYPTO_MD5=y
75635 -# CONFIG_CRYPTO_SHA1 is not set
75636 -# CONFIG_CRYPTO_SHA256 is not set
75637 -# CONFIG_CRYPTO_SHA512 is not set
75638 -# CONFIG_CRYPTO_WP512 is not set
75639 -# CONFIG_CRYPTO_TGR192 is not set
75640 -# CONFIG_CRYPTO_GF128MUL is not set
75641 -CONFIG_CRYPTO_ECB=m
75642 -CONFIG_CRYPTO_CBC=y
75643 -CONFIG_CRYPTO_PCBC=m
75644 -# CONFIG_CRYPTO_LRW is not set
75645 -# CONFIG_CRYPTO_XTS is not set
75646 -# CONFIG_CRYPTO_CTR is not set
75647 -# CONFIG_CRYPTO_GCM is not set
75648 -# CONFIG_CRYPTO_CCM is not set
75649 -# CONFIG_CRYPTO_CRYPTD is not set
75650 -CONFIG_CRYPTO_DES=y
75651 -# CONFIG_CRYPTO_FCRYPT is not set
75652 -# CONFIG_CRYPTO_BLOWFISH is not set
75653 -# CONFIG_CRYPTO_TWOFISH is not set
75654 -# CONFIG_CRYPTO_SERPENT is not set
75655 -# CONFIG_CRYPTO_AES is not set
75656 -# CONFIG_CRYPTO_CAST5 is not set
75657 -# CONFIG_CRYPTO_CAST6 is not set
75658 -# CONFIG_CRYPTO_TEA is not set
75659 -# CONFIG_CRYPTO_ARC4 is not set
75660 -# CONFIG_CRYPTO_KHAZAD is not set
75661 -# CONFIG_CRYPTO_ANUBIS is not set
75662 -# CONFIG_CRYPTO_SEED is not set
75663 -# CONFIG_CRYPTO_SALSA20 is not set
75664 -# CONFIG_CRYPTO_DEFLATE is not set
75665 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
75666 -# CONFIG_CRYPTO_CRC32C is not set
75667 -# CONFIG_CRYPTO_CAMELLIA is not set
75668 -# CONFIG_CRYPTO_TEST is not set
75669 -# CONFIG_CRYPTO_AUTHENC is not set
75670 -# CONFIG_CRYPTO_LZO is not set
75671 -# CONFIG_CRYPTO_HW is not set
75672 -# CONFIG_PPC_CLOCK is not set
75673 Index: linux-2.6.25.4/arch/powerpc/configs/sbc8548_defconfig
75674 ===================================================================
75675 --- linux-2.6.25.4.orig/arch/powerpc/configs/sbc8548_defconfig
75676 +++ /dev/null
75677 @@ -1,812 +0,0 @@
75678 -#
75679 -# Automatically generated make config: don't edit
75680 -# Linux kernel version: 2.6.25-rc6
75681 -# Mon Mar 24 08:48:39 2008
75682 -#
75683 -# CONFIG_PPC64 is not set
75684 -
75685 -#
75686 -# Processor support
75687 -#
75688 -# CONFIG_6xx is not set
75689 -CONFIG_PPC_85xx=y
75690 -# CONFIG_PPC_8xx is not set
75691 -# CONFIG_40x is not set
75692 -# CONFIG_44x is not set
75693 -# CONFIG_E200 is not set
75694 -CONFIG_E500=y
75695 -CONFIG_BOOKE=y
75696 -CONFIG_FSL_BOOKE=y
75697 -CONFIG_FSL_EMB_PERFMON=y
75698 -# CONFIG_PHYS_64BIT is not set
75699 -CONFIG_SPE=y
75700 -# CONFIG_PPC_MM_SLICES is not set
75701 -CONFIG_PPC32=y
75702 -CONFIG_WORD_SIZE=32
75703 -CONFIG_PPC_MERGE=y
75704 -CONFIG_MMU=y
75705 -CONFIG_GENERIC_CMOS_UPDATE=y
75706 -CONFIG_GENERIC_TIME=y
75707 -CONFIG_GENERIC_TIME_VSYSCALL=y
75708 -CONFIG_GENERIC_CLOCKEVENTS=y
75709 -CONFIG_GENERIC_HARDIRQS=y
75710 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
75711 -CONFIG_IRQ_PER_CPU=y
75712 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
75713 -CONFIG_ARCH_HAS_ILOG2_U32=y
75714 -CONFIG_GENERIC_HWEIGHT=y
75715 -CONFIG_GENERIC_CALIBRATE_DELAY=y
75716 -CONFIG_GENERIC_FIND_NEXT_BIT=y
75717 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
75718 -CONFIG_PPC=y
75719 -CONFIG_EARLY_PRINTK=y
75720 -CONFIG_GENERIC_NVRAM=y
75721 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
75722 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
75723 -CONFIG_PPC_OF=y
75724 -CONFIG_OF=y
75725 -CONFIG_PPC_UDBG_16550=y
75726 -# CONFIG_GENERIC_TBSYNC is not set
75727 -CONFIG_AUDIT_ARCH=y
75728 -CONFIG_GENERIC_BUG=y
75729 -CONFIG_DEFAULT_UIMAGE=y
75730 -# CONFIG_PPC_DCR_NATIVE is not set
75731 -# CONFIG_PPC_DCR_MMIO is not set
75732 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
75733 -
75734 -#
75735 -# General setup
75736 -#
75737 -CONFIG_EXPERIMENTAL=y
75738 -CONFIG_BROKEN_ON_SMP=y
75739 -CONFIG_INIT_ENV_ARG_LIMIT=32
75740 -CONFIG_LOCALVERSION=""
75741 -CONFIG_LOCALVERSION_AUTO=y
75742 -CONFIG_SWAP=y
75743 -CONFIG_SYSVIPC=y
75744 -CONFIG_SYSVIPC_SYSCTL=y
75745 -# CONFIG_POSIX_MQUEUE is not set
75746 -# CONFIG_BSD_PROCESS_ACCT is not set
75747 -# CONFIG_TASKSTATS is not set
75748 -# CONFIG_AUDIT is not set
75749 -# CONFIG_IKCONFIG is not set
75750 -CONFIG_LOG_BUF_SHIFT=14
75751 -# CONFIG_CGROUPS is not set
75752 -CONFIG_GROUP_SCHED=y
75753 -CONFIG_FAIR_GROUP_SCHED=y
75754 -# CONFIG_RT_GROUP_SCHED is not set
75755 -CONFIG_USER_SCHED=y
75756 -# CONFIG_CGROUP_SCHED is not set
75757 -CONFIG_SYSFS_DEPRECATED=y
75758 -CONFIG_SYSFS_DEPRECATED_V2=y
75759 -# CONFIG_RELAY is not set
75760 -# CONFIG_NAMESPACES is not set
75761 -CONFIG_BLK_DEV_INITRD=y
75762 -CONFIG_INITRAMFS_SOURCE=""
75763 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
75764 -CONFIG_SYSCTL=y
75765 -CONFIG_EMBEDDED=y
75766 -CONFIG_SYSCTL_SYSCALL=y
75767 -CONFIG_KALLSYMS=y
75768 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
75769 -CONFIG_HOTPLUG=y
75770 -CONFIG_PRINTK=y
75771 -CONFIG_BUG=y
75772 -CONFIG_ELF_CORE=y
75773 -CONFIG_COMPAT_BRK=y
75774 -CONFIG_BASE_FULL=y
75775 -CONFIG_FUTEX=y
75776 -CONFIG_ANON_INODES=y
75777 -CONFIG_EPOLL=y
75778 -CONFIG_SIGNALFD=y
75779 -CONFIG_TIMERFD=y
75780 -CONFIG_EVENTFD=y
75781 -CONFIG_SHMEM=y
75782 -CONFIG_VM_EVENT_COUNTERS=y
75783 -CONFIG_SLAB=y
75784 -# CONFIG_SLUB is not set
75785 -# CONFIG_SLOB is not set
75786 -# CONFIG_PROFILING is not set
75787 -# CONFIG_MARKERS is not set
75788 -CONFIG_HAVE_OPROFILE=y
75789 -CONFIG_HAVE_KPROBES=y
75790 -CONFIG_HAVE_KRETPROBES=y
75791 -CONFIG_PROC_PAGE_MONITOR=y
75792 -CONFIG_SLABINFO=y
75793 -CONFIG_RT_MUTEXES=y
75794 -# CONFIG_TINY_SHMEM is not set
75795 -CONFIG_BASE_SMALL=0
75796 -# CONFIG_MODULES is not set
75797 -CONFIG_BLOCK=y
75798 -# CONFIG_LBD is not set
75799 -# CONFIG_BLK_DEV_IO_TRACE is not set
75800 -# CONFIG_LSF is not set
75801 -# CONFIG_BLK_DEV_BSG is not set
75802 -
75803 -#
75804 -# IO Schedulers
75805 -#
75806 -CONFIG_IOSCHED_NOOP=y
75807 -CONFIG_IOSCHED_AS=y
75808 -CONFIG_IOSCHED_DEADLINE=y
75809 -CONFIG_IOSCHED_CFQ=y
75810 -CONFIG_DEFAULT_AS=y
75811 -# CONFIG_DEFAULT_DEADLINE is not set
75812 -# CONFIG_DEFAULT_CFQ is not set
75813 -# CONFIG_DEFAULT_NOOP is not set
75814 -CONFIG_DEFAULT_IOSCHED="anticipatory"
75815 -CONFIG_CLASSIC_RCU=y
75816 -
75817 -#
75818 -# Platform support
75819 -#
75820 -# CONFIG_PPC_MPC512x is not set
75821 -# CONFIG_PPC_MPC5121 is not set
75822 -# CONFIG_PPC_CELL is not set
75823 -# CONFIG_PPC_CELL_NATIVE is not set
75824 -# CONFIG_PQ2ADS is not set
75825 -CONFIG_MPC85xx=y
75826 -# CONFIG_MPC8540_ADS is not set
75827 -# CONFIG_MPC8560_ADS is not set
75828 -# CONFIG_MPC85xx_CDS is not set
75829 -# CONFIG_MPC85xx_MDS is not set
75830 -# CONFIG_MPC85xx_DS is not set
75831 -# CONFIG_STX_GP3 is not set
75832 -# CONFIG_TQM8540 is not set
75833 -# CONFIG_TQM8541 is not set
75834 -# CONFIG_TQM8555 is not set
75835 -# CONFIG_TQM8560 is not set
75836 -CONFIG_SBC8548=y
75837 -# CONFIG_SBC8560 is not set
75838 -# CONFIG_IPIC is not set
75839 -CONFIG_MPIC=y
75840 -# CONFIG_MPIC_WEIRD is not set
75841 -# CONFIG_PPC_I8259 is not set
75842 -# CONFIG_PPC_RTAS is not set
75843 -# CONFIG_MMIO_NVRAM is not set
75844 -# CONFIG_PPC_MPC106 is not set
75845 -# CONFIG_PPC_970_NAP is not set
75846 -# CONFIG_PPC_INDIRECT_IO is not set
75847 -# CONFIG_GENERIC_IOMAP is not set
75848 -# CONFIG_CPU_FREQ is not set
75849 -# CONFIG_CPM2 is not set
75850 -# CONFIG_FSL_ULI1575 is not set
75851 -
75852 -#
75853 -# Kernel options
75854 -#
75855 -# CONFIG_HIGHMEM is not set
75856 -# CONFIG_TICK_ONESHOT is not set
75857 -# CONFIG_NO_HZ is not set
75858 -# CONFIG_HIGH_RES_TIMERS is not set
75859 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
75860 -# CONFIG_HZ_100 is not set
75861 -CONFIG_HZ_250=y
75862 -# CONFIG_HZ_300 is not set
75863 -# CONFIG_HZ_1000 is not set
75864 -CONFIG_HZ=250
75865 -# CONFIG_SCHED_HRTICK is not set
75866 -CONFIG_PREEMPT_NONE=y
75867 -# CONFIG_PREEMPT_VOLUNTARY is not set
75868 -# CONFIG_PREEMPT is not set
75869 -CONFIG_BINFMT_ELF=y
75870 -CONFIG_BINFMT_MISC=y
75871 -CONFIG_MATH_EMULATION=y
75872 -# CONFIG_IOMMU_HELPER is not set
75873 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
75874 -CONFIG_ARCH_HAS_WALK_MEMORY=y
75875 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
75876 -CONFIG_ARCH_FLATMEM_ENABLE=y
75877 -CONFIG_ARCH_POPULATES_NODE_MAP=y
75878 -CONFIG_SELECT_MEMORY_MODEL=y
75879 -CONFIG_FLATMEM_MANUAL=y
75880 -# CONFIG_DISCONTIGMEM_MANUAL is not set
75881 -# CONFIG_SPARSEMEM_MANUAL is not set
75882 -CONFIG_FLATMEM=y
75883 -CONFIG_FLAT_NODE_MEM_MAP=y
75884 -# CONFIG_SPARSEMEM_STATIC is not set
75885 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
75886 -CONFIG_SPLIT_PTLOCK_CPUS=4
75887 -# CONFIG_RESOURCES_64BIT is not set
75888 -CONFIG_ZONE_DMA_FLAG=1
75889 -CONFIG_BOUNCE=y
75890 -CONFIG_VIRT_TO_BUS=y
75891 -CONFIG_PROC_DEVICETREE=y
75892 -# CONFIG_CMDLINE_BOOL is not set
75893 -# CONFIG_PM is not set
75894 -# CONFIG_SECCOMP is not set
75895 -CONFIG_ISA_DMA_API=y
75896 -
75897 -#
75898 -# Bus options
75899 -#
75900 -CONFIG_ZONE_DMA=y
75901 -CONFIG_PPC_INDIRECT_PCI=y
75902 -CONFIG_FSL_SOC=y
75903 -CONFIG_FSL_PCI=y
75904 -CONFIG_PCI=y
75905 -CONFIG_PCI_DOMAINS=y
75906 -CONFIG_PCI_SYSCALL=y
75907 -# CONFIG_PCIEPORTBUS is not set
75908 -CONFIG_ARCH_SUPPORTS_MSI=y
75909 -# CONFIG_PCI_MSI is not set
75910 -CONFIG_PCI_LEGACY=y
75911 -# CONFIG_PCCARD is not set
75912 -# CONFIG_HOTPLUG_PCI is not set
75913 -
75914 -#
75915 -# Advanced setup
75916 -#
75917 -# CONFIG_ADVANCED_OPTIONS is not set
75918 -
75919 -#
75920 -# Default settings for advanced configuration options are used
75921 -#
75922 -CONFIG_HIGHMEM_START=0xfe000000
75923 -CONFIG_LOWMEM_SIZE=0x30000000
75924 -CONFIG_KERNEL_START=0xc0000000
75925 -CONFIG_TASK_SIZE=0xc0000000
75926 -CONFIG_BOOT_LOAD=0x00800000
75927 -
75928 -#
75929 -# Networking
75930 -#
75931 -CONFIG_NET=y
75932 -
75933 -#
75934 -# Networking options
75935 -#
75936 -CONFIG_PACKET=y
75937 -# CONFIG_PACKET_MMAP is not set
75938 -CONFIG_UNIX=y
75939 -CONFIG_XFRM=y
75940 -CONFIG_XFRM_USER=y
75941 -# CONFIG_XFRM_SUB_POLICY is not set
75942 -# CONFIG_XFRM_MIGRATE is not set
75943 -# CONFIG_XFRM_STATISTICS is not set
75944 -# CONFIG_NET_KEY is not set
75945 -CONFIG_INET=y
75946 -CONFIG_IP_MULTICAST=y
75947 -# CONFIG_IP_ADVANCED_ROUTER is not set
75948 -CONFIG_IP_FIB_HASH=y
75949 -CONFIG_IP_PNP=y
75950 -CONFIG_IP_PNP_DHCP=y
75951 -CONFIG_IP_PNP_BOOTP=y
75952 -# CONFIG_IP_PNP_RARP is not set
75953 -# CONFIG_NET_IPIP is not set
75954 -# CONFIG_NET_IPGRE is not set
75955 -# CONFIG_IP_MROUTE is not set
75956 -# CONFIG_ARPD is not set
75957 -CONFIG_SYN_COOKIES=y
75958 -# CONFIG_INET_AH is not set
75959 -# CONFIG_INET_ESP is not set
75960 -# CONFIG_INET_IPCOMP is not set
75961 -# CONFIG_INET_XFRM_TUNNEL is not set
75962 -# CONFIG_INET_TUNNEL is not set
75963 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
75964 -CONFIG_INET_XFRM_MODE_TUNNEL=y
75965 -CONFIG_INET_XFRM_MODE_BEET=y
75966 -# CONFIG_INET_LRO is not set
75967 -CONFIG_INET_DIAG=y
75968 -CONFIG_INET_TCP_DIAG=y
75969 -# CONFIG_TCP_CONG_ADVANCED is not set
75970 -CONFIG_TCP_CONG_CUBIC=y
75971 -CONFIG_DEFAULT_TCP_CONG="cubic"
75972 -# CONFIG_TCP_MD5SIG is not set
75973 -# CONFIG_IPV6 is not set
75974 -# CONFIG_INET6_XFRM_TUNNEL is not set
75975 -# CONFIG_INET6_TUNNEL is not set
75976 -# CONFIG_NETWORK_SECMARK is not set
75977 -# CONFIG_NETFILTER is not set
75978 -# CONFIG_IP_DCCP is not set
75979 -# CONFIG_IP_SCTP is not set
75980 -# CONFIG_TIPC is not set
75981 -# CONFIG_ATM is not set
75982 -# CONFIG_BRIDGE is not set
75983 -# CONFIG_VLAN_8021Q is not set
75984 -# CONFIG_DECNET is not set
75985 -# CONFIG_LLC2 is not set
75986 -# CONFIG_IPX is not set
75987 -# CONFIG_ATALK is not set
75988 -# CONFIG_X25 is not set
75989 -# CONFIG_LAPB is not set
75990 -# CONFIG_ECONET is not set
75991 -# CONFIG_WAN_ROUTER is not set
75992 -# CONFIG_NET_SCHED is not set
75993 -
75994 -#
75995 -# Network testing
75996 -#
75997 -# CONFIG_NET_PKTGEN is not set
75998 -# CONFIG_HAMRADIO is not set
75999 -# CONFIG_CAN is not set
76000 -# CONFIG_IRDA is not set
76001 -# CONFIG_BT is not set
76002 -# CONFIG_AF_RXRPC is not set
76003 -
76004 -#
76005 -# Wireless
76006 -#
76007 -# CONFIG_CFG80211 is not set
76008 -# CONFIG_WIRELESS_EXT is not set
76009 -# CONFIG_MAC80211 is not set
76010 -# CONFIG_IEEE80211 is not set
76011 -# CONFIG_RFKILL is not set
76012 -# CONFIG_NET_9P is not set
76013 -
76014 -#
76015 -# Device Drivers
76016 -#
76017 -
76018 -#
76019 -# Generic Driver Options
76020 -#
76021 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
76022 -CONFIG_STANDALONE=y
76023 -CONFIG_PREVENT_FIRMWARE_BUILD=y
76024 -# CONFIG_FW_LOADER is not set
76025 -# CONFIG_SYS_HYPERVISOR is not set
76026 -# CONFIG_CONNECTOR is not set
76027 -# CONFIG_MTD is not set
76028 -CONFIG_OF_DEVICE=y
76029 -# CONFIG_PARPORT is not set
76030 -CONFIG_BLK_DEV=y
76031 -# CONFIG_BLK_DEV_FD is not set
76032 -# CONFIG_BLK_CPQ_DA is not set
76033 -# CONFIG_BLK_CPQ_CISS_DA is not set
76034 -# CONFIG_BLK_DEV_DAC960 is not set
76035 -# CONFIG_BLK_DEV_UMEM is not set
76036 -# CONFIG_BLK_DEV_COW_COMMON is not set
76037 -CONFIG_BLK_DEV_LOOP=y
76038 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
76039 -# CONFIG_BLK_DEV_NBD is not set
76040 -# CONFIG_BLK_DEV_SX8 is not set
76041 -CONFIG_BLK_DEV_RAM=y
76042 -CONFIG_BLK_DEV_RAM_COUNT=16
76043 -CONFIG_BLK_DEV_RAM_SIZE=4096
76044 -# CONFIG_BLK_DEV_XIP is not set
76045 -# CONFIG_CDROM_PKTCDVD is not set
76046 -# CONFIG_ATA_OVER_ETH is not set
76047 -CONFIG_MISC_DEVICES=y
76048 -# CONFIG_PHANTOM is not set
76049 -# CONFIG_EEPROM_93CX6 is not set
76050 -# CONFIG_SGI_IOC4 is not set
76051 -# CONFIG_TIFM_CORE is not set
76052 -# CONFIG_ENCLOSURE_SERVICES is not set
76053 -CONFIG_HAVE_IDE=y
76054 -# CONFIG_IDE is not set
76055 -
76056 -#
76057 -# SCSI device support
76058 -#
76059 -# CONFIG_RAID_ATTRS is not set
76060 -# CONFIG_SCSI is not set
76061 -# CONFIG_SCSI_DMA is not set
76062 -# CONFIG_SCSI_NETLINK is not set
76063 -# CONFIG_ATA is not set
76064 -# CONFIG_MD is not set
76065 -# CONFIG_FUSION is not set
76066 -
76067 -#
76068 -# IEEE 1394 (FireWire) support
76069 -#
76070 -# CONFIG_FIREWIRE is not set
76071 -# CONFIG_IEEE1394 is not set
76072 -# CONFIG_I2O is not set
76073 -# CONFIG_MACINTOSH_DRIVERS is not set
76074 -CONFIG_NETDEVICES=y
76075 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
76076 -# CONFIG_DUMMY is not set
76077 -# CONFIG_BONDING is not set
76078 -# CONFIG_MACVLAN is not set
76079 -# CONFIG_EQUALIZER is not set
76080 -# CONFIG_TUN is not set
76081 -# CONFIG_VETH is not set
76082 -# CONFIG_ARCNET is not set
76083 -CONFIG_PHYLIB=y
76084 -
76085 -#
76086 -# MII PHY device drivers
76087 -#
76088 -# CONFIG_MARVELL_PHY is not set
76089 -# CONFIG_DAVICOM_PHY is not set
76090 -# CONFIG_QSEMI_PHY is not set
76091 -# CONFIG_LXT_PHY is not set
76092 -# CONFIG_CICADA_PHY is not set
76093 -# CONFIG_VITESSE_PHY is not set
76094 -# CONFIG_SMSC_PHY is not set
76095 -CONFIG_BROADCOM_PHY=y
76096 -# CONFIG_ICPLUS_PHY is not set
76097 -# CONFIG_REALTEK_PHY is not set
76098 -# CONFIG_FIXED_PHY is not set
76099 -# CONFIG_MDIO_BITBANG is not set
76100 -CONFIG_NET_ETHERNET=y
76101 -CONFIG_MII=y
76102 -# CONFIG_HAPPYMEAL is not set
76103 -# CONFIG_SUNGEM is not set
76104 -# CONFIG_CASSINI is not set
76105 -# CONFIG_NET_VENDOR_3COM is not set
76106 -# CONFIG_NET_TULIP is not set
76107 -# CONFIG_HP100 is not set
76108 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
76109 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
76110 -# CONFIG_IBM_NEW_EMAC_TAH is not set
76111 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
76112 -# CONFIG_NET_PCI is not set
76113 -# CONFIG_B44 is not set
76114 -CONFIG_NETDEV_1000=y
76115 -# CONFIG_ACENIC is not set
76116 -# CONFIG_DL2K is not set
76117 -# CONFIG_E1000 is not set
76118 -# CONFIG_E1000E is not set
76119 -# CONFIG_E1000E_ENABLED is not set
76120 -# CONFIG_IP1000 is not set
76121 -# CONFIG_IGB is not set
76122 -# CONFIG_NS83820 is not set
76123 -# CONFIG_HAMACHI is not set
76124 -# CONFIG_YELLOWFIN is not set
76125 -# CONFIG_R8169 is not set
76126 -# CONFIG_SIS190 is not set
76127 -# CONFIG_SKGE is not set
76128 -# CONFIG_SKY2 is not set
76129 -# CONFIG_SK98LIN is not set
76130 -# CONFIG_VIA_VELOCITY is not set
76131 -# CONFIG_TIGON3 is not set
76132 -# CONFIG_BNX2 is not set
76133 -CONFIG_GIANFAR=y
76134 -CONFIG_GFAR_NAPI=y
76135 -# CONFIG_QLA3XXX is not set
76136 -# CONFIG_ATL1 is not set
76137 -CONFIG_NETDEV_10000=y
76138 -# CONFIG_CHELSIO_T1 is not set
76139 -# CONFIG_CHELSIO_T3 is not set
76140 -# CONFIG_IXGBE is not set
76141 -# CONFIG_IXGB is not set
76142 -# CONFIG_S2IO is not set
76143 -# CONFIG_MYRI10GE is not set
76144 -# CONFIG_NETXEN_NIC is not set
76145 -# CONFIG_NIU is not set
76146 -# CONFIG_MLX4_CORE is not set
76147 -# CONFIG_TEHUTI is not set
76148 -# CONFIG_BNX2X is not set
76149 -# CONFIG_TR is not set
76150 -
76151 -#
76152 -# Wireless LAN
76153 -#
76154 -# CONFIG_WLAN_PRE80211 is not set
76155 -# CONFIG_WLAN_80211 is not set
76156 -# CONFIG_WAN is not set
76157 -# CONFIG_FDDI is not set
76158 -# CONFIG_HIPPI is not set
76159 -# CONFIG_PPP is not set
76160 -# CONFIG_SLIP is not set
76161 -# CONFIG_NETCONSOLE is not set
76162 -# CONFIG_NETPOLL is not set
76163 -# CONFIG_NET_POLL_CONTROLLER is not set
76164 -# CONFIG_ISDN is not set
76165 -# CONFIG_PHONE is not set
76166 -
76167 -#
76168 -# Input device support
76169 -#
76170 -CONFIG_INPUT=y
76171 -# CONFIG_INPUT_FF_MEMLESS is not set
76172 -# CONFIG_INPUT_POLLDEV is not set
76173 -
76174 -#
76175 -# Userland interfaces
76176 -#
76177 -# CONFIG_INPUT_MOUSEDEV is not set
76178 -# CONFIG_INPUT_JOYDEV is not set
76179 -# CONFIG_INPUT_EVDEV is not set
76180 -# CONFIG_INPUT_EVBUG is not set
76181 -
76182 -#
76183 -# Input Device Drivers
76184 -#
76185 -# CONFIG_INPUT_KEYBOARD is not set
76186 -# CONFIG_INPUT_MOUSE is not set
76187 -# CONFIG_INPUT_JOYSTICK is not set
76188 -# CONFIG_INPUT_TABLET is not set
76189 -# CONFIG_INPUT_TOUCHSCREEN is not set
76190 -# CONFIG_INPUT_MISC is not set
76191 -
76192 -#
76193 -# Hardware I/O ports
76194 -#
76195 -# CONFIG_SERIO is not set
76196 -# CONFIG_GAMEPORT is not set
76197 -
76198 -#
76199 -# Character devices
76200 -#
76201 -# CONFIG_VT is not set
76202 -# CONFIG_SERIAL_NONSTANDARD is not set
76203 -# CONFIG_NOZOMI is not set
76204 -
76205 -#
76206 -# Serial drivers
76207 -#
76208 -CONFIG_SERIAL_8250=y
76209 -CONFIG_SERIAL_8250_CONSOLE=y
76210 -CONFIG_SERIAL_8250_PCI=y
76211 -CONFIG_SERIAL_8250_NR_UARTS=4
76212 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
76213 -# CONFIG_SERIAL_8250_EXTENDED is not set
76214 -CONFIG_SERIAL_8250_SHARE_IRQ=y
76215 -
76216 -#
76217 -# Non-8250 serial port support
76218 -#
76219 -# CONFIG_SERIAL_UARTLITE is not set
76220 -CONFIG_SERIAL_CORE=y
76221 -CONFIG_SERIAL_CORE_CONSOLE=y
76222 -# CONFIG_SERIAL_JSM is not set
76223 -# CONFIG_SERIAL_OF_PLATFORM is not set
76224 -CONFIG_UNIX98_PTYS=y
76225 -CONFIG_LEGACY_PTYS=y
76226 -CONFIG_LEGACY_PTY_COUNT=256
76227 -# CONFIG_IPMI_HANDLER is not set
76228 -# CONFIG_HW_RANDOM is not set
76229 -# CONFIG_NVRAM is not set
76230 -CONFIG_GEN_RTC=y
76231 -# CONFIG_GEN_RTC_X is not set
76232 -# CONFIG_R3964 is not set
76233 -# CONFIG_APPLICOM is not set
76234 -# CONFIG_RAW_DRIVER is not set
76235 -# CONFIG_TCG_TPM is not set
76236 -CONFIG_DEVPORT=y
76237 -# CONFIG_I2C is not set
76238 -
76239 -#
76240 -# SPI support
76241 -#
76242 -# CONFIG_SPI is not set
76243 -# CONFIG_SPI_MASTER is not set
76244 -# CONFIG_W1 is not set
76245 -# CONFIG_POWER_SUPPLY is not set
76246 -CONFIG_HWMON=y
76247 -# CONFIG_HWMON_VID is not set
76248 -# CONFIG_SENSORS_I5K_AMB is not set
76249 -# CONFIG_SENSORS_F71805F is not set
76250 -# CONFIG_SENSORS_F71882FG is not set
76251 -# CONFIG_SENSORS_IT87 is not set
76252 -# CONFIG_SENSORS_PC87360 is not set
76253 -# CONFIG_SENSORS_PC87427 is not set
76254 -# CONFIG_SENSORS_SIS5595 is not set
76255 -# CONFIG_SENSORS_SMSC47M1 is not set
76256 -# CONFIG_SENSORS_SMSC47B397 is not set
76257 -# CONFIG_SENSORS_VIA686A is not set
76258 -# CONFIG_SENSORS_VT1211 is not set
76259 -# CONFIG_SENSORS_VT8231 is not set
76260 -# CONFIG_SENSORS_W83627HF is not set
76261 -# CONFIG_SENSORS_W83627EHF is not set
76262 -# CONFIG_HWMON_DEBUG_CHIP is not set
76263 -# CONFIG_THERMAL is not set
76264 -# CONFIG_WATCHDOG is not set
76265 -
76266 -#
76267 -# Sonics Silicon Backplane
76268 -#
76269 -CONFIG_SSB_POSSIBLE=y
76270 -# CONFIG_SSB is not set
76271 -
76272 -#
76273 -# Multifunction device drivers
76274 -#
76275 -# CONFIG_MFD_SM501 is not set
76276 -
76277 -#
76278 -# Multimedia devices
76279 -#
76280 -# CONFIG_VIDEO_DEV is not set
76281 -# CONFIG_DVB_CORE is not set
76282 -CONFIG_DAB=y
76283 -
76284 -#
76285 -# Graphics support
76286 -#
76287 -# CONFIG_AGP is not set
76288 -# CONFIG_DRM is not set
76289 -# CONFIG_VGASTATE is not set
76290 -CONFIG_VIDEO_OUTPUT_CONTROL=y
76291 -# CONFIG_FB is not set
76292 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
76293 -
76294 -#
76295 -# Display device support
76296 -#
76297 -# CONFIG_DISPLAY_SUPPORT is not set
76298 -
76299 -#
76300 -# Sound
76301 -#
76302 -# CONFIG_SOUND is not set
76303 -# CONFIG_HID_SUPPORT is not set
76304 -# CONFIG_USB_SUPPORT is not set
76305 -# CONFIG_MMC is not set
76306 -# CONFIG_MEMSTICK is not set
76307 -# CONFIG_NEW_LEDS is not set
76308 -# CONFIG_INFINIBAND is not set
76309 -# CONFIG_EDAC is not set
76310 -# CONFIG_RTC_CLASS is not set
76311 -# CONFIG_DMADEVICES is not set
76312 -
76313 -#
76314 -# Userspace I/O
76315 -#
76316 -# CONFIG_UIO is not set
76317 -
76318 -#
76319 -# File systems
76320 -#
76321 -# CONFIG_EXT2_FS is not set
76322 -# CONFIG_EXT3_FS is not set
76323 -# CONFIG_EXT4DEV_FS is not set
76324 -# CONFIG_REISERFS_FS is not set
76325 -# CONFIG_JFS_FS is not set
76326 -# CONFIG_FS_POSIX_ACL is not set
76327 -# CONFIG_XFS_FS is not set
76328 -# CONFIG_GFS2_FS is not set
76329 -# CONFIG_OCFS2_FS is not set
76330 -CONFIG_DNOTIFY=y
76331 -CONFIG_INOTIFY=y
76332 -CONFIG_INOTIFY_USER=y
76333 -# CONFIG_QUOTA is not set
76334 -# CONFIG_AUTOFS_FS is not set
76335 -# CONFIG_AUTOFS4_FS is not set
76336 -# CONFIG_FUSE_FS is not set
76337 -
76338 -#
76339 -# CD-ROM/DVD Filesystems
76340 -#
76341 -# CONFIG_ISO9660_FS is not set
76342 -# CONFIG_UDF_FS is not set
76343 -
76344 -#
76345 -# DOS/FAT/NT Filesystems
76346 -#
76347 -# CONFIG_MSDOS_FS is not set
76348 -# CONFIG_VFAT_FS is not set
76349 -# CONFIG_NTFS_FS is not set
76350 -
76351 -#
76352 -# Pseudo filesystems
76353 -#
76354 -CONFIG_PROC_FS=y
76355 -CONFIG_PROC_KCORE=y
76356 -CONFIG_PROC_SYSCTL=y
76357 -CONFIG_SYSFS=y
76358 -CONFIG_TMPFS=y
76359 -# CONFIG_TMPFS_POSIX_ACL is not set
76360 -# CONFIG_HUGETLB_PAGE is not set
76361 -# CONFIG_CONFIGFS_FS is not set
76362 -
76363 -#
76364 -# Miscellaneous filesystems
76365 -#
76366 -# CONFIG_ADFS_FS is not set
76367 -# CONFIG_AFFS_FS is not set
76368 -# CONFIG_HFS_FS is not set
76369 -# CONFIG_HFSPLUS_FS is not set
76370 -# CONFIG_BEFS_FS is not set
76371 -# CONFIG_BFS_FS is not set
76372 -# CONFIG_EFS_FS is not set
76373 -# CONFIG_CRAMFS is not set
76374 -# CONFIG_VXFS_FS is not set
76375 -# CONFIG_MINIX_FS is not set
76376 -# CONFIG_HPFS_FS is not set
76377 -# CONFIG_QNX4FS_FS is not set
76378 -# CONFIG_ROMFS_FS is not set
76379 -# CONFIG_SYSV_FS is not set
76380 -# CONFIG_UFS_FS is not set
76381 -CONFIG_NETWORK_FILESYSTEMS=y
76382 -CONFIG_NFS_FS=y
76383 -# CONFIG_NFS_V3 is not set
76384 -# CONFIG_NFS_V4 is not set
76385 -# CONFIG_NFS_DIRECTIO is not set
76386 -# CONFIG_NFSD is not set
76387 -CONFIG_ROOT_NFS=y
76388 -CONFIG_LOCKD=y
76389 -CONFIG_NFS_COMMON=y
76390 -CONFIG_SUNRPC=y
76391 -# CONFIG_SUNRPC_BIND34 is not set
76392 -# CONFIG_RPCSEC_GSS_KRB5 is not set
76393 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
76394 -# CONFIG_SMB_FS is not set
76395 -# CONFIG_CIFS is not set
76396 -# CONFIG_NCP_FS is not set
76397 -# CONFIG_CODA_FS is not set
76398 -# CONFIG_AFS_FS is not set
76399 -
76400 -#
76401 -# Partition Types
76402 -#
76403 -# CONFIG_PARTITION_ADVANCED is not set
76404 -CONFIG_MSDOS_PARTITION=y
76405 -# CONFIG_NLS is not set
76406 -# CONFIG_DLM is not set
76407 -
76408 -#
76409 -# Library routines
76410 -#
76411 -CONFIG_BITREVERSE=y
76412 -# CONFIG_CRC_CCITT is not set
76413 -# CONFIG_CRC16 is not set
76414 -# CONFIG_CRC_ITU_T is not set
76415 -CONFIG_CRC32=y
76416 -# CONFIG_CRC7 is not set
76417 -# CONFIG_LIBCRC32C is not set
76418 -CONFIG_PLIST=y
76419 -CONFIG_HAS_IOMEM=y
76420 -CONFIG_HAS_IOPORT=y
76421 -CONFIG_HAS_DMA=y
76422 -
76423 -#
76424 -# Kernel hacking
76425 -#
76426 -# CONFIG_PRINTK_TIME is not set
76427 -CONFIG_ENABLE_WARN_DEPRECATED=y
76428 -CONFIG_ENABLE_MUST_CHECK=y
76429 -# CONFIG_MAGIC_SYSRQ is not set
76430 -# CONFIG_UNUSED_SYMBOLS is not set
76431 -# CONFIG_DEBUG_FS is not set
76432 -# CONFIG_HEADERS_CHECK is not set
76433 -# CONFIG_DEBUG_KERNEL is not set
76434 -# CONFIG_DEBUG_BUGVERBOSE is not set
76435 -# CONFIG_SAMPLES is not set
76436 -# CONFIG_PPC_EARLY_DEBUG is not set
76437 -
76438 -#
76439 -# Security options
76440 -#
76441 -# CONFIG_KEYS is not set
76442 -# CONFIG_SECURITY is not set
76443 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
76444 -CONFIG_CRYPTO=y
76445 -# CONFIG_CRYPTO_SEQIV is not set
76446 -# CONFIG_CRYPTO_MANAGER is not set
76447 -# CONFIG_CRYPTO_HMAC is not set
76448 -# CONFIG_CRYPTO_XCBC is not set
76449 -# CONFIG_CRYPTO_NULL is not set
76450 -# CONFIG_CRYPTO_MD4 is not set
76451 -# CONFIG_CRYPTO_MD5 is not set
76452 -# CONFIG_CRYPTO_SHA1 is not set
76453 -# CONFIG_CRYPTO_SHA256 is not set
76454 -# CONFIG_CRYPTO_SHA512 is not set
76455 -# CONFIG_CRYPTO_WP512 is not set
76456 -# CONFIG_CRYPTO_TGR192 is not set
76457 -# CONFIG_CRYPTO_GF128MUL is not set
76458 -# CONFIG_CRYPTO_ECB is not set
76459 -# CONFIG_CRYPTO_CBC is not set
76460 -# CONFIG_CRYPTO_PCBC is not set
76461 -# CONFIG_CRYPTO_LRW is not set
76462 -# CONFIG_CRYPTO_XTS is not set
76463 -# CONFIG_CRYPTO_CTR is not set
76464 -# CONFIG_CRYPTO_GCM is not set
76465 -# CONFIG_CRYPTO_CCM is not set
76466 -# CONFIG_CRYPTO_CRYPTD is not set
76467 -# CONFIG_CRYPTO_DES is not set
76468 -# CONFIG_CRYPTO_FCRYPT is not set
76469 -# CONFIG_CRYPTO_BLOWFISH is not set
76470 -# CONFIG_CRYPTO_TWOFISH is not set
76471 -# CONFIG_CRYPTO_SERPENT is not set
76472 -# CONFIG_CRYPTO_AES is not set
76473 -# CONFIG_CRYPTO_CAST5 is not set
76474 -# CONFIG_CRYPTO_CAST6 is not set
76475 -# CONFIG_CRYPTO_TEA is not set
76476 -# CONFIG_CRYPTO_ARC4 is not set
76477 -# CONFIG_CRYPTO_KHAZAD is not set
76478 -# CONFIG_CRYPTO_ANUBIS is not set
76479 -# CONFIG_CRYPTO_SEED is not set
76480 -# CONFIG_CRYPTO_SALSA20 is not set
76481 -# CONFIG_CRYPTO_DEFLATE is not set
76482 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
76483 -# CONFIG_CRYPTO_CRC32C is not set
76484 -# CONFIG_CRYPTO_CAMELLIA is not set
76485 -# CONFIG_CRYPTO_AUTHENC is not set
76486 -# CONFIG_CRYPTO_LZO is not set
76487 -CONFIG_CRYPTO_HW=y
76488 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
76489 -# CONFIG_PPC_CLOCK is not set
76490 Index: linux-2.6.25.4/arch/powerpc/configs/sbc8560_defconfig
76491 ===================================================================
76492 --- linux-2.6.25.4.orig/arch/powerpc/configs/sbc8560_defconfig
76493 +++ /dev/null
76494 @@ -1,830 +0,0 @@
76495 -#
76496 -# Automatically generated make config: don't edit
76497 -# Linux kernel version: 2.6.25-rc6
76498 -# Mon Mar 24 08:48:39 2008
76499 -#
76500 -# CONFIG_PPC64 is not set
76501 -
76502 -#
76503 -# Processor support
76504 -#
76505 -# CONFIG_6xx is not set
76506 -CONFIG_PPC_85xx=y
76507 -# CONFIG_PPC_8xx is not set
76508 -# CONFIG_40x is not set
76509 -# CONFIG_44x is not set
76510 -# CONFIG_E200 is not set
76511 -CONFIG_E500=y
76512 -CONFIG_BOOKE=y
76513 -CONFIG_FSL_BOOKE=y
76514 -CONFIG_FSL_EMB_PERFMON=y
76515 -# CONFIG_PHYS_64BIT is not set
76516 -CONFIG_SPE=y
76517 -# CONFIG_PPC_MM_SLICES is not set
76518 -CONFIG_PPC32=y
76519 -CONFIG_WORD_SIZE=32
76520 -CONFIG_PPC_MERGE=y
76521 -CONFIG_MMU=y
76522 -CONFIG_GENERIC_CMOS_UPDATE=y
76523 -CONFIG_GENERIC_TIME=y
76524 -CONFIG_GENERIC_TIME_VSYSCALL=y
76525 -CONFIG_GENERIC_CLOCKEVENTS=y
76526 -CONFIG_GENERIC_HARDIRQS=y
76527 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
76528 -CONFIG_IRQ_PER_CPU=y
76529 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
76530 -CONFIG_ARCH_HAS_ILOG2_U32=y
76531 -CONFIG_GENERIC_HWEIGHT=y
76532 -CONFIG_GENERIC_CALIBRATE_DELAY=y
76533 -CONFIG_GENERIC_FIND_NEXT_BIT=y
76534 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
76535 -CONFIG_PPC=y
76536 -CONFIG_EARLY_PRINTK=y
76537 -CONFIG_GENERIC_NVRAM=y
76538 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
76539 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
76540 -CONFIG_PPC_OF=y
76541 -CONFIG_OF=y
76542 -CONFIG_PPC_UDBG_16550=y
76543 -# CONFIG_GENERIC_TBSYNC is not set
76544 -CONFIG_AUDIT_ARCH=y
76545 -CONFIG_GENERIC_BUG=y
76546 -CONFIG_DEFAULT_UIMAGE=y
76547 -# CONFIG_PPC_DCR_NATIVE is not set
76548 -# CONFIG_PPC_DCR_MMIO is not set
76549 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
76550 -
76551 -#
76552 -# General setup
76553 -#
76554 -CONFIG_EXPERIMENTAL=y
76555 -CONFIG_BROKEN_ON_SMP=y
76556 -CONFIG_INIT_ENV_ARG_LIMIT=32
76557 -CONFIG_LOCALVERSION=""
76558 -CONFIG_LOCALVERSION_AUTO=y
76559 -CONFIG_SWAP=y
76560 -CONFIG_SYSVIPC=y
76561 -CONFIG_SYSVIPC_SYSCTL=y
76562 -# CONFIG_POSIX_MQUEUE is not set
76563 -# CONFIG_BSD_PROCESS_ACCT is not set
76564 -# CONFIG_TASKSTATS is not set
76565 -# CONFIG_AUDIT is not set
76566 -# CONFIG_IKCONFIG is not set
76567 -CONFIG_LOG_BUF_SHIFT=14
76568 -# CONFIG_CGROUPS is not set
76569 -CONFIG_GROUP_SCHED=y
76570 -CONFIG_FAIR_GROUP_SCHED=y
76571 -# CONFIG_RT_GROUP_SCHED is not set
76572 -CONFIG_USER_SCHED=y
76573 -# CONFIG_CGROUP_SCHED is not set
76574 -CONFIG_SYSFS_DEPRECATED=y
76575 -CONFIG_SYSFS_DEPRECATED_V2=y
76576 -# CONFIG_RELAY is not set
76577 -# CONFIG_NAMESPACES is not set
76578 -CONFIG_BLK_DEV_INITRD=y
76579 -CONFIG_INITRAMFS_SOURCE=""
76580 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
76581 -CONFIG_SYSCTL=y
76582 -CONFIG_EMBEDDED=y
76583 -CONFIG_SYSCTL_SYSCALL=y
76584 -CONFIG_KALLSYMS=y
76585 -# CONFIG_KALLSYMS_ALL is not set
76586 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
76587 -CONFIG_HOTPLUG=y
76588 -CONFIG_PRINTK=y
76589 -CONFIG_BUG=y
76590 -CONFIG_ELF_CORE=y
76591 -CONFIG_COMPAT_BRK=y
76592 -CONFIG_BASE_FULL=y
76593 -CONFIG_FUTEX=y
76594 -CONFIG_ANON_INODES=y
76595 -CONFIG_EPOLL=y
76596 -CONFIG_SIGNALFD=y
76597 -CONFIG_TIMERFD=y
76598 -CONFIG_EVENTFD=y
76599 -CONFIG_SHMEM=y
76600 -CONFIG_VM_EVENT_COUNTERS=y
76601 -CONFIG_SLAB=y
76602 -# CONFIG_SLUB is not set
76603 -# CONFIG_SLOB is not set
76604 -# CONFIG_PROFILING is not set
76605 -# CONFIG_MARKERS is not set
76606 -CONFIG_HAVE_OPROFILE=y
76607 -CONFIG_HAVE_KPROBES=y
76608 -CONFIG_HAVE_KRETPROBES=y
76609 -CONFIG_PROC_PAGE_MONITOR=y
76610 -CONFIG_SLABINFO=y
76611 -CONFIG_RT_MUTEXES=y
76612 -# CONFIG_TINY_SHMEM is not set
76613 -CONFIG_BASE_SMALL=0
76614 -# CONFIG_MODULES is not set
76615 -CONFIG_BLOCK=y
76616 -# CONFIG_LBD is not set
76617 -# CONFIG_BLK_DEV_IO_TRACE is not set
76618 -# CONFIG_LSF is not set
76619 -# CONFIG_BLK_DEV_BSG is not set
76620 -
76621 -#
76622 -# IO Schedulers
76623 -#
76624 -CONFIG_IOSCHED_NOOP=y
76625 -CONFIG_IOSCHED_AS=y
76626 -CONFIG_IOSCHED_DEADLINE=y
76627 -CONFIG_IOSCHED_CFQ=y
76628 -CONFIG_DEFAULT_AS=y
76629 -# CONFIG_DEFAULT_DEADLINE is not set
76630 -# CONFIG_DEFAULT_CFQ is not set
76631 -# CONFIG_DEFAULT_NOOP is not set
76632 -CONFIG_DEFAULT_IOSCHED="anticipatory"
76633 -CONFIG_CLASSIC_RCU=y
76634 -
76635 -#
76636 -# Platform support
76637 -#
76638 -# CONFIG_PPC_MPC512x is not set
76639 -# CONFIG_PPC_MPC5121 is not set
76640 -# CONFIG_PPC_CELL is not set
76641 -# CONFIG_PPC_CELL_NATIVE is not set
76642 -# CONFIG_PQ2ADS is not set
76643 -CONFIG_MPC85xx=y
76644 -# CONFIG_MPC8540_ADS is not set
76645 -# CONFIG_MPC8560_ADS is not set
76646 -# CONFIG_MPC85xx_CDS is not set
76647 -# CONFIG_MPC85xx_MDS is not set
76648 -# CONFIG_MPC85xx_DS is not set
76649 -# CONFIG_STX_GP3 is not set
76650 -# CONFIG_TQM8540 is not set
76651 -# CONFIG_TQM8541 is not set
76652 -# CONFIG_TQM8555 is not set
76653 -# CONFIG_TQM8560 is not set
76654 -# CONFIG_SBC8548 is not set
76655 -CONFIG_SBC8560=y
76656 -# CONFIG_IPIC is not set
76657 -CONFIG_MPIC=y
76658 -# CONFIG_MPIC_WEIRD is not set
76659 -# CONFIG_PPC_I8259 is not set
76660 -# CONFIG_PPC_RTAS is not set
76661 -# CONFIG_MMIO_NVRAM is not set
76662 -# CONFIG_PPC_MPC106 is not set
76663 -# CONFIG_PPC_970_NAP is not set
76664 -# CONFIG_PPC_INDIRECT_IO is not set
76665 -# CONFIG_GENERIC_IOMAP is not set
76666 -# CONFIG_CPU_FREQ is not set
76667 -# CONFIG_CPM2 is not set
76668 -# CONFIG_FSL_ULI1575 is not set
76669 -
76670 -#
76671 -# Kernel options
76672 -#
76673 -# CONFIG_HIGHMEM is not set
76674 -# CONFIG_TICK_ONESHOT is not set
76675 -# CONFIG_NO_HZ is not set
76676 -# CONFIG_HIGH_RES_TIMERS is not set
76677 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
76678 -# CONFIG_HZ_100 is not set
76679 -CONFIG_HZ_250=y
76680 -# CONFIG_HZ_300 is not set
76681 -# CONFIG_HZ_1000 is not set
76682 -CONFIG_HZ=250
76683 -# CONFIG_SCHED_HRTICK is not set
76684 -CONFIG_PREEMPT_NONE=y
76685 -# CONFIG_PREEMPT_VOLUNTARY is not set
76686 -# CONFIG_PREEMPT is not set
76687 -CONFIG_BINFMT_ELF=y
76688 -CONFIG_BINFMT_MISC=y
76689 -# CONFIG_MATH_EMULATION is not set
76690 -# CONFIG_IOMMU_HELPER is not set
76691 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
76692 -CONFIG_ARCH_HAS_WALK_MEMORY=y
76693 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
76694 -CONFIG_ARCH_FLATMEM_ENABLE=y
76695 -CONFIG_ARCH_POPULATES_NODE_MAP=y
76696 -CONFIG_SELECT_MEMORY_MODEL=y
76697 -CONFIG_FLATMEM_MANUAL=y
76698 -# CONFIG_DISCONTIGMEM_MANUAL is not set
76699 -# CONFIG_SPARSEMEM_MANUAL is not set
76700 -CONFIG_FLATMEM=y
76701 -CONFIG_FLAT_NODE_MEM_MAP=y
76702 -# CONFIG_SPARSEMEM_STATIC is not set
76703 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
76704 -CONFIG_SPLIT_PTLOCK_CPUS=4
76705 -# CONFIG_RESOURCES_64BIT is not set
76706 -CONFIG_ZONE_DMA_FLAG=1
76707 -CONFIG_BOUNCE=y
76708 -CONFIG_VIRT_TO_BUS=y
76709 -CONFIG_PROC_DEVICETREE=y
76710 -# CONFIG_CMDLINE_BOOL is not set
76711 -# CONFIG_PM is not set
76712 -# CONFIG_SECCOMP is not set
76713 -CONFIG_ISA_DMA_API=y
76714 -
76715 -#
76716 -# Bus options
76717 -#
76718 -CONFIG_ZONE_DMA=y
76719 -CONFIG_FSL_SOC=y
76720 -# CONFIG_PCI is not set
76721 -# CONFIG_PCI_DOMAINS is not set
76722 -# CONFIG_PCI_SYSCALL is not set
76723 -# CONFIG_ARCH_SUPPORTS_MSI is not set
76724 -# CONFIG_PCCARD is not set
76725 -
76726 -#
76727 -# Advanced setup
76728 -#
76729 -# CONFIG_ADVANCED_OPTIONS is not set
76730 -
76731 -#
76732 -# Default settings for advanced configuration options are used
76733 -#
76734 -CONFIG_HIGHMEM_START=0xfe000000
76735 -CONFIG_LOWMEM_SIZE=0x30000000
76736 -CONFIG_KERNEL_START=0xc0000000
76737 -CONFIG_TASK_SIZE=0xc0000000
76738 -CONFIG_BOOT_LOAD=0x00800000
76739 -
76740 -#
76741 -# Networking
76742 -#
76743 -CONFIG_NET=y
76744 -
76745 -#
76746 -# Networking options
76747 -#
76748 -CONFIG_PACKET=y
76749 -# CONFIG_PACKET_MMAP is not set
76750 -CONFIG_UNIX=y
76751 -CONFIG_XFRM=y
76752 -CONFIG_XFRM_USER=y
76753 -# CONFIG_XFRM_SUB_POLICY is not set
76754 -# CONFIG_XFRM_MIGRATE is not set
76755 -# CONFIG_XFRM_STATISTICS is not set
76756 -# CONFIG_NET_KEY is not set
76757 -CONFIG_INET=y
76758 -CONFIG_IP_MULTICAST=y
76759 -# CONFIG_IP_ADVANCED_ROUTER is not set
76760 -CONFIG_IP_FIB_HASH=y
76761 -CONFIG_IP_PNP=y
76762 -CONFIG_IP_PNP_DHCP=y
76763 -CONFIG_IP_PNP_BOOTP=y
76764 -# CONFIG_IP_PNP_RARP is not set
76765 -# CONFIG_NET_IPIP is not set
76766 -# CONFIG_NET_IPGRE is not set
76767 -# CONFIG_IP_MROUTE is not set
76768 -# CONFIG_ARPD is not set
76769 -CONFIG_SYN_COOKIES=y
76770 -# CONFIG_INET_AH is not set
76771 -# CONFIG_INET_ESP is not set
76772 -# CONFIG_INET_IPCOMP is not set
76773 -# CONFIG_INET_XFRM_TUNNEL is not set
76774 -# CONFIG_INET_TUNNEL is not set
76775 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
76776 -CONFIG_INET_XFRM_MODE_TUNNEL=y
76777 -CONFIG_INET_XFRM_MODE_BEET=y
76778 -# CONFIG_INET_LRO is not set
76779 -CONFIG_INET_DIAG=y
76780 -CONFIG_INET_TCP_DIAG=y
76781 -# CONFIG_TCP_CONG_ADVANCED is not set
76782 -CONFIG_TCP_CONG_CUBIC=y
76783 -CONFIG_DEFAULT_TCP_CONG="cubic"
76784 -# CONFIG_TCP_MD5SIG is not set
76785 -# CONFIG_IPV6 is not set
76786 -# CONFIG_INET6_XFRM_TUNNEL is not set
76787 -# CONFIG_INET6_TUNNEL is not set
76788 -# CONFIG_NETWORK_SECMARK is not set
76789 -# CONFIG_NETFILTER is not set
76790 -# CONFIG_IP_DCCP is not set
76791 -# CONFIG_IP_SCTP is not set
76792 -# CONFIG_TIPC is not set
76793 -# CONFIG_ATM is not set
76794 -# CONFIG_BRIDGE is not set
76795 -# CONFIG_VLAN_8021Q is not set
76796 -# CONFIG_DECNET is not set
76797 -# CONFIG_LLC2 is not set
76798 -# CONFIG_IPX is not set
76799 -# CONFIG_ATALK is not set
76800 -# CONFIG_X25 is not set
76801 -# CONFIG_LAPB is not set
76802 -# CONFIG_ECONET is not set
76803 -# CONFIG_WAN_ROUTER is not set
76804 -# CONFIG_NET_SCHED is not set
76805 -
76806 -#
76807 -# Network testing
76808 -#
76809 -# CONFIG_NET_PKTGEN is not set
76810 -# CONFIG_HAMRADIO is not set
76811 -# CONFIG_CAN is not set
76812 -# CONFIG_IRDA is not set
76813 -# CONFIG_BT is not set
76814 -# CONFIG_AF_RXRPC is not set
76815 -
76816 -#
76817 -# Wireless
76818 -#
76819 -# CONFIG_CFG80211 is not set
76820 -# CONFIG_WIRELESS_EXT is not set
76821 -# CONFIG_MAC80211 is not set
76822 -# CONFIG_IEEE80211 is not set
76823 -# CONFIG_RFKILL is not set
76824 -# CONFIG_NET_9P is not set
76825 -
76826 -#
76827 -# Device Drivers
76828 -#
76829 -
76830 -#
76831 -# Generic Driver Options
76832 -#
76833 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
76834 -CONFIG_STANDALONE=y
76835 -CONFIG_PREVENT_FIRMWARE_BUILD=y
76836 -# CONFIG_FW_LOADER is not set
76837 -# CONFIG_DEBUG_DRIVER is not set
76838 -# CONFIG_DEBUG_DEVRES is not set
76839 -# CONFIG_SYS_HYPERVISOR is not set
76840 -# CONFIG_CONNECTOR is not set
76841 -# CONFIG_MTD is not set
76842 -CONFIG_OF_DEVICE=y
76843 -# CONFIG_PARPORT is not set
76844 -CONFIG_BLK_DEV=y
76845 -# CONFIG_BLK_DEV_FD is not set
76846 -# CONFIG_BLK_DEV_COW_COMMON is not set
76847 -CONFIG_BLK_DEV_LOOP=y
76848 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
76849 -# CONFIG_BLK_DEV_NBD is not set
76850 -CONFIG_BLK_DEV_RAM=y
76851 -CONFIG_BLK_DEV_RAM_COUNT=16
76852 -CONFIG_BLK_DEV_RAM_SIZE=32768
76853 -# CONFIG_BLK_DEV_XIP is not set
76854 -# CONFIG_CDROM_PKTCDVD is not set
76855 -# CONFIG_ATA_OVER_ETH is not set
76856 -CONFIG_MISC_DEVICES=y
76857 -# CONFIG_EEPROM_93CX6 is not set
76858 -# CONFIG_ENCLOSURE_SERVICES is not set
76859 -CONFIG_HAVE_IDE=y
76860 -# CONFIG_IDE is not set
76861 -
76862 -#
76863 -# SCSI device support
76864 -#
76865 -# CONFIG_RAID_ATTRS is not set
76866 -# CONFIG_SCSI is not set
76867 -# CONFIG_SCSI_DMA is not set
76868 -# CONFIG_SCSI_NETLINK is not set
76869 -# CONFIG_ATA is not set
76870 -# CONFIG_MD is not set
76871 -# CONFIG_MACINTOSH_DRIVERS is not set
76872 -CONFIG_NETDEVICES=y
76873 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
76874 -# CONFIG_DUMMY is not set
76875 -# CONFIG_BONDING is not set
76876 -# CONFIG_MACVLAN is not set
76877 -# CONFIG_EQUALIZER is not set
76878 -# CONFIG_TUN is not set
76879 -# CONFIG_VETH is not set
76880 -CONFIG_PHYLIB=y
76881 -
76882 -#
76883 -# MII PHY device drivers
76884 -#
76885 -# CONFIG_MARVELL_PHY is not set
76886 -# CONFIG_DAVICOM_PHY is not set
76887 -# CONFIG_QSEMI_PHY is not set
76888 -# CONFIG_LXT_PHY is not set
76889 -# CONFIG_CICADA_PHY is not set
76890 -# CONFIG_VITESSE_PHY is not set
76891 -# CONFIG_SMSC_PHY is not set
76892 -CONFIG_BROADCOM_PHY=y
76893 -# CONFIG_ICPLUS_PHY is not set
76894 -# CONFIG_REALTEK_PHY is not set
76895 -# CONFIG_FIXED_PHY is not set
76896 -# CONFIG_MDIO_BITBANG is not set
76897 -CONFIG_NET_ETHERNET=y
76898 -CONFIG_MII=y
76899 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
76900 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
76901 -# CONFIG_IBM_NEW_EMAC_TAH is not set
76902 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
76903 -# CONFIG_B44 is not set
76904 -CONFIG_NETDEV_1000=y
76905 -# CONFIG_E1000E_ENABLED is not set
76906 -CONFIG_GIANFAR=y
76907 -CONFIG_GFAR_NAPI=y
76908 -CONFIG_NETDEV_10000=y
76909 -
76910 -#
76911 -# Wireless LAN
76912 -#
76913 -# CONFIG_WLAN_PRE80211 is not set
76914 -# CONFIG_WLAN_80211 is not set
76915 -# CONFIG_WAN is not set
76916 -# CONFIG_PPP is not set
76917 -# CONFIG_SLIP is not set
76918 -# CONFIG_NETCONSOLE is not set
76919 -# CONFIG_NETPOLL is not set
76920 -# CONFIG_NET_POLL_CONTROLLER is not set
76921 -# CONFIG_ISDN is not set
76922 -# CONFIG_PHONE is not set
76923 -
76924 -#
76925 -# Input device support
76926 -#
76927 -CONFIG_INPUT=y
76928 -# CONFIG_INPUT_FF_MEMLESS is not set
76929 -# CONFIG_INPUT_POLLDEV is not set
76930 -
76931 -#
76932 -# Userland interfaces
76933 -#
76934 -# CONFIG_INPUT_MOUSEDEV is not set
76935 -# CONFIG_INPUT_JOYDEV is not set
76936 -# CONFIG_INPUT_EVDEV is not set
76937 -# CONFIG_INPUT_EVBUG is not set
76938 -
76939 -#
76940 -# Input Device Drivers
76941 -#
76942 -# CONFIG_INPUT_KEYBOARD is not set
76943 -# CONFIG_INPUT_MOUSE is not set
76944 -# CONFIG_INPUT_JOYSTICK is not set
76945 -# CONFIG_INPUT_TABLET is not set
76946 -# CONFIG_INPUT_TOUCHSCREEN is not set
76947 -# CONFIG_INPUT_MISC is not set
76948 -
76949 -#
76950 -# Hardware I/O ports
76951 -#
76952 -# CONFIG_SERIO is not set
76953 -# CONFIG_GAMEPORT is not set
76954 -
76955 -#
76956 -# Character devices
76957 -#
76958 -# CONFIG_VT is not set
76959 -# CONFIG_SERIAL_NONSTANDARD is not set
76960 -
76961 -#
76962 -# Serial drivers
76963 -#
76964 -CONFIG_SERIAL_8250=y
76965 -CONFIG_SERIAL_8250_CONSOLE=y
76966 -CONFIG_SERIAL_8250_NR_UARTS=2
76967 -CONFIG_SERIAL_8250_RUNTIME_UARTS=2
76968 -# CONFIG_SERIAL_8250_EXTENDED is not set
76969 -CONFIG_SERIAL_8250_SHARE_IRQ=y
76970 -
76971 -#
76972 -# Non-8250 serial port support
76973 -#
76974 -# CONFIG_SERIAL_UARTLITE is not set
76975 -CONFIG_SERIAL_CORE=y
76976 -CONFIG_SERIAL_CORE_CONSOLE=y
76977 -# CONFIG_SERIAL_OF_PLATFORM is not set
76978 -CONFIG_UNIX98_PTYS=y
76979 -CONFIG_LEGACY_PTYS=y
76980 -CONFIG_LEGACY_PTY_COUNT=256
76981 -# CONFIG_IPMI_HANDLER is not set
76982 -# CONFIG_HW_RANDOM is not set
76983 -# CONFIG_NVRAM is not set
76984 -# CONFIG_GEN_RTC is not set
76985 -# CONFIG_R3964 is not set
76986 -# CONFIG_RAW_DRIVER is not set
76987 -# CONFIG_TCG_TPM is not set
76988 -# CONFIG_I2C is not set
76989 -
76990 -#
76991 -# SPI support
76992 -#
76993 -# CONFIG_SPI is not set
76994 -# CONFIG_SPI_MASTER is not set
76995 -# CONFIG_W1 is not set
76996 -# CONFIG_POWER_SUPPLY is not set
76997 -CONFIG_HWMON=y
76998 -# CONFIG_HWMON_VID is not set
76999 -# CONFIG_SENSORS_F71805F is not set
77000 -# CONFIG_SENSORS_F71882FG is not set
77001 -# CONFIG_SENSORS_IT87 is not set
77002 -# CONFIG_SENSORS_PC87360 is not set
77003 -# CONFIG_SENSORS_PC87427 is not set
77004 -# CONFIG_SENSORS_SMSC47M1 is not set
77005 -# CONFIG_SENSORS_SMSC47B397 is not set
77006 -# CONFIG_SENSORS_VT1211 is not set
77007 -# CONFIG_SENSORS_W83627HF is not set
77008 -# CONFIG_SENSORS_W83627EHF is not set
77009 -# CONFIG_HWMON_DEBUG_CHIP is not set
77010 -# CONFIG_THERMAL is not set
77011 -# CONFIG_WATCHDOG is not set
77012 -
77013 -#
77014 -# Sonics Silicon Backplane
77015 -#
77016 -CONFIG_SSB_POSSIBLE=y
77017 -# CONFIG_SSB is not set
77018 -
77019 -#
77020 -# Multifunction device drivers
77021 -#
77022 -# CONFIG_MFD_SM501 is not set
77023 -
77024 -#
77025 -# Multimedia devices
77026 -#
77027 -# CONFIG_VIDEO_DEV is not set
77028 -# CONFIG_DVB_CORE is not set
77029 -CONFIG_DAB=y
77030 -
77031 -#
77032 -# Graphics support
77033 -#
77034 -# CONFIG_VGASTATE is not set
77035 -CONFIG_VIDEO_OUTPUT_CONTROL=y
77036 -# CONFIG_FB is not set
77037 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
77038 -
77039 -#
77040 -# Display device support
77041 -#
77042 -# CONFIG_DISPLAY_SUPPORT is not set
77043 -
77044 -#
77045 -# Sound
77046 -#
77047 -# CONFIG_SOUND is not set
77048 -CONFIG_HID_SUPPORT=y
77049 -CONFIG_HID=y
77050 -# CONFIG_HID_DEBUG is not set
77051 -# CONFIG_HIDRAW is not set
77052 -CONFIG_USB_SUPPORT=y
77053 -# CONFIG_USB_ARCH_HAS_HCD is not set
77054 -# CONFIG_USB_ARCH_HAS_OHCI is not set
77055 -# CONFIG_USB_ARCH_HAS_EHCI is not set
77056 -
77057 -#
77058 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
77059 -#
77060 -# CONFIG_USB_GADGET is not set
77061 -# CONFIG_MMC is not set
77062 -# CONFIG_MEMSTICK is not set
77063 -# CONFIG_NEW_LEDS is not set
77064 -# CONFIG_EDAC is not set
77065 -CONFIG_RTC_LIB=y
77066 -CONFIG_RTC_CLASS=y
77067 -CONFIG_RTC_HCTOSYS=y
77068 -CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
77069 -# CONFIG_RTC_DEBUG is not set
77070 -
77071 -#
77072 -# RTC interfaces
77073 -#
77074 -CONFIG_RTC_INTF_SYSFS=y
77075 -CONFIG_RTC_INTF_PROC=y
77076 -CONFIG_RTC_INTF_DEV=y
77077 -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
77078 -# CONFIG_RTC_DRV_TEST is not set
77079 -
77080 -#
77081 -# SPI RTC drivers
77082 -#
77083 -
77084 -#
77085 -# Platform RTC drivers
77086 -#
77087 -# CONFIG_RTC_DRV_CMOS is not set
77088 -# CONFIG_RTC_DRV_DS1511 is not set
77089 -# CONFIG_RTC_DRV_DS1553 is not set
77090 -# CONFIG_RTC_DRV_DS1742 is not set
77091 -# CONFIG_RTC_DRV_STK17TA8 is not set
77092 -# CONFIG_RTC_DRV_M48T86 is not set
77093 -CONFIG_RTC_DRV_M48T59=y
77094 -# CONFIG_RTC_DRV_V3020 is not set
77095 -
77096 -#
77097 -# on-CPU RTC drivers
77098 -#
77099 -# CONFIG_DMADEVICES is not set
77100 -
77101 -#
77102 -# Userspace I/O
77103 -#
77104 -# CONFIG_UIO is not set
77105 -
77106 -#
77107 -# File systems
77108 -#
77109 -# CONFIG_EXT2_FS is not set
77110 -# CONFIG_EXT3_FS is not set
77111 -# CONFIG_EXT4DEV_FS is not set
77112 -# CONFIG_REISERFS_FS is not set
77113 -# CONFIG_JFS_FS is not set
77114 -# CONFIG_FS_POSIX_ACL is not set
77115 -# CONFIG_XFS_FS is not set
77116 -# CONFIG_GFS2_FS is not set
77117 -# CONFIG_OCFS2_FS is not set
77118 -CONFIG_DNOTIFY=y
77119 -CONFIG_INOTIFY=y
77120 -CONFIG_INOTIFY_USER=y
77121 -# CONFIG_QUOTA is not set
77122 -# CONFIG_AUTOFS_FS is not set
77123 -# CONFIG_AUTOFS4_FS is not set
77124 -# CONFIG_FUSE_FS is not set
77125 -
77126 -#
77127 -# CD-ROM/DVD Filesystems
77128 -#
77129 -# CONFIG_ISO9660_FS is not set
77130 -# CONFIG_UDF_FS is not set
77131 -
77132 -#
77133 -# DOS/FAT/NT Filesystems
77134 -#
77135 -# CONFIG_MSDOS_FS is not set
77136 -# CONFIG_VFAT_FS is not set
77137 -# CONFIG_NTFS_FS is not set
77138 -
77139 -#
77140 -# Pseudo filesystems
77141 -#
77142 -CONFIG_PROC_FS=y
77143 -CONFIG_PROC_KCORE=y
77144 -CONFIG_PROC_SYSCTL=y
77145 -CONFIG_SYSFS=y
77146 -CONFIG_TMPFS=y
77147 -# CONFIG_TMPFS_POSIX_ACL is not set
77148 -# CONFIG_HUGETLB_PAGE is not set
77149 -# CONFIG_CONFIGFS_FS is not set
77150 -
77151 -#
77152 -# Miscellaneous filesystems
77153 -#
77154 -# CONFIG_ADFS_FS is not set
77155 -# CONFIG_AFFS_FS is not set
77156 -# CONFIG_HFS_FS is not set
77157 -# CONFIG_HFSPLUS_FS is not set
77158 -# CONFIG_BEFS_FS is not set
77159 -# CONFIG_BFS_FS is not set
77160 -# CONFIG_EFS_FS is not set
77161 -# CONFIG_CRAMFS is not set
77162 -# CONFIG_VXFS_FS is not set
77163 -# CONFIG_MINIX_FS is not set
77164 -# CONFIG_HPFS_FS is not set
77165 -# CONFIG_QNX4FS_FS is not set
77166 -# CONFIG_ROMFS_FS is not set
77167 -# CONFIG_SYSV_FS is not set
77168 -# CONFIG_UFS_FS is not set
77169 -CONFIG_NETWORK_FILESYSTEMS=y
77170 -CONFIG_NFS_FS=y
77171 -# CONFIG_NFS_V3 is not set
77172 -# CONFIG_NFS_V4 is not set
77173 -# CONFIG_NFS_DIRECTIO is not set
77174 -# CONFIG_NFSD is not set
77175 -CONFIG_ROOT_NFS=y
77176 -CONFIG_LOCKD=y
77177 -CONFIG_NFS_COMMON=y
77178 -CONFIG_SUNRPC=y
77179 -# CONFIG_SUNRPC_BIND34 is not set
77180 -# CONFIG_RPCSEC_GSS_KRB5 is not set
77181 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
77182 -# CONFIG_SMB_FS is not set
77183 -# CONFIG_CIFS is not set
77184 -# CONFIG_NCP_FS is not set
77185 -# CONFIG_CODA_FS is not set
77186 -# CONFIG_AFS_FS is not set
77187 -
77188 -#
77189 -# Partition Types
77190 -#
77191 -CONFIG_PARTITION_ADVANCED=y
77192 -# CONFIG_ACORN_PARTITION is not set
77193 -# CONFIG_OSF_PARTITION is not set
77194 -# CONFIG_AMIGA_PARTITION is not set
77195 -# CONFIG_ATARI_PARTITION is not set
77196 -# CONFIG_MAC_PARTITION is not set
77197 -# CONFIG_MSDOS_PARTITION is not set
77198 -# CONFIG_LDM_PARTITION is not set
77199 -# CONFIG_SGI_PARTITION is not set
77200 -# CONFIG_ULTRIX_PARTITION is not set
77201 -# CONFIG_SUN_PARTITION is not set
77202 -# CONFIG_KARMA_PARTITION is not set
77203 -# CONFIG_EFI_PARTITION is not set
77204 -# CONFIG_SYSV68_PARTITION is not set
77205 -# CONFIG_NLS is not set
77206 -# CONFIG_DLM is not set
77207 -
77208 -#
77209 -# Library routines
77210 -#
77211 -CONFIG_BITREVERSE=y
77212 -# CONFIG_CRC_CCITT is not set
77213 -# CONFIG_CRC16 is not set
77214 -# CONFIG_CRC_ITU_T is not set
77215 -CONFIG_CRC32=y
77216 -# CONFIG_CRC7 is not set
77217 -# CONFIG_LIBCRC32C is not set
77218 -CONFIG_PLIST=y
77219 -CONFIG_HAS_IOMEM=y
77220 -CONFIG_HAS_IOPORT=y
77221 -CONFIG_HAS_DMA=y
77222 -
77223 -#
77224 -# Kernel hacking
77225 -#
77226 -# CONFIG_PRINTK_TIME is not set
77227 -CONFIG_ENABLE_WARN_DEPRECATED=y
77228 -CONFIG_ENABLE_MUST_CHECK=y
77229 -CONFIG_MAGIC_SYSRQ=y
77230 -# CONFIG_UNUSED_SYMBOLS is not set
77231 -# CONFIG_DEBUG_FS is not set
77232 -# CONFIG_HEADERS_CHECK is not set
77233 -CONFIG_DEBUG_KERNEL=y
77234 -# CONFIG_DEBUG_SHIRQ is not set
77235 -CONFIG_DETECT_SOFTLOCKUP=y
77236 -CONFIG_SCHED_DEBUG=y
77237 -# CONFIG_SCHEDSTATS is not set
77238 -# CONFIG_TIMER_STATS is not set
77239 -# CONFIG_DEBUG_SLAB is not set
77240 -# CONFIG_DEBUG_RT_MUTEXES is not set
77241 -# CONFIG_RT_MUTEX_TESTER is not set
77242 -# CONFIG_DEBUG_SPINLOCK is not set
77243 -CONFIG_DEBUG_MUTEXES=y
77244 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
77245 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
77246 -# CONFIG_DEBUG_KOBJECT is not set
77247 -# CONFIG_DEBUG_BUGVERBOSE is not set
77248 -# CONFIG_DEBUG_INFO is not set
77249 -# CONFIG_DEBUG_VM is not set
77250 -# CONFIG_DEBUG_LIST is not set
77251 -# CONFIG_DEBUG_SG is not set
77252 -# CONFIG_BOOT_PRINTK_DELAY is not set
77253 -# CONFIG_BACKTRACE_SELF_TEST is not set
77254 -# CONFIG_FAULT_INJECTION is not set
77255 -# CONFIG_SAMPLES is not set
77256 -# CONFIG_DEBUG_STACKOVERFLOW is not set
77257 -# CONFIG_DEBUG_STACK_USAGE is not set
77258 -# CONFIG_DEBUG_PAGEALLOC is not set
77259 -# CONFIG_DEBUGGER is not set
77260 -# CONFIG_BDI_SWITCH is not set
77261 -CONFIG_PPC_EARLY_DEBUG=y
77262 -# CONFIG_PPC_EARLY_DEBUG_LPAR is not set
77263 -# CONFIG_PPC_EARLY_DEBUG_G5 is not set
77264 -# CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set
77265 -# CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set
77266 -# CONFIG_PPC_EARLY_DEBUG_MAPLE is not set
77267 -# CONFIG_PPC_EARLY_DEBUG_ISERIES is not set
77268 -# CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set
77269 -# CONFIG_PPC_EARLY_DEBUG_BEAT is not set
77270 -# CONFIG_PPC_EARLY_DEBUG_44x is not set
77271 -# CONFIG_PPC_EARLY_DEBUG_40x is not set
77272 -# CONFIG_PPC_EARLY_DEBUG_CPM is not set
77273 -
77274 -#
77275 -# Security options
77276 -#
77277 -# CONFIG_KEYS is not set
77278 -# CONFIG_SECURITY is not set
77279 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
77280 -CONFIG_CRYPTO=y
77281 -# CONFIG_CRYPTO_SEQIV is not set
77282 -# CONFIG_CRYPTO_MANAGER is not set
77283 -# CONFIG_CRYPTO_HMAC is not set
77284 -# CONFIG_CRYPTO_XCBC is not set
77285 -# CONFIG_CRYPTO_NULL is not set
77286 -# CONFIG_CRYPTO_MD4 is not set
77287 -# CONFIG_CRYPTO_MD5 is not set
77288 -# CONFIG_CRYPTO_SHA1 is not set
77289 -# CONFIG_CRYPTO_SHA256 is not set
77290 -# CONFIG_CRYPTO_SHA512 is not set
77291 -# CONFIG_CRYPTO_WP512 is not set
77292 -# CONFIG_CRYPTO_TGR192 is not set
77293 -# CONFIG_CRYPTO_GF128MUL is not set
77294 -# CONFIG_CRYPTO_ECB is not set
77295 -# CONFIG_CRYPTO_CBC is not set
77296 -# CONFIG_CRYPTO_PCBC is not set
77297 -# CONFIG_CRYPTO_LRW is not set
77298 -# CONFIG_CRYPTO_XTS is not set
77299 -# CONFIG_CRYPTO_CTR is not set
77300 -# CONFIG_CRYPTO_GCM is not set
77301 -# CONFIG_CRYPTO_CCM is not set
77302 -# CONFIG_CRYPTO_CRYPTD is not set
77303 -# CONFIG_CRYPTO_DES is not set
77304 -# CONFIG_CRYPTO_FCRYPT is not set
77305 -# CONFIG_CRYPTO_BLOWFISH is not set
77306 -# CONFIG_CRYPTO_TWOFISH is not set
77307 -# CONFIG_CRYPTO_SERPENT is not set
77308 -# CONFIG_CRYPTO_AES is not set
77309 -# CONFIG_CRYPTO_CAST5 is not set
77310 -# CONFIG_CRYPTO_CAST6 is not set
77311 -# CONFIG_CRYPTO_TEA is not set
77312 -# CONFIG_CRYPTO_ARC4 is not set
77313 -# CONFIG_CRYPTO_KHAZAD is not set
77314 -# CONFIG_CRYPTO_ANUBIS is not set
77315 -# CONFIG_CRYPTO_SEED is not set
77316 -# CONFIG_CRYPTO_SALSA20 is not set
77317 -# CONFIG_CRYPTO_DEFLATE is not set
77318 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
77319 -# CONFIG_CRYPTO_CRC32C is not set
77320 -# CONFIG_CRYPTO_CAMELLIA is not set
77321 -# CONFIG_CRYPTO_AUTHENC is not set
77322 -# CONFIG_CRYPTO_LZO is not set
77323 -CONFIG_CRYPTO_HW=y
77324 -# CONFIG_PPC_CLOCK is not set
77325 Index: linux-2.6.25.4/arch/powerpc/configs/sbc8641d_defconfig
77326 ===================================================================
77327 --- /dev/null
77328 +++ linux-2.6.25.4/arch/powerpc/configs/sbc8641d_defconfig
77329 @@ -0,0 +1,1342 @@
77330 +#
77331 +# Automatically generated make config: don't edit
77332 +# Linux kernel version: 2.6.25-rc6
77333 +# Thu Apr 10 18:03:25 2008
77334 +#
77335 +# CONFIG_PPC64 is not set
77336 +
77337 +#
77338 +# Processor support
77339 +#
77340 +CONFIG_6xx=y
77341 +# CONFIG_PPC_85xx is not set
77342 +# CONFIG_PPC_8xx is not set
77343 +# CONFIG_40x is not set
77344 +# CONFIG_44x is not set
77345 +# CONFIG_E200 is not set
77346 +CONFIG_PPC_FPU=y
77347 +CONFIG_ALTIVEC=y
77348 +CONFIG_PPC_STD_MMU=y
77349 +CONFIG_PPC_STD_MMU_32=y
77350 +# CONFIG_PPC_MM_SLICES is not set
77351 +CONFIG_SMP=y
77352 +CONFIG_NR_CPUS=2
77353 +CONFIG_PPC32=y
77354 +CONFIG_WORD_SIZE=32
77355 +CONFIG_PPC_MERGE=y
77356 +CONFIG_MMU=y
77357 +CONFIG_GENERIC_CMOS_UPDATE=y
77358 +CONFIG_GENERIC_TIME=y
77359 +CONFIG_GENERIC_TIME_VSYSCALL=y
77360 +CONFIG_GENERIC_CLOCKEVENTS=y
77361 +CONFIG_GENERIC_HARDIRQS=y
77362 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
77363 +CONFIG_IRQ_PER_CPU=y
77364 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y
77365 +CONFIG_GENERIC_LOCKBREAK=y
77366 +CONFIG_ARCH_HAS_ILOG2_U32=y
77367 +CONFIG_GENERIC_HWEIGHT=y
77368 +CONFIG_GENERIC_CALIBRATE_DELAY=y
77369 +CONFIG_GENERIC_FIND_NEXT_BIT=y
77370 +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
77371 +CONFIG_PPC=y
77372 +CONFIG_EARLY_PRINTK=y
77373 +CONFIG_GENERIC_NVRAM=y
77374 +CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
77375 +CONFIG_ARCH_MAY_HAVE_PC_FDC=y
77376 +CONFIG_PPC_OF=y
77377 +CONFIG_OF=y
77378 +CONFIG_PPC_UDBG_16550=y
77379 +CONFIG_GENERIC_TBSYNC=y
77380 +CONFIG_AUDIT_ARCH=y
77381 +CONFIG_GENERIC_BUG=y
77382 +CONFIG_DEFAULT_UIMAGE=y
77383 +# CONFIG_PPC_DCR_NATIVE is not set
77384 +# CONFIG_PPC_DCR_MMIO is not set
77385 +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
77386 +
77387 +#
77388 +# General setup
77389 +#
77390 +CONFIG_EXPERIMENTAL=y
77391 +CONFIG_LOCK_KERNEL=y
77392 +CONFIG_INIT_ENV_ARG_LIMIT=32
77393 +CONFIG_LOCALVERSION=""
77394 +CONFIG_LOCALVERSION_AUTO=y
77395 +CONFIG_SWAP=y
77396 +CONFIG_SYSVIPC=y
77397 +CONFIG_SYSVIPC_SYSCTL=y
77398 +CONFIG_POSIX_MQUEUE=y
77399 +CONFIG_BSD_PROCESS_ACCT=y
77400 +CONFIG_BSD_PROCESS_ACCT_V3=y
77401 +# CONFIG_TASKSTATS is not set
77402 +# CONFIG_AUDIT is not set
77403 +CONFIG_IKCONFIG=y
77404 +CONFIG_IKCONFIG_PROC=y
77405 +CONFIG_LOG_BUF_SHIFT=14
77406 +# CONFIG_CGROUPS is not set
77407 +CONFIG_GROUP_SCHED=y
77408 +CONFIG_FAIR_GROUP_SCHED=y
77409 +# CONFIG_RT_GROUP_SCHED is not set
77410 +CONFIG_USER_SCHED=y
77411 +# CONFIG_CGROUP_SCHED is not set
77412 +CONFIG_SYSFS_DEPRECATED=y
77413 +CONFIG_SYSFS_DEPRECATED_V2=y
77414 +CONFIG_RELAY=y
77415 +# CONFIG_NAMESPACES is not set
77416 +CONFIG_BLK_DEV_INITRD=y
77417 +CONFIG_INITRAMFS_SOURCE=""
77418 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
77419 +CONFIG_SYSCTL=y
77420 +CONFIG_EMBEDDED=y
77421 +CONFIG_SYSCTL_SYSCALL=y
77422 +CONFIG_KALLSYMS=y
77423 +# CONFIG_KALLSYMS_ALL is not set
77424 +# CONFIG_KALLSYMS_EXTRA_PASS is not set
77425 +CONFIG_HOTPLUG=y
77426 +CONFIG_PRINTK=y
77427 +CONFIG_BUG=y
77428 +CONFIG_ELF_CORE=y
77429 +CONFIG_COMPAT_BRK=y
77430 +CONFIG_BASE_FULL=y
77431 +CONFIG_FUTEX=y
77432 +CONFIG_ANON_INODES=y
77433 +CONFIG_EPOLL=y
77434 +CONFIG_SIGNALFD=y
77435 +CONFIG_TIMERFD=y
77436 +CONFIG_EVENTFD=y
77437 +CONFIG_SHMEM=y
77438 +CONFIG_VM_EVENT_COUNTERS=y
77439 +CONFIG_SLAB=y
77440 +# CONFIG_SLUB is not set
77441 +# CONFIG_SLOB is not set
77442 +# CONFIG_PROFILING is not set
77443 +# CONFIG_MARKERS is not set
77444 +CONFIG_HAVE_OPROFILE=y
77445 +# CONFIG_KPROBES is not set
77446 +CONFIG_HAVE_KPROBES=y
77447 +CONFIG_HAVE_KRETPROBES=y
77448 +CONFIG_PROC_PAGE_MONITOR=y
77449 +CONFIG_SLABINFO=y
77450 +CONFIG_RT_MUTEXES=y
77451 +# CONFIG_TINY_SHMEM is not set
77452 +CONFIG_BASE_SMALL=0
77453 +CONFIG_MODULES=y
77454 +CONFIG_MODULE_UNLOAD=y
77455 +# CONFIG_MODULE_FORCE_UNLOAD is not set
77456 +# CONFIG_MODVERSIONS is not set
77457 +# CONFIG_MODULE_SRCVERSION_ALL is not set
77458 +CONFIG_KMOD=y
77459 +CONFIG_STOP_MACHINE=y
77460 +CONFIG_BLOCK=y
77461 +# CONFIG_LBD is not set
77462 +# CONFIG_BLK_DEV_IO_TRACE is not set
77463 +# CONFIG_LSF is not set
77464 +# CONFIG_BLK_DEV_BSG is not set
77465 +
77466 +#
77467 +# IO Schedulers
77468 +#
77469 +CONFIG_IOSCHED_NOOP=y
77470 +CONFIG_IOSCHED_AS=y
77471 +CONFIG_IOSCHED_DEADLINE=y
77472 +CONFIG_IOSCHED_CFQ=y
77473 +# CONFIG_DEFAULT_AS is not set
77474 +# CONFIG_DEFAULT_DEADLINE is not set
77475 +CONFIG_DEFAULT_CFQ=y
77476 +# CONFIG_DEFAULT_NOOP is not set
77477 +CONFIG_DEFAULT_IOSCHED="cfq"
77478 +CONFIG_CLASSIC_RCU=y
77479 +
77480 +#
77481 +# Platform support
77482 +#
77483 +# CONFIG_PPC_MULTIPLATFORM is not set
77484 +# CONFIG_PPC_82xx is not set
77485 +# CONFIG_PPC_83xx is not set
77486 +CONFIG_PPC_86xx=y
77487 +# CONFIG_PPC_MPC512x is not set
77488 +# CONFIG_PPC_MPC5121 is not set
77489 +# CONFIG_PPC_CELL is not set
77490 +# CONFIG_PPC_CELL_NATIVE is not set
77491 +# CONFIG_PQ2ADS is not set
77492 +# CONFIG_MPC8641_HPCN is not set
77493 +CONFIG_SBC8641D=y
77494 +# CONFIG_MPC8610_HPCD is not set
77495 +CONFIG_MPC8641=y
77496 +# CONFIG_IPIC is not set
77497 +CONFIG_MPIC=y
77498 +# CONFIG_MPIC_WEIRD is not set
77499 +# CONFIG_PPC_I8259 is not set
77500 +# CONFIG_PPC_RTAS is not set
77501 +# CONFIG_MMIO_NVRAM is not set
77502 +# CONFIG_PPC_MPC106 is not set
77503 +# CONFIG_PPC_970_NAP is not set
77504 +# CONFIG_PPC_INDIRECT_IO is not set
77505 +# CONFIG_GENERIC_IOMAP is not set
77506 +# CONFIG_CPU_FREQ is not set
77507 +# CONFIG_FSL_ULI1575 is not set
77508 +
77509 +#
77510 +# Kernel options
77511 +#
77512 +# CONFIG_HIGHMEM is not set
77513 +CONFIG_TICK_ONESHOT=y
77514 +# CONFIG_NO_HZ is not set
77515 +CONFIG_HIGH_RES_TIMERS=y
77516 +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
77517 +# CONFIG_HZ_100 is not set
77518 +CONFIG_HZ_250=y
77519 +# CONFIG_HZ_300 is not set
77520 +# CONFIG_HZ_1000 is not set
77521 +CONFIG_HZ=250
77522 +# CONFIG_SCHED_HRTICK is not set
77523 +# CONFIG_PREEMPT_NONE is not set
77524 +# CONFIG_PREEMPT_VOLUNTARY is not set
77525 +CONFIG_PREEMPT=y
77526 +# CONFIG_PREEMPT_RCU is not set
77527 +CONFIG_BINFMT_ELF=y
77528 +CONFIG_BINFMT_MISC=m
77529 +CONFIG_FORCE_MAX_ZONEORDER=11
77530 +# CONFIG_IOMMU_HELPER is not set
77531 +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
77532 +CONFIG_ARCH_HAS_WALK_MEMORY=y
77533 +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
77534 +CONFIG_IRQ_ALL_CPUS=y
77535 +CONFIG_ARCH_FLATMEM_ENABLE=y
77536 +CONFIG_ARCH_POPULATES_NODE_MAP=y
77537 +CONFIG_SELECT_MEMORY_MODEL=y
77538 +CONFIG_FLATMEM_MANUAL=y
77539 +# CONFIG_DISCONTIGMEM_MANUAL is not set
77540 +# CONFIG_SPARSEMEM_MANUAL is not set
77541 +CONFIG_FLATMEM=y
77542 +CONFIG_FLAT_NODE_MEM_MAP=y
77543 +# CONFIG_SPARSEMEM_STATIC is not set
77544 +# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
77545 +CONFIG_SPLIT_PTLOCK_CPUS=4
77546 +# CONFIG_RESOURCES_64BIT is not set
77547 +CONFIG_ZONE_DMA_FLAG=1
77548 +CONFIG_BOUNCE=y
77549 +CONFIG_VIRT_TO_BUS=y
77550 +# CONFIG_PROC_DEVICETREE is not set
77551 +# CONFIG_CMDLINE_BOOL is not set
77552 +# CONFIG_PM is not set
77553 +CONFIG_SECCOMP=y
77554 +CONFIG_ISA_DMA_API=y
77555 +
77556 +#
77557 +# Bus options
77558 +#
77559 +CONFIG_ZONE_DMA=y
77560 +CONFIG_GENERIC_ISA_DMA=y
77561 +CONFIG_PPC_INDIRECT_PCI=y
77562 +CONFIG_FSL_SOC=y
77563 +CONFIG_FSL_PCI=y
77564 +CONFIG_PCI=y
77565 +CONFIG_PCI_DOMAINS=y
77566 +CONFIG_PCI_SYSCALL=y
77567 +CONFIG_PCIEPORTBUS=y
77568 +CONFIG_PCIEAER=y
77569 +CONFIG_ARCH_SUPPORTS_MSI=y
77570 +# CONFIG_PCI_MSI is not set
77571 +CONFIG_PCI_LEGACY=y
77572 +# CONFIG_PCI_DEBUG is not set
77573 +# CONFIG_PCCARD is not set
77574 +# CONFIG_HOTPLUG_PCI is not set
77575 +
77576 +#
77577 +# Advanced setup
77578 +#
77579 +# CONFIG_ADVANCED_OPTIONS is not set
77580 +
77581 +#
77582 +# Default settings for advanced configuration options are used
77583 +#
77584 +CONFIG_HIGHMEM_START=0xfe000000
77585 +CONFIG_LOWMEM_SIZE=0x30000000
77586 +CONFIG_KERNEL_START=0xc0000000
77587 +CONFIG_TASK_SIZE=0xc0000000
77588 +CONFIG_BOOT_LOAD=0x00800000
77589 +
77590 +#
77591 +# Networking
77592 +#
77593 +CONFIG_NET=y
77594 +
77595 +#
77596 +# Networking options
77597 +#
77598 +CONFIG_PACKET=y
77599 +CONFIG_PACKET_MMAP=y
77600 +CONFIG_UNIX=y
77601 +CONFIG_XFRM=y
77602 +CONFIG_XFRM_USER=m
77603 +# CONFIG_XFRM_SUB_POLICY is not set
77604 +# CONFIG_XFRM_MIGRATE is not set
77605 +# CONFIG_XFRM_STATISTICS is not set
77606 +CONFIG_NET_KEY=m
77607 +# CONFIG_NET_KEY_MIGRATE is not set
77608 +CONFIG_INET=y
77609 +CONFIG_IP_MULTICAST=y
77610 +CONFIG_IP_ADVANCED_ROUTER=y
77611 +CONFIG_ASK_IP_FIB_HASH=y
77612 +# CONFIG_IP_FIB_TRIE is not set
77613 +CONFIG_IP_FIB_HASH=y
77614 +CONFIG_IP_MULTIPLE_TABLES=y
77615 +CONFIG_IP_ROUTE_MULTIPATH=y
77616 +CONFIG_IP_ROUTE_VERBOSE=y
77617 +CONFIG_IP_PNP=y
77618 +CONFIG_IP_PNP_DHCP=y
77619 +CONFIG_IP_PNP_BOOTP=y
77620 +CONFIG_IP_PNP_RARP=y
77621 +CONFIG_NET_IPIP=m
77622 +CONFIG_NET_IPGRE=m
77623 +CONFIG_NET_IPGRE_BROADCAST=y
77624 +CONFIG_IP_MROUTE=y
77625 +CONFIG_IP_PIMSM_V1=y
77626 +CONFIG_IP_PIMSM_V2=y
77627 +# CONFIG_ARPD is not set
77628 +CONFIG_SYN_COOKIES=y
77629 +CONFIG_INET_AH=m
77630 +CONFIG_INET_ESP=m
77631 +CONFIG_INET_IPCOMP=m
77632 +CONFIG_INET_XFRM_TUNNEL=m
77633 +CONFIG_INET_TUNNEL=m
77634 +CONFIG_INET_XFRM_MODE_TRANSPORT=y
77635 +CONFIG_INET_XFRM_MODE_TUNNEL=y
77636 +CONFIG_INET_XFRM_MODE_BEET=y
77637 +# CONFIG_INET_LRO is not set
77638 +CONFIG_INET_DIAG=y
77639 +CONFIG_INET_TCP_DIAG=y
77640 +# CONFIG_TCP_CONG_ADVANCED is not set
77641 +CONFIG_TCP_CONG_CUBIC=y
77642 +CONFIG_DEFAULT_TCP_CONG="cubic"
77643 +# CONFIG_TCP_MD5SIG is not set
77644 +# CONFIG_IP_VS is not set
77645 +CONFIG_IPV6=m
77646 +# CONFIG_IPV6_PRIVACY is not set
77647 +# CONFIG_IPV6_ROUTER_PREF is not set
77648 +# CONFIG_IPV6_OPTIMISTIC_DAD is not set
77649 +CONFIG_INET6_AH=m
77650 +CONFIG_INET6_ESP=m
77651 +CONFIG_INET6_IPCOMP=m
77652 +# CONFIG_IPV6_MIP6 is not set
77653 +CONFIG_INET6_XFRM_TUNNEL=m
77654 +CONFIG_INET6_TUNNEL=m
77655 +CONFIG_INET6_XFRM_MODE_TRANSPORT=m
77656 +CONFIG_INET6_XFRM_MODE_TUNNEL=m
77657 +CONFIG_INET6_XFRM_MODE_BEET=m
77658 +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
77659 +CONFIG_IPV6_SIT=m
77660 +CONFIG_IPV6_TUNNEL=m
77661 +# CONFIG_IPV6_MULTIPLE_TABLES is not set
77662 +# CONFIG_NETLABEL is not set
77663 +# CONFIG_NETWORK_SECMARK is not set
77664 +CONFIG_NETFILTER=y
77665 +# CONFIG_NETFILTER_DEBUG is not set
77666 +CONFIG_NETFILTER_ADVANCED=y
77667 +CONFIG_BRIDGE_NETFILTER=y
77668 +
77669 +#
77670 +# Core Netfilter Configuration
77671 +#
77672 +# CONFIG_NETFILTER_NETLINK_QUEUE is not set
77673 +# CONFIG_NETFILTER_NETLINK_LOG is not set
77674 +# CONFIG_NF_CONNTRACK is not set
77675 +CONFIG_NETFILTER_XTABLES=m
77676 +# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
77677 +# CONFIG_NETFILTER_XT_TARGET_DSCP is not set
77678 +# CONFIG_NETFILTER_XT_TARGET_MARK is not set
77679 +# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
77680 +# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
77681 +# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
77682 +# CONFIG_NETFILTER_XT_TARGET_TRACE is not set
77683 +# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
77684 +# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set
77685 +# CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
77686 +# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
77687 +# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
77688 +# CONFIG_NETFILTER_XT_MATCH_ESP is not set
77689 +# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
77690 +# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
77691 +# CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
77692 +# CONFIG_NETFILTER_XT_MATCH_MAC is not set
77693 +# CONFIG_NETFILTER_XT_MATCH_MARK is not set
77694 +# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
77695 +# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
77696 +# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
77697 +# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
77698 +# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
77699 +# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
77700 +# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
77701 +# CONFIG_NETFILTER_XT_MATCH_REALM is not set
77702 +# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
77703 +# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
77704 +# CONFIG_NETFILTER_XT_MATCH_STRING is not set
77705 +# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
77706 +# CONFIG_NETFILTER_XT_MATCH_TIME is not set
77707 +# CONFIG_NETFILTER_XT_MATCH_U32 is not set
77708 +# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
77709 +
77710 +#
77711 +# IP: Netfilter Configuration
77712 +#
77713 +CONFIG_IP_NF_QUEUE=m
77714 +CONFIG_IP_NF_IPTABLES=m
77715 +CONFIG_IP_NF_MATCH_RECENT=m
77716 +CONFIG_IP_NF_MATCH_ECN=m
77717 +# CONFIG_IP_NF_MATCH_AH is not set
77718 +CONFIG_IP_NF_MATCH_TTL=m
77719 +CONFIG_IP_NF_MATCH_ADDRTYPE=m
77720 +CONFIG_IP_NF_FILTER=m
77721 +CONFIG_IP_NF_TARGET_REJECT=m
77722 +CONFIG_IP_NF_TARGET_LOG=m
77723 +CONFIG_IP_NF_TARGET_ULOG=m
77724 +CONFIG_IP_NF_MANGLE=m
77725 +CONFIG_IP_NF_TARGET_ECN=m
77726 +# CONFIG_IP_NF_TARGET_TTL is not set
77727 +CONFIG_IP_NF_RAW=m
77728 +CONFIG_IP_NF_ARPTABLES=m
77729 +CONFIG_IP_NF_ARPFILTER=m
77730 +CONFIG_IP_NF_ARP_MANGLE=m
77731 +
77732 +#
77733 +# IPv6: Netfilter Configuration
77734 +#
77735 +CONFIG_IP6_NF_QUEUE=m
77736 +CONFIG_IP6_NF_IPTABLES=m
77737 +CONFIG_IP6_NF_MATCH_RT=m
77738 +CONFIG_IP6_NF_MATCH_OPTS=m
77739 +CONFIG_IP6_NF_MATCH_FRAG=m
77740 +CONFIG_IP6_NF_MATCH_HL=m
77741 +CONFIG_IP6_NF_MATCH_IPV6HEADER=m
77742 +# CONFIG_IP6_NF_MATCH_AH is not set
77743 +# CONFIG_IP6_NF_MATCH_MH is not set
77744 +CONFIG_IP6_NF_MATCH_EUI64=m
77745 +CONFIG_IP6_NF_FILTER=m
77746 +CONFIG_IP6_NF_TARGET_LOG=m
77747 +# CONFIG_IP6_NF_TARGET_REJECT is not set
77748 +CONFIG_IP6_NF_MANGLE=m
77749 +# CONFIG_IP6_NF_TARGET_HL is not set
77750 +CONFIG_IP6_NF_RAW=m
77751 +
77752 +#
77753 +# Bridge: Netfilter Configuration
77754 +#
77755 +# CONFIG_BRIDGE_NF_EBTABLES is not set
77756 +# CONFIG_IP_DCCP is not set
77757 +CONFIG_IP_SCTP=m
77758 +# CONFIG_SCTP_DBG_MSG is not set
77759 +# CONFIG_SCTP_DBG_OBJCNT is not set
77760 +# CONFIG_SCTP_HMAC_NONE is not set
77761 +# CONFIG_SCTP_HMAC_SHA1 is not set
77762 +CONFIG_SCTP_HMAC_MD5=y
77763 +CONFIG_TIPC=m
77764 +# CONFIG_TIPC_ADVANCED is not set
77765 +# CONFIG_TIPC_DEBUG is not set
77766 +CONFIG_ATM=m
77767 +CONFIG_ATM_CLIP=m
77768 +# CONFIG_ATM_CLIP_NO_ICMP is not set
77769 +CONFIG_ATM_LANE=m
77770 +CONFIG_ATM_MPOA=m
77771 +CONFIG_ATM_BR2684=m
77772 +# CONFIG_ATM_BR2684_IPFILTER is not set
77773 +CONFIG_BRIDGE=m
77774 +CONFIG_VLAN_8021Q=m
77775 +# CONFIG_DECNET is not set
77776 +CONFIG_LLC=m
77777 +# CONFIG_LLC2 is not set
77778 +# CONFIG_IPX is not set
77779 +# CONFIG_ATALK is not set
77780 +# CONFIG_X25 is not set
77781 +# CONFIG_LAPB is not set
77782 +# CONFIG_ECONET is not set
77783 +CONFIG_WAN_ROUTER=m
77784 +CONFIG_NET_SCHED=y
77785 +
77786 +#
77787 +# Queueing/Scheduling
77788 +#
77789 +CONFIG_NET_SCH_CBQ=m
77790 +CONFIG_NET_SCH_HTB=m
77791 +CONFIG_NET_SCH_HFSC=m
77792 +CONFIG_NET_SCH_ATM=m
77793 +CONFIG_NET_SCH_PRIO=m
77794 +# CONFIG_NET_SCH_RR is not set
77795 +CONFIG_NET_SCH_RED=m
77796 +CONFIG_NET_SCH_SFQ=m
77797 +CONFIG_NET_SCH_TEQL=m
77798 +CONFIG_NET_SCH_TBF=m
77799 +CONFIG_NET_SCH_GRED=m
77800 +CONFIG_NET_SCH_DSMARK=m
77801 +CONFIG_NET_SCH_NETEM=m
77802 +
77803 +#
77804 +# Classification
77805 +#
77806 +CONFIG_NET_CLS=y
77807 +# CONFIG_NET_CLS_BASIC is not set
77808 +CONFIG_NET_CLS_TCINDEX=m
77809 +CONFIG_NET_CLS_ROUTE4=m
77810 +CONFIG_NET_CLS_ROUTE=y
77811 +CONFIG_NET_CLS_FW=m
77812 +CONFIG_NET_CLS_U32=m
77813 +# CONFIG_CLS_U32_PERF is not set
77814 +# CONFIG_CLS_U32_MARK is not set
77815 +CONFIG_NET_CLS_RSVP=m
77816 +CONFIG_NET_CLS_RSVP6=m
77817 +# CONFIG_NET_CLS_FLOW is not set
77818 +# CONFIG_NET_EMATCH is not set
77819 +# CONFIG_NET_CLS_ACT is not set
77820 +# CONFIG_NET_CLS_IND is not set
77821 +CONFIG_NET_SCH_FIFO=y
77822 +
77823 +#
77824 +# Network testing
77825 +#
77826 +CONFIG_NET_PKTGEN=m
77827 +# CONFIG_HAMRADIO is not set
77828 +# CONFIG_CAN is not set
77829 +# CONFIG_IRDA is not set
77830 +# CONFIG_BT is not set
77831 +# CONFIG_AF_RXRPC is not set
77832 +CONFIG_FIB_RULES=y
77833 +
77834 +#
77835 +# Wireless
77836 +#
77837 +# CONFIG_CFG80211 is not set
77838 +# CONFIG_WIRELESS_EXT is not set
77839 +# CONFIG_MAC80211 is not set
77840 +# CONFIG_IEEE80211 is not set
77841 +# CONFIG_RFKILL is not set
77842 +# CONFIG_NET_9P is not set
77843 +
77844 +#
77845 +# Device Drivers
77846 +#
77847 +
77848 +#
77849 +# Generic Driver Options
77850 +#
77851 +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
77852 +CONFIG_STANDALONE=y
77853 +CONFIG_PREVENT_FIRMWARE_BUILD=y
77854 +# CONFIG_FW_LOADER is not set
77855 +# CONFIG_DEBUG_DRIVER is not set
77856 +# CONFIG_DEBUG_DEVRES is not set
77857 +# CONFIG_SYS_HYPERVISOR is not set
77858 +# CONFIG_CONNECTOR is not set
77859 +CONFIG_MTD=y
77860 +# CONFIG_MTD_DEBUG is not set
77861 +CONFIG_MTD_CONCAT=y
77862 +CONFIG_MTD_PARTITIONS=y
77863 +# CONFIG_MTD_REDBOOT_PARTS is not set
77864 +# CONFIG_MTD_CMDLINE_PARTS is not set
77865 +# CONFIG_MTD_OF_PARTS is not set
77866 +
77867 +#
77868 +# User Modules And Translation Layers
77869 +#
77870 +CONFIG_MTD_CHAR=y
77871 +CONFIG_MTD_BLKDEVS=y
77872 +CONFIG_MTD_BLOCK=y
77873 +# CONFIG_FTL is not set
77874 +# CONFIG_NFTL is not set
77875 +# CONFIG_INFTL is not set
77876 +# CONFIG_RFD_FTL is not set
77877 +# CONFIG_SSFDC is not set
77878 +# CONFIG_MTD_OOPS is not set
77879 +
77880 +#
77881 +# RAM/ROM/Flash chip drivers
77882 +#
77883 +CONFIG_MTD_CFI=y
77884 +# CONFIG_MTD_JEDECPROBE is not set
77885 +CONFIG_MTD_GEN_PROBE=y
77886 +CONFIG_MTD_CFI_ADV_OPTIONS=y
77887 +# CONFIG_MTD_CFI_NOSWAP is not set
77888 +# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set
77889 +CONFIG_MTD_CFI_LE_BYTE_SWAP=y
77890 +# CONFIG_MTD_CFI_GEOMETRY is not set
77891 +CONFIG_MTD_MAP_BANK_WIDTH_1=y
77892 +CONFIG_MTD_MAP_BANK_WIDTH_2=y
77893 +CONFIG_MTD_MAP_BANK_WIDTH_4=y
77894 +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
77895 +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
77896 +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
77897 +CONFIG_MTD_CFI_I1=y
77898 +CONFIG_MTD_CFI_I2=y
77899 +# CONFIG_MTD_CFI_I4 is not set
77900 +# CONFIG_MTD_CFI_I8 is not set
77901 +# CONFIG_MTD_OTP is not set
77902 +CONFIG_MTD_CFI_INTELEXT=y
77903 +# CONFIG_MTD_CFI_AMDSTD is not set
77904 +# CONFIG_MTD_CFI_STAA is not set
77905 +CONFIG_MTD_CFI_UTIL=y
77906 +# CONFIG_MTD_RAM is not set
77907 +# CONFIG_MTD_ROM is not set
77908 +# CONFIG_MTD_ABSENT is not set
77909 +
77910 +#
77911 +# Mapping drivers for chip access
77912 +#
77913 +# CONFIG_MTD_COMPLEX_MAPPINGS is not set
77914 +# CONFIG_MTD_PHYSMAP is not set
77915 +CONFIG_MTD_PHYSMAP_OF=y
77916 +# CONFIG_MTD_INTEL_VR_NOR is not set
77917 +# CONFIG_MTD_PLATRAM is not set
77918 +
77919 +#
77920 +# Self-contained MTD device drivers
77921 +#
77922 +# CONFIG_MTD_PMC551 is not set
77923 +# CONFIG_MTD_SLRAM is not set
77924 +# CONFIG_MTD_PHRAM is not set
77925 +# CONFIG_MTD_MTDRAM is not set
77926 +# CONFIG_MTD_BLOCK2MTD is not set
77927 +
77928 +#
77929 +# Disk-On-Chip Device Drivers
77930 +#
77931 +# CONFIG_MTD_DOC2000 is not set
77932 +# CONFIG_MTD_DOC2001 is not set
77933 +# CONFIG_MTD_DOC2001PLUS is not set
77934 +# CONFIG_MTD_NAND is not set
77935 +# CONFIG_MTD_ONENAND is not set
77936 +
77937 +#
77938 +# UBI - Unsorted block images
77939 +#
77940 +# CONFIG_MTD_UBI is not set
77941 +CONFIG_OF_DEVICE=y
77942 +# CONFIG_PARPORT is not set
77943 +CONFIG_BLK_DEV=y
77944 +# CONFIG_BLK_DEV_FD is not set
77945 +# CONFIG_BLK_CPQ_DA is not set
77946 +# CONFIG_BLK_CPQ_CISS_DA is not set
77947 +# CONFIG_BLK_DEV_DAC960 is not set
77948 +# CONFIG_BLK_DEV_UMEM is not set
77949 +# CONFIG_BLK_DEV_COW_COMMON is not set
77950 +CONFIG_BLK_DEV_LOOP=m
77951 +CONFIG_BLK_DEV_CRYPTOLOOP=m
77952 +CONFIG_BLK_DEV_NBD=m
77953 +# CONFIG_BLK_DEV_SX8 is not set
77954 +CONFIG_BLK_DEV_RAM=y
77955 +CONFIG_BLK_DEV_RAM_COUNT=16
77956 +CONFIG_BLK_DEV_RAM_SIZE=4096
77957 +# CONFIG_BLK_DEV_XIP is not set
77958 +# CONFIG_CDROM_PKTCDVD is not set
77959 +# CONFIG_ATA_OVER_ETH is not set
77960 +CONFIG_MISC_DEVICES=y
77961 +# CONFIG_PHANTOM is not set
77962 +# CONFIG_EEPROM_93CX6 is not set
77963 +# CONFIG_SGI_IOC4 is not set
77964 +# CONFIG_TIFM_CORE is not set
77965 +# CONFIG_ENCLOSURE_SERVICES is not set
77966 +CONFIG_HAVE_IDE=y
77967 +# CONFIG_IDE is not set
77968 +
77969 +#
77970 +# SCSI device support
77971 +#
77972 +# CONFIG_RAID_ATTRS is not set
77973 +# CONFIG_SCSI is not set
77974 +# CONFIG_SCSI_DMA is not set
77975 +# CONFIG_SCSI_NETLINK is not set
77976 +# CONFIG_ATA is not set
77977 +CONFIG_MD=y
77978 +CONFIG_BLK_DEV_MD=y
77979 +CONFIG_MD_LINEAR=y
77980 +CONFIG_MD_RAID0=y
77981 +CONFIG_MD_RAID1=y
77982 +CONFIG_MD_RAID10=y
77983 +# CONFIG_MD_RAID456 is not set
77984 +CONFIG_MD_MULTIPATH=y
77985 +CONFIG_MD_FAULTY=y
77986 +CONFIG_BLK_DEV_DM=y
77987 +# CONFIG_DM_DEBUG is not set
77988 +CONFIG_DM_CRYPT=y
77989 +CONFIG_DM_SNAPSHOT=y
77990 +CONFIG_DM_MIRROR=y
77991 +CONFIG_DM_ZERO=y
77992 +# CONFIG_DM_MULTIPATH is not set
77993 +# CONFIG_DM_DELAY is not set
77994 +# CONFIG_DM_UEVENT is not set
77995 +# CONFIG_FUSION is not set
77996 +
77997 +#
77998 +# IEEE 1394 (FireWire) support
77999 +#
78000 +# CONFIG_FIREWIRE is not set
78001 +# CONFIG_IEEE1394 is not set
78002 +# CONFIG_I2O is not set
78003 +# CONFIG_MACINTOSH_DRIVERS is not set
78004 +CONFIG_NETDEVICES=y
78005 +# CONFIG_NETDEVICES_MULTIQUEUE is not set
78006 +CONFIG_DUMMY=m
78007 +CONFIG_BONDING=m
78008 +# CONFIG_MACVLAN is not set
78009 +# CONFIG_EQUALIZER is not set
78010 +CONFIG_TUN=m
78011 +# CONFIG_VETH is not set
78012 +# CONFIG_ARCNET is not set
78013 +CONFIG_PHYLIB=y
78014 +
78015 +#
78016 +# MII PHY device drivers
78017 +#
78018 +# CONFIG_MARVELL_PHY is not set
78019 +# CONFIG_DAVICOM_PHY is not set
78020 +# CONFIG_QSEMI_PHY is not set
78021 +# CONFIG_LXT_PHY is not set
78022 +# CONFIG_CICADA_PHY is not set
78023 +# CONFIG_VITESSE_PHY is not set
78024 +# CONFIG_SMSC_PHY is not set
78025 +CONFIG_BROADCOM_PHY=y
78026 +# CONFIG_ICPLUS_PHY is not set
78027 +# CONFIG_REALTEK_PHY is not set
78028 +# CONFIG_FIXED_PHY is not set
78029 +# CONFIG_MDIO_BITBANG is not set
78030 +CONFIG_NET_ETHERNET=y
78031 +CONFIG_MII=y
78032 +# CONFIG_HAPPYMEAL is not set
78033 +# CONFIG_SUNGEM is not set
78034 +# CONFIG_CASSINI is not set
78035 +# CONFIG_NET_VENDOR_3COM is not set
78036 +# CONFIG_NET_TULIP is not set
78037 +# CONFIG_HP100 is not set
78038 +# CONFIG_IBM_NEW_EMAC_ZMII is not set
78039 +# CONFIG_IBM_NEW_EMAC_RGMII is not set
78040 +# CONFIG_IBM_NEW_EMAC_TAH is not set
78041 +# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
78042 +# CONFIG_NET_PCI is not set
78043 +# CONFIG_B44 is not set
78044 +CONFIG_NETDEV_1000=y
78045 +# CONFIG_ACENIC is not set
78046 +# CONFIG_DL2K is not set
78047 +# CONFIG_E1000 is not set
78048 +# CONFIG_E1000E is not set
78049 +# CONFIG_E1000E_ENABLED is not set
78050 +# CONFIG_IP1000 is not set
78051 +# CONFIG_IGB is not set
78052 +# CONFIG_NS83820 is not set
78053 +# CONFIG_HAMACHI is not set
78054 +# CONFIG_YELLOWFIN is not set
78055 +# CONFIG_R8169 is not set
78056 +# CONFIG_SIS190 is not set
78057 +# CONFIG_SKGE is not set
78058 +# CONFIG_SKY2 is not set
78059 +# CONFIG_SK98LIN is not set
78060 +# CONFIG_VIA_VELOCITY is not set
78061 +# CONFIG_TIGON3 is not set
78062 +# CONFIG_BNX2 is not set
78063 +CONFIG_GIANFAR=y
78064 +# CONFIG_GFAR_NAPI is not set
78065 +# CONFIG_QLA3XXX is not set
78066 +# CONFIG_ATL1 is not set
78067 +# CONFIG_NETDEV_10000 is not set
78068 +# CONFIG_TR is not set
78069 +
78070 +#
78071 +# Wireless LAN
78072 +#
78073 +# CONFIG_WLAN_PRE80211 is not set
78074 +# CONFIG_WLAN_80211 is not set
78075 +# CONFIG_WAN is not set
78076 +CONFIG_ATM_DRIVERS=y
78077 +# CONFIG_ATM_DUMMY is not set
78078 +# CONFIG_ATM_TCP is not set
78079 +# CONFIG_ATM_LANAI is not set
78080 +# CONFIG_ATM_ENI is not set
78081 +# CONFIG_ATM_FIRESTREAM is not set
78082 +# CONFIG_ATM_ZATM is not set
78083 +# CONFIG_ATM_NICSTAR is not set
78084 +# CONFIG_ATM_IDT77252 is not set
78085 +# CONFIG_ATM_AMBASSADOR is not set
78086 +# CONFIG_ATM_HORIZON is not set
78087 +# CONFIG_ATM_IA is not set
78088 +# CONFIG_ATM_FORE200E_MAYBE is not set
78089 +# CONFIG_ATM_HE is not set
78090 +# CONFIG_FDDI is not set
78091 +# CONFIG_HIPPI is not set
78092 +CONFIG_PPP=m
78093 +CONFIG_PPP_MULTILINK=y
78094 +CONFIG_PPP_FILTER=y
78095 +CONFIG_PPP_ASYNC=m
78096 +CONFIG_PPP_SYNC_TTY=m
78097 +CONFIG_PPP_DEFLATE=m
78098 +CONFIG_PPP_BSDCOMP=m
78099 +# CONFIG_PPP_MPPE is not set
78100 +CONFIG_PPPOE=m
78101 +CONFIG_PPPOATM=m
78102 +# CONFIG_PPPOL2TP is not set
78103 +CONFIG_SLIP=m
78104 +CONFIG_SLIP_COMPRESSED=y
78105 +CONFIG_SLHC=m
78106 +CONFIG_SLIP_SMART=y
78107 +CONFIG_SLIP_MODE_SLIP6=y
78108 +CONFIG_NETCONSOLE=y
78109 +# CONFIG_NETCONSOLE_DYNAMIC is not set
78110 +CONFIG_NETPOLL=y
78111 +CONFIG_NETPOLL_TRAP=y
78112 +CONFIG_NET_POLL_CONTROLLER=y
78113 +# CONFIG_ISDN is not set
78114 +# CONFIG_PHONE is not set
78115 +
78116 +#
78117 +# Input device support
78118 +#
78119 +CONFIG_INPUT=y
78120 +# CONFIG_INPUT_FF_MEMLESS is not set
78121 +# CONFIG_INPUT_POLLDEV is not set
78122 +
78123 +#
78124 +# Userland interfaces
78125 +#
78126 +CONFIG_INPUT_MOUSEDEV=y
78127 +CONFIG_INPUT_MOUSEDEV_PSAUX=y
78128 +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
78129 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
78130 +# CONFIG_INPUT_JOYDEV is not set
78131 +# CONFIG_INPUT_EVDEV is not set
78132 +# CONFIG_INPUT_EVBUG is not set
78133 +
78134 +#
78135 +# Input Device Drivers
78136 +#
78137 +# CONFIG_INPUT_KEYBOARD is not set
78138 +# CONFIG_INPUT_MOUSE is not set
78139 +# CONFIG_INPUT_JOYSTICK is not set
78140 +# CONFIG_INPUT_TABLET is not set
78141 +# CONFIG_INPUT_TOUCHSCREEN is not set
78142 +# CONFIG_INPUT_MISC is not set
78143 +
78144 +#
78145 +# Hardware I/O ports
78146 +#
78147 +# CONFIG_SERIO is not set
78148 +# CONFIG_GAMEPORT is not set
78149 +
78150 +#
78151 +# Character devices
78152 +#
78153 +CONFIG_VT=y
78154 +CONFIG_VT_CONSOLE=y
78155 +CONFIG_HW_CONSOLE=y
78156 +# CONFIG_VT_HW_CONSOLE_BINDING is not set
78157 +# CONFIG_SERIAL_NONSTANDARD is not set
78158 +# CONFIG_NOZOMI is not set
78159 +
78160 +#
78161 +# Serial drivers
78162 +#
78163 +CONFIG_SERIAL_8250=y
78164 +CONFIG_SERIAL_8250_CONSOLE=y
78165 +# CONFIG_SERIAL_8250_PCI is not set
78166 +CONFIG_SERIAL_8250_NR_UARTS=2
78167 +CONFIG_SERIAL_8250_RUNTIME_UARTS=2
78168 +# CONFIG_SERIAL_8250_EXTENDED is not set
78169 +
78170 +#
78171 +# Non-8250 serial port support
78172 +#
78173 +# CONFIG_SERIAL_UARTLITE is not set
78174 +CONFIG_SERIAL_CORE=y
78175 +CONFIG_SERIAL_CORE_CONSOLE=y
78176 +# CONFIG_SERIAL_JSM is not set
78177 +# CONFIG_SERIAL_OF_PLATFORM is not set
78178 +CONFIG_UNIX98_PTYS=y
78179 +CONFIG_LEGACY_PTYS=y
78180 +CONFIG_LEGACY_PTY_COUNT=256
78181 +# CONFIG_IPMI_HANDLER is not set
78182 +CONFIG_HW_RANDOM=m
78183 +# CONFIG_NVRAM is not set
78184 +# CONFIG_GEN_RTC is not set
78185 +# CONFIG_R3964 is not set
78186 +# CONFIG_APPLICOM is not set
78187 +# CONFIG_RAW_DRIVER is not set
78188 +# CONFIG_TCG_TPM is not set
78189 +CONFIG_DEVPORT=y
78190 +CONFIG_I2C=y
78191 +CONFIG_I2C_BOARDINFO=y
78192 +CONFIG_I2C_CHARDEV=y
78193 +
78194 +#
78195 +# I2C Algorithms
78196 +#
78197 +# CONFIG_I2C_ALGOBIT is not set
78198 +# CONFIG_I2C_ALGOPCF is not set
78199 +# CONFIG_I2C_ALGOPCA is not set
78200 +
78201 +#
78202 +# I2C Hardware Bus support
78203 +#
78204 +# CONFIG_I2C_ALI1535 is not set
78205 +# CONFIG_I2C_ALI1563 is not set
78206 +# CONFIG_I2C_ALI15X3 is not set
78207 +# CONFIG_I2C_AMD756 is not set
78208 +# CONFIG_I2C_AMD8111 is not set
78209 +# CONFIG_I2C_I801 is not set
78210 +# CONFIG_I2C_I810 is not set
78211 +# CONFIG_I2C_PIIX4 is not set
78212 +CONFIG_I2C_MPC=y
78213 +# CONFIG_I2C_NFORCE2 is not set
78214 +# CONFIG_I2C_OCORES is not set
78215 +# CONFIG_I2C_PARPORT_LIGHT is not set
78216 +# CONFIG_I2C_PROSAVAGE is not set
78217 +# CONFIG_I2C_SAVAGE4 is not set
78218 +# CONFIG_I2C_SIMTEC is not set
78219 +# CONFIG_I2C_SIS5595 is not set
78220 +# CONFIG_I2C_SIS630 is not set
78221 +# CONFIG_I2C_SIS96X is not set
78222 +# CONFIG_I2C_TAOS_EVM is not set
78223 +# CONFIG_I2C_STUB is not set
78224 +# CONFIG_I2C_VIA is not set
78225 +# CONFIG_I2C_VIAPRO is not set
78226 +# CONFIG_I2C_VOODOO3 is not set
78227 +
78228 +#
78229 +# Miscellaneous I2C Chip support
78230 +#
78231 +# CONFIG_DS1682 is not set
78232 +# CONFIG_SENSORS_EEPROM is not set
78233 +# CONFIG_SENSORS_PCF8574 is not set
78234 +# CONFIG_PCF8575 is not set
78235 +# CONFIG_SENSORS_PCF8591 is not set
78236 +# CONFIG_TPS65010 is not set
78237 +# CONFIG_SENSORS_MAX6875 is not set
78238 +# CONFIG_SENSORS_TSL2550 is not set
78239 +# CONFIG_I2C_DEBUG_CORE is not set
78240 +# CONFIG_I2C_DEBUG_ALGO is not set
78241 +# CONFIG_I2C_DEBUG_BUS is not set
78242 +# CONFIG_I2C_DEBUG_CHIP is not set
78243 +
78244 +#
78245 +# SPI support
78246 +#
78247 +# CONFIG_SPI is not set
78248 +# CONFIG_SPI_MASTER is not set
78249 +# CONFIG_W1 is not set
78250 +# CONFIG_POWER_SUPPLY is not set
78251 +CONFIG_HWMON=y
78252 +# CONFIG_HWMON_VID is not set
78253 +# CONFIG_SENSORS_AD7418 is not set
78254 +# CONFIG_SENSORS_ADM1021 is not set
78255 +# CONFIG_SENSORS_ADM1025 is not set
78256 +# CONFIG_SENSORS_ADM1026 is not set
78257 +# CONFIG_SENSORS_ADM1029 is not set
78258 +# CONFIG_SENSORS_ADM1031 is not set
78259 +# CONFIG_SENSORS_ADM9240 is not set
78260 +# CONFIG_SENSORS_ADT7470 is not set
78261 +# CONFIG_SENSORS_ADT7473 is not set
78262 +# CONFIG_SENSORS_ATXP1 is not set
78263 +# CONFIG_SENSORS_DS1621 is not set
78264 +# CONFIG_SENSORS_I5K_AMB is not set
78265 +# CONFIG_SENSORS_F71805F is not set
78266 +# CONFIG_SENSORS_F71882FG is not set
78267 +# CONFIG_SENSORS_F75375S is not set
78268 +# CONFIG_SENSORS_GL518SM is not set
78269 +# CONFIG_SENSORS_GL520SM is not set
78270 +# CONFIG_SENSORS_IT87 is not set
78271 +# CONFIG_SENSORS_LM63 is not set
78272 +# CONFIG_SENSORS_LM75 is not set
78273 +# CONFIG_SENSORS_LM77 is not set
78274 +# CONFIG_SENSORS_LM78 is not set
78275 +# CONFIG_SENSORS_LM80 is not set
78276 +# CONFIG_SENSORS_LM83 is not set
78277 +# CONFIG_SENSORS_LM85 is not set
78278 +# CONFIG_SENSORS_LM87 is not set
78279 +# CONFIG_SENSORS_LM90 is not set
78280 +# CONFIG_SENSORS_LM92 is not set
78281 +# CONFIG_SENSORS_LM93 is not set
78282 +# CONFIG_SENSORS_MAX1619 is not set
78283 +# CONFIG_SENSORS_MAX6650 is not set
78284 +# CONFIG_SENSORS_PC87360 is not set
78285 +# CONFIG_SENSORS_PC87427 is not set
78286 +# CONFIG_SENSORS_SIS5595 is not set
78287 +# CONFIG_SENSORS_DME1737 is not set
78288 +# CONFIG_SENSORS_SMSC47M1 is not set
78289 +# CONFIG_SENSORS_SMSC47M192 is not set
78290 +# CONFIG_SENSORS_SMSC47B397 is not set
78291 +# CONFIG_SENSORS_ADS7828 is not set
78292 +# CONFIG_SENSORS_THMC50 is not set
78293 +# CONFIG_SENSORS_VIA686A is not set
78294 +# CONFIG_SENSORS_VT1211 is not set
78295 +# CONFIG_SENSORS_VT8231 is not set
78296 +# CONFIG_SENSORS_W83781D is not set
78297 +# CONFIG_SENSORS_W83791D is not set
78298 +# CONFIG_SENSORS_W83792D is not set
78299 +# CONFIG_SENSORS_W83793 is not set
78300 +# CONFIG_SENSORS_W83L785TS is not set
78301 +# CONFIG_SENSORS_W83L786NG is not set
78302 +# CONFIG_SENSORS_W83627HF is not set
78303 +# CONFIG_SENSORS_W83627EHF is not set
78304 +# CONFIG_HWMON_DEBUG_CHIP is not set
78305 +# CONFIG_THERMAL is not set
78306 +CONFIG_WATCHDOG=y
78307 +# CONFIG_WATCHDOG_NOWAYOUT is not set
78308 +
78309 +#
78310 +# Watchdog Device Drivers
78311 +#
78312 +CONFIG_SOFT_WATCHDOG=m
78313 +
78314 +#
78315 +# PCI-based Watchdog Cards
78316 +#
78317 +# CONFIG_PCIPCWATCHDOG is not set
78318 +# CONFIG_WDTPCI is not set
78319 +
78320 +#
78321 +# Sonics Silicon Backplane
78322 +#
78323 +CONFIG_SSB_POSSIBLE=y
78324 +# CONFIG_SSB is not set
78325 +
78326 +#
78327 +# Multifunction device drivers
78328 +#
78329 +# CONFIG_MFD_SM501 is not set
78330 +
78331 +#
78332 +# Multimedia devices
78333 +#
78334 +# CONFIG_VIDEO_DEV is not set
78335 +# CONFIG_DVB_CORE is not set
78336 +CONFIG_DAB=y
78337 +
78338 +#
78339 +# Graphics support
78340 +#
78341 +# CONFIG_AGP is not set
78342 +# CONFIG_DRM is not set
78343 +# CONFIG_VGASTATE is not set
78344 +CONFIG_VIDEO_OUTPUT_CONTROL=m
78345 +# CONFIG_FB is not set
78346 +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
78347 +
78348 +#
78349 +# Display device support
78350 +#
78351 +# CONFIG_DISPLAY_SUPPORT is not set
78352 +
78353 +#
78354 +# Console display driver support
78355 +#
78356 +CONFIG_VGA_CONSOLE=y
78357 +# CONFIG_VGACON_SOFT_SCROLLBACK is not set
78358 +CONFIG_DUMMY_CONSOLE=y
78359 +
78360 +#
78361 +# Sound
78362 +#
78363 +# CONFIG_SOUND is not set
78364 +CONFIG_HID_SUPPORT=y
78365 +CONFIG_HID=y
78366 +# CONFIG_HID_DEBUG is not set
78367 +# CONFIG_HIDRAW is not set
78368 +CONFIG_USB_SUPPORT=y
78369 +CONFIG_USB_ARCH_HAS_HCD=y
78370 +CONFIG_USB_ARCH_HAS_OHCI=y
78371 +CONFIG_USB_ARCH_HAS_EHCI=y
78372 +# CONFIG_USB is not set
78373 +
78374 +#
78375 +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
78376 +#
78377 +# CONFIG_USB_GADGET is not set
78378 +# CONFIG_MMC is not set
78379 +# CONFIG_MEMSTICK is not set
78380 +# CONFIG_NEW_LEDS is not set
78381 +# CONFIG_INFINIBAND is not set
78382 +# CONFIG_EDAC is not set
78383 +# CONFIG_RTC_CLASS is not set
78384 +# CONFIG_DMADEVICES is not set
78385 +
78386 +#
78387 +# Userspace I/O
78388 +#
78389 +# CONFIG_UIO is not set
78390 +
78391 +#
78392 +# File systems
78393 +#
78394 +CONFIG_EXT2_FS=y
78395 +CONFIG_EXT2_FS_XATTR=y
78396 +CONFIG_EXT2_FS_POSIX_ACL=y
78397 +# CONFIG_EXT2_FS_SECURITY is not set
78398 +# CONFIG_EXT2_FS_XIP is not set
78399 +CONFIG_EXT3_FS=y
78400 +CONFIG_EXT3_FS_XATTR=y
78401 +CONFIG_EXT3_FS_POSIX_ACL=y
78402 +# CONFIG_EXT3_FS_SECURITY is not set
78403 +# CONFIG_EXT4DEV_FS is not set
78404 +CONFIG_JBD=y
78405 +# CONFIG_JBD_DEBUG is not set
78406 +CONFIG_FS_MBCACHE=y
78407 +CONFIG_REISERFS_FS=m
78408 +# CONFIG_REISERFS_CHECK is not set
78409 +# CONFIG_REISERFS_PROC_INFO is not set
78410 +CONFIG_REISERFS_FS_XATTR=y
78411 +CONFIG_REISERFS_FS_POSIX_ACL=y
78412 +# CONFIG_REISERFS_FS_SECURITY is not set
78413 +# CONFIG_JFS_FS is not set
78414 +CONFIG_FS_POSIX_ACL=y
78415 +# CONFIG_XFS_FS is not set
78416 +# CONFIG_GFS2_FS is not set
78417 +CONFIG_OCFS2_FS=m
78418 +CONFIG_OCFS2_DEBUG_MASKLOG=y
78419 +# CONFIG_OCFS2_DEBUG_FS is not set
78420 +CONFIG_DNOTIFY=y
78421 +CONFIG_INOTIFY=y
78422 +CONFIG_INOTIFY_USER=y
78423 +# CONFIG_QUOTA is not set
78424 +CONFIG_AUTOFS_FS=m
78425 +CONFIG_AUTOFS4_FS=m
78426 +# CONFIG_FUSE_FS is not set
78427 +
78428 +#
78429 +# CD-ROM/DVD Filesystems
78430 +#
78431 +# CONFIG_ISO9660_FS is not set
78432 +# CONFIG_UDF_FS is not set
78433 +
78434 +#
78435 +# DOS/FAT/NT Filesystems
78436 +#
78437 +# CONFIG_MSDOS_FS is not set
78438 +# CONFIG_VFAT_FS is not set
78439 +# CONFIG_NTFS_FS is not set
78440 +
78441 +#
78442 +# Pseudo filesystems
78443 +#
78444 +CONFIG_PROC_FS=y
78445 +CONFIG_PROC_KCORE=y
78446 +CONFIG_PROC_SYSCTL=y
78447 +CONFIG_SYSFS=y
78448 +CONFIG_TMPFS=y
78449 +# CONFIG_TMPFS_POSIX_ACL is not set
78450 +# CONFIG_HUGETLB_PAGE is not set
78451 +CONFIG_CONFIGFS_FS=m
78452 +
78453 +#
78454 +# Miscellaneous filesystems
78455 +#
78456 +# CONFIG_ADFS_FS is not set
78457 +# CONFIG_AFFS_FS is not set
78458 +# CONFIG_HFS_FS is not set
78459 +# CONFIG_HFSPLUS_FS is not set
78460 +# CONFIG_BEFS_FS is not set
78461 +# CONFIG_BFS_FS is not set
78462 +# CONFIG_EFS_FS is not set
78463 +# CONFIG_JFFS2_FS is not set
78464 +# CONFIG_CRAMFS is not set
78465 +# CONFIG_VXFS_FS is not set
78466 +CONFIG_MINIX_FS=m
78467 +# CONFIG_HPFS_FS is not set
78468 +# CONFIG_QNX4FS_FS is not set
78469 +CONFIG_ROMFS_FS=m
78470 +# CONFIG_SYSV_FS is not set
78471 +# CONFIG_UFS_FS is not set
78472 +CONFIG_NETWORK_FILESYSTEMS=y
78473 +CONFIG_NFS_FS=y
78474 +CONFIG_NFS_V3=y
78475 +# CONFIG_NFS_V3_ACL is not set
78476 +CONFIG_NFS_V4=y
78477 +CONFIG_NFS_DIRECTIO=y
78478 +# CONFIG_NFSD is not set
78479 +CONFIG_ROOT_NFS=y
78480 +CONFIG_LOCKD=y
78481 +CONFIG_LOCKD_V4=y
78482 +CONFIG_NFS_COMMON=y
78483 +CONFIG_SUNRPC=y
78484 +CONFIG_SUNRPC_GSS=y
78485 +# CONFIG_SUNRPC_BIND34 is not set
78486 +CONFIG_RPCSEC_GSS_KRB5=y
78487 +# CONFIG_RPCSEC_GSS_SPKM3 is not set
78488 +CONFIG_SMB_FS=m
78489 +CONFIG_SMB_NLS_DEFAULT=y
78490 +CONFIG_SMB_NLS_REMOTE="cp437"
78491 +CONFIG_CIFS=m
78492 +# CONFIG_CIFS_STATS is not set
78493 +# CONFIG_CIFS_WEAK_PW_HASH is not set
78494 +CONFIG_CIFS_XATTR=y
78495 +CONFIG_CIFS_POSIX=y
78496 +# CONFIG_CIFS_DEBUG2 is not set
78497 +# CONFIG_CIFS_EXPERIMENTAL is not set
78498 +# CONFIG_NCP_FS is not set
78499 +# CONFIG_CODA_FS is not set
78500 +# CONFIG_AFS_FS is not set
78501 +
78502 +#
78503 +# Partition Types
78504 +#
78505 +# CONFIG_PARTITION_ADVANCED is not set
78506 +CONFIG_MSDOS_PARTITION=y
78507 +CONFIG_NLS=m
78508 +CONFIG_NLS_DEFAULT="iso8859-1"
78509 +CONFIG_NLS_CODEPAGE_437=m
78510 +CONFIG_NLS_CODEPAGE_737=m
78511 +CONFIG_NLS_CODEPAGE_775=m
78512 +CONFIG_NLS_CODEPAGE_850=m
78513 +CONFIG_NLS_CODEPAGE_852=m
78514 +CONFIG_NLS_CODEPAGE_855=m
78515 +CONFIG_NLS_CODEPAGE_857=m
78516 +CONFIG_NLS_CODEPAGE_860=m
78517 +CONFIG_NLS_CODEPAGE_861=m
78518 +CONFIG_NLS_CODEPAGE_862=m
78519 +CONFIG_NLS_CODEPAGE_863=m
78520 +CONFIG_NLS_CODEPAGE_864=m
78521 +CONFIG_NLS_CODEPAGE_865=m
78522 +CONFIG_NLS_CODEPAGE_866=m
78523 +CONFIG_NLS_CODEPAGE_869=m
78524 +CONFIG_NLS_CODEPAGE_936=m
78525 +CONFIG_NLS_CODEPAGE_950=m
78526 +CONFIG_NLS_CODEPAGE_932=m
78527 +CONFIG_NLS_CODEPAGE_949=m
78528 +CONFIG_NLS_CODEPAGE_874=m
78529 +CONFIG_NLS_ISO8859_8=m
78530 +CONFIG_NLS_CODEPAGE_1250=m
78531 +CONFIG_NLS_CODEPAGE_1251=m
78532 +CONFIG_NLS_ASCII=m
78533 +CONFIG_NLS_ISO8859_1=m
78534 +CONFIG_NLS_ISO8859_2=m
78535 +CONFIG_NLS_ISO8859_3=m
78536 +CONFIG_NLS_ISO8859_4=m
78537 +CONFIG_NLS_ISO8859_5=m
78538 +CONFIG_NLS_ISO8859_6=m
78539 +CONFIG_NLS_ISO8859_7=m
78540 +CONFIG_NLS_ISO8859_9=m
78541 +CONFIG_NLS_ISO8859_13=m
78542 +CONFIG_NLS_ISO8859_14=m
78543 +CONFIG_NLS_ISO8859_15=m
78544 +CONFIG_NLS_KOI8_R=m
78545 +CONFIG_NLS_KOI8_U=m
78546 +CONFIG_NLS_UTF8=m
78547 +# CONFIG_DLM is not set
78548 +
78549 +#
78550 +# Library routines
78551 +#
78552 +CONFIG_BITREVERSE=y
78553 +CONFIG_CRC_CCITT=m
78554 +# CONFIG_CRC16 is not set
78555 +# CONFIG_CRC_ITU_T is not set
78556 +CONFIG_CRC32=y
78557 +# CONFIG_CRC7 is not set
78558 +CONFIG_LIBCRC32C=m
78559 +CONFIG_ZLIB_INFLATE=m
78560 +CONFIG_ZLIB_DEFLATE=m
78561 +CONFIG_PLIST=y
78562 +CONFIG_HAS_IOMEM=y
78563 +CONFIG_HAS_IOPORT=y
78564 +CONFIG_HAS_DMA=y
78565 +CONFIG_HAVE_LMB=y
78566 +
78567 +#
78568 +# Kernel hacking
78569 +#
78570 +# CONFIG_PRINTK_TIME is not set
78571 +CONFIG_ENABLE_WARN_DEPRECATED=y
78572 +CONFIG_ENABLE_MUST_CHECK=y
78573 +CONFIG_MAGIC_SYSRQ=y
78574 +# CONFIG_UNUSED_SYMBOLS is not set
78575 +CONFIG_DEBUG_FS=y
78576 +# CONFIG_HEADERS_CHECK is not set
78577 +CONFIG_DEBUG_KERNEL=y
78578 +# CONFIG_DEBUG_SHIRQ is not set
78579 +CONFIG_DETECT_SOFTLOCKUP=y
78580 +CONFIG_SCHED_DEBUG=y
78581 +# CONFIG_SCHEDSTATS is not set
78582 +# CONFIG_TIMER_STATS is not set
78583 +# CONFIG_DEBUG_SLAB is not set
78584 +# CONFIG_DEBUG_RT_MUTEXES is not set
78585 +# CONFIG_RT_MUTEX_TESTER is not set
78586 +# CONFIG_DEBUG_SPINLOCK is not set
78587 +# CONFIG_DEBUG_MUTEXES is not set
78588 +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
78589 +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
78590 +# CONFIG_DEBUG_KOBJECT is not set
78591 +# CONFIG_DEBUG_BUGVERBOSE is not set
78592 +CONFIG_DEBUG_INFO=y
78593 +# CONFIG_DEBUG_VM is not set
78594 +# CONFIG_DEBUG_LIST is not set
78595 +# CONFIG_DEBUG_SG is not set
78596 +# CONFIG_BOOT_PRINTK_DELAY is not set
78597 +# CONFIG_RCU_TORTURE_TEST is not set
78598 +# CONFIG_BACKTRACE_SELF_TEST is not set
78599 +# CONFIG_FAULT_INJECTION is not set
78600 +# CONFIG_SAMPLES is not set
78601 +# CONFIG_DEBUG_STACKOVERFLOW is not set
78602 +# CONFIG_DEBUG_STACK_USAGE is not set
78603 +# CONFIG_DEBUG_PAGEALLOC is not set
78604 +CONFIG_DEBUGGER=y
78605 +# CONFIG_XMON is not set
78606 +# CONFIG_VIRQ_DEBUG is not set
78607 +# CONFIG_BDI_SWITCH is not set
78608 +# CONFIG_PPC_EARLY_DEBUG is not set
78609 +
78610 +#
78611 +# Security options
78612 +#
78613 +# CONFIG_KEYS is not set
78614 +CONFIG_SECURITY=y
78615 +CONFIG_SECURITY_NETWORK=y
78616 +# CONFIG_SECURITY_NETWORK_XFRM is not set
78617 +CONFIG_SECURITY_CAPABILITIES=y
78618 +# CONFIG_SECURITY_FILE_CAPABILITIES is not set
78619 +CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
78620 +CONFIG_CRYPTO=y
78621 +CONFIG_CRYPTO_ALGAPI=y
78622 +CONFIG_CRYPTO_AEAD=m
78623 +CONFIG_CRYPTO_BLKCIPHER=y
78624 +# CONFIG_CRYPTO_SEQIV is not set
78625 +CONFIG_CRYPTO_HASH=y
78626 +CONFIG_CRYPTO_MANAGER=y
78627 +CONFIG_CRYPTO_HMAC=y
78628 +# CONFIG_CRYPTO_XCBC is not set
78629 +CONFIG_CRYPTO_NULL=m
78630 +CONFIG_CRYPTO_MD4=m
78631 +CONFIG_CRYPTO_MD5=y
78632 +CONFIG_CRYPTO_SHA1=m
78633 +CONFIG_CRYPTO_SHA256=m
78634 +CONFIG_CRYPTO_SHA512=m
78635 +CONFIG_CRYPTO_WP512=m
78636 +# CONFIG_CRYPTO_TGR192 is not set
78637 +# CONFIG_CRYPTO_GF128MUL is not set
78638 +CONFIG_CRYPTO_ECB=m
78639 +CONFIG_CRYPTO_CBC=y
78640 +CONFIG_CRYPTO_PCBC=m
78641 +# CONFIG_CRYPTO_LRW is not set
78642 +# CONFIG_CRYPTO_XTS is not set
78643 +# CONFIG_CRYPTO_CTR is not set
78644 +# CONFIG_CRYPTO_GCM is not set
78645 +# CONFIG_CRYPTO_CCM is not set
78646 +# CONFIG_CRYPTO_CRYPTD is not set
78647 +CONFIG_CRYPTO_DES=y
78648 +# CONFIG_CRYPTO_FCRYPT is not set
78649 +CONFIG_CRYPTO_BLOWFISH=m
78650 +CONFIG_CRYPTO_TWOFISH=m
78651 +CONFIG_CRYPTO_TWOFISH_COMMON=m
78652 +CONFIG_CRYPTO_SERPENT=m
78653 +CONFIG_CRYPTO_AES=m
78654 +CONFIG_CRYPTO_CAST5=m
78655 +CONFIG_CRYPTO_CAST6=m
78656 +CONFIG_CRYPTO_TEA=m
78657 +CONFIG_CRYPTO_ARC4=m
78658 +CONFIG_CRYPTO_KHAZAD=m
78659 +CONFIG_CRYPTO_ANUBIS=m
78660 +# CONFIG_CRYPTO_SEED is not set
78661 +# CONFIG_CRYPTO_SALSA20 is not set
78662 +CONFIG_CRYPTO_DEFLATE=m
78663 +CONFIG_CRYPTO_MICHAEL_MIC=m
78664 +CONFIG_CRYPTO_CRC32C=m
78665 +# CONFIG_CRYPTO_CAMELLIA is not set
78666 +CONFIG_CRYPTO_TEST=m
78667 +CONFIG_CRYPTO_AUTHENC=m
78668 +# CONFIG_CRYPTO_LZO is not set
78669 +CONFIG_CRYPTO_HW=y
78670 +# CONFIG_CRYPTO_DEV_HIFN_795X is not set
78671 +# CONFIG_PPC_CLOCK is not set
78672 Index: linux-2.6.25.4/arch/powerpc/configs/sequoia_defconfig
78673 ===================================================================
78674 --- linux-2.6.25.4.orig/arch/powerpc/configs/sequoia_defconfig
78675 +++ /dev/null
78676 @@ -1,916 +0,0 @@
78677 -#
78678 -# Automatically generated make config: don't edit
78679 -# Linux kernel version: 2.6.25-rc2
78680 -# Fri Feb 15 21:53:46 2008
78681 -#
78682 -# CONFIG_PPC64 is not set
78683 -
78684 -#
78685 -# Processor support
78686 -#
78687 -# CONFIG_6xx is not set
78688 -# CONFIG_PPC_85xx is not set
78689 -# CONFIG_PPC_8xx is not set
78690 -# CONFIG_40x is not set
78691 -CONFIG_44x=y
78692 -# CONFIG_E200 is not set
78693 -CONFIG_PPC_FPU=y
78694 -CONFIG_4xx=y
78695 -CONFIG_BOOKE=y
78696 -CONFIG_PTE_64BIT=y
78697 -CONFIG_PHYS_64BIT=y
78698 -# CONFIG_PPC_MM_SLICES is not set
78699 -CONFIG_NOT_COHERENT_CACHE=y
78700 -CONFIG_PPC32=y
78701 -CONFIG_WORD_SIZE=32
78702 -CONFIG_PPC_MERGE=y
78703 -CONFIG_MMU=y
78704 -CONFIG_GENERIC_CMOS_UPDATE=y
78705 -CONFIG_GENERIC_TIME=y
78706 -CONFIG_GENERIC_TIME_VSYSCALL=y
78707 -CONFIG_GENERIC_CLOCKEVENTS=y
78708 -CONFIG_GENERIC_HARDIRQS=y
78709 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
78710 -CONFIG_IRQ_PER_CPU=y
78711 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
78712 -CONFIG_ARCH_HAS_ILOG2_U32=y
78713 -CONFIG_GENERIC_HWEIGHT=y
78714 -CONFIG_GENERIC_CALIBRATE_DELAY=y
78715 -CONFIG_GENERIC_FIND_NEXT_BIT=y
78716 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
78717 -CONFIG_PPC=y
78718 -CONFIG_EARLY_PRINTK=y
78719 -CONFIG_GENERIC_NVRAM=y
78720 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
78721 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
78722 -CONFIG_PPC_OF=y
78723 -CONFIG_OF=y
78724 -CONFIG_PPC_UDBG_16550=y
78725 -# CONFIG_GENERIC_TBSYNC is not set
78726 -CONFIG_AUDIT_ARCH=y
78727 -CONFIG_GENERIC_BUG=y
78728 -# CONFIG_DEFAULT_UIMAGE is not set
78729 -CONFIG_PPC_DCR_NATIVE=y
78730 -# CONFIG_PPC_DCR_MMIO is not set
78731 -CONFIG_PPC_DCR=y
78732 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
78733 -
78734 -#
78735 -# General setup
78736 -#
78737 -CONFIG_EXPERIMENTAL=y
78738 -CONFIG_BROKEN_ON_SMP=y
78739 -CONFIG_INIT_ENV_ARG_LIMIT=32
78740 -CONFIG_LOCALVERSION=""
78741 -CONFIG_LOCALVERSION_AUTO=y
78742 -CONFIG_SWAP=y
78743 -CONFIG_SYSVIPC=y
78744 -CONFIG_SYSVIPC_SYSCTL=y
78745 -CONFIG_POSIX_MQUEUE=y
78746 -# CONFIG_BSD_PROCESS_ACCT is not set
78747 -# CONFIG_TASKSTATS is not set
78748 -# CONFIG_AUDIT is not set
78749 -# CONFIG_IKCONFIG is not set
78750 -CONFIG_LOG_BUF_SHIFT=14
78751 -# CONFIG_CGROUPS is not set
78752 -CONFIG_GROUP_SCHED=y
78753 -# CONFIG_FAIR_GROUP_SCHED is not set
78754 -# CONFIG_RT_GROUP_SCHED is not set
78755 -CONFIG_USER_SCHED=y
78756 -# CONFIG_CGROUP_SCHED is not set
78757 -CONFIG_SYSFS_DEPRECATED=y
78758 -# CONFIG_RELAY is not set
78759 -# CONFIG_NAMESPACES is not set
78760 -CONFIG_BLK_DEV_INITRD=y
78761 -CONFIG_INITRAMFS_SOURCE=""
78762 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
78763 -CONFIG_SYSCTL=y
78764 -CONFIG_EMBEDDED=y
78765 -CONFIG_SYSCTL_SYSCALL=y
78766 -CONFIG_KALLSYMS=y
78767 -# CONFIG_KALLSYMS_ALL is not set
78768 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
78769 -CONFIG_HOTPLUG=y
78770 -CONFIG_PRINTK=y
78771 -CONFIG_BUG=y
78772 -CONFIG_ELF_CORE=y
78773 -CONFIG_COMPAT_BRK=y
78774 -CONFIG_BASE_FULL=y
78775 -CONFIG_FUTEX=y
78776 -CONFIG_ANON_INODES=y
78777 -CONFIG_EPOLL=y
78778 -CONFIG_SIGNALFD=y
78779 -CONFIG_TIMERFD=y
78780 -CONFIG_EVENTFD=y
78781 -CONFIG_SHMEM=y
78782 -CONFIG_VM_EVENT_COUNTERS=y
78783 -CONFIG_SLUB_DEBUG=y
78784 -# CONFIG_SLAB is not set
78785 -CONFIG_SLUB=y
78786 -# CONFIG_SLOB is not set
78787 -# CONFIG_PROFILING is not set
78788 -# CONFIG_MARKERS is not set
78789 -CONFIG_HAVE_OPROFILE=y
78790 -# CONFIG_KPROBES is not set
78791 -CONFIG_HAVE_KPROBES=y
78792 -CONFIG_PROC_PAGE_MONITOR=y
78793 -CONFIG_SLABINFO=y
78794 -CONFIG_RT_MUTEXES=y
78795 -# CONFIG_TINY_SHMEM is not set
78796 -CONFIG_BASE_SMALL=0
78797 -CONFIG_MODULES=y
78798 -CONFIG_MODULE_UNLOAD=y
78799 -# CONFIG_MODULE_FORCE_UNLOAD is not set
78800 -# CONFIG_MODVERSIONS is not set
78801 -# CONFIG_MODULE_SRCVERSION_ALL is not set
78802 -CONFIG_KMOD=y
78803 -CONFIG_BLOCK=y
78804 -CONFIG_LBD=y
78805 -# CONFIG_BLK_DEV_IO_TRACE is not set
78806 -# CONFIG_LSF is not set
78807 -# CONFIG_BLK_DEV_BSG is not set
78808 -
78809 -#
78810 -# IO Schedulers
78811 -#
78812 -CONFIG_IOSCHED_NOOP=y
78813 -CONFIG_IOSCHED_AS=y
78814 -CONFIG_IOSCHED_DEADLINE=y
78815 -CONFIG_IOSCHED_CFQ=y
78816 -CONFIG_DEFAULT_AS=y
78817 -# CONFIG_DEFAULT_DEADLINE is not set
78818 -# CONFIG_DEFAULT_CFQ is not set
78819 -# CONFIG_DEFAULT_NOOP is not set
78820 -CONFIG_DEFAULT_IOSCHED="anticipatory"
78821 -CONFIG_CLASSIC_RCU=y
78822 -# CONFIG_PREEMPT_RCU is not set
78823 -# CONFIG_PPC4xx_PCI_EXPRESS is not set
78824 -
78825 -#
78826 -# Platform support
78827 -#
78828 -# CONFIG_PPC_MPC512x is not set
78829 -# CONFIG_PPC_MPC5121 is not set
78830 -# CONFIG_PPC_CELL is not set
78831 -# CONFIG_PPC_CELL_NATIVE is not set
78832 -# CONFIG_PQ2ADS is not set
78833 -# CONFIG_BAMBOO is not set
78834 -# CONFIG_EBONY is not set
78835 -CONFIG_SEQUOIA=y
78836 -# CONFIG_TAISHAN is not set
78837 -# CONFIG_KATMAI is not set
78838 -# CONFIG_RAINIER is not set
78839 -# CONFIG_WARP is not set
78840 -CONFIG_440EPX=y
78841 -# CONFIG_IPIC is not set
78842 -# CONFIG_MPIC is not set
78843 -# CONFIG_MPIC_WEIRD is not set
78844 -# CONFIG_PPC_I8259 is not set
78845 -# CONFIG_PPC_RTAS is not set
78846 -# CONFIG_MMIO_NVRAM is not set
78847 -# CONFIG_PPC_MPC106 is not set
78848 -# CONFIG_PPC_970_NAP is not set
78849 -# CONFIG_PPC_INDIRECT_IO is not set
78850 -# CONFIG_GENERIC_IOMAP is not set
78851 -# CONFIG_CPU_FREQ is not set
78852 -# CONFIG_FSL_ULI1575 is not set
78853 -
78854 -#
78855 -# Kernel options
78856 -#
78857 -# CONFIG_HIGHMEM is not set
78858 -CONFIG_TICK_ONESHOT=y
78859 -CONFIG_NO_HZ=y
78860 -CONFIG_HIGH_RES_TIMERS=y
78861 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
78862 -# CONFIG_HZ_100 is not set
78863 -CONFIG_HZ_250=y
78864 -# CONFIG_HZ_300 is not set
78865 -# CONFIG_HZ_1000 is not set
78866 -CONFIG_HZ=250
78867 -# CONFIG_SCHED_HRTICK is not set
78868 -CONFIG_PREEMPT_NONE=y
78869 -# CONFIG_PREEMPT_VOLUNTARY is not set
78870 -# CONFIG_PREEMPT is not set
78871 -CONFIG_RCU_TRACE=y
78872 -CONFIG_BINFMT_ELF=y
78873 -# CONFIG_BINFMT_MISC is not set
78874 -# CONFIG_MATH_EMULATION is not set
78875 -# CONFIG_IOMMU_HELPER is not set
78876 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
78877 -CONFIG_ARCH_HAS_WALK_MEMORY=y
78878 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
78879 -CONFIG_ARCH_FLATMEM_ENABLE=y
78880 -CONFIG_ARCH_POPULATES_NODE_MAP=y
78881 -CONFIG_SELECT_MEMORY_MODEL=y
78882 -CONFIG_FLATMEM_MANUAL=y
78883 -# CONFIG_DISCONTIGMEM_MANUAL is not set
78884 -# CONFIG_SPARSEMEM_MANUAL is not set
78885 -CONFIG_FLATMEM=y
78886 -CONFIG_FLAT_NODE_MEM_MAP=y
78887 -# CONFIG_SPARSEMEM_STATIC is not set
78888 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
78889 -CONFIG_SPLIT_PTLOCK_CPUS=4
78890 -CONFIG_RESOURCES_64BIT=y
78891 -CONFIG_ZONE_DMA_FLAG=1
78892 -CONFIG_BOUNCE=y
78893 -CONFIG_VIRT_TO_BUS=y
78894 -CONFIG_PROC_DEVICETREE=y
78895 -CONFIG_CMDLINE_BOOL=y
78896 -CONFIG_CMDLINE=""
78897 -CONFIG_SECCOMP=y
78898 -CONFIG_ISA_DMA_API=y
78899 -
78900 -#
78901 -# Bus options
78902 -#
78903 -CONFIG_ZONE_DMA=y
78904 -CONFIG_PPC_INDIRECT_PCI=y
78905 -CONFIG_PCI=y
78906 -CONFIG_PCI_DOMAINS=y
78907 -CONFIG_PCI_SYSCALL=y
78908 -# CONFIG_PCIEPORTBUS is not set
78909 -CONFIG_ARCH_SUPPORTS_MSI=y
78910 -# CONFIG_PCI_MSI is not set
78911 -CONFIG_PCI_LEGACY=y
78912 -# CONFIG_PCI_DEBUG is not set
78913 -# CONFIG_PCCARD is not set
78914 -# CONFIG_HOTPLUG_PCI is not set
78915 -
78916 -#
78917 -# Advanced setup
78918 -#
78919 -# CONFIG_ADVANCED_OPTIONS is not set
78920 -
78921 -#
78922 -# Default settings for advanced configuration options are used
78923 -#
78924 -CONFIG_HIGHMEM_START=0xfe000000
78925 -CONFIG_LOWMEM_SIZE=0x30000000
78926 -CONFIG_KERNEL_START=0xc0000000
78927 -CONFIG_TASK_SIZE=0xc0000000
78928 -CONFIG_CONSISTENT_START=0xff100000
78929 -CONFIG_CONSISTENT_SIZE=0x00200000
78930 -CONFIG_BOOT_LOAD=0x01000000
78931 -
78932 -#
78933 -# Networking
78934 -#
78935 -CONFIG_NET=y
78936 -
78937 -#
78938 -# Networking options
78939 -#
78940 -CONFIG_PACKET=y
78941 -# CONFIG_PACKET_MMAP is not set
78942 -CONFIG_UNIX=y
78943 -# CONFIG_NET_KEY is not set
78944 -CONFIG_INET=y
78945 -# CONFIG_IP_MULTICAST is not set
78946 -# CONFIG_IP_ADVANCED_ROUTER is not set
78947 -CONFIG_IP_FIB_HASH=y
78948 -CONFIG_IP_PNP=y
78949 -CONFIG_IP_PNP_DHCP=y
78950 -CONFIG_IP_PNP_BOOTP=y
78951 -# CONFIG_IP_PNP_RARP is not set
78952 -# CONFIG_NET_IPIP is not set
78953 -# CONFIG_NET_IPGRE is not set
78954 -# CONFIG_ARPD is not set
78955 -# CONFIG_SYN_COOKIES is not set
78956 -# CONFIG_INET_AH is not set
78957 -# CONFIG_INET_ESP is not set
78958 -# CONFIG_INET_IPCOMP is not set
78959 -# CONFIG_INET_XFRM_TUNNEL is not set
78960 -# CONFIG_INET_TUNNEL is not set
78961 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
78962 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
78963 -# CONFIG_INET_XFRM_MODE_BEET is not set
78964 -# CONFIG_INET_LRO is not set
78965 -CONFIG_INET_DIAG=y
78966 -CONFIG_INET_TCP_DIAG=y
78967 -# CONFIG_TCP_CONG_ADVANCED is not set
78968 -CONFIG_TCP_CONG_CUBIC=y
78969 -CONFIG_DEFAULT_TCP_CONG="cubic"
78970 -# CONFIG_TCP_MD5SIG is not set
78971 -# CONFIG_IPV6 is not set
78972 -# CONFIG_INET6_XFRM_TUNNEL is not set
78973 -# CONFIG_INET6_TUNNEL is not set
78974 -# CONFIG_NETWORK_SECMARK is not set
78975 -# CONFIG_NETFILTER is not set
78976 -# CONFIG_IP_DCCP is not set
78977 -# CONFIG_IP_SCTP is not set
78978 -# CONFIG_TIPC is not set
78979 -# CONFIG_ATM is not set
78980 -# CONFIG_BRIDGE is not set
78981 -# CONFIG_VLAN_8021Q is not set
78982 -# CONFIG_DECNET is not set
78983 -# CONFIG_LLC2 is not set
78984 -# CONFIG_IPX is not set
78985 -# CONFIG_ATALK is not set
78986 -# CONFIG_X25 is not set
78987 -# CONFIG_LAPB is not set
78988 -# CONFIG_ECONET is not set
78989 -# CONFIG_WAN_ROUTER is not set
78990 -# CONFIG_NET_SCHED is not set
78991 -
78992 -#
78993 -# Network testing
78994 -#
78995 -# CONFIG_NET_PKTGEN is not set
78996 -# CONFIG_HAMRADIO is not set
78997 -# CONFIG_CAN is not set
78998 -# CONFIG_IRDA is not set
78999 -# CONFIG_BT is not set
79000 -# CONFIG_AF_RXRPC is not set
79001 -
79002 -#
79003 -# Wireless
79004 -#
79005 -# CONFIG_CFG80211 is not set
79006 -# CONFIG_WIRELESS_EXT is not set
79007 -# CONFIG_MAC80211 is not set
79008 -# CONFIG_IEEE80211 is not set
79009 -# CONFIG_RFKILL is not set
79010 -# CONFIG_NET_9P is not set
79011 -
79012 -#
79013 -# Device Drivers
79014 -#
79015 -
79016 -#
79017 -# Generic Driver Options
79018 -#
79019 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
79020 -CONFIG_STANDALONE=y
79021 -CONFIG_PREVENT_FIRMWARE_BUILD=y
79022 -CONFIG_FW_LOADER=y
79023 -# CONFIG_DEBUG_DRIVER is not set
79024 -# CONFIG_DEBUG_DEVRES is not set
79025 -# CONFIG_SYS_HYPERVISOR is not set
79026 -CONFIG_CONNECTOR=y
79027 -CONFIG_PROC_EVENTS=y
79028 -CONFIG_MTD=y
79029 -# CONFIG_MTD_DEBUG is not set
79030 -# CONFIG_MTD_CONCAT is not set
79031 -CONFIG_MTD_PARTITIONS=y
79032 -# CONFIG_MTD_REDBOOT_PARTS is not set
79033 -CONFIG_MTD_CMDLINE_PARTS=y
79034 -CONFIG_MTD_OF_PARTS=y
79035 -
79036 -#
79037 -# User Modules And Translation Layers
79038 -#
79039 -CONFIG_MTD_CHAR=y
79040 -# CONFIG_MTD_BLKDEVS is not set
79041 -# CONFIG_MTD_BLOCK is not set
79042 -# CONFIG_MTD_BLOCK_RO is not set
79043 -# CONFIG_FTL is not set
79044 -# CONFIG_NFTL is not set
79045 -# CONFIG_INFTL is not set
79046 -# CONFIG_RFD_FTL is not set
79047 -# CONFIG_SSFDC is not set
79048 -# CONFIG_MTD_OOPS is not set
79049 -
79050 -#
79051 -# RAM/ROM/Flash chip drivers
79052 -#
79053 -CONFIG_MTD_CFI=y
79054 -CONFIG_MTD_JEDECPROBE=y
79055 -CONFIG_MTD_GEN_PROBE=y
79056 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
79057 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
79058 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
79059 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
79060 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
79061 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
79062 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
79063 -CONFIG_MTD_CFI_I1=y
79064 -CONFIG_MTD_CFI_I2=y
79065 -# CONFIG_MTD_CFI_I4 is not set
79066 -# CONFIG_MTD_CFI_I8 is not set
79067 -CONFIG_MTD_CFI_INTELEXT=y
79068 -CONFIG_MTD_CFI_AMDSTD=y
79069 -# CONFIG_MTD_CFI_STAA is not set
79070 -CONFIG_MTD_CFI_UTIL=y
79071 -# CONFIG_MTD_RAM is not set
79072 -# CONFIG_MTD_ROM is not set
79073 -# CONFIG_MTD_ABSENT is not set
79074 -
79075 -#
79076 -# Mapping drivers for chip access
79077 -#
79078 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
79079 -# CONFIG_MTD_PHYSMAP is not set
79080 -CONFIG_MTD_PHYSMAP_OF=y
79081 -# CONFIG_MTD_INTEL_VR_NOR is not set
79082 -# CONFIG_MTD_PLATRAM is not set
79083 -
79084 -#
79085 -# Self-contained MTD device drivers
79086 -#
79087 -# CONFIG_MTD_PMC551 is not set
79088 -# CONFIG_MTD_SLRAM is not set
79089 -# CONFIG_MTD_PHRAM is not set
79090 -# CONFIG_MTD_MTDRAM is not set
79091 -# CONFIG_MTD_BLOCK2MTD is not set
79092 -
79093 -#
79094 -# Disk-On-Chip Device Drivers
79095 -#
79096 -# CONFIG_MTD_DOC2000 is not set
79097 -# CONFIG_MTD_DOC2001 is not set
79098 -# CONFIG_MTD_DOC2001PLUS is not set
79099 -# CONFIG_MTD_NAND is not set
79100 -# CONFIG_MTD_ONENAND is not set
79101 -
79102 -#
79103 -# UBI - Unsorted block images
79104 -#
79105 -# CONFIG_MTD_UBI is not set
79106 -CONFIG_OF_DEVICE=y
79107 -# CONFIG_PARPORT is not set
79108 -CONFIG_BLK_DEV=y
79109 -# CONFIG_BLK_DEV_FD is not set
79110 -# CONFIG_BLK_CPQ_DA is not set
79111 -# CONFIG_BLK_CPQ_CISS_DA is not set
79112 -# CONFIG_BLK_DEV_DAC960 is not set
79113 -# CONFIG_BLK_DEV_UMEM is not set
79114 -# CONFIG_BLK_DEV_COW_COMMON is not set
79115 -# CONFIG_BLK_DEV_LOOP is not set
79116 -# CONFIG_BLK_DEV_NBD is not set
79117 -# CONFIG_BLK_DEV_SX8 is not set
79118 -CONFIG_BLK_DEV_RAM=y
79119 -CONFIG_BLK_DEV_RAM_COUNT=16
79120 -CONFIG_BLK_DEV_RAM_SIZE=35000
79121 -# CONFIG_BLK_DEV_XIP is not set
79122 -# CONFIG_CDROM_PKTCDVD is not set
79123 -# CONFIG_ATA_OVER_ETH is not set
79124 -# CONFIG_XILINX_SYSACE is not set
79125 -CONFIG_MISC_DEVICES=y
79126 -# CONFIG_PHANTOM is not set
79127 -# CONFIG_EEPROM_93CX6 is not set
79128 -# CONFIG_SGI_IOC4 is not set
79129 -# CONFIG_TIFM_CORE is not set
79130 -# CONFIG_ENCLOSURE_SERVICES is not set
79131 -CONFIG_HAVE_IDE=y
79132 -# CONFIG_IDE is not set
79133 -
79134 -#
79135 -# SCSI device support
79136 -#
79137 -# CONFIG_RAID_ATTRS is not set
79138 -# CONFIG_SCSI is not set
79139 -# CONFIG_SCSI_DMA is not set
79140 -# CONFIG_SCSI_NETLINK is not set
79141 -# CONFIG_ATA is not set
79142 -# CONFIG_MD is not set
79143 -# CONFIG_FUSION is not set
79144 -
79145 -#
79146 -# IEEE 1394 (FireWire) support
79147 -#
79148 -# CONFIG_FIREWIRE is not set
79149 -# CONFIG_IEEE1394 is not set
79150 -# CONFIG_I2O is not set
79151 -# CONFIG_MACINTOSH_DRIVERS is not set
79152 -CONFIG_NETDEVICES=y
79153 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
79154 -# CONFIG_DUMMY is not set
79155 -# CONFIG_BONDING is not set
79156 -# CONFIG_MACVLAN is not set
79157 -# CONFIG_EQUALIZER is not set
79158 -# CONFIG_TUN is not set
79159 -# CONFIG_VETH is not set
79160 -# CONFIG_ARCNET is not set
79161 -# CONFIG_PHYLIB is not set
79162 -CONFIG_NET_ETHERNET=y
79163 -# CONFIG_MII is not set
79164 -# CONFIG_HAPPYMEAL is not set
79165 -# CONFIG_SUNGEM is not set
79166 -# CONFIG_CASSINI is not set
79167 -# CONFIG_NET_VENDOR_3COM is not set
79168 -# CONFIG_NET_TULIP is not set
79169 -# CONFIG_HP100 is not set
79170 -CONFIG_IBM_NEW_EMAC=y
79171 -CONFIG_IBM_NEW_EMAC_RXB=128
79172 -CONFIG_IBM_NEW_EMAC_TXB=64
79173 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
79174 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
79175 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
79176 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
79177 -CONFIG_IBM_NEW_EMAC_ZMII=y
79178 -CONFIG_IBM_NEW_EMAC_RGMII=y
79179 -# CONFIG_IBM_NEW_EMAC_TAH is not set
79180 -CONFIG_IBM_NEW_EMAC_EMAC4=y
79181 -# CONFIG_NET_PCI is not set
79182 -# CONFIG_B44 is not set
79183 -CONFIG_NETDEV_1000=y
79184 -# CONFIG_ACENIC is not set
79185 -# CONFIG_DL2K is not set
79186 -# CONFIG_E1000 is not set
79187 -# CONFIG_E1000E is not set
79188 -# CONFIG_E1000E_ENABLED is not set
79189 -# CONFIG_IP1000 is not set
79190 -# CONFIG_IGB is not set
79191 -# CONFIG_NS83820 is not set
79192 -# CONFIG_HAMACHI is not set
79193 -# CONFIG_YELLOWFIN is not set
79194 -# CONFIG_R8169 is not set
79195 -# CONFIG_SIS190 is not set
79196 -# CONFIG_SKGE is not set
79197 -# CONFIG_SKY2 is not set
79198 -# CONFIG_SK98LIN is not set
79199 -# CONFIG_VIA_VELOCITY is not set
79200 -# CONFIG_TIGON3 is not set
79201 -# CONFIG_BNX2 is not set
79202 -# CONFIG_QLA3XXX is not set
79203 -# CONFIG_ATL1 is not set
79204 -CONFIG_NETDEV_10000=y
79205 -# CONFIG_CHELSIO_T1 is not set
79206 -# CONFIG_CHELSIO_T3 is not set
79207 -# CONFIG_IXGBE is not set
79208 -# CONFIG_IXGB is not set
79209 -# CONFIG_S2IO is not set
79210 -# CONFIG_MYRI10GE is not set
79211 -# CONFIG_NETXEN_NIC is not set
79212 -# CONFIG_NIU is not set
79213 -# CONFIG_MLX4_CORE is not set
79214 -# CONFIG_TEHUTI is not set
79215 -# CONFIG_BNX2X is not set
79216 -# CONFIG_TR is not set
79217 -
79218 -#
79219 -# Wireless LAN
79220 -#
79221 -# CONFIG_WLAN_PRE80211 is not set
79222 -# CONFIG_WLAN_80211 is not set
79223 -# CONFIG_WAN is not set
79224 -# CONFIG_FDDI is not set
79225 -# CONFIG_HIPPI is not set
79226 -# CONFIG_PPP is not set
79227 -# CONFIG_SLIP is not set
79228 -# CONFIG_NETCONSOLE is not set
79229 -# CONFIG_NETPOLL is not set
79230 -# CONFIG_NET_POLL_CONTROLLER is not set
79231 -# CONFIG_ISDN is not set
79232 -# CONFIG_PHONE is not set
79233 -
79234 -#
79235 -# Input device support
79236 -#
79237 -# CONFIG_INPUT is not set
79238 -
79239 -#
79240 -# Hardware I/O ports
79241 -#
79242 -# CONFIG_SERIO is not set
79243 -# CONFIG_GAMEPORT is not set
79244 -
79245 -#
79246 -# Character devices
79247 -#
79248 -# CONFIG_VT is not set
79249 -# CONFIG_SERIAL_NONSTANDARD is not set
79250 -# CONFIG_NOZOMI is not set
79251 -
79252 -#
79253 -# Serial drivers
79254 -#
79255 -CONFIG_SERIAL_8250=y
79256 -CONFIG_SERIAL_8250_CONSOLE=y
79257 -# CONFIG_SERIAL_8250_PCI is not set
79258 -CONFIG_SERIAL_8250_NR_UARTS=4
79259 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
79260 -CONFIG_SERIAL_8250_EXTENDED=y
79261 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
79262 -CONFIG_SERIAL_8250_SHARE_IRQ=y
79263 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
79264 -# CONFIG_SERIAL_8250_RSA is not set
79265 -
79266 -#
79267 -# Non-8250 serial port support
79268 -#
79269 -# CONFIG_SERIAL_UARTLITE is not set
79270 -CONFIG_SERIAL_CORE=y
79271 -CONFIG_SERIAL_CORE_CONSOLE=y
79272 -# CONFIG_SERIAL_JSM is not set
79273 -CONFIG_SERIAL_OF_PLATFORM=y
79274 -CONFIG_UNIX98_PTYS=y
79275 -CONFIG_LEGACY_PTYS=y
79276 -CONFIG_LEGACY_PTY_COUNT=256
79277 -# CONFIG_IPMI_HANDLER is not set
79278 -# CONFIG_HW_RANDOM is not set
79279 -# CONFIG_NVRAM is not set
79280 -# CONFIG_GEN_RTC is not set
79281 -# CONFIG_R3964 is not set
79282 -# CONFIG_APPLICOM is not set
79283 -# CONFIG_RAW_DRIVER is not set
79284 -# CONFIG_TCG_TPM is not set
79285 -CONFIG_DEVPORT=y
79286 -# CONFIG_I2C is not set
79287 -
79288 -#
79289 -# SPI support
79290 -#
79291 -# CONFIG_SPI is not set
79292 -# CONFIG_SPI_MASTER is not set
79293 -# CONFIG_W1 is not set
79294 -# CONFIG_POWER_SUPPLY is not set
79295 -# CONFIG_HWMON is not set
79296 -CONFIG_THERMAL=y
79297 -# CONFIG_WATCHDOG is not set
79298 -
79299 -#
79300 -# Sonics Silicon Backplane
79301 -#
79302 -CONFIG_SSB_POSSIBLE=y
79303 -# CONFIG_SSB is not set
79304 -
79305 -#
79306 -# Multifunction device drivers
79307 -#
79308 -# CONFIG_MFD_SM501 is not set
79309 -
79310 -#
79311 -# Multimedia devices
79312 -#
79313 -# CONFIG_VIDEO_DEV is not set
79314 -# CONFIG_DVB_CORE is not set
79315 -CONFIG_DAB=y
79316 -
79317 -#
79318 -# Graphics support
79319 -#
79320 -# CONFIG_AGP is not set
79321 -# CONFIG_DRM is not set
79322 -# CONFIG_VGASTATE is not set
79323 -CONFIG_VIDEO_OUTPUT_CONTROL=m
79324 -# CONFIG_FB is not set
79325 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
79326 -
79327 -#
79328 -# Display device support
79329 -#
79330 -# CONFIG_DISPLAY_SUPPORT is not set
79331 -
79332 -#
79333 -# Sound
79334 -#
79335 -# CONFIG_SOUND is not set
79336 -CONFIG_USB_SUPPORT=y
79337 -CONFIG_USB_ARCH_HAS_HCD=y
79338 -CONFIG_USB_ARCH_HAS_OHCI=y
79339 -CONFIG_USB_ARCH_HAS_EHCI=y
79340 -# CONFIG_USB is not set
79341 -
79342 -#
79343 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
79344 -#
79345 -# CONFIG_USB_GADGET is not set
79346 -# CONFIG_MMC is not set
79347 -# CONFIG_MEMSTICK is not set
79348 -# CONFIG_NEW_LEDS is not set
79349 -# CONFIG_INFINIBAND is not set
79350 -# CONFIG_EDAC is not set
79351 -# CONFIG_RTC_CLASS is not set
79352 -
79353 -#
79354 -# Userspace I/O
79355 -#
79356 -# CONFIG_UIO is not set
79357 -
79358 -#
79359 -# File systems
79360 -#
79361 -CONFIG_EXT2_FS=y
79362 -# CONFIG_EXT2_FS_XATTR is not set
79363 -# CONFIG_EXT2_FS_XIP is not set
79364 -# CONFIG_EXT3_FS is not set
79365 -# CONFIG_EXT4DEV_FS is not set
79366 -# CONFIG_REISERFS_FS is not set
79367 -# CONFIG_JFS_FS is not set
79368 -# CONFIG_FS_POSIX_ACL is not set
79369 -# CONFIG_XFS_FS is not set
79370 -# CONFIG_GFS2_FS is not set
79371 -# CONFIG_OCFS2_FS is not set
79372 -CONFIG_DNOTIFY=y
79373 -CONFIG_INOTIFY=y
79374 -CONFIG_INOTIFY_USER=y
79375 -# CONFIG_QUOTA is not set
79376 -# CONFIG_AUTOFS_FS is not set
79377 -# CONFIG_AUTOFS4_FS is not set
79378 -# CONFIG_FUSE_FS is not set
79379 -
79380 -#
79381 -# CD-ROM/DVD Filesystems
79382 -#
79383 -# CONFIG_ISO9660_FS is not set
79384 -# CONFIG_UDF_FS is not set
79385 -
79386 -#
79387 -# DOS/FAT/NT Filesystems
79388 -#
79389 -# CONFIG_MSDOS_FS is not set
79390 -# CONFIG_VFAT_FS is not set
79391 -# CONFIG_NTFS_FS is not set
79392 -
79393 -#
79394 -# Pseudo filesystems
79395 -#
79396 -CONFIG_PROC_FS=y
79397 -CONFIG_PROC_KCORE=y
79398 -CONFIG_PROC_SYSCTL=y
79399 -CONFIG_SYSFS=y
79400 -CONFIG_TMPFS=y
79401 -# CONFIG_TMPFS_POSIX_ACL is not set
79402 -# CONFIG_HUGETLB_PAGE is not set
79403 -# CONFIG_CONFIGFS_FS is not set
79404 -
79405 -#
79406 -# Miscellaneous filesystems
79407 -#
79408 -# CONFIG_ADFS_FS is not set
79409 -# CONFIG_AFFS_FS is not set
79410 -# CONFIG_HFS_FS is not set
79411 -# CONFIG_HFSPLUS_FS is not set
79412 -# CONFIG_BEFS_FS is not set
79413 -# CONFIG_BFS_FS is not set
79414 -# CONFIG_EFS_FS is not set
79415 -CONFIG_JFFS2_FS=y
79416 -CONFIG_JFFS2_FS_DEBUG=0
79417 -CONFIG_JFFS2_FS_WRITEBUFFER=y
79418 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
79419 -# CONFIG_JFFS2_SUMMARY is not set
79420 -# CONFIG_JFFS2_FS_XATTR is not set
79421 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
79422 -CONFIG_JFFS2_ZLIB=y
79423 -# CONFIG_JFFS2_LZO is not set
79424 -CONFIG_JFFS2_RTIME=y
79425 -# CONFIG_JFFS2_RUBIN is not set
79426 -CONFIG_CRAMFS=y
79427 -# CONFIG_VXFS_FS is not set
79428 -# CONFIG_MINIX_FS is not set
79429 -# CONFIG_HPFS_FS is not set
79430 -# CONFIG_QNX4FS_FS is not set
79431 -# CONFIG_ROMFS_FS is not set
79432 -# CONFIG_SYSV_FS is not set
79433 -# CONFIG_UFS_FS is not set
79434 -CONFIG_NETWORK_FILESYSTEMS=y
79435 -CONFIG_NFS_FS=y
79436 -CONFIG_NFS_V3=y
79437 -# CONFIG_NFS_V3_ACL is not set
79438 -# CONFIG_NFS_V4 is not set
79439 -# CONFIG_NFS_DIRECTIO is not set
79440 -# CONFIG_NFSD is not set
79441 -CONFIG_ROOT_NFS=y
79442 -CONFIG_LOCKD=y
79443 -CONFIG_LOCKD_V4=y
79444 -CONFIG_NFS_COMMON=y
79445 -CONFIG_SUNRPC=y
79446 -# CONFIG_SUNRPC_BIND34 is not set
79447 -# CONFIG_RPCSEC_GSS_KRB5 is not set
79448 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
79449 -# CONFIG_SMB_FS is not set
79450 -# CONFIG_CIFS is not set
79451 -# CONFIG_NCP_FS is not set
79452 -# CONFIG_CODA_FS is not set
79453 -# CONFIG_AFS_FS is not set
79454 -
79455 -#
79456 -# Partition Types
79457 -#
79458 -# CONFIG_PARTITION_ADVANCED is not set
79459 -CONFIG_MSDOS_PARTITION=y
79460 -# CONFIG_NLS is not set
79461 -# CONFIG_DLM is not set
79462 -
79463 -#
79464 -# Library routines
79465 -#
79466 -CONFIG_BITREVERSE=y
79467 -# CONFIG_CRC_CCITT is not set
79468 -# CONFIG_CRC16 is not set
79469 -# CONFIG_CRC_ITU_T is not set
79470 -CONFIG_CRC32=y
79471 -# CONFIG_CRC7 is not set
79472 -# CONFIG_LIBCRC32C is not set
79473 -CONFIG_ZLIB_INFLATE=y
79474 -CONFIG_ZLIB_DEFLATE=y
79475 -CONFIG_PLIST=y
79476 -CONFIG_HAS_IOMEM=y
79477 -CONFIG_HAS_IOPORT=y
79478 -CONFIG_HAS_DMA=y
79479 -
79480 -#
79481 -# Kernel hacking
79482 -#
79483 -# CONFIG_PRINTK_TIME is not set
79484 -CONFIG_ENABLE_WARN_DEPRECATED=y
79485 -CONFIG_ENABLE_MUST_CHECK=y
79486 -CONFIG_MAGIC_SYSRQ=y
79487 -# CONFIG_UNUSED_SYMBOLS is not set
79488 -CONFIG_DEBUG_FS=y
79489 -# CONFIG_HEADERS_CHECK is not set
79490 -CONFIG_DEBUG_KERNEL=y
79491 -# CONFIG_DEBUG_SHIRQ is not set
79492 -CONFIG_DETECT_SOFTLOCKUP=y
79493 -CONFIG_SCHED_DEBUG=y
79494 -# CONFIG_SCHEDSTATS is not set
79495 -# CONFIG_TIMER_STATS is not set
79496 -# CONFIG_SLUB_DEBUG_ON is not set
79497 -# CONFIG_SLUB_STATS is not set
79498 -# CONFIG_DEBUG_RT_MUTEXES is not set
79499 -# CONFIG_RT_MUTEX_TESTER is not set
79500 -# CONFIG_DEBUG_SPINLOCK is not set
79501 -# CONFIG_DEBUG_MUTEXES is not set
79502 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
79503 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
79504 -# CONFIG_DEBUG_KOBJECT is not set
79505 -# CONFIG_DEBUG_BUGVERBOSE is not set
79506 -# CONFIG_DEBUG_INFO is not set
79507 -# CONFIG_DEBUG_VM is not set
79508 -# CONFIG_DEBUG_LIST is not set
79509 -# CONFIG_DEBUG_SG is not set
79510 -# CONFIG_BOOT_PRINTK_DELAY is not set
79511 -# CONFIG_RCU_TORTURE_TEST is not set
79512 -# CONFIG_BACKTRACE_SELF_TEST is not set
79513 -# CONFIG_FAULT_INJECTION is not set
79514 -# CONFIG_SAMPLES is not set
79515 -# CONFIG_DEBUG_STACKOVERFLOW is not set
79516 -# CONFIG_DEBUG_STACK_USAGE is not set
79517 -# CONFIG_DEBUG_PAGEALLOC is not set
79518 -CONFIG_DEBUGGER=y
79519 -# CONFIG_KGDB is not set
79520 -# CONFIG_XMON is not set
79521 -# CONFIG_VIRQ_DEBUG is not set
79522 -# CONFIG_BDI_SWITCH is not set
79523 -CONFIG_PPC_EARLY_DEBUG=y
79524 -# CONFIG_PPC_EARLY_DEBUG_LPAR is not set
79525 -# CONFIG_PPC_EARLY_DEBUG_G5 is not set
79526 -# CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set
79527 -# CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set
79528 -# CONFIG_PPC_EARLY_DEBUG_MAPLE is not set
79529 -# CONFIG_PPC_EARLY_DEBUG_ISERIES is not set
79530 -# CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set
79531 -# CONFIG_PPC_EARLY_DEBUG_BEAT is not set
79532 -CONFIG_PPC_EARLY_DEBUG_44x=y
79533 -# CONFIG_PPC_EARLY_DEBUG_40x is not set
79534 -# CONFIG_PPC_EARLY_DEBUG_CPM is not set
79535 -CONFIG_PPC_EARLY_DEBUG_44x_PHYSLOW=0xef600300
79536 -CONFIG_PPC_EARLY_DEBUG_44x_PHYSHIGH=0x1
79537 -
79538 -#
79539 -# Security options
79540 -#
79541 -# CONFIG_KEYS is not set
79542 -# CONFIG_SECURITY is not set
79543 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
79544 -CONFIG_CRYPTO=y
79545 -CONFIG_CRYPTO_ALGAPI=y
79546 -CONFIG_CRYPTO_BLKCIPHER=y
79547 -# CONFIG_CRYPTO_SEQIV is not set
79548 -CONFIG_CRYPTO_MANAGER=y
79549 -# CONFIG_CRYPTO_HMAC is not set
79550 -# CONFIG_CRYPTO_XCBC is not set
79551 -# CONFIG_CRYPTO_NULL is not set
79552 -# CONFIG_CRYPTO_MD4 is not set
79553 -CONFIG_CRYPTO_MD5=y
79554 -# CONFIG_CRYPTO_SHA1 is not set
79555 -# CONFIG_CRYPTO_SHA256 is not set
79556 -# CONFIG_CRYPTO_SHA512 is not set
79557 -# CONFIG_CRYPTO_WP512 is not set
79558 -# CONFIG_CRYPTO_TGR192 is not set
79559 -# CONFIG_CRYPTO_GF128MUL is not set
79560 -CONFIG_CRYPTO_ECB=y
79561 -CONFIG_CRYPTO_CBC=y
79562 -CONFIG_CRYPTO_PCBC=y
79563 -# CONFIG_CRYPTO_LRW is not set
79564 -# CONFIG_CRYPTO_XTS is not set
79565 -# CONFIG_CRYPTO_CTR is not set
79566 -# CONFIG_CRYPTO_GCM is not set
79567 -# CONFIG_CRYPTO_CCM is not set
79568 -# CONFIG_CRYPTO_CRYPTD is not set
79569 -CONFIG_CRYPTO_DES=y
79570 -# CONFIG_CRYPTO_FCRYPT is not set
79571 -# CONFIG_CRYPTO_BLOWFISH is not set
79572 -# CONFIG_CRYPTO_TWOFISH is not set
79573 -# CONFIG_CRYPTO_SERPENT is not set
79574 -# CONFIG_CRYPTO_AES is not set
79575 -# CONFIG_CRYPTO_CAST5 is not set
79576 -# CONFIG_CRYPTO_CAST6 is not set
79577 -# CONFIG_CRYPTO_TEA is not set
79578 -# CONFIG_CRYPTO_ARC4 is not set
79579 -# CONFIG_CRYPTO_KHAZAD is not set
79580 -# CONFIG_CRYPTO_ANUBIS is not set
79581 -# CONFIG_CRYPTO_SEED is not set
79582 -# CONFIG_CRYPTO_SALSA20 is not set
79583 -# CONFIG_CRYPTO_DEFLATE is not set
79584 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
79585 -# CONFIG_CRYPTO_CRC32C is not set
79586 -# CONFIG_CRYPTO_CAMELLIA is not set
79587 -# CONFIG_CRYPTO_TEST is not set
79588 -# CONFIG_CRYPTO_AUTHENC is not set
79589 -# CONFIG_CRYPTO_LZO is not set
79590 -CONFIG_CRYPTO_HW=y
79591 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
79592 -# CONFIG_PPC_CLOCK is not set
79593 Index: linux-2.6.25.4/arch/powerpc/configs/stx_gp3_defconfig
79594 ===================================================================
79595 --- linux-2.6.25.4.orig/arch/powerpc/configs/stx_gp3_defconfig
79596 +++ /dev/null
79597 @@ -1,1253 +0,0 @@
79598 -#
79599 -# Automatically generated make config: don't edit
79600 -# Linux kernel version: 2.6.25-rc6
79601 -# Mon Mar 24 08:48:42 2008
79602 -#
79603 -# CONFIG_PPC64 is not set
79604 -
79605 -#
79606 -# Processor support
79607 -#
79608 -# CONFIG_6xx is not set
79609 -CONFIG_PPC_85xx=y
79610 -# CONFIG_PPC_8xx is not set
79611 -# CONFIG_40x is not set
79612 -# CONFIG_44x is not set
79613 -# CONFIG_E200 is not set
79614 -CONFIG_E500=y
79615 -CONFIG_BOOKE=y
79616 -CONFIG_FSL_BOOKE=y
79617 -CONFIG_FSL_EMB_PERFMON=y
79618 -# CONFIG_PHYS_64BIT is not set
79619 -CONFIG_SPE=y
79620 -# CONFIG_PPC_MM_SLICES is not set
79621 -CONFIG_PPC32=y
79622 -CONFIG_WORD_SIZE=32
79623 -CONFIG_PPC_MERGE=y
79624 -CONFIG_MMU=y
79625 -CONFIG_GENERIC_CMOS_UPDATE=y
79626 -CONFIG_GENERIC_TIME=y
79627 -CONFIG_GENERIC_TIME_VSYSCALL=y
79628 -CONFIG_GENERIC_CLOCKEVENTS=y
79629 -CONFIG_GENERIC_HARDIRQS=y
79630 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
79631 -CONFIG_IRQ_PER_CPU=y
79632 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
79633 -CONFIG_ARCH_HAS_ILOG2_U32=y
79634 -CONFIG_GENERIC_HWEIGHT=y
79635 -CONFIG_GENERIC_CALIBRATE_DELAY=y
79636 -CONFIG_GENERIC_FIND_NEXT_BIT=y
79637 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
79638 -CONFIG_PPC=y
79639 -CONFIG_EARLY_PRINTK=y
79640 -CONFIG_GENERIC_NVRAM=y
79641 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
79642 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
79643 -CONFIG_PPC_OF=y
79644 -CONFIG_OF=y
79645 -CONFIG_PPC_UDBG_16550=y
79646 -# CONFIG_GENERIC_TBSYNC is not set
79647 -CONFIG_AUDIT_ARCH=y
79648 -CONFIG_GENERIC_BUG=y
79649 -CONFIG_DEFAULT_UIMAGE=y
79650 -# CONFIG_PPC_DCR_NATIVE is not set
79651 -# CONFIG_PPC_DCR_MMIO is not set
79652 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
79653 -
79654 -#
79655 -# General setup
79656 -#
79657 -CONFIG_EXPERIMENTAL=y
79658 -CONFIG_BROKEN_ON_SMP=y
79659 -CONFIG_INIT_ENV_ARG_LIMIT=32
79660 -CONFIG_LOCALVERSION=""
79661 -CONFIG_LOCALVERSION_AUTO=y
79662 -CONFIG_SWAP=y
79663 -CONFIG_SYSVIPC=y
79664 -CONFIG_SYSVIPC_SYSCTL=y
79665 -# CONFIG_POSIX_MQUEUE is not set
79666 -# CONFIG_BSD_PROCESS_ACCT is not set
79667 -# CONFIG_TASKSTATS is not set
79668 -# CONFIG_AUDIT is not set
79669 -# CONFIG_IKCONFIG is not set
79670 -CONFIG_LOG_BUF_SHIFT=14
79671 -# CONFIG_CGROUPS is not set
79672 -CONFIG_GROUP_SCHED=y
79673 -CONFIG_FAIR_GROUP_SCHED=y
79674 -# CONFIG_RT_GROUP_SCHED is not set
79675 -CONFIG_USER_SCHED=y
79676 -# CONFIG_CGROUP_SCHED is not set
79677 -CONFIG_SYSFS_DEPRECATED=y
79678 -CONFIG_SYSFS_DEPRECATED_V2=y
79679 -# CONFIG_RELAY is not set
79680 -# CONFIG_NAMESPACES is not set
79681 -CONFIG_BLK_DEV_INITRD=y
79682 -CONFIG_INITRAMFS_SOURCE=""
79683 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
79684 -CONFIG_SYSCTL=y
79685 -CONFIG_EMBEDDED=y
79686 -CONFIG_SYSCTL_SYSCALL=y
79687 -CONFIG_KALLSYMS=y
79688 -# CONFIG_KALLSYMS_ALL is not set
79689 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
79690 -CONFIG_HOTPLUG=y
79691 -CONFIG_PRINTK=y
79692 -CONFIG_BUG=y
79693 -CONFIG_ELF_CORE=y
79694 -CONFIG_COMPAT_BRK=y
79695 -CONFIG_BASE_FULL=y
79696 -CONFIG_FUTEX=y
79697 -CONFIG_ANON_INODES=y
79698 -CONFIG_EPOLL=y
79699 -CONFIG_SIGNALFD=y
79700 -CONFIG_TIMERFD=y
79701 -CONFIG_EVENTFD=y
79702 -CONFIG_SHMEM=y
79703 -CONFIG_VM_EVENT_COUNTERS=y
79704 -CONFIG_SLUB_DEBUG=y
79705 -# CONFIG_SLAB is not set
79706 -CONFIG_SLUB=y
79707 -# CONFIG_SLOB is not set
79708 -# CONFIG_PROFILING is not set
79709 -# CONFIG_MARKERS is not set
79710 -CONFIG_HAVE_OPROFILE=y
79711 -# CONFIG_KPROBES is not set
79712 -CONFIG_HAVE_KPROBES=y
79713 -CONFIG_HAVE_KRETPROBES=y
79714 -CONFIG_PROC_PAGE_MONITOR=y
79715 -CONFIG_SLABINFO=y
79716 -CONFIG_RT_MUTEXES=y
79717 -# CONFIG_TINY_SHMEM is not set
79718 -CONFIG_BASE_SMALL=0
79719 -CONFIG_MODULES=y
79720 -# CONFIG_MODULE_UNLOAD is not set
79721 -CONFIG_MODVERSIONS=y
79722 -# CONFIG_MODULE_SRCVERSION_ALL is not set
79723 -CONFIG_KMOD=y
79724 -CONFIG_BLOCK=y
79725 -# CONFIG_LBD is not set
79726 -# CONFIG_BLK_DEV_IO_TRACE is not set
79727 -# CONFIG_LSF is not set
79728 -# CONFIG_BLK_DEV_BSG is not set
79729 -
79730 -#
79731 -# IO Schedulers
79732 -#
79733 -CONFIG_IOSCHED_NOOP=y
79734 -CONFIG_IOSCHED_AS=y
79735 -CONFIG_IOSCHED_DEADLINE=y
79736 -CONFIG_IOSCHED_CFQ=y
79737 -# CONFIG_DEFAULT_AS is not set
79738 -# CONFIG_DEFAULT_DEADLINE is not set
79739 -CONFIG_DEFAULT_CFQ=y
79740 -# CONFIG_DEFAULT_NOOP is not set
79741 -CONFIG_DEFAULT_IOSCHED="cfq"
79742 -CONFIG_CLASSIC_RCU=y
79743 -
79744 -#
79745 -# Platform support
79746 -#
79747 -# CONFIG_PPC_MPC512x is not set
79748 -# CONFIG_PPC_MPC5121 is not set
79749 -# CONFIG_PPC_CELL is not set
79750 -# CONFIG_PPC_CELL_NATIVE is not set
79751 -# CONFIG_PQ2ADS is not set
79752 -CONFIG_MPC85xx=y
79753 -# CONFIG_MPC8540_ADS is not set
79754 -# CONFIG_MPC8560_ADS is not set
79755 -# CONFIG_MPC85xx_CDS is not set
79756 -# CONFIG_MPC85xx_MDS is not set
79757 -# CONFIG_MPC85xx_DS is not set
79758 -CONFIG_STX_GP3=y
79759 -# CONFIG_TQM8540 is not set
79760 -# CONFIG_TQM8541 is not set
79761 -# CONFIG_TQM8555 is not set
79762 -# CONFIG_TQM8560 is not set
79763 -# CONFIG_SBC8548 is not set
79764 -# CONFIG_SBC8560 is not set
79765 -# CONFIG_IPIC is not set
79766 -CONFIG_MPIC=y
79767 -# CONFIG_MPIC_WEIRD is not set
79768 -# CONFIG_PPC_I8259 is not set
79769 -# CONFIG_PPC_RTAS is not set
79770 -# CONFIG_MMIO_NVRAM is not set
79771 -# CONFIG_PPC_MPC106 is not set
79772 -# CONFIG_PPC_970_NAP is not set
79773 -# CONFIG_PPC_INDIRECT_IO is not set
79774 -# CONFIG_GENERIC_IOMAP is not set
79775 -# CONFIG_CPU_FREQ is not set
79776 -CONFIG_CPM2=y
79777 -CONFIG_PPC_CPM_NEW_BINDING=y
79778 -# CONFIG_FSL_ULI1575 is not set
79779 -CONFIG_CPM=y
79780 -
79781 -#
79782 -# Kernel options
79783 -#
79784 -CONFIG_HIGHMEM=y
79785 -# CONFIG_TICK_ONESHOT is not set
79786 -# CONFIG_NO_HZ is not set
79787 -# CONFIG_HIGH_RES_TIMERS is not set
79788 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
79789 -# CONFIG_HZ_100 is not set
79790 -CONFIG_HZ_250=y
79791 -# CONFIG_HZ_300 is not set
79792 -# CONFIG_HZ_1000 is not set
79793 -CONFIG_HZ=250
79794 -# CONFIG_SCHED_HRTICK is not set
79795 -CONFIG_PREEMPT_NONE=y
79796 -# CONFIG_PREEMPT_VOLUNTARY is not set
79797 -# CONFIG_PREEMPT is not set
79798 -CONFIG_BINFMT_ELF=y
79799 -CONFIG_BINFMT_MISC=m
79800 -CONFIG_MATH_EMULATION=y
79801 -# CONFIG_IOMMU_HELPER is not set
79802 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
79803 -CONFIG_ARCH_HAS_WALK_MEMORY=y
79804 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
79805 -CONFIG_ARCH_FLATMEM_ENABLE=y
79806 -CONFIG_ARCH_POPULATES_NODE_MAP=y
79807 -CONFIG_SELECT_MEMORY_MODEL=y
79808 -CONFIG_FLATMEM_MANUAL=y
79809 -# CONFIG_DISCONTIGMEM_MANUAL is not set
79810 -# CONFIG_SPARSEMEM_MANUAL is not set
79811 -CONFIG_FLATMEM=y
79812 -CONFIG_FLAT_NODE_MEM_MAP=y
79813 -# CONFIG_SPARSEMEM_STATIC is not set
79814 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
79815 -CONFIG_SPLIT_PTLOCK_CPUS=4
79816 -# CONFIG_RESOURCES_64BIT is not set
79817 -CONFIG_ZONE_DMA_FLAG=1
79818 -CONFIG_BOUNCE=y
79819 -CONFIG_VIRT_TO_BUS=y
79820 -CONFIG_PROC_DEVICETREE=y
79821 -# CONFIG_CMDLINE_BOOL is not set
79822 -# CONFIG_PM is not set
79823 -CONFIG_SECCOMP=y
79824 -CONFIG_ISA_DMA_API=y
79825 -
79826 -#
79827 -# Bus options
79828 -#
79829 -CONFIG_ZONE_DMA=y
79830 -CONFIG_PPC_INDIRECT_PCI=y
79831 -CONFIG_FSL_SOC=y
79832 -CONFIG_FSL_PCI=y
79833 -CONFIG_PCI=y
79834 -CONFIG_PCI_DOMAINS=y
79835 -CONFIG_PCI_SYSCALL=y
79836 -# CONFIG_PCIEPORTBUS is not set
79837 -CONFIG_ARCH_SUPPORTS_MSI=y
79838 -# CONFIG_PCI_MSI is not set
79839 -CONFIG_PCI_LEGACY=y
79840 -# CONFIG_PCI_DEBUG is not set
79841 -# CONFIG_PCCARD is not set
79842 -# CONFIG_HOTPLUG_PCI is not set
79843 -
79844 -#
79845 -# Advanced setup
79846 -#
79847 -# CONFIG_ADVANCED_OPTIONS is not set
79848 -
79849 -#
79850 -# Default settings for advanced configuration options are used
79851 -#
79852 -CONFIG_HIGHMEM_START=0xfe000000
79853 -CONFIG_LOWMEM_SIZE=0x30000000
79854 -CONFIG_KERNEL_START=0xc0000000
79855 -CONFIG_TASK_SIZE=0xc0000000
79856 -CONFIG_BOOT_LOAD=0x00800000
79857 -
79858 -#
79859 -# Networking
79860 -#
79861 -CONFIG_NET=y
79862 -
79863 -#
79864 -# Networking options
79865 -#
79866 -CONFIG_PACKET=y
79867 -# CONFIG_PACKET_MMAP is not set
79868 -CONFIG_UNIX=y
79869 -CONFIG_XFRM=y
79870 -# CONFIG_XFRM_USER is not set
79871 -# CONFIG_XFRM_SUB_POLICY is not set
79872 -# CONFIG_XFRM_MIGRATE is not set
79873 -# CONFIG_XFRM_STATISTICS is not set
79874 -# CONFIG_NET_KEY is not set
79875 -CONFIG_INET=y
79876 -# CONFIG_IP_MULTICAST is not set
79877 -# CONFIG_IP_ADVANCED_ROUTER is not set
79878 -CONFIG_IP_FIB_HASH=y
79879 -CONFIG_IP_PNP=y
79880 -# CONFIG_IP_PNP_DHCP is not set
79881 -CONFIG_IP_PNP_BOOTP=y
79882 -# CONFIG_IP_PNP_RARP is not set
79883 -# CONFIG_NET_IPIP is not set
79884 -# CONFIG_NET_IPGRE is not set
79885 -# CONFIG_ARPD is not set
79886 -# CONFIG_SYN_COOKIES is not set
79887 -# CONFIG_INET_AH is not set
79888 -# CONFIG_INET_ESP is not set
79889 -# CONFIG_INET_IPCOMP is not set
79890 -# CONFIG_INET_XFRM_TUNNEL is not set
79891 -# CONFIG_INET_TUNNEL is not set
79892 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
79893 -CONFIG_INET_XFRM_MODE_TUNNEL=y
79894 -CONFIG_INET_XFRM_MODE_BEET=y
79895 -# CONFIG_INET_LRO is not set
79896 -CONFIG_INET_DIAG=y
79897 -CONFIG_INET_TCP_DIAG=y
79898 -# CONFIG_TCP_CONG_ADVANCED is not set
79899 -CONFIG_TCP_CONG_CUBIC=y
79900 -CONFIG_DEFAULT_TCP_CONG="cubic"
79901 -# CONFIG_TCP_MD5SIG is not set
79902 -# CONFIG_IP_VS is not set
79903 -# CONFIG_IPV6 is not set
79904 -# CONFIG_INET6_XFRM_TUNNEL is not set
79905 -# CONFIG_INET6_TUNNEL is not set
79906 -# CONFIG_NETWORK_SECMARK is not set
79907 -CONFIG_NETFILTER=y
79908 -# CONFIG_NETFILTER_DEBUG is not set
79909 -CONFIG_NETFILTER_ADVANCED=y
79910 -
79911 -#
79912 -# Core Netfilter Configuration
79913 -#
79914 -# CONFIG_NETFILTER_NETLINK_QUEUE is not set
79915 -# CONFIG_NETFILTER_NETLINK_LOG is not set
79916 -# CONFIG_NF_CONNTRACK is not set
79917 -CONFIG_NETFILTER_XTABLES=m
79918 -# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
79919 -# CONFIG_NETFILTER_XT_TARGET_MARK is not set
79920 -# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
79921 -# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
79922 -# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
79923 -# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
79924 -# CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
79925 -# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
79926 -# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
79927 -# CONFIG_NETFILTER_XT_MATCH_ESP is not set
79928 -# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
79929 -# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
79930 -# CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
79931 -# CONFIG_NETFILTER_XT_MATCH_MAC is not set
79932 -# CONFIG_NETFILTER_XT_MATCH_MARK is not set
79933 -# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
79934 -# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
79935 -# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
79936 -# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
79937 -# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
79938 -# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
79939 -# CONFIG_NETFILTER_XT_MATCH_REALM is not set
79940 -# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
79941 -# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
79942 -# CONFIG_NETFILTER_XT_MATCH_STRING is not set
79943 -# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
79944 -# CONFIG_NETFILTER_XT_MATCH_TIME is not set
79945 -# CONFIG_NETFILTER_XT_MATCH_U32 is not set
79946 -# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
79947 -
79948 -#
79949 -# IP: Netfilter Configuration
79950 -#
79951 -# CONFIG_IP_NF_QUEUE is not set
79952 -CONFIG_IP_NF_IPTABLES=m
79953 -# CONFIG_IP_NF_MATCH_RECENT is not set
79954 -# CONFIG_IP_NF_MATCH_ECN is not set
79955 -# CONFIG_IP_NF_MATCH_AH is not set
79956 -# CONFIG_IP_NF_MATCH_TTL is not set
79957 -# CONFIG_IP_NF_MATCH_ADDRTYPE is not set
79958 -CONFIG_IP_NF_FILTER=m
79959 -# CONFIG_IP_NF_TARGET_REJECT is not set
79960 -# CONFIG_IP_NF_TARGET_LOG is not set
79961 -# CONFIG_IP_NF_TARGET_ULOG is not set
79962 -# CONFIG_IP_NF_MANGLE is not set
79963 -# CONFIG_IP_NF_RAW is not set
79964 -# CONFIG_IP_NF_ARPTABLES is not set
79965 -# CONFIG_IP_DCCP is not set
79966 -# CONFIG_IP_SCTP is not set
79967 -# CONFIG_TIPC is not set
79968 -# CONFIG_ATM is not set
79969 -# CONFIG_BRIDGE is not set
79970 -# CONFIG_VLAN_8021Q is not set
79971 -# CONFIG_DECNET is not set
79972 -# CONFIG_LLC2 is not set
79973 -# CONFIG_IPX is not set
79974 -# CONFIG_ATALK is not set
79975 -# CONFIG_X25 is not set
79976 -# CONFIG_LAPB is not set
79977 -# CONFIG_ECONET is not set
79978 -# CONFIG_WAN_ROUTER is not set
79979 -# CONFIG_NET_SCHED is not set
79980 -
79981 -#
79982 -# Network testing
79983 -#
79984 -CONFIG_NET_PKTGEN=y
79985 -# CONFIG_HAMRADIO is not set
79986 -# CONFIG_CAN is not set
79987 -# CONFIG_IRDA is not set
79988 -# CONFIG_BT is not set
79989 -# CONFIG_AF_RXRPC is not set
79990 -
79991 -#
79992 -# Wireless
79993 -#
79994 -# CONFIG_CFG80211 is not set
79995 -# CONFIG_WIRELESS_EXT is not set
79996 -# CONFIG_MAC80211 is not set
79997 -# CONFIG_IEEE80211 is not set
79998 -# CONFIG_RFKILL is not set
79999 -# CONFIG_NET_9P is not set
80000 -
80001 -#
80002 -# Device Drivers
80003 -#
80004 -
80005 -#
80006 -# Generic Driver Options
80007 -#
80008 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
80009 -CONFIG_STANDALONE=y
80010 -CONFIG_PREVENT_FIRMWARE_BUILD=y
80011 -# CONFIG_FW_LOADER is not set
80012 -# CONFIG_DEBUG_DRIVER is not set
80013 -# CONFIG_DEBUG_DEVRES is not set
80014 -# CONFIG_SYS_HYPERVISOR is not set
80015 -# CONFIG_CONNECTOR is not set
80016 -# CONFIG_MTD is not set
80017 -CONFIG_OF_DEVICE=y
80018 -CONFIG_PARPORT=m
80019 -CONFIG_PARPORT_PC=m
80020 -# CONFIG_PARPORT_PC_FIFO is not set
80021 -# CONFIG_PARPORT_PC_SUPERIO is not set
80022 -# CONFIG_PARPORT_GSC is not set
80023 -# CONFIG_PARPORT_AX88796 is not set
80024 -# CONFIG_PARPORT_1284 is not set
80025 -CONFIG_BLK_DEV=y
80026 -# CONFIG_BLK_DEV_FD is not set
80027 -# CONFIG_PARIDE is not set
80028 -# CONFIG_BLK_CPQ_DA is not set
80029 -# CONFIG_BLK_CPQ_CISS_DA is not set
80030 -# CONFIG_BLK_DEV_DAC960 is not set
80031 -# CONFIG_BLK_DEV_UMEM is not set
80032 -# CONFIG_BLK_DEV_COW_COMMON is not set
80033 -CONFIG_BLK_DEV_LOOP=m
80034 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
80035 -CONFIG_BLK_DEV_NBD=m
80036 -# CONFIG_BLK_DEV_SX8 is not set
80037 -CONFIG_BLK_DEV_RAM=y
80038 -CONFIG_BLK_DEV_RAM_COUNT=16
80039 -CONFIG_BLK_DEV_RAM_SIZE=32768
80040 -# CONFIG_BLK_DEV_XIP is not set
80041 -# CONFIG_CDROM_PKTCDVD is not set
80042 -# CONFIG_ATA_OVER_ETH is not set
80043 -CONFIG_MISC_DEVICES=y
80044 -# CONFIG_PHANTOM is not set
80045 -# CONFIG_EEPROM_93CX6 is not set
80046 -# CONFIG_SGI_IOC4 is not set
80047 -# CONFIG_TIFM_CORE is not set
80048 -# CONFIG_ENCLOSURE_SERVICES is not set
80049 -CONFIG_HAVE_IDE=y
80050 -CONFIG_IDE=y
80051 -CONFIG_IDE_MAX_HWIFS=4
80052 -CONFIG_BLK_DEV_IDE=y
80053 -
80054 -#
80055 -# Please see Documentation/ide/ide.txt for help/info on IDE drives
80056 -#
80057 -# CONFIG_BLK_DEV_IDE_SATA is not set
80058 -CONFIG_BLK_DEV_IDEDISK=y
80059 -# CONFIG_IDEDISK_MULTI_MODE is not set
80060 -CONFIG_BLK_DEV_IDECD=m
80061 -CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y
80062 -# CONFIG_BLK_DEV_IDETAPE is not set
80063 -# CONFIG_BLK_DEV_IDEFLOPPY is not set
80064 -# CONFIG_BLK_DEV_IDESCSI is not set
80065 -# CONFIG_IDE_TASK_IOCTL is not set
80066 -CONFIG_IDE_PROC_FS=y
80067 -
80068 -#
80069 -# IDE chipset support/bugfixes
80070 -#
80071 -CONFIG_IDE_GENERIC=y
80072 -# CONFIG_BLK_DEV_PLATFORM is not set
80073 -
80074 -#
80075 -# PCI IDE chipsets support
80076 -#
80077 -# CONFIG_BLK_DEV_GENERIC is not set
80078 -# CONFIG_BLK_DEV_OPTI621 is not set
80079 -# CONFIG_BLK_DEV_AEC62XX is not set
80080 -# CONFIG_BLK_DEV_ALI15X3 is not set
80081 -# CONFIG_BLK_DEV_AMD74XX is not set
80082 -# CONFIG_BLK_DEV_CMD64X is not set
80083 -# CONFIG_BLK_DEV_TRIFLEX is not set
80084 -# CONFIG_BLK_DEV_CY82C693 is not set
80085 -# CONFIG_BLK_DEV_CS5520 is not set
80086 -# CONFIG_BLK_DEV_CS5530 is not set
80087 -# CONFIG_BLK_DEV_HPT34X is not set
80088 -# CONFIG_BLK_DEV_HPT366 is not set
80089 -# CONFIG_BLK_DEV_JMICRON is not set
80090 -# CONFIG_BLK_DEV_SC1200 is not set
80091 -# CONFIG_BLK_DEV_PIIX is not set
80092 -# CONFIG_BLK_DEV_IT8213 is not set
80093 -# CONFIG_BLK_DEV_IT821X is not set
80094 -# CONFIG_BLK_DEV_NS87415 is not set
80095 -# CONFIG_BLK_DEV_PDC202XX_OLD is not set
80096 -# CONFIG_BLK_DEV_PDC202XX_NEW is not set
80097 -# CONFIG_BLK_DEV_SVWKS is not set
80098 -# CONFIG_BLK_DEV_SIIMAGE is not set
80099 -# CONFIG_BLK_DEV_SL82C105 is not set
80100 -# CONFIG_BLK_DEV_SLC90E66 is not set
80101 -# CONFIG_BLK_DEV_TRM290 is not set
80102 -# CONFIG_BLK_DEV_VIA82CXXX is not set
80103 -# CONFIG_BLK_DEV_TC86C001 is not set
80104 -# CONFIG_BLK_DEV_IDEDMA is not set
80105 -CONFIG_IDE_ARCH_OBSOLETE_INIT=y
80106 -# CONFIG_BLK_DEV_HD is not set
80107 -
80108 -#
80109 -# SCSI device support
80110 -#
80111 -# CONFIG_RAID_ATTRS is not set
80112 -CONFIG_SCSI=m
80113 -CONFIG_SCSI_DMA=y
80114 -# CONFIG_SCSI_TGT is not set
80115 -# CONFIG_SCSI_NETLINK is not set
80116 -CONFIG_SCSI_PROC_FS=y
80117 -
80118 -#
80119 -# SCSI support type (disk, tape, CD-ROM)
80120 -#
80121 -CONFIG_BLK_DEV_SD=m
80122 -CONFIG_CHR_DEV_ST=m
80123 -# CONFIG_CHR_DEV_OSST is not set
80124 -CONFIG_BLK_DEV_SR=m
80125 -# CONFIG_BLK_DEV_SR_VENDOR is not set
80126 -CONFIG_CHR_DEV_SG=m
80127 -# CONFIG_CHR_DEV_SCH is not set
80128 -
80129 -#
80130 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
80131 -#
80132 -CONFIG_SCSI_MULTI_LUN=y
80133 -CONFIG_SCSI_CONSTANTS=y
80134 -# CONFIG_SCSI_LOGGING is not set
80135 -# CONFIG_SCSI_SCAN_ASYNC is not set
80136 -CONFIG_SCSI_WAIT_SCAN=m
80137 -
80138 -#
80139 -# SCSI Transports
80140 -#
80141 -# CONFIG_SCSI_SPI_ATTRS is not set
80142 -# CONFIG_SCSI_FC_ATTRS is not set
80143 -# CONFIG_SCSI_ISCSI_ATTRS is not set
80144 -# CONFIG_SCSI_SAS_LIBSAS is not set
80145 -# CONFIG_SCSI_SRP_ATTRS is not set
80146 -CONFIG_SCSI_LOWLEVEL=y
80147 -# CONFIG_ISCSI_TCP is not set
80148 -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
80149 -# CONFIG_SCSI_3W_9XXX is not set
80150 -# CONFIG_SCSI_ACARD is not set
80151 -# CONFIG_SCSI_AACRAID is not set
80152 -# CONFIG_SCSI_AIC7XXX is not set
80153 -# CONFIG_SCSI_AIC7XXX_OLD is not set
80154 -# CONFIG_SCSI_AIC79XX is not set
80155 -# CONFIG_SCSI_AIC94XX is not set
80156 -# CONFIG_SCSI_DPT_I2O is not set
80157 -# CONFIG_SCSI_ADVANSYS is not set
80158 -# CONFIG_SCSI_ARCMSR is not set
80159 -# CONFIG_MEGARAID_NEWGEN is not set
80160 -# CONFIG_MEGARAID_LEGACY is not set
80161 -# CONFIG_MEGARAID_SAS is not set
80162 -# CONFIG_SCSI_HPTIOP is not set
80163 -# CONFIG_SCSI_BUSLOGIC is not set
80164 -# CONFIG_SCSI_DMX3191D is not set
80165 -# CONFIG_SCSI_EATA is not set
80166 -# CONFIG_SCSI_FUTURE_DOMAIN is not set
80167 -# CONFIG_SCSI_GDTH is not set
80168 -# CONFIG_SCSI_IPS is not set
80169 -# CONFIG_SCSI_INITIO is not set
80170 -# CONFIG_SCSI_INIA100 is not set
80171 -# CONFIG_SCSI_PPA is not set
80172 -# CONFIG_SCSI_IMM is not set
80173 -# CONFIG_SCSI_MVSAS is not set
80174 -# CONFIG_SCSI_STEX is not set
80175 -# CONFIG_SCSI_SYM53C8XX_2 is not set
80176 -# CONFIG_SCSI_QLOGIC_1280 is not set
80177 -# CONFIG_SCSI_QLA_FC is not set
80178 -# CONFIG_SCSI_QLA_ISCSI is not set
80179 -# CONFIG_SCSI_LPFC is not set
80180 -# CONFIG_SCSI_DC395x is not set
80181 -# CONFIG_SCSI_DC390T is not set
80182 -# CONFIG_SCSI_NSP32 is not set
80183 -# CONFIG_SCSI_DEBUG is not set
80184 -# CONFIG_SCSI_SRP is not set
80185 -# CONFIG_ATA is not set
80186 -# CONFIG_MD is not set
80187 -# CONFIG_FUSION is not set
80188 -
80189 -#
80190 -# IEEE 1394 (FireWire) support
80191 -#
80192 -# CONFIG_FIREWIRE is not set
80193 -# CONFIG_IEEE1394 is not set
80194 -# CONFIG_I2O is not set
80195 -# CONFIG_MACINTOSH_DRIVERS is not set
80196 -CONFIG_NETDEVICES=y
80197 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
80198 -# CONFIG_DUMMY is not set
80199 -# CONFIG_BONDING is not set
80200 -# CONFIG_MACVLAN is not set
80201 -# CONFIG_EQUALIZER is not set
80202 -# CONFIG_TUN is not set
80203 -# CONFIG_VETH is not set
80204 -# CONFIG_ARCNET is not set
80205 -CONFIG_PHYLIB=y
80206 -
80207 -#
80208 -# MII PHY device drivers
80209 -#
80210 -CONFIG_MARVELL_PHY=y
80211 -# CONFIG_DAVICOM_PHY is not set
80212 -# CONFIG_QSEMI_PHY is not set
80213 -# CONFIG_LXT_PHY is not set
80214 -# CONFIG_CICADA_PHY is not set
80215 -# CONFIG_VITESSE_PHY is not set
80216 -# CONFIG_SMSC_PHY is not set
80217 -# CONFIG_BROADCOM_PHY is not set
80218 -# CONFIG_ICPLUS_PHY is not set
80219 -# CONFIG_REALTEK_PHY is not set
80220 -# CONFIG_FIXED_PHY is not set
80221 -# CONFIG_MDIO_BITBANG is not set
80222 -CONFIG_NET_ETHERNET=y
80223 -# CONFIG_MII is not set
80224 -# CONFIG_HAPPYMEAL is not set
80225 -# CONFIG_SUNGEM is not set
80226 -# CONFIG_CASSINI is not set
80227 -# CONFIG_NET_VENDOR_3COM is not set
80228 -# CONFIG_NET_TULIP is not set
80229 -# CONFIG_HP100 is not set
80230 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
80231 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
80232 -# CONFIG_IBM_NEW_EMAC_TAH is not set
80233 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
80234 -# CONFIG_NET_PCI is not set
80235 -# CONFIG_B44 is not set
80236 -# CONFIG_NET_POCKET is not set
80237 -# CONFIG_FS_ENET is not set
80238 -CONFIG_NETDEV_1000=y
80239 -# CONFIG_ACENIC is not set
80240 -# CONFIG_DL2K is not set
80241 -# CONFIG_E1000 is not set
80242 -# CONFIG_E1000E is not set
80243 -# CONFIG_E1000E_ENABLED is not set
80244 -# CONFIG_IP1000 is not set
80245 -# CONFIG_IGB is not set
80246 -# CONFIG_NS83820 is not set
80247 -# CONFIG_HAMACHI is not set
80248 -# CONFIG_YELLOWFIN is not set
80249 -# CONFIG_R8169 is not set
80250 -# CONFIG_SIS190 is not set
80251 -# CONFIG_SKGE is not set
80252 -# CONFIG_SKY2 is not set
80253 -# CONFIG_SK98LIN is not set
80254 -# CONFIG_VIA_VELOCITY is not set
80255 -# CONFIG_TIGON3 is not set
80256 -# CONFIG_BNX2 is not set
80257 -CONFIG_GIANFAR=y
80258 -CONFIG_GFAR_NAPI=y
80259 -# CONFIG_QLA3XXX is not set
80260 -# CONFIG_ATL1 is not set
80261 -CONFIG_NETDEV_10000=y
80262 -# CONFIG_CHELSIO_T1 is not set
80263 -# CONFIG_CHELSIO_T3 is not set
80264 -# CONFIG_IXGBE is not set
80265 -# CONFIG_IXGB is not set
80266 -# CONFIG_S2IO is not set
80267 -# CONFIG_MYRI10GE is not set
80268 -# CONFIG_NETXEN_NIC is not set
80269 -# CONFIG_NIU is not set
80270 -# CONFIG_MLX4_CORE is not set
80271 -# CONFIG_TEHUTI is not set
80272 -# CONFIG_BNX2X is not set
80273 -# CONFIG_TR is not set
80274 -
80275 -#
80276 -# Wireless LAN
80277 -#
80278 -# CONFIG_WLAN_PRE80211 is not set
80279 -# CONFIG_WLAN_80211 is not set
80280 -# CONFIG_WAN is not set
80281 -# CONFIG_FDDI is not set
80282 -# CONFIG_HIPPI is not set
80283 -# CONFIG_PLIP is not set
80284 -# CONFIG_PPP is not set
80285 -# CONFIG_SLIP is not set
80286 -# CONFIG_NET_FC is not set
80287 -# CONFIG_NETCONSOLE is not set
80288 -# CONFIG_NETPOLL is not set
80289 -# CONFIG_NET_POLL_CONTROLLER is not set
80290 -# CONFIG_ISDN is not set
80291 -# CONFIG_PHONE is not set
80292 -
80293 -#
80294 -# Input device support
80295 -#
80296 -CONFIG_INPUT=y
80297 -# CONFIG_INPUT_FF_MEMLESS is not set
80298 -# CONFIG_INPUT_POLLDEV is not set
80299 -
80300 -#
80301 -# Userland interfaces
80302 -#
80303 -CONFIG_INPUT_MOUSEDEV=y
80304 -CONFIG_INPUT_MOUSEDEV_PSAUX=y
80305 -CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280
80306 -CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1024
80307 -CONFIG_INPUT_JOYDEV=m
80308 -CONFIG_INPUT_EVDEV=m
80309 -# CONFIG_INPUT_EVBUG is not set
80310 -
80311 -#
80312 -# Input Device Drivers
80313 -#
80314 -CONFIG_INPUT_KEYBOARD=y
80315 -CONFIG_KEYBOARD_ATKBD=y
80316 -# CONFIG_KEYBOARD_SUNKBD is not set
80317 -# CONFIG_KEYBOARD_LKKBD is not set
80318 -# CONFIG_KEYBOARD_XTKBD is not set
80319 -# CONFIG_KEYBOARD_NEWTON is not set
80320 -# CONFIG_KEYBOARD_STOWAWAY is not set
80321 -CONFIG_INPUT_MOUSE=y
80322 -CONFIG_MOUSE_PS2=y
80323 -CONFIG_MOUSE_PS2_ALPS=y
80324 -CONFIG_MOUSE_PS2_LOGIPS2PP=y
80325 -CONFIG_MOUSE_PS2_SYNAPTICS=y
80326 -CONFIG_MOUSE_PS2_LIFEBOOK=y
80327 -CONFIG_MOUSE_PS2_TRACKPOINT=y
80328 -# CONFIG_MOUSE_PS2_TOUCHKIT is not set
80329 -# CONFIG_MOUSE_SERIAL is not set
80330 -# CONFIG_MOUSE_APPLETOUCH is not set
80331 -# CONFIG_MOUSE_VSXXXAA is not set
80332 -# CONFIG_INPUT_JOYSTICK is not set
80333 -# CONFIG_INPUT_TABLET is not set
80334 -# CONFIG_INPUT_TOUCHSCREEN is not set
80335 -# CONFIG_INPUT_MISC is not set
80336 -
80337 -#
80338 -# Hardware I/O ports
80339 -#
80340 -CONFIG_SERIO=y
80341 -CONFIG_SERIO_I8042=y
80342 -CONFIG_SERIO_SERPORT=y
80343 -# CONFIG_SERIO_PARKBD is not set
80344 -# CONFIG_SERIO_PCIPS2 is not set
80345 -CONFIG_SERIO_LIBPS2=y
80346 -# CONFIG_SERIO_RAW is not set
80347 -# CONFIG_GAMEPORT is not set
80348 -
80349 -#
80350 -# Character devices
80351 -#
80352 -# CONFIG_VT is not set
80353 -# CONFIG_SERIAL_NONSTANDARD is not set
80354 -# CONFIG_NOZOMI is not set
80355 -
80356 -#
80357 -# Serial drivers
80358 -#
80359 -# CONFIG_SERIAL_8250 is not set
80360 -
80361 -#
80362 -# Non-8250 serial port support
80363 -#
80364 -# CONFIG_SERIAL_UARTLITE is not set
80365 -CONFIG_SERIAL_CORE=y
80366 -CONFIG_SERIAL_CORE_CONSOLE=y
80367 -CONFIG_SERIAL_CPM=y
80368 -CONFIG_SERIAL_CPM_CONSOLE=y
80369 -# CONFIG_SERIAL_CPM_SCC1 is not set
80370 -CONFIG_SERIAL_CPM_SCC2=y
80371 -# CONFIG_SERIAL_CPM_SCC3 is not set
80372 -# CONFIG_SERIAL_CPM_SCC4 is not set
80373 -# CONFIG_SERIAL_CPM_SMC1 is not set
80374 -# CONFIG_SERIAL_CPM_SMC2 is not set
80375 -# CONFIG_SERIAL_JSM is not set
80376 -CONFIG_UNIX98_PTYS=y
80377 -CONFIG_LEGACY_PTYS=y
80378 -CONFIG_LEGACY_PTY_COUNT=256
80379 -CONFIG_PRINTER=m
80380 -# CONFIG_LP_CONSOLE is not set
80381 -# CONFIG_PPDEV is not set
80382 -# CONFIG_IPMI_HANDLER is not set
80383 -CONFIG_HW_RANDOM=m
80384 -# CONFIG_NVRAM is not set
80385 -# CONFIG_GEN_RTC is not set
80386 -# CONFIG_R3964 is not set
80387 -# CONFIG_APPLICOM is not set
80388 -# CONFIG_RAW_DRIVER is not set
80389 -# CONFIG_TCG_TPM is not set
80390 -CONFIG_DEVPORT=y
80391 -CONFIG_I2C=m
80392 -CONFIG_I2C_BOARDINFO=y
80393 -CONFIG_I2C_CHARDEV=m
80394 -
80395 -#
80396 -# I2C Algorithms
80397 -#
80398 -CONFIG_I2C_ALGOBIT=m
80399 -# CONFIG_I2C_ALGOPCF is not set
80400 -# CONFIG_I2C_ALGOPCA is not set
80401 -
80402 -#
80403 -# I2C Hardware Bus support
80404 -#
80405 -# CONFIG_I2C_ALI1535 is not set
80406 -# CONFIG_I2C_ALI1563 is not set
80407 -# CONFIG_I2C_ALI15X3 is not set
80408 -# CONFIG_I2C_AMD756 is not set
80409 -# CONFIG_I2C_AMD8111 is not set
80410 -# CONFIG_I2C_I801 is not set
80411 -# CONFIG_I2C_I810 is not set
80412 -# CONFIG_I2C_PIIX4 is not set
80413 -# CONFIG_I2C_MPC is not set
80414 -# CONFIG_I2C_NFORCE2 is not set
80415 -# CONFIG_I2C_OCORES is not set
80416 -# CONFIG_I2C_PARPORT is not set
80417 -# CONFIG_I2C_PARPORT_LIGHT is not set
80418 -# CONFIG_I2C_PROSAVAGE is not set
80419 -# CONFIG_I2C_SAVAGE4 is not set
80420 -# CONFIG_I2C_SIMTEC is not set
80421 -# CONFIG_I2C_SIS5595 is not set
80422 -# CONFIG_I2C_SIS630 is not set
80423 -# CONFIG_I2C_SIS96X is not set
80424 -# CONFIG_I2C_TAOS_EVM is not set
80425 -# CONFIG_I2C_STUB is not set
80426 -# CONFIG_I2C_VIA is not set
80427 -# CONFIG_I2C_VIAPRO is not set
80428 -# CONFIG_I2C_VOODOO3 is not set
80429 -
80430 -#
80431 -# Miscellaneous I2C Chip support
80432 -#
80433 -# CONFIG_DS1682 is not set
80434 -# CONFIG_SENSORS_EEPROM is not set
80435 -# CONFIG_SENSORS_PCF8574 is not set
80436 -# CONFIG_PCF8575 is not set
80437 -# CONFIG_SENSORS_PCF8591 is not set
80438 -# CONFIG_TPS65010 is not set
80439 -# CONFIG_SENSORS_MAX6875 is not set
80440 -# CONFIG_SENSORS_TSL2550 is not set
80441 -# CONFIG_I2C_DEBUG_CORE is not set
80442 -# CONFIG_I2C_DEBUG_ALGO is not set
80443 -# CONFIG_I2C_DEBUG_BUS is not set
80444 -# CONFIG_I2C_DEBUG_CHIP is not set
80445 -
80446 -#
80447 -# SPI support
80448 -#
80449 -# CONFIG_SPI is not set
80450 -# CONFIG_SPI_MASTER is not set
80451 -# CONFIG_W1 is not set
80452 -# CONFIG_POWER_SUPPLY is not set
80453 -CONFIG_HWMON=y
80454 -# CONFIG_HWMON_VID is not set
80455 -# CONFIG_SENSORS_AD7418 is not set
80456 -# CONFIG_SENSORS_ADM1021 is not set
80457 -# CONFIG_SENSORS_ADM1025 is not set
80458 -# CONFIG_SENSORS_ADM1026 is not set
80459 -# CONFIG_SENSORS_ADM1029 is not set
80460 -# CONFIG_SENSORS_ADM1031 is not set
80461 -# CONFIG_SENSORS_ADM9240 is not set
80462 -# CONFIG_SENSORS_ADT7470 is not set
80463 -# CONFIG_SENSORS_ADT7473 is not set
80464 -# CONFIG_SENSORS_ATXP1 is not set
80465 -# CONFIG_SENSORS_DS1621 is not set
80466 -# CONFIG_SENSORS_I5K_AMB is not set
80467 -# CONFIG_SENSORS_F71805F is not set
80468 -# CONFIG_SENSORS_F71882FG is not set
80469 -# CONFIG_SENSORS_F75375S is not set
80470 -# CONFIG_SENSORS_GL518SM is not set
80471 -# CONFIG_SENSORS_GL520SM is not set
80472 -# CONFIG_SENSORS_IT87 is not set
80473 -# CONFIG_SENSORS_LM63 is not set
80474 -# CONFIG_SENSORS_LM75 is not set
80475 -# CONFIG_SENSORS_LM77 is not set
80476 -# CONFIG_SENSORS_LM78 is not set
80477 -# CONFIG_SENSORS_LM80 is not set
80478 -# CONFIG_SENSORS_LM83 is not set
80479 -# CONFIG_SENSORS_LM85 is not set
80480 -# CONFIG_SENSORS_LM87 is not set
80481 -# CONFIG_SENSORS_LM90 is not set
80482 -# CONFIG_SENSORS_LM92 is not set
80483 -# CONFIG_SENSORS_LM93 is not set
80484 -# CONFIG_SENSORS_MAX1619 is not set
80485 -# CONFIG_SENSORS_MAX6650 is not set
80486 -# CONFIG_SENSORS_PC87360 is not set
80487 -# CONFIG_SENSORS_PC87427 is not set
80488 -# CONFIG_SENSORS_SIS5595 is not set
80489 -# CONFIG_SENSORS_DME1737 is not set
80490 -# CONFIG_SENSORS_SMSC47M1 is not set
80491 -# CONFIG_SENSORS_SMSC47M192 is not set
80492 -# CONFIG_SENSORS_SMSC47B397 is not set
80493 -# CONFIG_SENSORS_ADS7828 is not set
80494 -# CONFIG_SENSORS_THMC50 is not set
80495 -# CONFIG_SENSORS_VIA686A is not set
80496 -# CONFIG_SENSORS_VT1211 is not set
80497 -# CONFIG_SENSORS_VT8231 is not set
80498 -# CONFIG_SENSORS_W83781D is not set
80499 -# CONFIG_SENSORS_W83791D is not set
80500 -# CONFIG_SENSORS_W83792D is not set
80501 -# CONFIG_SENSORS_W83793 is not set
80502 -# CONFIG_SENSORS_W83L785TS is not set
80503 -# CONFIG_SENSORS_W83L786NG is not set
80504 -# CONFIG_SENSORS_W83627HF is not set
80505 -# CONFIG_SENSORS_W83627EHF is not set
80506 -# CONFIG_HWMON_DEBUG_CHIP is not set
80507 -# CONFIG_THERMAL is not set
80508 -# CONFIG_WATCHDOG is not set
80509 -
80510 -#
80511 -# Sonics Silicon Backplane
80512 -#
80513 -CONFIG_SSB_POSSIBLE=y
80514 -# CONFIG_SSB is not set
80515 -
80516 -#
80517 -# Multifunction device drivers
80518 -#
80519 -# CONFIG_MFD_SM501 is not set
80520 -
80521 -#
80522 -# Multimedia devices
80523 -#
80524 -# CONFIG_VIDEO_DEV is not set
80525 -# CONFIG_DVB_CORE is not set
80526 -CONFIG_DAB=y
80527 -
80528 -#
80529 -# Graphics support
80530 -#
80531 -CONFIG_AGP=m
80532 -CONFIG_DRM=m
80533 -# CONFIG_DRM_TDFX is not set
80534 -# CONFIG_DRM_R128 is not set
80535 -# CONFIG_DRM_RADEON is not set
80536 -# CONFIG_DRM_MGA is not set
80537 -# CONFIG_DRM_SIS is not set
80538 -# CONFIG_DRM_VIA is not set
80539 -# CONFIG_DRM_SAVAGE is not set
80540 -# CONFIG_VGASTATE is not set
80541 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
80542 -# CONFIG_FB is not set
80543 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
80544 -
80545 -#
80546 -# Display device support
80547 -#
80548 -# CONFIG_DISPLAY_SUPPORT is not set
80549 -
80550 -#
80551 -# Sound
80552 -#
80553 -CONFIG_SOUND=m
80554 -
80555 -#
80556 -# Advanced Linux Sound Architecture
80557 -#
80558 -# CONFIG_SND is not set
80559 -
80560 -#
80561 -# Open Sound System
80562 -#
80563 -# CONFIG_SOUND_PRIME is not set
80564 -CONFIG_HID_SUPPORT=y
80565 -CONFIG_HID=y
80566 -# CONFIG_HID_DEBUG is not set
80567 -# CONFIG_HIDRAW is not set
80568 -CONFIG_USB_SUPPORT=y
80569 -CONFIG_USB_ARCH_HAS_HCD=y
80570 -CONFIG_USB_ARCH_HAS_OHCI=y
80571 -CONFIG_USB_ARCH_HAS_EHCI=y
80572 -# CONFIG_USB is not set
80573 -
80574 -#
80575 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
80576 -#
80577 -# CONFIG_USB_GADGET is not set
80578 -# CONFIG_MMC is not set
80579 -# CONFIG_MEMSTICK is not set
80580 -# CONFIG_NEW_LEDS is not set
80581 -# CONFIG_INFINIBAND is not set
80582 -# CONFIG_EDAC is not set
80583 -# CONFIG_RTC_CLASS is not set
80584 -# CONFIG_DMADEVICES is not set
80585 -# CONFIG_AUXDISPLAY is not set
80586 -
80587 -#
80588 -# Userspace I/O
80589 -#
80590 -# CONFIG_UIO is not set
80591 -
80592 -#
80593 -# File systems
80594 -#
80595 -CONFIG_EXT2_FS=y
80596 -# CONFIG_EXT2_FS_XATTR is not set
80597 -# CONFIG_EXT2_FS_XIP is not set
80598 -CONFIG_EXT3_FS=y
80599 -CONFIG_EXT3_FS_XATTR=y
80600 -# CONFIG_EXT3_FS_POSIX_ACL is not set
80601 -# CONFIG_EXT3_FS_SECURITY is not set
80602 -# CONFIG_EXT4DEV_FS is not set
80603 -CONFIG_JBD=y
80604 -CONFIG_FS_MBCACHE=y
80605 -# CONFIG_REISERFS_FS is not set
80606 -# CONFIG_JFS_FS is not set
80607 -# CONFIG_FS_POSIX_ACL is not set
80608 -# CONFIG_XFS_FS is not set
80609 -# CONFIG_GFS2_FS is not set
80610 -# CONFIG_OCFS2_FS is not set
80611 -CONFIG_DNOTIFY=y
80612 -CONFIG_INOTIFY=y
80613 -CONFIG_INOTIFY_USER=y
80614 -# CONFIG_QUOTA is not set
80615 -CONFIG_AUTOFS_FS=m
80616 -CONFIG_AUTOFS4_FS=y
80617 -# CONFIG_FUSE_FS is not set
80618 -
80619 -#
80620 -# CD-ROM/DVD Filesystems
80621 -#
80622 -CONFIG_ISO9660_FS=m
80623 -# CONFIG_JOLIET is not set
80624 -# CONFIG_ZISOFS is not set
80625 -CONFIG_UDF_FS=m
80626 -CONFIG_UDF_NLS=y
80627 -
80628 -#
80629 -# DOS/FAT/NT Filesystems
80630 -#
80631 -CONFIG_FAT_FS=m
80632 -CONFIG_MSDOS_FS=m
80633 -CONFIG_VFAT_FS=m
80634 -CONFIG_FAT_DEFAULT_CODEPAGE=437
80635 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
80636 -# CONFIG_NTFS_FS is not set
80637 -
80638 -#
80639 -# Pseudo filesystems
80640 -#
80641 -CONFIG_PROC_FS=y
80642 -# CONFIG_PROC_KCORE is not set
80643 -CONFIG_PROC_SYSCTL=y
80644 -CONFIG_SYSFS=y
80645 -CONFIG_TMPFS=y
80646 -# CONFIG_TMPFS_POSIX_ACL is not set
80647 -# CONFIG_HUGETLB_PAGE is not set
80648 -# CONFIG_CONFIGFS_FS is not set
80649 -
80650 -#
80651 -# Miscellaneous filesystems
80652 -#
80653 -# CONFIG_ADFS_FS is not set
80654 -# CONFIG_AFFS_FS is not set
80655 -# CONFIG_HFS_FS is not set
80656 -# CONFIG_HFSPLUS_FS is not set
80657 -# CONFIG_BEFS_FS is not set
80658 -# CONFIG_BFS_FS is not set
80659 -# CONFIG_EFS_FS is not set
80660 -CONFIG_CRAMFS=m
80661 -# CONFIG_VXFS_FS is not set
80662 -# CONFIG_MINIX_FS is not set
80663 -# CONFIG_HPFS_FS is not set
80664 -# CONFIG_QNX4FS_FS is not set
80665 -# CONFIG_ROMFS_FS is not set
80666 -# CONFIG_SYSV_FS is not set
80667 -# CONFIG_UFS_FS is not set
80668 -CONFIG_NETWORK_FILESYSTEMS=y
80669 -CONFIG_NFS_FS=y
80670 -CONFIG_NFS_V3=y
80671 -# CONFIG_NFS_V3_ACL is not set
80672 -# CONFIG_NFS_V4 is not set
80673 -# CONFIG_NFS_DIRECTIO is not set
80674 -# CONFIG_NFSD is not set
80675 -CONFIG_ROOT_NFS=y
80676 -CONFIG_LOCKD=y
80677 -CONFIG_LOCKD_V4=y
80678 -CONFIG_NFS_COMMON=y
80679 -CONFIG_SUNRPC=y
80680 -# CONFIG_SUNRPC_BIND34 is not set
80681 -# CONFIG_RPCSEC_GSS_KRB5 is not set
80682 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
80683 -CONFIG_SMB_FS=m
80684 -# CONFIG_SMB_NLS_DEFAULT is not set
80685 -# CONFIG_CIFS is not set
80686 -# CONFIG_NCP_FS is not set
80687 -# CONFIG_CODA_FS is not set
80688 -# CONFIG_AFS_FS is not set
80689 -
80690 -#
80691 -# Partition Types
80692 -#
80693 -# CONFIG_PARTITION_ADVANCED is not set
80694 -CONFIG_MSDOS_PARTITION=y
80695 -CONFIG_NLS=y
80696 -CONFIG_NLS_DEFAULT="iso8859-1"
80697 -# CONFIG_NLS_CODEPAGE_437 is not set
80698 -# CONFIG_NLS_CODEPAGE_737 is not set
80699 -# CONFIG_NLS_CODEPAGE_775 is not set
80700 -# CONFIG_NLS_CODEPAGE_850 is not set
80701 -# CONFIG_NLS_CODEPAGE_852 is not set
80702 -# CONFIG_NLS_CODEPAGE_855 is not set
80703 -# CONFIG_NLS_CODEPAGE_857 is not set
80704 -# CONFIG_NLS_CODEPAGE_860 is not set
80705 -# CONFIG_NLS_CODEPAGE_861 is not set
80706 -# CONFIG_NLS_CODEPAGE_862 is not set
80707 -# CONFIG_NLS_CODEPAGE_863 is not set
80708 -# CONFIG_NLS_CODEPAGE_864 is not set
80709 -# CONFIG_NLS_CODEPAGE_865 is not set
80710 -# CONFIG_NLS_CODEPAGE_866 is not set
80711 -# CONFIG_NLS_CODEPAGE_869 is not set
80712 -# CONFIG_NLS_CODEPAGE_936 is not set
80713 -# CONFIG_NLS_CODEPAGE_950 is not set
80714 -# CONFIG_NLS_CODEPAGE_932 is not set
80715 -# CONFIG_NLS_CODEPAGE_949 is not set
80716 -# CONFIG_NLS_CODEPAGE_874 is not set
80717 -# CONFIG_NLS_ISO8859_8 is not set
80718 -# CONFIG_NLS_CODEPAGE_1250 is not set
80719 -# CONFIG_NLS_CODEPAGE_1251 is not set
80720 -# CONFIG_NLS_ASCII is not set
80721 -# CONFIG_NLS_ISO8859_1 is not set
80722 -# CONFIG_NLS_ISO8859_2 is not set
80723 -# CONFIG_NLS_ISO8859_3 is not set
80724 -# CONFIG_NLS_ISO8859_4 is not set
80725 -# CONFIG_NLS_ISO8859_5 is not set
80726 -# CONFIG_NLS_ISO8859_6 is not set
80727 -# CONFIG_NLS_ISO8859_7 is not set
80728 -# CONFIG_NLS_ISO8859_9 is not set
80729 -# CONFIG_NLS_ISO8859_13 is not set
80730 -# CONFIG_NLS_ISO8859_14 is not set
80731 -# CONFIG_NLS_ISO8859_15 is not set
80732 -# CONFIG_NLS_KOI8_R is not set
80733 -# CONFIG_NLS_KOI8_U is not set
80734 -# CONFIG_NLS_UTF8 is not set
80735 -# CONFIG_DLM is not set
80736 -
80737 -#
80738 -# Library routines
80739 -#
80740 -CONFIG_BITREVERSE=y
80741 -CONFIG_CRC_CCITT=y
80742 -# CONFIG_CRC16 is not set
80743 -# CONFIG_CRC_ITU_T is not set
80744 -CONFIG_CRC32=y
80745 -# CONFIG_CRC7 is not set
80746 -# CONFIG_LIBCRC32C is not set
80747 -CONFIG_ZLIB_INFLATE=m
80748 -CONFIG_PLIST=y
80749 -CONFIG_HAS_IOMEM=y
80750 -CONFIG_HAS_IOPORT=y
80751 -CONFIG_HAS_DMA=y
80752 -
80753 -#
80754 -# Kernel hacking
80755 -#
80756 -# CONFIG_PRINTK_TIME is not set
80757 -CONFIG_ENABLE_WARN_DEPRECATED=y
80758 -CONFIG_ENABLE_MUST_CHECK=y
80759 -# CONFIG_MAGIC_SYSRQ is not set
80760 -# CONFIG_UNUSED_SYMBOLS is not set
80761 -# CONFIG_DEBUG_FS is not set
80762 -# CONFIG_HEADERS_CHECK is not set
80763 -CONFIG_DEBUG_KERNEL=y
80764 -# CONFIG_DEBUG_SHIRQ is not set
80765 -CONFIG_DETECT_SOFTLOCKUP=y
80766 -CONFIG_SCHED_DEBUG=y
80767 -# CONFIG_SCHEDSTATS is not set
80768 -# CONFIG_TIMER_STATS is not set
80769 -# CONFIG_SLUB_DEBUG_ON is not set
80770 -# CONFIG_SLUB_STATS is not set
80771 -# CONFIG_DEBUG_RT_MUTEXES is not set
80772 -# CONFIG_RT_MUTEX_TESTER is not set
80773 -# CONFIG_DEBUG_SPINLOCK is not set
80774 -# CONFIG_DEBUG_MUTEXES is not set
80775 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
80776 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
80777 -# CONFIG_DEBUG_KOBJECT is not set
80778 -# CONFIG_DEBUG_HIGHMEM is not set
80779 -# CONFIG_DEBUG_BUGVERBOSE is not set
80780 -# CONFIG_DEBUG_INFO is not set
80781 -# CONFIG_DEBUG_VM is not set
80782 -# CONFIG_DEBUG_LIST is not set
80783 -# CONFIG_DEBUG_SG is not set
80784 -# CONFIG_BOOT_PRINTK_DELAY is not set
80785 -# CONFIG_RCU_TORTURE_TEST is not set
80786 -# CONFIG_BACKTRACE_SELF_TEST is not set
80787 -# CONFIG_FAULT_INJECTION is not set
80788 -# CONFIG_SAMPLES is not set
80789 -# CONFIG_DEBUG_STACKOVERFLOW is not set
80790 -# CONFIG_DEBUG_STACK_USAGE is not set
80791 -# CONFIG_DEBUG_PAGEALLOC is not set
80792 -# CONFIG_DEBUGGER is not set
80793 -# CONFIG_KGDB_CONSOLE is not set
80794 -CONFIG_BDI_SWITCH=y
80795 -# CONFIG_PPC_EARLY_DEBUG is not set
80796 -
80797 -#
80798 -# Security options
80799 -#
80800 -# CONFIG_KEYS is not set
80801 -# CONFIG_SECURITY is not set
80802 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
80803 -CONFIG_CRYPTO=y
80804 -# CONFIG_CRYPTO_SEQIV is not set
80805 -# CONFIG_CRYPTO_MANAGER is not set
80806 -# CONFIG_CRYPTO_HMAC is not set
80807 -# CONFIG_CRYPTO_XCBC is not set
80808 -# CONFIG_CRYPTO_NULL is not set
80809 -# CONFIG_CRYPTO_MD4 is not set
80810 -# CONFIG_CRYPTO_MD5 is not set
80811 -# CONFIG_CRYPTO_SHA1 is not set
80812 -# CONFIG_CRYPTO_SHA256 is not set
80813 -# CONFIG_CRYPTO_SHA512 is not set
80814 -# CONFIG_CRYPTO_WP512 is not set
80815 -# CONFIG_CRYPTO_TGR192 is not set
80816 -# CONFIG_CRYPTO_GF128MUL is not set
80817 -# CONFIG_CRYPTO_ECB is not set
80818 -# CONFIG_CRYPTO_CBC is not set
80819 -# CONFIG_CRYPTO_PCBC is not set
80820 -# CONFIG_CRYPTO_LRW is not set
80821 -# CONFIG_CRYPTO_XTS is not set
80822 -# CONFIG_CRYPTO_CTR is not set
80823 -# CONFIG_CRYPTO_GCM is not set
80824 -# CONFIG_CRYPTO_CCM is not set
80825 -# CONFIG_CRYPTO_CRYPTD is not set
80826 -# CONFIG_CRYPTO_DES is not set
80827 -# CONFIG_CRYPTO_FCRYPT is not set
80828 -# CONFIG_CRYPTO_BLOWFISH is not set
80829 -# CONFIG_CRYPTO_TWOFISH is not set
80830 -# CONFIG_CRYPTO_SERPENT is not set
80831 -# CONFIG_CRYPTO_AES is not set
80832 -# CONFIG_CRYPTO_CAST5 is not set
80833 -# CONFIG_CRYPTO_CAST6 is not set
80834 -# CONFIG_CRYPTO_TEA is not set
80835 -# CONFIG_CRYPTO_ARC4 is not set
80836 -# CONFIG_CRYPTO_KHAZAD is not set
80837 -# CONFIG_CRYPTO_ANUBIS is not set
80838 -# CONFIG_CRYPTO_SEED is not set
80839 -# CONFIG_CRYPTO_SALSA20 is not set
80840 -# CONFIG_CRYPTO_DEFLATE is not set
80841 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
80842 -# CONFIG_CRYPTO_CRC32C is not set
80843 -# CONFIG_CRYPTO_CAMELLIA is not set
80844 -# CONFIG_CRYPTO_TEST is not set
80845 -# CONFIG_CRYPTO_AUTHENC is not set
80846 -# CONFIG_CRYPTO_LZO is not set
80847 -CONFIG_CRYPTO_HW=y
80848 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
80849 -# CONFIG_PPC_CLOCK is not set
80850 -CONFIG_PPC_LIB_RHEAP=y
80851 Index: linux-2.6.25.4/arch/powerpc/configs/taishan_defconfig
80852 ===================================================================
80853 --- linux-2.6.25.4.orig/arch/powerpc/configs/taishan_defconfig
80854 +++ /dev/null
80855 @@ -1,815 +0,0 @@
80856 -#
80857 -# Automatically generated make config: don't edit
80858 -# Linux kernel version: 2.6.25-rc2
80859 -# Fri Feb 15 21:40:44 2008
80860 -#
80861 -# CONFIG_PPC64 is not set
80862 -
80863 -#
80864 -# Processor support
80865 -#
80866 -# CONFIG_6xx is not set
80867 -# CONFIG_PPC_85xx is not set
80868 -# CONFIG_PPC_8xx is not set
80869 -# CONFIG_40x is not set
80870 -CONFIG_44x=y
80871 -# CONFIG_E200 is not set
80872 -CONFIG_4xx=y
80873 -CONFIG_BOOKE=y
80874 -CONFIG_PTE_64BIT=y
80875 -CONFIG_PHYS_64BIT=y
80876 -# CONFIG_PPC_MM_SLICES is not set
80877 -CONFIG_NOT_COHERENT_CACHE=y
80878 -CONFIG_PPC32=y
80879 -CONFIG_WORD_SIZE=32
80880 -CONFIG_PPC_MERGE=y
80881 -CONFIG_MMU=y
80882 -CONFIG_GENERIC_CMOS_UPDATE=y
80883 -CONFIG_GENERIC_TIME=y
80884 -CONFIG_GENERIC_TIME_VSYSCALL=y
80885 -CONFIG_GENERIC_CLOCKEVENTS=y
80886 -CONFIG_GENERIC_HARDIRQS=y
80887 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
80888 -CONFIG_IRQ_PER_CPU=y
80889 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
80890 -CONFIG_ARCH_HAS_ILOG2_U32=y
80891 -CONFIG_GENERIC_HWEIGHT=y
80892 -CONFIG_GENERIC_CALIBRATE_DELAY=y
80893 -CONFIG_GENERIC_FIND_NEXT_BIT=y
80894 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
80895 -CONFIG_PPC=y
80896 -CONFIG_EARLY_PRINTK=y
80897 -CONFIG_GENERIC_NVRAM=y
80898 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
80899 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
80900 -CONFIG_PPC_OF=y
80901 -CONFIG_OF=y
80902 -CONFIG_PPC_UDBG_16550=y
80903 -# CONFIG_GENERIC_TBSYNC is not set
80904 -CONFIG_AUDIT_ARCH=y
80905 -CONFIG_GENERIC_BUG=y
80906 -# CONFIG_DEFAULT_UIMAGE is not set
80907 -CONFIG_PPC_DCR_NATIVE=y
80908 -# CONFIG_PPC_DCR_MMIO is not set
80909 -CONFIG_PPC_DCR=y
80910 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
80911 -
80912 -#
80913 -# General setup
80914 -#
80915 -CONFIG_EXPERIMENTAL=y
80916 -CONFIG_BROKEN_ON_SMP=y
80917 -CONFIG_INIT_ENV_ARG_LIMIT=32
80918 -CONFIG_LOCALVERSION=""
80919 -CONFIG_LOCALVERSION_AUTO=y
80920 -CONFIG_SWAP=y
80921 -CONFIG_SYSVIPC=y
80922 -CONFIG_SYSVIPC_SYSCTL=y
80923 -CONFIG_POSIX_MQUEUE=y
80924 -# CONFIG_BSD_PROCESS_ACCT is not set
80925 -# CONFIG_TASKSTATS is not set
80926 -# CONFIG_AUDIT is not set
80927 -# CONFIG_IKCONFIG is not set
80928 -CONFIG_LOG_BUF_SHIFT=14
80929 -# CONFIG_CGROUPS is not set
80930 -CONFIG_GROUP_SCHED=y
80931 -CONFIG_FAIR_GROUP_SCHED=y
80932 -# CONFIG_RT_GROUP_SCHED is not set
80933 -CONFIG_USER_SCHED=y
80934 -# CONFIG_CGROUP_SCHED is not set
80935 -CONFIG_SYSFS_DEPRECATED=y
80936 -# CONFIG_RELAY is not set
80937 -# CONFIG_NAMESPACES is not set
80938 -CONFIG_BLK_DEV_INITRD=y
80939 -CONFIG_INITRAMFS_SOURCE=""
80940 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
80941 -CONFIG_SYSCTL=y
80942 -CONFIG_EMBEDDED=y
80943 -CONFIG_SYSCTL_SYSCALL=y
80944 -CONFIG_KALLSYMS=y
80945 -# CONFIG_KALLSYMS_ALL is not set
80946 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
80947 -CONFIG_HOTPLUG=y
80948 -CONFIG_PRINTK=y
80949 -CONFIG_BUG=y
80950 -CONFIG_ELF_CORE=y
80951 -CONFIG_COMPAT_BRK=y
80952 -CONFIG_BASE_FULL=y
80953 -CONFIG_FUTEX=y
80954 -CONFIG_ANON_INODES=y
80955 -CONFIG_EPOLL=y
80956 -CONFIG_SIGNALFD=y
80957 -CONFIG_TIMERFD=y
80958 -CONFIG_EVENTFD=y
80959 -CONFIG_SHMEM=y
80960 -CONFIG_VM_EVENT_COUNTERS=y
80961 -CONFIG_SLUB_DEBUG=y
80962 -# CONFIG_SLAB is not set
80963 -CONFIG_SLUB=y
80964 -# CONFIG_SLOB is not set
80965 -# CONFIG_PROFILING is not set
80966 -# CONFIG_MARKERS is not set
80967 -CONFIG_HAVE_OPROFILE=y
80968 -# CONFIG_KPROBES is not set
80969 -CONFIG_HAVE_KPROBES=y
80970 -CONFIG_PROC_PAGE_MONITOR=y
80971 -CONFIG_SLABINFO=y
80972 -CONFIG_RT_MUTEXES=y
80973 -# CONFIG_TINY_SHMEM is not set
80974 -CONFIG_BASE_SMALL=0
80975 -CONFIG_MODULES=y
80976 -CONFIG_MODULE_UNLOAD=y
80977 -# CONFIG_MODULE_FORCE_UNLOAD is not set
80978 -# CONFIG_MODVERSIONS is not set
80979 -# CONFIG_MODULE_SRCVERSION_ALL is not set
80980 -CONFIG_KMOD=y
80981 -CONFIG_BLOCK=y
80982 -CONFIG_LBD=y
80983 -# CONFIG_BLK_DEV_IO_TRACE is not set
80984 -# CONFIG_LSF is not set
80985 -# CONFIG_BLK_DEV_BSG is not set
80986 -
80987 -#
80988 -# IO Schedulers
80989 -#
80990 -CONFIG_IOSCHED_NOOP=y
80991 -CONFIG_IOSCHED_AS=y
80992 -CONFIG_IOSCHED_DEADLINE=y
80993 -CONFIG_IOSCHED_CFQ=y
80994 -CONFIG_DEFAULT_AS=y
80995 -# CONFIG_DEFAULT_DEADLINE is not set
80996 -# CONFIG_DEFAULT_CFQ is not set
80997 -# CONFIG_DEFAULT_NOOP is not set
80998 -CONFIG_DEFAULT_IOSCHED="anticipatory"
80999 -CONFIG_CLASSIC_RCU=y
81000 -# CONFIG_PREEMPT_RCU is not set
81001 -# CONFIG_PPC4xx_PCI_EXPRESS is not set
81002 -
81003 -#
81004 -# Platform support
81005 -#
81006 -# CONFIG_PPC_MPC512x is not set
81007 -# CONFIG_PPC_MPC5121 is not set
81008 -# CONFIG_PPC_CELL is not set
81009 -# CONFIG_PPC_CELL_NATIVE is not set
81010 -# CONFIG_PQ2ADS is not set
81011 -# CONFIG_BAMBOO is not set
81012 -# CONFIG_EBONY is not set
81013 -# CONFIG_SEQUOIA is not set
81014 -CONFIG_TAISHAN=y
81015 -# CONFIG_KATMAI is not set
81016 -# CONFIG_RAINIER is not set
81017 -# CONFIG_WARP is not set
81018 -CONFIG_440GX=y
81019 -# CONFIG_IPIC is not set
81020 -# CONFIG_MPIC is not set
81021 -# CONFIG_MPIC_WEIRD is not set
81022 -# CONFIG_PPC_I8259 is not set
81023 -# CONFIG_PPC_RTAS is not set
81024 -# CONFIG_MMIO_NVRAM is not set
81025 -# CONFIG_PPC_MPC106 is not set
81026 -# CONFIG_PPC_970_NAP is not set
81027 -# CONFIG_PPC_INDIRECT_IO is not set
81028 -# CONFIG_GENERIC_IOMAP is not set
81029 -# CONFIG_CPU_FREQ is not set
81030 -# CONFIG_FSL_ULI1575 is not set
81031 -
81032 -#
81033 -# Kernel options
81034 -#
81035 -# CONFIG_HIGHMEM is not set
81036 -# CONFIG_TICK_ONESHOT is not set
81037 -# CONFIG_NO_HZ is not set
81038 -# CONFIG_HIGH_RES_TIMERS is not set
81039 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
81040 -# CONFIG_HZ_100 is not set
81041 -CONFIG_HZ_250=y
81042 -# CONFIG_HZ_300 is not set
81043 -# CONFIG_HZ_1000 is not set
81044 -CONFIG_HZ=250
81045 -# CONFIG_SCHED_HRTICK is not set
81046 -CONFIG_PREEMPT_NONE=y
81047 -# CONFIG_PREEMPT_VOLUNTARY is not set
81048 -# CONFIG_PREEMPT is not set
81049 -CONFIG_RCU_TRACE=y
81050 -CONFIG_BINFMT_ELF=y
81051 -# CONFIG_BINFMT_MISC is not set
81052 -# CONFIG_MATH_EMULATION is not set
81053 -# CONFIG_IOMMU_HELPER is not set
81054 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
81055 -CONFIG_ARCH_HAS_WALK_MEMORY=y
81056 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
81057 -CONFIG_ARCH_FLATMEM_ENABLE=y
81058 -CONFIG_ARCH_POPULATES_NODE_MAP=y
81059 -CONFIG_SELECT_MEMORY_MODEL=y
81060 -CONFIG_FLATMEM_MANUAL=y
81061 -# CONFIG_DISCONTIGMEM_MANUAL is not set
81062 -# CONFIG_SPARSEMEM_MANUAL is not set
81063 -CONFIG_FLATMEM=y
81064 -CONFIG_FLAT_NODE_MEM_MAP=y
81065 -# CONFIG_SPARSEMEM_STATIC is not set
81066 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
81067 -CONFIG_SPLIT_PTLOCK_CPUS=4
81068 -CONFIG_RESOURCES_64BIT=y
81069 -CONFIG_ZONE_DMA_FLAG=1
81070 -CONFIG_BOUNCE=y
81071 -CONFIG_VIRT_TO_BUS=y
81072 -CONFIG_PROC_DEVICETREE=y
81073 -CONFIG_CMDLINE_BOOL=y
81074 -CONFIG_CMDLINE=""
81075 -CONFIG_SECCOMP=y
81076 -CONFIG_ISA_DMA_API=y
81077 -
81078 -#
81079 -# Bus options
81080 -#
81081 -CONFIG_ZONE_DMA=y
81082 -CONFIG_PPC_INDIRECT_PCI=y
81083 -CONFIG_PCI=y
81084 -CONFIG_PCI_DOMAINS=y
81085 -CONFIG_PCI_SYSCALL=y
81086 -# CONFIG_PCIEPORTBUS is not set
81087 -CONFIG_ARCH_SUPPORTS_MSI=y
81088 -# CONFIG_PCI_MSI is not set
81089 -CONFIG_PCI_LEGACY=y
81090 -# CONFIG_PCI_DEBUG is not set
81091 -# CONFIG_PCCARD is not set
81092 -# CONFIG_HOTPLUG_PCI is not set
81093 -
81094 -#
81095 -# Advanced setup
81096 -#
81097 -# CONFIG_ADVANCED_OPTIONS is not set
81098 -
81099 -#
81100 -# Default settings for advanced configuration options are used
81101 -#
81102 -CONFIG_HIGHMEM_START=0xfe000000
81103 -CONFIG_LOWMEM_SIZE=0x30000000
81104 -CONFIG_KERNEL_START=0xc0000000
81105 -CONFIG_TASK_SIZE=0xc0000000
81106 -CONFIG_CONSISTENT_START=0xff100000
81107 -CONFIG_CONSISTENT_SIZE=0x00200000
81108 -CONFIG_BOOT_LOAD=0x01000000
81109 -
81110 -#
81111 -# Networking
81112 -#
81113 -CONFIG_NET=y
81114 -
81115 -#
81116 -# Networking options
81117 -#
81118 -CONFIG_PACKET=y
81119 -# CONFIG_PACKET_MMAP is not set
81120 -CONFIG_UNIX=y
81121 -# CONFIG_NET_KEY is not set
81122 -CONFIG_INET=y
81123 -# CONFIG_IP_MULTICAST is not set
81124 -# CONFIG_IP_ADVANCED_ROUTER is not set
81125 -CONFIG_IP_FIB_HASH=y
81126 -CONFIG_IP_PNP=y
81127 -CONFIG_IP_PNP_DHCP=y
81128 -CONFIG_IP_PNP_BOOTP=y
81129 -# CONFIG_IP_PNP_RARP is not set
81130 -# CONFIG_NET_IPIP is not set
81131 -# CONFIG_NET_IPGRE is not set
81132 -# CONFIG_ARPD is not set
81133 -# CONFIG_SYN_COOKIES is not set
81134 -# CONFIG_INET_AH is not set
81135 -# CONFIG_INET_ESP is not set
81136 -# CONFIG_INET_IPCOMP is not set
81137 -# CONFIG_INET_XFRM_TUNNEL is not set
81138 -# CONFIG_INET_TUNNEL is not set
81139 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
81140 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
81141 -# CONFIG_INET_XFRM_MODE_BEET is not set
81142 -# CONFIG_INET_LRO is not set
81143 -CONFIG_INET_DIAG=y
81144 -CONFIG_INET_TCP_DIAG=y
81145 -# CONFIG_TCP_CONG_ADVANCED is not set
81146 -CONFIG_TCP_CONG_CUBIC=y
81147 -CONFIG_DEFAULT_TCP_CONG="cubic"
81148 -# CONFIG_TCP_MD5SIG is not set
81149 -# CONFIG_IPV6 is not set
81150 -# CONFIG_INET6_XFRM_TUNNEL is not set
81151 -# CONFIG_INET6_TUNNEL is not set
81152 -# CONFIG_NETWORK_SECMARK is not set
81153 -# CONFIG_NETFILTER is not set
81154 -# CONFIG_IP_DCCP is not set
81155 -# CONFIG_IP_SCTP is not set
81156 -# CONFIG_TIPC is not set
81157 -# CONFIG_ATM is not set
81158 -# CONFIG_BRIDGE is not set
81159 -# CONFIG_VLAN_8021Q is not set
81160 -# CONFIG_DECNET is not set
81161 -# CONFIG_LLC2 is not set
81162 -# CONFIG_IPX is not set
81163 -# CONFIG_ATALK is not set
81164 -# CONFIG_X25 is not set
81165 -# CONFIG_LAPB is not set
81166 -# CONFIG_ECONET is not set
81167 -# CONFIG_WAN_ROUTER is not set
81168 -# CONFIG_NET_SCHED is not set
81169 -
81170 -#
81171 -# Network testing
81172 -#
81173 -# CONFIG_NET_PKTGEN is not set
81174 -# CONFIG_HAMRADIO is not set
81175 -# CONFIG_CAN is not set
81176 -# CONFIG_IRDA is not set
81177 -# CONFIG_BT is not set
81178 -# CONFIG_AF_RXRPC is not set
81179 -
81180 -#
81181 -# Wireless
81182 -#
81183 -# CONFIG_CFG80211 is not set
81184 -# CONFIG_WIRELESS_EXT is not set
81185 -# CONFIG_MAC80211 is not set
81186 -# CONFIG_IEEE80211 is not set
81187 -# CONFIG_RFKILL is not set
81188 -# CONFIG_NET_9P is not set
81189 -
81190 -#
81191 -# Device Drivers
81192 -#
81193 -
81194 -#
81195 -# Generic Driver Options
81196 -#
81197 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
81198 -CONFIG_STANDALONE=y
81199 -CONFIG_PREVENT_FIRMWARE_BUILD=y
81200 -CONFIG_FW_LOADER=y
81201 -# CONFIG_DEBUG_DRIVER is not set
81202 -# CONFIG_DEBUG_DEVRES is not set
81203 -# CONFIG_SYS_HYPERVISOR is not set
81204 -CONFIG_CONNECTOR=y
81205 -CONFIG_PROC_EVENTS=y
81206 -# CONFIG_MTD is not set
81207 -CONFIG_OF_DEVICE=y
81208 -# CONFIG_PARPORT is not set
81209 -CONFIG_BLK_DEV=y
81210 -# CONFIG_BLK_DEV_FD is not set
81211 -# CONFIG_BLK_CPQ_DA is not set
81212 -# CONFIG_BLK_CPQ_CISS_DA is not set
81213 -# CONFIG_BLK_DEV_DAC960 is not set
81214 -# CONFIG_BLK_DEV_UMEM is not set
81215 -# CONFIG_BLK_DEV_COW_COMMON is not set
81216 -# CONFIG_BLK_DEV_LOOP is not set
81217 -# CONFIG_BLK_DEV_NBD is not set
81218 -# CONFIG_BLK_DEV_SX8 is not set
81219 -CONFIG_BLK_DEV_RAM=y
81220 -CONFIG_BLK_DEV_RAM_COUNT=16
81221 -CONFIG_BLK_DEV_RAM_SIZE=35000
81222 -# CONFIG_BLK_DEV_XIP is not set
81223 -# CONFIG_CDROM_PKTCDVD is not set
81224 -# CONFIG_ATA_OVER_ETH is not set
81225 -# CONFIG_XILINX_SYSACE is not set
81226 -CONFIG_MISC_DEVICES=y
81227 -# CONFIG_PHANTOM is not set
81228 -# CONFIG_EEPROM_93CX6 is not set
81229 -# CONFIG_SGI_IOC4 is not set
81230 -# CONFIG_TIFM_CORE is not set
81231 -# CONFIG_ENCLOSURE_SERVICES is not set
81232 -CONFIG_HAVE_IDE=y
81233 -# CONFIG_IDE is not set
81234 -
81235 -#
81236 -# SCSI device support
81237 -#
81238 -# CONFIG_RAID_ATTRS is not set
81239 -# CONFIG_SCSI is not set
81240 -# CONFIG_SCSI_DMA is not set
81241 -# CONFIG_SCSI_NETLINK is not set
81242 -# CONFIG_ATA is not set
81243 -# CONFIG_MD is not set
81244 -# CONFIG_FUSION is not set
81245 -
81246 -#
81247 -# IEEE 1394 (FireWire) support
81248 -#
81249 -# CONFIG_FIREWIRE is not set
81250 -# CONFIG_IEEE1394 is not set
81251 -# CONFIG_I2O is not set
81252 -CONFIG_MACINTOSH_DRIVERS=y
81253 -# CONFIG_MAC_EMUMOUSEBTN is not set
81254 -# CONFIG_WINDFARM is not set
81255 -CONFIG_NETDEVICES=y
81256 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
81257 -# CONFIG_DUMMY is not set
81258 -# CONFIG_BONDING is not set
81259 -# CONFIG_MACVLAN is not set
81260 -# CONFIG_EQUALIZER is not set
81261 -# CONFIG_TUN is not set
81262 -# CONFIG_VETH is not set
81263 -# CONFIG_ARCNET is not set
81264 -# CONFIG_PHYLIB is not set
81265 -CONFIG_NET_ETHERNET=y
81266 -# CONFIG_MII is not set
81267 -# CONFIG_HAPPYMEAL is not set
81268 -# CONFIG_SUNGEM is not set
81269 -# CONFIG_CASSINI is not set
81270 -# CONFIG_NET_VENDOR_3COM is not set
81271 -# CONFIG_NET_TULIP is not set
81272 -# CONFIG_HP100 is not set
81273 -CONFIG_IBM_NEW_EMAC=y
81274 -CONFIG_IBM_NEW_EMAC_RXB=128
81275 -CONFIG_IBM_NEW_EMAC_TXB=64
81276 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
81277 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
81278 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
81279 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
81280 -CONFIG_IBM_NEW_EMAC_ZMII=y
81281 -CONFIG_IBM_NEW_EMAC_RGMII=y
81282 -CONFIG_IBM_NEW_EMAC_TAH=y
81283 -CONFIG_IBM_NEW_EMAC_EMAC4=y
81284 -# CONFIG_NET_PCI is not set
81285 -# CONFIG_B44 is not set
81286 -CONFIG_NETDEV_1000=y
81287 -# CONFIG_ACENIC is not set
81288 -# CONFIG_DL2K is not set
81289 -# CONFIG_E1000 is not set
81290 -# CONFIG_E1000E is not set
81291 -# CONFIG_E1000E_ENABLED is not set
81292 -# CONFIG_IP1000 is not set
81293 -# CONFIG_IGB is not set
81294 -# CONFIG_NS83820 is not set
81295 -# CONFIG_HAMACHI is not set
81296 -# CONFIG_YELLOWFIN is not set
81297 -# CONFIG_R8169 is not set
81298 -# CONFIG_SIS190 is not set
81299 -# CONFIG_SKGE is not set
81300 -# CONFIG_SKY2 is not set
81301 -# CONFIG_SK98LIN is not set
81302 -# CONFIG_VIA_VELOCITY is not set
81303 -# CONFIG_TIGON3 is not set
81304 -# CONFIG_BNX2 is not set
81305 -# CONFIG_QLA3XXX is not set
81306 -# CONFIG_ATL1 is not set
81307 -CONFIG_NETDEV_10000=y
81308 -# CONFIG_CHELSIO_T1 is not set
81309 -# CONFIG_CHELSIO_T3 is not set
81310 -# CONFIG_IXGBE is not set
81311 -# CONFIG_IXGB is not set
81312 -# CONFIG_S2IO is not set
81313 -# CONFIG_MYRI10GE is not set
81314 -# CONFIG_NETXEN_NIC is not set
81315 -# CONFIG_NIU is not set
81316 -# CONFIG_MLX4_CORE is not set
81317 -# CONFIG_TEHUTI is not set
81318 -# CONFIG_BNX2X is not set
81319 -# CONFIG_TR is not set
81320 -
81321 -#
81322 -# Wireless LAN
81323 -#
81324 -# CONFIG_WLAN_PRE80211 is not set
81325 -# CONFIG_WLAN_80211 is not set
81326 -# CONFIG_WAN is not set
81327 -# CONFIG_FDDI is not set
81328 -# CONFIG_HIPPI is not set
81329 -# CONFIG_PPP is not set
81330 -# CONFIG_SLIP is not set
81331 -# CONFIG_NETCONSOLE is not set
81332 -# CONFIG_NETPOLL is not set
81333 -# CONFIG_NET_POLL_CONTROLLER is not set
81334 -# CONFIG_ISDN is not set
81335 -# CONFIG_PHONE is not set
81336 -
81337 -#
81338 -# Input device support
81339 -#
81340 -# CONFIG_INPUT is not set
81341 -
81342 -#
81343 -# Hardware I/O ports
81344 -#
81345 -# CONFIG_SERIO is not set
81346 -# CONFIG_GAMEPORT is not set
81347 -
81348 -#
81349 -# Character devices
81350 -#
81351 -# CONFIG_VT is not set
81352 -# CONFIG_SERIAL_NONSTANDARD is not set
81353 -# CONFIG_NOZOMI is not set
81354 -
81355 -#
81356 -# Serial drivers
81357 -#
81358 -CONFIG_SERIAL_8250=y
81359 -CONFIG_SERIAL_8250_CONSOLE=y
81360 -# CONFIG_SERIAL_8250_PCI is not set
81361 -CONFIG_SERIAL_8250_NR_UARTS=4
81362 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
81363 -CONFIG_SERIAL_8250_EXTENDED=y
81364 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
81365 -CONFIG_SERIAL_8250_SHARE_IRQ=y
81366 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
81367 -# CONFIG_SERIAL_8250_RSA is not set
81368 -
81369 -#
81370 -# Non-8250 serial port support
81371 -#
81372 -# CONFIG_SERIAL_UARTLITE is not set
81373 -CONFIG_SERIAL_CORE=y
81374 -CONFIG_SERIAL_CORE_CONSOLE=y
81375 -# CONFIG_SERIAL_JSM is not set
81376 -CONFIG_SERIAL_OF_PLATFORM=y
81377 -CONFIG_UNIX98_PTYS=y
81378 -CONFIG_LEGACY_PTYS=y
81379 -CONFIG_LEGACY_PTY_COUNT=256
81380 -# CONFIG_IPMI_HANDLER is not set
81381 -# CONFIG_HW_RANDOM is not set
81382 -# CONFIG_NVRAM is not set
81383 -# CONFIG_GEN_RTC is not set
81384 -# CONFIG_R3964 is not set
81385 -# CONFIG_APPLICOM is not set
81386 -# CONFIG_RAW_DRIVER is not set
81387 -# CONFIG_TCG_TPM is not set
81388 -CONFIG_DEVPORT=y
81389 -# CONFIG_I2C is not set
81390 -
81391 -#
81392 -# SPI support
81393 -#
81394 -# CONFIG_SPI is not set
81395 -# CONFIG_SPI_MASTER is not set
81396 -# CONFIG_W1 is not set
81397 -# CONFIG_POWER_SUPPLY is not set
81398 -# CONFIG_HWMON is not set
81399 -CONFIG_THERMAL=y
81400 -# CONFIG_WATCHDOG is not set
81401 -
81402 -#
81403 -# Sonics Silicon Backplane
81404 -#
81405 -CONFIG_SSB_POSSIBLE=y
81406 -# CONFIG_SSB is not set
81407 -
81408 -#
81409 -# Multifunction device drivers
81410 -#
81411 -# CONFIG_MFD_SM501 is not set
81412 -
81413 -#
81414 -# Multimedia devices
81415 -#
81416 -# CONFIG_VIDEO_DEV is not set
81417 -# CONFIG_DVB_CORE is not set
81418 -CONFIG_DAB=y
81419 -
81420 -#
81421 -# Graphics support
81422 -#
81423 -# CONFIG_AGP is not set
81424 -# CONFIG_DRM is not set
81425 -# CONFIG_VGASTATE is not set
81426 -CONFIG_VIDEO_OUTPUT_CONTROL=m
81427 -# CONFIG_FB is not set
81428 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
81429 -
81430 -#
81431 -# Display device support
81432 -#
81433 -# CONFIG_DISPLAY_SUPPORT is not set
81434 -
81435 -#
81436 -# Sound
81437 -#
81438 -# CONFIG_SOUND is not set
81439 -CONFIG_USB_SUPPORT=y
81440 -CONFIG_USB_ARCH_HAS_HCD=y
81441 -CONFIG_USB_ARCH_HAS_OHCI=y
81442 -CONFIG_USB_ARCH_HAS_EHCI=y
81443 -# CONFIG_USB is not set
81444 -
81445 -#
81446 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
81447 -#
81448 -# CONFIG_USB_GADGET is not set
81449 -# CONFIG_MMC is not set
81450 -# CONFIG_MEMSTICK is not set
81451 -# CONFIG_NEW_LEDS is not set
81452 -# CONFIG_INFINIBAND is not set
81453 -# CONFIG_EDAC is not set
81454 -# CONFIG_RTC_CLASS is not set
81455 -
81456 -#
81457 -# Userspace I/O
81458 -#
81459 -# CONFIG_UIO is not set
81460 -
81461 -#
81462 -# File systems
81463 -#
81464 -CONFIG_EXT2_FS=y
81465 -# CONFIG_EXT2_FS_XATTR is not set
81466 -# CONFIG_EXT2_FS_XIP is not set
81467 -# CONFIG_EXT3_FS is not set
81468 -# CONFIG_EXT4DEV_FS is not set
81469 -# CONFIG_REISERFS_FS is not set
81470 -# CONFIG_JFS_FS is not set
81471 -# CONFIG_FS_POSIX_ACL is not set
81472 -# CONFIG_XFS_FS is not set
81473 -# CONFIG_GFS2_FS is not set
81474 -# CONFIG_OCFS2_FS is not set
81475 -CONFIG_DNOTIFY=y
81476 -CONFIG_INOTIFY=y
81477 -CONFIG_INOTIFY_USER=y
81478 -# CONFIG_QUOTA is not set
81479 -# CONFIG_AUTOFS_FS is not set
81480 -# CONFIG_AUTOFS4_FS is not set
81481 -# CONFIG_FUSE_FS is not set
81482 -
81483 -#
81484 -# CD-ROM/DVD Filesystems
81485 -#
81486 -# CONFIG_ISO9660_FS is not set
81487 -# CONFIG_UDF_FS is not set
81488 -
81489 -#
81490 -# DOS/FAT/NT Filesystems
81491 -#
81492 -# CONFIG_MSDOS_FS is not set
81493 -# CONFIG_VFAT_FS is not set
81494 -# CONFIG_NTFS_FS is not set
81495 -
81496 -#
81497 -# Pseudo filesystems
81498 -#
81499 -CONFIG_PROC_FS=y
81500 -CONFIG_PROC_KCORE=y
81501 -CONFIG_PROC_SYSCTL=y
81502 -CONFIG_SYSFS=y
81503 -CONFIG_TMPFS=y
81504 -# CONFIG_TMPFS_POSIX_ACL is not set
81505 -# CONFIG_HUGETLB_PAGE is not set
81506 -# CONFIG_CONFIGFS_FS is not set
81507 -
81508 -#
81509 -# Miscellaneous filesystems
81510 -#
81511 -# CONFIG_ADFS_FS is not set
81512 -# CONFIG_AFFS_FS is not set
81513 -# CONFIG_HFS_FS is not set
81514 -# CONFIG_HFSPLUS_FS is not set
81515 -# CONFIG_BEFS_FS is not set
81516 -# CONFIG_BFS_FS is not set
81517 -# CONFIG_EFS_FS is not set
81518 -CONFIG_CRAMFS=y
81519 -# CONFIG_VXFS_FS is not set
81520 -# CONFIG_MINIX_FS is not set
81521 -# CONFIG_HPFS_FS is not set
81522 -# CONFIG_QNX4FS_FS is not set
81523 -# CONFIG_ROMFS_FS is not set
81524 -# CONFIG_SYSV_FS is not set
81525 -# CONFIG_UFS_FS is not set
81526 -CONFIG_NETWORK_FILESYSTEMS=y
81527 -CONFIG_NFS_FS=y
81528 -CONFIG_NFS_V3=y
81529 -# CONFIG_NFS_V3_ACL is not set
81530 -# CONFIG_NFS_V4 is not set
81531 -# CONFIG_NFS_DIRECTIO is not set
81532 -# CONFIG_NFSD is not set
81533 -CONFIG_ROOT_NFS=y
81534 -CONFIG_LOCKD=y
81535 -CONFIG_LOCKD_V4=y
81536 -CONFIG_NFS_COMMON=y
81537 -CONFIG_SUNRPC=y
81538 -# CONFIG_SUNRPC_BIND34 is not set
81539 -# CONFIG_RPCSEC_GSS_KRB5 is not set
81540 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
81541 -# CONFIG_SMB_FS is not set
81542 -# CONFIG_CIFS is not set
81543 -# CONFIG_NCP_FS is not set
81544 -# CONFIG_CODA_FS is not set
81545 -# CONFIG_AFS_FS is not set
81546 -
81547 -#
81548 -# Partition Types
81549 -#
81550 -# CONFIG_PARTITION_ADVANCED is not set
81551 -CONFIG_MSDOS_PARTITION=y
81552 -# CONFIG_NLS is not set
81553 -# CONFIG_DLM is not set
81554 -
81555 -#
81556 -# Library routines
81557 -#
81558 -CONFIG_BITREVERSE=y
81559 -# CONFIG_CRC_CCITT is not set
81560 -# CONFIG_CRC16 is not set
81561 -# CONFIG_CRC_ITU_T is not set
81562 -CONFIG_CRC32=y
81563 -# CONFIG_CRC7 is not set
81564 -# CONFIG_LIBCRC32C is not set
81565 -CONFIG_ZLIB_INFLATE=y
81566 -CONFIG_PLIST=y
81567 -CONFIG_HAS_IOMEM=y
81568 -CONFIG_HAS_IOPORT=y
81569 -CONFIG_HAS_DMA=y
81570 -
81571 -#
81572 -# Kernel hacking
81573 -#
81574 -# CONFIG_PRINTK_TIME is not set
81575 -CONFIG_ENABLE_WARN_DEPRECATED=y
81576 -CONFIG_ENABLE_MUST_CHECK=y
81577 -CONFIG_MAGIC_SYSRQ=y
81578 -# CONFIG_UNUSED_SYMBOLS is not set
81579 -CONFIG_DEBUG_FS=y
81580 -# CONFIG_HEADERS_CHECK is not set
81581 -CONFIG_DEBUG_KERNEL=y
81582 -# CONFIG_DEBUG_SHIRQ is not set
81583 -CONFIG_DETECT_SOFTLOCKUP=y
81584 -CONFIG_SCHED_DEBUG=y
81585 -# CONFIG_SCHEDSTATS is not set
81586 -# CONFIG_TIMER_STATS is not set
81587 -# CONFIG_SLUB_DEBUG_ON is not set
81588 -# CONFIG_SLUB_STATS is not set
81589 -# CONFIG_DEBUG_RT_MUTEXES is not set
81590 -# CONFIG_RT_MUTEX_TESTER is not set
81591 -# CONFIG_DEBUG_SPINLOCK is not set
81592 -# CONFIG_DEBUG_MUTEXES is not set
81593 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
81594 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
81595 -# CONFIG_DEBUG_KOBJECT is not set
81596 -# CONFIG_DEBUG_BUGVERBOSE is not set
81597 -# CONFIG_DEBUG_INFO is not set
81598 -# CONFIG_DEBUG_VM is not set
81599 -# CONFIG_DEBUG_LIST is not set
81600 -# CONFIG_DEBUG_SG is not set
81601 -# CONFIG_BOOT_PRINTK_DELAY is not set
81602 -# CONFIG_RCU_TORTURE_TEST is not set
81603 -# CONFIG_BACKTRACE_SELF_TEST is not set
81604 -# CONFIG_FAULT_INJECTION is not set
81605 -# CONFIG_SAMPLES is not set
81606 -# CONFIG_DEBUG_STACKOVERFLOW is not set
81607 -# CONFIG_DEBUG_STACK_USAGE is not set
81608 -# CONFIG_DEBUG_PAGEALLOC is not set
81609 -CONFIG_DEBUGGER=y
81610 -# CONFIG_KGDB is not set
81611 -# CONFIG_XMON is not set
81612 -# CONFIG_VIRQ_DEBUG is not set
81613 -# CONFIG_BDI_SWITCH is not set
81614 -# CONFIG_PPC_EARLY_DEBUG is not set
81615 -
81616 -#
81617 -# Security options
81618 -#
81619 -# CONFIG_KEYS is not set
81620 -# CONFIG_SECURITY is not set
81621 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
81622 -CONFIG_CRYPTO=y
81623 -CONFIG_CRYPTO_ALGAPI=y
81624 -CONFIG_CRYPTO_BLKCIPHER=y
81625 -# CONFIG_CRYPTO_SEQIV is not set
81626 -CONFIG_CRYPTO_MANAGER=y
81627 -# CONFIG_CRYPTO_HMAC is not set
81628 -# CONFIG_CRYPTO_XCBC is not set
81629 -# CONFIG_CRYPTO_NULL is not set
81630 -# CONFIG_CRYPTO_MD4 is not set
81631 -CONFIG_CRYPTO_MD5=y
81632 -# CONFIG_CRYPTO_SHA1 is not set
81633 -# CONFIG_CRYPTO_SHA256 is not set
81634 -# CONFIG_CRYPTO_SHA512 is not set
81635 -# CONFIG_CRYPTO_WP512 is not set
81636 -# CONFIG_CRYPTO_TGR192 is not set
81637 -# CONFIG_CRYPTO_GF128MUL is not set
81638 -CONFIG_CRYPTO_ECB=y
81639 -CONFIG_CRYPTO_CBC=y
81640 -CONFIG_CRYPTO_PCBC=y
81641 -# CONFIG_CRYPTO_LRW is not set
81642 -# CONFIG_CRYPTO_XTS is not set
81643 -# CONFIG_CRYPTO_CTR is not set
81644 -# CONFIG_CRYPTO_GCM is not set
81645 -# CONFIG_CRYPTO_CCM is not set
81646 -# CONFIG_CRYPTO_CRYPTD is not set
81647 -CONFIG_CRYPTO_DES=y
81648 -# CONFIG_CRYPTO_FCRYPT is not set
81649 -# CONFIG_CRYPTO_BLOWFISH is not set
81650 -# CONFIG_CRYPTO_TWOFISH is not set
81651 -# CONFIG_CRYPTO_SERPENT is not set
81652 -# CONFIG_CRYPTO_AES is not set
81653 -# CONFIG_CRYPTO_CAST5 is not set
81654 -# CONFIG_CRYPTO_CAST6 is not set
81655 -# CONFIG_CRYPTO_TEA is not set
81656 -# CONFIG_CRYPTO_ARC4 is not set
81657 -# CONFIG_CRYPTO_KHAZAD is not set
81658 -# CONFIG_CRYPTO_ANUBIS is not set
81659 -# CONFIG_CRYPTO_SEED is not set
81660 -# CONFIG_CRYPTO_SALSA20 is not set
81661 -# CONFIG_CRYPTO_DEFLATE is not set
81662 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
81663 -# CONFIG_CRYPTO_CRC32C is not set
81664 -# CONFIG_CRYPTO_CAMELLIA is not set
81665 -# CONFIG_CRYPTO_TEST is not set
81666 -# CONFIG_CRYPTO_AUTHENC is not set
81667 -# CONFIG_CRYPTO_LZO is not set
81668 -CONFIG_CRYPTO_HW=y
81669 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
81670 -# CONFIG_PPC_CLOCK is not set
81671 Index: linux-2.6.25.4/arch/powerpc/configs/tqm8540_defconfig
81672 ===================================================================
81673 --- linux-2.6.25.4.orig/arch/powerpc/configs/tqm8540_defconfig
81674 +++ /dev/null
81675 @@ -1,1097 +0,0 @@
81676 -#
81677 -# Automatically generated make config: don't edit
81678 -# Linux kernel version: 2.6.25-rc6
81679 -# Mon Mar 24 08:48:43 2008
81680 -#
81681 -# CONFIG_PPC64 is not set
81682 -
81683 -#
81684 -# Processor support
81685 -#
81686 -# CONFIG_6xx is not set
81687 -CONFIG_PPC_85xx=y
81688 -# CONFIG_PPC_8xx is not set
81689 -# CONFIG_40x is not set
81690 -# CONFIG_44x is not set
81691 -# CONFIG_E200 is not set
81692 -CONFIG_E500=y
81693 -CONFIG_BOOKE=y
81694 -CONFIG_FSL_BOOKE=y
81695 -CONFIG_FSL_EMB_PERFMON=y
81696 -# CONFIG_PHYS_64BIT is not set
81697 -CONFIG_SPE=y
81698 -# CONFIG_PPC_MM_SLICES is not set
81699 -CONFIG_PPC32=y
81700 -CONFIG_WORD_SIZE=32
81701 -CONFIG_PPC_MERGE=y
81702 -CONFIG_MMU=y
81703 -CONFIG_GENERIC_CMOS_UPDATE=y
81704 -CONFIG_GENERIC_TIME=y
81705 -CONFIG_GENERIC_TIME_VSYSCALL=y
81706 -CONFIG_GENERIC_CLOCKEVENTS=y
81707 -CONFIG_GENERIC_HARDIRQS=y
81708 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
81709 -CONFIG_IRQ_PER_CPU=y
81710 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
81711 -CONFIG_ARCH_HAS_ILOG2_U32=y
81712 -CONFIG_GENERIC_HWEIGHT=y
81713 -CONFIG_GENERIC_CALIBRATE_DELAY=y
81714 -CONFIG_GENERIC_FIND_NEXT_BIT=y
81715 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
81716 -CONFIG_PPC=y
81717 -CONFIG_EARLY_PRINTK=y
81718 -CONFIG_GENERIC_NVRAM=y
81719 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
81720 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
81721 -CONFIG_PPC_OF=y
81722 -CONFIG_OF=y
81723 -CONFIG_PPC_UDBG_16550=y
81724 -# CONFIG_GENERIC_TBSYNC is not set
81725 -CONFIG_AUDIT_ARCH=y
81726 -CONFIG_GENERIC_BUG=y
81727 -CONFIG_DEFAULT_UIMAGE=y
81728 -# CONFIG_PPC_DCR_NATIVE is not set
81729 -# CONFIG_PPC_DCR_MMIO is not set
81730 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
81731 -
81732 -#
81733 -# General setup
81734 -#
81735 -CONFIG_EXPERIMENTAL=y
81736 -CONFIG_BROKEN_ON_SMP=y
81737 -CONFIG_INIT_ENV_ARG_LIMIT=32
81738 -CONFIG_LOCALVERSION=""
81739 -CONFIG_LOCALVERSION_AUTO=y
81740 -CONFIG_SWAP=y
81741 -CONFIG_SYSVIPC=y
81742 -CONFIG_SYSVIPC_SYSCTL=y
81743 -# CONFIG_POSIX_MQUEUE is not set
81744 -# CONFIG_BSD_PROCESS_ACCT is not set
81745 -# CONFIG_TASKSTATS is not set
81746 -# CONFIG_AUDIT is not set
81747 -# CONFIG_IKCONFIG is not set
81748 -CONFIG_LOG_BUF_SHIFT=14
81749 -# CONFIG_CGROUPS is not set
81750 -CONFIG_GROUP_SCHED=y
81751 -CONFIG_FAIR_GROUP_SCHED=y
81752 -# CONFIG_RT_GROUP_SCHED is not set
81753 -CONFIG_USER_SCHED=y
81754 -# CONFIG_CGROUP_SCHED is not set
81755 -CONFIG_SYSFS_DEPRECATED=y
81756 -CONFIG_SYSFS_DEPRECATED_V2=y
81757 -# CONFIG_RELAY is not set
81758 -# CONFIG_NAMESPACES is not set
81759 -CONFIG_BLK_DEV_INITRD=y
81760 -CONFIG_INITRAMFS_SOURCE=""
81761 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
81762 -CONFIG_SYSCTL=y
81763 -CONFIG_EMBEDDED=y
81764 -CONFIG_SYSCTL_SYSCALL=y
81765 -# CONFIG_KALLSYMS is not set
81766 -# CONFIG_HOTPLUG is not set
81767 -CONFIG_PRINTK=y
81768 -CONFIG_BUG=y
81769 -CONFIG_ELF_CORE=y
81770 -CONFIG_COMPAT_BRK=y
81771 -CONFIG_BASE_FULL=y
81772 -CONFIG_FUTEX=y
81773 -CONFIG_ANON_INODES=y
81774 -# CONFIG_EPOLL is not set
81775 -CONFIG_SIGNALFD=y
81776 -CONFIG_TIMERFD=y
81777 -CONFIG_EVENTFD=y
81778 -CONFIG_SHMEM=y
81779 -CONFIG_VM_EVENT_COUNTERS=y
81780 -CONFIG_SLUB_DEBUG=y
81781 -# CONFIG_SLAB is not set
81782 -CONFIG_SLUB=y
81783 -# CONFIG_SLOB is not set
81784 -# CONFIG_PROFILING is not set
81785 -# CONFIG_MARKERS is not set
81786 -CONFIG_HAVE_OPROFILE=y
81787 -CONFIG_HAVE_KPROBES=y
81788 -CONFIG_HAVE_KRETPROBES=y
81789 -CONFIG_PROC_PAGE_MONITOR=y
81790 -CONFIG_SLABINFO=y
81791 -CONFIG_RT_MUTEXES=y
81792 -# CONFIG_TINY_SHMEM is not set
81793 -CONFIG_BASE_SMALL=0
81794 -# CONFIG_MODULES is not set
81795 -CONFIG_BLOCK=y
81796 -# CONFIG_LBD is not set
81797 -# CONFIG_BLK_DEV_IO_TRACE is not set
81798 -# CONFIG_LSF is not set
81799 -# CONFIG_BLK_DEV_BSG is not set
81800 -
81801 -#
81802 -# IO Schedulers
81803 -#
81804 -CONFIG_IOSCHED_NOOP=y
81805 -CONFIG_IOSCHED_AS=y
81806 -CONFIG_IOSCHED_DEADLINE=y
81807 -CONFIG_IOSCHED_CFQ=y
81808 -CONFIG_DEFAULT_AS=y
81809 -# CONFIG_DEFAULT_DEADLINE is not set
81810 -# CONFIG_DEFAULT_CFQ is not set
81811 -# CONFIG_DEFAULT_NOOP is not set
81812 -CONFIG_DEFAULT_IOSCHED="anticipatory"
81813 -CONFIG_CLASSIC_RCU=y
81814 -
81815 -#
81816 -# Platform support
81817 -#
81818 -# CONFIG_PPC_MPC512x is not set
81819 -# CONFIG_PPC_MPC5121 is not set
81820 -# CONFIG_PPC_CELL is not set
81821 -# CONFIG_PPC_CELL_NATIVE is not set
81822 -# CONFIG_PQ2ADS is not set
81823 -CONFIG_MPC85xx=y
81824 -# CONFIG_MPC8540_ADS is not set
81825 -# CONFIG_MPC8560_ADS is not set
81826 -# CONFIG_MPC85xx_CDS is not set
81827 -# CONFIG_MPC85xx_MDS is not set
81828 -# CONFIG_MPC85xx_DS is not set
81829 -# CONFIG_STX_GP3 is not set
81830 -CONFIG_TQM8540=y
81831 -# CONFIG_TQM8541 is not set
81832 -# CONFIG_TQM8555 is not set
81833 -# CONFIG_TQM8560 is not set
81834 -# CONFIG_SBC8548 is not set
81835 -# CONFIG_SBC8560 is not set
81836 -CONFIG_TQM85xx=y
81837 -# CONFIG_IPIC is not set
81838 -CONFIG_MPIC=y
81839 -# CONFIG_MPIC_WEIRD is not set
81840 -# CONFIG_PPC_I8259 is not set
81841 -# CONFIG_PPC_RTAS is not set
81842 -# CONFIG_MMIO_NVRAM is not set
81843 -# CONFIG_PPC_MPC106 is not set
81844 -# CONFIG_PPC_970_NAP is not set
81845 -# CONFIG_PPC_INDIRECT_IO is not set
81846 -# CONFIG_GENERIC_IOMAP is not set
81847 -# CONFIG_CPU_FREQ is not set
81848 -# CONFIG_CPM2 is not set
81849 -CONFIG_PPC_CPM_NEW_BINDING=y
81850 -# CONFIG_FSL_ULI1575 is not set
81851 -
81852 -#
81853 -# Kernel options
81854 -#
81855 -# CONFIG_HIGHMEM is not set
81856 -# CONFIG_TICK_ONESHOT is not set
81857 -# CONFIG_NO_HZ is not set
81858 -# CONFIG_HIGH_RES_TIMERS is not set
81859 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
81860 -# CONFIG_HZ_100 is not set
81861 -CONFIG_HZ_250=y
81862 -# CONFIG_HZ_300 is not set
81863 -# CONFIG_HZ_1000 is not set
81864 -CONFIG_HZ=250
81865 -# CONFIG_SCHED_HRTICK is not set
81866 -CONFIG_PREEMPT_NONE=y
81867 -# CONFIG_PREEMPT_VOLUNTARY is not set
81868 -# CONFIG_PREEMPT is not set
81869 -CONFIG_BINFMT_ELF=y
81870 -# CONFIG_BINFMT_MISC is not set
81871 -CONFIG_MATH_EMULATION=y
81872 -# CONFIG_IOMMU_HELPER is not set
81873 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
81874 -CONFIG_ARCH_HAS_WALK_MEMORY=y
81875 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
81876 -CONFIG_ARCH_FLATMEM_ENABLE=y
81877 -CONFIG_ARCH_POPULATES_NODE_MAP=y
81878 -CONFIG_SELECT_MEMORY_MODEL=y
81879 -CONFIG_FLATMEM_MANUAL=y
81880 -# CONFIG_DISCONTIGMEM_MANUAL is not set
81881 -# CONFIG_SPARSEMEM_MANUAL is not set
81882 -CONFIG_FLATMEM=y
81883 -CONFIG_FLAT_NODE_MEM_MAP=y
81884 -# CONFIG_SPARSEMEM_STATIC is not set
81885 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
81886 -CONFIG_SPLIT_PTLOCK_CPUS=4
81887 -# CONFIG_RESOURCES_64BIT is not set
81888 -CONFIG_ZONE_DMA_FLAG=1
81889 -CONFIG_BOUNCE=y
81890 -CONFIG_VIRT_TO_BUS=y
81891 -# CONFIG_PROC_DEVICETREE is not set
81892 -# CONFIG_CMDLINE_BOOL is not set
81893 -# CONFIG_PM is not set
81894 -CONFIG_SECCOMP=y
81895 -CONFIG_ISA_DMA_API=y
81896 -
81897 -#
81898 -# Bus options
81899 -#
81900 -CONFIG_ZONE_DMA=y
81901 -CONFIG_PPC_INDIRECT_PCI=y
81902 -CONFIG_FSL_SOC=y
81903 -CONFIG_FSL_PCI=y
81904 -CONFIG_PCI=y
81905 -CONFIG_PCI_DOMAINS=y
81906 -CONFIG_PCI_SYSCALL=y
81907 -# CONFIG_PCIEPORTBUS is not set
81908 -CONFIG_ARCH_SUPPORTS_MSI=y
81909 -# CONFIG_PCI_MSI is not set
81910 -CONFIG_PCI_LEGACY=y
81911 -
81912 -#
81913 -# Advanced setup
81914 -#
81915 -# CONFIG_ADVANCED_OPTIONS is not set
81916 -
81917 -#
81918 -# Default settings for advanced configuration options are used
81919 -#
81920 -CONFIG_HIGHMEM_START=0xfe000000
81921 -CONFIG_LOWMEM_SIZE=0x30000000
81922 -CONFIG_KERNEL_START=0xc0000000
81923 -CONFIG_TASK_SIZE=0xc0000000
81924 -CONFIG_BOOT_LOAD=0x00800000
81925 -
81926 -#
81927 -# Networking
81928 -#
81929 -CONFIG_NET=y
81930 -
81931 -#
81932 -# Networking options
81933 -#
81934 -CONFIG_PACKET=y
81935 -# CONFIG_PACKET_MMAP is not set
81936 -CONFIG_UNIX=y
81937 -CONFIG_XFRM=y
81938 -# CONFIG_XFRM_USER is not set
81939 -# CONFIG_XFRM_SUB_POLICY is not set
81940 -# CONFIG_XFRM_MIGRATE is not set
81941 -# CONFIG_XFRM_STATISTICS is not set
81942 -# CONFIG_NET_KEY is not set
81943 -CONFIG_INET=y
81944 -CONFIG_IP_MULTICAST=y
81945 -# CONFIG_IP_ADVANCED_ROUTER is not set
81946 -CONFIG_IP_FIB_HASH=y
81947 -CONFIG_IP_PNP=y
81948 -CONFIG_IP_PNP_DHCP=y
81949 -CONFIG_IP_PNP_BOOTP=y
81950 -# CONFIG_IP_PNP_RARP is not set
81951 -# CONFIG_NET_IPIP is not set
81952 -# CONFIG_NET_IPGRE is not set
81953 -# CONFIG_IP_MROUTE is not set
81954 -# CONFIG_ARPD is not set
81955 -CONFIG_SYN_COOKIES=y
81956 -# CONFIG_INET_AH is not set
81957 -# CONFIG_INET_ESP is not set
81958 -# CONFIG_INET_IPCOMP is not set
81959 -# CONFIG_INET_XFRM_TUNNEL is not set
81960 -# CONFIG_INET_TUNNEL is not set
81961 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
81962 -CONFIG_INET_XFRM_MODE_TUNNEL=y
81963 -CONFIG_INET_XFRM_MODE_BEET=y
81964 -# CONFIG_INET_LRO is not set
81965 -CONFIG_INET_DIAG=y
81966 -CONFIG_INET_TCP_DIAG=y
81967 -# CONFIG_TCP_CONG_ADVANCED is not set
81968 -CONFIG_TCP_CONG_CUBIC=y
81969 -CONFIG_DEFAULT_TCP_CONG="cubic"
81970 -# CONFIG_TCP_MD5SIG is not set
81971 -# CONFIG_IPV6 is not set
81972 -# CONFIG_INET6_XFRM_TUNNEL is not set
81973 -# CONFIG_INET6_TUNNEL is not set
81974 -# CONFIG_NETWORK_SECMARK is not set
81975 -# CONFIG_NETFILTER is not set
81976 -# CONFIG_IP_DCCP is not set
81977 -# CONFIG_IP_SCTP is not set
81978 -# CONFIG_TIPC is not set
81979 -# CONFIG_ATM is not set
81980 -# CONFIG_BRIDGE is not set
81981 -# CONFIG_VLAN_8021Q is not set
81982 -# CONFIG_DECNET is not set
81983 -# CONFIG_LLC2 is not set
81984 -# CONFIG_IPX is not set
81985 -# CONFIG_ATALK is not set
81986 -# CONFIG_X25 is not set
81987 -# CONFIG_LAPB is not set
81988 -# CONFIG_ECONET is not set
81989 -# CONFIG_WAN_ROUTER is not set
81990 -# CONFIG_NET_SCHED is not set
81991 -
81992 -#
81993 -# Network testing
81994 -#
81995 -# CONFIG_NET_PKTGEN is not set
81996 -# CONFIG_HAMRADIO is not set
81997 -# CONFIG_CAN is not set
81998 -# CONFIG_IRDA is not set
81999 -# CONFIG_BT is not set
82000 -# CONFIG_AF_RXRPC is not set
82001 -
82002 -#
82003 -# Wireless
82004 -#
82005 -# CONFIG_CFG80211 is not set
82006 -# CONFIG_WIRELESS_EXT is not set
82007 -# CONFIG_MAC80211 is not set
82008 -# CONFIG_IEEE80211 is not set
82009 -# CONFIG_RFKILL is not set
82010 -# CONFIG_NET_9P is not set
82011 -
82012 -#
82013 -# Device Drivers
82014 -#
82015 -
82016 -#
82017 -# Generic Driver Options
82018 -#
82019 -CONFIG_STANDALONE=y
82020 -CONFIG_PREVENT_FIRMWARE_BUILD=y
82021 -# CONFIG_SYS_HYPERVISOR is not set
82022 -# CONFIG_CONNECTOR is not set
82023 -CONFIG_MTD=y
82024 -# CONFIG_MTD_DEBUG is not set
82025 -CONFIG_MTD_CONCAT=y
82026 -CONFIG_MTD_PARTITIONS=y
82027 -# CONFIG_MTD_REDBOOT_PARTS is not set
82028 -CONFIG_MTD_CMDLINE_PARTS=y
82029 -# CONFIG_MTD_OF_PARTS is not set
82030 -
82031 -#
82032 -# User Modules And Translation Layers
82033 -#
82034 -CONFIG_MTD_CHAR=y
82035 -CONFIG_MTD_BLKDEVS=y
82036 -CONFIG_MTD_BLOCK=y
82037 -# CONFIG_FTL is not set
82038 -# CONFIG_NFTL is not set
82039 -# CONFIG_INFTL is not set
82040 -# CONFIG_RFD_FTL is not set
82041 -# CONFIG_SSFDC is not set
82042 -# CONFIG_MTD_OOPS is not set
82043 -
82044 -#
82045 -# RAM/ROM/Flash chip drivers
82046 -#
82047 -CONFIG_MTD_CFI=y
82048 -# CONFIG_MTD_JEDECPROBE is not set
82049 -CONFIG_MTD_GEN_PROBE=y
82050 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
82051 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
82052 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
82053 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
82054 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
82055 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
82056 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
82057 -CONFIG_MTD_CFI_I1=y
82058 -CONFIG_MTD_CFI_I2=y
82059 -# CONFIG_MTD_CFI_I4 is not set
82060 -# CONFIG_MTD_CFI_I8 is not set
82061 -# CONFIG_MTD_CFI_INTELEXT is not set
82062 -CONFIG_MTD_CFI_AMDSTD=y
82063 -# CONFIG_MTD_CFI_STAA is not set
82064 -CONFIG_MTD_CFI_UTIL=y
82065 -# CONFIG_MTD_RAM is not set
82066 -# CONFIG_MTD_ROM is not set
82067 -# CONFIG_MTD_ABSENT is not set
82068 -
82069 -#
82070 -# Mapping drivers for chip access
82071 -#
82072 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
82073 -# CONFIG_MTD_PHYSMAP is not set
82074 -# CONFIG_MTD_PHYSMAP_OF is not set
82075 -# CONFIG_MTD_INTEL_VR_NOR is not set
82076 -# CONFIG_MTD_PLATRAM is not set
82077 -
82078 -#
82079 -# Self-contained MTD device drivers
82080 -#
82081 -# CONFIG_MTD_PMC551 is not set
82082 -# CONFIG_MTD_SLRAM is not set
82083 -# CONFIG_MTD_PHRAM is not set
82084 -# CONFIG_MTD_MTDRAM is not set
82085 -# CONFIG_MTD_BLOCK2MTD is not set
82086 -
82087 -#
82088 -# Disk-On-Chip Device Drivers
82089 -#
82090 -# CONFIG_MTD_DOC2000 is not set
82091 -# CONFIG_MTD_DOC2001 is not set
82092 -# CONFIG_MTD_DOC2001PLUS is not set
82093 -# CONFIG_MTD_NAND is not set
82094 -# CONFIG_MTD_ONENAND is not set
82095 -
82096 -#
82097 -# UBI - Unsorted block images
82098 -#
82099 -# CONFIG_MTD_UBI is not set
82100 -CONFIG_OF_DEVICE=y
82101 -# CONFIG_PARPORT is not set
82102 -CONFIG_BLK_DEV=y
82103 -# CONFIG_BLK_DEV_FD is not set
82104 -# CONFIG_BLK_CPQ_DA is not set
82105 -# CONFIG_BLK_CPQ_CISS_DA is not set
82106 -# CONFIG_BLK_DEV_DAC960 is not set
82107 -# CONFIG_BLK_DEV_UMEM is not set
82108 -# CONFIG_BLK_DEV_COW_COMMON is not set
82109 -CONFIG_BLK_DEV_LOOP=y
82110 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
82111 -# CONFIG_BLK_DEV_NBD is not set
82112 -# CONFIG_BLK_DEV_SX8 is not set
82113 -CONFIG_BLK_DEV_RAM=y
82114 -CONFIG_BLK_DEV_RAM_COUNT=16
82115 -CONFIG_BLK_DEV_RAM_SIZE=32768
82116 -# CONFIG_BLK_DEV_XIP is not set
82117 -# CONFIG_CDROM_PKTCDVD is not set
82118 -# CONFIG_ATA_OVER_ETH is not set
82119 -CONFIG_MISC_DEVICES=y
82120 -# CONFIG_PHANTOM is not set
82121 -# CONFIG_EEPROM_93CX6 is not set
82122 -# CONFIG_SGI_IOC4 is not set
82123 -# CONFIG_TIFM_CORE is not set
82124 -# CONFIG_ENCLOSURE_SERVICES is not set
82125 -CONFIG_HAVE_IDE=y
82126 -CONFIG_IDE=y
82127 -CONFIG_IDE_MAX_HWIFS=4
82128 -CONFIG_BLK_DEV_IDE=y
82129 -
82130 -#
82131 -# Please see Documentation/ide/ide.txt for help/info on IDE drives
82132 -#
82133 -# CONFIG_BLK_DEV_IDE_SATA is not set
82134 -CONFIG_BLK_DEV_IDEDISK=y
82135 -# CONFIG_IDEDISK_MULTI_MODE is not set
82136 -# CONFIG_BLK_DEV_IDECD is not set
82137 -# CONFIG_BLK_DEV_IDETAPE is not set
82138 -# CONFIG_BLK_DEV_IDEFLOPPY is not set
82139 -# CONFIG_IDE_TASK_IOCTL is not set
82140 -CONFIG_IDE_PROC_FS=y
82141 -
82142 -#
82143 -# IDE chipset support/bugfixes
82144 -#
82145 -CONFIG_IDE_GENERIC=y
82146 -# CONFIG_BLK_DEV_PLATFORM is not set
82147 -CONFIG_BLK_DEV_IDEDMA_SFF=y
82148 -
82149 -#
82150 -# PCI IDE chipsets support
82151 -#
82152 -CONFIG_BLK_DEV_IDEPCI=y
82153 -CONFIG_IDEPCI_PCIBUS_ORDER=y
82154 -# CONFIG_BLK_DEV_OFFBOARD is not set
82155 -CONFIG_BLK_DEV_GENERIC=y
82156 -# CONFIG_BLK_DEV_OPTI621 is not set
82157 -CONFIG_BLK_DEV_IDEDMA_PCI=y
82158 -# CONFIG_BLK_DEV_AEC62XX is not set
82159 -# CONFIG_BLK_DEV_ALI15X3 is not set
82160 -# CONFIG_BLK_DEV_AMD74XX is not set
82161 -# CONFIG_BLK_DEV_CMD64X is not set
82162 -# CONFIG_BLK_DEV_TRIFLEX is not set
82163 -# CONFIG_BLK_DEV_CY82C693 is not set
82164 -# CONFIG_BLK_DEV_CS5520 is not set
82165 -# CONFIG_BLK_DEV_CS5530 is not set
82166 -# CONFIG_BLK_DEV_HPT34X is not set
82167 -# CONFIG_BLK_DEV_HPT366 is not set
82168 -# CONFIG_BLK_DEV_JMICRON is not set
82169 -# CONFIG_BLK_DEV_SC1200 is not set
82170 -# CONFIG_BLK_DEV_PIIX is not set
82171 -# CONFIG_BLK_DEV_IT8213 is not set
82172 -# CONFIG_BLK_DEV_IT821X is not set
82173 -# CONFIG_BLK_DEV_NS87415 is not set
82174 -# CONFIG_BLK_DEV_PDC202XX_OLD is not set
82175 -# CONFIG_BLK_DEV_PDC202XX_NEW is not set
82176 -# CONFIG_BLK_DEV_SVWKS is not set
82177 -# CONFIG_BLK_DEV_SIIMAGE is not set
82178 -# CONFIG_BLK_DEV_SL82C105 is not set
82179 -# CONFIG_BLK_DEV_SLC90E66 is not set
82180 -# CONFIG_BLK_DEV_TRM290 is not set
82181 -CONFIG_BLK_DEV_VIA82CXXX=y
82182 -# CONFIG_BLK_DEV_TC86C001 is not set
82183 -CONFIG_BLK_DEV_IDEDMA=y
82184 -CONFIG_IDE_ARCH_OBSOLETE_INIT=y
82185 -# CONFIG_BLK_DEV_HD is not set
82186 -
82187 -#
82188 -# SCSI device support
82189 -#
82190 -# CONFIG_RAID_ATTRS is not set
82191 -# CONFIG_SCSI is not set
82192 -# CONFIG_SCSI_DMA is not set
82193 -# CONFIG_SCSI_NETLINK is not set
82194 -# CONFIG_ATA is not set
82195 -# CONFIG_MD is not set
82196 -# CONFIG_FUSION is not set
82197 -
82198 -#
82199 -# IEEE 1394 (FireWire) support
82200 -#
82201 -# CONFIG_FIREWIRE is not set
82202 -# CONFIG_IEEE1394 is not set
82203 -# CONFIG_I2O is not set
82204 -# CONFIG_MACINTOSH_DRIVERS is not set
82205 -CONFIG_NETDEVICES=y
82206 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
82207 -# CONFIG_DUMMY is not set
82208 -# CONFIG_BONDING is not set
82209 -# CONFIG_MACVLAN is not set
82210 -# CONFIG_EQUALIZER is not set
82211 -# CONFIG_TUN is not set
82212 -# CONFIG_VETH is not set
82213 -# CONFIG_ARCNET is not set
82214 -CONFIG_PHYLIB=y
82215 -
82216 -#
82217 -# MII PHY device drivers
82218 -#
82219 -# CONFIG_MARVELL_PHY is not set
82220 -# CONFIG_DAVICOM_PHY is not set
82221 -# CONFIG_QSEMI_PHY is not set
82222 -# CONFIG_LXT_PHY is not set
82223 -# CONFIG_CICADA_PHY is not set
82224 -# CONFIG_VITESSE_PHY is not set
82225 -# CONFIG_SMSC_PHY is not set
82226 -# CONFIG_BROADCOM_PHY is not set
82227 -# CONFIG_ICPLUS_PHY is not set
82228 -# CONFIG_REALTEK_PHY is not set
82229 -# CONFIG_FIXED_PHY is not set
82230 -# CONFIG_MDIO_BITBANG is not set
82231 -CONFIG_NET_ETHERNET=y
82232 -CONFIG_MII=y
82233 -# CONFIG_HAPPYMEAL is not set
82234 -# CONFIG_SUNGEM is not set
82235 -# CONFIG_CASSINI is not set
82236 -# CONFIG_NET_VENDOR_3COM is not set
82237 -# CONFIG_NET_TULIP is not set
82238 -# CONFIG_HP100 is not set
82239 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
82240 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
82241 -# CONFIG_IBM_NEW_EMAC_TAH is not set
82242 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
82243 -CONFIG_NET_PCI=y
82244 -# CONFIG_PCNET32 is not set
82245 -# CONFIG_AMD8111_ETH is not set
82246 -# CONFIG_ADAPTEC_STARFIRE is not set
82247 -# CONFIG_B44 is not set
82248 -# CONFIG_FORCEDETH is not set
82249 -# CONFIG_EEPRO100 is not set
82250 -CONFIG_E100=y
82251 -# CONFIG_FEALNX is not set
82252 -# CONFIG_NATSEMI is not set
82253 -# CONFIG_NE2K_PCI is not set
82254 -# CONFIG_8139CP is not set
82255 -# CONFIG_8139TOO is not set
82256 -# CONFIG_R6040 is not set
82257 -# CONFIG_SIS900 is not set
82258 -# CONFIG_EPIC100 is not set
82259 -# CONFIG_SUNDANCE is not set
82260 -# CONFIG_TLAN is not set
82261 -# CONFIG_VIA_RHINE is not set
82262 -# CONFIG_SC92031 is not set
82263 -CONFIG_NETDEV_1000=y
82264 -# CONFIG_ACENIC is not set
82265 -# CONFIG_DL2K is not set
82266 -# CONFIG_E1000 is not set
82267 -# CONFIG_E1000E is not set
82268 -# CONFIG_E1000E_ENABLED is not set
82269 -# CONFIG_IP1000 is not set
82270 -# CONFIG_IGB is not set
82271 -# CONFIG_NS83820 is not set
82272 -# CONFIG_HAMACHI is not set
82273 -# CONFIG_YELLOWFIN is not set
82274 -# CONFIG_R8169 is not set
82275 -# CONFIG_SIS190 is not set
82276 -# CONFIG_SKGE is not set
82277 -# CONFIG_SKY2 is not set
82278 -# CONFIG_SK98LIN is not set
82279 -# CONFIG_VIA_VELOCITY is not set
82280 -# CONFIG_TIGON3 is not set
82281 -# CONFIG_BNX2 is not set
82282 -CONFIG_GIANFAR=y
82283 -CONFIG_GFAR_NAPI=y
82284 -# CONFIG_QLA3XXX is not set
82285 -# CONFIG_ATL1 is not set
82286 -CONFIG_NETDEV_10000=y
82287 -# CONFIG_CHELSIO_T1 is not set
82288 -# CONFIG_CHELSIO_T3 is not set
82289 -# CONFIG_IXGBE is not set
82290 -# CONFIG_IXGB is not set
82291 -# CONFIG_S2IO is not set
82292 -# CONFIG_MYRI10GE is not set
82293 -# CONFIG_NETXEN_NIC is not set
82294 -# CONFIG_NIU is not set
82295 -# CONFIG_MLX4_CORE is not set
82296 -# CONFIG_TEHUTI is not set
82297 -# CONFIG_BNX2X is not set
82298 -# CONFIG_TR is not set
82299 -
82300 -#
82301 -# Wireless LAN
82302 -#
82303 -# CONFIG_WLAN_PRE80211 is not set
82304 -# CONFIG_WLAN_80211 is not set
82305 -# CONFIG_WAN is not set
82306 -# CONFIG_FDDI is not set
82307 -# CONFIG_HIPPI is not set
82308 -# CONFIG_PPP is not set
82309 -# CONFIG_SLIP is not set
82310 -# CONFIG_NETCONSOLE is not set
82311 -# CONFIG_NETPOLL is not set
82312 -# CONFIG_NET_POLL_CONTROLLER is not set
82313 -# CONFIG_ISDN is not set
82314 -# CONFIG_PHONE is not set
82315 -
82316 -#
82317 -# Input device support
82318 -#
82319 -CONFIG_INPUT=y
82320 -# CONFIG_INPUT_FF_MEMLESS is not set
82321 -# CONFIG_INPUT_POLLDEV is not set
82322 -
82323 -#
82324 -# Userland interfaces
82325 -#
82326 -# CONFIG_INPUT_MOUSEDEV is not set
82327 -# CONFIG_INPUT_JOYDEV is not set
82328 -# CONFIG_INPUT_EVDEV is not set
82329 -# CONFIG_INPUT_EVBUG is not set
82330 -
82331 -#
82332 -# Input Device Drivers
82333 -#
82334 -# CONFIG_INPUT_KEYBOARD is not set
82335 -# CONFIG_INPUT_MOUSE is not set
82336 -# CONFIG_INPUT_JOYSTICK is not set
82337 -# CONFIG_INPUT_TABLET is not set
82338 -# CONFIG_INPUT_TOUCHSCREEN is not set
82339 -# CONFIG_INPUT_MISC is not set
82340 -
82341 -#
82342 -# Hardware I/O ports
82343 -#
82344 -# CONFIG_SERIO is not set
82345 -# CONFIG_GAMEPORT is not set
82346 -
82347 -#
82348 -# Character devices
82349 -#
82350 -# CONFIG_VT is not set
82351 -# CONFIG_SERIAL_NONSTANDARD is not set
82352 -# CONFIG_NOZOMI is not set
82353 -
82354 -#
82355 -# Serial drivers
82356 -#
82357 -CONFIG_SERIAL_8250=y
82358 -CONFIG_SERIAL_8250_CONSOLE=y
82359 -CONFIG_SERIAL_8250_PCI=y
82360 -CONFIG_SERIAL_8250_NR_UARTS=4
82361 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
82362 -# CONFIG_SERIAL_8250_EXTENDED is not set
82363 -CONFIG_SERIAL_8250_SHARE_IRQ=y
82364 -
82365 -#
82366 -# Non-8250 serial port support
82367 -#
82368 -# CONFIG_SERIAL_UARTLITE is not set
82369 -CONFIG_SERIAL_CORE=y
82370 -CONFIG_SERIAL_CORE_CONSOLE=y
82371 -# CONFIG_SERIAL_JSM is not set
82372 -# CONFIG_SERIAL_OF_PLATFORM is not set
82373 -CONFIG_UNIX98_PTYS=y
82374 -CONFIG_LEGACY_PTYS=y
82375 -CONFIG_LEGACY_PTY_COUNT=256
82376 -# CONFIG_IPMI_HANDLER is not set
82377 -CONFIG_HW_RANDOM=y
82378 -# CONFIG_NVRAM is not set
82379 -CONFIG_GEN_RTC=y
82380 -# CONFIG_GEN_RTC_X is not set
82381 -# CONFIG_R3964 is not set
82382 -# CONFIG_APPLICOM is not set
82383 -# CONFIG_RAW_DRIVER is not set
82384 -# CONFIG_TCG_TPM is not set
82385 -CONFIG_DEVPORT=y
82386 -CONFIG_I2C=y
82387 -CONFIG_I2C_BOARDINFO=y
82388 -CONFIG_I2C_CHARDEV=y
82389 -
82390 -#
82391 -# I2C Algorithms
82392 -#
82393 -# CONFIG_I2C_ALGOBIT is not set
82394 -# CONFIG_I2C_ALGOPCF is not set
82395 -# CONFIG_I2C_ALGOPCA is not set
82396 -
82397 -#
82398 -# I2C Hardware Bus support
82399 -#
82400 -# CONFIG_I2C_ALI1535 is not set
82401 -# CONFIG_I2C_ALI1563 is not set
82402 -# CONFIG_I2C_ALI15X3 is not set
82403 -# CONFIG_I2C_AMD756 is not set
82404 -# CONFIG_I2C_AMD8111 is not set
82405 -# CONFIG_I2C_I801 is not set
82406 -# CONFIG_I2C_I810 is not set
82407 -# CONFIG_I2C_PIIX4 is not set
82408 -CONFIG_I2C_MPC=y
82409 -# CONFIG_I2C_NFORCE2 is not set
82410 -# CONFIG_I2C_OCORES is not set
82411 -# CONFIG_I2C_PARPORT_LIGHT is not set
82412 -# CONFIG_I2C_PROSAVAGE is not set
82413 -# CONFIG_I2C_SAVAGE4 is not set
82414 -# CONFIG_I2C_SIMTEC is not set
82415 -# CONFIG_I2C_SIS5595 is not set
82416 -# CONFIG_I2C_SIS630 is not set
82417 -# CONFIG_I2C_SIS96X is not set
82418 -# CONFIG_I2C_TAOS_EVM is not set
82419 -# CONFIG_I2C_VIA is not set
82420 -# CONFIG_I2C_VIAPRO is not set
82421 -# CONFIG_I2C_VOODOO3 is not set
82422 -
82423 -#
82424 -# Miscellaneous I2C Chip support
82425 -#
82426 -# CONFIG_DS1682 is not set
82427 -# CONFIG_SENSORS_EEPROM is not set
82428 -# CONFIG_SENSORS_PCF8574 is not set
82429 -# CONFIG_PCF8575 is not set
82430 -# CONFIG_SENSORS_PCF8591 is not set
82431 -# CONFIG_TPS65010 is not set
82432 -# CONFIG_SENSORS_MAX6875 is not set
82433 -# CONFIG_SENSORS_TSL2550 is not set
82434 -# CONFIG_I2C_DEBUG_CORE is not set
82435 -# CONFIG_I2C_DEBUG_ALGO is not set
82436 -# CONFIG_I2C_DEBUG_BUS is not set
82437 -# CONFIG_I2C_DEBUG_CHIP is not set
82438 -
82439 -#
82440 -# SPI support
82441 -#
82442 -# CONFIG_SPI is not set
82443 -# CONFIG_SPI_MASTER is not set
82444 -# CONFIG_W1 is not set
82445 -# CONFIG_POWER_SUPPLY is not set
82446 -CONFIG_HWMON=y
82447 -# CONFIG_HWMON_VID is not set
82448 -# CONFIG_SENSORS_AD7418 is not set
82449 -# CONFIG_SENSORS_ADM1021 is not set
82450 -# CONFIG_SENSORS_ADM1025 is not set
82451 -# CONFIG_SENSORS_ADM1026 is not set
82452 -# CONFIG_SENSORS_ADM1029 is not set
82453 -# CONFIG_SENSORS_ADM1031 is not set
82454 -# CONFIG_SENSORS_ADM9240 is not set
82455 -# CONFIG_SENSORS_ADT7470 is not set
82456 -# CONFIG_SENSORS_ADT7473 is not set
82457 -# CONFIG_SENSORS_ATXP1 is not set
82458 -# CONFIG_SENSORS_DS1621 is not set
82459 -# CONFIG_SENSORS_I5K_AMB is not set
82460 -# CONFIG_SENSORS_F71805F is not set
82461 -# CONFIG_SENSORS_F71882FG is not set
82462 -# CONFIG_SENSORS_F75375S is not set
82463 -# CONFIG_SENSORS_GL518SM is not set
82464 -# CONFIG_SENSORS_GL520SM is not set
82465 -# CONFIG_SENSORS_IT87 is not set
82466 -# CONFIG_SENSORS_LM63 is not set
82467 -CONFIG_SENSORS_LM75=y
82468 -# CONFIG_SENSORS_LM77 is not set
82469 -# CONFIG_SENSORS_LM78 is not set
82470 -# CONFIG_SENSORS_LM80 is not set
82471 -# CONFIG_SENSORS_LM83 is not set
82472 -# CONFIG_SENSORS_LM85 is not set
82473 -# CONFIG_SENSORS_LM87 is not set
82474 -# CONFIG_SENSORS_LM90 is not set
82475 -# CONFIG_SENSORS_LM92 is not set
82476 -# CONFIG_SENSORS_LM93 is not set
82477 -# CONFIG_SENSORS_MAX1619 is not set
82478 -# CONFIG_SENSORS_MAX6650 is not set
82479 -# CONFIG_SENSORS_PC87360 is not set
82480 -# CONFIG_SENSORS_PC87427 is not set
82481 -# CONFIG_SENSORS_SIS5595 is not set
82482 -# CONFIG_SENSORS_DME1737 is not set
82483 -# CONFIG_SENSORS_SMSC47M1 is not set
82484 -# CONFIG_SENSORS_SMSC47M192 is not set
82485 -# CONFIG_SENSORS_SMSC47B397 is not set
82486 -# CONFIG_SENSORS_ADS7828 is not set
82487 -# CONFIG_SENSORS_THMC50 is not set
82488 -# CONFIG_SENSORS_VIA686A is not set
82489 -# CONFIG_SENSORS_VT1211 is not set
82490 -# CONFIG_SENSORS_VT8231 is not set
82491 -# CONFIG_SENSORS_W83781D is not set
82492 -# CONFIG_SENSORS_W83791D is not set
82493 -# CONFIG_SENSORS_W83792D is not set
82494 -# CONFIG_SENSORS_W83793 is not set
82495 -# CONFIG_SENSORS_W83L785TS is not set
82496 -# CONFIG_SENSORS_W83L786NG is not set
82497 -# CONFIG_SENSORS_W83627HF is not set
82498 -# CONFIG_SENSORS_W83627EHF is not set
82499 -CONFIG_HWMON_DEBUG_CHIP=y
82500 -# CONFIG_THERMAL is not set
82501 -# CONFIG_WATCHDOG is not set
82502 -
82503 -#
82504 -# Sonics Silicon Backplane
82505 -#
82506 -CONFIG_SSB_POSSIBLE=y
82507 -# CONFIG_SSB is not set
82508 -
82509 -#
82510 -# Multifunction device drivers
82511 -#
82512 -# CONFIG_MFD_SM501 is not set
82513 -
82514 -#
82515 -# Multimedia devices
82516 -#
82517 -# CONFIG_VIDEO_DEV is not set
82518 -# CONFIG_DVB_CORE is not set
82519 -CONFIG_DAB=y
82520 -
82521 -#
82522 -# Graphics support
82523 -#
82524 -# CONFIG_AGP is not set
82525 -# CONFIG_DRM is not set
82526 -# CONFIG_VGASTATE is not set
82527 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
82528 -# CONFIG_FB is not set
82529 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
82530 -
82531 -#
82532 -# Display device support
82533 -#
82534 -# CONFIG_DISPLAY_SUPPORT is not set
82535 -
82536 -#
82537 -# Sound
82538 -#
82539 -# CONFIG_SOUND is not set
82540 -CONFIG_HID_SUPPORT=y
82541 -CONFIG_HID=y
82542 -# CONFIG_HID_DEBUG is not set
82543 -# CONFIG_HIDRAW is not set
82544 -CONFIG_USB_SUPPORT=y
82545 -CONFIG_USB_ARCH_HAS_HCD=y
82546 -CONFIG_USB_ARCH_HAS_OHCI=y
82547 -CONFIG_USB_ARCH_HAS_EHCI=y
82548 -# CONFIG_USB is not set
82549 -
82550 -#
82551 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
82552 -#
82553 -# CONFIG_USB_GADGET is not set
82554 -# CONFIG_MMC is not set
82555 -# CONFIG_MEMSTICK is not set
82556 -# CONFIG_NEW_LEDS is not set
82557 -# CONFIG_INFINIBAND is not set
82558 -# CONFIG_EDAC is not set
82559 -# CONFIG_RTC_CLASS is not set
82560 -# CONFIG_DMADEVICES is not set
82561 -
82562 -#
82563 -# Userspace I/O
82564 -#
82565 -# CONFIG_UIO is not set
82566 -
82567 -#
82568 -# File systems
82569 -#
82570 -CONFIG_EXT2_FS=y
82571 -# CONFIG_EXT2_FS_XATTR is not set
82572 -# CONFIG_EXT2_FS_XIP is not set
82573 -CONFIG_EXT3_FS=y
82574 -CONFIG_EXT3_FS_XATTR=y
82575 -# CONFIG_EXT3_FS_POSIX_ACL is not set
82576 -# CONFIG_EXT3_FS_SECURITY is not set
82577 -# CONFIG_EXT4DEV_FS is not set
82578 -CONFIG_JBD=y
82579 -CONFIG_FS_MBCACHE=y
82580 -# CONFIG_REISERFS_FS is not set
82581 -# CONFIG_JFS_FS is not set
82582 -# CONFIG_FS_POSIX_ACL is not set
82583 -# CONFIG_XFS_FS is not set
82584 -# CONFIG_GFS2_FS is not set
82585 -# CONFIG_OCFS2_FS is not set
82586 -CONFIG_DNOTIFY=y
82587 -CONFIG_INOTIFY=y
82588 -CONFIG_INOTIFY_USER=y
82589 -# CONFIG_QUOTA is not set
82590 -# CONFIG_AUTOFS_FS is not set
82591 -# CONFIG_AUTOFS4_FS is not set
82592 -# CONFIG_FUSE_FS is not set
82593 -
82594 -#
82595 -# CD-ROM/DVD Filesystems
82596 -#
82597 -# CONFIG_ISO9660_FS is not set
82598 -# CONFIG_UDF_FS is not set
82599 -
82600 -#
82601 -# DOS/FAT/NT Filesystems
82602 -#
82603 -# CONFIG_MSDOS_FS is not set
82604 -# CONFIG_VFAT_FS is not set
82605 -# CONFIG_NTFS_FS is not set
82606 -
82607 -#
82608 -# Pseudo filesystems
82609 -#
82610 -CONFIG_PROC_FS=y
82611 -CONFIG_PROC_KCORE=y
82612 -CONFIG_PROC_SYSCTL=y
82613 -CONFIG_SYSFS=y
82614 -CONFIG_TMPFS=y
82615 -# CONFIG_TMPFS_POSIX_ACL is not set
82616 -# CONFIG_HUGETLB_PAGE is not set
82617 -# CONFIG_CONFIGFS_FS is not set
82618 -
82619 -#
82620 -# Miscellaneous filesystems
82621 -#
82622 -# CONFIG_ADFS_FS is not set
82623 -# CONFIG_AFFS_FS is not set
82624 -# CONFIG_HFS_FS is not set
82625 -# CONFIG_HFSPLUS_FS is not set
82626 -# CONFIG_BEFS_FS is not set
82627 -# CONFIG_BFS_FS is not set
82628 -# CONFIG_EFS_FS is not set
82629 -CONFIG_JFFS2_FS=y
82630 -CONFIG_JFFS2_FS_DEBUG=0
82631 -CONFIG_JFFS2_FS_WRITEBUFFER=y
82632 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
82633 -# CONFIG_JFFS2_SUMMARY is not set
82634 -# CONFIG_JFFS2_FS_XATTR is not set
82635 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
82636 -CONFIG_JFFS2_ZLIB=y
82637 -# CONFIG_JFFS2_LZO is not set
82638 -CONFIG_JFFS2_RTIME=y
82639 -# CONFIG_JFFS2_RUBIN is not set
82640 -CONFIG_CRAMFS=y
82641 -# CONFIG_VXFS_FS is not set
82642 -# CONFIG_MINIX_FS is not set
82643 -# CONFIG_HPFS_FS is not set
82644 -# CONFIG_QNX4FS_FS is not set
82645 -# CONFIG_ROMFS_FS is not set
82646 -# CONFIG_SYSV_FS is not set
82647 -# CONFIG_UFS_FS is not set
82648 -CONFIG_NETWORK_FILESYSTEMS=y
82649 -CONFIG_NFS_FS=y
82650 -# CONFIG_NFS_V3 is not set
82651 -# CONFIG_NFS_V4 is not set
82652 -# CONFIG_NFS_DIRECTIO is not set
82653 -# CONFIG_NFSD is not set
82654 -CONFIG_ROOT_NFS=y
82655 -CONFIG_LOCKD=y
82656 -CONFIG_NFS_COMMON=y
82657 -CONFIG_SUNRPC=y
82658 -# CONFIG_SUNRPC_BIND34 is not set
82659 -# CONFIG_RPCSEC_GSS_KRB5 is not set
82660 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
82661 -# CONFIG_SMB_FS is not set
82662 -# CONFIG_CIFS is not set
82663 -# CONFIG_NCP_FS is not set
82664 -# CONFIG_CODA_FS is not set
82665 -# CONFIG_AFS_FS is not set
82666 -
82667 -#
82668 -# Partition Types
82669 -#
82670 -CONFIG_PARTITION_ADVANCED=y
82671 -# CONFIG_ACORN_PARTITION is not set
82672 -# CONFIG_OSF_PARTITION is not set
82673 -# CONFIG_AMIGA_PARTITION is not set
82674 -# CONFIG_ATARI_PARTITION is not set
82675 -# CONFIG_MAC_PARTITION is not set
82676 -# CONFIG_MSDOS_PARTITION is not set
82677 -# CONFIG_LDM_PARTITION is not set
82678 -# CONFIG_SGI_PARTITION is not set
82679 -# CONFIG_ULTRIX_PARTITION is not set
82680 -# CONFIG_SUN_PARTITION is not set
82681 -# CONFIG_KARMA_PARTITION is not set
82682 -# CONFIG_EFI_PARTITION is not set
82683 -# CONFIG_SYSV68_PARTITION is not set
82684 -# CONFIG_NLS is not set
82685 -# CONFIG_DLM is not set
82686 -
82687 -#
82688 -# Library routines
82689 -#
82690 -CONFIG_BITREVERSE=y
82691 -# CONFIG_CRC_CCITT is not set
82692 -# CONFIG_CRC16 is not set
82693 -# CONFIG_CRC_ITU_T is not set
82694 -CONFIG_CRC32=y
82695 -# CONFIG_CRC7 is not set
82696 -# CONFIG_LIBCRC32C is not set
82697 -CONFIG_ZLIB_INFLATE=y
82698 -CONFIG_ZLIB_DEFLATE=y
82699 -CONFIG_PLIST=y
82700 -CONFIG_HAS_IOMEM=y
82701 -CONFIG_HAS_IOPORT=y
82702 -CONFIG_HAS_DMA=y
82703 -
82704 -#
82705 -# Kernel hacking
82706 -#
82707 -# CONFIG_PRINTK_TIME is not set
82708 -CONFIG_ENABLE_WARN_DEPRECATED=y
82709 -CONFIG_ENABLE_MUST_CHECK=y
82710 -# CONFIG_MAGIC_SYSRQ is not set
82711 -# CONFIG_UNUSED_SYMBOLS is not set
82712 -# CONFIG_DEBUG_FS is not set
82713 -# CONFIG_HEADERS_CHECK is not set
82714 -# CONFIG_DEBUG_KERNEL is not set
82715 -# CONFIG_SLUB_DEBUG_ON is not set
82716 -# CONFIG_SLUB_STATS is not set
82717 -# CONFIG_DEBUG_BUGVERBOSE is not set
82718 -# CONFIG_SAMPLES is not set
82719 -# CONFIG_PPC_EARLY_DEBUG is not set
82720 -
82721 -#
82722 -# Security options
82723 -#
82724 -# CONFIG_KEYS is not set
82725 -# CONFIG_SECURITY is not set
82726 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
82727 -CONFIG_CRYPTO=y
82728 -# CONFIG_CRYPTO_SEQIV is not set
82729 -# CONFIG_CRYPTO_MANAGER is not set
82730 -# CONFIG_CRYPTO_HMAC is not set
82731 -# CONFIG_CRYPTO_XCBC is not set
82732 -# CONFIG_CRYPTO_NULL is not set
82733 -# CONFIG_CRYPTO_MD4 is not set
82734 -# CONFIG_CRYPTO_MD5 is not set
82735 -# CONFIG_CRYPTO_SHA1 is not set
82736 -# CONFIG_CRYPTO_SHA256 is not set
82737 -# CONFIG_CRYPTO_SHA512 is not set
82738 -# CONFIG_CRYPTO_WP512 is not set
82739 -# CONFIG_CRYPTO_TGR192 is not set
82740 -# CONFIG_CRYPTO_GF128MUL is not set
82741 -# CONFIG_CRYPTO_ECB is not set
82742 -# CONFIG_CRYPTO_CBC is not set
82743 -# CONFIG_CRYPTO_PCBC is not set
82744 -# CONFIG_CRYPTO_LRW is not set
82745 -# CONFIG_CRYPTO_XTS is not set
82746 -# CONFIG_CRYPTO_CTR is not set
82747 -# CONFIG_CRYPTO_GCM is not set
82748 -# CONFIG_CRYPTO_CCM is not set
82749 -# CONFIG_CRYPTO_CRYPTD is not set
82750 -# CONFIG_CRYPTO_DES is not set
82751 -# CONFIG_CRYPTO_FCRYPT is not set
82752 -# CONFIG_CRYPTO_BLOWFISH is not set
82753 -# CONFIG_CRYPTO_TWOFISH is not set
82754 -# CONFIG_CRYPTO_SERPENT is not set
82755 -# CONFIG_CRYPTO_AES is not set
82756 -# CONFIG_CRYPTO_CAST5 is not set
82757 -# CONFIG_CRYPTO_CAST6 is not set
82758 -# CONFIG_CRYPTO_TEA is not set
82759 -# CONFIG_CRYPTO_ARC4 is not set
82760 -# CONFIG_CRYPTO_KHAZAD is not set
82761 -# CONFIG_CRYPTO_ANUBIS is not set
82762 -# CONFIG_CRYPTO_SEED is not set
82763 -# CONFIG_CRYPTO_SALSA20 is not set
82764 -# CONFIG_CRYPTO_DEFLATE is not set
82765 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
82766 -# CONFIG_CRYPTO_CRC32C is not set
82767 -# CONFIG_CRYPTO_CAMELLIA is not set
82768 -# CONFIG_CRYPTO_AUTHENC is not set
82769 -# CONFIG_CRYPTO_LZO is not set
82770 -CONFIG_CRYPTO_HW=y
82771 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
82772 -# CONFIG_PPC_CLOCK is not set
82773 Index: linux-2.6.25.4/arch/powerpc/configs/tqm8541_defconfig
82774 ===================================================================
82775 --- linux-2.6.25.4.orig/arch/powerpc/configs/tqm8541_defconfig
82776 +++ /dev/null
82777 @@ -1,1109 +0,0 @@
82778 -#
82779 -# Automatically generated make config: don't edit
82780 -# Linux kernel version: 2.6.25-rc6
82781 -# Mon Mar 24 08:48:44 2008
82782 -#
82783 -# CONFIG_PPC64 is not set
82784 -
82785 -#
82786 -# Processor support
82787 -#
82788 -# CONFIG_6xx is not set
82789 -CONFIG_PPC_85xx=y
82790 -# CONFIG_PPC_8xx is not set
82791 -# CONFIG_40x is not set
82792 -# CONFIG_44x is not set
82793 -# CONFIG_E200 is not set
82794 -CONFIG_E500=y
82795 -CONFIG_BOOKE=y
82796 -CONFIG_FSL_BOOKE=y
82797 -CONFIG_FSL_EMB_PERFMON=y
82798 -# CONFIG_PHYS_64BIT is not set
82799 -CONFIG_SPE=y
82800 -# CONFIG_PPC_MM_SLICES is not set
82801 -CONFIG_PPC32=y
82802 -CONFIG_WORD_SIZE=32
82803 -CONFIG_PPC_MERGE=y
82804 -CONFIG_MMU=y
82805 -CONFIG_GENERIC_CMOS_UPDATE=y
82806 -CONFIG_GENERIC_TIME=y
82807 -CONFIG_GENERIC_TIME_VSYSCALL=y
82808 -CONFIG_GENERIC_CLOCKEVENTS=y
82809 -CONFIG_GENERIC_HARDIRQS=y
82810 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
82811 -CONFIG_IRQ_PER_CPU=y
82812 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
82813 -CONFIG_ARCH_HAS_ILOG2_U32=y
82814 -CONFIG_GENERIC_HWEIGHT=y
82815 -CONFIG_GENERIC_CALIBRATE_DELAY=y
82816 -CONFIG_GENERIC_FIND_NEXT_BIT=y
82817 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
82818 -CONFIG_PPC=y
82819 -CONFIG_EARLY_PRINTK=y
82820 -CONFIG_GENERIC_NVRAM=y
82821 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
82822 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
82823 -CONFIG_PPC_OF=y
82824 -CONFIG_OF=y
82825 -CONFIG_PPC_UDBG_16550=y
82826 -# CONFIG_GENERIC_TBSYNC is not set
82827 -CONFIG_AUDIT_ARCH=y
82828 -CONFIG_GENERIC_BUG=y
82829 -CONFIG_DEFAULT_UIMAGE=y
82830 -# CONFIG_PPC_DCR_NATIVE is not set
82831 -# CONFIG_PPC_DCR_MMIO is not set
82832 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
82833 -
82834 -#
82835 -# General setup
82836 -#
82837 -CONFIG_EXPERIMENTAL=y
82838 -CONFIG_BROKEN_ON_SMP=y
82839 -CONFIG_INIT_ENV_ARG_LIMIT=32
82840 -CONFIG_LOCALVERSION=""
82841 -CONFIG_LOCALVERSION_AUTO=y
82842 -CONFIG_SWAP=y
82843 -CONFIG_SYSVIPC=y
82844 -CONFIG_SYSVIPC_SYSCTL=y
82845 -# CONFIG_POSIX_MQUEUE is not set
82846 -# CONFIG_BSD_PROCESS_ACCT is not set
82847 -# CONFIG_TASKSTATS is not set
82848 -# CONFIG_AUDIT is not set
82849 -# CONFIG_IKCONFIG is not set
82850 -CONFIG_LOG_BUF_SHIFT=14
82851 -# CONFIG_CGROUPS is not set
82852 -CONFIG_GROUP_SCHED=y
82853 -CONFIG_FAIR_GROUP_SCHED=y
82854 -# CONFIG_RT_GROUP_SCHED is not set
82855 -CONFIG_USER_SCHED=y
82856 -# CONFIG_CGROUP_SCHED is not set
82857 -CONFIG_SYSFS_DEPRECATED=y
82858 -CONFIG_SYSFS_DEPRECATED_V2=y
82859 -# CONFIG_RELAY is not set
82860 -# CONFIG_NAMESPACES is not set
82861 -CONFIG_BLK_DEV_INITRD=y
82862 -CONFIG_INITRAMFS_SOURCE=""
82863 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
82864 -CONFIG_SYSCTL=y
82865 -CONFIG_EMBEDDED=y
82866 -CONFIG_SYSCTL_SYSCALL=y
82867 -# CONFIG_KALLSYMS is not set
82868 -# CONFIG_HOTPLUG is not set
82869 -CONFIG_PRINTK=y
82870 -CONFIG_BUG=y
82871 -CONFIG_ELF_CORE=y
82872 -CONFIG_COMPAT_BRK=y
82873 -CONFIG_BASE_FULL=y
82874 -CONFIG_FUTEX=y
82875 -CONFIG_ANON_INODES=y
82876 -# CONFIG_EPOLL is not set
82877 -CONFIG_SIGNALFD=y
82878 -CONFIG_TIMERFD=y
82879 -CONFIG_EVENTFD=y
82880 -CONFIG_SHMEM=y
82881 -CONFIG_VM_EVENT_COUNTERS=y
82882 -CONFIG_SLUB_DEBUG=y
82883 -# CONFIG_SLAB is not set
82884 -CONFIG_SLUB=y
82885 -# CONFIG_SLOB is not set
82886 -# CONFIG_PROFILING is not set
82887 -# CONFIG_MARKERS is not set
82888 -CONFIG_HAVE_OPROFILE=y
82889 -CONFIG_HAVE_KPROBES=y
82890 -CONFIG_HAVE_KRETPROBES=y
82891 -CONFIG_PROC_PAGE_MONITOR=y
82892 -CONFIG_SLABINFO=y
82893 -CONFIG_RT_MUTEXES=y
82894 -# CONFIG_TINY_SHMEM is not set
82895 -CONFIG_BASE_SMALL=0
82896 -# CONFIG_MODULES is not set
82897 -CONFIG_BLOCK=y
82898 -# CONFIG_LBD is not set
82899 -# CONFIG_BLK_DEV_IO_TRACE is not set
82900 -# CONFIG_LSF is not set
82901 -# CONFIG_BLK_DEV_BSG is not set
82902 -
82903 -#
82904 -# IO Schedulers
82905 -#
82906 -CONFIG_IOSCHED_NOOP=y
82907 -CONFIG_IOSCHED_AS=y
82908 -CONFIG_IOSCHED_DEADLINE=y
82909 -CONFIG_IOSCHED_CFQ=y
82910 -CONFIG_DEFAULT_AS=y
82911 -# CONFIG_DEFAULT_DEADLINE is not set
82912 -# CONFIG_DEFAULT_CFQ is not set
82913 -# CONFIG_DEFAULT_NOOP is not set
82914 -CONFIG_DEFAULT_IOSCHED="anticipatory"
82915 -CONFIG_CLASSIC_RCU=y
82916 -
82917 -#
82918 -# Platform support
82919 -#
82920 -# CONFIG_PPC_MPC512x is not set
82921 -# CONFIG_PPC_MPC5121 is not set
82922 -# CONFIG_PPC_CELL is not set
82923 -# CONFIG_PPC_CELL_NATIVE is not set
82924 -# CONFIG_PQ2ADS is not set
82925 -CONFIG_MPC85xx=y
82926 -# CONFIG_MPC8540_ADS is not set
82927 -# CONFIG_MPC8560_ADS is not set
82928 -# CONFIG_MPC85xx_CDS is not set
82929 -# CONFIG_MPC85xx_MDS is not set
82930 -# CONFIG_MPC85xx_DS is not set
82931 -# CONFIG_STX_GP3 is not set
82932 -# CONFIG_TQM8540 is not set
82933 -CONFIG_TQM8541=y
82934 -# CONFIG_TQM8555 is not set
82935 -# CONFIG_TQM8560 is not set
82936 -# CONFIG_SBC8548 is not set
82937 -# CONFIG_SBC8560 is not set
82938 -CONFIG_TQM85xx=y
82939 -# CONFIG_IPIC is not set
82940 -CONFIG_MPIC=y
82941 -# CONFIG_MPIC_WEIRD is not set
82942 -# CONFIG_PPC_I8259 is not set
82943 -# CONFIG_PPC_RTAS is not set
82944 -# CONFIG_MMIO_NVRAM is not set
82945 -# CONFIG_PPC_MPC106 is not set
82946 -# CONFIG_PPC_970_NAP is not set
82947 -# CONFIG_PPC_INDIRECT_IO is not set
82948 -# CONFIG_GENERIC_IOMAP is not set
82949 -# CONFIG_CPU_FREQ is not set
82950 -CONFIG_CPM2=y
82951 -CONFIG_PPC_CPM_NEW_BINDING=y
82952 -# CONFIG_FSL_ULI1575 is not set
82953 -CONFIG_CPM=y
82954 -
82955 -#
82956 -# Kernel options
82957 -#
82958 -# CONFIG_HIGHMEM is not set
82959 -# CONFIG_TICK_ONESHOT is not set
82960 -# CONFIG_NO_HZ is not set
82961 -# CONFIG_HIGH_RES_TIMERS is not set
82962 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
82963 -# CONFIG_HZ_100 is not set
82964 -CONFIG_HZ_250=y
82965 -# CONFIG_HZ_300 is not set
82966 -# CONFIG_HZ_1000 is not set
82967 -CONFIG_HZ=250
82968 -# CONFIG_SCHED_HRTICK is not set
82969 -CONFIG_PREEMPT_NONE=y
82970 -# CONFIG_PREEMPT_VOLUNTARY is not set
82971 -# CONFIG_PREEMPT is not set
82972 -CONFIG_BINFMT_ELF=y
82973 -# CONFIG_BINFMT_MISC is not set
82974 -CONFIG_MATH_EMULATION=y
82975 -# CONFIG_IOMMU_HELPER is not set
82976 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
82977 -CONFIG_ARCH_HAS_WALK_MEMORY=y
82978 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
82979 -CONFIG_ARCH_FLATMEM_ENABLE=y
82980 -CONFIG_ARCH_POPULATES_NODE_MAP=y
82981 -CONFIG_SELECT_MEMORY_MODEL=y
82982 -CONFIG_FLATMEM_MANUAL=y
82983 -# CONFIG_DISCONTIGMEM_MANUAL is not set
82984 -# CONFIG_SPARSEMEM_MANUAL is not set
82985 -CONFIG_FLATMEM=y
82986 -CONFIG_FLAT_NODE_MEM_MAP=y
82987 -# CONFIG_SPARSEMEM_STATIC is not set
82988 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
82989 -CONFIG_SPLIT_PTLOCK_CPUS=4
82990 -# CONFIG_RESOURCES_64BIT is not set
82991 -CONFIG_ZONE_DMA_FLAG=1
82992 -CONFIG_BOUNCE=y
82993 -CONFIG_VIRT_TO_BUS=y
82994 -# CONFIG_PROC_DEVICETREE is not set
82995 -# CONFIG_CMDLINE_BOOL is not set
82996 -# CONFIG_PM is not set
82997 -CONFIG_SECCOMP=y
82998 -CONFIG_ISA_DMA_API=y
82999 -
83000 -#
83001 -# Bus options
83002 -#
83003 -CONFIG_ZONE_DMA=y
83004 -CONFIG_PPC_INDIRECT_PCI=y
83005 -CONFIG_FSL_SOC=y
83006 -CONFIG_FSL_PCI=y
83007 -CONFIG_PCI=y
83008 -CONFIG_PCI_DOMAINS=y
83009 -CONFIG_PCI_SYSCALL=y
83010 -# CONFIG_PCIEPORTBUS is not set
83011 -CONFIG_ARCH_SUPPORTS_MSI=y
83012 -# CONFIG_PCI_MSI is not set
83013 -CONFIG_PCI_LEGACY=y
83014 -
83015 -#
83016 -# Advanced setup
83017 -#
83018 -# CONFIG_ADVANCED_OPTIONS is not set
83019 -
83020 -#
83021 -# Default settings for advanced configuration options are used
83022 -#
83023 -CONFIG_HIGHMEM_START=0xfe000000
83024 -CONFIG_LOWMEM_SIZE=0x30000000
83025 -CONFIG_KERNEL_START=0xc0000000
83026 -CONFIG_TASK_SIZE=0xc0000000
83027 -CONFIG_BOOT_LOAD=0x00800000
83028 -
83029 -#
83030 -# Networking
83031 -#
83032 -CONFIG_NET=y
83033 -
83034 -#
83035 -# Networking options
83036 -#
83037 -CONFIG_PACKET=y
83038 -# CONFIG_PACKET_MMAP is not set
83039 -CONFIG_UNIX=y
83040 -CONFIG_XFRM=y
83041 -# CONFIG_XFRM_USER is not set
83042 -# CONFIG_XFRM_SUB_POLICY is not set
83043 -# CONFIG_XFRM_MIGRATE is not set
83044 -# CONFIG_XFRM_STATISTICS is not set
83045 -# CONFIG_NET_KEY is not set
83046 -CONFIG_INET=y
83047 -CONFIG_IP_MULTICAST=y
83048 -# CONFIG_IP_ADVANCED_ROUTER is not set
83049 -CONFIG_IP_FIB_HASH=y
83050 -CONFIG_IP_PNP=y
83051 -CONFIG_IP_PNP_DHCP=y
83052 -CONFIG_IP_PNP_BOOTP=y
83053 -# CONFIG_IP_PNP_RARP is not set
83054 -# CONFIG_NET_IPIP is not set
83055 -# CONFIG_NET_IPGRE is not set
83056 -# CONFIG_IP_MROUTE is not set
83057 -# CONFIG_ARPD is not set
83058 -CONFIG_SYN_COOKIES=y
83059 -# CONFIG_INET_AH is not set
83060 -# CONFIG_INET_ESP is not set
83061 -# CONFIG_INET_IPCOMP is not set
83062 -# CONFIG_INET_XFRM_TUNNEL is not set
83063 -# CONFIG_INET_TUNNEL is not set
83064 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
83065 -CONFIG_INET_XFRM_MODE_TUNNEL=y
83066 -CONFIG_INET_XFRM_MODE_BEET=y
83067 -# CONFIG_INET_LRO is not set
83068 -CONFIG_INET_DIAG=y
83069 -CONFIG_INET_TCP_DIAG=y
83070 -# CONFIG_TCP_CONG_ADVANCED is not set
83071 -CONFIG_TCP_CONG_CUBIC=y
83072 -CONFIG_DEFAULT_TCP_CONG="cubic"
83073 -# CONFIG_TCP_MD5SIG is not set
83074 -# CONFIG_IPV6 is not set
83075 -# CONFIG_INET6_XFRM_TUNNEL is not set
83076 -# CONFIG_INET6_TUNNEL is not set
83077 -# CONFIG_NETWORK_SECMARK is not set
83078 -# CONFIG_NETFILTER is not set
83079 -# CONFIG_IP_DCCP is not set
83080 -# CONFIG_IP_SCTP is not set
83081 -# CONFIG_TIPC is not set
83082 -# CONFIG_ATM is not set
83083 -# CONFIG_BRIDGE is not set
83084 -# CONFIG_VLAN_8021Q is not set
83085 -# CONFIG_DECNET is not set
83086 -# CONFIG_LLC2 is not set
83087 -# CONFIG_IPX is not set
83088 -# CONFIG_ATALK is not set
83089 -# CONFIG_X25 is not set
83090 -# CONFIG_LAPB is not set
83091 -# CONFIG_ECONET is not set
83092 -# CONFIG_WAN_ROUTER is not set
83093 -# CONFIG_NET_SCHED is not set
83094 -
83095 -#
83096 -# Network testing
83097 -#
83098 -# CONFIG_NET_PKTGEN is not set
83099 -# CONFIG_HAMRADIO is not set
83100 -# CONFIG_CAN is not set
83101 -# CONFIG_IRDA is not set
83102 -# CONFIG_BT is not set
83103 -# CONFIG_AF_RXRPC is not set
83104 -
83105 -#
83106 -# Wireless
83107 -#
83108 -# CONFIG_CFG80211 is not set
83109 -# CONFIG_WIRELESS_EXT is not set
83110 -# CONFIG_MAC80211 is not set
83111 -# CONFIG_IEEE80211 is not set
83112 -# CONFIG_RFKILL is not set
83113 -# CONFIG_NET_9P is not set
83114 -
83115 -#
83116 -# Device Drivers
83117 -#
83118 -
83119 -#
83120 -# Generic Driver Options
83121 -#
83122 -CONFIG_STANDALONE=y
83123 -CONFIG_PREVENT_FIRMWARE_BUILD=y
83124 -# CONFIG_SYS_HYPERVISOR is not set
83125 -# CONFIG_CONNECTOR is not set
83126 -CONFIG_MTD=y
83127 -# CONFIG_MTD_DEBUG is not set
83128 -CONFIG_MTD_CONCAT=y
83129 -CONFIG_MTD_PARTITIONS=y
83130 -# CONFIG_MTD_REDBOOT_PARTS is not set
83131 -CONFIG_MTD_CMDLINE_PARTS=y
83132 -# CONFIG_MTD_OF_PARTS is not set
83133 -
83134 -#
83135 -# User Modules And Translation Layers
83136 -#
83137 -CONFIG_MTD_CHAR=y
83138 -CONFIG_MTD_BLKDEVS=y
83139 -CONFIG_MTD_BLOCK=y
83140 -# CONFIG_FTL is not set
83141 -# CONFIG_NFTL is not set
83142 -# CONFIG_INFTL is not set
83143 -# CONFIG_RFD_FTL is not set
83144 -# CONFIG_SSFDC is not set
83145 -# CONFIG_MTD_OOPS is not set
83146 -
83147 -#
83148 -# RAM/ROM/Flash chip drivers
83149 -#
83150 -CONFIG_MTD_CFI=y
83151 -# CONFIG_MTD_JEDECPROBE is not set
83152 -CONFIG_MTD_GEN_PROBE=y
83153 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
83154 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
83155 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
83156 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
83157 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
83158 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
83159 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
83160 -CONFIG_MTD_CFI_I1=y
83161 -CONFIG_MTD_CFI_I2=y
83162 -# CONFIG_MTD_CFI_I4 is not set
83163 -# CONFIG_MTD_CFI_I8 is not set
83164 -# CONFIG_MTD_CFI_INTELEXT is not set
83165 -CONFIG_MTD_CFI_AMDSTD=y
83166 -# CONFIG_MTD_CFI_STAA is not set
83167 -CONFIG_MTD_CFI_UTIL=y
83168 -# CONFIG_MTD_RAM is not set
83169 -# CONFIG_MTD_ROM is not set
83170 -# CONFIG_MTD_ABSENT is not set
83171 -
83172 -#
83173 -# Mapping drivers for chip access
83174 -#
83175 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
83176 -# CONFIG_MTD_PHYSMAP is not set
83177 -# CONFIG_MTD_PHYSMAP_OF is not set
83178 -# CONFIG_MTD_INTEL_VR_NOR is not set
83179 -# CONFIG_MTD_PLATRAM is not set
83180 -
83181 -#
83182 -# Self-contained MTD device drivers
83183 -#
83184 -# CONFIG_MTD_PMC551 is not set
83185 -# CONFIG_MTD_SLRAM is not set
83186 -# CONFIG_MTD_PHRAM is not set
83187 -# CONFIG_MTD_MTDRAM is not set
83188 -# CONFIG_MTD_BLOCK2MTD is not set
83189 -
83190 -#
83191 -# Disk-On-Chip Device Drivers
83192 -#
83193 -# CONFIG_MTD_DOC2000 is not set
83194 -# CONFIG_MTD_DOC2001 is not set
83195 -# CONFIG_MTD_DOC2001PLUS is not set
83196 -# CONFIG_MTD_NAND is not set
83197 -# CONFIG_MTD_ONENAND is not set
83198 -
83199 -#
83200 -# UBI - Unsorted block images
83201 -#
83202 -# CONFIG_MTD_UBI is not set
83203 -CONFIG_OF_DEVICE=y
83204 -# CONFIG_PARPORT is not set
83205 -CONFIG_BLK_DEV=y
83206 -# CONFIG_BLK_DEV_FD is not set
83207 -# CONFIG_BLK_CPQ_DA is not set
83208 -# CONFIG_BLK_CPQ_CISS_DA is not set
83209 -# CONFIG_BLK_DEV_DAC960 is not set
83210 -# CONFIG_BLK_DEV_UMEM is not set
83211 -# CONFIG_BLK_DEV_COW_COMMON is not set
83212 -CONFIG_BLK_DEV_LOOP=y
83213 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
83214 -# CONFIG_BLK_DEV_NBD is not set
83215 -# CONFIG_BLK_DEV_SX8 is not set
83216 -CONFIG_BLK_DEV_RAM=y
83217 -CONFIG_BLK_DEV_RAM_COUNT=16
83218 -CONFIG_BLK_DEV_RAM_SIZE=32768
83219 -# CONFIG_BLK_DEV_XIP is not set
83220 -# CONFIG_CDROM_PKTCDVD is not set
83221 -# CONFIG_ATA_OVER_ETH is not set
83222 -CONFIG_MISC_DEVICES=y
83223 -# CONFIG_PHANTOM is not set
83224 -# CONFIG_EEPROM_93CX6 is not set
83225 -# CONFIG_SGI_IOC4 is not set
83226 -# CONFIG_TIFM_CORE is not set
83227 -# CONFIG_ENCLOSURE_SERVICES is not set
83228 -CONFIG_HAVE_IDE=y
83229 -CONFIG_IDE=y
83230 -CONFIG_IDE_MAX_HWIFS=4
83231 -CONFIG_BLK_DEV_IDE=y
83232 -
83233 -#
83234 -# Please see Documentation/ide/ide.txt for help/info on IDE drives
83235 -#
83236 -# CONFIG_BLK_DEV_IDE_SATA is not set
83237 -CONFIG_BLK_DEV_IDEDISK=y
83238 -# CONFIG_IDEDISK_MULTI_MODE is not set
83239 -# CONFIG_BLK_DEV_IDECD is not set
83240 -# CONFIG_BLK_DEV_IDETAPE is not set
83241 -# CONFIG_BLK_DEV_IDEFLOPPY is not set
83242 -# CONFIG_IDE_TASK_IOCTL is not set
83243 -CONFIG_IDE_PROC_FS=y
83244 -
83245 -#
83246 -# IDE chipset support/bugfixes
83247 -#
83248 -CONFIG_IDE_GENERIC=y
83249 -# CONFIG_BLK_DEV_PLATFORM is not set
83250 -CONFIG_BLK_DEV_IDEDMA_SFF=y
83251 -
83252 -#
83253 -# PCI IDE chipsets support
83254 -#
83255 -CONFIG_BLK_DEV_IDEPCI=y
83256 -CONFIG_IDEPCI_PCIBUS_ORDER=y
83257 -# CONFIG_BLK_DEV_OFFBOARD is not set
83258 -CONFIG_BLK_DEV_GENERIC=y
83259 -# CONFIG_BLK_DEV_OPTI621 is not set
83260 -CONFIG_BLK_DEV_IDEDMA_PCI=y
83261 -# CONFIG_BLK_DEV_AEC62XX is not set
83262 -# CONFIG_BLK_DEV_ALI15X3 is not set
83263 -# CONFIG_BLK_DEV_AMD74XX is not set
83264 -# CONFIG_BLK_DEV_CMD64X is not set
83265 -# CONFIG_BLK_DEV_TRIFLEX is not set
83266 -# CONFIG_BLK_DEV_CY82C693 is not set
83267 -# CONFIG_BLK_DEV_CS5520 is not set
83268 -# CONFIG_BLK_DEV_CS5530 is not set
83269 -# CONFIG_BLK_DEV_HPT34X is not set
83270 -# CONFIG_BLK_DEV_HPT366 is not set
83271 -# CONFIG_BLK_DEV_JMICRON is not set
83272 -# CONFIG_BLK_DEV_SC1200 is not set
83273 -# CONFIG_BLK_DEV_PIIX is not set
83274 -# CONFIG_BLK_DEV_IT8213 is not set
83275 -# CONFIG_BLK_DEV_IT821X is not set
83276 -# CONFIG_BLK_DEV_NS87415 is not set
83277 -# CONFIG_BLK_DEV_PDC202XX_OLD is not set
83278 -# CONFIG_BLK_DEV_PDC202XX_NEW is not set
83279 -# CONFIG_BLK_DEV_SVWKS is not set
83280 -# CONFIG_BLK_DEV_SIIMAGE is not set
83281 -# CONFIG_BLK_DEV_SL82C105 is not set
83282 -# CONFIG_BLK_DEV_SLC90E66 is not set
83283 -# CONFIG_BLK_DEV_TRM290 is not set
83284 -CONFIG_BLK_DEV_VIA82CXXX=y
83285 -# CONFIG_BLK_DEV_TC86C001 is not set
83286 -CONFIG_BLK_DEV_IDEDMA=y
83287 -CONFIG_IDE_ARCH_OBSOLETE_INIT=y
83288 -# CONFIG_BLK_DEV_HD is not set
83289 -
83290 -#
83291 -# SCSI device support
83292 -#
83293 -# CONFIG_RAID_ATTRS is not set
83294 -# CONFIG_SCSI is not set
83295 -# CONFIG_SCSI_DMA is not set
83296 -# CONFIG_SCSI_NETLINK is not set
83297 -# CONFIG_ATA is not set
83298 -# CONFIG_MD is not set
83299 -# CONFIG_FUSION is not set
83300 -
83301 -#
83302 -# IEEE 1394 (FireWire) support
83303 -#
83304 -# CONFIG_FIREWIRE is not set
83305 -# CONFIG_IEEE1394 is not set
83306 -# CONFIG_I2O is not set
83307 -# CONFIG_MACINTOSH_DRIVERS is not set
83308 -CONFIG_NETDEVICES=y
83309 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
83310 -# CONFIG_DUMMY is not set
83311 -# CONFIG_BONDING is not set
83312 -# CONFIG_MACVLAN is not set
83313 -# CONFIG_EQUALIZER is not set
83314 -# CONFIG_TUN is not set
83315 -# CONFIG_VETH is not set
83316 -# CONFIG_ARCNET is not set
83317 -CONFIG_PHYLIB=y
83318 -
83319 -#
83320 -# MII PHY device drivers
83321 -#
83322 -# CONFIG_MARVELL_PHY is not set
83323 -# CONFIG_DAVICOM_PHY is not set
83324 -# CONFIG_QSEMI_PHY is not set
83325 -# CONFIG_LXT_PHY is not set
83326 -# CONFIG_CICADA_PHY is not set
83327 -# CONFIG_VITESSE_PHY is not set
83328 -# CONFIG_SMSC_PHY is not set
83329 -# CONFIG_BROADCOM_PHY is not set
83330 -# CONFIG_ICPLUS_PHY is not set
83331 -# CONFIG_REALTEK_PHY is not set
83332 -# CONFIG_FIXED_PHY is not set
83333 -# CONFIG_MDIO_BITBANG is not set
83334 -CONFIG_NET_ETHERNET=y
83335 -CONFIG_MII=y
83336 -# CONFIG_HAPPYMEAL is not set
83337 -# CONFIG_SUNGEM is not set
83338 -# CONFIG_CASSINI is not set
83339 -# CONFIG_NET_VENDOR_3COM is not set
83340 -# CONFIG_NET_TULIP is not set
83341 -# CONFIG_HP100 is not set
83342 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
83343 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
83344 -# CONFIG_IBM_NEW_EMAC_TAH is not set
83345 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
83346 -CONFIG_NET_PCI=y
83347 -# CONFIG_PCNET32 is not set
83348 -# CONFIG_AMD8111_ETH is not set
83349 -# CONFIG_ADAPTEC_STARFIRE is not set
83350 -# CONFIG_B44 is not set
83351 -# CONFIG_FORCEDETH is not set
83352 -# CONFIG_EEPRO100 is not set
83353 -CONFIG_E100=y
83354 -# CONFIG_FEALNX is not set
83355 -# CONFIG_NATSEMI is not set
83356 -# CONFIG_NE2K_PCI is not set
83357 -# CONFIG_8139CP is not set
83358 -# CONFIG_8139TOO is not set
83359 -# CONFIG_R6040 is not set
83360 -# CONFIG_SIS900 is not set
83361 -# CONFIG_EPIC100 is not set
83362 -# CONFIG_SUNDANCE is not set
83363 -# CONFIG_TLAN is not set
83364 -# CONFIG_VIA_RHINE is not set
83365 -# CONFIG_SC92031 is not set
83366 -# CONFIG_FS_ENET is not set
83367 -CONFIG_NETDEV_1000=y
83368 -# CONFIG_ACENIC is not set
83369 -# CONFIG_DL2K is not set
83370 -# CONFIG_E1000 is not set
83371 -# CONFIG_E1000E is not set
83372 -# CONFIG_E1000E_ENABLED is not set
83373 -# CONFIG_IP1000 is not set
83374 -# CONFIG_IGB is not set
83375 -# CONFIG_NS83820 is not set
83376 -# CONFIG_HAMACHI is not set
83377 -# CONFIG_YELLOWFIN is not set
83378 -# CONFIG_R8169 is not set
83379 -# CONFIG_SIS190 is not set
83380 -# CONFIG_SKGE is not set
83381 -# CONFIG_SKY2 is not set
83382 -# CONFIG_SK98LIN is not set
83383 -# CONFIG_VIA_VELOCITY is not set
83384 -# CONFIG_TIGON3 is not set
83385 -# CONFIG_BNX2 is not set
83386 -CONFIG_GIANFAR=y
83387 -CONFIG_GFAR_NAPI=y
83388 -# CONFIG_QLA3XXX is not set
83389 -# CONFIG_ATL1 is not set
83390 -CONFIG_NETDEV_10000=y
83391 -# CONFIG_CHELSIO_T1 is not set
83392 -# CONFIG_CHELSIO_T3 is not set
83393 -# CONFIG_IXGBE is not set
83394 -# CONFIG_IXGB is not set
83395 -# CONFIG_S2IO is not set
83396 -# CONFIG_MYRI10GE is not set
83397 -# CONFIG_NETXEN_NIC is not set
83398 -# CONFIG_NIU is not set
83399 -# CONFIG_MLX4_CORE is not set
83400 -# CONFIG_TEHUTI is not set
83401 -# CONFIG_BNX2X is not set
83402 -# CONFIG_TR is not set
83403 -
83404 -#
83405 -# Wireless LAN
83406 -#
83407 -# CONFIG_WLAN_PRE80211 is not set
83408 -# CONFIG_WLAN_80211 is not set
83409 -# CONFIG_WAN is not set
83410 -# CONFIG_FDDI is not set
83411 -# CONFIG_HIPPI is not set
83412 -# CONFIG_PPP is not set
83413 -# CONFIG_SLIP is not set
83414 -# CONFIG_NETCONSOLE is not set
83415 -# CONFIG_NETPOLL is not set
83416 -# CONFIG_NET_POLL_CONTROLLER is not set
83417 -# CONFIG_ISDN is not set
83418 -# CONFIG_PHONE is not set
83419 -
83420 -#
83421 -# Input device support
83422 -#
83423 -CONFIG_INPUT=y
83424 -# CONFIG_INPUT_FF_MEMLESS is not set
83425 -# CONFIG_INPUT_POLLDEV is not set
83426 -
83427 -#
83428 -# Userland interfaces
83429 -#
83430 -# CONFIG_INPUT_MOUSEDEV is not set
83431 -# CONFIG_INPUT_JOYDEV is not set
83432 -# CONFIG_INPUT_EVDEV is not set
83433 -# CONFIG_INPUT_EVBUG is not set
83434 -
83435 -#
83436 -# Input Device Drivers
83437 -#
83438 -# CONFIG_INPUT_KEYBOARD is not set
83439 -# CONFIG_INPUT_MOUSE is not set
83440 -# CONFIG_INPUT_JOYSTICK is not set
83441 -# CONFIG_INPUT_TABLET is not set
83442 -# CONFIG_INPUT_TOUCHSCREEN is not set
83443 -# CONFIG_INPUT_MISC is not set
83444 -
83445 -#
83446 -# Hardware I/O ports
83447 -#
83448 -# CONFIG_SERIO is not set
83449 -# CONFIG_GAMEPORT is not set
83450 -
83451 -#
83452 -# Character devices
83453 -#
83454 -# CONFIG_VT is not set
83455 -# CONFIG_SERIAL_NONSTANDARD is not set
83456 -# CONFIG_NOZOMI is not set
83457 -
83458 -#
83459 -# Serial drivers
83460 -#
83461 -CONFIG_SERIAL_8250=y
83462 -CONFIG_SERIAL_8250_CONSOLE=y
83463 -CONFIG_SERIAL_8250_PCI=y
83464 -CONFIG_SERIAL_8250_NR_UARTS=4
83465 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
83466 -# CONFIG_SERIAL_8250_EXTENDED is not set
83467 -CONFIG_SERIAL_8250_SHARE_IRQ=y
83468 -
83469 -#
83470 -# Non-8250 serial port support
83471 -#
83472 -# CONFIG_SERIAL_UARTLITE is not set
83473 -CONFIG_SERIAL_CORE=y
83474 -CONFIG_SERIAL_CORE_CONSOLE=y
83475 -CONFIG_SERIAL_CPM=y
83476 -CONFIG_SERIAL_CPM_CONSOLE=y
83477 -CONFIG_SERIAL_CPM_SCC1=y
83478 -# CONFIG_SERIAL_CPM_SCC2 is not set
83479 -# CONFIG_SERIAL_CPM_SCC3 is not set
83480 -# CONFIG_SERIAL_CPM_SCC4 is not set
83481 -# CONFIG_SERIAL_CPM_SMC1 is not set
83482 -# CONFIG_SERIAL_CPM_SMC2 is not set
83483 -# CONFIG_SERIAL_JSM is not set
83484 -# CONFIG_SERIAL_OF_PLATFORM is not set
83485 -CONFIG_UNIX98_PTYS=y
83486 -CONFIG_LEGACY_PTYS=y
83487 -CONFIG_LEGACY_PTY_COUNT=256
83488 -# CONFIG_IPMI_HANDLER is not set
83489 -CONFIG_HW_RANDOM=y
83490 -# CONFIG_NVRAM is not set
83491 -CONFIG_GEN_RTC=y
83492 -# CONFIG_GEN_RTC_X is not set
83493 -# CONFIG_R3964 is not set
83494 -# CONFIG_APPLICOM is not set
83495 -# CONFIG_RAW_DRIVER is not set
83496 -# CONFIG_TCG_TPM is not set
83497 -CONFIG_DEVPORT=y
83498 -CONFIG_I2C=y
83499 -CONFIG_I2C_BOARDINFO=y
83500 -CONFIG_I2C_CHARDEV=y
83501 -
83502 -#
83503 -# I2C Algorithms
83504 -#
83505 -# CONFIG_I2C_ALGOBIT is not set
83506 -# CONFIG_I2C_ALGOPCF is not set
83507 -# CONFIG_I2C_ALGOPCA is not set
83508 -
83509 -#
83510 -# I2C Hardware Bus support
83511 -#
83512 -# CONFIG_I2C_ALI1535 is not set
83513 -# CONFIG_I2C_ALI1563 is not set
83514 -# CONFIG_I2C_ALI15X3 is not set
83515 -# CONFIG_I2C_AMD756 is not set
83516 -# CONFIG_I2C_AMD8111 is not set
83517 -# CONFIG_I2C_I801 is not set
83518 -# CONFIG_I2C_I810 is not set
83519 -# CONFIG_I2C_PIIX4 is not set
83520 -CONFIG_I2C_MPC=y
83521 -# CONFIG_I2C_NFORCE2 is not set
83522 -# CONFIG_I2C_OCORES is not set
83523 -# CONFIG_I2C_PARPORT_LIGHT is not set
83524 -# CONFIG_I2C_PROSAVAGE is not set
83525 -# CONFIG_I2C_SAVAGE4 is not set
83526 -# CONFIG_I2C_SIMTEC is not set
83527 -# CONFIG_I2C_SIS5595 is not set
83528 -# CONFIG_I2C_SIS630 is not set
83529 -# CONFIG_I2C_SIS96X is not set
83530 -# CONFIG_I2C_TAOS_EVM is not set
83531 -# CONFIG_I2C_VIA is not set
83532 -# CONFIG_I2C_VIAPRO is not set
83533 -# CONFIG_I2C_VOODOO3 is not set
83534 -
83535 -#
83536 -# Miscellaneous I2C Chip support
83537 -#
83538 -# CONFIG_DS1682 is not set
83539 -# CONFIG_SENSORS_EEPROM is not set
83540 -# CONFIG_SENSORS_PCF8574 is not set
83541 -# CONFIG_PCF8575 is not set
83542 -# CONFIG_SENSORS_PCF8591 is not set
83543 -# CONFIG_TPS65010 is not set
83544 -# CONFIG_SENSORS_MAX6875 is not set
83545 -# CONFIG_SENSORS_TSL2550 is not set
83546 -# CONFIG_I2C_DEBUG_CORE is not set
83547 -# CONFIG_I2C_DEBUG_ALGO is not set
83548 -# CONFIG_I2C_DEBUG_BUS is not set
83549 -# CONFIG_I2C_DEBUG_CHIP is not set
83550 -
83551 -#
83552 -# SPI support
83553 -#
83554 -# CONFIG_SPI is not set
83555 -# CONFIG_SPI_MASTER is not set
83556 -# CONFIG_W1 is not set
83557 -# CONFIG_POWER_SUPPLY is not set
83558 -CONFIG_HWMON=y
83559 -# CONFIG_HWMON_VID is not set
83560 -# CONFIG_SENSORS_AD7418 is not set
83561 -# CONFIG_SENSORS_ADM1021 is not set
83562 -# CONFIG_SENSORS_ADM1025 is not set
83563 -# CONFIG_SENSORS_ADM1026 is not set
83564 -# CONFIG_SENSORS_ADM1029 is not set
83565 -# CONFIG_SENSORS_ADM1031 is not set
83566 -# CONFIG_SENSORS_ADM9240 is not set
83567 -# CONFIG_SENSORS_ADT7470 is not set
83568 -# CONFIG_SENSORS_ADT7473 is not set
83569 -# CONFIG_SENSORS_ATXP1 is not set
83570 -# CONFIG_SENSORS_DS1621 is not set
83571 -# CONFIG_SENSORS_I5K_AMB is not set
83572 -# CONFIG_SENSORS_F71805F is not set
83573 -# CONFIG_SENSORS_F71882FG is not set
83574 -# CONFIG_SENSORS_F75375S is not set
83575 -# CONFIG_SENSORS_GL518SM is not set
83576 -# CONFIG_SENSORS_GL520SM is not set
83577 -# CONFIG_SENSORS_IT87 is not set
83578 -# CONFIG_SENSORS_LM63 is not set
83579 -CONFIG_SENSORS_LM75=y
83580 -# CONFIG_SENSORS_LM77 is not set
83581 -# CONFIG_SENSORS_LM78 is not set
83582 -# CONFIG_SENSORS_LM80 is not set
83583 -# CONFIG_SENSORS_LM83 is not set
83584 -# CONFIG_SENSORS_LM85 is not set
83585 -# CONFIG_SENSORS_LM87 is not set
83586 -# CONFIG_SENSORS_LM90 is not set
83587 -# CONFIG_SENSORS_LM92 is not set
83588 -# CONFIG_SENSORS_LM93 is not set
83589 -# CONFIG_SENSORS_MAX1619 is not set
83590 -# CONFIG_SENSORS_MAX6650 is not set
83591 -# CONFIG_SENSORS_PC87360 is not set
83592 -# CONFIG_SENSORS_PC87427 is not set
83593 -# CONFIG_SENSORS_SIS5595 is not set
83594 -# CONFIG_SENSORS_DME1737 is not set
83595 -# CONFIG_SENSORS_SMSC47M1 is not set
83596 -# CONFIG_SENSORS_SMSC47M192 is not set
83597 -# CONFIG_SENSORS_SMSC47B397 is not set
83598 -# CONFIG_SENSORS_ADS7828 is not set
83599 -# CONFIG_SENSORS_THMC50 is not set
83600 -# CONFIG_SENSORS_VIA686A is not set
83601 -# CONFIG_SENSORS_VT1211 is not set
83602 -# CONFIG_SENSORS_VT8231 is not set
83603 -# CONFIG_SENSORS_W83781D is not set
83604 -# CONFIG_SENSORS_W83791D is not set
83605 -# CONFIG_SENSORS_W83792D is not set
83606 -# CONFIG_SENSORS_W83793 is not set
83607 -# CONFIG_SENSORS_W83L785TS is not set
83608 -# CONFIG_SENSORS_W83L786NG is not set
83609 -# CONFIG_SENSORS_W83627HF is not set
83610 -# CONFIG_SENSORS_W83627EHF is not set
83611 -CONFIG_HWMON_DEBUG_CHIP=y
83612 -# CONFIG_THERMAL is not set
83613 -# CONFIG_WATCHDOG is not set
83614 -
83615 -#
83616 -# Sonics Silicon Backplane
83617 -#
83618 -CONFIG_SSB_POSSIBLE=y
83619 -# CONFIG_SSB is not set
83620 -
83621 -#
83622 -# Multifunction device drivers
83623 -#
83624 -# CONFIG_MFD_SM501 is not set
83625 -
83626 -#
83627 -# Multimedia devices
83628 -#
83629 -# CONFIG_VIDEO_DEV is not set
83630 -# CONFIG_DVB_CORE is not set
83631 -CONFIG_DAB=y
83632 -
83633 -#
83634 -# Graphics support
83635 -#
83636 -# CONFIG_AGP is not set
83637 -# CONFIG_DRM is not set
83638 -# CONFIG_VGASTATE is not set
83639 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
83640 -# CONFIG_FB is not set
83641 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
83642 -
83643 -#
83644 -# Display device support
83645 -#
83646 -# CONFIG_DISPLAY_SUPPORT is not set
83647 -
83648 -#
83649 -# Sound
83650 -#
83651 -# CONFIG_SOUND is not set
83652 -CONFIG_HID_SUPPORT=y
83653 -CONFIG_HID=y
83654 -# CONFIG_HID_DEBUG is not set
83655 -# CONFIG_HIDRAW is not set
83656 -CONFIG_USB_SUPPORT=y
83657 -CONFIG_USB_ARCH_HAS_HCD=y
83658 -CONFIG_USB_ARCH_HAS_OHCI=y
83659 -CONFIG_USB_ARCH_HAS_EHCI=y
83660 -# CONFIG_USB is not set
83661 -
83662 -#
83663 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
83664 -#
83665 -# CONFIG_USB_GADGET is not set
83666 -# CONFIG_MMC is not set
83667 -# CONFIG_MEMSTICK is not set
83668 -# CONFIG_NEW_LEDS is not set
83669 -# CONFIG_INFINIBAND is not set
83670 -# CONFIG_EDAC is not set
83671 -# CONFIG_RTC_CLASS is not set
83672 -# CONFIG_DMADEVICES is not set
83673 -
83674 -#
83675 -# Userspace I/O
83676 -#
83677 -# CONFIG_UIO is not set
83678 -
83679 -#
83680 -# File systems
83681 -#
83682 -CONFIG_EXT2_FS=y
83683 -# CONFIG_EXT2_FS_XATTR is not set
83684 -# CONFIG_EXT2_FS_XIP is not set
83685 -CONFIG_EXT3_FS=y
83686 -CONFIG_EXT3_FS_XATTR=y
83687 -# CONFIG_EXT3_FS_POSIX_ACL is not set
83688 -# CONFIG_EXT3_FS_SECURITY is not set
83689 -# CONFIG_EXT4DEV_FS is not set
83690 -CONFIG_JBD=y
83691 -CONFIG_FS_MBCACHE=y
83692 -# CONFIG_REISERFS_FS is not set
83693 -# CONFIG_JFS_FS is not set
83694 -# CONFIG_FS_POSIX_ACL is not set
83695 -# CONFIG_XFS_FS is not set
83696 -# CONFIG_GFS2_FS is not set
83697 -# CONFIG_OCFS2_FS is not set
83698 -CONFIG_DNOTIFY=y
83699 -CONFIG_INOTIFY=y
83700 -CONFIG_INOTIFY_USER=y
83701 -# CONFIG_QUOTA is not set
83702 -# CONFIG_AUTOFS_FS is not set
83703 -# CONFIG_AUTOFS4_FS is not set
83704 -# CONFIG_FUSE_FS is not set
83705 -
83706 -#
83707 -# CD-ROM/DVD Filesystems
83708 -#
83709 -# CONFIG_ISO9660_FS is not set
83710 -# CONFIG_UDF_FS is not set
83711 -
83712 -#
83713 -# DOS/FAT/NT Filesystems
83714 -#
83715 -# CONFIG_MSDOS_FS is not set
83716 -# CONFIG_VFAT_FS is not set
83717 -# CONFIG_NTFS_FS is not set
83718 -
83719 -#
83720 -# Pseudo filesystems
83721 -#
83722 -CONFIG_PROC_FS=y
83723 -CONFIG_PROC_KCORE=y
83724 -CONFIG_PROC_SYSCTL=y
83725 -CONFIG_SYSFS=y
83726 -CONFIG_TMPFS=y
83727 -# CONFIG_TMPFS_POSIX_ACL is not set
83728 -# CONFIG_HUGETLB_PAGE is not set
83729 -# CONFIG_CONFIGFS_FS is not set
83730 -
83731 -#
83732 -# Miscellaneous filesystems
83733 -#
83734 -# CONFIG_ADFS_FS is not set
83735 -# CONFIG_AFFS_FS is not set
83736 -# CONFIG_HFS_FS is not set
83737 -# CONFIG_HFSPLUS_FS is not set
83738 -# CONFIG_BEFS_FS is not set
83739 -# CONFIG_BFS_FS is not set
83740 -# CONFIG_EFS_FS is not set
83741 -CONFIG_JFFS2_FS=y
83742 -CONFIG_JFFS2_FS_DEBUG=0
83743 -CONFIG_JFFS2_FS_WRITEBUFFER=y
83744 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
83745 -# CONFIG_JFFS2_SUMMARY is not set
83746 -# CONFIG_JFFS2_FS_XATTR is not set
83747 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
83748 -CONFIG_JFFS2_ZLIB=y
83749 -# CONFIG_JFFS2_LZO is not set
83750 -CONFIG_JFFS2_RTIME=y
83751 -# CONFIG_JFFS2_RUBIN is not set
83752 -CONFIG_CRAMFS=y
83753 -# CONFIG_VXFS_FS is not set
83754 -# CONFIG_MINIX_FS is not set
83755 -# CONFIG_HPFS_FS is not set
83756 -# CONFIG_QNX4FS_FS is not set
83757 -# CONFIG_ROMFS_FS is not set
83758 -# CONFIG_SYSV_FS is not set
83759 -# CONFIG_UFS_FS is not set
83760 -CONFIG_NETWORK_FILESYSTEMS=y
83761 -CONFIG_NFS_FS=y
83762 -# CONFIG_NFS_V3 is not set
83763 -# CONFIG_NFS_V4 is not set
83764 -# CONFIG_NFS_DIRECTIO is not set
83765 -# CONFIG_NFSD is not set
83766 -CONFIG_ROOT_NFS=y
83767 -CONFIG_LOCKD=y
83768 -CONFIG_NFS_COMMON=y
83769 -CONFIG_SUNRPC=y
83770 -# CONFIG_SUNRPC_BIND34 is not set
83771 -# CONFIG_RPCSEC_GSS_KRB5 is not set
83772 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
83773 -# CONFIG_SMB_FS is not set
83774 -# CONFIG_CIFS is not set
83775 -# CONFIG_NCP_FS is not set
83776 -# CONFIG_CODA_FS is not set
83777 -# CONFIG_AFS_FS is not set
83778 -
83779 -#
83780 -# Partition Types
83781 -#
83782 -CONFIG_PARTITION_ADVANCED=y
83783 -# CONFIG_ACORN_PARTITION is not set
83784 -# CONFIG_OSF_PARTITION is not set
83785 -# CONFIG_AMIGA_PARTITION is not set
83786 -# CONFIG_ATARI_PARTITION is not set
83787 -# CONFIG_MAC_PARTITION is not set
83788 -# CONFIG_MSDOS_PARTITION is not set
83789 -# CONFIG_LDM_PARTITION is not set
83790 -# CONFIG_SGI_PARTITION is not set
83791 -# CONFIG_ULTRIX_PARTITION is not set
83792 -# CONFIG_SUN_PARTITION is not set
83793 -# CONFIG_KARMA_PARTITION is not set
83794 -# CONFIG_EFI_PARTITION is not set
83795 -# CONFIG_SYSV68_PARTITION is not set
83796 -# CONFIG_NLS is not set
83797 -# CONFIG_DLM is not set
83798 -
83799 -#
83800 -# Library routines
83801 -#
83802 -CONFIG_BITREVERSE=y
83803 -# CONFIG_CRC_CCITT is not set
83804 -# CONFIG_CRC16 is not set
83805 -# CONFIG_CRC_ITU_T is not set
83806 -CONFIG_CRC32=y
83807 -# CONFIG_CRC7 is not set
83808 -# CONFIG_LIBCRC32C is not set
83809 -CONFIG_ZLIB_INFLATE=y
83810 -CONFIG_ZLIB_DEFLATE=y
83811 -CONFIG_PLIST=y
83812 -CONFIG_HAS_IOMEM=y
83813 -CONFIG_HAS_IOPORT=y
83814 -CONFIG_HAS_DMA=y
83815 -
83816 -#
83817 -# Kernel hacking
83818 -#
83819 -# CONFIG_PRINTK_TIME is not set
83820 -CONFIG_ENABLE_WARN_DEPRECATED=y
83821 -CONFIG_ENABLE_MUST_CHECK=y
83822 -# CONFIG_MAGIC_SYSRQ is not set
83823 -# CONFIG_UNUSED_SYMBOLS is not set
83824 -# CONFIG_DEBUG_FS is not set
83825 -# CONFIG_HEADERS_CHECK is not set
83826 -# CONFIG_DEBUG_KERNEL is not set
83827 -# CONFIG_SLUB_DEBUG_ON is not set
83828 -# CONFIG_SLUB_STATS is not set
83829 -# CONFIG_DEBUG_BUGVERBOSE is not set
83830 -# CONFIG_SAMPLES is not set
83831 -# CONFIG_KGDB_CONSOLE is not set
83832 -# CONFIG_PPC_EARLY_DEBUG is not set
83833 -
83834 -#
83835 -# Security options
83836 -#
83837 -# CONFIG_KEYS is not set
83838 -# CONFIG_SECURITY is not set
83839 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
83840 -CONFIG_CRYPTO=y
83841 -# CONFIG_CRYPTO_SEQIV is not set
83842 -# CONFIG_CRYPTO_MANAGER is not set
83843 -# CONFIG_CRYPTO_HMAC is not set
83844 -# CONFIG_CRYPTO_XCBC is not set
83845 -# CONFIG_CRYPTO_NULL is not set
83846 -# CONFIG_CRYPTO_MD4 is not set
83847 -# CONFIG_CRYPTO_MD5 is not set
83848 -# CONFIG_CRYPTO_SHA1 is not set
83849 -# CONFIG_CRYPTO_SHA256 is not set
83850 -# CONFIG_CRYPTO_SHA512 is not set
83851 -# CONFIG_CRYPTO_WP512 is not set
83852 -# CONFIG_CRYPTO_TGR192 is not set
83853 -# CONFIG_CRYPTO_GF128MUL is not set
83854 -# CONFIG_CRYPTO_ECB is not set
83855 -# CONFIG_CRYPTO_CBC is not set
83856 -# CONFIG_CRYPTO_PCBC is not set
83857 -# CONFIG_CRYPTO_LRW is not set
83858 -# CONFIG_CRYPTO_XTS is not set
83859 -# CONFIG_CRYPTO_CTR is not set
83860 -# CONFIG_CRYPTO_GCM is not set
83861 -# CONFIG_CRYPTO_CCM is not set
83862 -# CONFIG_CRYPTO_CRYPTD is not set
83863 -# CONFIG_CRYPTO_DES is not set
83864 -# CONFIG_CRYPTO_FCRYPT is not set
83865 -# CONFIG_CRYPTO_BLOWFISH is not set
83866 -# CONFIG_CRYPTO_TWOFISH is not set
83867 -# CONFIG_CRYPTO_SERPENT is not set
83868 -# CONFIG_CRYPTO_AES is not set
83869 -# CONFIG_CRYPTO_CAST5 is not set
83870 -# CONFIG_CRYPTO_CAST6 is not set
83871 -# CONFIG_CRYPTO_TEA is not set
83872 -# CONFIG_CRYPTO_ARC4 is not set
83873 -# CONFIG_CRYPTO_KHAZAD is not set
83874 -# CONFIG_CRYPTO_ANUBIS is not set
83875 -# CONFIG_CRYPTO_SEED is not set
83876 -# CONFIG_CRYPTO_SALSA20 is not set
83877 -# CONFIG_CRYPTO_DEFLATE is not set
83878 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
83879 -# CONFIG_CRYPTO_CRC32C is not set
83880 -# CONFIG_CRYPTO_CAMELLIA is not set
83881 -# CONFIG_CRYPTO_AUTHENC is not set
83882 -# CONFIG_CRYPTO_LZO is not set
83883 -CONFIG_CRYPTO_HW=y
83884 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
83885 -# CONFIG_PPC_CLOCK is not set
83886 -CONFIG_PPC_LIB_RHEAP=y
83887 Index: linux-2.6.25.4/arch/powerpc/configs/tqm8555_defconfig
83888 ===================================================================
83889 --- linux-2.6.25.4.orig/arch/powerpc/configs/tqm8555_defconfig
83890 +++ /dev/null
83891 @@ -1,1109 +0,0 @@
83892 -#
83893 -# Automatically generated make config: don't edit
83894 -# Linux kernel version: 2.6.25-rc6
83895 -# Mon Mar 24 08:48:44 2008
83896 -#
83897 -# CONFIG_PPC64 is not set
83898 -
83899 -#
83900 -# Processor support
83901 -#
83902 -# CONFIG_6xx is not set
83903 -CONFIG_PPC_85xx=y
83904 -# CONFIG_PPC_8xx is not set
83905 -# CONFIG_40x is not set
83906 -# CONFIG_44x is not set
83907 -# CONFIG_E200 is not set
83908 -CONFIG_E500=y
83909 -CONFIG_BOOKE=y
83910 -CONFIG_FSL_BOOKE=y
83911 -CONFIG_FSL_EMB_PERFMON=y
83912 -# CONFIG_PHYS_64BIT is not set
83913 -CONFIG_SPE=y
83914 -# CONFIG_PPC_MM_SLICES is not set
83915 -CONFIG_PPC32=y
83916 -CONFIG_WORD_SIZE=32
83917 -CONFIG_PPC_MERGE=y
83918 -CONFIG_MMU=y
83919 -CONFIG_GENERIC_CMOS_UPDATE=y
83920 -CONFIG_GENERIC_TIME=y
83921 -CONFIG_GENERIC_TIME_VSYSCALL=y
83922 -CONFIG_GENERIC_CLOCKEVENTS=y
83923 -CONFIG_GENERIC_HARDIRQS=y
83924 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
83925 -CONFIG_IRQ_PER_CPU=y
83926 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
83927 -CONFIG_ARCH_HAS_ILOG2_U32=y
83928 -CONFIG_GENERIC_HWEIGHT=y
83929 -CONFIG_GENERIC_CALIBRATE_DELAY=y
83930 -CONFIG_GENERIC_FIND_NEXT_BIT=y
83931 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
83932 -CONFIG_PPC=y
83933 -CONFIG_EARLY_PRINTK=y
83934 -CONFIG_GENERIC_NVRAM=y
83935 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
83936 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
83937 -CONFIG_PPC_OF=y
83938 -CONFIG_OF=y
83939 -CONFIG_PPC_UDBG_16550=y
83940 -# CONFIG_GENERIC_TBSYNC is not set
83941 -CONFIG_AUDIT_ARCH=y
83942 -CONFIG_GENERIC_BUG=y
83943 -CONFIG_DEFAULT_UIMAGE=y
83944 -# CONFIG_PPC_DCR_NATIVE is not set
83945 -# CONFIG_PPC_DCR_MMIO is not set
83946 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
83947 -
83948 -#
83949 -# General setup
83950 -#
83951 -CONFIG_EXPERIMENTAL=y
83952 -CONFIG_BROKEN_ON_SMP=y
83953 -CONFIG_INIT_ENV_ARG_LIMIT=32
83954 -CONFIG_LOCALVERSION=""
83955 -CONFIG_LOCALVERSION_AUTO=y
83956 -CONFIG_SWAP=y
83957 -CONFIG_SYSVIPC=y
83958 -CONFIG_SYSVIPC_SYSCTL=y
83959 -# CONFIG_POSIX_MQUEUE is not set
83960 -# CONFIG_BSD_PROCESS_ACCT is not set
83961 -# CONFIG_TASKSTATS is not set
83962 -# CONFIG_AUDIT is not set
83963 -# CONFIG_IKCONFIG is not set
83964 -CONFIG_LOG_BUF_SHIFT=14
83965 -# CONFIG_CGROUPS is not set
83966 -CONFIG_GROUP_SCHED=y
83967 -CONFIG_FAIR_GROUP_SCHED=y
83968 -# CONFIG_RT_GROUP_SCHED is not set
83969 -CONFIG_USER_SCHED=y
83970 -# CONFIG_CGROUP_SCHED is not set
83971 -CONFIG_SYSFS_DEPRECATED=y
83972 -CONFIG_SYSFS_DEPRECATED_V2=y
83973 -# CONFIG_RELAY is not set
83974 -# CONFIG_NAMESPACES is not set
83975 -CONFIG_BLK_DEV_INITRD=y
83976 -CONFIG_INITRAMFS_SOURCE=""
83977 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
83978 -CONFIG_SYSCTL=y
83979 -CONFIG_EMBEDDED=y
83980 -CONFIG_SYSCTL_SYSCALL=y
83981 -# CONFIG_KALLSYMS is not set
83982 -# CONFIG_HOTPLUG is not set
83983 -CONFIG_PRINTK=y
83984 -CONFIG_BUG=y
83985 -CONFIG_ELF_CORE=y
83986 -CONFIG_COMPAT_BRK=y
83987 -CONFIG_BASE_FULL=y
83988 -CONFIG_FUTEX=y
83989 -CONFIG_ANON_INODES=y
83990 -# CONFIG_EPOLL is not set
83991 -CONFIG_SIGNALFD=y
83992 -CONFIG_TIMERFD=y
83993 -CONFIG_EVENTFD=y
83994 -CONFIG_SHMEM=y
83995 -CONFIG_VM_EVENT_COUNTERS=y
83996 -CONFIG_SLUB_DEBUG=y
83997 -# CONFIG_SLAB is not set
83998 -CONFIG_SLUB=y
83999 -# CONFIG_SLOB is not set
84000 -# CONFIG_PROFILING is not set
84001 -# CONFIG_MARKERS is not set
84002 -CONFIG_HAVE_OPROFILE=y
84003 -CONFIG_HAVE_KPROBES=y
84004 -CONFIG_HAVE_KRETPROBES=y
84005 -CONFIG_PROC_PAGE_MONITOR=y
84006 -CONFIG_SLABINFO=y
84007 -CONFIG_RT_MUTEXES=y
84008 -# CONFIG_TINY_SHMEM is not set
84009 -CONFIG_BASE_SMALL=0
84010 -# CONFIG_MODULES is not set
84011 -CONFIG_BLOCK=y
84012 -# CONFIG_LBD is not set
84013 -# CONFIG_BLK_DEV_IO_TRACE is not set
84014 -# CONFIG_LSF is not set
84015 -# CONFIG_BLK_DEV_BSG is not set
84016 -
84017 -#
84018 -# IO Schedulers
84019 -#
84020 -CONFIG_IOSCHED_NOOP=y
84021 -CONFIG_IOSCHED_AS=y
84022 -CONFIG_IOSCHED_DEADLINE=y
84023 -CONFIG_IOSCHED_CFQ=y
84024 -CONFIG_DEFAULT_AS=y
84025 -# CONFIG_DEFAULT_DEADLINE is not set
84026 -# CONFIG_DEFAULT_CFQ is not set
84027 -# CONFIG_DEFAULT_NOOP is not set
84028 -CONFIG_DEFAULT_IOSCHED="anticipatory"
84029 -CONFIG_CLASSIC_RCU=y
84030 -
84031 -#
84032 -# Platform support
84033 -#
84034 -# CONFIG_PPC_MPC512x is not set
84035 -# CONFIG_PPC_MPC5121 is not set
84036 -# CONFIG_PPC_CELL is not set
84037 -# CONFIG_PPC_CELL_NATIVE is not set
84038 -# CONFIG_PQ2ADS is not set
84039 -CONFIG_MPC85xx=y
84040 -# CONFIG_MPC8540_ADS is not set
84041 -# CONFIG_MPC8560_ADS is not set
84042 -# CONFIG_MPC85xx_CDS is not set
84043 -# CONFIG_MPC85xx_MDS is not set
84044 -# CONFIG_MPC85xx_DS is not set
84045 -# CONFIG_STX_GP3 is not set
84046 -# CONFIG_TQM8540 is not set
84047 -# CONFIG_TQM8541 is not set
84048 -CONFIG_TQM8555=y
84049 -# CONFIG_TQM8560 is not set
84050 -# CONFIG_SBC8548 is not set
84051 -# CONFIG_SBC8560 is not set
84052 -CONFIG_TQM85xx=y
84053 -# CONFIG_IPIC is not set
84054 -CONFIG_MPIC=y
84055 -# CONFIG_MPIC_WEIRD is not set
84056 -# CONFIG_PPC_I8259 is not set
84057 -# CONFIG_PPC_RTAS is not set
84058 -# CONFIG_MMIO_NVRAM is not set
84059 -# CONFIG_PPC_MPC106 is not set
84060 -# CONFIG_PPC_970_NAP is not set
84061 -# CONFIG_PPC_INDIRECT_IO is not set
84062 -# CONFIG_GENERIC_IOMAP is not set
84063 -# CONFIG_CPU_FREQ is not set
84064 -CONFIG_CPM2=y
84065 -CONFIG_PPC_CPM_NEW_BINDING=y
84066 -# CONFIG_FSL_ULI1575 is not set
84067 -CONFIG_CPM=y
84068 -
84069 -#
84070 -# Kernel options
84071 -#
84072 -# CONFIG_HIGHMEM is not set
84073 -# CONFIG_TICK_ONESHOT is not set
84074 -# CONFIG_NO_HZ is not set
84075 -# CONFIG_HIGH_RES_TIMERS is not set
84076 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
84077 -# CONFIG_HZ_100 is not set
84078 -CONFIG_HZ_250=y
84079 -# CONFIG_HZ_300 is not set
84080 -# CONFIG_HZ_1000 is not set
84081 -CONFIG_HZ=250
84082 -# CONFIG_SCHED_HRTICK is not set
84083 -CONFIG_PREEMPT_NONE=y
84084 -# CONFIG_PREEMPT_VOLUNTARY is not set
84085 -# CONFIG_PREEMPT is not set
84086 -CONFIG_BINFMT_ELF=y
84087 -# CONFIG_BINFMT_MISC is not set
84088 -CONFIG_MATH_EMULATION=y
84089 -# CONFIG_IOMMU_HELPER is not set
84090 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
84091 -CONFIG_ARCH_HAS_WALK_MEMORY=y
84092 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
84093 -CONFIG_ARCH_FLATMEM_ENABLE=y
84094 -CONFIG_ARCH_POPULATES_NODE_MAP=y
84095 -CONFIG_SELECT_MEMORY_MODEL=y
84096 -CONFIG_FLATMEM_MANUAL=y
84097 -# CONFIG_DISCONTIGMEM_MANUAL is not set
84098 -# CONFIG_SPARSEMEM_MANUAL is not set
84099 -CONFIG_FLATMEM=y
84100 -CONFIG_FLAT_NODE_MEM_MAP=y
84101 -# CONFIG_SPARSEMEM_STATIC is not set
84102 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
84103 -CONFIG_SPLIT_PTLOCK_CPUS=4
84104 -# CONFIG_RESOURCES_64BIT is not set
84105 -CONFIG_ZONE_DMA_FLAG=1
84106 -CONFIG_BOUNCE=y
84107 -CONFIG_VIRT_TO_BUS=y
84108 -# CONFIG_PROC_DEVICETREE is not set
84109 -# CONFIG_CMDLINE_BOOL is not set
84110 -# CONFIG_PM is not set
84111 -CONFIG_SECCOMP=y
84112 -CONFIG_ISA_DMA_API=y
84113 -
84114 -#
84115 -# Bus options
84116 -#
84117 -CONFIG_ZONE_DMA=y
84118 -CONFIG_PPC_INDIRECT_PCI=y
84119 -CONFIG_FSL_SOC=y
84120 -CONFIG_FSL_PCI=y
84121 -CONFIG_PCI=y
84122 -CONFIG_PCI_DOMAINS=y
84123 -CONFIG_PCI_SYSCALL=y
84124 -# CONFIG_PCIEPORTBUS is not set
84125 -CONFIG_ARCH_SUPPORTS_MSI=y
84126 -# CONFIG_PCI_MSI is not set
84127 -CONFIG_PCI_LEGACY=y
84128 -
84129 -#
84130 -# Advanced setup
84131 -#
84132 -# CONFIG_ADVANCED_OPTIONS is not set
84133 -
84134 -#
84135 -# Default settings for advanced configuration options are used
84136 -#
84137 -CONFIG_HIGHMEM_START=0xfe000000
84138 -CONFIG_LOWMEM_SIZE=0x30000000
84139 -CONFIG_KERNEL_START=0xc0000000
84140 -CONFIG_TASK_SIZE=0xc0000000
84141 -CONFIG_BOOT_LOAD=0x00800000
84142 -
84143 -#
84144 -# Networking
84145 -#
84146 -CONFIG_NET=y
84147 -
84148 -#
84149 -# Networking options
84150 -#
84151 -CONFIG_PACKET=y
84152 -# CONFIG_PACKET_MMAP is not set
84153 -CONFIG_UNIX=y
84154 -CONFIG_XFRM=y
84155 -# CONFIG_XFRM_USER is not set
84156 -# CONFIG_XFRM_SUB_POLICY is not set
84157 -# CONFIG_XFRM_MIGRATE is not set
84158 -# CONFIG_XFRM_STATISTICS is not set
84159 -# CONFIG_NET_KEY is not set
84160 -CONFIG_INET=y
84161 -CONFIG_IP_MULTICAST=y
84162 -# CONFIG_IP_ADVANCED_ROUTER is not set
84163 -CONFIG_IP_FIB_HASH=y
84164 -CONFIG_IP_PNP=y
84165 -CONFIG_IP_PNP_DHCP=y
84166 -CONFIG_IP_PNP_BOOTP=y
84167 -# CONFIG_IP_PNP_RARP is not set
84168 -# CONFIG_NET_IPIP is not set
84169 -# CONFIG_NET_IPGRE is not set
84170 -# CONFIG_IP_MROUTE is not set
84171 -# CONFIG_ARPD is not set
84172 -CONFIG_SYN_COOKIES=y
84173 -# CONFIG_INET_AH is not set
84174 -# CONFIG_INET_ESP is not set
84175 -# CONFIG_INET_IPCOMP is not set
84176 -# CONFIG_INET_XFRM_TUNNEL is not set
84177 -# CONFIG_INET_TUNNEL is not set
84178 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
84179 -CONFIG_INET_XFRM_MODE_TUNNEL=y
84180 -CONFIG_INET_XFRM_MODE_BEET=y
84181 -# CONFIG_INET_LRO is not set
84182 -CONFIG_INET_DIAG=y
84183 -CONFIG_INET_TCP_DIAG=y
84184 -# CONFIG_TCP_CONG_ADVANCED is not set
84185 -CONFIG_TCP_CONG_CUBIC=y
84186 -CONFIG_DEFAULT_TCP_CONG="cubic"
84187 -# CONFIG_TCP_MD5SIG is not set
84188 -# CONFIG_IPV6 is not set
84189 -# CONFIG_INET6_XFRM_TUNNEL is not set
84190 -# CONFIG_INET6_TUNNEL is not set
84191 -# CONFIG_NETWORK_SECMARK is not set
84192 -# CONFIG_NETFILTER is not set
84193 -# CONFIG_IP_DCCP is not set
84194 -# CONFIG_IP_SCTP is not set
84195 -# CONFIG_TIPC is not set
84196 -# CONFIG_ATM is not set
84197 -# CONFIG_BRIDGE is not set
84198 -# CONFIG_VLAN_8021Q is not set
84199 -# CONFIG_DECNET is not set
84200 -# CONFIG_LLC2 is not set
84201 -# CONFIG_IPX is not set
84202 -# CONFIG_ATALK is not set
84203 -# CONFIG_X25 is not set
84204 -# CONFIG_LAPB is not set
84205 -# CONFIG_ECONET is not set
84206 -# CONFIG_WAN_ROUTER is not set
84207 -# CONFIG_NET_SCHED is not set
84208 -
84209 -#
84210 -# Network testing
84211 -#
84212 -# CONFIG_NET_PKTGEN is not set
84213 -# CONFIG_HAMRADIO is not set
84214 -# CONFIG_CAN is not set
84215 -# CONFIG_IRDA is not set
84216 -# CONFIG_BT is not set
84217 -# CONFIG_AF_RXRPC is not set
84218 -
84219 -#
84220 -# Wireless
84221 -#
84222 -# CONFIG_CFG80211 is not set
84223 -# CONFIG_WIRELESS_EXT is not set
84224 -# CONFIG_MAC80211 is not set
84225 -# CONFIG_IEEE80211 is not set
84226 -# CONFIG_RFKILL is not set
84227 -# CONFIG_NET_9P is not set
84228 -
84229 -#
84230 -# Device Drivers
84231 -#
84232 -
84233 -#
84234 -# Generic Driver Options
84235 -#
84236 -CONFIG_STANDALONE=y
84237 -CONFIG_PREVENT_FIRMWARE_BUILD=y
84238 -# CONFIG_SYS_HYPERVISOR is not set
84239 -# CONFIG_CONNECTOR is not set
84240 -CONFIG_MTD=y
84241 -# CONFIG_MTD_DEBUG is not set
84242 -CONFIG_MTD_CONCAT=y
84243 -CONFIG_MTD_PARTITIONS=y
84244 -# CONFIG_MTD_REDBOOT_PARTS is not set
84245 -CONFIG_MTD_CMDLINE_PARTS=y
84246 -# CONFIG_MTD_OF_PARTS is not set
84247 -
84248 -#
84249 -# User Modules And Translation Layers
84250 -#
84251 -CONFIG_MTD_CHAR=y
84252 -CONFIG_MTD_BLKDEVS=y
84253 -CONFIG_MTD_BLOCK=y
84254 -# CONFIG_FTL is not set
84255 -# CONFIG_NFTL is not set
84256 -# CONFIG_INFTL is not set
84257 -# CONFIG_RFD_FTL is not set
84258 -# CONFIG_SSFDC is not set
84259 -# CONFIG_MTD_OOPS is not set
84260 -
84261 -#
84262 -# RAM/ROM/Flash chip drivers
84263 -#
84264 -CONFIG_MTD_CFI=y
84265 -# CONFIG_MTD_JEDECPROBE is not set
84266 -CONFIG_MTD_GEN_PROBE=y
84267 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
84268 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
84269 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
84270 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
84271 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
84272 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
84273 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
84274 -CONFIG_MTD_CFI_I1=y
84275 -CONFIG_MTD_CFI_I2=y
84276 -# CONFIG_MTD_CFI_I4 is not set
84277 -# CONFIG_MTD_CFI_I8 is not set
84278 -# CONFIG_MTD_CFI_INTELEXT is not set
84279 -CONFIG_MTD_CFI_AMDSTD=y
84280 -# CONFIG_MTD_CFI_STAA is not set
84281 -CONFIG_MTD_CFI_UTIL=y
84282 -# CONFIG_MTD_RAM is not set
84283 -# CONFIG_MTD_ROM is not set
84284 -# CONFIG_MTD_ABSENT is not set
84285 -
84286 -#
84287 -# Mapping drivers for chip access
84288 -#
84289 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
84290 -# CONFIG_MTD_PHYSMAP is not set
84291 -# CONFIG_MTD_PHYSMAP_OF is not set
84292 -# CONFIG_MTD_INTEL_VR_NOR is not set
84293 -# CONFIG_MTD_PLATRAM is not set
84294 -
84295 -#
84296 -# Self-contained MTD device drivers
84297 -#
84298 -# CONFIG_MTD_PMC551 is not set
84299 -# CONFIG_MTD_SLRAM is not set
84300 -# CONFIG_MTD_PHRAM is not set
84301 -# CONFIG_MTD_MTDRAM is not set
84302 -# CONFIG_MTD_BLOCK2MTD is not set
84303 -
84304 -#
84305 -# Disk-On-Chip Device Drivers
84306 -#
84307 -# CONFIG_MTD_DOC2000 is not set
84308 -# CONFIG_MTD_DOC2001 is not set
84309 -# CONFIG_MTD_DOC2001PLUS is not set
84310 -# CONFIG_MTD_NAND is not set
84311 -# CONFIG_MTD_ONENAND is not set
84312 -
84313 -#
84314 -# UBI - Unsorted block images
84315 -#
84316 -# CONFIG_MTD_UBI is not set
84317 -CONFIG_OF_DEVICE=y
84318 -# CONFIG_PARPORT is not set
84319 -CONFIG_BLK_DEV=y
84320 -# CONFIG_BLK_DEV_FD is not set
84321 -# CONFIG_BLK_CPQ_DA is not set
84322 -# CONFIG_BLK_CPQ_CISS_DA is not set
84323 -# CONFIG_BLK_DEV_DAC960 is not set
84324 -# CONFIG_BLK_DEV_UMEM is not set
84325 -# CONFIG_BLK_DEV_COW_COMMON is not set
84326 -CONFIG_BLK_DEV_LOOP=y
84327 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
84328 -# CONFIG_BLK_DEV_NBD is not set
84329 -# CONFIG_BLK_DEV_SX8 is not set
84330 -CONFIG_BLK_DEV_RAM=y
84331 -CONFIG_BLK_DEV_RAM_COUNT=16
84332 -CONFIG_BLK_DEV_RAM_SIZE=32768
84333 -# CONFIG_BLK_DEV_XIP is not set
84334 -# CONFIG_CDROM_PKTCDVD is not set
84335 -# CONFIG_ATA_OVER_ETH is not set
84336 -CONFIG_MISC_DEVICES=y
84337 -# CONFIG_PHANTOM is not set
84338 -# CONFIG_EEPROM_93CX6 is not set
84339 -# CONFIG_SGI_IOC4 is not set
84340 -# CONFIG_TIFM_CORE is not set
84341 -# CONFIG_ENCLOSURE_SERVICES is not set
84342 -CONFIG_HAVE_IDE=y
84343 -CONFIG_IDE=y
84344 -CONFIG_IDE_MAX_HWIFS=4
84345 -CONFIG_BLK_DEV_IDE=y
84346 -
84347 -#
84348 -# Please see Documentation/ide/ide.txt for help/info on IDE drives
84349 -#
84350 -# CONFIG_BLK_DEV_IDE_SATA is not set
84351 -CONFIG_BLK_DEV_IDEDISK=y
84352 -# CONFIG_IDEDISK_MULTI_MODE is not set
84353 -# CONFIG_BLK_DEV_IDECD is not set
84354 -# CONFIG_BLK_DEV_IDETAPE is not set
84355 -# CONFIG_BLK_DEV_IDEFLOPPY is not set
84356 -# CONFIG_IDE_TASK_IOCTL is not set
84357 -CONFIG_IDE_PROC_FS=y
84358 -
84359 -#
84360 -# IDE chipset support/bugfixes
84361 -#
84362 -CONFIG_IDE_GENERIC=y
84363 -# CONFIG_BLK_DEV_PLATFORM is not set
84364 -CONFIG_BLK_DEV_IDEDMA_SFF=y
84365 -
84366 -#
84367 -# PCI IDE chipsets support
84368 -#
84369 -CONFIG_BLK_DEV_IDEPCI=y
84370 -CONFIG_IDEPCI_PCIBUS_ORDER=y
84371 -# CONFIG_BLK_DEV_OFFBOARD is not set
84372 -CONFIG_BLK_DEV_GENERIC=y
84373 -# CONFIG_BLK_DEV_OPTI621 is not set
84374 -CONFIG_BLK_DEV_IDEDMA_PCI=y
84375 -# CONFIG_BLK_DEV_AEC62XX is not set
84376 -# CONFIG_BLK_DEV_ALI15X3 is not set
84377 -# CONFIG_BLK_DEV_AMD74XX is not set
84378 -# CONFIG_BLK_DEV_CMD64X is not set
84379 -# CONFIG_BLK_DEV_TRIFLEX is not set
84380 -# CONFIG_BLK_DEV_CY82C693 is not set
84381 -# CONFIG_BLK_DEV_CS5520 is not set
84382 -# CONFIG_BLK_DEV_CS5530 is not set
84383 -# CONFIG_BLK_DEV_HPT34X is not set
84384 -# CONFIG_BLK_DEV_HPT366 is not set
84385 -# CONFIG_BLK_DEV_JMICRON is not set
84386 -# CONFIG_BLK_DEV_SC1200 is not set
84387 -# CONFIG_BLK_DEV_PIIX is not set
84388 -# CONFIG_BLK_DEV_IT8213 is not set
84389 -# CONFIG_BLK_DEV_IT821X is not set
84390 -# CONFIG_BLK_DEV_NS87415 is not set
84391 -# CONFIG_BLK_DEV_PDC202XX_OLD is not set
84392 -# CONFIG_BLK_DEV_PDC202XX_NEW is not set
84393 -# CONFIG_BLK_DEV_SVWKS is not set
84394 -# CONFIG_BLK_DEV_SIIMAGE is not set
84395 -# CONFIG_BLK_DEV_SL82C105 is not set
84396 -# CONFIG_BLK_DEV_SLC90E66 is not set
84397 -# CONFIG_BLK_DEV_TRM290 is not set
84398 -CONFIG_BLK_DEV_VIA82CXXX=y
84399 -# CONFIG_BLK_DEV_TC86C001 is not set
84400 -CONFIG_BLK_DEV_IDEDMA=y
84401 -CONFIG_IDE_ARCH_OBSOLETE_INIT=y
84402 -# CONFIG_BLK_DEV_HD is not set
84403 -
84404 -#
84405 -# SCSI device support
84406 -#
84407 -# CONFIG_RAID_ATTRS is not set
84408 -# CONFIG_SCSI is not set
84409 -# CONFIG_SCSI_DMA is not set
84410 -# CONFIG_SCSI_NETLINK is not set
84411 -# CONFIG_ATA is not set
84412 -# CONFIG_MD is not set
84413 -# CONFIG_FUSION is not set
84414 -
84415 -#
84416 -# IEEE 1394 (FireWire) support
84417 -#
84418 -# CONFIG_FIREWIRE is not set
84419 -# CONFIG_IEEE1394 is not set
84420 -# CONFIG_I2O is not set
84421 -# CONFIG_MACINTOSH_DRIVERS is not set
84422 -CONFIG_NETDEVICES=y
84423 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
84424 -# CONFIG_DUMMY is not set
84425 -# CONFIG_BONDING is not set
84426 -# CONFIG_MACVLAN is not set
84427 -# CONFIG_EQUALIZER is not set
84428 -# CONFIG_TUN is not set
84429 -# CONFIG_VETH is not set
84430 -# CONFIG_ARCNET is not set
84431 -CONFIG_PHYLIB=y
84432 -
84433 -#
84434 -# MII PHY device drivers
84435 -#
84436 -# CONFIG_MARVELL_PHY is not set
84437 -# CONFIG_DAVICOM_PHY is not set
84438 -# CONFIG_QSEMI_PHY is not set
84439 -# CONFIG_LXT_PHY is not set
84440 -# CONFIG_CICADA_PHY is not set
84441 -# CONFIG_VITESSE_PHY is not set
84442 -# CONFIG_SMSC_PHY is not set
84443 -# CONFIG_BROADCOM_PHY is not set
84444 -# CONFIG_ICPLUS_PHY is not set
84445 -# CONFIG_REALTEK_PHY is not set
84446 -# CONFIG_FIXED_PHY is not set
84447 -# CONFIG_MDIO_BITBANG is not set
84448 -CONFIG_NET_ETHERNET=y
84449 -CONFIG_MII=y
84450 -# CONFIG_HAPPYMEAL is not set
84451 -# CONFIG_SUNGEM is not set
84452 -# CONFIG_CASSINI is not set
84453 -# CONFIG_NET_VENDOR_3COM is not set
84454 -# CONFIG_NET_TULIP is not set
84455 -# CONFIG_HP100 is not set
84456 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
84457 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
84458 -# CONFIG_IBM_NEW_EMAC_TAH is not set
84459 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
84460 -CONFIG_NET_PCI=y
84461 -# CONFIG_PCNET32 is not set
84462 -# CONFIG_AMD8111_ETH is not set
84463 -# CONFIG_ADAPTEC_STARFIRE is not set
84464 -# CONFIG_B44 is not set
84465 -# CONFIG_FORCEDETH is not set
84466 -# CONFIG_EEPRO100 is not set
84467 -CONFIG_E100=y
84468 -# CONFIG_FEALNX is not set
84469 -# CONFIG_NATSEMI is not set
84470 -# CONFIG_NE2K_PCI is not set
84471 -# CONFIG_8139CP is not set
84472 -# CONFIG_8139TOO is not set
84473 -# CONFIG_R6040 is not set
84474 -# CONFIG_SIS900 is not set
84475 -# CONFIG_EPIC100 is not set
84476 -# CONFIG_SUNDANCE is not set
84477 -# CONFIG_TLAN is not set
84478 -# CONFIG_VIA_RHINE is not set
84479 -# CONFIG_SC92031 is not set
84480 -# CONFIG_FS_ENET is not set
84481 -CONFIG_NETDEV_1000=y
84482 -# CONFIG_ACENIC is not set
84483 -# CONFIG_DL2K is not set
84484 -# CONFIG_E1000 is not set
84485 -# CONFIG_E1000E is not set
84486 -# CONFIG_E1000E_ENABLED is not set
84487 -# CONFIG_IP1000 is not set
84488 -# CONFIG_IGB is not set
84489 -# CONFIG_NS83820 is not set
84490 -# CONFIG_HAMACHI is not set
84491 -# CONFIG_YELLOWFIN is not set
84492 -# CONFIG_R8169 is not set
84493 -# CONFIG_SIS190 is not set
84494 -# CONFIG_SKGE is not set
84495 -# CONFIG_SKY2 is not set
84496 -# CONFIG_SK98LIN is not set
84497 -# CONFIG_VIA_VELOCITY is not set
84498 -# CONFIG_TIGON3 is not set
84499 -# CONFIG_BNX2 is not set
84500 -CONFIG_GIANFAR=y
84501 -CONFIG_GFAR_NAPI=y
84502 -# CONFIG_QLA3XXX is not set
84503 -# CONFIG_ATL1 is not set
84504 -CONFIG_NETDEV_10000=y
84505 -# CONFIG_CHELSIO_T1 is not set
84506 -# CONFIG_CHELSIO_T3 is not set
84507 -# CONFIG_IXGBE is not set
84508 -# CONFIG_IXGB is not set
84509 -# CONFIG_S2IO is not set
84510 -# CONFIG_MYRI10GE is not set
84511 -# CONFIG_NETXEN_NIC is not set
84512 -# CONFIG_NIU is not set
84513 -# CONFIG_MLX4_CORE is not set
84514 -# CONFIG_TEHUTI is not set
84515 -# CONFIG_BNX2X is not set
84516 -# CONFIG_TR is not set
84517 -
84518 -#
84519 -# Wireless LAN
84520 -#
84521 -# CONFIG_WLAN_PRE80211 is not set
84522 -# CONFIG_WLAN_80211 is not set
84523 -# CONFIG_WAN is not set
84524 -# CONFIG_FDDI is not set
84525 -# CONFIG_HIPPI is not set
84526 -# CONFIG_PPP is not set
84527 -# CONFIG_SLIP is not set
84528 -# CONFIG_NETCONSOLE is not set
84529 -# CONFIG_NETPOLL is not set
84530 -# CONFIG_NET_POLL_CONTROLLER is not set
84531 -# CONFIG_ISDN is not set
84532 -# CONFIG_PHONE is not set
84533 -
84534 -#
84535 -# Input device support
84536 -#
84537 -CONFIG_INPUT=y
84538 -# CONFIG_INPUT_FF_MEMLESS is not set
84539 -# CONFIG_INPUT_POLLDEV is not set
84540 -
84541 -#
84542 -# Userland interfaces
84543 -#
84544 -# CONFIG_INPUT_MOUSEDEV is not set
84545 -# CONFIG_INPUT_JOYDEV is not set
84546 -# CONFIG_INPUT_EVDEV is not set
84547 -# CONFIG_INPUT_EVBUG is not set
84548 -
84549 -#
84550 -# Input Device Drivers
84551 -#
84552 -# CONFIG_INPUT_KEYBOARD is not set
84553 -# CONFIG_INPUT_MOUSE is not set
84554 -# CONFIG_INPUT_JOYSTICK is not set
84555 -# CONFIG_INPUT_TABLET is not set
84556 -# CONFIG_INPUT_TOUCHSCREEN is not set
84557 -# CONFIG_INPUT_MISC is not set
84558 -
84559 -#
84560 -# Hardware I/O ports
84561 -#
84562 -# CONFIG_SERIO is not set
84563 -# CONFIG_GAMEPORT is not set
84564 -
84565 -#
84566 -# Character devices
84567 -#
84568 -# CONFIG_VT is not set
84569 -# CONFIG_SERIAL_NONSTANDARD is not set
84570 -# CONFIG_NOZOMI is not set
84571 -
84572 -#
84573 -# Serial drivers
84574 -#
84575 -CONFIG_SERIAL_8250=y
84576 -CONFIG_SERIAL_8250_CONSOLE=y
84577 -CONFIG_SERIAL_8250_PCI=y
84578 -CONFIG_SERIAL_8250_NR_UARTS=4
84579 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
84580 -# CONFIG_SERIAL_8250_EXTENDED is not set
84581 -CONFIG_SERIAL_8250_SHARE_IRQ=y
84582 -
84583 -#
84584 -# Non-8250 serial port support
84585 -#
84586 -# CONFIG_SERIAL_UARTLITE is not set
84587 -CONFIG_SERIAL_CORE=y
84588 -CONFIG_SERIAL_CORE_CONSOLE=y
84589 -CONFIG_SERIAL_CPM=y
84590 -CONFIG_SERIAL_CPM_CONSOLE=y
84591 -CONFIG_SERIAL_CPM_SCC1=y
84592 -# CONFIG_SERIAL_CPM_SCC2 is not set
84593 -# CONFIG_SERIAL_CPM_SCC3 is not set
84594 -# CONFIG_SERIAL_CPM_SCC4 is not set
84595 -# CONFIG_SERIAL_CPM_SMC1 is not set
84596 -# CONFIG_SERIAL_CPM_SMC2 is not set
84597 -# CONFIG_SERIAL_JSM is not set
84598 -# CONFIG_SERIAL_OF_PLATFORM is not set
84599 -CONFIG_UNIX98_PTYS=y
84600 -CONFIG_LEGACY_PTYS=y
84601 -CONFIG_LEGACY_PTY_COUNT=256
84602 -# CONFIG_IPMI_HANDLER is not set
84603 -CONFIG_HW_RANDOM=y
84604 -# CONFIG_NVRAM is not set
84605 -CONFIG_GEN_RTC=y
84606 -# CONFIG_GEN_RTC_X is not set
84607 -# CONFIG_R3964 is not set
84608 -# CONFIG_APPLICOM is not set
84609 -# CONFIG_RAW_DRIVER is not set
84610 -# CONFIG_TCG_TPM is not set
84611 -CONFIG_DEVPORT=y
84612 -CONFIG_I2C=y
84613 -CONFIG_I2C_BOARDINFO=y
84614 -CONFIG_I2C_CHARDEV=y
84615 -
84616 -#
84617 -# I2C Algorithms
84618 -#
84619 -# CONFIG_I2C_ALGOBIT is not set
84620 -# CONFIG_I2C_ALGOPCF is not set
84621 -# CONFIG_I2C_ALGOPCA is not set
84622 -
84623 -#
84624 -# I2C Hardware Bus support
84625 -#
84626 -# CONFIG_I2C_ALI1535 is not set
84627 -# CONFIG_I2C_ALI1563 is not set
84628 -# CONFIG_I2C_ALI15X3 is not set
84629 -# CONFIG_I2C_AMD756 is not set
84630 -# CONFIG_I2C_AMD8111 is not set
84631 -# CONFIG_I2C_I801 is not set
84632 -# CONFIG_I2C_I810 is not set
84633 -# CONFIG_I2C_PIIX4 is not set
84634 -CONFIG_I2C_MPC=y
84635 -# CONFIG_I2C_NFORCE2 is not set
84636 -# CONFIG_I2C_OCORES is not set
84637 -# CONFIG_I2C_PARPORT_LIGHT is not set
84638 -# CONFIG_I2C_PROSAVAGE is not set
84639 -# CONFIG_I2C_SAVAGE4 is not set
84640 -# CONFIG_I2C_SIMTEC is not set
84641 -# CONFIG_I2C_SIS5595 is not set
84642 -# CONFIG_I2C_SIS630 is not set
84643 -# CONFIG_I2C_SIS96X is not set
84644 -# CONFIG_I2C_TAOS_EVM is not set
84645 -# CONFIG_I2C_VIA is not set
84646 -# CONFIG_I2C_VIAPRO is not set
84647 -# CONFIG_I2C_VOODOO3 is not set
84648 -
84649 -#
84650 -# Miscellaneous I2C Chip support
84651 -#
84652 -# CONFIG_DS1682 is not set
84653 -# CONFIG_SENSORS_EEPROM is not set
84654 -# CONFIG_SENSORS_PCF8574 is not set
84655 -# CONFIG_PCF8575 is not set
84656 -# CONFIG_SENSORS_PCF8591 is not set
84657 -# CONFIG_TPS65010 is not set
84658 -# CONFIG_SENSORS_MAX6875 is not set
84659 -# CONFIG_SENSORS_TSL2550 is not set
84660 -# CONFIG_I2C_DEBUG_CORE is not set
84661 -# CONFIG_I2C_DEBUG_ALGO is not set
84662 -# CONFIG_I2C_DEBUG_BUS is not set
84663 -# CONFIG_I2C_DEBUG_CHIP is not set
84664 -
84665 -#
84666 -# SPI support
84667 -#
84668 -# CONFIG_SPI is not set
84669 -# CONFIG_SPI_MASTER is not set
84670 -# CONFIG_W1 is not set
84671 -# CONFIG_POWER_SUPPLY is not set
84672 -CONFIG_HWMON=y
84673 -# CONFIG_HWMON_VID is not set
84674 -# CONFIG_SENSORS_AD7418 is not set
84675 -# CONFIG_SENSORS_ADM1021 is not set
84676 -# CONFIG_SENSORS_ADM1025 is not set
84677 -# CONFIG_SENSORS_ADM1026 is not set
84678 -# CONFIG_SENSORS_ADM1029 is not set
84679 -# CONFIG_SENSORS_ADM1031 is not set
84680 -# CONFIG_SENSORS_ADM9240 is not set
84681 -# CONFIG_SENSORS_ADT7470 is not set
84682 -# CONFIG_SENSORS_ADT7473 is not set
84683 -# CONFIG_SENSORS_ATXP1 is not set
84684 -# CONFIG_SENSORS_DS1621 is not set
84685 -# CONFIG_SENSORS_I5K_AMB is not set
84686 -# CONFIG_SENSORS_F71805F is not set
84687 -# CONFIG_SENSORS_F71882FG is not set
84688 -# CONFIG_SENSORS_F75375S is not set
84689 -# CONFIG_SENSORS_GL518SM is not set
84690 -# CONFIG_SENSORS_GL520SM is not set
84691 -# CONFIG_SENSORS_IT87 is not set
84692 -# CONFIG_SENSORS_LM63 is not set
84693 -CONFIG_SENSORS_LM75=y
84694 -# CONFIG_SENSORS_LM77 is not set
84695 -# CONFIG_SENSORS_LM78 is not set
84696 -# CONFIG_SENSORS_LM80 is not set
84697 -# CONFIG_SENSORS_LM83 is not set
84698 -# CONFIG_SENSORS_LM85 is not set
84699 -# CONFIG_SENSORS_LM87 is not set
84700 -# CONFIG_SENSORS_LM90 is not set
84701 -# CONFIG_SENSORS_LM92 is not set
84702 -# CONFIG_SENSORS_LM93 is not set
84703 -# CONFIG_SENSORS_MAX1619 is not set
84704 -# CONFIG_SENSORS_MAX6650 is not set
84705 -# CONFIG_SENSORS_PC87360 is not set
84706 -# CONFIG_SENSORS_PC87427 is not set
84707 -# CONFIG_SENSORS_SIS5595 is not set
84708 -# CONFIG_SENSORS_DME1737 is not set
84709 -# CONFIG_SENSORS_SMSC47M1 is not set
84710 -# CONFIG_SENSORS_SMSC47M192 is not set
84711 -# CONFIG_SENSORS_SMSC47B397 is not set
84712 -# CONFIG_SENSORS_ADS7828 is not set
84713 -# CONFIG_SENSORS_THMC50 is not set
84714 -# CONFIG_SENSORS_VIA686A is not set
84715 -# CONFIG_SENSORS_VT1211 is not set
84716 -# CONFIG_SENSORS_VT8231 is not set
84717 -# CONFIG_SENSORS_W83781D is not set
84718 -# CONFIG_SENSORS_W83791D is not set
84719 -# CONFIG_SENSORS_W83792D is not set
84720 -# CONFIG_SENSORS_W83793 is not set
84721 -# CONFIG_SENSORS_W83L785TS is not set
84722 -# CONFIG_SENSORS_W83L786NG is not set
84723 -# CONFIG_SENSORS_W83627HF is not set
84724 -# CONFIG_SENSORS_W83627EHF is not set
84725 -CONFIG_HWMON_DEBUG_CHIP=y
84726 -# CONFIG_THERMAL is not set
84727 -# CONFIG_WATCHDOG is not set
84728 -
84729 -#
84730 -# Sonics Silicon Backplane
84731 -#
84732 -CONFIG_SSB_POSSIBLE=y
84733 -# CONFIG_SSB is not set
84734 -
84735 -#
84736 -# Multifunction device drivers
84737 -#
84738 -# CONFIG_MFD_SM501 is not set
84739 -
84740 -#
84741 -# Multimedia devices
84742 -#
84743 -# CONFIG_VIDEO_DEV is not set
84744 -# CONFIG_DVB_CORE is not set
84745 -CONFIG_DAB=y
84746 -
84747 -#
84748 -# Graphics support
84749 -#
84750 -# CONFIG_AGP is not set
84751 -# CONFIG_DRM is not set
84752 -# CONFIG_VGASTATE is not set
84753 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
84754 -# CONFIG_FB is not set
84755 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
84756 -
84757 -#
84758 -# Display device support
84759 -#
84760 -# CONFIG_DISPLAY_SUPPORT is not set
84761 -
84762 -#
84763 -# Sound
84764 -#
84765 -# CONFIG_SOUND is not set
84766 -CONFIG_HID_SUPPORT=y
84767 -CONFIG_HID=y
84768 -# CONFIG_HID_DEBUG is not set
84769 -# CONFIG_HIDRAW is not set
84770 -CONFIG_USB_SUPPORT=y
84771 -CONFIG_USB_ARCH_HAS_HCD=y
84772 -CONFIG_USB_ARCH_HAS_OHCI=y
84773 -CONFIG_USB_ARCH_HAS_EHCI=y
84774 -# CONFIG_USB is not set
84775 -
84776 -#
84777 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
84778 -#
84779 -# CONFIG_USB_GADGET is not set
84780 -# CONFIG_MMC is not set
84781 -# CONFIG_MEMSTICK is not set
84782 -# CONFIG_NEW_LEDS is not set
84783 -# CONFIG_INFINIBAND is not set
84784 -# CONFIG_EDAC is not set
84785 -# CONFIG_RTC_CLASS is not set
84786 -# CONFIG_DMADEVICES is not set
84787 -
84788 -#
84789 -# Userspace I/O
84790 -#
84791 -# CONFIG_UIO is not set
84792 -
84793 -#
84794 -# File systems
84795 -#
84796 -CONFIG_EXT2_FS=y
84797 -# CONFIG_EXT2_FS_XATTR is not set
84798 -# CONFIG_EXT2_FS_XIP is not set
84799 -CONFIG_EXT3_FS=y
84800 -CONFIG_EXT3_FS_XATTR=y
84801 -# CONFIG_EXT3_FS_POSIX_ACL is not set
84802 -# CONFIG_EXT3_FS_SECURITY is not set
84803 -# CONFIG_EXT4DEV_FS is not set
84804 -CONFIG_JBD=y
84805 -CONFIG_FS_MBCACHE=y
84806 -# CONFIG_REISERFS_FS is not set
84807 -# CONFIG_JFS_FS is not set
84808 -# CONFIG_FS_POSIX_ACL is not set
84809 -# CONFIG_XFS_FS is not set
84810 -# CONFIG_GFS2_FS is not set
84811 -# CONFIG_OCFS2_FS is not set
84812 -CONFIG_DNOTIFY=y
84813 -CONFIG_INOTIFY=y
84814 -CONFIG_INOTIFY_USER=y
84815 -# CONFIG_QUOTA is not set
84816 -# CONFIG_AUTOFS_FS is not set
84817 -# CONFIG_AUTOFS4_FS is not set
84818 -# CONFIG_FUSE_FS is not set
84819 -
84820 -#
84821 -# CD-ROM/DVD Filesystems
84822 -#
84823 -# CONFIG_ISO9660_FS is not set
84824 -# CONFIG_UDF_FS is not set
84825 -
84826 -#
84827 -# DOS/FAT/NT Filesystems
84828 -#
84829 -# CONFIG_MSDOS_FS is not set
84830 -# CONFIG_VFAT_FS is not set
84831 -# CONFIG_NTFS_FS is not set
84832 -
84833 -#
84834 -# Pseudo filesystems
84835 -#
84836 -CONFIG_PROC_FS=y
84837 -CONFIG_PROC_KCORE=y
84838 -CONFIG_PROC_SYSCTL=y
84839 -CONFIG_SYSFS=y
84840 -CONFIG_TMPFS=y
84841 -# CONFIG_TMPFS_POSIX_ACL is not set
84842 -# CONFIG_HUGETLB_PAGE is not set
84843 -# CONFIG_CONFIGFS_FS is not set
84844 -
84845 -#
84846 -# Miscellaneous filesystems
84847 -#
84848 -# CONFIG_ADFS_FS is not set
84849 -# CONFIG_AFFS_FS is not set
84850 -# CONFIG_HFS_FS is not set
84851 -# CONFIG_HFSPLUS_FS is not set
84852 -# CONFIG_BEFS_FS is not set
84853 -# CONFIG_BFS_FS is not set
84854 -# CONFIG_EFS_FS is not set
84855 -CONFIG_JFFS2_FS=y
84856 -CONFIG_JFFS2_FS_DEBUG=0
84857 -CONFIG_JFFS2_FS_WRITEBUFFER=y
84858 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
84859 -# CONFIG_JFFS2_SUMMARY is not set
84860 -# CONFIG_JFFS2_FS_XATTR is not set
84861 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
84862 -CONFIG_JFFS2_ZLIB=y
84863 -# CONFIG_JFFS2_LZO is not set
84864 -CONFIG_JFFS2_RTIME=y
84865 -# CONFIG_JFFS2_RUBIN is not set
84866 -CONFIG_CRAMFS=y
84867 -# CONFIG_VXFS_FS is not set
84868 -# CONFIG_MINIX_FS is not set
84869 -# CONFIG_HPFS_FS is not set
84870 -# CONFIG_QNX4FS_FS is not set
84871 -# CONFIG_ROMFS_FS is not set
84872 -# CONFIG_SYSV_FS is not set
84873 -# CONFIG_UFS_FS is not set
84874 -CONFIG_NETWORK_FILESYSTEMS=y
84875 -CONFIG_NFS_FS=y
84876 -# CONFIG_NFS_V3 is not set
84877 -# CONFIG_NFS_V4 is not set
84878 -# CONFIG_NFS_DIRECTIO is not set
84879 -# CONFIG_NFSD is not set
84880 -CONFIG_ROOT_NFS=y
84881 -CONFIG_LOCKD=y
84882 -CONFIG_NFS_COMMON=y
84883 -CONFIG_SUNRPC=y
84884 -# CONFIG_SUNRPC_BIND34 is not set
84885 -# CONFIG_RPCSEC_GSS_KRB5 is not set
84886 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
84887 -# CONFIG_SMB_FS is not set
84888 -# CONFIG_CIFS is not set
84889 -# CONFIG_NCP_FS is not set
84890 -# CONFIG_CODA_FS is not set
84891 -# CONFIG_AFS_FS is not set
84892 -
84893 -#
84894 -# Partition Types
84895 -#
84896 -CONFIG_PARTITION_ADVANCED=y
84897 -# CONFIG_ACORN_PARTITION is not set
84898 -# CONFIG_OSF_PARTITION is not set
84899 -# CONFIG_AMIGA_PARTITION is not set
84900 -# CONFIG_ATARI_PARTITION is not set
84901 -# CONFIG_MAC_PARTITION is not set
84902 -# CONFIG_MSDOS_PARTITION is not set
84903 -# CONFIG_LDM_PARTITION is not set
84904 -# CONFIG_SGI_PARTITION is not set
84905 -# CONFIG_ULTRIX_PARTITION is not set
84906 -# CONFIG_SUN_PARTITION is not set
84907 -# CONFIG_KARMA_PARTITION is not set
84908 -# CONFIG_EFI_PARTITION is not set
84909 -# CONFIG_SYSV68_PARTITION is not set
84910 -# CONFIG_NLS is not set
84911 -# CONFIG_DLM is not set
84912 -
84913 -#
84914 -# Library routines
84915 -#
84916 -CONFIG_BITREVERSE=y
84917 -# CONFIG_CRC_CCITT is not set
84918 -# CONFIG_CRC16 is not set
84919 -# CONFIG_CRC_ITU_T is not set
84920 -CONFIG_CRC32=y
84921 -# CONFIG_CRC7 is not set
84922 -# CONFIG_LIBCRC32C is not set
84923 -CONFIG_ZLIB_INFLATE=y
84924 -CONFIG_ZLIB_DEFLATE=y
84925 -CONFIG_PLIST=y
84926 -CONFIG_HAS_IOMEM=y
84927 -CONFIG_HAS_IOPORT=y
84928 -CONFIG_HAS_DMA=y
84929 -
84930 -#
84931 -# Kernel hacking
84932 -#
84933 -# CONFIG_PRINTK_TIME is not set
84934 -CONFIG_ENABLE_WARN_DEPRECATED=y
84935 -CONFIG_ENABLE_MUST_CHECK=y
84936 -# CONFIG_MAGIC_SYSRQ is not set
84937 -# CONFIG_UNUSED_SYMBOLS is not set
84938 -# CONFIG_DEBUG_FS is not set
84939 -# CONFIG_HEADERS_CHECK is not set
84940 -# CONFIG_DEBUG_KERNEL is not set
84941 -# CONFIG_SLUB_DEBUG_ON is not set
84942 -# CONFIG_SLUB_STATS is not set
84943 -# CONFIG_DEBUG_BUGVERBOSE is not set
84944 -# CONFIG_SAMPLES is not set
84945 -# CONFIG_KGDB_CONSOLE is not set
84946 -# CONFIG_PPC_EARLY_DEBUG is not set
84947 -
84948 -#
84949 -# Security options
84950 -#
84951 -# CONFIG_KEYS is not set
84952 -# CONFIG_SECURITY is not set
84953 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
84954 -CONFIG_CRYPTO=y
84955 -# CONFIG_CRYPTO_SEQIV is not set
84956 -# CONFIG_CRYPTO_MANAGER is not set
84957 -# CONFIG_CRYPTO_HMAC is not set
84958 -# CONFIG_CRYPTO_XCBC is not set
84959 -# CONFIG_CRYPTO_NULL is not set
84960 -# CONFIG_CRYPTO_MD4 is not set
84961 -# CONFIG_CRYPTO_MD5 is not set
84962 -# CONFIG_CRYPTO_SHA1 is not set
84963 -# CONFIG_CRYPTO_SHA256 is not set
84964 -# CONFIG_CRYPTO_SHA512 is not set
84965 -# CONFIG_CRYPTO_WP512 is not set
84966 -# CONFIG_CRYPTO_TGR192 is not set
84967 -# CONFIG_CRYPTO_GF128MUL is not set
84968 -# CONFIG_CRYPTO_ECB is not set
84969 -# CONFIG_CRYPTO_CBC is not set
84970 -# CONFIG_CRYPTO_PCBC is not set
84971 -# CONFIG_CRYPTO_LRW is not set
84972 -# CONFIG_CRYPTO_XTS is not set
84973 -# CONFIG_CRYPTO_CTR is not set
84974 -# CONFIG_CRYPTO_GCM is not set
84975 -# CONFIG_CRYPTO_CCM is not set
84976 -# CONFIG_CRYPTO_CRYPTD is not set
84977 -# CONFIG_CRYPTO_DES is not set
84978 -# CONFIG_CRYPTO_FCRYPT is not set
84979 -# CONFIG_CRYPTO_BLOWFISH is not set
84980 -# CONFIG_CRYPTO_TWOFISH is not set
84981 -# CONFIG_CRYPTO_SERPENT is not set
84982 -# CONFIG_CRYPTO_AES is not set
84983 -# CONFIG_CRYPTO_CAST5 is not set
84984 -# CONFIG_CRYPTO_CAST6 is not set
84985 -# CONFIG_CRYPTO_TEA is not set
84986 -# CONFIG_CRYPTO_ARC4 is not set
84987 -# CONFIG_CRYPTO_KHAZAD is not set
84988 -# CONFIG_CRYPTO_ANUBIS is not set
84989 -# CONFIG_CRYPTO_SEED is not set
84990 -# CONFIG_CRYPTO_SALSA20 is not set
84991 -# CONFIG_CRYPTO_DEFLATE is not set
84992 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
84993 -# CONFIG_CRYPTO_CRC32C is not set
84994 -# CONFIG_CRYPTO_CAMELLIA is not set
84995 -# CONFIG_CRYPTO_AUTHENC is not set
84996 -# CONFIG_CRYPTO_LZO is not set
84997 -CONFIG_CRYPTO_HW=y
84998 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
84999 -# CONFIG_PPC_CLOCK is not set
85000 -CONFIG_PPC_LIB_RHEAP=y
85001 Index: linux-2.6.25.4/arch/powerpc/configs/tqm8560_defconfig
85002 ===================================================================
85003 --- linux-2.6.25.4.orig/arch/powerpc/configs/tqm8560_defconfig
85004 +++ /dev/null
85005 @@ -1,1109 +0,0 @@
85006 -#
85007 -# Automatically generated make config: don't edit
85008 -# Linux kernel version: 2.6.25-rc6
85009 -# Mon Mar 24 08:48:45 2008
85010 -#
85011 -# CONFIG_PPC64 is not set
85012 -
85013 -#
85014 -# Processor support
85015 -#
85016 -# CONFIG_6xx is not set
85017 -CONFIG_PPC_85xx=y
85018 -# CONFIG_PPC_8xx is not set
85019 -# CONFIG_40x is not set
85020 -# CONFIG_44x is not set
85021 -# CONFIG_E200 is not set
85022 -CONFIG_E500=y
85023 -CONFIG_BOOKE=y
85024 -CONFIG_FSL_BOOKE=y
85025 -CONFIG_FSL_EMB_PERFMON=y
85026 -# CONFIG_PHYS_64BIT is not set
85027 -CONFIG_SPE=y
85028 -# CONFIG_PPC_MM_SLICES is not set
85029 -CONFIG_PPC32=y
85030 -CONFIG_WORD_SIZE=32
85031 -CONFIG_PPC_MERGE=y
85032 -CONFIG_MMU=y
85033 -CONFIG_GENERIC_CMOS_UPDATE=y
85034 -CONFIG_GENERIC_TIME=y
85035 -CONFIG_GENERIC_TIME_VSYSCALL=y
85036 -CONFIG_GENERIC_CLOCKEVENTS=y
85037 -CONFIG_GENERIC_HARDIRQS=y
85038 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
85039 -CONFIG_IRQ_PER_CPU=y
85040 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
85041 -CONFIG_ARCH_HAS_ILOG2_U32=y
85042 -CONFIG_GENERIC_HWEIGHT=y
85043 -CONFIG_GENERIC_CALIBRATE_DELAY=y
85044 -CONFIG_GENERIC_FIND_NEXT_BIT=y
85045 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
85046 -CONFIG_PPC=y
85047 -CONFIG_EARLY_PRINTK=y
85048 -CONFIG_GENERIC_NVRAM=y
85049 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
85050 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
85051 -CONFIG_PPC_OF=y
85052 -CONFIG_OF=y
85053 -CONFIG_PPC_UDBG_16550=y
85054 -# CONFIG_GENERIC_TBSYNC is not set
85055 -CONFIG_AUDIT_ARCH=y
85056 -CONFIG_GENERIC_BUG=y
85057 -CONFIG_DEFAULT_UIMAGE=y
85058 -# CONFIG_PPC_DCR_NATIVE is not set
85059 -# CONFIG_PPC_DCR_MMIO is not set
85060 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
85061 -
85062 -#
85063 -# General setup
85064 -#
85065 -CONFIG_EXPERIMENTAL=y
85066 -CONFIG_BROKEN_ON_SMP=y
85067 -CONFIG_INIT_ENV_ARG_LIMIT=32
85068 -CONFIG_LOCALVERSION=""
85069 -CONFIG_LOCALVERSION_AUTO=y
85070 -CONFIG_SWAP=y
85071 -CONFIG_SYSVIPC=y
85072 -CONFIG_SYSVIPC_SYSCTL=y
85073 -# CONFIG_POSIX_MQUEUE is not set
85074 -# CONFIG_BSD_PROCESS_ACCT is not set
85075 -# CONFIG_TASKSTATS is not set
85076 -# CONFIG_AUDIT is not set
85077 -# CONFIG_IKCONFIG is not set
85078 -CONFIG_LOG_BUF_SHIFT=14
85079 -# CONFIG_CGROUPS is not set
85080 -CONFIG_GROUP_SCHED=y
85081 -CONFIG_FAIR_GROUP_SCHED=y
85082 -# CONFIG_RT_GROUP_SCHED is not set
85083 -CONFIG_USER_SCHED=y
85084 -# CONFIG_CGROUP_SCHED is not set
85085 -CONFIG_SYSFS_DEPRECATED=y
85086 -CONFIG_SYSFS_DEPRECATED_V2=y
85087 -# CONFIG_RELAY is not set
85088 -# CONFIG_NAMESPACES is not set
85089 -CONFIG_BLK_DEV_INITRD=y
85090 -CONFIG_INITRAMFS_SOURCE=""
85091 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
85092 -CONFIG_SYSCTL=y
85093 -CONFIG_EMBEDDED=y
85094 -CONFIG_SYSCTL_SYSCALL=y
85095 -# CONFIG_KALLSYMS is not set
85096 -# CONFIG_HOTPLUG is not set
85097 -CONFIG_PRINTK=y
85098 -CONFIG_BUG=y
85099 -CONFIG_ELF_CORE=y
85100 -CONFIG_COMPAT_BRK=y
85101 -CONFIG_BASE_FULL=y
85102 -CONFIG_FUTEX=y
85103 -CONFIG_ANON_INODES=y
85104 -# CONFIG_EPOLL is not set
85105 -CONFIG_SIGNALFD=y
85106 -CONFIG_TIMERFD=y
85107 -CONFIG_EVENTFD=y
85108 -CONFIG_SHMEM=y
85109 -CONFIG_VM_EVENT_COUNTERS=y
85110 -CONFIG_SLUB_DEBUG=y
85111 -# CONFIG_SLAB is not set
85112 -CONFIG_SLUB=y
85113 -# CONFIG_SLOB is not set
85114 -# CONFIG_PROFILING is not set
85115 -# CONFIG_MARKERS is not set
85116 -CONFIG_HAVE_OPROFILE=y
85117 -CONFIG_HAVE_KPROBES=y
85118 -CONFIG_HAVE_KRETPROBES=y
85119 -CONFIG_PROC_PAGE_MONITOR=y
85120 -CONFIG_SLABINFO=y
85121 -CONFIG_RT_MUTEXES=y
85122 -# CONFIG_TINY_SHMEM is not set
85123 -CONFIG_BASE_SMALL=0
85124 -# CONFIG_MODULES is not set
85125 -CONFIG_BLOCK=y
85126 -# CONFIG_LBD is not set
85127 -# CONFIG_BLK_DEV_IO_TRACE is not set
85128 -# CONFIG_LSF is not set
85129 -# CONFIG_BLK_DEV_BSG is not set
85130 -
85131 -#
85132 -# IO Schedulers
85133 -#
85134 -CONFIG_IOSCHED_NOOP=y
85135 -CONFIG_IOSCHED_AS=y
85136 -CONFIG_IOSCHED_DEADLINE=y
85137 -CONFIG_IOSCHED_CFQ=y
85138 -CONFIG_DEFAULT_AS=y
85139 -# CONFIG_DEFAULT_DEADLINE is not set
85140 -# CONFIG_DEFAULT_CFQ is not set
85141 -# CONFIG_DEFAULT_NOOP is not set
85142 -CONFIG_DEFAULT_IOSCHED="anticipatory"
85143 -CONFIG_CLASSIC_RCU=y
85144 -
85145 -#
85146 -# Platform support
85147 -#
85148 -# CONFIG_PPC_MPC512x is not set
85149 -# CONFIG_PPC_MPC5121 is not set
85150 -# CONFIG_PPC_CELL is not set
85151 -# CONFIG_PPC_CELL_NATIVE is not set
85152 -# CONFIG_PQ2ADS is not set
85153 -CONFIG_MPC85xx=y
85154 -# CONFIG_MPC8540_ADS is not set
85155 -# CONFIG_MPC8560_ADS is not set
85156 -# CONFIG_MPC85xx_CDS is not set
85157 -# CONFIG_MPC85xx_MDS is not set
85158 -# CONFIG_MPC85xx_DS is not set
85159 -# CONFIG_STX_GP3 is not set
85160 -# CONFIG_TQM8540 is not set
85161 -# CONFIG_TQM8541 is not set
85162 -# CONFIG_TQM8555 is not set
85163 -CONFIG_TQM8560=y
85164 -# CONFIG_SBC8548 is not set
85165 -# CONFIG_SBC8560 is not set
85166 -CONFIG_TQM85xx=y
85167 -# CONFIG_IPIC is not set
85168 -CONFIG_MPIC=y
85169 -# CONFIG_MPIC_WEIRD is not set
85170 -# CONFIG_PPC_I8259 is not set
85171 -# CONFIG_PPC_RTAS is not set
85172 -# CONFIG_MMIO_NVRAM is not set
85173 -# CONFIG_PPC_MPC106 is not set
85174 -# CONFIG_PPC_970_NAP is not set
85175 -# CONFIG_PPC_INDIRECT_IO is not set
85176 -# CONFIG_GENERIC_IOMAP is not set
85177 -# CONFIG_CPU_FREQ is not set
85178 -CONFIG_CPM2=y
85179 -CONFIG_PPC_CPM_NEW_BINDING=y
85180 -# CONFIG_FSL_ULI1575 is not set
85181 -CONFIG_CPM=y
85182 -
85183 -#
85184 -# Kernel options
85185 -#
85186 -# CONFIG_HIGHMEM is not set
85187 -# CONFIG_TICK_ONESHOT is not set
85188 -# CONFIG_NO_HZ is not set
85189 -# CONFIG_HIGH_RES_TIMERS is not set
85190 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
85191 -# CONFIG_HZ_100 is not set
85192 -CONFIG_HZ_250=y
85193 -# CONFIG_HZ_300 is not set
85194 -# CONFIG_HZ_1000 is not set
85195 -CONFIG_HZ=250
85196 -# CONFIG_SCHED_HRTICK is not set
85197 -CONFIG_PREEMPT_NONE=y
85198 -# CONFIG_PREEMPT_VOLUNTARY is not set
85199 -# CONFIG_PREEMPT is not set
85200 -CONFIG_BINFMT_ELF=y
85201 -# CONFIG_BINFMT_MISC is not set
85202 -CONFIG_MATH_EMULATION=y
85203 -# CONFIG_IOMMU_HELPER is not set
85204 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
85205 -CONFIG_ARCH_HAS_WALK_MEMORY=y
85206 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
85207 -CONFIG_ARCH_FLATMEM_ENABLE=y
85208 -CONFIG_ARCH_POPULATES_NODE_MAP=y
85209 -CONFIG_SELECT_MEMORY_MODEL=y
85210 -CONFIG_FLATMEM_MANUAL=y
85211 -# CONFIG_DISCONTIGMEM_MANUAL is not set
85212 -# CONFIG_SPARSEMEM_MANUAL is not set
85213 -CONFIG_FLATMEM=y
85214 -CONFIG_FLAT_NODE_MEM_MAP=y
85215 -# CONFIG_SPARSEMEM_STATIC is not set
85216 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
85217 -CONFIG_SPLIT_PTLOCK_CPUS=4
85218 -# CONFIG_RESOURCES_64BIT is not set
85219 -CONFIG_ZONE_DMA_FLAG=1
85220 -CONFIG_BOUNCE=y
85221 -CONFIG_VIRT_TO_BUS=y
85222 -# CONFIG_PROC_DEVICETREE is not set
85223 -# CONFIG_CMDLINE_BOOL is not set
85224 -# CONFIG_PM is not set
85225 -CONFIG_SECCOMP=y
85226 -CONFIG_ISA_DMA_API=y
85227 -
85228 -#
85229 -# Bus options
85230 -#
85231 -CONFIG_ZONE_DMA=y
85232 -CONFIG_PPC_INDIRECT_PCI=y
85233 -CONFIG_FSL_SOC=y
85234 -CONFIG_FSL_PCI=y
85235 -CONFIG_PCI=y
85236 -CONFIG_PCI_DOMAINS=y
85237 -CONFIG_PCI_SYSCALL=y
85238 -# CONFIG_PCIEPORTBUS is not set
85239 -CONFIG_ARCH_SUPPORTS_MSI=y
85240 -# CONFIG_PCI_MSI is not set
85241 -CONFIG_PCI_LEGACY=y
85242 -
85243 -#
85244 -# Advanced setup
85245 -#
85246 -# CONFIG_ADVANCED_OPTIONS is not set
85247 -
85248 -#
85249 -# Default settings for advanced configuration options are used
85250 -#
85251 -CONFIG_HIGHMEM_START=0xfe000000
85252 -CONFIG_LOWMEM_SIZE=0x30000000
85253 -CONFIG_KERNEL_START=0xc0000000
85254 -CONFIG_TASK_SIZE=0xc0000000
85255 -CONFIG_BOOT_LOAD=0x00800000
85256 -
85257 -#
85258 -# Networking
85259 -#
85260 -CONFIG_NET=y
85261 -
85262 -#
85263 -# Networking options
85264 -#
85265 -CONFIG_PACKET=y
85266 -# CONFIG_PACKET_MMAP is not set
85267 -CONFIG_UNIX=y
85268 -CONFIG_XFRM=y
85269 -# CONFIG_XFRM_USER is not set
85270 -# CONFIG_XFRM_SUB_POLICY is not set
85271 -# CONFIG_XFRM_MIGRATE is not set
85272 -# CONFIG_XFRM_STATISTICS is not set
85273 -# CONFIG_NET_KEY is not set
85274 -CONFIG_INET=y
85275 -CONFIG_IP_MULTICAST=y
85276 -# CONFIG_IP_ADVANCED_ROUTER is not set
85277 -CONFIG_IP_FIB_HASH=y
85278 -CONFIG_IP_PNP=y
85279 -CONFIG_IP_PNP_DHCP=y
85280 -CONFIG_IP_PNP_BOOTP=y
85281 -# CONFIG_IP_PNP_RARP is not set
85282 -# CONFIG_NET_IPIP is not set
85283 -# CONFIG_NET_IPGRE is not set
85284 -# CONFIG_IP_MROUTE is not set
85285 -# CONFIG_ARPD is not set
85286 -CONFIG_SYN_COOKIES=y
85287 -# CONFIG_INET_AH is not set
85288 -# CONFIG_INET_ESP is not set
85289 -# CONFIG_INET_IPCOMP is not set
85290 -# CONFIG_INET_XFRM_TUNNEL is not set
85291 -# CONFIG_INET_TUNNEL is not set
85292 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
85293 -CONFIG_INET_XFRM_MODE_TUNNEL=y
85294 -CONFIG_INET_XFRM_MODE_BEET=y
85295 -# CONFIG_INET_LRO is not set
85296 -CONFIG_INET_DIAG=y
85297 -CONFIG_INET_TCP_DIAG=y
85298 -# CONFIG_TCP_CONG_ADVANCED is not set
85299 -CONFIG_TCP_CONG_CUBIC=y
85300 -CONFIG_DEFAULT_TCP_CONG="cubic"
85301 -# CONFIG_TCP_MD5SIG is not set
85302 -# CONFIG_IPV6 is not set
85303 -# CONFIG_INET6_XFRM_TUNNEL is not set
85304 -# CONFIG_INET6_TUNNEL is not set
85305 -# CONFIG_NETWORK_SECMARK is not set
85306 -# CONFIG_NETFILTER is not set
85307 -# CONFIG_IP_DCCP is not set
85308 -# CONFIG_IP_SCTP is not set
85309 -# CONFIG_TIPC is not set
85310 -# CONFIG_ATM is not set
85311 -# CONFIG_BRIDGE is not set
85312 -# CONFIG_VLAN_8021Q is not set
85313 -# CONFIG_DECNET is not set
85314 -# CONFIG_LLC2 is not set
85315 -# CONFIG_IPX is not set
85316 -# CONFIG_ATALK is not set
85317 -# CONFIG_X25 is not set
85318 -# CONFIG_LAPB is not set
85319 -# CONFIG_ECONET is not set
85320 -# CONFIG_WAN_ROUTER is not set
85321 -# CONFIG_NET_SCHED is not set
85322 -
85323 -#
85324 -# Network testing
85325 -#
85326 -# CONFIG_NET_PKTGEN is not set
85327 -# CONFIG_HAMRADIO is not set
85328 -# CONFIG_CAN is not set
85329 -# CONFIG_IRDA is not set
85330 -# CONFIG_BT is not set
85331 -# CONFIG_AF_RXRPC is not set
85332 -
85333 -#
85334 -# Wireless
85335 -#
85336 -# CONFIG_CFG80211 is not set
85337 -# CONFIG_WIRELESS_EXT is not set
85338 -# CONFIG_MAC80211 is not set
85339 -# CONFIG_IEEE80211 is not set
85340 -# CONFIG_RFKILL is not set
85341 -# CONFIG_NET_9P is not set
85342 -
85343 -#
85344 -# Device Drivers
85345 -#
85346 -
85347 -#
85348 -# Generic Driver Options
85349 -#
85350 -CONFIG_STANDALONE=y
85351 -CONFIG_PREVENT_FIRMWARE_BUILD=y
85352 -# CONFIG_SYS_HYPERVISOR is not set
85353 -# CONFIG_CONNECTOR is not set
85354 -CONFIG_MTD=y
85355 -# CONFIG_MTD_DEBUG is not set
85356 -CONFIG_MTD_CONCAT=y
85357 -CONFIG_MTD_PARTITIONS=y
85358 -# CONFIG_MTD_REDBOOT_PARTS is not set
85359 -CONFIG_MTD_CMDLINE_PARTS=y
85360 -# CONFIG_MTD_OF_PARTS is not set
85361 -
85362 -#
85363 -# User Modules And Translation Layers
85364 -#
85365 -CONFIG_MTD_CHAR=y
85366 -CONFIG_MTD_BLKDEVS=y
85367 -CONFIG_MTD_BLOCK=y
85368 -# CONFIG_FTL is not set
85369 -# CONFIG_NFTL is not set
85370 -# CONFIG_INFTL is not set
85371 -# CONFIG_RFD_FTL is not set
85372 -# CONFIG_SSFDC is not set
85373 -# CONFIG_MTD_OOPS is not set
85374 -
85375 -#
85376 -# RAM/ROM/Flash chip drivers
85377 -#
85378 -CONFIG_MTD_CFI=y
85379 -# CONFIG_MTD_JEDECPROBE is not set
85380 -CONFIG_MTD_GEN_PROBE=y
85381 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
85382 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
85383 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
85384 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
85385 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
85386 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
85387 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
85388 -CONFIG_MTD_CFI_I1=y
85389 -CONFIG_MTD_CFI_I2=y
85390 -# CONFIG_MTD_CFI_I4 is not set
85391 -# CONFIG_MTD_CFI_I8 is not set
85392 -# CONFIG_MTD_CFI_INTELEXT is not set
85393 -CONFIG_MTD_CFI_AMDSTD=y
85394 -# CONFIG_MTD_CFI_STAA is not set
85395 -CONFIG_MTD_CFI_UTIL=y
85396 -# CONFIG_MTD_RAM is not set
85397 -# CONFIG_MTD_ROM is not set
85398 -# CONFIG_MTD_ABSENT is not set
85399 -
85400 -#
85401 -# Mapping drivers for chip access
85402 -#
85403 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
85404 -# CONFIG_MTD_PHYSMAP is not set
85405 -# CONFIG_MTD_PHYSMAP_OF is not set
85406 -# CONFIG_MTD_INTEL_VR_NOR is not set
85407 -# CONFIG_MTD_PLATRAM is not set
85408 -
85409 -#
85410 -# Self-contained MTD device drivers
85411 -#
85412 -# CONFIG_MTD_PMC551 is not set
85413 -# CONFIG_MTD_SLRAM is not set
85414 -# CONFIG_MTD_PHRAM is not set
85415 -# CONFIG_MTD_MTDRAM is not set
85416 -# CONFIG_MTD_BLOCK2MTD is not set
85417 -
85418 -#
85419 -# Disk-On-Chip Device Drivers
85420 -#
85421 -# CONFIG_MTD_DOC2000 is not set
85422 -# CONFIG_MTD_DOC2001 is not set
85423 -# CONFIG_MTD_DOC2001PLUS is not set
85424 -# CONFIG_MTD_NAND is not set
85425 -# CONFIG_MTD_ONENAND is not set
85426 -
85427 -#
85428 -# UBI - Unsorted block images
85429 -#
85430 -# CONFIG_MTD_UBI is not set
85431 -CONFIG_OF_DEVICE=y
85432 -# CONFIG_PARPORT is not set
85433 -CONFIG_BLK_DEV=y
85434 -# CONFIG_BLK_DEV_FD is not set
85435 -# CONFIG_BLK_CPQ_DA is not set
85436 -# CONFIG_BLK_CPQ_CISS_DA is not set
85437 -# CONFIG_BLK_DEV_DAC960 is not set
85438 -# CONFIG_BLK_DEV_UMEM is not set
85439 -# CONFIG_BLK_DEV_COW_COMMON is not set
85440 -CONFIG_BLK_DEV_LOOP=y
85441 -# CONFIG_BLK_DEV_CRYPTOLOOP is not set
85442 -# CONFIG_BLK_DEV_NBD is not set
85443 -# CONFIG_BLK_DEV_SX8 is not set
85444 -CONFIG_BLK_DEV_RAM=y
85445 -CONFIG_BLK_DEV_RAM_COUNT=16
85446 -CONFIG_BLK_DEV_RAM_SIZE=32768
85447 -# CONFIG_BLK_DEV_XIP is not set
85448 -# CONFIG_CDROM_PKTCDVD is not set
85449 -# CONFIG_ATA_OVER_ETH is not set
85450 -CONFIG_MISC_DEVICES=y
85451 -# CONFIG_PHANTOM is not set
85452 -# CONFIG_EEPROM_93CX6 is not set
85453 -# CONFIG_SGI_IOC4 is not set
85454 -# CONFIG_TIFM_CORE is not set
85455 -# CONFIG_ENCLOSURE_SERVICES is not set
85456 -CONFIG_HAVE_IDE=y
85457 -CONFIG_IDE=y
85458 -CONFIG_IDE_MAX_HWIFS=4
85459 -CONFIG_BLK_DEV_IDE=y
85460 -
85461 -#
85462 -# Please see Documentation/ide/ide.txt for help/info on IDE drives
85463 -#
85464 -# CONFIG_BLK_DEV_IDE_SATA is not set
85465 -CONFIG_BLK_DEV_IDEDISK=y
85466 -# CONFIG_IDEDISK_MULTI_MODE is not set
85467 -# CONFIG_BLK_DEV_IDECD is not set
85468 -# CONFIG_BLK_DEV_IDETAPE is not set
85469 -# CONFIG_BLK_DEV_IDEFLOPPY is not set
85470 -# CONFIG_IDE_TASK_IOCTL is not set
85471 -CONFIG_IDE_PROC_FS=y
85472 -
85473 -#
85474 -# IDE chipset support/bugfixes
85475 -#
85476 -CONFIG_IDE_GENERIC=y
85477 -# CONFIG_BLK_DEV_PLATFORM is not set
85478 -CONFIG_BLK_DEV_IDEDMA_SFF=y
85479 -
85480 -#
85481 -# PCI IDE chipsets support
85482 -#
85483 -CONFIG_BLK_DEV_IDEPCI=y
85484 -CONFIG_IDEPCI_PCIBUS_ORDER=y
85485 -# CONFIG_BLK_DEV_OFFBOARD is not set
85486 -CONFIG_BLK_DEV_GENERIC=y
85487 -# CONFIG_BLK_DEV_OPTI621 is not set
85488 -CONFIG_BLK_DEV_IDEDMA_PCI=y
85489 -# CONFIG_BLK_DEV_AEC62XX is not set
85490 -# CONFIG_BLK_DEV_ALI15X3 is not set
85491 -# CONFIG_BLK_DEV_AMD74XX is not set
85492 -# CONFIG_BLK_DEV_CMD64X is not set
85493 -# CONFIG_BLK_DEV_TRIFLEX is not set
85494 -# CONFIG_BLK_DEV_CY82C693 is not set
85495 -# CONFIG_BLK_DEV_CS5520 is not set
85496 -# CONFIG_BLK_DEV_CS5530 is not set
85497 -# CONFIG_BLK_DEV_HPT34X is not set
85498 -# CONFIG_BLK_DEV_HPT366 is not set
85499 -# CONFIG_BLK_DEV_JMICRON is not set
85500 -# CONFIG_BLK_DEV_SC1200 is not set
85501 -# CONFIG_BLK_DEV_PIIX is not set
85502 -# CONFIG_BLK_DEV_IT8213 is not set
85503 -# CONFIG_BLK_DEV_IT821X is not set
85504 -# CONFIG_BLK_DEV_NS87415 is not set
85505 -# CONFIG_BLK_DEV_PDC202XX_OLD is not set
85506 -# CONFIG_BLK_DEV_PDC202XX_NEW is not set
85507 -# CONFIG_BLK_DEV_SVWKS is not set
85508 -# CONFIG_BLK_DEV_SIIMAGE is not set
85509 -# CONFIG_BLK_DEV_SL82C105 is not set
85510 -# CONFIG_BLK_DEV_SLC90E66 is not set
85511 -# CONFIG_BLK_DEV_TRM290 is not set
85512 -CONFIG_BLK_DEV_VIA82CXXX=y
85513 -# CONFIG_BLK_DEV_TC86C001 is not set
85514 -CONFIG_BLK_DEV_IDEDMA=y
85515 -CONFIG_IDE_ARCH_OBSOLETE_INIT=y
85516 -# CONFIG_BLK_DEV_HD is not set
85517 -
85518 -#
85519 -# SCSI device support
85520 -#
85521 -# CONFIG_RAID_ATTRS is not set
85522 -# CONFIG_SCSI is not set
85523 -# CONFIG_SCSI_DMA is not set
85524 -# CONFIG_SCSI_NETLINK is not set
85525 -# CONFIG_ATA is not set
85526 -# CONFIG_MD is not set
85527 -# CONFIG_FUSION is not set
85528 -
85529 -#
85530 -# IEEE 1394 (FireWire) support
85531 -#
85532 -# CONFIG_FIREWIRE is not set
85533 -# CONFIG_IEEE1394 is not set
85534 -# CONFIG_I2O is not set
85535 -# CONFIG_MACINTOSH_DRIVERS is not set
85536 -CONFIG_NETDEVICES=y
85537 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
85538 -# CONFIG_DUMMY is not set
85539 -# CONFIG_BONDING is not set
85540 -# CONFIG_MACVLAN is not set
85541 -# CONFIG_EQUALIZER is not set
85542 -# CONFIG_TUN is not set
85543 -# CONFIG_VETH is not set
85544 -# CONFIG_ARCNET is not set
85545 -CONFIG_PHYLIB=y
85546 -
85547 -#
85548 -# MII PHY device drivers
85549 -#
85550 -# CONFIG_MARVELL_PHY is not set
85551 -# CONFIG_DAVICOM_PHY is not set
85552 -# CONFIG_QSEMI_PHY is not set
85553 -# CONFIG_LXT_PHY is not set
85554 -# CONFIG_CICADA_PHY is not set
85555 -# CONFIG_VITESSE_PHY is not set
85556 -# CONFIG_SMSC_PHY is not set
85557 -# CONFIG_BROADCOM_PHY is not set
85558 -# CONFIG_ICPLUS_PHY is not set
85559 -# CONFIG_REALTEK_PHY is not set
85560 -# CONFIG_FIXED_PHY is not set
85561 -# CONFIG_MDIO_BITBANG is not set
85562 -CONFIG_NET_ETHERNET=y
85563 -CONFIG_MII=y
85564 -# CONFIG_HAPPYMEAL is not set
85565 -# CONFIG_SUNGEM is not set
85566 -# CONFIG_CASSINI is not set
85567 -# CONFIG_NET_VENDOR_3COM is not set
85568 -# CONFIG_NET_TULIP is not set
85569 -# CONFIG_HP100 is not set
85570 -# CONFIG_IBM_NEW_EMAC_ZMII is not set
85571 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
85572 -# CONFIG_IBM_NEW_EMAC_TAH is not set
85573 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
85574 -CONFIG_NET_PCI=y
85575 -# CONFIG_PCNET32 is not set
85576 -# CONFIG_AMD8111_ETH is not set
85577 -# CONFIG_ADAPTEC_STARFIRE is not set
85578 -# CONFIG_B44 is not set
85579 -# CONFIG_FORCEDETH is not set
85580 -# CONFIG_EEPRO100 is not set
85581 -CONFIG_E100=y
85582 -# CONFIG_FEALNX is not set
85583 -# CONFIG_NATSEMI is not set
85584 -# CONFIG_NE2K_PCI is not set
85585 -# CONFIG_8139CP is not set
85586 -# CONFIG_8139TOO is not set
85587 -# CONFIG_R6040 is not set
85588 -# CONFIG_SIS900 is not set
85589 -# CONFIG_EPIC100 is not set
85590 -# CONFIG_SUNDANCE is not set
85591 -# CONFIG_TLAN is not set
85592 -# CONFIG_VIA_RHINE is not set
85593 -# CONFIG_SC92031 is not set
85594 -# CONFIG_FS_ENET is not set
85595 -CONFIG_NETDEV_1000=y
85596 -# CONFIG_ACENIC is not set
85597 -# CONFIG_DL2K is not set
85598 -# CONFIG_E1000 is not set
85599 -# CONFIG_E1000E is not set
85600 -# CONFIG_E1000E_ENABLED is not set
85601 -# CONFIG_IP1000 is not set
85602 -# CONFIG_IGB is not set
85603 -# CONFIG_NS83820 is not set
85604 -# CONFIG_HAMACHI is not set
85605 -# CONFIG_YELLOWFIN is not set
85606 -# CONFIG_R8169 is not set
85607 -# CONFIG_SIS190 is not set
85608 -# CONFIG_SKGE is not set
85609 -# CONFIG_SKY2 is not set
85610 -# CONFIG_SK98LIN is not set
85611 -# CONFIG_VIA_VELOCITY is not set
85612 -# CONFIG_TIGON3 is not set
85613 -# CONFIG_BNX2 is not set
85614 -CONFIG_GIANFAR=y
85615 -CONFIG_GFAR_NAPI=y
85616 -# CONFIG_QLA3XXX is not set
85617 -# CONFIG_ATL1 is not set
85618 -CONFIG_NETDEV_10000=y
85619 -# CONFIG_CHELSIO_T1 is not set
85620 -# CONFIG_CHELSIO_T3 is not set
85621 -# CONFIG_IXGBE is not set
85622 -# CONFIG_IXGB is not set
85623 -# CONFIG_S2IO is not set
85624 -# CONFIG_MYRI10GE is not set
85625 -# CONFIG_NETXEN_NIC is not set
85626 -# CONFIG_NIU is not set
85627 -# CONFIG_MLX4_CORE is not set
85628 -# CONFIG_TEHUTI is not set
85629 -# CONFIG_BNX2X is not set
85630 -# CONFIG_TR is not set
85631 -
85632 -#
85633 -# Wireless LAN
85634 -#
85635 -# CONFIG_WLAN_PRE80211 is not set
85636 -# CONFIG_WLAN_80211 is not set
85637 -# CONFIG_WAN is not set
85638 -# CONFIG_FDDI is not set
85639 -# CONFIG_HIPPI is not set
85640 -# CONFIG_PPP is not set
85641 -# CONFIG_SLIP is not set
85642 -# CONFIG_NETCONSOLE is not set
85643 -# CONFIG_NETPOLL is not set
85644 -# CONFIG_NET_POLL_CONTROLLER is not set
85645 -# CONFIG_ISDN is not set
85646 -# CONFIG_PHONE is not set
85647 -
85648 -#
85649 -# Input device support
85650 -#
85651 -CONFIG_INPUT=y
85652 -# CONFIG_INPUT_FF_MEMLESS is not set
85653 -# CONFIG_INPUT_POLLDEV is not set
85654 -
85655 -#
85656 -# Userland interfaces
85657 -#
85658 -# CONFIG_INPUT_MOUSEDEV is not set
85659 -# CONFIG_INPUT_JOYDEV is not set
85660 -# CONFIG_INPUT_EVDEV is not set
85661 -# CONFIG_INPUT_EVBUG is not set
85662 -
85663 -#
85664 -# Input Device Drivers
85665 -#
85666 -# CONFIG_INPUT_KEYBOARD is not set
85667 -# CONFIG_INPUT_MOUSE is not set
85668 -# CONFIG_INPUT_JOYSTICK is not set
85669 -# CONFIG_INPUT_TABLET is not set
85670 -# CONFIG_INPUT_TOUCHSCREEN is not set
85671 -# CONFIG_INPUT_MISC is not set
85672 -
85673 -#
85674 -# Hardware I/O ports
85675 -#
85676 -# CONFIG_SERIO is not set
85677 -# CONFIG_GAMEPORT is not set
85678 -
85679 -#
85680 -# Character devices
85681 -#
85682 -# CONFIG_VT is not set
85683 -# CONFIG_SERIAL_NONSTANDARD is not set
85684 -# CONFIG_NOZOMI is not set
85685 -
85686 -#
85687 -# Serial drivers
85688 -#
85689 -CONFIG_SERIAL_8250=y
85690 -CONFIG_SERIAL_8250_CONSOLE=y
85691 -CONFIG_SERIAL_8250_PCI=y
85692 -CONFIG_SERIAL_8250_NR_UARTS=4
85693 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
85694 -# CONFIG_SERIAL_8250_EXTENDED is not set
85695 -CONFIG_SERIAL_8250_SHARE_IRQ=y
85696 -
85697 -#
85698 -# Non-8250 serial port support
85699 -#
85700 -# CONFIG_SERIAL_UARTLITE is not set
85701 -CONFIG_SERIAL_CORE=y
85702 -CONFIG_SERIAL_CORE_CONSOLE=y
85703 -CONFIG_SERIAL_CPM=y
85704 -CONFIG_SERIAL_CPM_CONSOLE=y
85705 -CONFIG_SERIAL_CPM_SCC1=y
85706 -# CONFIG_SERIAL_CPM_SCC2 is not set
85707 -# CONFIG_SERIAL_CPM_SCC3 is not set
85708 -# CONFIG_SERIAL_CPM_SCC4 is not set
85709 -# CONFIG_SERIAL_CPM_SMC1 is not set
85710 -# CONFIG_SERIAL_CPM_SMC2 is not set
85711 -# CONFIG_SERIAL_JSM is not set
85712 -# CONFIG_SERIAL_OF_PLATFORM is not set
85713 -CONFIG_UNIX98_PTYS=y
85714 -CONFIG_LEGACY_PTYS=y
85715 -CONFIG_LEGACY_PTY_COUNT=256
85716 -# CONFIG_IPMI_HANDLER is not set
85717 -CONFIG_HW_RANDOM=y
85718 -# CONFIG_NVRAM is not set
85719 -CONFIG_GEN_RTC=y
85720 -# CONFIG_GEN_RTC_X is not set
85721 -# CONFIG_R3964 is not set
85722 -# CONFIG_APPLICOM is not set
85723 -# CONFIG_RAW_DRIVER is not set
85724 -# CONFIG_TCG_TPM is not set
85725 -CONFIG_DEVPORT=y
85726 -CONFIG_I2C=y
85727 -CONFIG_I2C_BOARDINFO=y
85728 -CONFIG_I2C_CHARDEV=y
85729 -
85730 -#
85731 -# I2C Algorithms
85732 -#
85733 -# CONFIG_I2C_ALGOBIT is not set
85734 -# CONFIG_I2C_ALGOPCF is not set
85735 -# CONFIG_I2C_ALGOPCA is not set
85736 -
85737 -#
85738 -# I2C Hardware Bus support
85739 -#
85740 -# CONFIG_I2C_ALI1535 is not set
85741 -# CONFIG_I2C_ALI1563 is not set
85742 -# CONFIG_I2C_ALI15X3 is not set
85743 -# CONFIG_I2C_AMD756 is not set
85744 -# CONFIG_I2C_AMD8111 is not set
85745 -# CONFIG_I2C_I801 is not set
85746 -# CONFIG_I2C_I810 is not set
85747 -# CONFIG_I2C_PIIX4 is not set
85748 -CONFIG_I2C_MPC=y
85749 -# CONFIG_I2C_NFORCE2 is not set
85750 -# CONFIG_I2C_OCORES is not set
85751 -# CONFIG_I2C_PARPORT_LIGHT is not set
85752 -# CONFIG_I2C_PROSAVAGE is not set
85753 -# CONFIG_I2C_SAVAGE4 is not set
85754 -# CONFIG_I2C_SIMTEC is not set
85755 -# CONFIG_I2C_SIS5595 is not set
85756 -# CONFIG_I2C_SIS630 is not set
85757 -# CONFIG_I2C_SIS96X is not set
85758 -# CONFIG_I2C_TAOS_EVM is not set
85759 -# CONFIG_I2C_VIA is not set
85760 -# CONFIG_I2C_VIAPRO is not set
85761 -# CONFIG_I2C_VOODOO3 is not set
85762 -
85763 -#
85764 -# Miscellaneous I2C Chip support
85765 -#
85766 -# CONFIG_DS1682 is not set
85767 -# CONFIG_SENSORS_EEPROM is not set
85768 -# CONFIG_SENSORS_PCF8574 is not set
85769 -# CONFIG_PCF8575 is not set
85770 -# CONFIG_SENSORS_PCF8591 is not set
85771 -# CONFIG_TPS65010 is not set
85772 -# CONFIG_SENSORS_MAX6875 is not set
85773 -# CONFIG_SENSORS_TSL2550 is not set
85774 -# CONFIG_I2C_DEBUG_CORE is not set
85775 -# CONFIG_I2C_DEBUG_ALGO is not set
85776 -# CONFIG_I2C_DEBUG_BUS is not set
85777 -# CONFIG_I2C_DEBUG_CHIP is not set
85778 -
85779 -#
85780 -# SPI support
85781 -#
85782 -# CONFIG_SPI is not set
85783 -# CONFIG_SPI_MASTER is not set
85784 -# CONFIG_W1 is not set
85785 -# CONFIG_POWER_SUPPLY is not set
85786 -CONFIG_HWMON=y
85787 -# CONFIG_HWMON_VID is not set
85788 -# CONFIG_SENSORS_AD7418 is not set
85789 -# CONFIG_SENSORS_ADM1021 is not set
85790 -# CONFIG_SENSORS_ADM1025 is not set
85791 -# CONFIG_SENSORS_ADM1026 is not set
85792 -# CONFIG_SENSORS_ADM1029 is not set
85793 -# CONFIG_SENSORS_ADM1031 is not set
85794 -# CONFIG_SENSORS_ADM9240 is not set
85795 -# CONFIG_SENSORS_ADT7470 is not set
85796 -# CONFIG_SENSORS_ADT7473 is not set
85797 -# CONFIG_SENSORS_ATXP1 is not set
85798 -# CONFIG_SENSORS_DS1621 is not set
85799 -# CONFIG_SENSORS_I5K_AMB is not set
85800 -# CONFIG_SENSORS_F71805F is not set
85801 -# CONFIG_SENSORS_F71882FG is not set
85802 -# CONFIG_SENSORS_F75375S is not set
85803 -# CONFIG_SENSORS_GL518SM is not set
85804 -# CONFIG_SENSORS_GL520SM is not set
85805 -# CONFIG_SENSORS_IT87 is not set
85806 -# CONFIG_SENSORS_LM63 is not set
85807 -CONFIG_SENSORS_LM75=y
85808 -# CONFIG_SENSORS_LM77 is not set
85809 -# CONFIG_SENSORS_LM78 is not set
85810 -# CONFIG_SENSORS_LM80 is not set
85811 -# CONFIG_SENSORS_LM83 is not set
85812 -# CONFIG_SENSORS_LM85 is not set
85813 -# CONFIG_SENSORS_LM87 is not set
85814 -# CONFIG_SENSORS_LM90 is not set
85815 -# CONFIG_SENSORS_LM92 is not set
85816 -# CONFIG_SENSORS_LM93 is not set
85817 -# CONFIG_SENSORS_MAX1619 is not set
85818 -# CONFIG_SENSORS_MAX6650 is not set
85819 -# CONFIG_SENSORS_PC87360 is not set
85820 -# CONFIG_SENSORS_PC87427 is not set
85821 -# CONFIG_SENSORS_SIS5595 is not set
85822 -# CONFIG_SENSORS_DME1737 is not set
85823 -# CONFIG_SENSORS_SMSC47M1 is not set
85824 -# CONFIG_SENSORS_SMSC47M192 is not set
85825 -# CONFIG_SENSORS_SMSC47B397 is not set
85826 -# CONFIG_SENSORS_ADS7828 is not set
85827 -# CONFIG_SENSORS_THMC50 is not set
85828 -# CONFIG_SENSORS_VIA686A is not set
85829 -# CONFIG_SENSORS_VT1211 is not set
85830 -# CONFIG_SENSORS_VT8231 is not set
85831 -# CONFIG_SENSORS_W83781D is not set
85832 -# CONFIG_SENSORS_W83791D is not set
85833 -# CONFIG_SENSORS_W83792D is not set
85834 -# CONFIG_SENSORS_W83793 is not set
85835 -# CONFIG_SENSORS_W83L785TS is not set
85836 -# CONFIG_SENSORS_W83L786NG is not set
85837 -# CONFIG_SENSORS_W83627HF is not set
85838 -# CONFIG_SENSORS_W83627EHF is not set
85839 -CONFIG_HWMON_DEBUG_CHIP=y
85840 -# CONFIG_THERMAL is not set
85841 -# CONFIG_WATCHDOG is not set
85842 -
85843 -#
85844 -# Sonics Silicon Backplane
85845 -#
85846 -CONFIG_SSB_POSSIBLE=y
85847 -# CONFIG_SSB is not set
85848 -
85849 -#
85850 -# Multifunction device drivers
85851 -#
85852 -# CONFIG_MFD_SM501 is not set
85853 -
85854 -#
85855 -# Multimedia devices
85856 -#
85857 -# CONFIG_VIDEO_DEV is not set
85858 -# CONFIG_DVB_CORE is not set
85859 -CONFIG_DAB=y
85860 -
85861 -#
85862 -# Graphics support
85863 -#
85864 -# CONFIG_AGP is not set
85865 -# CONFIG_DRM is not set
85866 -# CONFIG_VGASTATE is not set
85867 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
85868 -# CONFIG_FB is not set
85869 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
85870 -
85871 -#
85872 -# Display device support
85873 -#
85874 -# CONFIG_DISPLAY_SUPPORT is not set
85875 -
85876 -#
85877 -# Sound
85878 -#
85879 -# CONFIG_SOUND is not set
85880 -CONFIG_HID_SUPPORT=y
85881 -CONFIG_HID=y
85882 -# CONFIG_HID_DEBUG is not set
85883 -# CONFIG_HIDRAW is not set
85884 -CONFIG_USB_SUPPORT=y
85885 -CONFIG_USB_ARCH_HAS_HCD=y
85886 -CONFIG_USB_ARCH_HAS_OHCI=y
85887 -CONFIG_USB_ARCH_HAS_EHCI=y
85888 -# CONFIG_USB is not set
85889 -
85890 -#
85891 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
85892 -#
85893 -# CONFIG_USB_GADGET is not set
85894 -# CONFIG_MMC is not set
85895 -# CONFIG_MEMSTICK is not set
85896 -# CONFIG_NEW_LEDS is not set
85897 -# CONFIG_INFINIBAND is not set
85898 -# CONFIG_EDAC is not set
85899 -# CONFIG_RTC_CLASS is not set
85900 -# CONFIG_DMADEVICES is not set
85901 -
85902 -#
85903 -# Userspace I/O
85904 -#
85905 -# CONFIG_UIO is not set
85906 -
85907 -#
85908 -# File systems
85909 -#
85910 -CONFIG_EXT2_FS=y
85911 -# CONFIG_EXT2_FS_XATTR is not set
85912 -# CONFIG_EXT2_FS_XIP is not set
85913 -CONFIG_EXT3_FS=y
85914 -CONFIG_EXT3_FS_XATTR=y
85915 -# CONFIG_EXT3_FS_POSIX_ACL is not set
85916 -# CONFIG_EXT3_FS_SECURITY is not set
85917 -# CONFIG_EXT4DEV_FS is not set
85918 -CONFIG_JBD=y
85919 -CONFIG_FS_MBCACHE=y
85920 -# CONFIG_REISERFS_FS is not set
85921 -# CONFIG_JFS_FS is not set
85922 -# CONFIG_FS_POSIX_ACL is not set
85923 -# CONFIG_XFS_FS is not set
85924 -# CONFIG_GFS2_FS is not set
85925 -# CONFIG_OCFS2_FS is not set
85926 -CONFIG_DNOTIFY=y
85927 -CONFIG_INOTIFY=y
85928 -CONFIG_INOTIFY_USER=y
85929 -# CONFIG_QUOTA is not set
85930 -# CONFIG_AUTOFS_FS is not set
85931 -# CONFIG_AUTOFS4_FS is not set
85932 -# CONFIG_FUSE_FS is not set
85933 -
85934 -#
85935 -# CD-ROM/DVD Filesystems
85936 -#
85937 -# CONFIG_ISO9660_FS is not set
85938 -# CONFIG_UDF_FS is not set
85939 -
85940 -#
85941 -# DOS/FAT/NT Filesystems
85942 -#
85943 -# CONFIG_MSDOS_FS is not set
85944 -# CONFIG_VFAT_FS is not set
85945 -# CONFIG_NTFS_FS is not set
85946 -
85947 -#
85948 -# Pseudo filesystems
85949 -#
85950 -CONFIG_PROC_FS=y
85951 -CONFIG_PROC_KCORE=y
85952 -CONFIG_PROC_SYSCTL=y
85953 -CONFIG_SYSFS=y
85954 -CONFIG_TMPFS=y
85955 -# CONFIG_TMPFS_POSIX_ACL is not set
85956 -# CONFIG_HUGETLB_PAGE is not set
85957 -# CONFIG_CONFIGFS_FS is not set
85958 -
85959 -#
85960 -# Miscellaneous filesystems
85961 -#
85962 -# CONFIG_ADFS_FS is not set
85963 -# CONFIG_AFFS_FS is not set
85964 -# CONFIG_HFS_FS is not set
85965 -# CONFIG_HFSPLUS_FS is not set
85966 -# CONFIG_BEFS_FS is not set
85967 -# CONFIG_BFS_FS is not set
85968 -# CONFIG_EFS_FS is not set
85969 -CONFIG_JFFS2_FS=y
85970 -CONFIG_JFFS2_FS_DEBUG=0
85971 -CONFIG_JFFS2_FS_WRITEBUFFER=y
85972 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
85973 -# CONFIG_JFFS2_SUMMARY is not set
85974 -# CONFIG_JFFS2_FS_XATTR is not set
85975 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
85976 -CONFIG_JFFS2_ZLIB=y
85977 -# CONFIG_JFFS2_LZO is not set
85978 -CONFIG_JFFS2_RTIME=y
85979 -# CONFIG_JFFS2_RUBIN is not set
85980 -CONFIG_CRAMFS=y
85981 -# CONFIG_VXFS_FS is not set
85982 -# CONFIG_MINIX_FS is not set
85983 -# CONFIG_HPFS_FS is not set
85984 -# CONFIG_QNX4FS_FS is not set
85985 -# CONFIG_ROMFS_FS is not set
85986 -# CONFIG_SYSV_FS is not set
85987 -# CONFIG_UFS_FS is not set
85988 -CONFIG_NETWORK_FILESYSTEMS=y
85989 -CONFIG_NFS_FS=y
85990 -# CONFIG_NFS_V3 is not set
85991 -# CONFIG_NFS_V4 is not set
85992 -# CONFIG_NFS_DIRECTIO is not set
85993 -# CONFIG_NFSD is not set
85994 -CONFIG_ROOT_NFS=y
85995 -CONFIG_LOCKD=y
85996 -CONFIG_NFS_COMMON=y
85997 -CONFIG_SUNRPC=y
85998 -# CONFIG_SUNRPC_BIND34 is not set
85999 -# CONFIG_RPCSEC_GSS_KRB5 is not set
86000 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
86001 -# CONFIG_SMB_FS is not set
86002 -# CONFIG_CIFS is not set
86003 -# CONFIG_NCP_FS is not set
86004 -# CONFIG_CODA_FS is not set
86005 -# CONFIG_AFS_FS is not set
86006 -
86007 -#
86008 -# Partition Types
86009 -#
86010 -CONFIG_PARTITION_ADVANCED=y
86011 -# CONFIG_ACORN_PARTITION is not set
86012 -# CONFIG_OSF_PARTITION is not set
86013 -# CONFIG_AMIGA_PARTITION is not set
86014 -# CONFIG_ATARI_PARTITION is not set
86015 -# CONFIG_MAC_PARTITION is not set
86016 -# CONFIG_MSDOS_PARTITION is not set
86017 -# CONFIG_LDM_PARTITION is not set
86018 -# CONFIG_SGI_PARTITION is not set
86019 -# CONFIG_ULTRIX_PARTITION is not set
86020 -# CONFIG_SUN_PARTITION is not set
86021 -# CONFIG_KARMA_PARTITION is not set
86022 -# CONFIG_EFI_PARTITION is not set
86023 -# CONFIG_SYSV68_PARTITION is not set
86024 -# CONFIG_NLS is not set
86025 -# CONFIG_DLM is not set
86026 -
86027 -#
86028 -# Library routines
86029 -#
86030 -CONFIG_BITREVERSE=y
86031 -# CONFIG_CRC_CCITT is not set
86032 -# CONFIG_CRC16 is not set
86033 -# CONFIG_CRC_ITU_T is not set
86034 -CONFIG_CRC32=y
86035 -# CONFIG_CRC7 is not set
86036 -# CONFIG_LIBCRC32C is not set
86037 -CONFIG_ZLIB_INFLATE=y
86038 -CONFIG_ZLIB_DEFLATE=y
86039 -CONFIG_PLIST=y
86040 -CONFIG_HAS_IOMEM=y
86041 -CONFIG_HAS_IOPORT=y
86042 -CONFIG_HAS_DMA=y
86043 -
86044 -#
86045 -# Kernel hacking
86046 -#
86047 -# CONFIG_PRINTK_TIME is not set
86048 -CONFIG_ENABLE_WARN_DEPRECATED=y
86049 -CONFIG_ENABLE_MUST_CHECK=y
86050 -# CONFIG_MAGIC_SYSRQ is not set
86051 -# CONFIG_UNUSED_SYMBOLS is not set
86052 -# CONFIG_DEBUG_FS is not set
86053 -# CONFIG_HEADERS_CHECK is not set
86054 -# CONFIG_DEBUG_KERNEL is not set
86055 -# CONFIG_SLUB_DEBUG_ON is not set
86056 -# CONFIG_SLUB_STATS is not set
86057 -# CONFIG_DEBUG_BUGVERBOSE is not set
86058 -# CONFIG_SAMPLES is not set
86059 -# CONFIG_KGDB_CONSOLE is not set
86060 -# CONFIG_PPC_EARLY_DEBUG is not set
86061 -
86062 -#
86063 -# Security options
86064 -#
86065 -# CONFIG_KEYS is not set
86066 -# CONFIG_SECURITY is not set
86067 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
86068 -CONFIG_CRYPTO=y
86069 -# CONFIG_CRYPTO_SEQIV is not set
86070 -# CONFIG_CRYPTO_MANAGER is not set
86071 -# CONFIG_CRYPTO_HMAC is not set
86072 -# CONFIG_CRYPTO_XCBC is not set
86073 -# CONFIG_CRYPTO_NULL is not set
86074 -# CONFIG_CRYPTO_MD4 is not set
86075 -# CONFIG_CRYPTO_MD5 is not set
86076 -# CONFIG_CRYPTO_SHA1 is not set
86077 -# CONFIG_CRYPTO_SHA256 is not set
86078 -# CONFIG_CRYPTO_SHA512 is not set
86079 -# CONFIG_CRYPTO_WP512 is not set
86080 -# CONFIG_CRYPTO_TGR192 is not set
86081 -# CONFIG_CRYPTO_GF128MUL is not set
86082 -# CONFIG_CRYPTO_ECB is not set
86083 -# CONFIG_CRYPTO_CBC is not set
86084 -# CONFIG_CRYPTO_PCBC is not set
86085 -# CONFIG_CRYPTO_LRW is not set
86086 -# CONFIG_CRYPTO_XTS is not set
86087 -# CONFIG_CRYPTO_CTR is not set
86088 -# CONFIG_CRYPTO_GCM is not set
86089 -# CONFIG_CRYPTO_CCM is not set
86090 -# CONFIG_CRYPTO_CRYPTD is not set
86091 -# CONFIG_CRYPTO_DES is not set
86092 -# CONFIG_CRYPTO_FCRYPT is not set
86093 -# CONFIG_CRYPTO_BLOWFISH is not set
86094 -# CONFIG_CRYPTO_TWOFISH is not set
86095 -# CONFIG_CRYPTO_SERPENT is not set
86096 -# CONFIG_CRYPTO_AES is not set
86097 -# CONFIG_CRYPTO_CAST5 is not set
86098 -# CONFIG_CRYPTO_CAST6 is not set
86099 -# CONFIG_CRYPTO_TEA is not set
86100 -# CONFIG_CRYPTO_ARC4 is not set
86101 -# CONFIG_CRYPTO_KHAZAD is not set
86102 -# CONFIG_CRYPTO_ANUBIS is not set
86103 -# CONFIG_CRYPTO_SEED is not set
86104 -# CONFIG_CRYPTO_SALSA20 is not set
86105 -# CONFIG_CRYPTO_DEFLATE is not set
86106 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
86107 -# CONFIG_CRYPTO_CRC32C is not set
86108 -# CONFIG_CRYPTO_CAMELLIA is not set
86109 -# CONFIG_CRYPTO_AUTHENC is not set
86110 -# CONFIG_CRYPTO_LZO is not set
86111 -CONFIG_CRYPTO_HW=y
86112 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
86113 -# CONFIG_PPC_CLOCK is not set
86114 -CONFIG_PPC_LIB_RHEAP=y
86115 Index: linux-2.6.25.4/arch/powerpc/configs/walnut_defconfig
86116 ===================================================================
86117 --- linux-2.6.25.4.orig/arch/powerpc/configs/walnut_defconfig
86118 +++ /dev/null
86119 @@ -1,887 +0,0 @@
86120 -#
86121 -# Automatically generated make config: don't edit
86122 -# Linux kernel version: 2.6.25-rc2
86123 -# Fri Feb 15 21:54:12 2008
86124 -#
86125 -# CONFIG_PPC64 is not set
86126 -
86127 -#
86128 -# Processor support
86129 -#
86130 -# CONFIG_6xx is not set
86131 -# CONFIG_PPC_85xx is not set
86132 -# CONFIG_PPC_8xx is not set
86133 -CONFIG_40x=y
86134 -# CONFIG_44x is not set
86135 -# CONFIG_E200 is not set
86136 -CONFIG_4xx=y
86137 -# CONFIG_PPC_MM_SLICES is not set
86138 -CONFIG_NOT_COHERENT_CACHE=y
86139 -CONFIG_PPC32=y
86140 -CONFIG_WORD_SIZE=32
86141 -CONFIG_PPC_MERGE=y
86142 -CONFIG_MMU=y
86143 -CONFIG_GENERIC_CMOS_UPDATE=y
86144 -CONFIG_GENERIC_TIME=y
86145 -CONFIG_GENERIC_TIME_VSYSCALL=y
86146 -CONFIG_GENERIC_CLOCKEVENTS=y
86147 -CONFIG_GENERIC_HARDIRQS=y
86148 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
86149 -CONFIG_IRQ_PER_CPU=y
86150 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
86151 -CONFIG_ARCH_HAS_ILOG2_U32=y
86152 -CONFIG_GENERIC_HWEIGHT=y
86153 -CONFIG_GENERIC_CALIBRATE_DELAY=y
86154 -CONFIG_GENERIC_FIND_NEXT_BIT=y
86155 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
86156 -CONFIG_PPC=y
86157 -CONFIG_EARLY_PRINTK=y
86158 -CONFIG_GENERIC_NVRAM=y
86159 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
86160 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
86161 -CONFIG_PPC_OF=y
86162 -CONFIG_OF=y
86163 -CONFIG_PPC_UDBG_16550=y
86164 -# CONFIG_GENERIC_TBSYNC is not set
86165 -CONFIG_AUDIT_ARCH=y
86166 -CONFIG_GENERIC_BUG=y
86167 -# CONFIG_DEFAULT_UIMAGE is not set
86168 -CONFIG_PPC_DCR_NATIVE=y
86169 -# CONFIG_PPC_DCR_MMIO is not set
86170 -CONFIG_PPC_DCR=y
86171 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
86172 -
86173 -#
86174 -# General setup
86175 -#
86176 -CONFIG_EXPERIMENTAL=y
86177 -CONFIG_BROKEN_ON_SMP=y
86178 -CONFIG_INIT_ENV_ARG_LIMIT=32
86179 -CONFIG_LOCALVERSION=""
86180 -CONFIG_LOCALVERSION_AUTO=y
86181 -CONFIG_SWAP=y
86182 -CONFIG_SYSVIPC=y
86183 -CONFIG_SYSVIPC_SYSCTL=y
86184 -CONFIG_POSIX_MQUEUE=y
86185 -# CONFIG_BSD_PROCESS_ACCT is not set
86186 -# CONFIG_TASKSTATS is not set
86187 -# CONFIG_AUDIT is not set
86188 -# CONFIG_IKCONFIG is not set
86189 -CONFIG_LOG_BUF_SHIFT=14
86190 -# CONFIG_CGROUPS is not set
86191 -CONFIG_GROUP_SCHED=y
86192 -CONFIG_FAIR_GROUP_SCHED=y
86193 -# CONFIG_RT_GROUP_SCHED is not set
86194 -CONFIG_USER_SCHED=y
86195 -# CONFIG_CGROUP_SCHED is not set
86196 -CONFIG_SYSFS_DEPRECATED=y
86197 -# CONFIG_RELAY is not set
86198 -# CONFIG_NAMESPACES is not set
86199 -CONFIG_BLK_DEV_INITRD=y
86200 -CONFIG_INITRAMFS_SOURCE=""
86201 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
86202 -CONFIG_SYSCTL=y
86203 -CONFIG_EMBEDDED=y
86204 -CONFIG_SYSCTL_SYSCALL=y
86205 -CONFIG_KALLSYMS=y
86206 -CONFIG_KALLSYMS_ALL=y
86207 -CONFIG_KALLSYMS_EXTRA_PASS=y
86208 -CONFIG_HOTPLUG=y
86209 -CONFIG_PRINTK=y
86210 -CONFIG_BUG=y
86211 -CONFIG_ELF_CORE=y
86212 -CONFIG_COMPAT_BRK=y
86213 -CONFIG_BASE_FULL=y
86214 -CONFIG_FUTEX=y
86215 -CONFIG_ANON_INODES=y
86216 -CONFIG_EPOLL=y
86217 -CONFIG_SIGNALFD=y
86218 -CONFIG_TIMERFD=y
86219 -CONFIG_EVENTFD=y
86220 -CONFIG_SHMEM=y
86221 -CONFIG_VM_EVENT_COUNTERS=y
86222 -CONFIG_SLUB_DEBUG=y
86223 -# CONFIG_SLAB is not set
86224 -CONFIG_SLUB=y
86225 -# CONFIG_SLOB is not set
86226 -# CONFIG_PROFILING is not set
86227 -# CONFIG_MARKERS is not set
86228 -CONFIG_HAVE_OPROFILE=y
86229 -# CONFIG_KPROBES is not set
86230 -CONFIG_HAVE_KPROBES=y
86231 -CONFIG_PROC_PAGE_MONITOR=y
86232 -CONFIG_SLABINFO=y
86233 -CONFIG_RT_MUTEXES=y
86234 -# CONFIG_TINY_SHMEM is not set
86235 -CONFIG_BASE_SMALL=0
86236 -CONFIG_MODULES=y
86237 -CONFIG_MODULE_UNLOAD=y
86238 -# CONFIG_MODULE_FORCE_UNLOAD is not set
86239 -# CONFIG_MODVERSIONS is not set
86240 -# CONFIG_MODULE_SRCVERSION_ALL is not set
86241 -CONFIG_KMOD=y
86242 -CONFIG_BLOCK=y
86243 -CONFIG_LBD=y
86244 -# CONFIG_BLK_DEV_IO_TRACE is not set
86245 -# CONFIG_LSF is not set
86246 -# CONFIG_BLK_DEV_BSG is not set
86247 -
86248 -#
86249 -# IO Schedulers
86250 -#
86251 -CONFIG_IOSCHED_NOOP=y
86252 -CONFIG_IOSCHED_AS=y
86253 -CONFIG_IOSCHED_DEADLINE=y
86254 -CONFIG_IOSCHED_CFQ=y
86255 -CONFIG_DEFAULT_AS=y
86256 -# CONFIG_DEFAULT_DEADLINE is not set
86257 -# CONFIG_DEFAULT_CFQ is not set
86258 -# CONFIG_DEFAULT_NOOP is not set
86259 -CONFIG_DEFAULT_IOSCHED="anticipatory"
86260 -CONFIG_CLASSIC_RCU=y
86261 -# CONFIG_PREEMPT_RCU is not set
86262 -# CONFIG_PPC4xx_PCI_EXPRESS is not set
86263 -
86264 -#
86265 -# Platform support
86266 -#
86267 -# CONFIG_PPC_MPC512x is not set
86268 -# CONFIG_PPC_MPC5121 is not set
86269 -# CONFIG_PPC_CELL is not set
86270 -# CONFIG_PPC_CELL_NATIVE is not set
86271 -# CONFIG_PQ2ADS is not set
86272 -# CONFIG_EP405 is not set
86273 -# CONFIG_KILAUEA is not set
86274 -# CONFIG_MAKALU is not set
86275 -CONFIG_WALNUT=y
86276 -# CONFIG_XILINX_VIRTEX_GENERIC_BOARD is not set
86277 -CONFIG_405GP=y
86278 -CONFIG_IBM405_ERR77=y
86279 -CONFIG_IBM405_ERR51=y
86280 -# CONFIG_IPIC is not set
86281 -# CONFIG_MPIC is not set
86282 -# CONFIG_MPIC_WEIRD is not set
86283 -# CONFIG_PPC_I8259 is not set
86284 -# CONFIG_PPC_RTAS is not set
86285 -# CONFIG_MMIO_NVRAM is not set
86286 -# CONFIG_PPC_MPC106 is not set
86287 -# CONFIG_PPC_970_NAP is not set
86288 -# CONFIG_PPC_INDIRECT_IO is not set
86289 -# CONFIG_GENERIC_IOMAP is not set
86290 -# CONFIG_CPU_FREQ is not set
86291 -# CONFIG_FSL_ULI1575 is not set
86292 -CONFIG_OF_RTC=y
86293 -
86294 -#
86295 -# Kernel options
86296 -#
86297 -# CONFIG_HIGHMEM is not set
86298 -# CONFIG_TICK_ONESHOT is not set
86299 -# CONFIG_NO_HZ is not set
86300 -# CONFIG_HIGH_RES_TIMERS is not set
86301 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
86302 -# CONFIG_HZ_100 is not set
86303 -CONFIG_HZ_250=y
86304 -# CONFIG_HZ_300 is not set
86305 -# CONFIG_HZ_1000 is not set
86306 -CONFIG_HZ=250
86307 -# CONFIG_SCHED_HRTICK is not set
86308 -CONFIG_PREEMPT_NONE=y
86309 -# CONFIG_PREEMPT_VOLUNTARY is not set
86310 -# CONFIG_PREEMPT is not set
86311 -CONFIG_RCU_TRACE=y
86312 -CONFIG_BINFMT_ELF=y
86313 -# CONFIG_BINFMT_MISC is not set
86314 -# CONFIG_MATH_EMULATION is not set
86315 -# CONFIG_IOMMU_HELPER is not set
86316 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
86317 -CONFIG_ARCH_HAS_WALK_MEMORY=y
86318 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
86319 -CONFIG_ARCH_FLATMEM_ENABLE=y
86320 -CONFIG_ARCH_POPULATES_NODE_MAP=y
86321 -CONFIG_SELECT_MEMORY_MODEL=y
86322 -CONFIG_FLATMEM_MANUAL=y
86323 -# CONFIG_DISCONTIGMEM_MANUAL is not set
86324 -# CONFIG_SPARSEMEM_MANUAL is not set
86325 -CONFIG_FLATMEM=y
86326 -CONFIG_FLAT_NODE_MEM_MAP=y
86327 -# CONFIG_SPARSEMEM_STATIC is not set
86328 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
86329 -CONFIG_SPLIT_PTLOCK_CPUS=4
86330 -CONFIG_RESOURCES_64BIT=y
86331 -CONFIG_ZONE_DMA_FLAG=1
86332 -CONFIG_BOUNCE=y
86333 -CONFIG_VIRT_TO_BUS=y
86334 -CONFIG_PROC_DEVICETREE=y
86335 -# CONFIG_CMDLINE_BOOL is not set
86336 -# CONFIG_PM is not set
86337 -CONFIG_SECCOMP=y
86338 -CONFIG_ISA_DMA_API=y
86339 -
86340 -#
86341 -# Bus options
86342 -#
86343 -CONFIG_ZONE_DMA=y
86344 -CONFIG_PPC_INDIRECT_PCI=y
86345 -CONFIG_PCI=y
86346 -CONFIG_PCI_DOMAINS=y
86347 -CONFIG_PCI_SYSCALL=y
86348 -# CONFIG_PCIEPORTBUS is not set
86349 -CONFIG_ARCH_SUPPORTS_MSI=y
86350 -# CONFIG_PCI_MSI is not set
86351 -# CONFIG_PCI_LEGACY is not set
86352 -# CONFIG_PCI_DEBUG is not set
86353 -# CONFIG_PCCARD is not set
86354 -# CONFIG_HOTPLUG_PCI is not set
86355 -
86356 -#
86357 -# Advanced setup
86358 -#
86359 -# CONFIG_ADVANCED_OPTIONS is not set
86360 -
86361 -#
86362 -# Default settings for advanced configuration options are used
86363 -#
86364 -CONFIG_HIGHMEM_START=0xfe000000
86365 -CONFIG_LOWMEM_SIZE=0x30000000
86366 -CONFIG_KERNEL_START=0xc0000000
86367 -CONFIG_TASK_SIZE=0xc0000000
86368 -CONFIG_CONSISTENT_START=0xff100000
86369 -CONFIG_CONSISTENT_SIZE=0x00200000
86370 -CONFIG_BOOT_LOAD=0x00400000
86371 -
86372 -#
86373 -# Networking
86374 -#
86375 -CONFIG_NET=y
86376 -
86377 -#
86378 -# Networking options
86379 -#
86380 -CONFIG_PACKET=y
86381 -# CONFIG_PACKET_MMAP is not set
86382 -CONFIG_UNIX=y
86383 -# CONFIG_NET_KEY is not set
86384 -CONFIG_INET=y
86385 -# CONFIG_IP_MULTICAST is not set
86386 -# CONFIG_IP_ADVANCED_ROUTER is not set
86387 -CONFIG_IP_FIB_HASH=y
86388 -CONFIG_IP_PNP=y
86389 -CONFIG_IP_PNP_DHCP=y
86390 -CONFIG_IP_PNP_BOOTP=y
86391 -# CONFIG_IP_PNP_RARP is not set
86392 -# CONFIG_NET_IPIP is not set
86393 -# CONFIG_NET_IPGRE is not set
86394 -# CONFIG_ARPD is not set
86395 -# CONFIG_SYN_COOKIES is not set
86396 -# CONFIG_INET_AH is not set
86397 -# CONFIG_INET_ESP is not set
86398 -# CONFIG_INET_IPCOMP is not set
86399 -# CONFIG_INET_XFRM_TUNNEL is not set
86400 -# CONFIG_INET_TUNNEL is not set
86401 -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
86402 -# CONFIG_INET_XFRM_MODE_TUNNEL is not set
86403 -# CONFIG_INET_XFRM_MODE_BEET is not set
86404 -# CONFIG_INET_LRO is not set
86405 -CONFIG_INET_DIAG=y
86406 -CONFIG_INET_TCP_DIAG=y
86407 -# CONFIG_TCP_CONG_ADVANCED is not set
86408 -CONFIG_TCP_CONG_CUBIC=y
86409 -CONFIG_DEFAULT_TCP_CONG="cubic"
86410 -# CONFIG_TCP_MD5SIG is not set
86411 -# CONFIG_IPV6 is not set
86412 -# CONFIG_INET6_XFRM_TUNNEL is not set
86413 -# CONFIG_INET6_TUNNEL is not set
86414 -# CONFIG_NETWORK_SECMARK is not set
86415 -# CONFIG_NETFILTER is not set
86416 -# CONFIG_IP_DCCP is not set
86417 -# CONFIG_IP_SCTP is not set
86418 -# CONFIG_TIPC is not set
86419 -# CONFIG_ATM is not set
86420 -# CONFIG_BRIDGE is not set
86421 -# CONFIG_VLAN_8021Q is not set
86422 -# CONFIG_DECNET is not set
86423 -# CONFIG_LLC2 is not set
86424 -# CONFIG_IPX is not set
86425 -# CONFIG_ATALK is not set
86426 -# CONFIG_X25 is not set
86427 -# CONFIG_LAPB is not set
86428 -# CONFIG_ECONET is not set
86429 -# CONFIG_WAN_ROUTER is not set
86430 -# CONFIG_NET_SCHED is not set
86431 -
86432 -#
86433 -# Network testing
86434 -#
86435 -# CONFIG_NET_PKTGEN is not set
86436 -# CONFIG_HAMRADIO is not set
86437 -# CONFIG_CAN is not set
86438 -# CONFIG_IRDA is not set
86439 -# CONFIG_BT is not set
86440 -# CONFIG_AF_RXRPC is not set
86441 -
86442 -#
86443 -# Wireless
86444 -#
86445 -# CONFIG_CFG80211 is not set
86446 -# CONFIG_WIRELESS_EXT is not set
86447 -# CONFIG_MAC80211 is not set
86448 -# CONFIG_IEEE80211 is not set
86449 -# CONFIG_RFKILL is not set
86450 -# CONFIG_NET_9P is not set
86451 -
86452 -#
86453 -# Device Drivers
86454 -#
86455 -
86456 -#
86457 -# Generic Driver Options
86458 -#
86459 -CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
86460 -CONFIG_STANDALONE=y
86461 -CONFIG_PREVENT_FIRMWARE_BUILD=y
86462 -CONFIG_FW_LOADER=y
86463 -# CONFIG_DEBUG_DRIVER is not set
86464 -# CONFIG_DEBUG_DEVRES is not set
86465 -# CONFIG_SYS_HYPERVISOR is not set
86466 -CONFIG_CONNECTOR=y
86467 -CONFIG_PROC_EVENTS=y
86468 -CONFIG_MTD=y
86469 -# CONFIG_MTD_DEBUG is not set
86470 -# CONFIG_MTD_CONCAT is not set
86471 -CONFIG_MTD_PARTITIONS=y
86472 -# CONFIG_MTD_REDBOOT_PARTS is not set
86473 -CONFIG_MTD_CMDLINE_PARTS=y
86474 -CONFIG_MTD_OF_PARTS=y
86475 -
86476 -#
86477 -# User Modules And Translation Layers
86478 -#
86479 -CONFIG_MTD_CHAR=y
86480 -CONFIG_MTD_BLKDEVS=m
86481 -CONFIG_MTD_BLOCK=m
86482 -# CONFIG_MTD_BLOCK_RO is not set
86483 -# CONFIG_FTL is not set
86484 -# CONFIG_NFTL is not set
86485 -# CONFIG_INFTL is not set
86486 -# CONFIG_RFD_FTL is not set
86487 -# CONFIG_SSFDC is not set
86488 -# CONFIG_MTD_OOPS is not set
86489 -
86490 -#
86491 -# RAM/ROM/Flash chip drivers
86492 -#
86493 -CONFIG_MTD_CFI=y
86494 -CONFIG_MTD_JEDECPROBE=y
86495 -CONFIG_MTD_GEN_PROBE=y
86496 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
86497 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
86498 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
86499 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
86500 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
86501 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
86502 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
86503 -CONFIG_MTD_CFI_I1=y
86504 -CONFIG_MTD_CFI_I2=y
86505 -# CONFIG_MTD_CFI_I4 is not set
86506 -# CONFIG_MTD_CFI_I8 is not set
86507 -# CONFIG_MTD_CFI_INTELEXT is not set
86508 -CONFIG_MTD_CFI_AMDSTD=y
86509 -# CONFIG_MTD_CFI_STAA is not set
86510 -CONFIG_MTD_CFI_UTIL=y
86511 -# CONFIG_MTD_RAM is not set
86512 -# CONFIG_MTD_ROM is not set
86513 -# CONFIG_MTD_ABSENT is not set
86514 -
86515 -#
86516 -# Mapping drivers for chip access
86517 -#
86518 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
86519 -# CONFIG_MTD_PHYSMAP is not set
86520 -CONFIG_MTD_PHYSMAP_OF=y
86521 -# CONFIG_MTD_INTEL_VR_NOR is not set
86522 -# CONFIG_MTD_PLATRAM is not set
86523 -
86524 -#
86525 -# Self-contained MTD device drivers
86526 -#
86527 -# CONFIG_MTD_PMC551 is not set
86528 -# CONFIG_MTD_SLRAM is not set
86529 -# CONFIG_MTD_PHRAM is not set
86530 -# CONFIG_MTD_MTDRAM is not set
86531 -# CONFIG_MTD_BLOCK2MTD is not set
86532 -
86533 -#
86534 -# Disk-On-Chip Device Drivers
86535 -#
86536 -# CONFIG_MTD_DOC2000 is not set
86537 -# CONFIG_MTD_DOC2001 is not set
86538 -# CONFIG_MTD_DOC2001PLUS is not set
86539 -# CONFIG_MTD_NAND is not set
86540 -# CONFIG_MTD_ONENAND is not set
86541 -
86542 -#
86543 -# UBI - Unsorted block images
86544 -#
86545 -# CONFIG_MTD_UBI is not set
86546 -CONFIG_OF_DEVICE=y
86547 -# CONFIG_PARPORT is not set
86548 -CONFIG_BLK_DEV=y
86549 -# CONFIG_BLK_DEV_FD is not set
86550 -# CONFIG_BLK_CPQ_DA is not set
86551 -# CONFIG_BLK_CPQ_CISS_DA is not set
86552 -# CONFIG_BLK_DEV_DAC960 is not set
86553 -# CONFIG_BLK_DEV_UMEM is not set
86554 -# CONFIG_BLK_DEV_COW_COMMON is not set
86555 -# CONFIG_BLK_DEV_LOOP is not set
86556 -# CONFIG_BLK_DEV_NBD is not set
86557 -# CONFIG_BLK_DEV_SX8 is not set
86558 -CONFIG_BLK_DEV_RAM=y
86559 -CONFIG_BLK_DEV_RAM_COUNT=16
86560 -CONFIG_BLK_DEV_RAM_SIZE=35000
86561 -# CONFIG_BLK_DEV_XIP is not set
86562 -# CONFIG_CDROM_PKTCDVD is not set
86563 -# CONFIG_ATA_OVER_ETH is not set
86564 -# CONFIG_XILINX_SYSACE is not set
86565 -CONFIG_MISC_DEVICES=y
86566 -# CONFIG_PHANTOM is not set
86567 -# CONFIG_EEPROM_93CX6 is not set
86568 -# CONFIG_SGI_IOC4 is not set
86569 -# CONFIG_TIFM_CORE is not set
86570 -# CONFIG_ENCLOSURE_SERVICES is not set
86571 -CONFIG_HAVE_IDE=y
86572 -# CONFIG_IDE is not set
86573 -
86574 -#
86575 -# SCSI device support
86576 -#
86577 -# CONFIG_RAID_ATTRS is not set
86578 -# CONFIG_SCSI is not set
86579 -# CONFIG_SCSI_DMA is not set
86580 -# CONFIG_SCSI_NETLINK is not set
86581 -# CONFIG_ATA is not set
86582 -# CONFIG_MD is not set
86583 -# CONFIG_FUSION is not set
86584 -
86585 -#
86586 -# IEEE 1394 (FireWire) support
86587 -#
86588 -# CONFIG_FIREWIRE is not set
86589 -# CONFIG_IEEE1394 is not set
86590 -# CONFIG_I2O is not set
86591 -# CONFIG_MACINTOSH_DRIVERS is not set
86592 -CONFIG_NETDEVICES=y
86593 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
86594 -# CONFIG_DUMMY is not set
86595 -# CONFIG_BONDING is not set
86596 -# CONFIG_MACVLAN is not set
86597 -# CONFIG_EQUALIZER is not set
86598 -# CONFIG_TUN is not set
86599 -# CONFIG_VETH is not set
86600 -# CONFIG_ARCNET is not set
86601 -# CONFIG_PHYLIB is not set
86602 -CONFIG_NET_ETHERNET=y
86603 -# CONFIG_MII is not set
86604 -# CONFIG_HAPPYMEAL is not set
86605 -# CONFIG_SUNGEM is not set
86606 -# CONFIG_CASSINI is not set
86607 -# CONFIG_NET_VENDOR_3COM is not set
86608 -# CONFIG_NET_TULIP is not set
86609 -# CONFIG_HP100 is not set
86610 -CONFIG_IBM_NEW_EMAC=y
86611 -CONFIG_IBM_NEW_EMAC_RXB=128
86612 -CONFIG_IBM_NEW_EMAC_TXB=64
86613 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
86614 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
86615 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
86616 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
86617 -CONFIG_IBM_NEW_EMAC_ZMII=y
86618 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
86619 -# CONFIG_IBM_NEW_EMAC_TAH is not set
86620 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
86621 -# CONFIG_NET_PCI is not set
86622 -# CONFIG_B44 is not set
86623 -CONFIG_NETDEV_1000=y
86624 -# CONFIG_ACENIC is not set
86625 -# CONFIG_DL2K is not set
86626 -# CONFIG_E1000 is not set
86627 -# CONFIG_E1000E is not set
86628 -# CONFIG_E1000E_ENABLED is not set
86629 -# CONFIG_IP1000 is not set
86630 -# CONFIG_IGB is not set
86631 -# CONFIG_NS83820 is not set
86632 -# CONFIG_HAMACHI is not set
86633 -# CONFIG_YELLOWFIN is not set
86634 -# CONFIG_R8169 is not set
86635 -# CONFIG_SIS190 is not set
86636 -# CONFIG_SKGE is not set
86637 -# CONFIG_SKY2 is not set
86638 -# CONFIG_SK98LIN is not set
86639 -# CONFIG_VIA_VELOCITY is not set
86640 -# CONFIG_TIGON3 is not set
86641 -# CONFIG_BNX2 is not set
86642 -# CONFIG_QLA3XXX is not set
86643 -# CONFIG_ATL1 is not set
86644 -CONFIG_NETDEV_10000=y
86645 -# CONFIG_CHELSIO_T1 is not set
86646 -# CONFIG_CHELSIO_T3 is not set
86647 -# CONFIG_IXGBE is not set
86648 -# CONFIG_IXGB is not set
86649 -# CONFIG_S2IO is not set
86650 -# CONFIG_MYRI10GE is not set
86651 -# CONFIG_NETXEN_NIC is not set
86652 -# CONFIG_NIU is not set
86653 -# CONFIG_MLX4_CORE is not set
86654 -# CONFIG_TEHUTI is not set
86655 -# CONFIG_BNX2X is not set
86656 -# CONFIG_TR is not set
86657 -
86658 -#
86659 -# Wireless LAN
86660 -#
86661 -# CONFIG_WLAN_PRE80211 is not set
86662 -# CONFIG_WLAN_80211 is not set
86663 -# CONFIG_WAN is not set
86664 -# CONFIG_FDDI is not set
86665 -# CONFIG_HIPPI is not set
86666 -# CONFIG_PPP is not set
86667 -# CONFIG_SLIP is not set
86668 -# CONFIG_NETCONSOLE is not set
86669 -# CONFIG_NETPOLL is not set
86670 -# CONFIG_NET_POLL_CONTROLLER is not set
86671 -# CONFIG_ISDN is not set
86672 -# CONFIG_PHONE is not set
86673 -
86674 -#
86675 -# Input device support
86676 -#
86677 -# CONFIG_INPUT is not set
86678 -
86679 -#
86680 -# Hardware I/O ports
86681 -#
86682 -# CONFIG_SERIO is not set
86683 -# CONFIG_GAMEPORT is not set
86684 -
86685 -#
86686 -# Character devices
86687 -#
86688 -# CONFIG_VT is not set
86689 -# CONFIG_SERIAL_NONSTANDARD is not set
86690 -# CONFIG_NOZOMI is not set
86691 -
86692 -#
86693 -# Serial drivers
86694 -#
86695 -CONFIG_SERIAL_8250=y
86696 -CONFIG_SERIAL_8250_CONSOLE=y
86697 -CONFIG_SERIAL_8250_PCI=y
86698 -CONFIG_SERIAL_8250_NR_UARTS=4
86699 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
86700 -CONFIG_SERIAL_8250_EXTENDED=y
86701 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
86702 -CONFIG_SERIAL_8250_SHARE_IRQ=y
86703 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
86704 -# CONFIG_SERIAL_8250_RSA is not set
86705 -
86706 -#
86707 -# Non-8250 serial port support
86708 -#
86709 -# CONFIG_SERIAL_UARTLITE is not set
86710 -CONFIG_SERIAL_CORE=y
86711 -CONFIG_SERIAL_CORE_CONSOLE=y
86712 -# CONFIG_SERIAL_JSM is not set
86713 -CONFIG_SERIAL_OF_PLATFORM=y
86714 -CONFIG_UNIX98_PTYS=y
86715 -CONFIG_LEGACY_PTYS=y
86716 -CONFIG_LEGACY_PTY_COUNT=256
86717 -# CONFIG_IPMI_HANDLER is not set
86718 -# CONFIG_HW_RANDOM is not set
86719 -# CONFIG_NVRAM is not set
86720 -# CONFIG_GEN_RTC is not set
86721 -# CONFIG_R3964 is not set
86722 -# CONFIG_APPLICOM is not set
86723 -# CONFIG_RAW_DRIVER is not set
86724 -# CONFIG_TCG_TPM is not set
86725 -CONFIG_DEVPORT=y
86726 -# CONFIG_I2C is not set
86727 -
86728 -#
86729 -# SPI support
86730 -#
86731 -# CONFIG_SPI is not set
86732 -# CONFIG_SPI_MASTER is not set
86733 -# CONFIG_W1 is not set
86734 -# CONFIG_POWER_SUPPLY is not set
86735 -# CONFIG_HWMON is not set
86736 -CONFIG_THERMAL=y
86737 -# CONFIG_WATCHDOG is not set
86738 -
86739 -#
86740 -# Sonics Silicon Backplane
86741 -#
86742 -CONFIG_SSB_POSSIBLE=y
86743 -# CONFIG_SSB is not set
86744 -
86745 -#
86746 -# Multifunction device drivers
86747 -#
86748 -# CONFIG_MFD_SM501 is not set
86749 -
86750 -#
86751 -# Multimedia devices
86752 -#
86753 -# CONFIG_VIDEO_DEV is not set
86754 -# CONFIG_DVB_CORE is not set
86755 -# CONFIG_DAB is not set
86756 -
86757 -#
86758 -# Graphics support
86759 -#
86760 -# CONFIG_AGP is not set
86761 -# CONFIG_DRM is not set
86762 -# CONFIG_VGASTATE is not set
86763 -CONFIG_VIDEO_OUTPUT_CONTROL=m
86764 -# CONFIG_FB is not set
86765 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
86766 -
86767 -#
86768 -# Display device support
86769 -#
86770 -# CONFIG_DISPLAY_SUPPORT is not set
86771 -
86772 -#
86773 -# Sound
86774 -#
86775 -# CONFIG_SOUND is not set
86776 -CONFIG_USB_SUPPORT=y
86777 -CONFIG_USB_ARCH_HAS_HCD=y
86778 -CONFIG_USB_ARCH_HAS_OHCI=y
86779 -CONFIG_USB_ARCH_HAS_EHCI=y
86780 -# CONFIG_USB is not set
86781 -
86782 -#
86783 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
86784 -#
86785 -# CONFIG_USB_GADGET is not set
86786 -# CONFIG_MMC is not set
86787 -# CONFIG_MEMSTICK is not set
86788 -# CONFIG_NEW_LEDS is not set
86789 -# CONFIG_INFINIBAND is not set
86790 -# CONFIG_EDAC is not set
86791 -# CONFIG_RTC_CLASS is not set
86792 -
86793 -#
86794 -# Userspace I/O
86795 -#
86796 -# CONFIG_UIO is not set
86797 -
86798 -#
86799 -# File systems
86800 -#
86801 -CONFIG_EXT2_FS=y
86802 -# CONFIG_EXT2_FS_XATTR is not set
86803 -# CONFIG_EXT2_FS_XIP is not set
86804 -# CONFIG_EXT3_FS is not set
86805 -# CONFIG_EXT4DEV_FS is not set
86806 -# CONFIG_REISERFS_FS is not set
86807 -# CONFIG_JFS_FS is not set
86808 -# CONFIG_FS_POSIX_ACL is not set
86809 -# CONFIG_XFS_FS is not set
86810 -# CONFIG_GFS2_FS is not set
86811 -# CONFIG_OCFS2_FS is not set
86812 -CONFIG_DNOTIFY=y
86813 -CONFIG_INOTIFY=y
86814 -CONFIG_INOTIFY_USER=y
86815 -# CONFIG_QUOTA is not set
86816 -# CONFIG_AUTOFS_FS is not set
86817 -# CONFIG_AUTOFS4_FS is not set
86818 -# CONFIG_FUSE_FS is not set
86819 -
86820 -#
86821 -# CD-ROM/DVD Filesystems
86822 -#
86823 -# CONFIG_ISO9660_FS is not set
86824 -# CONFIG_UDF_FS is not set
86825 -
86826 -#
86827 -# DOS/FAT/NT Filesystems
86828 -#
86829 -# CONFIG_MSDOS_FS is not set
86830 -# CONFIG_VFAT_FS is not set
86831 -# CONFIG_NTFS_FS is not set
86832 -
86833 -#
86834 -# Pseudo filesystems
86835 -#
86836 -CONFIG_PROC_FS=y
86837 -CONFIG_PROC_KCORE=y
86838 -CONFIG_PROC_SYSCTL=y
86839 -CONFIG_SYSFS=y
86840 -CONFIG_TMPFS=y
86841 -# CONFIG_TMPFS_POSIX_ACL is not set
86842 -# CONFIG_HUGETLB_PAGE is not set
86843 -# CONFIG_CONFIGFS_FS is not set
86844 -
86845 -#
86846 -# Miscellaneous filesystems
86847 -#
86848 -# CONFIG_ADFS_FS is not set
86849 -# CONFIG_AFFS_FS is not set
86850 -# CONFIG_HFS_FS is not set
86851 -# CONFIG_HFSPLUS_FS is not set
86852 -# CONFIG_BEFS_FS is not set
86853 -# CONFIG_BFS_FS is not set
86854 -# CONFIG_EFS_FS is not set
86855 -# CONFIG_JFFS2_FS is not set
86856 -CONFIG_CRAMFS=y
86857 -# CONFIG_VXFS_FS is not set
86858 -# CONFIG_MINIX_FS is not set
86859 -# CONFIG_HPFS_FS is not set
86860 -# CONFIG_QNX4FS_FS is not set
86861 -# CONFIG_ROMFS_FS is not set
86862 -# CONFIG_SYSV_FS is not set
86863 -# CONFIG_UFS_FS is not set
86864 -CONFIG_NETWORK_FILESYSTEMS=y
86865 -CONFIG_NFS_FS=y
86866 -CONFIG_NFS_V3=y
86867 -# CONFIG_NFS_V3_ACL is not set
86868 -# CONFIG_NFS_V4 is not set
86869 -# CONFIG_NFS_DIRECTIO is not set
86870 -# CONFIG_NFSD is not set
86871 -CONFIG_ROOT_NFS=y
86872 -CONFIG_LOCKD=y
86873 -CONFIG_LOCKD_V4=y
86874 -CONFIG_NFS_COMMON=y
86875 -CONFIG_SUNRPC=y
86876 -# CONFIG_SUNRPC_BIND34 is not set
86877 -# CONFIG_RPCSEC_GSS_KRB5 is not set
86878 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
86879 -# CONFIG_SMB_FS is not set
86880 -# CONFIG_CIFS is not set
86881 -# CONFIG_NCP_FS is not set
86882 -# CONFIG_CODA_FS is not set
86883 -# CONFIG_AFS_FS is not set
86884 -
86885 -#
86886 -# Partition Types
86887 -#
86888 -# CONFIG_PARTITION_ADVANCED is not set
86889 -CONFIG_MSDOS_PARTITION=y
86890 -# CONFIG_NLS is not set
86891 -# CONFIG_DLM is not set
86892 -
86893 -#
86894 -# Library routines
86895 -#
86896 -CONFIG_BITREVERSE=y
86897 -# CONFIG_CRC_CCITT is not set
86898 -# CONFIG_CRC16 is not set
86899 -# CONFIG_CRC_ITU_T is not set
86900 -CONFIG_CRC32=y
86901 -# CONFIG_CRC7 is not set
86902 -# CONFIG_LIBCRC32C is not set
86903 -CONFIG_ZLIB_INFLATE=y
86904 -CONFIG_PLIST=y
86905 -CONFIG_HAS_IOMEM=y
86906 -CONFIG_HAS_IOPORT=y
86907 -CONFIG_HAS_DMA=y
86908 -
86909 -#
86910 -# Kernel hacking
86911 -#
86912 -# CONFIG_PRINTK_TIME is not set
86913 -CONFIG_ENABLE_WARN_DEPRECATED=y
86914 -CONFIG_ENABLE_MUST_CHECK=y
86915 -CONFIG_MAGIC_SYSRQ=y
86916 -# CONFIG_UNUSED_SYMBOLS is not set
86917 -CONFIG_DEBUG_FS=y
86918 -# CONFIG_HEADERS_CHECK is not set
86919 -CONFIG_DEBUG_KERNEL=y
86920 -# CONFIG_DEBUG_SHIRQ is not set
86921 -CONFIG_DETECT_SOFTLOCKUP=y
86922 -CONFIG_SCHED_DEBUG=y
86923 -# CONFIG_SCHEDSTATS is not set
86924 -# CONFIG_TIMER_STATS is not set
86925 -# CONFIG_SLUB_DEBUG_ON is not set
86926 -# CONFIG_SLUB_STATS is not set
86927 -# CONFIG_DEBUG_RT_MUTEXES is not set
86928 -# CONFIG_RT_MUTEX_TESTER is not set
86929 -# CONFIG_DEBUG_SPINLOCK is not set
86930 -# CONFIG_DEBUG_MUTEXES is not set
86931 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
86932 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
86933 -# CONFIG_DEBUG_KOBJECT is not set
86934 -CONFIG_DEBUG_BUGVERBOSE=y
86935 -# CONFIG_DEBUG_INFO is not set
86936 -# CONFIG_DEBUG_VM is not set
86937 -# CONFIG_DEBUG_LIST is not set
86938 -# CONFIG_DEBUG_SG is not set
86939 -# CONFIG_BOOT_PRINTK_DELAY is not set
86940 -# CONFIG_RCU_TORTURE_TEST is not set
86941 -# CONFIG_BACKTRACE_SELF_TEST is not set
86942 -# CONFIG_FAULT_INJECTION is not set
86943 -# CONFIG_SAMPLES is not set
86944 -# CONFIG_DEBUG_STACKOVERFLOW is not set
86945 -# CONFIG_DEBUG_STACK_USAGE is not set
86946 -# CONFIG_DEBUG_PAGEALLOC is not set
86947 -# CONFIG_DEBUGGER is not set
86948 -# CONFIG_VIRQ_DEBUG is not set
86949 -# CONFIG_BDI_SWITCH is not set
86950 -# CONFIG_PPC_EARLY_DEBUG is not set
86951 -
86952 -#
86953 -# Security options
86954 -#
86955 -# CONFIG_KEYS is not set
86956 -# CONFIG_SECURITY is not set
86957 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
86958 -CONFIG_CRYPTO=y
86959 -CONFIG_CRYPTO_ALGAPI=y
86960 -CONFIG_CRYPTO_BLKCIPHER=y
86961 -# CONFIG_CRYPTO_SEQIV is not set
86962 -CONFIG_CRYPTO_MANAGER=y
86963 -# CONFIG_CRYPTO_HMAC is not set
86964 -# CONFIG_CRYPTO_XCBC is not set
86965 -# CONFIG_CRYPTO_NULL is not set
86966 -# CONFIG_CRYPTO_MD4 is not set
86967 -CONFIG_CRYPTO_MD5=y
86968 -# CONFIG_CRYPTO_SHA1 is not set
86969 -# CONFIG_CRYPTO_SHA256 is not set
86970 -# CONFIG_CRYPTO_SHA512 is not set
86971 -# CONFIG_CRYPTO_WP512 is not set
86972 -# CONFIG_CRYPTO_TGR192 is not set
86973 -# CONFIG_CRYPTO_GF128MUL is not set
86974 -CONFIG_CRYPTO_ECB=y
86975 -CONFIG_CRYPTO_CBC=y
86976 -CONFIG_CRYPTO_PCBC=y
86977 -# CONFIG_CRYPTO_LRW is not set
86978 -# CONFIG_CRYPTO_XTS is not set
86979 -# CONFIG_CRYPTO_CTR is not set
86980 -# CONFIG_CRYPTO_GCM is not set
86981 -# CONFIG_CRYPTO_CCM is not set
86982 -# CONFIG_CRYPTO_CRYPTD is not set
86983 -CONFIG_CRYPTO_DES=y
86984 -# CONFIG_CRYPTO_FCRYPT is not set
86985 -# CONFIG_CRYPTO_BLOWFISH is not set
86986 -# CONFIG_CRYPTO_TWOFISH is not set
86987 -# CONFIG_CRYPTO_SERPENT is not set
86988 -# CONFIG_CRYPTO_AES is not set
86989 -# CONFIG_CRYPTO_CAST5 is not set
86990 -# CONFIG_CRYPTO_CAST6 is not set
86991 -# CONFIG_CRYPTO_TEA is not set
86992 -# CONFIG_CRYPTO_ARC4 is not set
86993 -# CONFIG_CRYPTO_KHAZAD is not set
86994 -# CONFIG_CRYPTO_ANUBIS is not set
86995 -# CONFIG_CRYPTO_SEED is not set
86996 -# CONFIG_CRYPTO_SALSA20 is not set
86997 -# CONFIG_CRYPTO_DEFLATE is not set
86998 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
86999 -# CONFIG_CRYPTO_CRC32C is not set
87000 -# CONFIG_CRYPTO_CAMELLIA is not set
87001 -# CONFIG_CRYPTO_TEST is not set
87002 -# CONFIG_CRYPTO_AUTHENC is not set
87003 -# CONFIG_CRYPTO_LZO is not set
87004 -CONFIG_CRYPTO_HW=y
87005 -# CONFIG_CRYPTO_DEV_HIFN_795X is not set
87006 -# CONFIG_PPC_CLOCK is not set
87007 Index: linux-2.6.25.4/arch/powerpc/configs/warp_defconfig
87008 ===================================================================
87009 --- linux-2.6.25.4.orig/arch/powerpc/configs/warp_defconfig
87010 +++ /dev/null
87011 @@ -1,1110 +0,0 @@
87012 -#
87013 -# Automatically generated make config: don't edit
87014 -# Linux kernel version: 2.6.25-rc2
87015 -# Fri Feb 15 21:54:43 2008
87016 -#
87017 -# CONFIG_PPC64 is not set
87018 -
87019 -#
87020 -# Processor support
87021 -#
87022 -# CONFIG_6xx is not set
87023 -# CONFIG_PPC_85xx is not set
87024 -# CONFIG_PPC_8xx is not set
87025 -# CONFIG_40x is not set
87026 -CONFIG_44x=y
87027 -# CONFIG_E200 is not set
87028 -CONFIG_PPC_FPU=y
87029 -CONFIG_4xx=y
87030 -CONFIG_BOOKE=y
87031 -CONFIG_PTE_64BIT=y
87032 -CONFIG_PHYS_64BIT=y
87033 -# CONFIG_PPC_MM_SLICES is not set
87034 -CONFIG_NOT_COHERENT_CACHE=y
87035 -CONFIG_PPC32=y
87036 -CONFIG_WORD_SIZE=32
87037 -CONFIG_PPC_MERGE=y
87038 -CONFIG_MMU=y
87039 -CONFIG_GENERIC_CMOS_UPDATE=y
87040 -CONFIG_GENERIC_TIME=y
87041 -CONFIG_GENERIC_TIME_VSYSCALL=y
87042 -CONFIG_GENERIC_CLOCKEVENTS=y
87043 -CONFIG_GENERIC_HARDIRQS=y
87044 -# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set
87045 -CONFIG_IRQ_PER_CPU=y
87046 -CONFIG_RWSEM_XCHGADD_ALGORITHM=y
87047 -CONFIG_ARCH_HAS_ILOG2_U32=y
87048 -CONFIG_GENERIC_HWEIGHT=y
87049 -CONFIG_GENERIC_CALIBRATE_DELAY=y
87050 -CONFIG_GENERIC_FIND_NEXT_BIT=y
87051 -# CONFIG_ARCH_NO_VIRT_TO_BUS is not set
87052 -CONFIG_PPC=y
87053 -CONFIG_EARLY_PRINTK=y
87054 -CONFIG_GENERIC_NVRAM=y
87055 -CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
87056 -CONFIG_ARCH_MAY_HAVE_PC_FDC=y
87057 -CONFIG_PPC_OF=y
87058 -CONFIG_OF=y
87059 -CONFIG_PPC_UDBG_16550=y
87060 -# CONFIG_GENERIC_TBSYNC is not set
87061 -CONFIG_AUDIT_ARCH=y
87062 -CONFIG_GENERIC_BUG=y
87063 -# CONFIG_DEFAULT_UIMAGE is not set
87064 -CONFIG_PPC_DCR_NATIVE=y
87065 -# CONFIG_PPC_DCR_MMIO is not set
87066 -CONFIG_PPC_DCR=y
87067 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
87068 -
87069 -#
87070 -# General setup
87071 -#
87072 -CONFIG_EXPERIMENTAL=y
87073 -CONFIG_BROKEN_ON_SMP=y
87074 -CONFIG_INIT_ENV_ARG_LIMIT=32
87075 -CONFIG_LOCALVERSION="-pika"
87076 -# CONFIG_LOCALVERSION_AUTO is not set
87077 -CONFIG_SWAP=y
87078 -CONFIG_SYSVIPC=y
87079 -CONFIG_SYSVIPC_SYSCTL=y
87080 -# CONFIG_POSIX_MQUEUE is not set
87081 -# CONFIG_BSD_PROCESS_ACCT is not set
87082 -# CONFIG_TASKSTATS is not set
87083 -# CONFIG_AUDIT is not set
87084 -# CONFIG_IKCONFIG is not set
87085 -CONFIG_LOG_BUF_SHIFT=14
87086 -# CONFIG_CGROUPS is not set
87087 -CONFIG_GROUP_SCHED=y
87088 -CONFIG_FAIR_GROUP_SCHED=y
87089 -# CONFIG_RT_GROUP_SCHED is not set
87090 -CONFIG_USER_SCHED=y
87091 -# CONFIG_CGROUP_SCHED is not set
87092 -CONFIG_SYSFS_DEPRECATED=y
87093 -# CONFIG_RELAY is not set
87094 -# CONFIG_NAMESPACES is not set
87095 -CONFIG_BLK_DEV_INITRD=y
87096 -CONFIG_INITRAMFS_SOURCE=""
87097 -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
87098 -CONFIG_SYSCTL=y
87099 -CONFIG_EMBEDDED=y
87100 -CONFIG_SYSCTL_SYSCALL=y
87101 -CONFIG_KALLSYMS=y
87102 -# CONFIG_KALLSYMS_ALL is not set
87103 -# CONFIG_KALLSYMS_EXTRA_PASS is not set
87104 -# CONFIG_HOTPLUG is not set
87105 -CONFIG_PRINTK=y
87106 -CONFIG_BUG=y
87107 -CONFIG_ELF_CORE=y
87108 -CONFIG_COMPAT_BRK=y
87109 -CONFIG_BASE_FULL=y
87110 -CONFIG_FUTEX=y
87111 -CONFIG_ANON_INODES=y
87112 -CONFIG_EPOLL=y
87113 -CONFIG_SIGNALFD=y
87114 -CONFIG_TIMERFD=y
87115 -CONFIG_EVENTFD=y
87116 -CONFIG_SHMEM=y
87117 -CONFIG_VM_EVENT_COUNTERS=y
87118 -CONFIG_SLAB=y
87119 -# CONFIG_SLUB is not set
87120 -# CONFIG_SLOB is not set
87121 -# CONFIG_PROFILING is not set
87122 -# CONFIG_MARKERS is not set
87123 -CONFIG_HAVE_OPROFILE=y
87124 -# CONFIG_KPROBES is not set
87125 -CONFIG_HAVE_KPROBES=y
87126 -CONFIG_PROC_PAGE_MONITOR=y
87127 -CONFIG_SLABINFO=y
87128 -CONFIG_RT_MUTEXES=y
87129 -# CONFIG_TINY_SHMEM is not set
87130 -CONFIG_BASE_SMALL=0
87131 -CONFIG_MODULES=y
87132 -CONFIG_MODULE_UNLOAD=y
87133 -# CONFIG_MODULE_FORCE_UNLOAD is not set
87134 -# CONFIG_MODVERSIONS is not set
87135 -# CONFIG_MODULE_SRCVERSION_ALL is not set
87136 -CONFIG_KMOD=y
87137 -CONFIG_BLOCK=y
87138 -# CONFIG_LBD is not set
87139 -# CONFIG_BLK_DEV_IO_TRACE is not set
87140 -# CONFIG_LSF is not set
87141 -# CONFIG_BLK_DEV_BSG is not set
87142 -
87143 -#
87144 -# IO Schedulers
87145 -#
87146 -CONFIG_IOSCHED_NOOP=y
87147 -CONFIG_IOSCHED_AS=y
87148 -CONFIG_IOSCHED_DEADLINE=y
87149 -CONFIG_IOSCHED_CFQ=y
87150 -CONFIG_DEFAULT_AS=y
87151 -# CONFIG_DEFAULT_DEADLINE is not set
87152 -# CONFIG_DEFAULT_CFQ is not set
87153 -# CONFIG_DEFAULT_NOOP is not set
87154 -CONFIG_DEFAULT_IOSCHED="anticipatory"
87155 -CONFIG_CLASSIC_RCU=y
87156 -# CONFIG_PREEMPT_RCU is not set
87157 -
87158 -#
87159 -# Platform support
87160 -#
87161 -# CONFIG_PPC_MPC512x is not set
87162 -# CONFIG_PPC_MPC5121 is not set
87163 -# CONFIG_PPC_CELL is not set
87164 -# CONFIG_PPC_CELL_NATIVE is not set
87165 -# CONFIG_PQ2ADS is not set
87166 -# CONFIG_BAMBOO is not set
87167 -# CONFIG_EBONY is not set
87168 -# CONFIG_SEQUOIA is not set
87169 -# CONFIG_TAISHAN is not set
87170 -# CONFIG_KATMAI is not set
87171 -# CONFIG_RAINIER is not set
87172 -CONFIG_WARP=y
87173 -CONFIG_440EP=y
87174 -CONFIG_IBM440EP_ERR42=y
87175 -# CONFIG_IPIC is not set
87176 -# CONFIG_MPIC is not set
87177 -# CONFIG_MPIC_WEIRD is not set
87178 -# CONFIG_PPC_I8259 is not set
87179 -# CONFIG_PPC_RTAS is not set
87180 -# CONFIG_MMIO_NVRAM is not set
87181 -# CONFIG_PPC_MPC106 is not set
87182 -# CONFIG_PPC_970_NAP is not set
87183 -# CONFIG_PPC_INDIRECT_IO is not set
87184 -# CONFIG_GENERIC_IOMAP is not set
87185 -# CONFIG_CPU_FREQ is not set
87186 -# CONFIG_FSL_ULI1575 is not set
87187 -
87188 -#
87189 -# Kernel options
87190 -#
87191 -# CONFIG_HIGHMEM is not set
87192 -# CONFIG_TICK_ONESHOT is not set
87193 -# CONFIG_NO_HZ is not set
87194 -# CONFIG_HIGH_RES_TIMERS is not set
87195 -CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
87196 -# CONFIG_HZ_100 is not set
87197 -# CONFIG_HZ_250 is not set
87198 -# CONFIG_HZ_300 is not set
87199 -CONFIG_HZ_1000=y
87200 -CONFIG_HZ=1000
87201 -# CONFIG_SCHED_HRTICK is not set
87202 -CONFIG_PREEMPT_NONE=y
87203 -# CONFIG_PREEMPT_VOLUNTARY is not set
87204 -# CONFIG_PREEMPT is not set
87205 -CONFIG_RCU_TRACE=y
87206 -CONFIG_BINFMT_ELF=y
87207 -# CONFIG_BINFMT_MISC is not set
87208 -# CONFIG_MATH_EMULATION is not set
87209 -# CONFIG_IOMMU_HELPER is not set
87210 -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
87211 -CONFIG_ARCH_HAS_WALK_MEMORY=y
87212 -CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
87213 -CONFIG_ARCH_FLATMEM_ENABLE=y
87214 -CONFIG_ARCH_POPULATES_NODE_MAP=y
87215 -CONFIG_SELECT_MEMORY_MODEL=y
87216 -CONFIG_FLATMEM_MANUAL=y
87217 -# CONFIG_DISCONTIGMEM_MANUAL is not set
87218 -# CONFIG_SPARSEMEM_MANUAL is not set
87219 -CONFIG_FLATMEM=y
87220 -CONFIG_FLAT_NODE_MEM_MAP=y
87221 -# CONFIG_SPARSEMEM_STATIC is not set
87222 -# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
87223 -CONFIG_SPLIT_PTLOCK_CPUS=4
87224 -CONFIG_RESOURCES_64BIT=y
87225 -CONFIG_ZONE_DMA_FLAG=1
87226 -CONFIG_BOUNCE=y
87227 -CONFIG_VIRT_TO_BUS=y
87228 -CONFIG_PROC_DEVICETREE=y
87229 -CONFIG_CMDLINE_BOOL=y
87230 -CONFIG_CMDLINE="ip=on"
87231 -CONFIG_SECCOMP=y
87232 -CONFIG_ISA_DMA_API=y
87233 -
87234 -#
87235 -# Bus options
87236 -#
87237 -CONFIG_ZONE_DMA=y
87238 -# CONFIG_PCI is not set
87239 -# CONFIG_PCI_DOMAINS is not set
87240 -# CONFIG_PCI_SYSCALL is not set
87241 -# CONFIG_ARCH_SUPPORTS_MSI is not set
87242 -
87243 -#
87244 -# Advanced setup
87245 -#
87246 -# CONFIG_ADVANCED_OPTIONS is not set
87247 -
87248 -#
87249 -# Default settings for advanced configuration options are used
87250 -#
87251 -CONFIG_HIGHMEM_START=0xfe000000
87252 -CONFIG_LOWMEM_SIZE=0x30000000
87253 -CONFIG_KERNEL_START=0xc0000000
87254 -CONFIG_TASK_SIZE=0xc0000000
87255 -CONFIG_CONSISTENT_START=0xff100000
87256 -CONFIG_CONSISTENT_SIZE=0x00200000
87257 -CONFIG_BOOT_LOAD=0x01000000
87258 -
87259 -#
87260 -# Networking
87261 -#
87262 -CONFIG_NET=y
87263 -
87264 -#
87265 -# Networking options
87266 -#
87267 -CONFIG_PACKET=y
87268 -# CONFIG_PACKET_MMAP is not set
87269 -CONFIG_UNIX=y
87270 -CONFIG_XFRM=y
87271 -# CONFIG_XFRM_USER is not set
87272 -# CONFIG_XFRM_SUB_POLICY is not set
87273 -# CONFIG_XFRM_MIGRATE is not set
87274 -# CONFIG_XFRM_STATISTICS is not set
87275 -# CONFIG_NET_KEY is not set
87276 -CONFIG_INET=y
87277 -# CONFIG_IP_MULTICAST is not set
87278 -# CONFIG_IP_ADVANCED_ROUTER is not set
87279 -CONFIG_IP_FIB_HASH=y
87280 -CONFIG_IP_PNP=y
87281 -CONFIG_IP_PNP_DHCP=y
87282 -# CONFIG_IP_PNP_BOOTP is not set
87283 -# CONFIG_IP_PNP_RARP is not set
87284 -# CONFIG_NET_IPIP is not set
87285 -# CONFIG_NET_IPGRE is not set
87286 -# CONFIG_ARPD is not set
87287 -# CONFIG_SYN_COOKIES is not set
87288 -# CONFIG_INET_AH is not set
87289 -# CONFIG_INET_ESP is not set
87290 -# CONFIG_INET_IPCOMP is not set
87291 -# CONFIG_INET_XFRM_TUNNEL is not set
87292 -# CONFIG_INET_TUNNEL is not set
87293 -CONFIG_INET_XFRM_MODE_TRANSPORT=y
87294 -CONFIG_INET_XFRM_MODE_TUNNEL=y
87295 -CONFIG_INET_XFRM_MODE_BEET=y
87296 -# CONFIG_INET_LRO is not set
87297 -CONFIG_INET_DIAG=y
87298 -CONFIG_INET_TCP_DIAG=y
87299 -# CONFIG_TCP_CONG_ADVANCED is not set
87300 -CONFIG_TCP_CONG_CUBIC=y
87301 -CONFIG_DEFAULT_TCP_CONG="cubic"
87302 -# CONFIG_TCP_MD5SIG is not set
87303 -# CONFIG_IP_VS is not set
87304 -# CONFIG_IPV6 is not set
87305 -# CONFIG_INET6_XFRM_TUNNEL is not set
87306 -# CONFIG_INET6_TUNNEL is not set
87307 -# CONFIG_NETWORK_SECMARK is not set
87308 -CONFIG_NETFILTER=y
87309 -# CONFIG_NETFILTER_DEBUG is not set
87310 -CONFIG_NETFILTER_ADVANCED=y
87311 -
87312 -#
87313 -# Core Netfilter Configuration
87314 -#
87315 -# CONFIG_NETFILTER_NETLINK_QUEUE is not set
87316 -# CONFIG_NETFILTER_NETLINK_LOG is not set
87317 -# CONFIG_NF_CONNTRACK is not set
87318 -# CONFIG_NETFILTER_XTABLES is not set
87319 -
87320 -#
87321 -# IP: Netfilter Configuration
87322 -#
87323 -# CONFIG_IP_NF_QUEUE is not set
87324 -# CONFIG_IP_NF_IPTABLES is not set
87325 -# CONFIG_IP_NF_ARPTABLES is not set
87326 -# CONFIG_IP_DCCP is not set
87327 -# CONFIG_IP_SCTP is not set
87328 -# CONFIG_TIPC is not set
87329 -# CONFIG_ATM is not set
87330 -# CONFIG_BRIDGE is not set
87331 -CONFIG_VLAN_8021Q=y
87332 -# CONFIG_DECNET is not set
87333 -# CONFIG_LLC2 is not set
87334 -# CONFIG_IPX is not set
87335 -# CONFIG_ATALK is not set
87336 -# CONFIG_X25 is not set
87337 -# CONFIG_LAPB is not set
87338 -# CONFIG_ECONET is not set
87339 -# CONFIG_WAN_ROUTER is not set
87340 -# CONFIG_NET_SCHED is not set
87341 -
87342 -#
87343 -# Network testing
87344 -#
87345 -# CONFIG_NET_PKTGEN is not set
87346 -# CONFIG_HAMRADIO is not set
87347 -# CONFIG_CAN is not set
87348 -# CONFIG_IRDA is not set
87349 -# CONFIG_BT is not set
87350 -# CONFIG_AF_RXRPC is not set
87351 -
87352 -#
87353 -# Wireless
87354 -#
87355 -# CONFIG_CFG80211 is not set
87356 -# CONFIG_WIRELESS_EXT is not set
87357 -# CONFIG_MAC80211 is not set
87358 -# CONFIG_IEEE80211 is not set
87359 -# CONFIG_RFKILL is not set
87360 -# CONFIG_NET_9P is not set
87361 -
87362 -#
87363 -# Device Drivers
87364 -#
87365 -
87366 -#
87367 -# Generic Driver Options
87368 -#
87369 -# CONFIG_STANDALONE is not set
87370 -CONFIG_PREVENT_FIRMWARE_BUILD=y
87371 -# CONFIG_DEBUG_DRIVER is not set
87372 -# CONFIG_DEBUG_DEVRES is not set
87373 -# CONFIG_SYS_HYPERVISOR is not set
87374 -# CONFIG_CONNECTOR is not set
87375 -CONFIG_MTD=y
87376 -# CONFIG_MTD_DEBUG is not set
87377 -# CONFIG_MTD_CONCAT is not set
87378 -CONFIG_MTD_PARTITIONS=y
87379 -# CONFIG_MTD_REDBOOT_PARTS is not set
87380 -# CONFIG_MTD_CMDLINE_PARTS is not set
87381 -CONFIG_MTD_OF_PARTS=y
87382 -
87383 -#
87384 -# User Modules And Translation Layers
87385 -#
87386 -CONFIG_MTD_CHAR=y
87387 -CONFIG_MTD_BLKDEVS=y
87388 -CONFIG_MTD_BLOCK=y
87389 -# CONFIG_FTL is not set
87390 -# CONFIG_NFTL is not set
87391 -# CONFIG_INFTL is not set
87392 -# CONFIG_RFD_FTL is not set
87393 -# CONFIG_SSFDC is not set
87394 -CONFIG_MTD_OOPS=m
87395 -
87396 -#
87397 -# RAM/ROM/Flash chip drivers
87398 -#
87399 -CONFIG_MTD_CFI=y
87400 -# CONFIG_MTD_JEDECPROBE is not set
87401 -CONFIG_MTD_GEN_PROBE=y
87402 -# CONFIG_MTD_CFI_ADV_OPTIONS is not set
87403 -CONFIG_MTD_MAP_BANK_WIDTH_1=y
87404 -CONFIG_MTD_MAP_BANK_WIDTH_2=y
87405 -CONFIG_MTD_MAP_BANK_WIDTH_4=y
87406 -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
87407 -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
87408 -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
87409 -CONFIG_MTD_CFI_I1=y
87410 -CONFIG_MTD_CFI_I2=y
87411 -# CONFIG_MTD_CFI_I4 is not set
87412 -# CONFIG_MTD_CFI_I8 is not set
87413 -# CONFIG_MTD_CFI_INTELEXT is not set
87414 -CONFIG_MTD_CFI_AMDSTD=y
87415 -# CONFIG_MTD_CFI_STAA is not set
87416 -CONFIG_MTD_CFI_UTIL=y
87417 -# CONFIG_MTD_RAM is not set
87418 -# CONFIG_MTD_ROM is not set
87419 -# CONFIG_MTD_ABSENT is not set
87420 -
87421 -#
87422 -# Mapping drivers for chip access
87423 -#
87424 -# CONFIG_MTD_COMPLEX_MAPPINGS is not set
87425 -# CONFIG_MTD_PHYSMAP is not set
87426 -CONFIG_MTD_PHYSMAP_OF=y
87427 -# CONFIG_MTD_PLATRAM is not set
87428 -
87429 -#
87430 -# Self-contained MTD device drivers
87431 -#
87432 -# CONFIG_MTD_SLRAM is not set
87433 -# CONFIG_MTD_PHRAM is not set
87434 -# CONFIG_MTD_MTDRAM is not set
87435 -# CONFIG_MTD_BLOCK2MTD is not set
87436 -
87437 -#
87438 -# Disk-On-Chip Device Drivers
87439 -#
87440 -# CONFIG_MTD_DOC2000 is not set
87441 -# CONFIG_MTD_DOC2001 is not set
87442 -# CONFIG_MTD_DOC2001PLUS is not set
87443 -CONFIG_MTD_NAND=y
87444 -# CONFIG_MTD_NAND_VERIFY_WRITE is not set
87445 -CONFIG_MTD_NAND_ECC_SMC=y
87446 -# CONFIG_MTD_NAND_MUSEUM_IDS is not set
87447 -CONFIG_MTD_NAND_IDS=y
87448 -# CONFIG_MTD_NAND_DISKONCHIP is not set
87449 -# CONFIG_MTD_NAND_NANDSIM is not set
87450 -# CONFIG_MTD_NAND_PLATFORM is not set
87451 -# CONFIG_MTD_ALAUDA is not set
87452 -# CONFIG_MTD_NAND_FSL_ELBC is not set
87453 -# CONFIG_MTD_ONENAND is not set
87454 -
87455 -#
87456 -# UBI - Unsorted block images
87457 -#
87458 -# CONFIG_MTD_UBI is not set
87459 -CONFIG_OF_DEVICE=y
87460 -# CONFIG_PARPORT is not set
87461 -CONFIG_BLK_DEV=y
87462 -# CONFIG_BLK_DEV_FD is not set
87463 -# CONFIG_BLK_DEV_COW_COMMON is not set
87464 -# CONFIG_BLK_DEV_LOOP is not set
87465 -# CONFIG_BLK_DEV_NBD is not set
87466 -# CONFIG_BLK_DEV_UB is not set
87467 -CONFIG_BLK_DEV_RAM=y
87468 -CONFIG_BLK_DEV_RAM_COUNT=16
87469 -CONFIG_BLK_DEV_RAM_SIZE=4096
87470 -# CONFIG_BLK_DEV_XIP is not set
87471 -# CONFIG_CDROM_PKTCDVD is not set
87472 -# CONFIG_ATA_OVER_ETH is not set
87473 -# CONFIG_XILINX_SYSACE is not set
87474 -CONFIG_MISC_DEVICES=y
87475 -# CONFIG_EEPROM_93CX6 is not set
87476 -# CONFIG_ENCLOSURE_SERVICES is not set
87477 -CONFIG_HAVE_IDE=y
87478 -# CONFIG_IDE is not set
87479 -
87480 -#
87481 -# SCSI device support
87482 -#
87483 -# CONFIG_RAID_ATTRS is not set
87484 -CONFIG_SCSI=y
87485 -CONFIG_SCSI_DMA=y
87486 -# CONFIG_SCSI_TGT is not set
87487 -# CONFIG_SCSI_NETLINK is not set
87488 -CONFIG_SCSI_PROC_FS=y
87489 -
87490 -#
87491 -# SCSI support type (disk, tape, CD-ROM)
87492 -#
87493 -CONFIG_BLK_DEV_SD=y
87494 -# CONFIG_CHR_DEV_ST is not set
87495 -# CONFIG_CHR_DEV_OSST is not set
87496 -# CONFIG_BLK_DEV_SR is not set
87497 -# CONFIG_CHR_DEV_SG is not set
87498 -# CONFIG_CHR_DEV_SCH is not set
87499 -
87500 -#
87501 -# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
87502 -#
87503 -# CONFIG_SCSI_MULTI_LUN is not set
87504 -# CONFIG_SCSI_CONSTANTS is not set
87505 -# CONFIG_SCSI_LOGGING is not set
87506 -# CONFIG_SCSI_SCAN_ASYNC is not set
87507 -CONFIG_SCSI_WAIT_SCAN=m
87508 -
87509 -#
87510 -# SCSI Transports
87511 -#
87512 -CONFIG_SCSI_SPI_ATTRS=y
87513 -# CONFIG_SCSI_FC_ATTRS is not set
87514 -# CONFIG_SCSI_ISCSI_ATTRS is not set
87515 -# CONFIG_SCSI_SAS_LIBSAS is not set
87516 -# CONFIG_SCSI_SRP_ATTRS is not set
87517 -# CONFIG_SCSI_LOWLEVEL is not set
87518 -# CONFIG_ATA is not set
87519 -# CONFIG_MD is not set
87520 -# CONFIG_MACINTOSH_DRIVERS is not set
87521 -CONFIG_NETDEVICES=y
87522 -# CONFIG_NETDEVICES_MULTIQUEUE is not set
87523 -# CONFIG_DUMMY is not set
87524 -# CONFIG_BONDING is not set
87525 -# CONFIG_MACVLAN is not set
87526 -# CONFIG_EQUALIZER is not set
87527 -# CONFIG_TUN is not set
87528 -# CONFIG_VETH is not set
87529 -# CONFIG_PHYLIB is not set
87530 -CONFIG_NET_ETHERNET=y
87531 -CONFIG_MII=y
87532 -CONFIG_IBM_NEW_EMAC=y
87533 -CONFIG_IBM_NEW_EMAC_RXB=128
87534 -CONFIG_IBM_NEW_EMAC_TXB=64
87535 -CONFIG_IBM_NEW_EMAC_POLL_WEIGHT=32
87536 -CONFIG_IBM_NEW_EMAC_RX_COPY_THRESHOLD=256
87537 -CONFIG_IBM_NEW_EMAC_RX_SKB_HEADROOM=0
87538 -# CONFIG_IBM_NEW_EMAC_DEBUG is not set
87539 -CONFIG_IBM_NEW_EMAC_ZMII=y
87540 -# CONFIG_IBM_NEW_EMAC_RGMII is not set
87541 -# CONFIG_IBM_NEW_EMAC_TAH is not set
87542 -# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
87543 -# CONFIG_B44 is not set
87544 -# CONFIG_NETDEV_1000 is not set
87545 -# CONFIG_NETDEV_10000 is not set
87546 -
87547 -#
87548 -# Wireless LAN
87549 -#
87550 -# CONFIG_WLAN_PRE80211 is not set
87551 -# CONFIG_WLAN_80211 is not set
87552 -
87553 -#
87554 -# USB Network Adapters
87555 -#
87556 -# CONFIG_USB_CATC is not set
87557 -# CONFIG_USB_KAWETH is not set
87558 -# CONFIG_USB_PEGASUS is not set
87559 -# CONFIG_USB_RTL8150 is not set
87560 -# CONFIG_USB_USBNET is not set
87561 -# CONFIG_WAN is not set
87562 -# CONFIG_PPP is not set
87563 -# CONFIG_SLIP is not set
87564 -# CONFIG_NETCONSOLE is not set
87565 -# CONFIG_NETPOLL is not set
87566 -# CONFIG_NET_POLL_CONTROLLER is not set
87567 -# CONFIG_ISDN is not set
87568 -# CONFIG_PHONE is not set
87569 -
87570 -#
87571 -# Input device support
87572 -#
87573 -# CONFIG_INPUT is not set
87574 -
87575 -#
87576 -# Hardware I/O ports
87577 -#
87578 -# CONFIG_SERIO is not set
87579 -# CONFIG_GAMEPORT is not set
87580 -
87581 -#
87582 -# Character devices
87583 -#
87584 -# CONFIG_VT is not set
87585 -# CONFIG_SERIAL_NONSTANDARD is not set
87586 -
87587 -#
87588 -# Serial drivers
87589 -#
87590 -CONFIG_SERIAL_8250=y
87591 -CONFIG_SERIAL_8250_CONSOLE=y
87592 -CONFIG_SERIAL_8250_NR_UARTS=4
87593 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4
87594 -CONFIG_SERIAL_8250_EXTENDED=y
87595 -# CONFIG_SERIAL_8250_MANY_PORTS is not set
87596 -CONFIG_SERIAL_8250_SHARE_IRQ=y
87597 -# CONFIG_SERIAL_8250_DETECT_IRQ is not set
87598 -# CONFIG_SERIAL_8250_RSA is not set
87599 -
87600 -#
87601 -# Non-8250 serial port support
87602 -#
87603 -# CONFIG_SERIAL_UARTLITE is not set
87604 -CONFIG_SERIAL_CORE=y
87605 -CONFIG_SERIAL_CORE_CONSOLE=y
87606 -# CONFIG_SERIAL_OF_PLATFORM is not set
87607 -CONFIG_UNIX98_PTYS=y
87608 -CONFIG_LEGACY_PTYS=y
87609 -CONFIG_LEGACY_PTY_COUNT=256
87610 -# CONFIG_IPMI_HANDLER is not set
87611 -CONFIG_HW_RANDOM=y
87612 -# CONFIG_NVRAM is not set
87613 -# CONFIG_GEN_RTC is not set
87614 -# CONFIG_R3964 is not set
87615 -# CONFIG_RAW_DRIVER is not set
87616 -# CONFIG_TCG_TPM is not set
87617 -CONFIG_I2C=y
87618 -CONFIG_I2C_BOARDINFO=y
87619 -# CONFIG_I2C_CHARDEV is not set
87620 -
87621 -#
87622 -# I2C Algorithms
87623 -#
87624 -# CONFIG_I2C_ALGOBIT is not set
87625 -# CONFIG_I2C_ALGOPCF is not set
87626 -# CONFIG_I2C_ALGOPCA is not set
87627 -
87628 -#
87629 -# I2C Hardware Bus support
87630 -#
87631 -# CONFIG_I2C_MPC is not set
87632 -# CONFIG_I2C_OCORES is not set
87633 -# CONFIG_I2C_PARPORT_LIGHT is not set
87634 -# CONFIG_I2C_SIMTEC is not set
87635 -# CONFIG_I2C_TAOS_EVM is not set
87636 -# CONFIG_I2C_STUB is not set
87637 -# CONFIG_I2C_TINY_USB is not set
87638 -
87639 -#
87640 -# Miscellaneous I2C Chip support
87641 -#
87642 -# CONFIG_DS1682 is not set
87643 -CONFIG_SENSORS_EEPROM=y
87644 -# CONFIG_SENSORS_PCF8574 is not set
87645 -# CONFIG_PCF8575 is not set
87646 -# CONFIG_SENSORS_PCF8591 is not set
87647 -# CONFIG_TPS65010 is not set
87648 -# CONFIG_SENSORS_MAX6875 is not set
87649 -# CONFIG_SENSORS_TSL2550 is not set
87650 -# CONFIG_I2C_DEBUG_CORE is not set
87651 -# CONFIG_I2C_DEBUG_ALGO is not set
87652 -# CONFIG_I2C_DEBUG_BUS is not set
87653 -# CONFIG_I2C_DEBUG_CHIP is not set
87654 -
87655 -#
87656 -# SPI support
87657 -#
87658 -# CONFIG_SPI is not set
87659 -# CONFIG_SPI_MASTER is not set
87660 -# CONFIG_W1 is not set
87661 -# CONFIG_POWER_SUPPLY is not set
87662 -CONFIG_HWMON=y
87663 -# CONFIG_HWMON_VID is not set
87664 -# CONFIG_SENSORS_AD7418 is not set
87665 -# CONFIG_SENSORS_ADM1021 is not set
87666 -# CONFIG_SENSORS_ADM1025 is not set
87667 -# CONFIG_SENSORS_ADM1026 is not set
87668 -# CONFIG_SENSORS_ADM1029 is not set
87669 -# CONFIG_SENSORS_ADM1031 is not set
87670 -# CONFIG_SENSORS_ADM9240 is not set
87671 -# CONFIG_SENSORS_ADT7470 is not set
87672 -# CONFIG_SENSORS_ATXP1 is not set
87673 -# CONFIG_SENSORS_DS1621 is not set
87674 -# CONFIG_SENSORS_F71805F is not set
87675 -# CONFIG_SENSORS_F71882FG is not set
87676 -# CONFIG_SENSORS_F75375S is not set
87677 -# CONFIG_SENSORS_GL518SM is not set
87678 -# CONFIG_SENSORS_GL520SM is not set
87679 -# CONFIG_SENSORS_IT87 is not set
87680 -# CONFIG_SENSORS_LM63 is not set
87681 -# CONFIG_SENSORS_LM75 is not set
87682 -# CONFIG_SENSORS_LM77 is not set
87683 -# CONFIG_SENSORS_LM78 is not set
87684 -# CONFIG_SENSORS_LM80 is not set
87685 -# CONFIG_SENSORS_LM83 is not set
87686 -# CONFIG_SENSORS_LM85 is not set
87687 -# CONFIG_SENSORS_LM87 is not set
87688 -# CONFIG_SENSORS_LM90 is not set
87689 -# CONFIG_SENSORS_LM92 is not set
87690 -# CONFIG_SENSORS_LM93 is not set
87691 -# CONFIG_SENSORS_MAX1619 is not set
87692 -# CONFIG_SENSORS_MAX6650 is not set
87693 -# CONFIG_SENSORS_PC87360 is not set
87694 -# CONFIG_SENSORS_PC87427 is not set
87695 -# CONFIG_SENSORS_DME1737 is not set
87696 -# CONFIG_SENSORS_SMSC47M1 is not set
87697 -# CONFIG_SENSORS_SMSC47M192 is not set
87698 -# CONFIG_SENSORS_SMSC47B397 is not set
87699 -# CONFIG_SENSORS_ADS7828 is not set
87700 -# CONFIG_SENSORS_THMC50 is not set
87701 -# CONFIG_SENSORS_VT1211 is not set
87702 -# CONFIG_SENSORS_W83781D is not set
87703 -# CONFIG_SENSORS_W83791D is not set
87704 -# CONFIG_SENSORS_W83792D is not set
87705 -# CONFIG_SENSORS_W83793 is not set
87706 -# CONFIG_SENSORS_W83L785TS is not set
87707 -# CONFIG_SENSORS_W83L786NG is not set
87708 -# CONFIG_SENSORS_W83627HF is not set
87709 -# CONFIG_SENSORS_W83627EHF is not set
87710 -# CONFIG_HWMON_DEBUG_CHIP is not set
87711 -CONFIG_THERMAL=y
87712 -# CONFIG_WATCHDOG is not set
87713 -
87714 -#
87715 -# Sonics Silicon Backplane
87716 -#
87717 -CONFIG_SSB_POSSIBLE=y
87718 -# CONFIG_SSB is not set
87719 -
87720 -#
87721 -# Multifunction device drivers
87722 -#
87723 -# CONFIG_MFD_SM501 is not set
87724 -
87725 -#
87726 -# Multimedia devices
87727 -#
87728 -# CONFIG_VIDEO_DEV is not set
87729 -# CONFIG_DVB_CORE is not set
87730 -# CONFIG_DAB is not set
87731 -
87732 -#
87733 -# Graphics support
87734 -#
87735 -# CONFIG_VGASTATE is not set
87736 -# CONFIG_VIDEO_OUTPUT_CONTROL is not set
87737 -# CONFIG_FB is not set
87738 -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
87739 -
87740 -#
87741 -# Display device support
87742 -#
87743 -# CONFIG_DISPLAY_SUPPORT is not set
87744 -
87745 -#
87746 -# Sound
87747 -#
87748 -# CONFIG_SOUND is not set
87749 -CONFIG_USB_SUPPORT=y
87750 -CONFIG_USB_ARCH_HAS_HCD=y
87751 -CONFIG_USB_ARCH_HAS_OHCI=y
87752 -# CONFIG_USB_ARCH_HAS_EHCI is not set
87753 -CONFIG_USB=y
87754 -# CONFIG_USB_DEBUG is not set
87755 -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
87756 -
87757 -#
87758 -# Miscellaneous USB options
87759 -#
87760 -# CONFIG_USB_DEVICEFS is not set
87761 -CONFIG_USB_DEVICE_CLASS=y
87762 -# CONFIG_USB_DYNAMIC_MINORS is not set
87763 -# CONFIG_USB_OTG is not set
87764 -
87765 -#
87766 -# USB Host Controller Drivers
87767 -#
87768 -# CONFIG_USB_ISP116X_HCD is not set
87769 -CONFIG_USB_OHCI_HCD=y
87770 -CONFIG_USB_OHCI_HCD_PPC_OF=y
87771 -CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
87772 -# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set
87773 -CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y
87774 -CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y
87775 -CONFIG_USB_OHCI_LITTLE_ENDIAN=y
87776 -# CONFIG_USB_SL811_HCD is not set
87777 -# CONFIG_USB_R8A66597_HCD is not set
87778 -
87779 -#
87780 -# USB Device Class drivers
87781 -#
87782 -# CONFIG_USB_ACM is not set
87783 -# CONFIG_USB_PRINTER is not set
87784 -
87785 -#
87786 -# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
87787 -#
87788 -
87789 -#
87790 -# may also be needed; see USB_STORAGE Help for more information
87791 -#
87792 -CONFIG_USB_STORAGE=y
87793 -# CONFIG_USB_STORAGE_DEBUG is not set
87794 -# CONFIG_USB_STORAGE_DATAFAB is not set
87795 -# CONFIG_USB_STORAGE_FREECOM is not set
87796 -# CONFIG_USB_STORAGE_ISD200 is not set
87797 -# CONFIG_USB_STORAGE_DPCM is not set
87798 -# CONFIG_USB_STORAGE_USBAT is not set
87799 -# CONFIG_USB_STORAGE_SDDR09 is not set
87800 -# CONFIG_USB_STORAGE_SDDR55 is not set
87801 -# CONFIG_USB_STORAGE_JUMPSHOT is not set
87802 -# CONFIG_USB_STORAGE_ALAUDA is not set
87803 -# CONFIG_USB_STORAGE_KARMA is not set
87804 -# CONFIG_USB_LIBUSUAL is not set
87805 -
87806 -#
87807 -# USB Imaging devices
87808 -#
87809 -# CONFIG_USB_MDC800 is not set
87810 -# CONFIG_USB_MICROTEK is not set
87811 -CONFIG_USB_MON=y
87812 -
87813 -#
87814 -# USB port drivers
87815 -#
87816 -# CONFIG_USB_SERIAL is not set
87817 -
87818 -#
87819 -# USB Miscellaneous drivers
87820 -#
87821 -# CONFIG_USB_EMI62 is not set
87822 -# CONFIG_USB_EMI26 is not set
87823 -# CONFIG_USB_ADUTUX is not set
87824 -# CONFIG_USB_AUERSWALD is not set
87825 -# CONFIG_USB_RIO500 is not set
87826 -# CONFIG_USB_LEGOTOWER is not set
87827 -# CONFIG_USB_LCD is not set
87828 -# CONFIG_USB_BERRY_CHARGE is not set
87829 -# CONFIG_USB_LED is not set
87830 -# CONFIG_USB_CYPRESS_CY7C63 is not set
87831 -# CONFIG_USB_CYTHERM is not set
87832 -# CONFIG_USB_PHIDGET is not set
87833 -# CONFIG_USB_IDMOUSE is not set
87834 -# CONFIG_USB_FTDI_ELAN is not set
87835 -# CONFIG_USB_APPLEDISPLAY is not set
87836 -# CONFIG_USB_LD is not set
87837 -# CONFIG_USB_TRANCEVIBRATOR is not set
87838 -# CONFIG_USB_IOWARRIOR is not set
87839 -# CONFIG_USB_GADGET is not set
87840 -CONFIG_MMC=m
87841 -# CONFIG_MMC_DEBUG is not set
87842 -# CONFIG_MMC_UNSAFE_RESUME is not set
87843 -
87844 -#
87845 -# MMC/SD Card Drivers
87846 -#
87847 -CONFIG_MMC_BLOCK=m
87848 -CONFIG_MMC_BLOCK_BOUNCE=y
87849 -# CONFIG_SDIO_UART is not set
87850 -
87851 -#
87852 -# MMC/SD Host Controller Drivers
87853 -#
87854 -# CONFIG_MMC_WBSD is not set
87855 -# CONFIG_MEMSTICK is not set
87856 -# CONFIG_NEW_LEDS is not set
87857 -# CONFIG_EDAC is not set
87858 -# CONFIG_RTC_CLASS is not set
87859 -
87860 -#
87861 -# Userspace I/O
87862 -#
87863 -# CONFIG_UIO is not set
87864 -
87865 -#
87866 -# File systems
87867 -#
87868 -CONFIG_EXT2_FS=y
87869 -# CONFIG_EXT2_FS_XATTR is not set
87870 -# CONFIG_EXT2_FS_XIP is not set
87871 -# CONFIG_EXT3_FS is not set
87872 -# CONFIG_EXT4DEV_FS is not set
87873 -# CONFIG_REISERFS_FS is not set
87874 -# CONFIG_JFS_FS is not set
87875 -# CONFIG_FS_POSIX_ACL is not set
87876 -# CONFIG_XFS_FS is not set
87877 -# CONFIG_GFS2_FS is not set
87878 -# CONFIG_OCFS2_FS is not set
87879 -CONFIG_DNOTIFY=y
87880 -CONFIG_INOTIFY=y
87881 -CONFIG_INOTIFY_USER=y
87882 -# CONFIG_QUOTA is not set
87883 -# CONFIG_AUTOFS_FS is not set
87884 -# CONFIG_AUTOFS4_FS is not set
87885 -# CONFIG_FUSE_FS is not set
87886 -
87887 -#
87888 -# CD-ROM/DVD Filesystems
87889 -#
87890 -# CONFIG_ISO9660_FS is not set
87891 -# CONFIG_UDF_FS is not set
87892 -
87893 -#
87894 -# DOS/FAT/NT Filesystems
87895 -#
87896 -CONFIG_FAT_FS=y
87897 -CONFIG_MSDOS_FS=y
87898 -CONFIG_VFAT_FS=y
87899 -CONFIG_FAT_DEFAULT_CODEPAGE=437
87900 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
87901 -# CONFIG_NTFS_FS is not set
87902 -
87903 -#
87904 -# Pseudo filesystems
87905 -#
87906 -CONFIG_PROC_FS=y
87907 -CONFIG_PROC_KCORE=y
87908 -CONFIG_PROC_SYSCTL=y
87909 -CONFIG_SYSFS=y
87910 -# CONFIG_TMPFS is not set
87911 -# CONFIG_HUGETLB_PAGE is not set
87912 -# CONFIG_CONFIGFS_FS is not set
87913 -
87914 -#
87915 -# Miscellaneous filesystems
87916 -#
87917 -# CONFIG_ADFS_FS is not set
87918 -# CONFIG_AFFS_FS is not set
87919 -# CONFIG_HFS_FS is not set
87920 -# CONFIG_HFSPLUS_FS is not set
87921 -# CONFIG_BEFS_FS is not set
87922 -# CONFIG_BFS_FS is not set
87923 -# CONFIG_EFS_FS is not set
87924 -CONFIG_JFFS2_FS=y
87925 -CONFIG_JFFS2_FS_DEBUG=0
87926 -CONFIG_JFFS2_FS_WRITEBUFFER=y
87927 -# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
87928 -# CONFIG_JFFS2_SUMMARY is not set
87929 -# CONFIG_JFFS2_FS_XATTR is not set
87930 -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
87931 -CONFIG_JFFS2_ZLIB=y
87932 -# CONFIG_JFFS2_LZO is not set
87933 -CONFIG_JFFS2_RTIME=y
87934 -# CONFIG_JFFS2_RUBIN is not set
87935 -CONFIG_CRAMFS=y
87936 -# CONFIG_VXFS_FS is not set
87937 -# CONFIG_MINIX_FS is not set
87938 -# CONFIG_HPFS_FS is not set
87939 -# CONFIG_QNX4FS_FS is not set
87940 -# CONFIG_ROMFS_FS is not set
87941 -# CONFIG_SYSV_FS is not set
87942 -# CONFIG_UFS_FS is not set
87943 -CONFIG_NETWORK_FILESYSTEMS=y
87944 -CONFIG_NFS_FS=y
87945 -CONFIG_NFS_V3=y
87946 -# CONFIG_NFS_V3_ACL is not set
87947 -# CONFIG_NFS_V4 is not set
87948 -# CONFIG_NFS_DIRECTIO is not set
87949 -# CONFIG_NFSD is not set
87950 -CONFIG_ROOT_NFS=y
87951 -CONFIG_LOCKD=y
87952 -CONFIG_LOCKD_V4=y
87953 -CONFIG_NFS_COMMON=y
87954 -CONFIG_SUNRPC=y
87955 -# CONFIG_SUNRPC_BIND34 is not set
87956 -# CONFIG_RPCSEC_GSS_KRB5 is not set
87957 -# CONFIG_RPCSEC_GSS_SPKM3 is not set
87958 -# CONFIG_SMB_FS is not set
87959 -# CONFIG_CIFS is not set
87960 -# CONFIG_NCP_FS is not set
87961 -# CONFIG_CODA_FS is not set
87962 -# CONFIG_AFS_FS is not set
87963 -
87964 -#
87965 -# Partition Types
87966 -#
87967 -# CONFIG_PARTITION_ADVANCED is not set
87968 -CONFIG_MSDOS_PARTITION=y
87969 -CONFIG_NLS=y
87970 -CONFIG_NLS_DEFAULT="iso8859-1"
87971 -CONFIG_NLS_CODEPAGE_437=y
87972 -# CONFIG_NLS_CODEPAGE_737 is not set
87973 -# CONFIG_NLS_CODEPAGE_775 is not set
87974 -CONFIG_NLS_CODEPAGE_850=y
87975 -# CONFIG_NLS_CODEPAGE_852 is not set
87976 -# CONFIG_NLS_CODEPAGE_855 is not set
87977 -# CONFIG_NLS_CODEPAGE_857 is not set
87978 -# CONFIG_NLS_CODEPAGE_860 is not set
87979 -# CONFIG_NLS_CODEPAGE_861 is not set
87980 -# CONFIG_NLS_CODEPAGE_862 is not set
87981 -# CONFIG_NLS_CODEPAGE_863 is not set
87982 -# CONFIG_NLS_CODEPAGE_864 is not set
87983 -# CONFIG_NLS_CODEPAGE_865 is not set
87984 -# CONFIG_NLS_CODEPAGE_866 is not set
87985 -# CONFIG_NLS_CODEPAGE_869 is not set
87986 -# CONFIG_NLS_CODEPAGE_936 is not set
87987 -# CONFIG_NLS_CODEPAGE_950 is not set
87988 -# CONFIG_NLS_CODEPAGE_932 is not set
87989 -# CONFIG_NLS_CODEPAGE_949 is not set
87990 -# CONFIG_NLS_CODEPAGE_874 is not set
87991 -# CONFIG_NLS_ISO8859_8 is not set
87992 -# CONFIG_NLS_CODEPAGE_1250 is not set
87993 -# CONFIG_NLS_CODEPAGE_1251 is not set
87994 -CONFIG_NLS_ASCII=y
87995 -CONFIG_NLS_ISO8859_1=y
87996 -# CONFIG_NLS_ISO8859_2 is not set
87997 -# CONFIG_NLS_ISO8859_3 is not set
87998 -# CONFIG_NLS_ISO8859_4 is not set
87999 -# CONFIG_NLS_ISO8859_5 is not set
88000 -# CONFIG_NLS_ISO8859_6 is not set
88001 -# CONFIG_NLS_ISO8859_7 is not set
88002 -# CONFIG_NLS_ISO8859_9 is not set
88003 -# CONFIG_NLS_ISO8859_13 is not set
88004 -# CONFIG_NLS_ISO8859_14 is not set
88005 -CONFIG_NLS_ISO8859_15=y
88006 -# CONFIG_NLS_KOI8_R is not set
88007 -# CONFIG_NLS_KOI8_U is not set
88008 -CONFIG_NLS_UTF8=y
88009 -# CONFIG_DLM is not set
88010 -
88011 -#
88012 -# Library routines
88013 -#
88014 -CONFIG_BITREVERSE=y
88015 -CONFIG_CRC_CCITT=y
88016 -# CONFIG_CRC16 is not set
88017 -# CONFIG_CRC_ITU_T is not set
88018 -CONFIG_CRC32=y
88019 -# CONFIG_CRC7 is not set
88020 -# CONFIG_LIBCRC32C is not set
88021 -CONFIG_ZLIB_INFLATE=y
88022 -CONFIG_ZLIB_DEFLATE=y
88023 -CONFIG_PLIST=y
88024 -CONFIG_HAS_IOMEM=y
88025 -CONFIG_HAS_IOPORT=y
88026 -CONFIG_HAS_DMA=y
88027 -
88028 -#
88029 -# Kernel hacking
88030 -#
88031 -# CONFIG_PRINTK_TIME is not set
88032 -CONFIG_ENABLE_WARN_DEPRECATED=y
88033 -CONFIG_ENABLE_MUST_CHECK=y
88034 -CONFIG_MAGIC_SYSRQ=y
88035 -# CONFIG_UNUSED_SYMBOLS is not set
88036 -CONFIG_DEBUG_FS=y
88037 -# CONFIG_HEADERS_CHECK is not set
88038 -CONFIG_DEBUG_KERNEL=y
88039 -# CONFIG_DEBUG_SHIRQ is not set
88040 -CONFIG_DETECT_SOFTLOCKUP=y
88041 -# CONFIG_SCHED_DEBUG is not set
88042 -# CONFIG_SCHEDSTATS is not set
88043 -# CONFIG_TIMER_STATS is not set
88044 -# CONFIG_DEBUG_SLAB is not set
88045 -# CONFIG_DEBUG_RT_MUTEXES is not set
88046 -# CONFIG_RT_MUTEX_TESTER is not set
88047 -# CONFIG_DEBUG_SPINLOCK is not set
88048 -# CONFIG_DEBUG_MUTEXES is not set
88049 -# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
88050 -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
88051 -# CONFIG_DEBUG_KOBJECT is not set
88052 -# CONFIG_DEBUG_BUGVERBOSE is not set
88053 -CONFIG_DEBUG_INFO=y
88054 -# CONFIG_DEBUG_VM is not set
88055 -# CONFIG_DEBUG_LIST is not set
88056 -# CONFIG_DEBUG_SG is not set
88057 -# CONFIG_BOOT_PRINTK_DELAY is not set
88058 -# CONFIG_RCU_TORTURE_TEST is not set
88059 -# CONFIG_BACKTRACE_SELF_TEST is not set
88060 -# CONFIG_FAULT_INJECTION is not set
88061 -# CONFIG_SAMPLES is not set
88062 -# CONFIG_DEBUG_STACKOVERFLOW is not set
88063 -# CONFIG_DEBUG_STACK_USAGE is not set
88064 -# CONFIG_DEBUG_PAGEALLOC is not set
88065 -# CONFIG_DEBUGGER is not set
88066 -# CONFIG_VIRQ_DEBUG is not set
88067 -CONFIG_BDI_SWITCH=y
88068 -# CONFIG_PPC_EARLY_DEBUG is not set
88069 -
88070 -#
88071 -# Security options
88072 -#
88073 -# CONFIG_KEYS is not set
88074 -# CONFIG_SECURITY is not set
88075 -# CONFIG_SECURITY_FILE_CAPABILITIES is not set
88076 -CONFIG_CRYPTO=y
88077 -# CONFIG_CRYPTO_SEQIV is not set
88078 -# CONFIG_CRYPTO_MANAGER is not set
88079 -# CONFIG_CRYPTO_HMAC is not set
88080 -# CONFIG_CRYPTO_XCBC is not set
88081 -# CONFIG_CRYPTO_NULL is not set
88082 -# CONFIG_CRYPTO_MD4 is not set
88083 -# CONFIG_CRYPTO_MD5 is not set
88084 -# CONFIG_CRYPTO_SHA1 is not set
88085 -# CONFIG_CRYPTO_SHA256 is not set
88086 -# CONFIG_CRYPTO_SHA512 is not set
88087 -# CONFIG_CRYPTO_WP512 is not set
88088 -# CONFIG_CRYPTO_TGR192 is not set
88089 -# CONFIG_CRYPTO_GF128MUL is not set
88090 -# CONFIG_CRYPTO_ECB is not set
88091 -# CONFIG_CRYPTO_CBC is not set
88092 -# CONFIG_CRYPTO_PCBC is not set
88093 -# CONFIG_CRYPTO_LRW is not set
88094 -# CONFIG_CRYPTO_XTS is not set
88095 -# CONFIG_CRYPTO_CTR is not set
88096 -# CONFIG_CRYPTO_GCM is not set
88097 -# CONFIG_CRYPTO_CCM is not set
88098 -# CONFIG_CRYPTO_CRYPTD is not set
88099 -# CONFIG_CRYPTO_DES is not set
88100 -# CONFIG_CRYPTO_FCRYPT is not set
88101 -# CONFIG_CRYPTO_BLOWFISH is not set
88102 -# CONFIG_CRYPTO_TWOFISH is not set
88103 -# CONFIG_CRYPTO_SERPENT is not set
88104 -# CONFIG_CRYPTO_AES is not set
88105 -# CONFIG_CRYPTO_CAST5 is not set
88106 -# CONFIG_CRYPTO_CAST6 is not set
88107 -# CONFIG_CRYPTO_TEA is not set
88108 -# CONFIG_CRYPTO_ARC4 is not set
88109 -# CONFIG_CRYPTO_KHAZAD is not set
88110 -# CONFIG_CRYPTO_ANUBIS is not set
88111 -# CONFIG_CRYPTO_SEED is not set
88112 -# CONFIG_CRYPTO_SALSA20 is not set
88113 -# CONFIG_CRYPTO_DEFLATE is not set
88114 -# CONFIG_CRYPTO_MICHAEL_MIC is not set
88115 -# CONFIG_CRYPTO_CRC32C is not set
88116 -# CONFIG_CRYPTO_CAMELLIA is not set
88117 -# CONFIG_CRYPTO_TEST is not set
88118 -# CONFIG_CRYPTO_AUTHENC is not set
88119 -# CONFIG_CRYPTO_LZO is not set
88120 -CONFIG_CRYPTO_HW=y
88121 -# CONFIG_PPC_CLOCK is not set
88122 Index: linux-2.6.25.4/arch/powerpc/kernel/Makefile
88123 ===================================================================
88124 --- linux-2.6.25.4.orig/arch/powerpc/kernel/Makefile
88125 +++ linux-2.6.25.4/arch/powerpc/kernel/Makefile
88126 @@ -67,6 +67,7 @@ obj-$(CONFIG_BOOTX_TEXT) += btext.o
88127 obj-$(CONFIG_SMP) += smp.o
88128 obj-$(CONFIG_KPROBES) += kprobes.o
88129 obj-$(CONFIG_PPC_UDBG_16550) += legacy_serial.o udbg_16550.o
88130 +obj-$(CONFIG_STACKTRACE) += stacktrace.o
88131
88132 pci64-$(CONFIG_PPC64) += pci_dn.o isa-bridge.o
88133 obj-$(CONFIG_PCI) += pci_$(CONFIG_WORD_SIZE).o $(pci64-y) \
88134 Index: linux-2.6.25.4/arch/powerpc/kernel/asm-offsets.c
88135 ===================================================================
88136 --- linux-2.6.25.4.orig/arch/powerpc/kernel/asm-offsets.c
88137 +++ linux-2.6.25.4/arch/powerpc/kernel/asm-offsets.c
88138 @@ -26,8 +26,6 @@
88139 #ifdef CONFIG_PPC64
88140 #include <linux/time.h>
88141 #include <linux/hardirq.h>
88142 -#else
88143 -#include <linux/ptrace.h>
88144 #endif
88145
88146 #include <asm/io.h>
88147 @@ -46,6 +44,9 @@
88148 #include <asm/mmu.h>
88149 #include <asm/hvcall.h>
88150 #endif
88151 +#ifdef CONFIG_PPC_ISERIES
88152 +#include <asm/iseries/alpaca.h>
88153 +#endif
88154
88155 #define DEFINE(sym, val) \
88156 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
88157 @@ -60,7 +61,6 @@ int main(void)
88158 DEFINE(AUDITCONTEXT, offsetof(struct task_struct, audit_context));
88159 #else
88160 DEFINE(THREAD_INFO, offsetof(struct task_struct, stack));
88161 - DEFINE(PTRACE, offsetof(struct task_struct, ptrace));
88162 #endif /* CONFIG_PPC64 */
88163
88164 DEFINE(KSP, offsetof(struct thread_struct, ksp));
88165 @@ -80,7 +80,6 @@ int main(void)
88166 DEFINE(PGDIR, offsetof(struct thread_struct, pgdir));
88167 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
88168 DEFINE(THREAD_DBCR0, offsetof(struct thread_struct, dbcr0));
88169 - DEFINE(PT_PTRACED, PT_PTRACED);
88170 #endif
88171 #ifdef CONFIG_SPE
88172 DEFINE(THREAD_EVR0, offsetof(struct thread_struct, evr[0]));
88173 @@ -325,6 +324,9 @@ int main(void)
88174 DEFINE(PAGE_OFFSET_VSID, KERNEL_VSID(PAGE_OFFSET));
88175 DEFINE(VMALLOC_START_ESID, GET_ESID(VMALLOC_START));
88176 DEFINE(VMALLOC_START_VSID, KERNEL_VSID(VMALLOC_START));
88177 +
88178 + /* alpaca */
88179 + DEFINE(ALPACA_SIZE, sizeof(struct alpaca));
88180 #endif
88181
88182 DEFINE(PGD_TABLE_SIZE, PGD_TABLE_SIZE);
88183 Index: linux-2.6.25.4/arch/powerpc/kernel/btext.c
88184 ===================================================================
88185 --- linux-2.6.25.4.orig/arch/powerpc/kernel/btext.c
88186 +++ linux-2.6.25.4/arch/powerpc/kernel/btext.c
88187 @@ -7,6 +7,7 @@
88188 #include <linux/string.h>
88189 #include <linux/init.h>
88190 #include <linux/module.h>
88191 +#include <linux/lmb.h>
88192
88193 #include <asm/sections.h>
88194 #include <asm/prom.h>
88195 @@ -15,7 +16,7 @@
88196 #include <asm/mmu.h>
88197 #include <asm/pgtable.h>
88198 #include <asm/io.h>
88199 -#include <asm/lmb.h>
88200 +#include <asm/prom.h>
88201 #include <asm/processor.h>
88202 #include <asm/udbg.h>
88203
88204 Index: linux-2.6.25.4/arch/powerpc/kernel/cpu_setup_44x.S
88205 ===================================================================
88206 --- linux-2.6.25.4.orig/arch/powerpc/kernel/cpu_setup_44x.S
88207 +++ linux-2.6.25.4/arch/powerpc/kernel/cpu_setup_44x.S
88208 @@ -3,7 +3,7 @@
88209 * Valentine Barshak <vbarshak@ru.mvista.com>
88210 * MontaVista Software, Inc (c) 2007
88211 *
88212 - * Based on cpu_setup_6xx code by
88213 + * Based on cpu_setup_6xx code by
88214 * Benjamin Herrenschmidt <benh@kernel.crashing.org>
88215 *
88216 * This program is free software; you can redistribute it and/or
88217 @@ -32,6 +32,9 @@ _GLOBAL(__setup_cpu_440grx)
88218 bl __fixup_440A_mcheck
88219 mtlr r4
88220 blr
88221 +_GLOBAL(__setup_cpu_460ex)
88222 +_GLOBAL(__setup_cpu_460gt)
88223 + b __init_fpu_44x
88224 _GLOBAL(__setup_cpu_440gx)
88225 _GLOBAL(__setup_cpu_440spe)
88226 b __fixup_440A_mcheck
88227 Index: linux-2.6.25.4/arch/powerpc/kernel/cputable.c
88228 ===================================================================
88229 --- linux-2.6.25.4.orig/arch/powerpc/kernel/cputable.c
88230 +++ linux-2.6.25.4/arch/powerpc/kernel/cputable.c
88231 @@ -36,6 +36,8 @@ extern void __setup_cpu_440epx(unsigned
88232 extern void __setup_cpu_440gx(unsigned long offset, struct cpu_spec* spec);
88233 extern void __setup_cpu_440grx(unsigned long offset, struct cpu_spec* spec);
88234 extern void __setup_cpu_440spe(unsigned long offset, struct cpu_spec* spec);
88235 +extern void __setup_cpu_460ex(unsigned long offset, struct cpu_spec* spec);
88236 +extern void __setup_cpu_460gt(unsigned long offset, struct cpu_spec* spec);
88237 extern void __setup_cpu_603(unsigned long offset, struct cpu_spec* spec);
88238 extern void __setup_cpu_604(unsigned long offset, struct cpu_spec* spec);
88239 extern void __setup_cpu_750(unsigned long offset, struct cpu_spec* spec);
88240 @@ -1397,6 +1399,30 @@ static struct cpu_spec __initdata cpu_sp
88241 .machine_check = machine_check_440A,
88242 .platform = "ppc440",
88243 },
88244 + { /* 460EX */
88245 + .pvr_mask = 0xffff0002,
88246 + .pvr_value = 0x13020002,
88247 + .cpu_name = "460EX",
88248 + .cpu_features = CPU_FTRS_44X,
88249 + .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
88250 + .icache_bsize = 32,
88251 + .dcache_bsize = 32,
88252 + .cpu_setup = __setup_cpu_460ex,
88253 + .machine_check = machine_check_440A,
88254 + .platform = "ppc440",
88255 + },
88256 + { /* 460GT */
88257 + .pvr_mask = 0xffff0002,
88258 + .pvr_value = 0x13020000,
88259 + .cpu_name = "460GT",
88260 + .cpu_features = CPU_FTRS_44X,
88261 + .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
88262 + .icache_bsize = 32,
88263 + .dcache_bsize = 32,
88264 + .cpu_setup = __setup_cpu_460gt,
88265 + .machine_check = machine_check_440A,
88266 + .platform = "ppc440",
88267 + },
88268 #endif /* CONFIG_44x */
88269 #ifdef CONFIG_FSL_BOOKE
88270 #ifdef CONFIG_E200
88271 @@ -1512,7 +1538,7 @@ struct cpu_spec * __init identify_cpu(un
88272 *t = *s;
88273 *PTRRELOC(&cur_cpu_spec) = &the_cpu_spec;
88274 #if defined(CONFIG_PPC64) || defined(CONFIG_BOOKE)
88275 - /* ppc64 and booke expect identify_cpu to also call
88276 + /* ppc64 and booke expect identify_cpu to also call
88277 * setup_cpu for that processor. I will consolidate
88278 * that at a later time, for now, just use #ifdef.
88279 * we also don't need to PTRRELOC the function pointer
88280 Index: linux-2.6.25.4/arch/powerpc/kernel/crash.c
88281 ===================================================================
88282 --- linux-2.6.25.4.orig/arch/powerpc/kernel/crash.c
88283 +++ linux-2.6.25.4/arch/powerpc/kernel/crash.c
88284 @@ -24,12 +24,13 @@
88285 #include <linux/init.h>
88286 #include <linux/irq.h>
88287 #include <linux/types.h>
88288 +#include <linux/lmb.h>
88289
88290 #include <asm/processor.h>
88291 #include <asm/machdep.h>
88292 #include <asm/kexec.h>
88293 #include <asm/kdump.h>
88294 -#include <asm/lmb.h>
88295 +#include <asm/prom.h>
88296 #include <asm/firmware.h>
88297 #include <asm/smp.h>
88298 #include <asm/system.h>
88299 Index: linux-2.6.25.4/arch/powerpc/kernel/crash_dump.c
88300 ===================================================================
88301 --- linux-2.6.25.4.orig/arch/powerpc/kernel/crash_dump.c
88302 +++ linux-2.6.25.4/arch/powerpc/kernel/crash_dump.c
88303 @@ -13,8 +13,9 @@
88304
88305 #include <linux/crash_dump.h>
88306 #include <linux/bootmem.h>
88307 +#include <linux/lmb.h>
88308 #include <asm/kdump.h>
88309 -#include <asm/lmb.h>
88310 +#include <asm/prom.h>
88311 #include <asm/firmware.h>
88312 #include <asm/uaccess.h>
88313
88314 Index: linux-2.6.25.4/arch/powerpc/kernel/entry_32.S
88315 ===================================================================
88316 --- linux-2.6.25.4.orig/arch/powerpc/kernel/entry_32.S
88317 +++ linux-2.6.25.4/arch/powerpc/kernel/entry_32.S
88318 @@ -110,9 +110,9 @@ transfer_to_handler:
88319 stw r11,PT_REGS(r12)
88320 #if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
88321 /* Check to see if the dbcr0 register is set up to debug. Use the
88322 - single-step bit to do this. */
88323 + internal debug mode bit to do this. */
88324 lwz r12,THREAD_DBCR0(r12)
88325 - andis. r12,r12,DBCR0_IC@h
88326 + andis. r12,r12,DBCR0_IDM@h
88327 beq+ 3f
88328 /* From user and task is ptraced - load up global dbcr0 */
88329 li r12,-1 /* clear all pending debug events */
88330 @@ -120,6 +120,12 @@ transfer_to_handler:
88331 lis r11,global_dbcr0@ha
88332 tophys(r11,r11)
88333 addi r11,r11,global_dbcr0@l
88334 +#ifdef CONFIG_SMP
88335 + rlwinm r9,r1,0,0,(31-THREAD_SHIFT)
88336 + lwz r9,TI_CPU(r9)
88337 + slwi r9,r9,3
88338 + add r11,r11,r9
88339 +#endif
88340 lwz r12,0(r11)
88341 mtspr SPRN_DBCR0,r12
88342 lwz r12,4(r11)
88343 @@ -238,10 +244,10 @@ ret_from_syscall:
88344 stw r11,_CCR(r1)
88345 syscall_exit_cont:
88346 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
88347 - /* If the process has its own DBCR0 value, load it up. The single
88348 - step bit tells us that dbcr0 should be loaded. */
88349 + /* If the process has its own DBCR0 value, load it up. The internal
88350 + debug mode bit tells us that dbcr0 should be loaded. */
88351 lwz r0,THREAD+THREAD_DBCR0(r2)
88352 - andis. r10,r0,DBCR0_IC@h
88353 + andis. r10,r0,DBCR0_IDM@h
88354 bnel- load_dbcr0
88355 #endif
88356 #ifdef CONFIG_44x
88357 @@ -666,10 +672,10 @@ user_exc_return: /* r10 contains MSR_KE
88358
88359 restore_user:
88360 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
88361 - /* Check whether this process has its own DBCR0 value. The single
88362 - step bit tells us that dbcr0 should be loaded. */
88363 + /* Check whether this process has its own DBCR0 value. The internal
88364 + debug mode bit tells us that dbcr0 should be loaded. */
88365 lwz r0,THREAD+THREAD_DBCR0(r2)
88366 - andis. r10,r0,DBCR0_IC@h
88367 + andis. r10,r0,DBCR0_IDM@h
88368 bnel- load_dbcr0
88369 #endif
88370
88371 @@ -879,6 +885,12 @@ load_dbcr0:
88372 mfspr r10,SPRN_DBCR0
88373 lis r11,global_dbcr0@ha
88374 addi r11,r11,global_dbcr0@l
88375 +#ifdef CONFIG_SMP
88376 + rlwinm r9,r1,0,0,(31-THREAD_SHIFT)
88377 + lwz r9,TI_CPU(r9)
88378 + slwi r9,r9,3
88379 + add r11,r11,r9
88380 +#endif
88381 stw r10,0(r11)
88382 mtspr SPRN_DBCR0,r0
88383 lwz r10,4(r11)
88384 @@ -891,7 +903,7 @@ load_dbcr0:
88385 .section .bss
88386 .align 4
88387 global_dbcr0:
88388 - .space 8
88389 + .space 8*NR_CPUS
88390 .previous
88391 #endif /* !(CONFIG_4xx || CONFIG_BOOKE) */
88392
88393 Index: linux-2.6.25.4/arch/powerpc/kernel/entry_64.S
88394 ===================================================================
88395 --- linux-2.6.25.4.orig/arch/powerpc/kernel/entry_64.S
88396 +++ linux-2.6.25.4/arch/powerpc/kernel/entry_64.S
88397 @@ -29,6 +29,8 @@
88398 #include <asm/cputable.h>
88399 #include <asm/firmware.h>
88400 #include <asm/bug.h>
88401 +#include <asm/ptrace.h>
88402 +#include <asm/irqflags.h>
88403
88404 /*
88405 * System calls.
88406 @@ -39,7 +41,7 @@
88407
88408 /* This value is used to mark exception frames on the stack. */
88409 exception_marker:
88410 - .tc ID_72656773_68657265[TC],0x7265677368657265
88411 + .tc ID_EXC_MARKER[TC],STACK_FRAME_REGS_MARKER
88412
88413 .section ".text"
88414 .align 7
88415 @@ -88,6 +90,14 @@ system_call_common:
88416 addi r9,r1,STACK_FRAME_OVERHEAD
88417 ld r11,exception_marker@toc(r2)
88418 std r11,-16(r9) /* "regshere" marker */
88419 +#ifdef CONFIG_TRACE_IRQFLAGS
88420 + bl .trace_hardirqs_on
88421 + REST_GPR(0,r1)
88422 + REST_4GPRS(3,r1)
88423 + REST_2GPRS(7,r1)
88424 + addi r9,r1,STACK_FRAME_OVERHEAD
88425 + ld r12,_MSR(r1)
88426 +#endif /* CONFIG_TRACE_IRQFLAGS */
88427 li r10,1
88428 stb r10,PACASOFTIRQEN(r13)
88429 stb r10,PACAHARDIRQEN(r13)
88430 @@ -102,7 +112,7 @@ BEGIN_FW_FTR_SECTION
88431 b hardware_interrupt_entry
88432 2:
88433 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
88434 -#endif
88435 +#endif /* CONFIG_PPC_ISERIES */
88436 mfmsr r11
88437 ori r11,r11,MSR_EE
88438 mtmsrd r11,1
88439 @@ -504,6 +514,10 @@ BEGIN_FW_FTR_SECTION
88440
88441 li r3,0
88442 stb r3,PACASOFTIRQEN(r13) /* ensure we are soft-disabled */
88443 +#ifdef CONFIG_TRACE_IRQFLAGS
88444 + bl .trace_hardirqs_off
88445 + mfmsr r10
88446 +#endif
88447 ori r10,r10,MSR_EE
88448 mtmsrd r10 /* hard-enable again */
88449 addi r3,r1,STACK_FRAME_OVERHEAD
88450 @@ -512,7 +526,7 @@ BEGIN_FW_FTR_SECTION
88451 4:
88452 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
88453 #endif
88454 - stb r5,PACASOFTIRQEN(r13)
88455 + TRACE_AND_RESTORE_IRQ(r5);
88456
88457 /* extract EE bit and use it to restore paca->hard_enabled */
88458 ld r3,_MSR(r1)
88459 @@ -580,6 +594,16 @@ do_work:
88460 bne restore
88461 /* here we are preempting the current task */
88462 1:
88463 +#ifdef CONFIG_TRACE_IRQFLAGS
88464 + bl .trace_hardirqs_on
88465 + /* Note: we just clobbered r10 which used to contain the previous
88466 + * MSR before the hard-disabling done by the caller of do_work.
88467 + * We don't have that value anymore, but it doesn't matter as
88468 + * we will hard-enable unconditionally, we can just reload the
88469 + * current MSR into r10
88470 + */
88471 + mfmsr r10
88472 +#endif /* CONFIG_TRACE_IRQFLAGS */
88473 li r0,1
88474 stb r0,PACASOFTIRQEN(r13)
88475 stb r0,PACAHARDIRQEN(r13)
88476 Index: linux-2.6.25.4/arch/powerpc/kernel/head_32.S
88477 ===================================================================
88478 --- linux-2.6.25.4.orig/arch/powerpc/kernel/head_32.S
88479 +++ linux-2.6.25.4/arch/powerpc/kernel/head_32.S
88480 @@ -30,6 +30,7 @@
88481 #include <asm/thread_info.h>
88482 #include <asm/ppc_asm.h>
88483 #include <asm/asm-offsets.h>
88484 +#include <asm/ptrace.h>
88485
88486 /* 601 only have IBAT; cr0.eq is set on 601 when using this macro */
88487 #define LOAD_BAT(n, reg, RA, RB) \
88488 @@ -268,8 +269,8 @@ __secondary_hold_acknowledge:
88489 li r10,MSR_KERNEL & ~(MSR_IR|MSR_DR); /* can take exceptions */ \
88490 MTMSRD(r10); /* (except for mach check in rtas) */ \
88491 stw r0,GPR0(r11); \
88492 - lis r10,0x7265; /* put exception frame marker */ \
88493 - addi r10,r10,0x6773; \
88494 + lis r10,STACK_FRAME_REGS_MARKER@ha; /* exception frame marker */ \
88495 + addi r10,r10,STACK_FRAME_REGS_MARKER@l; \
88496 stw r10,8(r11); \
88497 SAVE_4GPRS(3, r11); \
88498 SAVE_2GPRS(7, r11)
88499 @@ -763,23 +764,6 @@ load_up_altivec:
88500 b fast_exception_return
88501
88502 /*
88503 - * AltiVec unavailable trap from kernel - print a message, but let
88504 - * the task use AltiVec in the kernel until it returns to user mode.
88505 - */
88506 -KernelAltiVec:
88507 - lwz r3,_MSR(r1)
88508 - oris r3,r3,MSR_VEC@h
88509 - stw r3,_MSR(r1) /* enable use of AltiVec after return */
88510 - lis r3,87f@h
88511 - ori r3,r3,87f@l
88512 - mr r4,r2 /* current */
88513 - lwz r5,_NIP(r1)
88514 - bl printk
88515 - b ret_from_except
88516 -87: .string "AltiVec used in kernel (task=%p, pc=%x) \n"
88517 - .align 4,0
88518 -
88519 -/*
88520 * giveup_altivec(tsk)
88521 * Disable AltiVec for the task given as the argument,
88522 * and save the AltiVec registers in its thread_struct.
88523 Index: linux-2.6.25.4/arch/powerpc/kernel/head_44x.S
88524 ===================================================================
88525 --- linux-2.6.25.4.orig/arch/powerpc/kernel/head_44x.S
88526 +++ linux-2.6.25.4/arch/powerpc/kernel/head_44x.S
88527 @@ -211,7 +211,7 @@ skpinv: addi r4,r4,1 /* Increment */
88528 SET_IVOR(12, WatchdogTimer);
88529 SET_IVOR(13, DataTLBError);
88530 SET_IVOR(14, InstructionTLBError);
88531 - SET_IVOR(15, Debug);
88532 + SET_IVOR(15, DebugCrit);
88533
88534 /* Establish the interrupt vector base */
88535 lis r4,interrupt_base@h /* IVPR only uses the high 16-bits */
88536 @@ -578,7 +578,7 @@ interrupt_base:
88537 b InstructionStorage
88538
88539 /* Debug Interrupt */
88540 - DEBUG_EXCEPTION
88541 + DEBUG_CRIT_EXCEPTION
88542
88543 /*
88544 * Local functions
88545 Index: linux-2.6.25.4/arch/powerpc/kernel/head_64.S
88546 ===================================================================
88547 --- linux-2.6.25.4.orig/arch/powerpc/kernel/head_64.S
88548 +++ linux-2.6.25.4/arch/powerpc/kernel/head_64.S
88549 @@ -36,8 +36,7 @@
88550 #include <asm/firmware.h>
88551 #include <asm/page_64.h>
88552 #include <asm/exception.h>
88553 -
88554 -#define DO_SOFT_DISABLE
88555 +#include <asm/irqflags.h>
88556
88557 /*
88558 * We layout physical memory as follows:
88559 @@ -450,8 +449,8 @@ bad_stack:
88560 */
88561 fast_exc_return_irq: /* restores irq state too */
88562 ld r3,SOFTE(r1)
88563 + TRACE_AND_RESTORE_IRQ(r3);
88564 ld r12,_MSR(r1)
88565 - stb r3,PACASOFTIRQEN(r13) /* restore paca->soft_enabled */
88566 rldicl r4,r12,49,63 /* get MSR_EE to LSB */
88567 stb r4,PACAHARDIRQEN(r13) /* restore paca->hard_enabled */
88568 b 1f
88569 @@ -621,7 +620,7 @@ END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISER
88570 mtlr r10
88571
88572 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
88573 - beq- unrecov_slb
88574 + beq- 2f
88575
88576 .machine push
88577 .machine "power4"
88578 @@ -643,6 +642,22 @@ END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISER
88579 rfid
88580 b . /* prevent speculative execution */
88581
88582 +2:
88583 +#ifdef CONFIG_PPC_ISERIES
88584 +BEGIN_FW_FTR_SECTION
88585 + b unrecov_slb
88586 +END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
88587 +#endif /* CONFIG_PPC_ISERIES */
88588 + mfspr r11,SPRN_SRR0
88589 + clrrdi r10,r13,32
88590 + LOAD_HANDLER(r10,unrecov_slb)
88591 + mtspr SPRN_SRR0,r10
88592 + mfmsr r10
88593 + ori r10,r10,MSR_IR|MSR_DR|MSR_RI
88594 + mtspr SPRN_SRR1,r10
88595 + rfid
88596 + b .
88597 +
88598 unrecov_slb:
88599 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
88600 DISABLE_INTS
88601 @@ -808,7 +823,7 @@ _STATIC(load_up_altivec)
88602 * Hash table stuff
88603 */
88604 .align 7
88605 -_GLOBAL(do_hash_page)
88606 +_STATIC(do_hash_page)
88607 std r3,_DAR(r1)
88608 std r4,_DSISR(r1)
88609
88610 @@ -820,6 +835,27 @@ BEGIN_FTR_SECTION
88611 END_FTR_SECTION_IFCLR(CPU_FTR_SLB)
88612
88613 /*
88614 + * On iSeries, we soft-disable interrupts here, then
88615 + * hard-enable interrupts so that the hash_page code can spin on
88616 + * the hash_table_lock without problems on a shared processor.
88617 + */
88618 + DISABLE_INTS
88619 +
88620 + /*
88621 + * Currently, trace_hardirqs_off() will be called by DISABLE_INTS
88622 + * and will clobber volatile registers when irq tracing is enabled
88623 + * so we need to reload them. It may be possible to be smarter here
88624 + * and move the irq tracing elsewhere but let's keep it simple for
88625 + * now
88626 + */
88627 +#ifdef CONFIG_TRACE_IRQFLAGS
88628 + ld r3,_DAR(r1)
88629 + ld r4,_DSISR(r1)
88630 + ld r5,_TRAP(r1)
88631 + ld r12,_MSR(r1)
88632 + clrrdi r5,r5,4
88633 +#endif /* CONFIG_TRACE_IRQFLAGS */
88634 + /*
88635 * We need to set the _PAGE_USER bit if MSR_PR is set or if we are
88636 * accessing a userspace segment (even from the kernel). We assume
88637 * kernel addresses always have the high bit set.
88638 @@ -832,13 +868,6 @@ END_FTR_SECTION_IFCLR(CPU_FTR_SLB)
88639 rlwimi r4,r5,22+2,31-2,31-2 /* Set _PAGE_EXEC if trap is 0x400 */
88640
88641 /*
88642 - * On iSeries, we soft-disable interrupts here, then
88643 - * hard-enable interrupts so that the hash_page code can spin on
88644 - * the hash_table_lock without problems on a shared processor.
88645 - */
88646 - DISABLE_INTS
88647 -
88648 - /*
88649 * r3 contains the faulting address
88650 * r4 contains the required access permissions
88651 * r5 contains the trap number
88652 @@ -848,7 +877,6 @@ END_FTR_SECTION_IFCLR(CPU_FTR_SLB)
88653 bl .hash_page /* build HPTE if possible */
88654 cmpdi r3,0 /* see if hash_page succeeded */
88655
88656 -#ifdef DO_SOFT_DISABLE
88657 BEGIN_FW_FTR_SECTION
88658 /*
88659 * If we had interrupts soft-enabled at the point where the
88660 @@ -860,7 +888,7 @@ BEGIN_FW_FTR_SECTION
88661 */
88662 beq 13f
88663 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
88664 -#endif
88665 +
88666 BEGIN_FW_FTR_SECTION
88667 /*
88668 * Here we have interrupts hard-disabled, so it is sufficient
88669 @@ -874,11 +902,12 @@ END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISER
88670
88671 /*
88672 * hash_page couldn't handle it, set soft interrupt enable back
88673 - * to what it was before the trap. Note that .local_irq_restore
88674 + * to what it was before the trap. Note that .raw_local_irq_restore
88675 * handles any interrupts pending at this point.
88676 */
88677 ld r3,SOFTE(r1)
88678 - bl .local_irq_restore
88679 + TRACE_AND_RESTORE_IRQ_PARTIAL(r3, 11f)
88680 + bl .raw_local_irq_restore
88681 b 11f
88682
88683 /* Here we have a page fault that hash_page can't handle. */
88684 @@ -1477,6 +1506,10 @@ _INIT_STATIC(start_here_multiplatform)
88685 addi r2,r2,0x4000
88686 add r2,r2,r26
88687
88688 + /* Set initial ptr to current */
88689 + LOAD_REG_IMMEDIATE(r4, init_task)
88690 + std r4,PACACURRENT(r13)
88691 +
88692 /* Do very early kernel initializations, including initial hash table,
88693 * stab and slb setup before we turn on relocation. */
88694
88695 @@ -1505,10 +1538,6 @@ _INIT_GLOBAL(start_here_common)
88696 li r0,0
88697 stdu r0,-STACK_FRAME_OVERHEAD(r1)
88698
88699 - /* ptr to current */
88700 - LOAD_REG_IMMEDIATE(r4, init_task)
88701 - std r4,PACACURRENT(r13)
88702 -
88703 /* Load the TOC */
88704 ld r2,PACATOC(r13)
88705 std r1,PACAKSAVE(r13)
88706 Index: linux-2.6.25.4/arch/powerpc/kernel/head_booke.h
88707 ===================================================================
88708 --- linux-2.6.25.4.orig/arch/powerpc/kernel/head_booke.h
88709 +++ linux-2.6.25.4/arch/powerpc/kernel/head_booke.h
88710 @@ -56,8 +56,17 @@
88711 * is necessary since the MMU is always on, for Book-E parts, and the stacks
88712 * are offset from KERNELBASE.
88713 *
88714 + * There is some space optimization to be had here if desired. However
88715 + * to allow for a common kernel with support for debug exceptions either
88716 + * going to critical or their own debug level we aren't currently
88717 + * providing configurations that micro-optimize space usage.
88718 */
88719 -#define BOOKE_EXCEPTION_STACK_SIZE (8192)
88720 +#ifdef CONFIG_44x
88721 +#define NUM_EXCEPTION_LVLS 2
88722 +#else
88723 +#define NUM_EXCEPTION_LVLS 3
88724 +#endif
88725 +#define BOOKE_EXCEPTION_STACK_SIZE (4096 * NUM_EXCEPTION_LVLS)
88726
88727 /* CRIT_SPRG only used in critical exception handling */
88728 #define CRIT_SPRG SPRN_SPRG2
88729 @@ -68,7 +77,7 @@
88730 #define CRIT_STACK_TOP (exception_stack_top)
88731
88732 /* only on e200 for now */
88733 -#define DEBUG_STACK_TOP (exception_stack_top - 4096)
88734 +#define DEBUG_STACK_TOP (exception_stack_top - 8192)
88735 #define DEBUG_SPRG SPRN_SPRG6W
88736
88737 #ifdef CONFIG_SMP
88738 @@ -212,9 +221,8 @@ label:
88739 * save (and later restore) the MSR via SPRN_CSRR1, which will still have
88740 * the MSR_DE bit set.
88741 */
88742 -#ifdef CONFIG_E200
88743 -#define DEBUG_EXCEPTION \
88744 - START_EXCEPTION(Debug); \
88745 +#define DEBUG_DEBUG_EXCEPTION \
88746 + START_EXCEPTION(DebugDebug); \
88747 DEBUG_EXCEPTION_PROLOG; \
88748 \
88749 /* \
88750 @@ -234,8 +242,8 @@ label:
88751 cmplw r12,r10; \
88752 blt+ 2f; /* addr below exception vectors */ \
88753 \
88754 - lis r10,Debug@h; \
88755 - ori r10,r10,Debug@l; \
88756 + lis r10,DebugDebug@h; \
88757 + ori r10,r10,DebugDebug@l; \
88758 cmplw r12,r10; \
88759 bgt+ 2f; /* addr above exception vectors */ \
88760 \
88761 @@ -265,9 +273,9 @@ label:
88762 2: mfspr r4,SPRN_DBSR; \
88763 addi r3,r1,STACK_FRAME_OVERHEAD; \
88764 EXC_XFER_TEMPLATE(DebugException, 0x2002, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), NOCOPY, debug_transfer_to_handler, ret_from_debug_exc)
88765 -#else
88766 -#define DEBUG_EXCEPTION \
88767 - START_EXCEPTION(Debug); \
88768 +
88769 +#define DEBUG_CRIT_EXCEPTION \
88770 + START_EXCEPTION(DebugCrit); \
88771 CRITICAL_EXCEPTION_PROLOG; \
88772 \
88773 /* \
88774 @@ -287,8 +295,8 @@ label:
88775 cmplw r12,r10; \
88776 blt+ 2f; /* addr below exception vectors */ \
88777 \
88778 - lis r10,Debug@h; \
88779 - ori r10,r10,Debug@l; \
88780 + lis r10,DebugCrit@h; \
88781 + ori r10,r10,DebugCrit@l; \
88782 cmplw r12,r10; \
88783 bgt+ 2f; /* addr above exception vectors */ \
88784 \
88785 @@ -318,7 +326,6 @@ label:
88786 2: mfspr r4,SPRN_DBSR; \
88787 addi r3,r1,STACK_FRAME_OVERHEAD; \
88788 EXC_XFER_TEMPLATE(DebugException, 0x2002, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), NOCOPY, crit_transfer_to_handler, ret_from_crit_exc)
88789 -#endif
88790
88791 #define INSTRUCTION_STORAGE_EXCEPTION \
88792 START_EXCEPTION(InstructionStorage) \
88793 Index: linux-2.6.25.4/arch/powerpc/kernel/head_fsl_booke.S
88794 ===================================================================
88795 --- linux-2.6.25.4.orig/arch/powerpc/kernel/head_fsl_booke.S
88796 +++ linux-2.6.25.4/arch/powerpc/kernel/head_fsl_booke.S
88797 @@ -68,7 +68,9 @@ _ENTRY(_start);
88798 mr r29,r5
88799 mr r28,r6
88800 mr r27,r7
88801 + li r25,0 /* phys kernel start (low) */
88802 li r24,0 /* CPU number */
88803 + li r23,0 /* phys kernel start (high) */
88804
88805 /* We try to not make any assumptions about how the boot loader
88806 * setup or used the TLBs. We invalidate all mappings from the
88807 @@ -167,7 +169,28 @@ skpinv: addi r6,r6,1 /* Increment */
88808 mtspr SPRN_MAS0,r7
88809 tlbre
88810
88811 - /* Just modify the entry ID, EPN and RPN for the temp mapping */
88812 + /* grab and fixup the RPN */
88813 + mfspr r6,SPRN_MAS1 /* extract MAS1[SIZE] */
88814 + rlwinm r6,r6,25,27,30
88815 + li r8,-1
88816 + addi r6,r6,10
88817 + slw r6,r8,r6 /* convert to mask */
88818 +
88819 + bl 1f /* Find our address */
88820 +1: mflr r7
88821 +
88822 + mfspr r8,SPRN_MAS3
88823 +#ifdef CONFIG_PHYS_64BIT
88824 + mfspr r23,SPRN_MAS7
88825 +#endif
88826 + and r8,r6,r8
88827 + subfic r9,r6,-4096
88828 + and r9,r9,r7
88829 +
88830 + or r25,r8,r9
88831 + ori r8,r25,(MAS3_SX|MAS3_SW|MAS3_SR)
88832 +
88833 + /* Just modify the entry ID and EPN for the temp mapping */
88834 lis r7,0x1000 /* Set MAS0(TLBSEL) = 1 */
88835 rlwimi r7,r5,16,4,15 /* Setup MAS0 = TLBSEL | ESEL(r5) */
88836 mtspr SPRN_MAS0,r7
88837 @@ -177,12 +200,10 @@ skpinv: addi r6,r6,1 /* Increment */
88838 ori r6,r6,(MAS1_TSIZE(BOOKE_PAGESZ_4K))@l
88839 mtspr SPRN_MAS1,r6
88840 mfspr r6,SPRN_MAS2
88841 - lis r7,PHYSICAL_START@h
88842 + li r7,0 /* temp EPN = 0 */
88843 rlwimi r7,r6,0,20,31
88844 mtspr SPRN_MAS2,r7
88845 - mfspr r6,SPRN_MAS3
88846 - rlwimi r7,r6,0,20,31
88847 - mtspr SPRN_MAS3,r7
88848 + mtspr SPRN_MAS3,r8
88849 tlbwe
88850
88851 xori r6,r4,1
88852 @@ -232,8 +253,7 @@ skpinv: addi r6,r6,1 /* Increment */
88853 ori r6,r6,PAGE_OFFSET@l
88854 rlwimi r6,r7,0,20,31
88855 mtspr SPRN_MAS2,r6
88856 - li r7,(MAS3_SX|MAS3_SW|MAS3_SR)
88857 - mtspr SPRN_MAS3,r7
88858 + mtspr SPRN_MAS3,r8
88859 tlbwe
88860
88861 /* 7. Jump to KERNELBASE mapping */
88862 @@ -283,7 +303,10 @@ skpinv: addi r6,r6,1 /* Increment */
88863 SET_IVOR(12, WatchdogTimer);
88864 SET_IVOR(13, DataTLBError);
88865 SET_IVOR(14, InstructionTLBError);
88866 - SET_IVOR(15, Debug);
88867 + SET_IVOR(15, DebugDebug);
88868 +#if defined(CONFIG_E500)
88869 + SET_IVOR(15, DebugCrit);
88870 +#endif
88871 SET_IVOR(32, SPEUnavailable);
88872 SET_IVOR(33, SPEFloatingPointData);
88873 SET_IVOR(34, SPEFloatingPointRound);
88874 @@ -718,7 +741,10 @@ interrupt_base:
88875
88876
88877 /* Debug Interrupt */
88878 - DEBUG_EXCEPTION
88879 + DEBUG_DEBUG_EXCEPTION
88880 +#if defined(CONFIG_E500)
88881 + DEBUG_CRIT_EXCEPTION
88882 +#endif
88883
88884 /*
88885 * Local functions
88886 Index: linux-2.6.25.4/arch/powerpc/kernel/ibmebus.c
88887 ===================================================================
88888 --- linux-2.6.25.4.orig/arch/powerpc/kernel/ibmebus.c
88889 +++ linux-2.6.25.4/arch/powerpc/kernel/ibmebus.c
88890 @@ -183,7 +183,7 @@ static int ibmebus_create_devices(const
88891 ret = ibmebus_create_device(child);
88892 if (ret) {
88893 printk(KERN_ERR "%s: failed to create device (%i)",
88894 - __FUNCTION__, ret);
88895 + __func__, ret);
88896 of_node_put(child);
88897 break;
88898 }
88899 @@ -269,7 +269,7 @@ static ssize_t ibmebus_store_probe(struc
88900 if (bus_find_device(&ibmebus_bus_type, NULL, path,
88901 ibmebus_match_path)) {
88902 printk(KERN_WARNING "%s: %s has already been probed\n",
88903 - __FUNCTION__, path);
88904 + __func__, path);
88905 rc = -EEXIST;
88906 goto out;
88907 }
88908 @@ -279,7 +279,7 @@ static ssize_t ibmebus_store_probe(struc
88909 of_node_put(dn);
88910 } else {
88911 printk(KERN_WARNING "%s: no such device node: %s\n",
88912 - __FUNCTION__, path);
88913 + __func__, path);
88914 rc = -ENODEV;
88915 }
88916
88917 @@ -308,7 +308,7 @@ static ssize_t ibmebus_store_remove(stru
88918 return count;
88919 } else {
88920 printk(KERN_WARNING "%s: %s not on the bus\n",
88921 - __FUNCTION__, path);
88922 + __func__, path);
88923
88924 kfree(path);
88925 return -ENODEV;
88926 @@ -337,14 +337,14 @@ static int __init ibmebus_bus_init(void)
88927 err = of_bus_type_init(&ibmebus_bus_type, "ibmebus");
88928 if (err) {
88929 printk(KERN_ERR "%s: failed to register IBM eBus.\n",
88930 - __FUNCTION__);
88931 + __func__);
88932 return err;
88933 }
88934
88935 err = device_register(&ibmebus_bus_device);
88936 if (err) {
88937 printk(KERN_WARNING "%s: device_register returned %i\n",
88938 - __FUNCTION__, err);
88939 + __func__, err);
88940 bus_unregister(&ibmebus_bus_type);
88941
88942 return err;
88943 Index: linux-2.6.25.4/arch/powerpc/kernel/iommu.c
88944 ===================================================================
88945 --- linux-2.6.25.4.orig/arch/powerpc/kernel/iommu.c
88946 +++ linux-2.6.25.4/arch/powerpc/kernel/iommu.c
88947 @@ -520,7 +520,7 @@ void iommu_free_table(struct iommu_table
88948 unsigned int order;
88949
88950 if (!tbl || !tbl->it_map) {
88951 - printk(KERN_ERR "%s: expected TCE map for %s\n", __FUNCTION__,
88952 + printk(KERN_ERR "%s: expected TCE map for %s\n", __func__,
88953 node_name);
88954 return;
88955 }
88956 @@ -530,7 +530,7 @@ void iommu_free_table(struct iommu_table
88957 for (i = 0; i < (tbl->it_size/64); i++) {
88958 if (tbl->it_map[i] != 0) {
88959 printk(KERN_WARNING "%s: Unexpected TCEs for %s\n",
88960 - __FUNCTION__, node_name);
88961 + __func__, node_name);
88962 break;
88963 }
88964 }
88965 Index: linux-2.6.25.4/arch/powerpc/kernel/irq.c
88966 ===================================================================
88967 --- linux-2.6.25.4.orig/arch/powerpc/kernel/irq.c
88968 +++ linux-2.6.25.4/arch/powerpc/kernel/irq.c
88969 @@ -114,7 +114,7 @@ static inline void set_soft_enabled(unsi
88970 : : "r" (enable), "i" (offsetof(struct paca_struct, soft_enabled)));
88971 }
88972
88973 -void local_irq_restore(unsigned long en)
88974 +void raw_local_irq_restore(unsigned long en)
88975 {
88976 /*
88977 * get_paca()->soft_enabled = en;
88978 @@ -174,6 +174,7 @@ void local_irq_restore(unsigned long en)
88979
88980 __hard_irq_enable();
88981 }
88982 +EXPORT_SYMBOL(raw_local_irq_restore);
88983 #endif /* CONFIG_PPC64 */
88984
88985 int show_interrupts(struct seq_file *p, void *v)
88986 @@ -310,8 +311,21 @@ void do_IRQ(struct pt_regs *regs)
88987 handler = &__do_IRQ;
88988 irqtp->task = curtp->task;
88989 irqtp->flags = 0;
88990 +
88991 + /* Copy the softirq bits in preempt_count so that the
88992 + * softirq checks work in the hardirq context.
88993 + */
88994 + irqtp->preempt_count =
88995 + (irqtp->preempt_count & ~SOFTIRQ_MASK) |
88996 + (curtp->preempt_count & SOFTIRQ_MASK);
88997 +
88998 call_handle_irq(irq, desc, irqtp, handler);
88999 irqtp->task = NULL;
89000 +
89001 +
89002 + /* Set any flag that may have been set on the
89003 + * alternate stack
89004 + */
89005 if (irqtp->flags)
89006 set_bits(irqtp->flags, &curtp->flags);
89007 } else
89008 @@ -357,7 +371,7 @@ void irq_ctx_init(void)
89009 memset((void *)softirq_ctx[i], 0, THREAD_SIZE);
89010 tp = softirq_ctx[i];
89011 tp->cpu = i;
89012 - tp->preempt_count = SOFTIRQ_OFFSET;
89013 + tp->preempt_count = 0;
89014
89015 memset((void *)hardirq_ctx[i], 0, THREAD_SIZE);
89016 tp = hardirq_ctx[i];
89017 Index: linux-2.6.25.4/arch/powerpc/kernel/isa-bridge.c
89018 ===================================================================
89019 --- linux-2.6.25.4.orig/arch/powerpc/kernel/isa-bridge.c
89020 +++ linux-2.6.25.4/arch/powerpc/kernel/isa-bridge.c
89021 @@ -80,13 +80,13 @@ static void __devinit pci_process_ISA_OF
89022 * (size depending on dev->n_addr_cells)
89023 * cell 5: the size of the range
89024 */
89025 - if ((range->isa_addr.a_hi && ISA_SPACE_MASK) != ISA_SPACE_IO) {
89026 + if ((range->isa_addr.a_hi & ISA_SPACE_MASK) != ISA_SPACE_IO) {
89027 range++;
89028 rlen -= sizeof(struct isa_range);
89029 if (rlen < sizeof(struct isa_range))
89030 goto inval_range;
89031 }
89032 - if ((range->isa_addr.a_hi && ISA_SPACE_MASK) != ISA_SPACE_IO)
89033 + if ((range->isa_addr.a_hi & ISA_SPACE_MASK) != ISA_SPACE_IO)
89034 goto inval_range;
89035
89036 isa_addr = range->isa_addr.a_lo;
89037 @@ -99,7 +99,7 @@ static void __devinit pci_process_ISA_OF
89038 */
89039 if ((pci_addr != 0) || (isa_addr != 0)) {
89040 printk(KERN_ERR "unexpected isa to pci mapping: %s\n",
89041 - __FUNCTION__);
89042 + __func__);
89043 return;
89044 }
89045
89046 Index: linux-2.6.25.4/arch/powerpc/kernel/lparcfg.c
89047 ===================================================================
89048 --- linux-2.6.25.4.orig/arch/powerpc/kernel/lparcfg.c
89049 +++ linux-2.6.25.4/arch/powerpc/kernel/lparcfg.c
89050 @@ -226,7 +226,7 @@ static void parse_system_parameter_strin
89051 unsigned char *local_buffer = kmalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
89052 if (!local_buffer) {
89053 printk(KERN_ERR "%s %s kmalloc failure at line %d \n",
89054 - __FILE__, __FUNCTION__, __LINE__);
89055 + __FILE__, __func__, __LINE__);
89056 return;
89057 }
89058
89059 @@ -243,14 +243,14 @@ static void parse_system_parameter_strin
89060 if (call_status != 0) {
89061 printk(KERN_INFO
89062 "%s %s Error calling get-system-parameter (0x%x)\n",
89063 - __FILE__, __FUNCTION__, call_status);
89064 + __FILE__, __func__, call_status);
89065 } else {
89066 int splpar_strlen;
89067 int idx, w_idx;
89068 char *workbuffer = kzalloc(SPLPAR_MAXLENGTH, GFP_KERNEL);
89069 if (!workbuffer) {
89070 printk(KERN_ERR "%s %s kmalloc failure at line %d \n",
89071 - __FILE__, __FUNCTION__, __LINE__);
89072 + __FILE__, __func__, __LINE__);
89073 kfree(local_buffer);
89074 return;
89075 }
89076 @@ -484,10 +484,10 @@ static ssize_t lparcfg_write(struct file
89077 current_weight = (resource >> 5 * 8) & 0xFF;
89078
89079 pr_debug("%s: current_entitled = %lu, current_weight = %u\n",
89080 - __FUNCTION__, current_entitled, current_weight);
89081 + __func__, current_entitled, current_weight);
89082
89083 pr_debug("%s: new_entitled = %lu, new_weight = %u\n",
89084 - __FUNCTION__, *new_entitled_ptr, *new_weight_ptr);
89085 + __func__, *new_entitled_ptr, *new_weight_ptr);
89086
89087 retval = plpar_hcall_norets(H_SET_PPP, *new_entitled_ptr,
89088 *new_weight_ptr);
89089 @@ -502,7 +502,7 @@ static ssize_t lparcfg_write(struct file
89090 retval = -EINVAL;
89091 } else {
89092 printk(KERN_WARNING "%s: received unknown hv return code %ld",
89093 - __FUNCTION__, retval);
89094 + __func__, retval);
89095 retval = -EIO;
89096 }
89097
89098 Index: linux-2.6.25.4/arch/powerpc/kernel/machine_kexec.c
89099 ===================================================================
89100 --- linux-2.6.25.4.orig/arch/powerpc/kernel/machine_kexec.c
89101 +++ linux-2.6.25.4/arch/powerpc/kernel/machine_kexec.c
89102 @@ -12,8 +12,9 @@
89103 #include <linux/kexec.h>
89104 #include <linux/reboot.h>
89105 #include <linux/threads.h>
89106 +#include <linux/lmb.h>
89107 #include <asm/machdep.h>
89108 -#include <asm/lmb.h>
89109 +#include <asm/prom.h>
89110
89111 void machine_crash_shutdown(struct pt_regs *regs)
89112 {
89113 Index: linux-2.6.25.4/arch/powerpc/kernel/paca.c
89114 ===================================================================
89115 --- linux-2.6.25.4.orig/arch/powerpc/kernel/paca.c
89116 +++ linux-2.6.25.4/arch/powerpc/kernel/paca.c
89117 @@ -15,7 +15,6 @@
89118 #include <asm/ptrace.h>
89119 #include <asm/page.h>
89120 #include <asm/lppaca.h>
89121 -#include <asm/iseries/it_lp_reg_save.h>
89122 #include <asm/paca.h>
89123 #include <asm/mmu.h>
89124
89125 @@ -25,13 +24,13 @@
89126 extern unsigned long __toc_start;
89127
89128 /*
89129 - * iSeries structure which the hypervisor knows about - this structure
89130 + * The structure which the hypervisor knows about - this structure
89131 * should not cross a page boundary. The vpa_init/register_vpa call
89132 * is now known to fail if the lppaca structure crosses a page
89133 - * boundary. The lppaca is also used on POWER5 pSeries boxes. The
89134 - * lppaca is 640 bytes long, and cannot readily change since the
89135 - * hypervisor knows its layout, so a 1kB alignment will suffice to
89136 - * ensure that it doesn't cross a page boundary.
89137 + * boundary. The lppaca is also used on legacy iSeries and POWER5
89138 + * pSeries boxes. The lppaca is 640 bytes long, and cannot readily
89139 + * change since the hypervisor knows its layout, so a 1kB alignment
89140 + * will suffice to ensure that it doesn't cross a page boundary.
89141 */
89142 struct lppaca lppaca[] = {
89143 [0 ... (NR_CPUS-1)] = {
89144 @@ -66,32 +65,17 @@ struct slb_shadow slb_shadow[] __cacheli
89145 * processors. The processor VPD array needs one entry per physical
89146 * processor (not thread).
89147 */
89148 -#define PACA_INIT_COMMON(number) \
89149 +#define PACA_INIT(number) \
89150 +{ \
89151 .lppaca_ptr = &lppaca[number], \
89152 .lock_token = 0x8000, \
89153 .paca_index = (number), /* Paca Index */ \
89154 .kernel_toc = (unsigned long)(&__toc_start) + 0x8000UL, \
89155 .hw_cpu_id = 0xffff, \
89156 - .slb_shadow_ptr = &slb_shadow[number],
89157 -
89158 -#ifdef CONFIG_PPC_ISERIES
89159 -#define PACA_INIT_ISERIES(number) \
89160 - .reg_save_ptr = &iseries_reg_save[number],
89161 -
89162 -#define PACA_INIT(number) \
89163 -{ \
89164 - PACA_INIT_COMMON(number) \
89165 - PACA_INIT_ISERIES(number) \
89166 + .slb_shadow_ptr = &slb_shadow[number], \
89167 + .__current = &init_task, \
89168 }
89169
89170 -#else
89171 -#define PACA_INIT(number) \
89172 -{ \
89173 - PACA_INIT_COMMON(number) \
89174 -}
89175 -
89176 -#endif
89177 -
89178 struct paca_struct paca[] = {
89179 PACA_INIT(0),
89180 #if NR_CPUS > 1
89181 Index: linux-2.6.25.4/arch/powerpc/kernel/ppc_ksyms.c
89182 ===================================================================
89183 --- linux-2.6.25.4.orig/arch/powerpc/kernel/ppc_ksyms.c
89184 +++ linux-2.6.25.4/arch/powerpc/kernel/ppc_ksyms.c
89185 @@ -45,10 +45,6 @@
89186 #include <asm/signal.h>
89187 #include <asm/dcr.h>
89188
89189 -#ifdef CONFIG_PPC64
89190 -EXPORT_SYMBOL(local_irq_restore);
89191 -#endif
89192 -
89193 #ifdef CONFIG_PPC32
89194 extern void transfer_to_handler(void);
89195 extern void do_IRQ(struct pt_regs *regs);
89196 @@ -58,7 +54,6 @@ extern void program_check_exception(stru
89197 extern void single_step_exception(struct pt_regs *regs);
89198 extern int sys_sigreturn(struct pt_regs *regs);
89199
89200 -EXPORT_SYMBOL(empty_zero_page);
89201 EXPORT_SYMBOL(clear_pages);
89202 EXPORT_SYMBOL(copy_page);
89203 EXPORT_SYMBOL(ISA_DMA_THRESHOLD);
89204 @@ -79,6 +74,7 @@ EXPORT_SYMBOL(strncpy);
89205 EXPORT_SYMBOL(strcat);
89206 EXPORT_SYMBOL(strlen);
89207 EXPORT_SYMBOL(strcmp);
89208 +EXPORT_SYMBOL(strncmp);
89209
89210 EXPORT_SYMBOL(csum_partial);
89211 EXPORT_SYMBOL(csum_partial_copy_generic);
89212 @@ -192,3 +188,4 @@ EXPORT_SYMBOL(intercept_table);
89213 EXPORT_SYMBOL(__mtdcr);
89214 EXPORT_SYMBOL(__mfdcr);
89215 #endif
89216 +EXPORT_SYMBOL(empty_zero_page);
89217 Index: linux-2.6.25.4/arch/powerpc/kernel/process.c
89218 ===================================================================
89219 --- linux-2.6.25.4.orig/arch/powerpc/kernel/process.c
89220 +++ linux-2.6.25.4/arch/powerpc/kernel/process.c
89221 @@ -868,11 +868,6 @@ int sys_execve(unsigned long a0, unsigne
89222 flush_spe_to_thread(current);
89223 error = do_execve(filename, (char __user * __user *) a1,
89224 (char __user * __user *) a2, regs);
89225 - if (error == 0) {
89226 - task_lock(current);
89227 - current->ptrace &= ~PT_DTRACE;
89228 - task_unlock(current);
89229 - }
89230 putname(filename);
89231 out:
89232 return error;
89233 @@ -919,20 +914,6 @@ int validate_sp(unsigned long sp, struct
89234 return valid_irq_stack(sp, p, nbytes);
89235 }
89236
89237 -#ifdef CONFIG_PPC64
89238 -#define MIN_STACK_FRAME 112 /* same as STACK_FRAME_OVERHEAD, in fact */
89239 -#define FRAME_LR_SAVE 2
89240 -#define INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD + 288)
89241 -#define REGS_MARKER 0x7265677368657265ul
89242 -#define FRAME_MARKER 12
89243 -#else
89244 -#define MIN_STACK_FRAME 16
89245 -#define FRAME_LR_SAVE 1
89246 -#define INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD)
89247 -#define REGS_MARKER 0x72656773ul
89248 -#define FRAME_MARKER 2
89249 -#endif
89250 -
89251 EXPORT_SYMBOL(validate_sp);
89252
89253 unsigned long get_wchan(struct task_struct *p)
89254 @@ -944,15 +925,15 @@ unsigned long get_wchan(struct task_stru
89255 return 0;
89256
89257 sp = p->thread.ksp;
89258 - if (!validate_sp(sp, p, MIN_STACK_FRAME))
89259 + if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
89260 return 0;
89261
89262 do {
89263 sp = *(unsigned long *)sp;
89264 - if (!validate_sp(sp, p, MIN_STACK_FRAME))
89265 + if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
89266 return 0;
89267 if (count > 0) {
89268 - ip = ((unsigned long *)sp)[FRAME_LR_SAVE];
89269 + ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
89270 if (!in_sched_functions(ip))
89271 return ip;
89272 }
89273 @@ -981,12 +962,12 @@ void show_stack(struct task_struct *tsk,
89274 lr = 0;
89275 printk("Call Trace:\n");
89276 do {
89277 - if (!validate_sp(sp, tsk, MIN_STACK_FRAME))
89278 + if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
89279 return;
89280
89281 stack = (unsigned long *) sp;
89282 newsp = stack[0];
89283 - ip = stack[FRAME_LR_SAVE];
89284 + ip = stack[STACK_FRAME_LR_SAVE];
89285 if (!firstframe || ip != lr) {
89286 printk("["REG"] ["REG"] ", sp, ip);
89287 print_symbol("%s", ip);
89288 @@ -1000,8 +981,8 @@ void show_stack(struct task_struct *tsk,
89289 * See if this is an exception frame.
89290 * We look for the "regshere" marker in the current frame.
89291 */
89292 - if (validate_sp(sp, tsk, INT_FRAME_SIZE)
89293 - && stack[FRAME_MARKER] == REGS_MARKER) {
89294 + if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
89295 + && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
89296 struct pt_regs *regs = (struct pt_regs *)
89297 (sp + STACK_FRAME_OVERHEAD);
89298 printk("--- Exception: %lx", regs->trap);
89299 Index: linux-2.6.25.4/arch/powerpc/kernel/prom.c
89300 ===================================================================
89301 --- linux-2.6.25.4.orig/arch/powerpc/kernel/prom.c
89302 +++ linux-2.6.25.4/arch/powerpc/kernel/prom.c
89303 @@ -31,10 +31,10 @@
89304 #include <linux/kexec.h>
89305 #include <linux/debugfs.h>
89306 #include <linux/irq.h>
89307 +#include <linux/lmb.h>
89308
89309 #include <asm/prom.h>
89310 #include <asm/rtas.h>
89311 -#include <asm/lmb.h>
89312 #include <asm/page.h>
89313 #include <asm/processor.h>
89314 #include <asm/irq.h>
89315 @@ -51,6 +51,7 @@
89316 #include <asm/machdep.h>
89317 #include <asm/pSeries_reconfig.h>
89318 #include <asm/pci-bridge.h>
89319 +#include <asm/phyp_dump.h>
89320 #include <asm/kexec.h>
89321
89322 #ifdef DEBUG
89323 @@ -436,7 +437,7 @@ early_param("mem", early_parse_mem);
89324 * The device tree may be allocated beyond our memory limit, or inside the
89325 * crash kernel region for kdump. If so, move it out of the way.
89326 */
89327 -static void move_device_tree(void)
89328 +static void __init move_device_tree(void)
89329 {
89330 unsigned long start, size;
89331 void *p;
89332 @@ -1040,6 +1041,87 @@ static void __init early_reserve_mem(voi
89333 #endif
89334 }
89335
89336 +#ifdef CONFIG_PHYP_DUMP
89337 +/**
89338 + * phyp_dump_calculate_reserve_size() - reserve variable boot area 5% or arg
89339 + *
89340 + * Function to find the largest size we need to reserve
89341 + * during early boot process.
89342 + *
89343 + * It either looks for boot param and returns that OR
89344 + * returns larger of 256 or 5% rounded down to multiples of 256MB.
89345 + *
89346 + */
89347 +static inline unsigned long phyp_dump_calculate_reserve_size(void)
89348 +{
89349 + unsigned long tmp;
89350 +
89351 + if (phyp_dump_info->reserve_bootvar)
89352 + return phyp_dump_info->reserve_bootvar;
89353 +
89354 + /* divide by 20 to get 5% of value */
89355 + tmp = lmb_end_of_DRAM();
89356 + do_div(tmp, 20);
89357 +
89358 + /* round it down in multiples of 256 */
89359 + tmp = tmp & ~0x0FFFFFFFUL;
89360 +
89361 + return (tmp > PHYP_DUMP_RMR_END ? tmp : PHYP_DUMP_RMR_END);
89362 +}
89363 +
89364 +/**
89365 + * phyp_dump_reserve_mem() - reserve all not-yet-dumped mmemory
89366 + *
89367 + * This routine may reserve memory regions in the kernel only
89368 + * if the system is supported and a dump was taken in last
89369 + * boot instance or if the hardware is supported and the
89370 + * scratch area needs to be setup. In other instances it returns
89371 + * without reserving anything. The memory in case of dump being
89372 + * active is freed when the dump is collected (by userland tools).
89373 + */
89374 +static void __init phyp_dump_reserve_mem(void)
89375 +{
89376 + unsigned long base, size;
89377 + unsigned long variable_reserve_size;
89378 +
89379 + if (!phyp_dump_info->phyp_dump_configured) {
89380 + printk(KERN_ERR "Phyp-dump not supported on this hardware\n");
89381 + return;
89382 + }
89383 +
89384 + if (!phyp_dump_info->phyp_dump_at_boot) {
89385 + printk(KERN_INFO "Phyp-dump disabled at boot time\n");
89386 + return;
89387 + }
89388 +
89389 + variable_reserve_size = phyp_dump_calculate_reserve_size();
89390 +
89391 + if (phyp_dump_info->phyp_dump_is_active) {
89392 + /* Reserve *everything* above RMR.Area freed by userland tools*/
89393 + base = variable_reserve_size;
89394 + size = lmb_end_of_DRAM() - base;
89395 +
89396 + /* XXX crashed_ram_end is wrong, since it may be beyond
89397 + * the memory_limit, it will need to be adjusted. */
89398 + lmb_reserve(base, size);
89399 +
89400 + phyp_dump_info->init_reserve_start = base;
89401 + phyp_dump_info->init_reserve_size = size;
89402 + } else {
89403 + size = phyp_dump_info->cpu_state_size +
89404 + phyp_dump_info->hpte_region_size +
89405 + variable_reserve_size;
89406 + base = lmb_end_of_DRAM() - size;
89407 + lmb_reserve(base, size);
89408 + phyp_dump_info->init_reserve_start = base;
89409 + phyp_dump_info->init_reserve_size = size;
89410 + }
89411 +}
89412 +#else
89413 +static inline void __init phyp_dump_reserve_mem(void) {}
89414 +#endif /* CONFIG_PHYP_DUMP && CONFIG_PPC_RTAS */
89415 +
89416 +
89417 void __init early_init_devtree(void *params)
89418 {
89419 DBG(" -> early_init_devtree(%p)\n", params);
89420 @@ -1052,6 +1134,11 @@ void __init early_init_devtree(void *par
89421 of_scan_flat_dt(early_init_dt_scan_rtas, NULL);
89422 #endif
89423
89424 +#ifdef CONFIG_PHYP_DUMP
89425 + /* scan tree to see if dump occured during last boot */
89426 + of_scan_flat_dt(early_init_dt_scan_phyp_dump, NULL);
89427 +#endif
89428 +
89429 /* Retrieve various informations from the /chosen node of the
89430 * device-tree, including the platform type, initrd location and
89431 * size, TCE reserve, and more ...
89432 @@ -1072,6 +1159,7 @@ void __init early_init_devtree(void *par
89433 reserve_kdump_trampoline();
89434 reserve_crashkernel();
89435 early_reserve_mem();
89436 + phyp_dump_reserve_mem();
89437
89438 lmb_enforce_memory_limit(memory_limit);
89439 lmb_analyze();
89440 @@ -1244,12 +1332,14 @@ EXPORT_SYMBOL(of_node_put);
89441 */
89442 void of_attach_node(struct device_node *np)
89443 {
89444 - write_lock(&devtree_lock);
89445 + unsigned long flags;
89446 +
89447 + write_lock_irqsave(&devtree_lock, flags);
89448 np->sibling = np->parent->child;
89449 np->allnext = allnodes;
89450 np->parent->child = np;
89451 allnodes = np;
89452 - write_unlock(&devtree_lock);
89453 + write_unlock_irqrestore(&devtree_lock, flags);
89454 }
89455
89456 /*
89457 @@ -1260,8 +1350,9 @@ void of_attach_node(struct device_node *
89458 void of_detach_node(struct device_node *np)
89459 {
89460 struct device_node *parent;
89461 + unsigned long flags;
89462
89463 - write_lock(&devtree_lock);
89464 + write_lock_irqsave(&devtree_lock, flags);
89465
89466 parent = np->parent;
89467 if (!parent)
89468 @@ -1292,7 +1383,7 @@ void of_detach_node(struct device_node *
89469 of_node_set_flag(np, OF_DETACHED);
89470
89471 out_unlock:
89472 - write_unlock(&devtree_lock);
89473 + write_unlock_irqrestore(&devtree_lock, flags);
89474 }
89475
89476 #ifdef CONFIG_PPC_PSERIES
89477 @@ -1373,20 +1464,21 @@ __initcall(prom_reconfig_setup);
89478 int prom_add_property(struct device_node* np, struct property* prop)
89479 {
89480 struct property **next;
89481 + unsigned long flags;
89482
89483 prop->next = NULL;
89484 - write_lock(&devtree_lock);
89485 + write_lock_irqsave(&devtree_lock, flags);
89486 next = &np->properties;
89487 while (*next) {
89488 if (strcmp(prop->name, (*next)->name) == 0) {
89489 /* duplicate ! don't insert it */
89490 - write_unlock(&devtree_lock);
89491 + write_unlock_irqrestore(&devtree_lock, flags);
89492 return -1;
89493 }
89494 next = &(*next)->next;
89495 }
89496 *next = prop;
89497 - write_unlock(&devtree_lock);
89498 + write_unlock_irqrestore(&devtree_lock, flags);
89499
89500 #ifdef CONFIG_PROC_DEVICETREE
89501 /* try to add to proc as well if it was initialized */
89502 @@ -1406,9 +1498,10 @@ int prom_add_property(struct device_node
89503 int prom_remove_property(struct device_node *np, struct property *prop)
89504 {
89505 struct property **next;
89506 + unsigned long flags;
89507 int found = 0;
89508
89509 - write_lock(&devtree_lock);
89510 + write_lock_irqsave(&devtree_lock, flags);
89511 next = &np->properties;
89512 while (*next) {
89513 if (*next == prop) {
89514 @@ -1421,7 +1514,7 @@ int prom_remove_property(struct device_n
89515 }
89516 next = &(*next)->next;
89517 }
89518 - write_unlock(&devtree_lock);
89519 + write_unlock_irqrestore(&devtree_lock, flags);
89520
89521 if (!found)
89522 return -ENODEV;
89523 @@ -1447,9 +1540,10 @@ int prom_update_property(struct device_n
89524 struct property *oldprop)
89525 {
89526 struct property **next;
89527 + unsigned long flags;
89528 int found = 0;
89529
89530 - write_lock(&devtree_lock);
89531 + write_lock_irqsave(&devtree_lock, flags);
89532 next = &np->properties;
89533 while (*next) {
89534 if (*next == oldprop) {
89535 @@ -1463,7 +1557,7 @@ int prom_update_property(struct device_n
89536 }
89537 next = &(*next)->next;
89538 }
89539 - write_unlock(&devtree_lock);
89540 + write_unlock_irqrestore(&devtree_lock, flags);
89541
89542 if (!found)
89543 return -ENODEV;
89544 Index: linux-2.6.25.4/arch/powerpc/kernel/prom_init.c
89545 ===================================================================
89546 --- linux-2.6.25.4.orig/arch/powerpc/kernel/prom_init.c
89547 +++ linux-2.6.25.4/arch/powerpc/kernel/prom_init.c
89548 @@ -2240,6 +2240,14 @@ static void __init fixup_device_tree_efi
89549 if (rv != PROM_ERROR && (strcmp(prop, "chrp") == 0))
89550 prom_setprop(node, "/", "device_type", "efika", sizeof("efika"));
89551
89552 + /* CODEGEN,description is exposed in /proc/cpuinfo so
89553 + fix that too */
89554 + rv = prom_getprop(node, "CODEGEN,description", prop, sizeof(prop));
89555 + if (rv != PROM_ERROR && (strstr(prop, "CHRP")))
89556 + prom_setprop(node, "/", "CODEGEN,description",
89557 + "Efika 5200B PowerPC System",
89558 + sizeof("Efika 5200B PowerPC System"));
89559 +
89560 /* Fixup bestcomm interrupts property */
89561 node = call_prom("finddevice", 1, 1, ADDR("/builtin/bestcomm"));
89562 if (PHANDLE_VALID(node)) {
89563 Index: linux-2.6.25.4/arch/powerpc/kernel/rtas.c
89564 ===================================================================
89565 --- linux-2.6.25.4.orig/arch/powerpc/kernel/rtas.c
89566 +++ linux-2.6.25.4/arch/powerpc/kernel/rtas.c
89567 @@ -22,6 +22,7 @@
89568 #include <linux/smp.h>
89569 #include <linux/completion.h>
89570 #include <linux/cpumask.h>
89571 +#include <linux/lmb.h>
89572
89573 #include <asm/prom.h>
89574 #include <asm/rtas.h>
89575 @@ -34,7 +35,6 @@
89576 #include <asm/system.h>
89577 #include <asm/delay.h>
89578 #include <asm/uaccess.h>
89579 -#include <asm/lmb.h>
89580 #include <asm/udbg.h>
89581 #include <asm/syscalls.h>
89582 #include <asm/smp.h>
89583 @@ -507,7 +507,7 @@ int rtas_error_rc(int rtas_rc)
89584 break;
89585 default:
89586 printk(KERN_ERR "%s: unexpected RTAS error %d\n",
89587 - __FUNCTION__, rtas_rc);
89588 + __func__, rtas_rc);
89589 rc = -ERANGE;
89590 break;
89591 }
89592 Index: linux-2.6.25.4/arch/powerpc/kernel/rtas_flash.c
89593 ===================================================================
89594 --- linux-2.6.25.4.orig/arch/powerpc/kernel/rtas_flash.c
89595 +++ linux-2.6.25.4/arch/powerpc/kernel/rtas_flash.c
89596 @@ -807,7 +807,7 @@ int __init rtas_flash_init(void)
89597 rtas_block_ctor);
89598 if (!flash_block_cache) {
89599 printk(KERN_ERR "%s: failed to create block cache\n",
89600 - __FUNCTION__);
89601 + __func__);
89602 rc = -ENOMEM;
89603 goto cleanup;
89604 }
89605 Index: linux-2.6.25.4/arch/powerpc/kernel/rtas_pci.c
89606 ===================================================================
89607 --- linux-2.6.25.4.orig/arch/powerpc/kernel/rtas_pci.c
89608 +++ linux-2.6.25.4/arch/powerpc/kernel/rtas_pci.c
89609 @@ -56,21 +56,6 @@ static inline int config_access_valid(st
89610 return 0;
89611 }
89612
89613 -static int of_device_available(struct device_node * dn)
89614 -{
89615 - const char *status;
89616 -
89617 - status = of_get_property(dn, "status", NULL);
89618 -
89619 - if (!status)
89620 - return 1;
89621 -
89622 - if (!strcmp(status, "okay"))
89623 - return 1;
89624 -
89625 - return 0;
89626 -}
89627 -
89628 int rtas_read_config(struct pci_dn *pdn, int where, int size, u32 *val)
89629 {
89630 int returnval = -1;
89631 @@ -117,7 +102,7 @@ static int rtas_pci_read_config(struct p
89632 for (dn = busdn->child; dn; dn = dn->sibling) {
89633 struct pci_dn *pdn = PCI_DN(dn);
89634 if (pdn && pdn->devfn == devfn
89635 - && of_device_available(dn))
89636 + && of_device_is_available(dn))
89637 return rtas_read_config(pdn, where, size, val);
89638 }
89639
89640 @@ -164,7 +149,7 @@ static int rtas_pci_write_config(struct
89641 for (dn = busdn->child; dn; dn = dn->sibling) {
89642 struct pci_dn *pdn = PCI_DN(dn);
89643 if (pdn && pdn->devfn == devfn
89644 - && of_device_available(dn))
89645 + && of_device_is_available(dn))
89646 return rtas_write_config(pdn, where, size, val);
89647 }
89648 return PCIBIOS_DEVICE_NOT_FOUND;
89649 @@ -326,7 +311,7 @@ int pcibios_remove_root_bus(struct pci_c
89650
89651 res = b->resource[0];
89652 if (!res->flags) {
89653 - printk(KERN_ERR "%s: no IO resource for PHB %s\n", __FUNCTION__,
89654 + printk(KERN_ERR "%s: no IO resource for PHB %s\n", __func__,
89655 b->name);
89656 return 1;
89657 }
89658 @@ -334,13 +319,13 @@ int pcibios_remove_root_bus(struct pci_c
89659 rc = pcibios_unmap_io_space(b);
89660 if (rc) {
89661 printk(KERN_ERR "%s: failed to unmap IO on bus %s\n",
89662 - __FUNCTION__, b->name);
89663 + __func__, b->name);
89664 return 1;
89665 }
89666
89667 if (release_resource(res)) {
89668 printk(KERN_ERR "%s: failed to release IO on bus %s\n",
89669 - __FUNCTION__, b->name);
89670 + __func__, b->name);
89671 return 1;
89672 }
89673
89674 @@ -348,13 +333,13 @@ int pcibios_remove_root_bus(struct pci_c
89675 res = b->resource[i];
89676 if (!res->flags && i == 0) {
89677 printk(KERN_ERR "%s: no MEM resource for PHB %s\n",
89678 - __FUNCTION__, b->name);
89679 + __func__, b->name);
89680 return 1;
89681 }
89682 if (res->flags && release_resource(res)) {
89683 printk(KERN_ERR
89684 "%s: failed to release IO %d on bus %s\n",
89685 - __FUNCTION__, i, b->name);
89686 + __func__, i, b->name);
89687 return 1;
89688 }
89689 }
89690 Index: linux-2.6.25.4/arch/powerpc/kernel/setup-common.c
89691 ===================================================================
89692 --- linux-2.6.25.4.orig/arch/powerpc/kernel/setup-common.c
89693 +++ linux-2.6.25.4/arch/powerpc/kernel/setup-common.c
89694 @@ -34,6 +34,7 @@
89695 #include <linux/serial_8250.h>
89696 #include <linux/debugfs.h>
89697 #include <linux/percpu.h>
89698 +#include <linux/lmb.h>
89699 #include <asm/io.h>
89700 #include <asm/prom.h>
89701 #include <asm/processor.h>
89702 @@ -56,7 +57,6 @@
89703 #include <asm/cache.h>
89704 #include <asm/page.h>
89705 #include <asm/mmu.h>
89706 -#include <asm/lmb.h>
89707 #include <asm/xmon.h>
89708 #include <asm/cputhreads.h>
89709
89710 @@ -167,6 +167,8 @@ static int show_cpuinfo(struct seq_file
89711 unsigned short min;
89712
89713 if (cpu_id == NR_CPUS) {
89714 + struct device_node *root;
89715 + const char *model = NULL;
89716 #if defined(CONFIG_SMP) && defined(CONFIG_PPC32)
89717 unsigned long bogosum = 0;
89718 int i;
89719 @@ -178,6 +180,13 @@ static int show_cpuinfo(struct seq_file
89720 seq_printf(m, "timebase\t: %lu\n", ppc_tb_freq);
89721 if (ppc_md.name)
89722 seq_printf(m, "platform\t: %s\n", ppc_md.name);
89723 + root = of_find_node_by_path("/");
89724 + if (root)
89725 + model = of_get_property(root, "model", NULL);
89726 + if (model)
89727 + seq_printf(m, "model\t\t: %s\n", model);
89728 + of_node_put(root);
89729 +
89730 if (ppc_md.show_cpuinfo != NULL)
89731 ppc_md.show_cpuinfo(m);
89732
89733 Index: linux-2.6.25.4/arch/powerpc/kernel/setup_32.c
89734 ===================================================================
89735 --- linux-2.6.25.4.orig/arch/powerpc/kernel/setup_32.c
89736 +++ linux-2.6.25.4/arch/powerpc/kernel/setup_32.c
89737 @@ -172,6 +172,18 @@ int __init ppc_setup_l2cr(char *str)
89738 }
89739 __setup("l2cr=", ppc_setup_l2cr);
89740
89741 +/* Checks "l3cr=xxxx" command-line option */
89742 +int __init ppc_setup_l3cr(char *str)
89743 +{
89744 + if (cpu_has_feature(CPU_FTR_L3CR)) {
89745 + unsigned long val = simple_strtoul(str, NULL, 0);
89746 + printk(KERN_INFO "l3cr set to %lx\n", val);
89747 + _set_L3CR(val); /* and enable it */
89748 + }
89749 + return 1;
89750 +}
89751 +__setup("l3cr=", ppc_setup_l3cr);
89752 +
89753 #ifdef CONFIG_GENERIC_NVRAM
89754
89755 /* Generic nvram hooks used by drivers/char/gen_nvram.c */
89756 @@ -277,7 +289,7 @@ void __init setup_arch(char **cmdline_p)
89757 if (ppc_md.panic)
89758 setup_panic();
89759
89760 - init_mm.start_code = PAGE_OFFSET;
89761 + init_mm.start_code = (unsigned long)_stext;
89762 init_mm.end_code = (unsigned long) _etext;
89763 init_mm.end_data = (unsigned long) _edata;
89764 init_mm.brk = klimit;
89765 Index: linux-2.6.25.4/arch/powerpc/kernel/setup_64.c
89766 ===================================================================
89767 --- linux-2.6.25.4.orig/arch/powerpc/kernel/setup_64.c
89768 +++ linux-2.6.25.4/arch/powerpc/kernel/setup_64.c
89769 @@ -33,6 +33,8 @@
89770 #include <linux/serial_8250.h>
89771 #include <linux/bootmem.h>
89772 #include <linux/pci.h>
89773 +#include <linux/lockdep.h>
89774 +#include <linux/lmb.h>
89775 #include <asm/io.h>
89776 #include <asm/kdump.h>
89777 #include <asm/prom.h>
89778 @@ -55,7 +57,6 @@
89779 #include <asm/cache.h>
89780 #include <asm/page.h>
89781 #include <asm/mmu.h>
89782 -#include <asm/lmb.h>
89783 #include <asm/firmware.h>
89784 #include <asm/xmon.h>
89785 #include <asm/udbg.h>
89786 @@ -178,6 +179,9 @@ void __init early_setup(unsigned long dt
89787 /* Enable early debugging if any specified (see udbg.h) */
89788 udbg_early_init();
89789
89790 + /* Initialize lockdep early or else spinlocks will blow */
89791 + lockdep_init();
89792 +
89793 DBG(" -> early_setup(), dt_ptr: 0x%lx\n", dt_ptr);
89794
89795 /*
89796 @@ -510,7 +514,7 @@ void __init setup_arch(char **cmdline_p)
89797 if (ppc_md.panic)
89798 setup_panic();
89799
89800 - init_mm.start_code = PAGE_OFFSET;
89801 + init_mm.start_code = (unsigned long)_stext;
89802 init_mm.end_code = (unsigned long) _etext;
89803 init_mm.end_data = (unsigned long) _edata;
89804 init_mm.brk = klimit;
89805 Index: linux-2.6.25.4/arch/powerpc/kernel/stacktrace.c
89806 ===================================================================
89807 --- /dev/null
89808 +++ linux-2.6.25.4/arch/powerpc/kernel/stacktrace.c
89809 @@ -0,0 +1,47 @@
89810 +/*
89811 + * Stack trace utility
89812 + *
89813 + * Copyright 2008 Christoph Hellwig, IBM Corp.
89814 + *
89815 + *
89816 + * This program is free software; you can redistribute it and/or
89817 + * modify it under the terms of the GNU General Public License
89818 + * as published by the Free Software Foundation; either version
89819 + * 2 of the License, or (at your option) any later version.
89820 + */
89821 +
89822 +#include <linux/sched.h>
89823 +#include <linux/stacktrace.h>
89824 +#include <asm/ptrace.h>
89825 +#include <asm/asm-offsets.h>
89826 +
89827 +/*
89828 + * Save stack-backtrace addresses into a stack_trace buffer.
89829 + */
89830 +void save_stack_trace(struct stack_trace *trace)
89831 +{
89832 + unsigned long sp;
89833 +
89834 + asm("mr %0,1" : "=r" (sp));
89835 +
89836 + for (;;) {
89837 + unsigned long *stack = (unsigned long *) sp;
89838 + unsigned long newsp, ip;
89839 +
89840 + if (!validate_sp(sp, current, STACK_FRAME_OVERHEAD))
89841 + return;
89842 +
89843 + newsp = stack[0];
89844 + ip = stack[STACK_FRAME_LR_SAVE];
89845 +
89846 + if (!trace->skip)
89847 + trace->entries[trace->nr_entries++] = ip;
89848 + else
89849 + trace->skip--;
89850 +
89851 + if (trace->nr_entries >= trace->max_entries)
89852 + return;
89853 +
89854 + sp = newsp;
89855 + }
89856 +}
89857 Index: linux-2.6.25.4/arch/powerpc/kernel/sys_ppc32.c
89858 ===================================================================
89859 --- linux-2.6.25.4.orig/arch/powerpc/kernel/sys_ppc32.c
89860 +++ linux-2.6.25.4/arch/powerpc/kernel/sys_ppc32.c
89861 @@ -368,11 +368,6 @@ long compat_sys_execve(unsigned long a0,
89862
89863 error = compat_do_execve(filename, compat_ptr(a1), compat_ptr(a2), regs);
89864
89865 - if (error == 0) {
89866 - task_lock(current);
89867 - current->ptrace &= ~PT_DTRACE;
89868 - task_unlock(current);
89869 - }
89870 putname(filename);
89871
89872 out:
89873 Index: linux-2.6.25.4/arch/powerpc/kernel/vdso.c
89874 ===================================================================
89875 --- linux-2.6.25.4.orig/arch/powerpc/kernel/vdso.c
89876 +++ linux-2.6.25.4/arch/powerpc/kernel/vdso.c
89877 @@ -21,13 +21,14 @@
89878 #include <linux/elf.h>
89879 #include <linux/security.h>
89880 #include <linux/bootmem.h>
89881 +#include <linux/lmb.h>
89882
89883 #include <asm/pgtable.h>
89884 #include <asm/system.h>
89885 #include <asm/processor.h>
89886 #include <asm/mmu.h>
89887 #include <asm/mmu_context.h>
89888 -#include <asm/lmb.h>
89889 +#include <asm/prom.h>
89890 #include <asm/machdep.h>
89891 #include <asm/cputable.h>
89892 #include <asm/sections.h>
89893 Index: linux-2.6.25.4/arch/powerpc/kernel/vio.c
89894 ===================================================================
89895 --- linux-2.6.25.4.orig/arch/powerpc/kernel/vio.c
89896 +++ linux-2.6.25.4/arch/powerpc/kernel/vio.c
89897 @@ -139,7 +139,7 @@ static int vio_bus_remove(struct device
89898 */
89899 int vio_register_driver(struct vio_driver *viodrv)
89900 {
89901 - printk(KERN_DEBUG "%s: driver %s registering\n", __FUNCTION__,
89902 + printk(KERN_DEBUG "%s: driver %s registering\n", __func__,
89903 viodrv->driver.name);
89904
89905 /* fill in 'struct driver' fields */
89906 @@ -184,7 +184,7 @@ struct vio_dev *vio_register_device_node
89907 /* we need the 'device_type' property, in order to match with drivers */
89908 if (of_node->type == NULL) {
89909 printk(KERN_WARNING "%s: node %s missing 'device_type'\n",
89910 - __FUNCTION__,
89911 + __func__,
89912 of_node->name ? of_node->name : "<unknown>");
89913 return NULL;
89914 }
89915 @@ -192,7 +192,7 @@ struct vio_dev *vio_register_device_node
89916 unit_address = of_get_property(of_node, "reg", NULL);
89917 if (unit_address == NULL) {
89918 printk(KERN_WARNING "%s: node %s missing 'reg'\n",
89919 - __FUNCTION__,
89920 + __func__,
89921 of_node->name ? of_node->name : "<unknown>");
89922 return NULL;
89923 }
89924 @@ -227,7 +227,7 @@ struct vio_dev *vio_register_device_node
89925 /* register with generic device framework */
89926 if (device_register(&viodev->dev)) {
89927 printk(KERN_ERR "%s: failed to register device %s\n",
89928 - __FUNCTION__, viodev->dev.bus_id);
89929 + __func__, viodev->dev.bus_id);
89930 /* XXX free TCE table */
89931 kfree(viodev);
89932 return NULL;
89933 @@ -258,7 +258,7 @@ static int __init vio_bus_init(void)
89934 err = device_register(&vio_bus_device.dev);
89935 if (err) {
89936 printk(KERN_WARNING "%s: device_register returned %i\n",
89937 - __FUNCTION__, err);
89938 + __func__, err);
89939 return err;
89940 }
89941
89942 Index: linux-2.6.25.4/arch/powerpc/kernel/vmlinux.lds.S
89943 ===================================================================
89944 --- linux-2.6.25.4.orig/arch/powerpc/kernel/vmlinux.lds.S
89945 +++ linux-2.6.25.4/arch/powerpc/kernel/vmlinux.lds.S
89946 @@ -1,11 +1,9 @@
89947 #ifdef CONFIG_PPC64
89948 -#include <asm/page.h>
89949 #define PROVIDE32(x) PROVIDE(__unused__##x)
89950 #else
89951 -#define PAGE_SIZE 4096
89952 -#define KERNELBASE CONFIG_KERNEL_START
89953 #define PROVIDE32(x) PROVIDE(x)
89954 #endif
89955 +#include <asm/page.h>
89956 #include <asm-generic/vmlinux.lds.h>
89957 #include <asm/cache.h>
89958
89959 @@ -33,7 +31,7 @@ SECTIONS
89960 */
89961
89962 /* Text and gots */
89963 - .text : {
89964 + .text : AT(ADDR(.text) - LOAD_OFFSET) {
89965 ALIGN_FUNCTION();
89966 *(.text.head)
89967 _text = .;
89968 @@ -58,7 +56,7 @@ SECTIONS
89969 RODATA
89970
89971 /* Exception & bug tables */
89972 - __ex_table : {
89973 + __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
89974 __start___ex_table = .;
89975 *(__ex_table)
89976 __stop___ex_table = .;
89977 @@ -74,7 +72,7 @@ SECTIONS
89978 . = ALIGN(PAGE_SIZE);
89979 __init_begin = .;
89980
89981 - .init.text : {
89982 + .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {
89983 _sinittext = .;
89984 INIT_TEXT
89985 _einittext = .;
89986 @@ -83,11 +81,11 @@ SECTIONS
89987 /* .exit.text is discarded at runtime, not link time,
89988 * to deal with references from __bug_table
89989 */
89990 - .exit.text : {
89991 + .exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) {
89992 EXIT_TEXT
89993 }
89994
89995 - .init.data : {
89996 + .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {
89997 INIT_DATA
89998 __vtop_table_begin = .;
89999 *(.vtop_fixup);
90000 @@ -103,19 +101,19 @@ SECTIONS
90001 }
90002
90003 . = ALIGN(16);
90004 - .init.setup : {
90005 + .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
90006 __setup_start = .;
90007 *(.init.setup)
90008 __setup_end = .;
90009 }
90010
90011 - .initcall.init : {
90012 + .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET) {
90013 __initcall_start = .;
90014 INITCALLS
90015 __initcall_end = .;
90016 }
90017
90018 - .con_initcall.init : {
90019 + .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
90020 __con_initcall_start = .;
90021 *(.con_initcall.init)
90022 __con_initcall_end = .;
90023 @@ -124,14 +122,14 @@ SECTIONS
90024 SECURITY_INIT
90025
90026 . = ALIGN(8);
90027 - __ftr_fixup : {
90028 + __ftr_fixup : AT(ADDR(__ftr_fixup) - LOAD_OFFSET) {
90029 __start___ftr_fixup = .;
90030 *(__ftr_fixup)
90031 __stop___ftr_fixup = .;
90032 }
90033 #ifdef CONFIG_PPC64
90034 . = ALIGN(8);
90035 - __fw_ftr_fixup : {
90036 + __fw_ftr_fixup : AT(ADDR(__fw_ftr_fixup) - LOAD_OFFSET) {
90037 __start___fw_ftr_fixup = .;
90038 *(__fw_ftr_fixup)
90039 __stop___fw_ftr_fixup = .;
90040 @@ -139,14 +137,14 @@ SECTIONS
90041 #endif
90042 #ifdef CONFIG_BLK_DEV_INITRD
90043 . = ALIGN(PAGE_SIZE);
90044 - .init.ramfs : {
90045 + .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
90046 __initramfs_start = .;
90047 *(.init.ramfs)
90048 __initramfs_end = .;
90049 }
90050 #endif
90051 . = ALIGN(PAGE_SIZE);
90052 - .data.percpu : {
90053 + .data.percpu : AT(ADDR(.data.percpu) - LOAD_OFFSET) {
90054 __per_cpu_start = .;
90055 *(.data.percpu)
90056 *(.data.percpu.shared_aligned)
90057 @@ -154,7 +152,7 @@ SECTIONS
90058 }
90059
90060 . = ALIGN(8);
90061 - .machine.desc : {
90062 + .machine.desc : AT(ADDR(.machine.desc) - LOAD_OFFSET) {
90063 __machine_desc_start = . ;
90064 *(.machine.desc)
90065 __machine_desc_end = . ;
90066 @@ -172,25 +170,24 @@ SECTIONS
90067 _sdata = .;
90068
90069 #ifdef CONFIG_PPC32
90070 - .data :
90071 - {
90072 + .data : AT(ADDR(.data) - LOAD_OFFSET) {
90073 DATA_DATA
90074 *(.sdata)
90075 *(.got.plt) *(.got)
90076 }
90077 #else
90078 - .data : {
90079 + .data : AT(ADDR(.data) - LOAD_OFFSET) {
90080 DATA_DATA
90081 *(.data.rel*)
90082 *(.toc1)
90083 *(.branch_lt)
90084 }
90085
90086 - .opd : {
90087 + .opd : AT(ADDR(.opd) - LOAD_OFFSET) {
90088 *(.opd)
90089 }
90090
90091 - .got : {
90092 + .got : AT(ADDR(.got) - LOAD_OFFSET) {
90093 __toc_start = .;
90094 *(.got)
90095 *(.toc)
90096 @@ -207,26 +204,26 @@ SECTIONS
90097 #else
90098 . = ALIGN(16384);
90099 #endif
90100 - .data.init_task : {
90101 + .data.init_task : AT(ADDR(.data.init_task) - LOAD_OFFSET) {
90102 *(.data.init_task)
90103 }
90104
90105 . = ALIGN(PAGE_SIZE);
90106 - .data.page_aligned : {
90107 + .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) {
90108 *(.data.page_aligned)
90109 }
90110
90111 - .data.cacheline_aligned : {
90112 + .data.cacheline_aligned : AT(ADDR(.data.cacheline_aligned) - LOAD_OFFSET) {
90113 *(.data.cacheline_aligned)
90114 }
90115
90116 . = ALIGN(L1_CACHE_BYTES);
90117 - .data.read_mostly : {
90118 + .data.read_mostly : AT(ADDR(.data.read_mostly) - LOAD_OFFSET) {
90119 *(.data.read_mostly)
90120 }
90121
90122 . = ALIGN(PAGE_SIZE);
90123 - __data_nosave : {
90124 + .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) {
90125 __nosave_begin = .;
90126 *(.data.nosave)
90127 . = ALIGN(PAGE_SIZE);
90128 @@ -237,7 +234,7 @@ SECTIONS
90129 * And finally the bss
90130 */
90131
90132 - .bss : {
90133 + .bss : AT(ADDR(.bss) - LOAD_OFFSET) {
90134 __bss_start = .;
90135 *(.sbss) *(.scommon)
90136 *(.dynbss)
90137 Index: linux-2.6.25.4/arch/powerpc/lib/rheap.c
90138 ===================================================================
90139 --- linux-2.6.25.4.orig/arch/powerpc/lib/rheap.c
90140 +++ linux-2.6.25.4/arch/powerpc/lib/rheap.c
90141 @@ -54,7 +54,7 @@ static int grow(rh_info_t * info, int ma
90142
90143 new_blocks = max_blocks - info->max_blocks;
90144
90145 - block = kmalloc(sizeof(rh_block_t) * max_blocks, GFP_KERNEL);
90146 + block = kmalloc(sizeof(rh_block_t) * max_blocks, GFP_ATOMIC);
90147 if (block == NULL)
90148 return -ENOMEM;
90149
90150 @@ -258,7 +258,7 @@ rh_info_t *rh_create(unsigned int alignm
90151 if ((alignment & (alignment - 1)) != 0)
90152 return ERR_PTR(-EINVAL);
90153
90154 - info = kmalloc(sizeof(*info), GFP_KERNEL);
90155 + info = kmalloc(sizeof(*info), GFP_ATOMIC);
90156 if (info == NULL)
90157 return ERR_PTR(-ENOMEM);
90158
90159 Index: linux-2.6.25.4/arch/powerpc/lib/string.S
90160 ===================================================================
90161 --- linux-2.6.25.4.orig/arch/powerpc/lib/string.S
90162 +++ linux-2.6.25.4/arch/powerpc/lib/string.S
90163 @@ -75,6 +75,20 @@ _GLOBAL(strcmp)
90164 beq 1b
90165 blr
90166
90167 +_GLOBAL(strncmp)
90168 + PPC_LCMPI r5,0
90169 + beqlr
90170 + mtctr r5
90171 + addi r5,r3,-1
90172 + addi r4,r4,-1
90173 +1: lbzu r3,1(r5)
90174 + cmpwi 1,r3,0
90175 + lbzu r0,1(r4)
90176 + subf. r3,r0,r3
90177 + beqlr 1
90178 + bdnzt eq,1b
90179 + blr
90180 +
90181 _GLOBAL(strlen)
90182 addi r4,r3,-1
90183 1: lbzu r0,1(r4)
90184 Index: linux-2.6.25.4/arch/powerpc/math-emu/fabs.c
90185 ===================================================================
90186 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fabs.c
90187 +++ linux-2.6.25.4/arch/powerpc/math-emu/fabs.c
90188 @@ -9,7 +9,7 @@ fabs(u32 *frD, u32 *frB)
90189 frD[1] = frB[1];
90190
90191 #ifdef DEBUG
90192 - printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
90193 + printk("%s: D %p, B %p: ", __func__, frD, frB);
90194 dump_double(frD);
90195 printk("\n");
90196 #endif
90197 Index: linux-2.6.25.4/arch/powerpc/math-emu/fadd.c
90198 ===================================================================
90199 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fadd.c
90200 +++ linux-2.6.25.4/arch/powerpc/math-emu/fadd.c
90201 @@ -14,7 +14,7 @@ fadd(void *frD, void *frA, void *frB)
90202 int ret = 0;
90203
90204 #ifdef DEBUG
90205 - printk("%s: %p %p %p\n", __FUNCTION__, frD, frA, frB);
90206 + printk("%s: %p %p %p\n", __func__, frD, frA, frB);
90207 #endif
90208
90209 __FP_UNPACK_D(A, frA);
90210 Index: linux-2.6.25.4/arch/powerpc/math-emu/fadds.c
90211 ===================================================================
90212 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fadds.c
90213 +++ linux-2.6.25.4/arch/powerpc/math-emu/fadds.c
90214 @@ -15,7 +15,7 @@ fadds(void *frD, void *frA, void *frB)
90215 int ret = 0;
90216
90217 #ifdef DEBUG
90218 - printk("%s: %p %p %p\n", __FUNCTION__, frD, frA, frB);
90219 + printk("%s: %p %p %p\n", __func__, frD, frA, frB);
90220 #endif
90221
90222 __FP_UNPACK_D(A, frA);
90223 Index: linux-2.6.25.4/arch/powerpc/math-emu/fcmpo.c
90224 ===================================================================
90225 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fcmpo.c
90226 +++ linux-2.6.25.4/arch/powerpc/math-emu/fcmpo.c
90227 @@ -15,7 +15,7 @@ fcmpo(u32 *ccr, int crfD, void *frA, voi
90228 int ret = 0;
90229
90230 #ifdef DEBUG
90231 - printk("%s: %p (%08x) %d %p %p\n", __FUNCTION__, ccr, *ccr, crfD, frA, frB);
90232 + printk("%s: %p (%08x) %d %p %p\n", __func__, ccr, *ccr, crfD, frA, frB);
90233 #endif
90234
90235 __FP_UNPACK_D(A, frA);
90236 Index: linux-2.6.25.4/arch/powerpc/math-emu/fcmpu.c
90237 ===================================================================
90238 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fcmpu.c
90239 +++ linux-2.6.25.4/arch/powerpc/math-emu/fcmpu.c
90240 @@ -14,7 +14,7 @@ fcmpu(u32 *ccr, int crfD, void *frA, voi
90241 long cmp;
90242
90243 #ifdef DEBUG
90244 - printk("%s: %p (%08x) %d %p %p\n", __FUNCTION__, ccr, *ccr, crfD, frA, frB);
90245 + printk("%s: %p (%08x) %d %p %p\n", __func__, ccr, *ccr, crfD, frA, frB);
90246 #endif
90247
90248 __FP_UNPACK_D(A, frA);
90249 Index: linux-2.6.25.4/arch/powerpc/math-emu/fctiw.c
90250 ===================================================================
90251 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fctiw.c
90252 +++ linux-2.6.25.4/arch/powerpc/math-emu/fctiw.c
90253 @@ -16,7 +16,7 @@ fctiw(u32 *frD, void *frB)
90254 frD[1] = r;
90255
90256 #ifdef DEBUG
90257 - printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
90258 + printk("%s: D %p, B %p: ", __func__, frD, frB);
90259 dump_double(frD);
90260 printk("\n");
90261 #endif
90262 Index: linux-2.6.25.4/arch/powerpc/math-emu/fctiwz.c
90263 ===================================================================
90264 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fctiwz.c
90265 +++ linux-2.6.25.4/arch/powerpc/math-emu/fctiwz.c
90266 @@ -23,7 +23,7 @@ fctiwz(u32 *frD, void *frB)
90267 __FPU_FPSCR = fpscr;
90268
90269 #ifdef DEBUG
90270 - printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
90271 + printk("%s: D %p, B %p: ", __func__, frD, frB);
90272 dump_double(frD);
90273 printk("\n");
90274 #endif
90275 Index: linux-2.6.25.4/arch/powerpc/math-emu/fdiv.c
90276 ===================================================================
90277 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fdiv.c
90278 +++ linux-2.6.25.4/arch/powerpc/math-emu/fdiv.c
90279 @@ -14,7 +14,7 @@ fdiv(void *frD, void *frA, void *frB)
90280 int ret = 0;
90281
90282 #ifdef DEBUG
90283 - printk("%s: %p %p %p\n", __FUNCTION__, frD, frA, frB);
90284 + printk("%s: %p %p %p\n", __func__, frD, frA, frB);
90285 #endif
90286
90287 __FP_UNPACK_D(A, frA);
90288 @@ -28,13 +28,13 @@ fdiv(void *frD, void *frA, void *frB)
90289 if (A_c == FP_CLS_ZERO && B_c == FP_CLS_ZERO) {
90290 ret |= EFLAG_VXZDZ;
90291 #ifdef DEBUG
90292 - printk("%s: FPSCR_VXZDZ raised\n", __FUNCTION__);
90293 + printk("%s: FPSCR_VXZDZ raised\n", __func__);
90294 #endif
90295 }
90296 if (A_c == FP_CLS_INF && B_c == FP_CLS_INF) {
90297 ret |= EFLAG_VXIDI;
90298 #ifdef DEBUG
90299 - printk("%s: FPSCR_VXIDI raised\n", __FUNCTION__);
90300 + printk("%s: FPSCR_VXIDI raised\n", __func__);
90301 #endif
90302 }
90303
90304 Index: linux-2.6.25.4/arch/powerpc/math-emu/fdivs.c
90305 ===================================================================
90306 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fdivs.c
90307 +++ linux-2.6.25.4/arch/powerpc/math-emu/fdivs.c
90308 @@ -15,7 +15,7 @@ fdivs(void *frD, void *frA, void *frB)
90309 int ret = 0;
90310
90311 #ifdef DEBUG
90312 - printk("%s: %p %p %p\n", __FUNCTION__, frD, frA, frB);
90313 + printk("%s: %p %p %p\n", __func__, frD, frA, frB);
90314 #endif
90315
90316 __FP_UNPACK_D(A, frA);
90317 @@ -29,13 +29,13 @@ fdivs(void *frD, void *frA, void *frB)
90318 if (A_c == FP_CLS_ZERO && B_c == FP_CLS_ZERO) {
90319 ret |= EFLAG_VXZDZ;
90320 #ifdef DEBUG
90321 - printk("%s: FPSCR_VXZDZ raised\n", __FUNCTION__);
90322 + printk("%s: FPSCR_VXZDZ raised\n", __func__);
90323 #endif
90324 }
90325 if (A_c == FP_CLS_INF && B_c == FP_CLS_INF) {
90326 ret |= EFLAG_VXIDI;
90327 #ifdef DEBUG
90328 - printk("%s: FPSCR_VXIDI raised\n", __FUNCTION__);
90329 + printk("%s: FPSCR_VXIDI raised\n", __func__);
90330 #endif
90331 }
90332
90333 Index: linux-2.6.25.4/arch/powerpc/math-emu/fmadd.c
90334 ===================================================================
90335 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fmadd.c
90336 +++ linux-2.6.25.4/arch/powerpc/math-emu/fmadd.c
90337 @@ -16,7 +16,7 @@ fmadd(void *frD, void *frA, void *frB, v
90338 int ret = 0;
90339
90340 #ifdef DEBUG
90341 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90342 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90343 #endif
90344
90345 __FP_UNPACK_D(A, frA);
90346 Index: linux-2.6.25.4/arch/powerpc/math-emu/fmadds.c
90347 ===================================================================
90348 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fmadds.c
90349 +++ linux-2.6.25.4/arch/powerpc/math-emu/fmadds.c
90350 @@ -17,7 +17,7 @@ fmadds(void *frD, void *frA, void *frB,
90351 int ret = 0;
90352
90353 #ifdef DEBUG
90354 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90355 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90356 #endif
90357
90358 __FP_UNPACK_D(A, frA);
90359 Index: linux-2.6.25.4/arch/powerpc/math-emu/fmr.c
90360 ===================================================================
90361 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fmr.c
90362 +++ linux-2.6.25.4/arch/powerpc/math-emu/fmr.c
90363 @@ -9,7 +9,7 @@ fmr(u32 *frD, u32 *frB)
90364 frD[1] = frB[1];
90365
90366 #ifdef DEBUG
90367 - printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
90368 + printk("%s: D %p, B %p: ", __func__, frD, frB);
90369 dump_double(frD);
90370 printk("\n");
90371 #endif
90372 Index: linux-2.6.25.4/arch/powerpc/math-emu/fmsub.c
90373 ===================================================================
90374 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fmsub.c
90375 +++ linux-2.6.25.4/arch/powerpc/math-emu/fmsub.c
90376 @@ -16,7 +16,7 @@ fmsub(void *frD, void *frA, void *frB, v
90377 int ret = 0;
90378
90379 #ifdef DEBUG
90380 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90381 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90382 #endif
90383
90384 __FP_UNPACK_D(A, frA);
90385 Index: linux-2.6.25.4/arch/powerpc/math-emu/fmsubs.c
90386 ===================================================================
90387 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fmsubs.c
90388 +++ linux-2.6.25.4/arch/powerpc/math-emu/fmsubs.c
90389 @@ -17,7 +17,7 @@ fmsubs(void *frD, void *frA, void *frB,
90390 int ret = 0;
90391
90392 #ifdef DEBUG
90393 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90394 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90395 #endif
90396
90397 __FP_UNPACK_D(A, frA);
90398 Index: linux-2.6.25.4/arch/powerpc/math-emu/fmul.c
90399 ===================================================================
90400 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fmul.c
90401 +++ linux-2.6.25.4/arch/powerpc/math-emu/fmul.c
90402 @@ -14,7 +14,7 @@ fmul(void *frD, void *frA, void *frB)
90403 int ret = 0;
90404
90405 #ifdef DEBUG
90406 - printk("%s: %p %p %p\n", __FUNCTION__, frD, frA, frB);
90407 + printk("%s: %p %p %p\n", __func__, frD, frA, frB);
90408 #endif
90409
90410 __FP_UNPACK_D(A, frA);
90411 Index: linux-2.6.25.4/arch/powerpc/math-emu/fmuls.c
90412 ===================================================================
90413 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fmuls.c
90414 +++ linux-2.6.25.4/arch/powerpc/math-emu/fmuls.c
90415 @@ -15,7 +15,7 @@ fmuls(void *frD, void *frA, void *frB)
90416 int ret = 0;
90417
90418 #ifdef DEBUG
90419 - printk("%s: %p %p %p\n", __FUNCTION__, frD, frA, frB);
90420 + printk("%s: %p %p %p\n", __func__, frD, frA, frB);
90421 #endif
90422
90423 __FP_UNPACK_D(A, frA);
90424 Index: linux-2.6.25.4/arch/powerpc/math-emu/fnabs.c
90425 ===================================================================
90426 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fnabs.c
90427 +++ linux-2.6.25.4/arch/powerpc/math-emu/fnabs.c
90428 @@ -9,7 +9,7 @@ fnabs(u32 *frD, u32 *frB)
90429 frD[1] = frB[1];
90430
90431 #ifdef DEBUG
90432 - printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
90433 + printk("%s: D %p, B %p: ", __func__, frD, frB);
90434 dump_double(frD);
90435 printk("\n");
90436 #endif
90437 Index: linux-2.6.25.4/arch/powerpc/math-emu/fneg.c
90438 ===================================================================
90439 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fneg.c
90440 +++ linux-2.6.25.4/arch/powerpc/math-emu/fneg.c
90441 @@ -9,7 +9,7 @@ fneg(u32 *frD, u32 *frB)
90442 frD[1] = frB[1];
90443
90444 #ifdef DEBUG
90445 - printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
90446 + printk("%s: D %p, B %p: ", __func__, frD, frB);
90447 dump_double(frD);
90448 printk("\n");
90449 #endif
90450 Index: linux-2.6.25.4/arch/powerpc/math-emu/fnmadd.c
90451 ===================================================================
90452 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fnmadd.c
90453 +++ linux-2.6.25.4/arch/powerpc/math-emu/fnmadd.c
90454 @@ -16,7 +16,7 @@ fnmadd(void *frD, void *frA, void *frB,
90455 int ret = 0;
90456
90457 #ifdef DEBUG
90458 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90459 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90460 #endif
90461
90462 __FP_UNPACK_D(A, frA);
90463 Index: linux-2.6.25.4/arch/powerpc/math-emu/fnmadds.c
90464 ===================================================================
90465 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fnmadds.c
90466 +++ linux-2.6.25.4/arch/powerpc/math-emu/fnmadds.c
90467 @@ -17,7 +17,7 @@ fnmadds(void *frD, void *frA, void *frB,
90468 int ret = 0;
90469
90470 #ifdef DEBUG
90471 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90472 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90473 #endif
90474
90475 __FP_UNPACK_D(A, frA);
90476 Index: linux-2.6.25.4/arch/powerpc/math-emu/fnmsub.c
90477 ===================================================================
90478 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fnmsub.c
90479 +++ linux-2.6.25.4/arch/powerpc/math-emu/fnmsub.c
90480 @@ -16,7 +16,7 @@ fnmsub(void *frD, void *frA, void *frB,
90481 int ret = 0;
90482
90483 #ifdef DEBUG
90484 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90485 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90486 #endif
90487
90488 __FP_UNPACK_D(A, frA);
90489 Index: linux-2.6.25.4/arch/powerpc/math-emu/fnmsubs.c
90490 ===================================================================
90491 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fnmsubs.c
90492 +++ linux-2.6.25.4/arch/powerpc/math-emu/fnmsubs.c
90493 @@ -17,7 +17,7 @@ fnmsubs(void *frD, void *frA, void *frB,
90494 int ret = 0;
90495
90496 #ifdef DEBUG
90497 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90498 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90499 #endif
90500
90501 __FP_UNPACK_D(A, frA);
90502 Index: linux-2.6.25.4/arch/powerpc/math-emu/fres.c
90503 ===================================================================
90504 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fres.c
90505 +++ linux-2.6.25.4/arch/powerpc/math-emu/fres.c
90506 @@ -6,7 +6,7 @@ int
90507 fres(void *frD, void *frB)
90508 {
90509 #ifdef DEBUG
90510 - printk("%s: %p %p\n", __FUNCTION__, frD, frB);
90511 + printk("%s: %p %p\n", __func__, frD, frB);
90512 #endif
90513 return -ENOSYS;
90514 }
90515 Index: linux-2.6.25.4/arch/powerpc/math-emu/frsp.c
90516 ===================================================================
90517 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/frsp.c
90518 +++ linux-2.6.25.4/arch/powerpc/math-emu/frsp.c
90519 @@ -12,7 +12,7 @@ frsp(void *frD, void *frB)
90520 FP_DECL_D(B);
90521
90522 #ifdef DEBUG
90523 - printk("%s: D %p, B %p\n", __FUNCTION__, frD, frB);
90524 + printk("%s: D %p, B %p\n", __func__, frD, frB);
90525 #endif
90526
90527 __FP_UNPACK_D(B, frB);
90528 Index: linux-2.6.25.4/arch/powerpc/math-emu/frsqrte.c
90529 ===================================================================
90530 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/frsqrte.c
90531 +++ linux-2.6.25.4/arch/powerpc/math-emu/frsqrte.c
90532 @@ -6,7 +6,7 @@ int
90533 frsqrte(void *frD, void *frB)
90534 {
90535 #ifdef DEBUG
90536 - printk("%s: %p %p\n", __FUNCTION__, frD, frB);
90537 + printk("%s: %p %p\n", __func__, frD, frB);
90538 #endif
90539 return 0;
90540 }
90541 Index: linux-2.6.25.4/arch/powerpc/math-emu/fsel.c
90542 ===================================================================
90543 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fsel.c
90544 +++ linux-2.6.25.4/arch/powerpc/math-emu/fsel.c
90545 @@ -11,7 +11,7 @@ fsel(u32 *frD, void *frA, u32 *frB, u32
90546 FP_DECL_D(A);
90547
90548 #ifdef DEBUG
90549 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frA, frB, frC);
90550 + printk("%s: %p %p %p %p\n", __func__, frD, frA, frB, frC);
90551 #endif
90552
90553 __FP_UNPACK_D(A, frA);
90554 Index: linux-2.6.25.4/arch/powerpc/math-emu/fsqrt.c
90555 ===================================================================
90556 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fsqrt.c
90557 +++ linux-2.6.25.4/arch/powerpc/math-emu/fsqrt.c
90558 @@ -13,7 +13,7 @@ fsqrt(void *frD, void *frB)
90559 int ret = 0;
90560
90561 #ifdef DEBUG
90562 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frB);
90563 + printk("%s: %p %p %p %p\n", __func__, frD, frB);
90564 #endif
90565
90566 __FP_UNPACK_D(B, frB);
90567 Index: linux-2.6.25.4/arch/powerpc/math-emu/fsqrts.c
90568 ===================================================================
90569 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fsqrts.c
90570 +++ linux-2.6.25.4/arch/powerpc/math-emu/fsqrts.c
90571 @@ -14,7 +14,7 @@ fsqrts(void *frD, void *frB)
90572 int ret = 0;
90573
90574 #ifdef DEBUG
90575 - printk("%s: %p %p %p %p\n", __FUNCTION__, frD, frB);
90576 + printk("%s: %p %p %p %p\n", __func__, frD, frB);
90577 #endif
90578
90579 __FP_UNPACK_D(B, frB);
90580 Index: linux-2.6.25.4/arch/powerpc/math-emu/fsub.c
90581 ===================================================================
90582 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fsub.c
90583 +++ linux-2.6.25.4/arch/powerpc/math-emu/fsub.c
90584 @@ -14,7 +14,7 @@ fsub(void *frD, void *frA, void *frB)
90585 int ret = 0;
90586
90587 #ifdef DEBUG
90588 - printk("%s: %p %p %p\n", __FUNCTION__, frD, frA, frB);
90589 + printk("%s: %p %p %p\n", __func__, frD, frA, frB);
90590 #endif
90591
90592 __FP_UNPACK_D(A, frA);
90593 Index: linux-2.6.25.4/arch/powerpc/math-emu/fsubs.c
90594 ===================================================================
90595 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/fsubs.c
90596 +++ linux-2.6.25.4/arch/powerpc/math-emu/fsubs.c
90597 @@ -15,7 +15,7 @@ fsubs(void *frD, void *frA, void *frB)
90598 int ret = 0;
90599
90600 #ifdef DEBUG
90601 - printk("%s: %p %p %p\n", __FUNCTION__, frD, frA, frB);
90602 + printk("%s: %p %p %p\n", __func__, frD, frA, frB);
90603 #endif
90604
90605 __FP_UNPACK_D(A, frA);
90606 Index: linux-2.6.25.4/arch/powerpc/math-emu/lfd.c
90607 ===================================================================
90608 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/lfd.c
90609 +++ linux-2.6.25.4/arch/powerpc/math-emu/lfd.c
90610 @@ -11,7 +11,7 @@ lfd(void *frD, void *ea)
90611 if (copy_from_user(frD, ea, sizeof(double)))
90612 return -EFAULT;
90613 #ifdef DEBUG
90614 - printk("%s: D %p, ea %p: ", __FUNCTION__, frD, ea);
90615 + printk("%s: D %p, ea %p: ", __func__, frD, ea);
90616 dump_double(frD);
90617 printk("\n");
90618 #endif
90619 Index: linux-2.6.25.4/arch/powerpc/math-emu/lfs.c
90620 ===================================================================
90621 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/lfs.c
90622 +++ linux-2.6.25.4/arch/powerpc/math-emu/lfs.c
90623 @@ -14,7 +14,7 @@ lfs(void *frD, void *ea)
90624 float f;
90625
90626 #ifdef DEBUG
90627 - printk("%s: D %p, ea %p\n", __FUNCTION__, frD, ea);
90628 + printk("%s: D %p, ea %p\n", __func__, frD, ea);
90629 #endif
90630
90631 if (copy_from_user(&f, ea, sizeof(float)))
90632 Index: linux-2.6.25.4/arch/powerpc/math-emu/mcrfs.c
90633 ===================================================================
90634 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/mcrfs.c
90635 +++ linux-2.6.25.4/arch/powerpc/math-emu/mcrfs.c
90636 @@ -10,7 +10,7 @@ mcrfs(u32 *ccr, u32 crfD, u32 crfS)
90637 u32 value, clear;
90638
90639 #ifdef DEBUG
90640 - printk("%s: %p (%08x) %d %d\n", __FUNCTION__, ccr, *ccr, crfD, crfS);
90641 + printk("%s: %p (%08x) %d %d\n", __func__, ccr, *ccr, crfD, crfS);
90642 #endif
90643
90644 clear = 15 << ((7 - crfS) << 2);
90645 @@ -24,7 +24,7 @@ mcrfs(u32 *ccr, u32 crfD, u32 crfS)
90646 *ccr |= (value << ((7 - crfD) << 2));
90647
90648 #ifdef DEBUG
90649 - printk("CR: %08x\n", __FUNCTION__, *ccr);
90650 + printk("CR: %08x\n", __func__, *ccr);
90651 #endif
90652
90653 return 0;
90654 Index: linux-2.6.25.4/arch/powerpc/math-emu/mffs.c
90655 ===================================================================
90656 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/mffs.c
90657 +++ linux-2.6.25.4/arch/powerpc/math-emu/mffs.c
90658 @@ -10,7 +10,7 @@ mffs(u32 *frD)
90659 frD[1] = __FPU_FPSCR;
90660
90661 #ifdef DEBUG
90662 - printk("%s: frD %p: %08x.%08x\n", __FUNCTION__, frD, frD[0], frD[1]);
90663 + printk("%s: frD %p: %08x.%08x\n", __func__, frD, frD[0], frD[1]);
90664 #endif
90665
90666 return 0;
90667 Index: linux-2.6.25.4/arch/powerpc/math-emu/mtfsb0.c
90668 ===================================================================
90669 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/mtfsb0.c
90670 +++ linux-2.6.25.4/arch/powerpc/math-emu/mtfsb0.c
90671 @@ -11,7 +11,7 @@ mtfsb0(int crbD)
90672 __FPU_FPSCR &= ~(1 << (31 - crbD));
90673
90674 #ifdef DEBUG
90675 - printk("%s: %d %08lx\n", __FUNCTION__, crbD, __FPU_FPSCR);
90676 + printk("%s: %d %08lx\n", __func__, crbD, __FPU_FPSCR);
90677 #endif
90678
90679 return 0;
90680 Index: linux-2.6.25.4/arch/powerpc/math-emu/mtfsb1.c
90681 ===================================================================
90682 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/mtfsb1.c
90683 +++ linux-2.6.25.4/arch/powerpc/math-emu/mtfsb1.c
90684 @@ -11,7 +11,7 @@ mtfsb1(int crbD)
90685 __FPU_FPSCR |= (1 << (31 - crbD));
90686
90687 #ifdef DEBUG
90688 - printk("%s: %d %08lx\n", __FUNCTION__, crbD, __FPU_FPSCR);
90689 + printk("%s: %d %08lx\n", __func__, crbD, __FPU_FPSCR);
90690 #endif
90691
90692 return 0;
90693 Index: linux-2.6.25.4/arch/powerpc/math-emu/mtfsf.c
90694 ===================================================================
90695 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/mtfsf.c
90696 +++ linux-2.6.25.4/arch/powerpc/math-emu/mtfsf.c
90697 @@ -38,7 +38,7 @@ mtfsf(unsigned int FM, u32 *frB)
90698 __FPU_FPSCR |= (frB[1] & mask);
90699
90700 #ifdef DEBUG
90701 - printk("%s: %02x %p: %08lx\n", __FUNCTION__, FM, frB, __FPU_FPSCR);
90702 + printk("%s: %02x %p: %08lx\n", __func__, FM, frB, __FPU_FPSCR);
90703 #endif
90704
90705 return 0;
90706 Index: linux-2.6.25.4/arch/powerpc/math-emu/mtfsfi.c
90707 ===================================================================
90708 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/mtfsfi.c
90709 +++ linux-2.6.25.4/arch/powerpc/math-emu/mtfsfi.c
90710 @@ -16,7 +16,7 @@ mtfsfi(unsigned int crfD, unsigned int I
90711 __FPU_FPSCR |= (IMM & 0xf) << ((7 - crfD) << 2);
90712
90713 #ifdef DEBUG
90714 - printk("%s: %d %x: %08lx\n", __FUNCTION__, crfD, IMM, __FPU_FPSCR);
90715 + printk("%s: %d %x: %08lx\n", __func__, crfD, IMM, __FPU_FPSCR);
90716 #endif
90717
90718 return 0;
90719 Index: linux-2.6.25.4/arch/powerpc/math-emu/stfd.c
90720 ===================================================================
90721 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/stfd.c
90722 +++ linux-2.6.25.4/arch/powerpc/math-emu/stfd.c
90723 @@ -7,7 +7,7 @@ stfd(void *frS, void *ea)
90724 {
90725 #if 0
90726 #ifdef DEBUG
90727 - printk("%s: S %p, ea %p: ", __FUNCTION__, frS, ea);
90728 + printk("%s: S %p, ea %p: ", __func__, frS, ea);
90729 dump_double(frS);
90730 printk("\n");
90731 #endif
90732 Index: linux-2.6.25.4/arch/powerpc/math-emu/stfiwx.c
90733 ===================================================================
90734 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/stfiwx.c
90735 +++ linux-2.6.25.4/arch/powerpc/math-emu/stfiwx.c
90736 @@ -6,7 +6,7 @@ int
90737 stfiwx(u32 *frS, void *ea)
90738 {
90739 #ifdef DEBUG
90740 - printk("%s: %p %p\n", __FUNCTION__, frS, ea);
90741 + printk("%s: %p %p\n", __func__, frS, ea);
90742 #endif
90743
90744 if (copy_to_user(ea, &frS[1], sizeof(frS[1])))
90745 Index: linux-2.6.25.4/arch/powerpc/math-emu/stfs.c
90746 ===================================================================
90747 --- linux-2.6.25.4.orig/arch/powerpc/math-emu/stfs.c
90748 +++ linux-2.6.25.4/arch/powerpc/math-emu/stfs.c
90749 @@ -15,7 +15,7 @@ stfs(void *frS, void *ea)
90750 int err;
90751
90752 #ifdef DEBUG
90753 - printk("%s: S %p, ea %p\n", __FUNCTION__, frS, ea);
90754 + printk("%s: S %p, ea %p\n", __func__, frS, ea);
90755 #endif
90756
90757 __FP_UNPACK_D(A, frS);
90758 Index: linux-2.6.25.4/arch/powerpc/mm/40x_mmu.c
90759 ===================================================================
90760 --- linux-2.6.25.4.orig/arch/powerpc/mm/40x_mmu.c
90761 +++ linux-2.6.25.4/arch/powerpc/mm/40x_mmu.c
90762 @@ -97,7 +97,7 @@ unsigned long __init mmu_mapin_ram(void)
90763 phys_addr_t p;
90764
90765 v = KERNELBASE;
90766 - p = PPC_MEMSTART;
90767 + p = 0;
90768 s = total_lowmem;
90769
90770 if (__map_without_ltlbs)
90771 Index: linux-2.6.25.4/arch/powerpc/mm/44x_mmu.c
90772 ===================================================================
90773 --- linux-2.6.25.4.orig/arch/powerpc/mm/44x_mmu.c
90774 +++ linux-2.6.25.4/arch/powerpc/mm/44x_mmu.c
90775 @@ -67,7 +67,7 @@ unsigned long __init mmu_mapin_ram(void)
90776
90777 /* Pin in enough TLBs to cover any lowmem not covered by the
90778 * initial 256M mapping established in head_44x.S */
90779 - for (addr = PPC_PIN_SIZE; addr < total_lowmem;
90780 + for (addr = PPC_PIN_SIZE; addr < lowmem_end_addr;
90781 addr += PPC_PIN_SIZE)
90782 ppc44x_pin_tlb(addr + PAGE_OFFSET, addr);
90783
90784 Index: linux-2.6.25.4/arch/powerpc/mm/Makefile
90785 ===================================================================
90786 --- linux-2.6.25.4.orig/arch/powerpc/mm/Makefile
90787 +++ linux-2.6.25.4/arch/powerpc/mm/Makefile
90788 @@ -6,7 +6,7 @@ ifeq ($(CONFIG_PPC64),y)
90789 EXTRA_CFLAGS += -mno-minimal-toc
90790 endif
90791
90792 -obj-y := fault.o mem.o lmb.o \
90793 +obj-y := fault.o mem.o \
90794 init_$(CONFIG_WORD_SIZE).o \
90795 pgtable_$(CONFIG_WORD_SIZE).o \
90796 mmu_context_$(CONFIG_WORD_SIZE).o
90797 Index: linux-2.6.25.4/arch/powerpc/mm/fsl_booke_mmu.c
90798 ===================================================================
90799 --- linux-2.6.25.4.orig/arch/powerpc/mm/fsl_booke_mmu.c
90800 +++ linux-2.6.25.4/arch/powerpc/mm/fsl_booke_mmu.c
90801 @@ -49,18 +49,15 @@
90802 #include <asm/mmu.h>
90803 #include <asm/uaccess.h>
90804 #include <asm/smp.h>
90805 -#include <asm/bootx.h>
90806 #include <asm/machdep.h>
90807 #include <asm/setup.h>
90808
90809 +#include "mmu_decl.h"
90810 +
90811 extern void loadcam_entry(unsigned int index);
90812 unsigned int tlbcam_index;
90813 unsigned int num_tlbcam_entries;
90814 static unsigned long __cam0, __cam1, __cam2;
90815 -extern unsigned long total_lowmem;
90816 -extern unsigned long __max_low_memory;
90817 -extern unsigned long __initial_memory_limit;
90818 -#define MAX_LOW_MEM CONFIG_LOWMEM_SIZE
90819
90820 #define NUM_TLBCAMS (16)
90821
90822 @@ -165,15 +162,15 @@ void invalidate_tlbcam_entry(int index)
90823 void __init cam_mapin_ram(unsigned long cam0, unsigned long cam1,
90824 unsigned long cam2)
90825 {
90826 - settlbcam(0, PAGE_OFFSET, PPC_MEMSTART, cam0, _PAGE_KERNEL, 0);
90827 + settlbcam(0, PAGE_OFFSET, memstart_addr, cam0, _PAGE_KERNEL, 0);
90828 tlbcam_index++;
90829 if (cam1) {
90830 tlbcam_index++;
90831 - settlbcam(1, PAGE_OFFSET+cam0, PPC_MEMSTART+cam0, cam1, _PAGE_KERNEL, 0);
90832 + settlbcam(1, PAGE_OFFSET+cam0, memstart_addr+cam0, cam1, _PAGE_KERNEL, 0);
90833 }
90834 if (cam2) {
90835 tlbcam_index++;
90836 - settlbcam(2, PAGE_OFFSET+cam0+cam1, PPC_MEMSTART+cam0+cam1, cam2, _PAGE_KERNEL, 0);
90837 + settlbcam(2, PAGE_OFFSET+cam0+cam1, memstart_addr+cam0+cam1, cam2, _PAGE_KERNEL, 0);
90838 }
90839 }
90840
90841 @@ -196,35 +193,32 @@ unsigned long __init mmu_mapin_ram(void)
90842 void __init
90843 adjust_total_lowmem(void)
90844 {
90845 - unsigned long max_low_mem = MAX_LOW_MEM;
90846 - unsigned long cam_max = 0x10000000;
90847 - unsigned long ram;
90848 -
90849 - /* adjust CAM size to max_low_mem */
90850 - if (max_low_mem < cam_max)
90851 - cam_max = max_low_mem;
90852 -
90853 - /* adjust lowmem size to max_low_mem */
90854 - if (max_low_mem < total_lowmem)
90855 - ram = max_low_mem;
90856 - else
90857 - ram = total_lowmem;
90858 + phys_addr_t max_lowmem_size = __max_low_memory;
90859 + phys_addr_t cam_max_size = 0x10000000;
90860 + phys_addr_t ram;
90861 +
90862 + /* adjust CAM size to max_lowmem_size */
90863 + if (max_lowmem_size < cam_max_size)
90864 + cam_max_size = max_lowmem_size;
90865 +
90866 + /* adjust lowmem size to max_lowmem_size */
90867 + ram = min(max_lowmem_size, total_lowmem);
90868
90869 /* Calculate CAM values */
90870 __cam0 = 1UL << 2 * (__ilog2(ram) / 2);
90871 - if (__cam0 > cam_max)
90872 - __cam0 = cam_max;
90873 + if (__cam0 > cam_max_size)
90874 + __cam0 = cam_max_size;
90875 ram -= __cam0;
90876 if (ram) {
90877 __cam1 = 1UL << 2 * (__ilog2(ram) / 2);
90878 - if (__cam1 > cam_max)
90879 - __cam1 = cam_max;
90880 + if (__cam1 > cam_max_size)
90881 + __cam1 = cam_max_size;
90882 ram -= __cam1;
90883 }
90884 if (ram) {
90885 __cam2 = 1UL << 2 * (__ilog2(ram) / 2);
90886 - if (__cam2 > cam_max)
90887 - __cam2 = cam_max;
90888 + if (__cam2 > cam_max_size)
90889 + __cam2 = cam_max_size;
90890 ram -= __cam2;
90891 }
90892
90893 @@ -232,6 +226,6 @@ adjust_total_lowmem(void)
90894 " CAM2=%ldMb residual: %ldMb\n",
90895 __cam0 >> 20, __cam1 >> 20, __cam2 >> 20,
90896 (total_lowmem - __cam0 - __cam1 - __cam2) >> 20);
90897 - __max_low_memory = max_low_mem = __cam0 + __cam1 + __cam2;
90898 - __initial_memory_limit = __max_low_memory;
90899 + __max_low_memory = __cam0 + __cam1 + __cam2;
90900 + __initial_memory_limit_addr = memstart_addr + __max_low_memory;
90901 }
90902 Index: linux-2.6.25.4/arch/powerpc/mm/hash_utils_64.c
90903 ===================================================================
90904 --- linux-2.6.25.4.orig/arch/powerpc/mm/hash_utils_64.c
90905 +++ linux-2.6.25.4/arch/powerpc/mm/hash_utils_64.c
90906 @@ -31,6 +31,7 @@
90907 #include <linux/cache.h>
90908 #include <linux/init.h>
90909 #include <linux/signal.h>
90910 +#include <linux/lmb.h>
90911
90912 #include <asm/processor.h>
90913 #include <asm/pgtable.h>
90914 @@ -41,7 +42,7 @@
90915 #include <asm/system.h>
90916 #include <asm/uaccess.h>
90917 #include <asm/machdep.h>
90918 -#include <asm/lmb.h>
90919 +#include <asm/prom.h>
90920 #include <asm/abs_addr.h>
90921 #include <asm/tlbflush.h>
90922 #include <asm/io.h>
90923 @@ -191,6 +192,29 @@ int htab_bolt_mapping(unsigned long vsta
90924 return ret < 0 ? ret : 0;
90925 }
90926
90927 +#ifdef CONFIG_MEMORY_HOTPLUG
90928 +static int htab_remove_mapping(unsigned long vstart, unsigned long vend,
90929 + int psize, int ssize)
90930 +{
90931 + unsigned long vaddr;
90932 + unsigned int step, shift;
90933 +
90934 + shift = mmu_psize_defs[psize].shift;
90935 + step = 1 << shift;
90936 +
90937 + if (!ppc_md.hpte_removebolted) {
90938 + printk(KERN_WARNING "Platform doesn't implement "
90939 + "hpte_removebolted\n");
90940 + return -EINVAL;
90941 + }
90942 +
90943 + for (vaddr = vstart; vaddr < vend; vaddr += step)
90944 + ppc_md.hpte_removebolted(vaddr, psize, ssize);
90945 +
90946 + return 0;
90947 +}
90948 +#endif /* CONFIG_MEMORY_HOTPLUG */
90949 +
90950 static int __init htab_dt_scan_seg_sizes(unsigned long node,
90951 const char *uname, int depth,
90952 void *data)
90953 @@ -434,6 +458,12 @@ void create_section_mapping(unsigned lon
90954 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX,
90955 mmu_linear_psize, mmu_kernel_ssize));
90956 }
90957 +
90958 +int remove_section_mapping(unsigned long start, unsigned long end)
90959 +{
90960 + return htab_remove_mapping(start, end, mmu_linear_psize,
90961 + mmu_kernel_ssize);
90962 +}
90963 #endif /* CONFIG_MEMORY_HOTPLUG */
90964
90965 static inline void make_bl(unsigned int *insn_addr, void *func)
90966 Index: linux-2.6.25.4/arch/powerpc/mm/init_32.c
90967 ===================================================================
90968 --- linux-2.6.25.4.orig/arch/powerpc/mm/init_32.c
90969 +++ linux-2.6.25.4/arch/powerpc/mm/init_32.c
90970 @@ -30,6 +30,7 @@
90971 #include <linux/highmem.h>
90972 #include <linux/initrd.h>
90973 #include <linux/pagemap.h>
90974 +#include <linux/lmb.h>
90975
90976 #include <asm/pgalloc.h>
90977 #include <asm/prom.h>
90978 @@ -41,7 +42,6 @@
90979 #include <asm/machdep.h>
90980 #include <asm/btext.h>
90981 #include <asm/tlb.h>
90982 -#include <asm/lmb.h>
90983 #include <asm/sections.h>
90984
90985 #include "mmu_decl.h"
90986 @@ -59,8 +59,8 @@ DEFINE_PER_CPU(struct mmu_gather, mmu_ga
90987 unsigned long total_memory;
90988 unsigned long total_lowmem;
90989
90990 -unsigned long ppc_memstart;
90991 -unsigned long ppc_memoffset = PAGE_OFFSET;
90992 +phys_addr_t memstart_addr;
90993 +phys_addr_t lowmem_end_addr;
90994
90995 int boot_mapsize;
90996 #ifdef CONFIG_PPC_PMAC
90997 @@ -95,10 +95,10 @@ int __map_without_ltlbs;
90998 unsigned long __max_low_memory = MAX_LOW_MEM;
90999
91000 /*
91001 - * limit of what is accessible with initial MMU setup -
91002 + * address of the limit of what is accessible with initial MMU setup -
91003 * 256MB usually, but only 16MB on 601.
91004 */
91005 -unsigned long __initial_memory_limit = 0x10000000;
91006 +phys_addr_t __initial_memory_limit_addr = (phys_addr_t)0x10000000;
91007
91008 /*
91009 * Check for command-line options that affect what MMU_init will do.
91010 @@ -131,10 +131,10 @@ void __init MMU_init(void)
91011
91012 /* 601 can only access 16MB at the moment */
91013 if (PVR_VER(mfspr(SPRN_PVR)) == 1)
91014 - __initial_memory_limit = 0x01000000;
91015 + __initial_memory_limit_addr = 0x01000000;
91016 /* 8xx can only access 8MB at the moment */
91017 if (PVR_VER(mfspr(SPRN_PVR)) == 0x50)
91018 - __initial_memory_limit = 0x00800000;
91019 + __initial_memory_limit_addr = 0x00800000;
91020
91021 /* parse args from command line */
91022 MMU_setup();
91023 @@ -145,8 +145,8 @@ void __init MMU_init(void)
91024 printk(KERN_WARNING "Only using first contiguous memory region");
91025 }
91026
91027 - total_memory = lmb_end_of_DRAM();
91028 - total_lowmem = total_memory;
91029 + total_lowmem = total_memory = lmb_end_of_DRAM() - memstart_addr;
91030 + lowmem_end_addr = memstart_addr + total_lowmem;
91031
91032 #ifdef CONFIG_FSL_BOOKE
91033 /* Freescale Book-E parts expect lowmem to be mapped by fixed TLB
91034 @@ -157,9 +157,10 @@ void __init MMU_init(void)
91035
91036 if (total_lowmem > __max_low_memory) {
91037 total_lowmem = __max_low_memory;
91038 + lowmem_end_addr = memstart_addr + total_lowmem;
91039 #ifndef CONFIG_HIGHMEM
91040 total_memory = total_lowmem;
91041 - lmb_enforce_memory_limit(total_lowmem);
91042 + lmb_enforce_memory_limit(lowmem_end_addr);
91043 lmb_analyze();
91044 #endif /* CONFIG_HIGHMEM */
91045 }
91046 @@ -184,8 +185,6 @@ void __init MMU_init(void)
91047 /* Map in I/O resources */
91048 if (ppc_md.progress)
91049 ppc_md.progress("MMU:setio", 0x302);
91050 - if (ppc_md.setup_io_mappings)
91051 - ppc_md.setup_io_mappings();
91052
91053 /* Initialize the context management stuff */
91054 mmu_context_init();
91055 @@ -208,7 +207,7 @@ void __init *early_get_page(void)
91056 p = alloc_bootmem_pages(PAGE_SIZE);
91057 } else {
91058 p = __va(lmb_alloc_base(PAGE_SIZE, PAGE_SIZE,
91059 - __initial_memory_limit));
91060 + __initial_memory_limit_addr));
91061 }
91062 return p;
91063 }
91064 @@ -276,7 +275,7 @@ static int __init setup_kcore(void)
91065
91066 kcore_mem = kmalloc(sizeof(struct kcore_list), GFP_ATOMIC);
91067 if (!kcore_mem)
91068 - panic("%s: kmalloc failed\n", __FUNCTION__);
91069 + panic("%s: kmalloc failed\n", __func__);
91070
91071 /* must stay under 32 bits */
91072 if ( 0xfffffffful - (unsigned long)__va(base) < size) {
91073 Index: linux-2.6.25.4/arch/powerpc/mm/init_64.c
91074 ===================================================================
91075 --- linux-2.6.25.4.orig/arch/powerpc/mm/init_64.c
91076 +++ linux-2.6.25.4/arch/powerpc/mm/init_64.c
91077 @@ -38,11 +38,11 @@
91078 #include <linux/nodemask.h>
91079 #include <linux/module.h>
91080 #include <linux/poison.h>
91081 +#include <linux/lmb.h>
91082
91083 #include <asm/pgalloc.h>
91084 #include <asm/page.h>
91085 #include <asm/prom.h>
91086 -#include <asm/lmb.h>
91087 #include <asm/rtas.h>
91088 #include <asm/io.h>
91089 #include <asm/mmu_context.h>
91090 @@ -72,8 +72,7 @@
91091 #warning TASK_SIZE is smaller than it needs to be.
91092 #endif
91093
91094 -/* max amount of RAM to use */
91095 -unsigned long __max_memory;
91096 +phys_addr_t memstart_addr;
91097
91098 void free_initmem(void)
91099 {
91100 @@ -122,7 +121,7 @@ static int __init setup_kcore(void)
91101 /* GFP_ATOMIC to avoid might_sleep warnings during boot */
91102 kcore_mem = kmalloc(sizeof(struct kcore_list), GFP_ATOMIC);
91103 if (!kcore_mem)
91104 - panic("%s: kmalloc failed\n", __FUNCTION__);
91105 + panic("%s: kmalloc failed\n", __func__);
91106
91107 kclist_add(kcore_mem, __va(base), size);
91108 }
91109 Index: linux-2.6.25.4/arch/powerpc/mm/lmb.c
91110 ===================================================================
91111 --- linux-2.6.25.4.orig/arch/powerpc/mm/lmb.c
91112 +++ /dev/null
91113 @@ -1,357 +0,0 @@
91114 -/*
91115 - * Procedures for maintaining information about logical memory blocks.
91116 - *
91117 - * Peter Bergner, IBM Corp. June 2001.
91118 - * Copyright (C) 2001 Peter Bergner.
91119 - *
91120 - * This program is free software; you can redistribute it and/or
91121 - * modify it under the terms of the GNU General Public License
91122 - * as published by the Free Software Foundation; either version
91123 - * 2 of the License, or (at your option) any later version.
91124 - */
91125 -
91126 -#include <linux/kernel.h>
91127 -#include <linux/init.h>
91128 -#include <linux/bitops.h>
91129 -#include <asm/types.h>
91130 -#include <asm/page.h>
91131 -#include <asm/prom.h>
91132 -#include <asm/lmb.h>
91133 -#ifdef CONFIG_PPC32
91134 -#include "mmu_decl.h" /* for __max_low_memory */
91135 -#endif
91136 -
91137 -#undef DEBUG
91138 -
91139 -#ifdef DEBUG
91140 -#include <asm/udbg.h>
91141 -#define DBG(fmt...) udbg_printf(fmt)
91142 -#else
91143 -#define DBG(fmt...)
91144 -#endif
91145 -
91146 -#define LMB_ALLOC_ANYWHERE 0
91147 -
91148 -struct lmb lmb;
91149 -
91150 -void lmb_dump_all(void)
91151 -{
91152 -#ifdef DEBUG
91153 - unsigned long i;
91154 -
91155 - DBG("lmb_dump_all:\n");
91156 - DBG(" memory.cnt = 0x%lx\n", lmb.memory.cnt);
91157 - DBG(" memory.size = 0x%lx\n", lmb.memory.size);
91158 - for (i=0; i < lmb.memory.cnt ;i++) {
91159 - DBG(" memory.region[0x%x].base = 0x%lx\n",
91160 - i, lmb.memory.region[i].base);
91161 - DBG(" .size = 0x%lx\n",
91162 - lmb.memory.region[i].size);
91163 - }
91164 -
91165 - DBG("\n reserved.cnt = 0x%lx\n", lmb.reserved.cnt);
91166 - DBG(" reserved.size = 0x%lx\n", lmb.reserved.size);
91167 - for (i=0; i < lmb.reserved.cnt ;i++) {
91168 - DBG(" reserved.region[0x%x].base = 0x%lx\n",
91169 - i, lmb.reserved.region[i].base);
91170 - DBG(" .size = 0x%lx\n",
91171 - lmb.reserved.region[i].size);
91172 - }
91173 -#endif /* DEBUG */
91174 -}
91175 -
91176 -static unsigned long __init lmb_addrs_overlap(unsigned long base1,
91177 - unsigned long size1, unsigned long base2, unsigned long size2)
91178 -{
91179 - return ((base1 < (base2+size2)) && (base2 < (base1+size1)));
91180 -}
91181 -
91182 -static long __init lmb_addrs_adjacent(unsigned long base1, unsigned long size1,
91183 - unsigned long base2, unsigned long size2)
91184 -{
91185 - if (base2 == base1 + size1)
91186 - return 1;
91187 - else if (base1 == base2 + size2)
91188 - return -1;
91189 -
91190 - return 0;
91191 -}
91192 -
91193 -static long __init lmb_regions_adjacent(struct lmb_region *rgn,
91194 - unsigned long r1, unsigned long r2)
91195 -{
91196 - unsigned long base1 = rgn->region[r1].base;
91197 - unsigned long size1 = rgn->region[r1].size;
91198 - unsigned long base2 = rgn->region[r2].base;
91199 - unsigned long size2 = rgn->region[r2].size;
91200 -
91201 - return lmb_addrs_adjacent(base1, size1, base2, size2);
91202 -}
91203 -
91204 -static void __init lmb_remove_region(struct lmb_region *rgn, unsigned long r)
91205 -{
91206 - unsigned long i;
91207 -
91208 - for (i = r; i < rgn->cnt - 1; i++) {
91209 - rgn->region[i].base = rgn->region[i + 1].base;
91210 - rgn->region[i].size = rgn->region[i + 1].size;
91211 - }
91212 - rgn->cnt--;
91213 -}
91214 -
91215 -/* Assumption: base addr of region 1 < base addr of region 2 */
91216 -static void __init lmb_coalesce_regions(struct lmb_region *rgn,
91217 - unsigned long r1, unsigned long r2)
91218 -{
91219 - rgn->region[r1].size += rgn->region[r2].size;
91220 - lmb_remove_region(rgn, r2);
91221 -}
91222 -
91223 -/* This routine called with relocation disabled. */
91224 -void __init lmb_init(void)
91225 -{
91226 - /* Create a dummy zero size LMB which will get coalesced away later.
91227 - * This simplifies the lmb_add() code below...
91228 - */
91229 - lmb.memory.region[0].base = 0;
91230 - lmb.memory.region[0].size = 0;
91231 - lmb.memory.cnt = 1;
91232 -
91233 - /* Ditto. */
91234 - lmb.reserved.region[0].base = 0;
91235 - lmb.reserved.region[0].size = 0;
91236 - lmb.reserved.cnt = 1;
91237 -}
91238 -
91239 -/* This routine may be called with relocation disabled. */
91240 -void __init lmb_analyze(void)
91241 -{
91242 - int i;
91243 -
91244 - lmb.memory.size = 0;
91245 -
91246 - for (i = 0; i < lmb.memory.cnt; i++)
91247 - lmb.memory.size += lmb.memory.region[i].size;
91248 -}
91249 -
91250 -/* This routine called with relocation disabled. */
91251 -static long __init lmb_add_region(struct lmb_region *rgn, unsigned long base,
91252 - unsigned long size)
91253 -{
91254 - unsigned long coalesced = 0;
91255 - long adjacent, i;
91256 -
91257 - /* First try and coalesce this LMB with another. */
91258 - for (i=0; i < rgn->cnt; i++) {
91259 - unsigned long rgnbase = rgn->region[i].base;
91260 - unsigned long rgnsize = rgn->region[i].size;
91261 -
91262 - if ((rgnbase == base) && (rgnsize == size))
91263 - /* Already have this region, so we're done */
91264 - return 0;
91265 -
91266 - adjacent = lmb_addrs_adjacent(base,size,rgnbase,rgnsize);
91267 - if ( adjacent > 0 ) {
91268 - rgn->region[i].base -= size;
91269 - rgn->region[i].size += size;
91270 - coalesced++;
91271 - break;
91272 - }
91273 - else if ( adjacent < 0 ) {
91274 - rgn->region[i].size += size;
91275 - coalesced++;
91276 - break;
91277 - }
91278 - }
91279 -
91280 - if ((i < rgn->cnt-1) && lmb_regions_adjacent(rgn, i, i+1) ) {
91281 - lmb_coalesce_regions(rgn, i, i+1);
91282 - coalesced++;
91283 - }
91284 -
91285 - if (coalesced)
91286 - return coalesced;
91287 - if (rgn->cnt >= MAX_LMB_REGIONS)
91288 - return -1;
91289 -
91290 - /* Couldn't coalesce the LMB, so add it to the sorted table. */
91291 - for (i = rgn->cnt-1; i >= 0; i--) {
91292 - if (base < rgn->region[i].base) {
91293 - rgn->region[i+1].base = rgn->region[i].base;
91294 - rgn->region[i+1].size = rgn->region[i].size;
91295 - } else {
91296 - rgn->region[i+1].base = base;
91297 - rgn->region[i+1].size = size;
91298 - break;
91299 - }
91300 - }
91301 - rgn->cnt++;
91302 -
91303 - return 0;
91304 -}
91305 -
91306 -/* This routine may be called with relocation disabled. */
91307 -long __init lmb_add(unsigned long base, unsigned long size)
91308 -{
91309 - struct lmb_region *_rgn = &(lmb.memory);
91310 -
91311 - /* On pSeries LPAR systems, the first LMB is our RMO region. */
91312 - if (base == 0)
91313 - lmb.rmo_size = size;
91314 -
91315 - return lmb_add_region(_rgn, base, size);
91316 -
91317 -}
91318 -
91319 -long __init lmb_reserve(unsigned long base, unsigned long size)
91320 -{
91321 - struct lmb_region *_rgn = &(lmb.reserved);
91322 -
91323 - BUG_ON(0 == size);
91324 -
91325 - return lmb_add_region(_rgn, base, size);
91326 -}
91327 -
91328 -long __init lmb_overlaps_region(struct lmb_region *rgn, unsigned long base,
91329 - unsigned long size)
91330 -{
91331 - unsigned long i;
91332 -
91333 - for (i=0; i < rgn->cnt; i++) {
91334 - unsigned long rgnbase = rgn->region[i].base;
91335 - unsigned long rgnsize = rgn->region[i].size;
91336 - if ( lmb_addrs_overlap(base,size,rgnbase,rgnsize) ) {
91337 - break;
91338 - }
91339 - }
91340 -
91341 - return (i < rgn->cnt) ? i : -1;
91342 -}
91343 -
91344 -unsigned long __init lmb_alloc(unsigned long size, unsigned long align)
91345 -{
91346 - return lmb_alloc_base(size, align, LMB_ALLOC_ANYWHERE);
91347 -}
91348 -
91349 -unsigned long __init lmb_alloc_base(unsigned long size, unsigned long align,
91350 - unsigned long max_addr)
91351 -{
91352 - unsigned long alloc;
91353 -
91354 - alloc = __lmb_alloc_base(size, align, max_addr);
91355 -
91356 - if (alloc == 0)
91357 - panic("ERROR: Failed to allocate 0x%lx bytes below 0x%lx.\n",
91358 - size, max_addr);
91359 -
91360 - return alloc;
91361 -}
91362 -
91363 -unsigned long __init __lmb_alloc_base(unsigned long size, unsigned long align,
91364 - unsigned long max_addr)
91365 -{
91366 - long i, j;
91367 - unsigned long base = 0;
91368 -
91369 - BUG_ON(0 == size);
91370 -
91371 -#ifdef CONFIG_PPC32
91372 - /* On 32-bit, make sure we allocate lowmem */
91373 - if (max_addr == LMB_ALLOC_ANYWHERE)
91374 - max_addr = __max_low_memory;
91375 -#endif
91376 - for (i = lmb.memory.cnt-1; i >= 0; i--) {
91377 - unsigned long lmbbase = lmb.memory.region[i].base;
91378 - unsigned long lmbsize = lmb.memory.region[i].size;
91379 -
91380 - if (max_addr == LMB_ALLOC_ANYWHERE)
91381 - base = _ALIGN_DOWN(lmbbase + lmbsize - size, align);
91382 - else if (lmbbase < max_addr) {
91383 - base = min(lmbbase + lmbsize, max_addr);
91384 - base = _ALIGN_DOWN(base - size, align);
91385 - } else
91386 - continue;
91387 -
91388 - while ((lmbbase <= base) &&
91389 - ((j = lmb_overlaps_region(&lmb.reserved, base, size)) >= 0) )
91390 - base = _ALIGN_DOWN(lmb.reserved.region[j].base - size,
91391 - align);
91392 -
91393 - if ((base != 0) && (lmbbase <= base))
91394 - break;
91395 - }
91396 -
91397 - if (i < 0)
91398 - return 0;
91399 -
91400 - lmb_add_region(&lmb.reserved, base, size);
91401 -
91402 - return base;
91403 -}
91404 -
91405 -/* You must call lmb_analyze() before this. */
91406 -unsigned long __init lmb_phys_mem_size(void)
91407 -{
91408 - return lmb.memory.size;
91409 -}
91410 -
91411 -unsigned long __init lmb_end_of_DRAM(void)
91412 -{
91413 - int idx = lmb.memory.cnt - 1;
91414 -
91415 - return (lmb.memory.region[idx].base + lmb.memory.region[idx].size);
91416 -}
91417 -
91418 -/* You must call lmb_analyze() after this. */
91419 -void __init lmb_enforce_memory_limit(unsigned long memory_limit)
91420 -{
91421 - unsigned long i, limit;
91422 - struct lmb_property *p;
91423 -
91424 - if (! memory_limit)
91425 - return;
91426 -
91427 - /* Truncate the lmb regions to satisfy the memory limit. */
91428 - limit = memory_limit;
91429 - for (i = 0; i < lmb.memory.cnt; i++) {
91430 - if (limit > lmb.memory.region[i].size) {
91431 - limit -= lmb.memory.region[i].size;
91432 - continue;
91433 - }
91434 -
91435 - lmb.memory.region[i].size = limit;
91436 - lmb.memory.cnt = i + 1;
91437 - break;
91438 - }
91439 -
91440 - if (lmb.memory.region[0].size < lmb.rmo_size)
91441 - lmb.rmo_size = lmb.memory.region[0].size;
91442 -
91443 - /* And truncate any reserves above the limit also. */
91444 - for (i = 0; i < lmb.reserved.cnt; i++) {
91445 - p = &lmb.reserved.region[i];
91446 -
91447 - if (p->base > memory_limit)
91448 - p->size = 0;
91449 - else if ((p->base + p->size) > memory_limit)
91450 - p->size = memory_limit - p->base;
91451 -
91452 - if (p->size == 0) {
91453 - lmb_remove_region(&lmb.reserved, i);
91454 - i--;
91455 - }
91456 - }
91457 -}
91458 -
91459 -int __init lmb_is_reserved(unsigned long addr)
91460 -{
91461 - int i;
91462 -
91463 - for (i = 0; i < lmb.reserved.cnt; i++) {
91464 - unsigned long upper = lmb.reserved.region[i].base +
91465 - lmb.reserved.region[i].size - 1;
91466 - if ((addr >= lmb.reserved.region[i].base) && (addr <= upper))
91467 - return 1;
91468 - }
91469 - return 0;
91470 -}
91471 Index: linux-2.6.25.4/arch/powerpc/mm/mem.c
91472 ===================================================================
91473 --- linux-2.6.25.4.orig/arch/powerpc/mm/mem.c
91474 +++ linux-2.6.25.4/arch/powerpc/mm/mem.c
91475 @@ -31,6 +31,7 @@
91476 #include <linux/initrd.h>
91477 #include <linux/pagemap.h>
91478 #include <linux/suspend.h>
91479 +#include <linux/lmb.h>
91480
91481 #include <asm/pgalloc.h>
91482 #include <asm/prom.h>
91483 @@ -42,7 +43,6 @@
91484 #include <asm/machdep.h>
91485 #include <asm/btext.h>
91486 #include <asm/tlb.h>
91487 -#include <asm/lmb.h>
91488 #include <asm/sections.h>
91489 #include <asm/vdso.h>
91490
91491 @@ -111,7 +111,7 @@ int memory_add_physaddr_to_nid(u64 start
91492 }
91493 #endif
91494
91495 -int __devinit arch_add_memory(int nid, u64 start, u64 size)
91496 +int arch_add_memory(int nid, u64 start, u64 size)
91497 {
91498 struct pglist_data *pgdata;
91499 struct zone *zone;
91500 @@ -175,7 +175,6 @@ void show_mem(void)
91501
91502 printk("Mem-info:\n");
91503 show_free_areas();
91504 - printk("Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10));
91505 for_each_online_pgdat(pgdat) {
91506 unsigned long flags;
91507 pgdat_resize_lock(pgdat, &flags);
91508 @@ -217,9 +216,11 @@ void __init do_init_bootmem(void)
91509 unsigned long total_pages;
91510 int boot_mapsize;
91511
91512 - max_pfn = total_pages = lmb_end_of_DRAM() >> PAGE_SHIFT;
91513 + max_pfn = lmb_end_of_DRAM() >> PAGE_SHIFT;
91514 + total_pages = (lmb_end_of_DRAM() - memstart_addr) >> PAGE_SHIFT;
91515 #ifdef CONFIG_HIGHMEM
91516 total_pages = total_lowmem >> PAGE_SHIFT;
91517 + max_low_pfn = lowmem_end_addr >> PAGE_SHIFT;
91518 #endif
91519
91520 /*
91521 @@ -245,18 +246,18 @@ void __init do_init_bootmem(void)
91522 * present.
91523 */
91524 #ifdef CONFIG_HIGHMEM
91525 - free_bootmem_with_active_regions(0, total_lowmem >> PAGE_SHIFT);
91526 + free_bootmem_with_active_regions(0, lowmem_end_addr >> PAGE_SHIFT);
91527
91528 /* reserve the sections we're already using */
91529 for (i = 0; i < lmb.reserved.cnt; i++) {
91530 unsigned long addr = lmb.reserved.region[i].base +
91531 lmb_size_bytes(&lmb.reserved, i) - 1;
91532 - if (addr < total_lowmem)
91533 + if (addr < lowmem_end_addr)
91534 reserve_bootmem(lmb.reserved.region[i].base,
91535 lmb_size_bytes(&lmb.reserved, i),
91536 BOOTMEM_DEFAULT);
91537 - else if (lmb.reserved.region[i].base < total_lowmem) {
91538 - unsigned long adjusted_size = total_lowmem -
91539 + else if (lmb.reserved.region[i].base < lowmem_end_addr) {
91540 + unsigned long adjusted_size = lowmem_end_addr -
91541 lmb.reserved.region[i].base;
91542 reserve_bootmem(lmb.reserved.region[i].base,
91543 adjusted_size, BOOTMEM_DEFAULT);
91544 @@ -326,7 +327,7 @@ void __init paging_init(void)
91545 (top_of_ram - total_ram) >> 20);
91546 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
91547 #ifdef CONFIG_HIGHMEM
91548 - max_zone_pfns[ZONE_DMA] = total_lowmem >> PAGE_SHIFT;
91549 + max_zone_pfns[ZONE_DMA] = lowmem_end_addr >> PAGE_SHIFT;
91550 max_zone_pfns[ZONE_HIGHMEM] = top_of_ram >> PAGE_SHIFT;
91551 #else
91552 max_zone_pfns[ZONE_DMA] = top_of_ram >> PAGE_SHIFT;
91553 @@ -381,7 +382,7 @@ void __init mem_init(void)
91554 {
91555 unsigned long pfn, highmem_mapnr;
91556
91557 - highmem_mapnr = total_lowmem >> PAGE_SHIFT;
91558 + highmem_mapnr = lowmem_end_addr >> PAGE_SHIFT;
91559 for (pfn = highmem_mapnr; pfn < max_mapnr; ++pfn) {
91560 struct page *page = pfn_to_page(pfn);
91561 if (lmb_is_reserved(pfn << PAGE_SHIFT))
91562 Index: linux-2.6.25.4/arch/powerpc/mm/mmu_decl.h
91563 ===================================================================
91564 --- linux-2.6.25.4.orig/arch/powerpc/mm/mmu_decl.h
91565 +++ linux-2.6.25.4/arch/powerpc/mm/mmu_decl.h
91566 @@ -48,9 +48,11 @@ extern unsigned int num_tlbcam_entries;
91567
91568 extern unsigned long ioremap_bot;
91569 extern unsigned long __max_low_memory;
91570 -extern unsigned long __initial_memory_limit;
91571 +extern phys_addr_t __initial_memory_limit_addr;
91572 extern unsigned long total_memory;
91573 extern unsigned long total_lowmem;
91574 +extern phys_addr_t memstart_addr;
91575 +extern phys_addr_t lowmem_end_addr;
91576
91577 /* ...and now those things that may be slightly different between processor
91578 * architectures. -- Dan
91579 Index: linux-2.6.25.4/arch/powerpc/mm/numa.c
91580 ===================================================================
91581 --- linux-2.6.25.4.orig/arch/powerpc/mm/numa.c
91582 +++ linux-2.6.25.4/arch/powerpc/mm/numa.c
91583 @@ -17,8 +17,9 @@
91584 #include <linux/nodemask.h>
91585 #include <linux/cpu.h>
91586 #include <linux/notifier.h>
91587 +#include <linux/lmb.h>
91588 #include <asm/sparsemem.h>
91589 -#include <asm/lmb.h>
91590 +#include <asm/prom.h>
91591 #include <asm/system.h>
91592 #include <asm/smp.h>
91593
91594 Index: linux-2.6.25.4/arch/powerpc/mm/pgtable_32.c
91595 ===================================================================
91596 --- linux-2.6.25.4.orig/arch/powerpc/mm/pgtable_32.c
91597 +++ linux-2.6.25.4/arch/powerpc/mm/pgtable_32.c
91598 @@ -281,12 +281,13 @@ int map_page(unsigned long va, phys_addr
91599 */
91600 void __init mapin_ram(void)
91601 {
91602 - unsigned long v, p, s, f;
91603 + unsigned long v, s, f;
91604 + phys_addr_t p;
91605 int ktext;
91606
91607 s = mmu_mapin_ram();
91608 v = KERNELBASE + s;
91609 - p = PPC_MEMSTART + s;
91610 + p = memstart_addr + s;
91611 for (; s < total_lowmem; s += PAGE_SIZE) {
91612 ktext = ((char *) v >= _stext && (char *) v < etext);
91613 f = ktext ?_PAGE_RAM_TEXT : _PAGE_RAM;
91614 Index: linux-2.6.25.4/arch/powerpc/mm/ppc_mmu_32.c
91615 ===================================================================
91616 --- linux-2.6.25.4.orig/arch/powerpc/mm/ppc_mmu_32.c
91617 +++ linux-2.6.25.4/arch/powerpc/mm/ppc_mmu_32.c
91618 @@ -26,11 +26,11 @@
91619 #include <linux/mm.h>
91620 #include <linux/init.h>
91621 #include <linux/highmem.h>
91622 +#include <linux/lmb.h>
91623
91624 #include <asm/prom.h>
91625 #include <asm/mmu.h>
91626 #include <asm/machdep.h>
91627 -#include <asm/lmb.h>
91628
91629 #include "mmu_decl.h"
91630
91631 @@ -82,7 +82,6 @@ unsigned long __init mmu_mapin_ram(void)
91632 #else
91633 unsigned long tot, bl, done;
91634 unsigned long max_size = (256<<20);
91635 - unsigned long align;
91636
91637 if (__map_without_bats) {
91638 printk(KERN_DEBUG "RAM mapped without BATs\n");
91639 @@ -93,19 +92,13 @@ unsigned long __init mmu_mapin_ram(void)
91640
91641 /* Make sure we don't map a block larger than the
91642 smallest alignment of the physical address. */
91643 - /* alignment of PPC_MEMSTART */
91644 - align = ~(PPC_MEMSTART-1) & PPC_MEMSTART;
91645 - /* set BAT block size to MIN(max_size, align) */
91646 - if (align && align < max_size)
91647 - max_size = align;
91648 -
91649 tot = total_lowmem;
91650 for (bl = 128<<10; bl < max_size; bl <<= 1) {
91651 if (bl * 2 > tot)
91652 break;
91653 }
91654
91655 - setbat(2, KERNELBASE, PPC_MEMSTART, bl, _PAGE_RAM);
91656 + setbat(2, KERNELBASE, 0, bl, _PAGE_RAM);
91657 done = (unsigned long)bat_addrs[2].limit - KERNELBASE + 1;
91658 if ((done < tot) && !bat_addrs[3].limit) {
91659 /* use BAT3 to cover a bit more */
91660 @@ -113,7 +106,7 @@ unsigned long __init mmu_mapin_ram(void)
91661 for (bl = 128<<10; bl < max_size; bl <<= 1)
91662 if (bl * 2 > tot)
91663 break;
91664 - setbat(3, KERNELBASE+done, PPC_MEMSTART+done, bl, _PAGE_RAM);
91665 + setbat(3, KERNELBASE+done, done, bl, _PAGE_RAM);
91666 done = (unsigned long)bat_addrs[3].limit - KERNELBASE + 1;
91667 }
91668
91669 @@ -240,7 +233,7 @@ void __init MMU_init_hw(void)
91670 */
91671 if ( ppc_md.progress ) ppc_md.progress("hash:find piece", 0x322);
91672 Hash = __va(lmb_alloc_base(Hash_size, Hash_size,
91673 - __initial_memory_limit));
91674 + __initial_memory_limit_addr));
91675 cacheable_memzero(Hash, Hash_size);
91676 _SDR1 = __pa(Hash) | SDR1_LOW_BITS;
91677
91678 Index: linux-2.6.25.4/arch/powerpc/mm/stab.c
91679 ===================================================================
91680 --- linux-2.6.25.4.orig/arch/powerpc/mm/stab.c
91681 +++ linux-2.6.25.4/arch/powerpc/mm/stab.c
91682 @@ -12,12 +12,14 @@
91683 * 2 of the License, or (at your option) any later version.
91684 */
91685
91686 +#include <linux/lmb.h>
91687 +
91688 #include <asm/pgtable.h>
91689 #include <asm/mmu.h>
91690 #include <asm/mmu_context.h>
91691 #include <asm/paca.h>
91692 #include <asm/cputable.h>
91693 -#include <asm/lmb.h>
91694 +#include <asm/prom.h>
91695 #include <asm/abs_addr.h>
91696 #include <asm/firmware.h>
91697 #include <asm/iseries/hv_call.h>
91698 Index: linux-2.6.25.4/arch/powerpc/oprofile/cell/spu_task_sync.c
91699 ===================================================================
91700 --- linux-2.6.25.4.orig/arch/powerpc/oprofile/cell/spu_task_sync.c
91701 +++ linux-2.6.25.4/arch/powerpc/oprofile/cell/spu_task_sync.c
91702 @@ -68,7 +68,7 @@ static struct cached_info *get_cached_in
91703 if (spu_num >= num_spu_nodes) {
91704 printk(KERN_ERR "SPU_PROF: "
91705 "%s, line %d: Invalid index %d into spu info cache\n",
91706 - __FUNCTION__, __LINE__, spu_num);
91707 + __func__, __LINE__, spu_num);
91708 ret_info = NULL;
91709 goto out;
91710 }
91711 @@ -115,7 +115,7 @@ prepare_cached_spu_info(struct spu *spu,
91712 if (!info) {
91713 printk(KERN_ERR "SPU_PROF: "
91714 "%s, line %d: create vma_map failed\n",
91715 - __FUNCTION__, __LINE__);
91716 + __func__, __LINE__);
91717 retval = -ENOMEM;
91718 goto err_alloc;
91719 }
91720 @@ -123,7 +123,7 @@ prepare_cached_spu_info(struct spu *spu,
91721 if (!new_map) {
91722 printk(KERN_ERR "SPU_PROF: "
91723 "%s, line %d: create vma_map failed\n",
91724 - __FUNCTION__, __LINE__);
91725 + __func__, __LINE__);
91726 retval = -ENOMEM;
91727 goto err_alloc;
91728 }
91729 @@ -171,7 +171,7 @@ static int release_cached_info(int spu_i
91730 printk(KERN_ERR "SPU_PROF: "
91731 "%s, line %d: "
91732 "Invalid index %d into spu info cache\n",
91733 - __FUNCTION__, __LINE__, spu_index);
91734 + __func__, __LINE__, spu_index);
91735 goto out;
91736 }
91737 end = spu_index + 1;
91738 @@ -273,7 +273,7 @@ fail_no_image_cookie:
91739
91740 printk(KERN_ERR "SPU_PROF: "
91741 "%s, line %d: Cannot find dcookie for SPU binary\n",
91742 - __FUNCTION__, __LINE__);
91743 + __func__, __LINE__);
91744 goto out;
91745 }
91746
91747 @@ -467,7 +467,7 @@ int spu_sync_stop(void)
91748 if (ret) {
91749 printk(KERN_ERR "SPU_PROF: "
91750 "%s, line %d: spu_switch_event_unregister returned %d\n",
91751 - __FUNCTION__, __LINE__, ret);
91752 + __func__, __LINE__, ret);
91753 goto out;
91754 }
91755
91756 Index: linux-2.6.25.4/arch/powerpc/oprofile/cell/vma_map.c
91757 ===================================================================
91758 --- linux-2.6.25.4.orig/arch/powerpc/oprofile/cell/vma_map.c
91759 +++ linux-2.6.25.4/arch/powerpc/oprofile/cell/vma_map.c
91760 @@ -72,7 +72,7 @@ vma_map_add(struct vma_to_fileoffset_map
91761 kzalloc(sizeof(struct vma_to_fileoffset_map), GFP_KERNEL);
91762 if (!new) {
91763 printk(KERN_ERR "SPU_PROF: %s, line %d: malloc failed\n",
91764 - __FUNCTION__, __LINE__);
91765 + __func__, __LINE__);
91766 vma_map_free(map);
91767 return NULL;
91768 }
91769 @@ -134,19 +134,19 @@ struct vma_to_fileoffset_map *create_vma
91770 if (memcmp(ehdr.e_ident, expected, EI_PAD) != 0) {
91771 printk(KERN_ERR "SPU_PROF: "
91772 "%s, line %d: Unexpected e_ident parsing SPU ELF\n",
91773 - __FUNCTION__, __LINE__);
91774 + __func__, __LINE__);
91775 goto fail;
91776 }
91777 if (ehdr.e_machine != EM_SPU) {
91778 printk(KERN_ERR "SPU_PROF: "
91779 "%s, line %d: Unexpected e_machine parsing SPU ELF\n",
91780 - __FUNCTION__, __LINE__);
91781 + __func__, __LINE__);
91782 goto fail;
91783 }
91784 if (ehdr.e_type != ET_EXEC) {
91785 printk(KERN_ERR "SPU_PROF: "
91786 "%s, line %d: Unexpected e_type parsing SPU ELF\n",
91787 - __FUNCTION__, __LINE__);
91788 + __func__, __LINE__);
91789 goto fail;
91790 }
91791 phdr_start = spu_elf_start + ehdr.e_phoff;
91792 @@ -232,7 +232,7 @@ struct vma_to_fileoffset_map *create_vma
91793 if (overlay_tbl_offset < 0) {
91794 printk(KERN_ERR "SPU_PROF: "
91795 "%s, line %d: Error finding SPU overlay table\n",
91796 - __FUNCTION__, __LINE__);
91797 + __func__, __LINE__);
91798 goto fail;
91799 }
91800 ovly_table = spu_elf_start + overlay_tbl_offset;
91801 Index: linux-2.6.25.4/arch/powerpc/oprofile/op_model_cell.c
91802 ===================================================================
91803 --- linux-2.6.25.4.orig/arch/powerpc/oprofile/op_model_cell.c
91804 +++ linux-2.6.25.4/arch/powerpc/oprofile/op_model_cell.c
91805 @@ -216,7 +216,7 @@ static void pm_rtas_reset_signals(u32 no
91806 * failure to stop OProfile.
91807 */
91808 printk(KERN_WARNING "%s: rtas returned: %d\n",
91809 - __FUNCTION__, ret);
91810 + __func__, ret);
91811 }
91812
91813 static int pm_rtas_activate_signals(u32 node, u32 count)
91814 @@ -255,7 +255,7 @@ static int pm_rtas_activate_signals(u32
91815
91816 if (unlikely(ret)) {
91817 printk(KERN_WARNING "%s: rtas returned: %d\n",
91818 - __FUNCTION__, ret);
91819 + __func__, ret);
91820 return -EIO;
91821 }
91822 }
91823 @@ -560,7 +560,7 @@ static int cell_reg_setup(struct op_coun
91824 if (unlikely(spu_rtas_token == RTAS_UNKNOWN_SERVICE)) {
91825 printk(KERN_ERR
91826 "%s: rtas token ibm,cbe-spu-perftools unknown\n",
91827 - __FUNCTION__);
91828 + __func__);
91829 return -EIO;
91830 }
91831 }
91832 @@ -576,7 +576,7 @@ static int cell_reg_setup(struct op_coun
91833 if (unlikely(pm_rtas_token == RTAS_UNKNOWN_SERVICE)) {
91834 printk(KERN_ERR
91835 "%s: rtas token ibm,cbe-perftools unknown\n",
91836 - __FUNCTION__);
91837 + __func__);
91838 return -EIO;
91839 }
91840
91841 @@ -853,7 +853,7 @@ static int pm_rtas_activate_spu_profilin
91842
91843 if (unlikely(ret)) {
91844 printk(KERN_WARNING "%s: rtas returned: %d\n",
91845 - __FUNCTION__, ret);
91846 + __func__, ret);
91847 return -EIO;
91848 }
91849
91850 @@ -949,7 +949,7 @@ static int cell_global_start_spu(struct
91851 if (unlikely(ret != 0)) {
91852 printk(KERN_ERR
91853 "%s: rtas call ibm,cbe-spu-perftools failed, return = %d\n",
91854 - __FUNCTION__, ret);
91855 + __func__, ret);
91856 rtas_error = -EIO;
91857 goto out;
91858 }
91859 @@ -1061,7 +1061,7 @@ static void cell_global_stop_spu(void)
91860 if (unlikely(rtn_value != 0)) {
91861 printk(KERN_ERR
91862 "%s: rtas call ibm,cbe-spu-perftools failed, return = %d\n",
91863 - __FUNCTION__, rtn_value);
91864 + __func__, rtn_value);
91865 }
91866
91867 /* Deactivate the signals */
91868 Index: linux-2.6.25.4/arch/powerpc/platforms/40x/ep405.c
91869 ===================================================================
91870 --- linux-2.6.25.4.orig/arch/powerpc/platforms/40x/ep405.c
91871 +++ linux-2.6.25.4/arch/powerpc/platforms/40x/ep405.c
91872 @@ -29,6 +29,7 @@
91873 #include <asm/time.h>
91874 #include <asm/uic.h>
91875 #include <asm/pci-bridge.h>
91876 +#include <asm/ppc4xx.h>
91877
91878 static struct device_node *bcsr_node;
91879 static void __iomem *bcsr_regs;
91880 @@ -119,5 +120,6 @@ define_machine(ep405) {
91881 .progress = udbg_progress,
91882 .init_IRQ = uic_init_tree,
91883 .get_irq = uic_get_irq,
91884 + .restart = ppc4xx_reset_system,
91885 .calibrate_decr = generic_calibrate_decr,
91886 };
91887 Index: linux-2.6.25.4/arch/powerpc/platforms/40x/kilauea.c
91888 ===================================================================
91889 --- linux-2.6.25.4.orig/arch/powerpc/platforms/40x/kilauea.c
91890 +++ linux-2.6.25.4/arch/powerpc/platforms/40x/kilauea.c
91891 @@ -1,7 +1,7 @@
91892 /*
91893 * Kilauea board specific routines
91894 *
91895 - * Copyright 2007 DENX Software Engineering, Stefan Roese <sr@denx.de>
91896 + * Copyright 2007-2008 DENX Software Engineering, Stefan Roese <sr@denx.de>
91897 *
91898 * Based on the Walnut code by
91899 * Josh Boyer <jwboyer@linux.vnet.ibm.com>
91900 @@ -20,6 +20,7 @@
91901 #include <asm/time.h>
91902 #include <asm/uic.h>
91903 #include <asm/pci-bridge.h>
91904 +#include <asm/ppc4xx.h>
91905
91906 static __initdata struct of_device_id kilauea_of_bus[] = {
91907 { .compatible = "ibm,plb4", },
91908 @@ -54,5 +55,6 @@ define_machine(kilauea) {
91909 .progress = udbg_progress,
91910 .init_IRQ = uic_init_tree,
91911 .get_irq = uic_get_irq,
91912 + .restart = ppc4xx_reset_system,
91913 .calibrate_decr = generic_calibrate_decr,
91914 };
91915 Index: linux-2.6.25.4/arch/powerpc/platforms/40x/makalu.c
91916 ===================================================================
91917 --- linux-2.6.25.4.orig/arch/powerpc/platforms/40x/makalu.c
91918 +++ linux-2.6.25.4/arch/powerpc/platforms/40x/makalu.c
91919 @@ -20,6 +20,7 @@
91920 #include <asm/time.h>
91921 #include <asm/uic.h>
91922 #include <asm/pci-bridge.h>
91923 +#include <asm/ppc4xx.h>
91924
91925 static __initdata struct of_device_id makalu_of_bus[] = {
91926 { .compatible = "ibm,plb4", },
91927 @@ -54,5 +55,6 @@ define_machine(makalu) {
91928 .progress = udbg_progress,
91929 .init_IRQ = uic_init_tree,
91930 .get_irq = uic_get_irq,
91931 + .restart = ppc4xx_reset_system,
91932 .calibrate_decr = generic_calibrate_decr,
91933 };
91934 Index: linux-2.6.25.4/arch/powerpc/platforms/40x/virtex.c
91935 ===================================================================
91936 --- linux-2.6.25.4.orig/arch/powerpc/platforms/40x/virtex.c
91937 +++ linux-2.6.25.4/arch/powerpc/platforms/40x/virtex.c
91938 @@ -14,6 +14,7 @@
91939 #include <asm/prom.h>
91940 #include <asm/time.h>
91941 #include <asm/xilinx_intc.h>
91942 +#include <asm/ppc4xx.h>
91943
91944 static struct of_device_id xilinx_of_bus_ids[] __initdata = {
91945 { .compatible = "xlnx,plb-v46-1.00.a", },
91946 @@ -48,5 +49,6 @@ define_machine(virtex) {
91947 .probe = virtex_probe,
91948 .init_IRQ = xilinx_intc_init_tree,
91949 .get_irq = xilinx_intc_get_irq,
91950 + .restart = ppc4xx_reset_system,
91951 .calibrate_decr = generic_calibrate_decr,
91952 };
91953 Index: linux-2.6.25.4/arch/powerpc/platforms/40x/walnut.c
91954 ===================================================================
91955 --- linux-2.6.25.4.orig/arch/powerpc/platforms/40x/walnut.c
91956 +++ linux-2.6.25.4/arch/powerpc/platforms/40x/walnut.c
91957 @@ -26,6 +26,7 @@
91958 #include <asm/time.h>
91959 #include <asm/uic.h>
91960 #include <asm/pci-bridge.h>
91961 +#include <asm/ppc4xx.h>
91962
91963 static __initdata struct of_device_id walnut_of_bus[] = {
91964 { .compatible = "ibm,plb3", },
91965 @@ -61,5 +62,6 @@ define_machine(walnut) {
91966 .progress = udbg_progress,
91967 .init_IRQ = uic_init_tree,
91968 .get_irq = uic_get_irq,
91969 - .calibrate_decr = generic_calibrate_decr,
91970 + .restart = ppc4xx_reset_system,
91971 + .calibrate_decr = generic_calibrate_decr,
91972 };
91973 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/44x.h
91974 ===================================================================
91975 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/44x.h
91976 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/44x.h
91977 @@ -3,6 +3,5 @@
91978
91979 extern u8 as1_readb(volatile u8 __iomem *addr);
91980 extern void as1_writeb(u8 data, volatile u8 __iomem *addr);
91981 -extern void ppc44x_reset_system(char *cmd);
91982
91983 #endif /* __POWERPC_PLATFORMS_44X_44X_H */
91984 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/Kconfig
91985 ===================================================================
91986 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/Kconfig
91987 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/Kconfig
91988 @@ -67,6 +67,25 @@ config WARP
91989 See http://www.pikatechnologies.com/ and follow the "PIKA for Computer
91990 Telephony Developers" link for more information.
91991
91992 +config CANYONLANDS
91993 + bool "Canyonlands"
91994 + depends on 44x
91995 + default n
91996 + select 460EX
91997 + select PCI
91998 + select PPC4xx_PCI_EXPRESS
91999 + help
92000 + This option enables support for the AMCC PPC460EX evaluation board.
92001 +
92002 +config YOSEMITE
92003 + bool "Yosemite"
92004 + depends on 44x
92005 + default n
92006 + select 440EP
92007 + select PCI
92008 + help
92009 + This option enables support for the AMCC PPC440EP evaluation board.
92010 +
92011 #config LUAN
92012 # bool "Luan"
92013 # depends on 44x
92014 @@ -122,6 +141,14 @@ config 440SPe
92015 bool
92016 select IBM_NEW_EMAC_EMAC4
92017
92018 +config 460EX
92019 + bool
92020 + select PPC_FPU
92021 + select IBM_NEW_EMAC_EMAC4
92022 + select IBM_NEW_EMAC_RGMII
92023 + select IBM_NEW_EMAC_ZMII
92024 + select IBM_NEW_EMAC_TAH
92025 +
92026 # 44x errata/workaround config symbols, selected by the CPU models above
92027 config IBM440EP_ERR42
92028 bool
92029 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/Makefile
92030 ===================================================================
92031 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/Makefile
92032 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/Makefile
92033 @@ -1,9 +1,11 @@
92034 -obj-$(CONFIG_44x) := misc_44x.o
92035 +obj-$(CONFIG_44x) := misc_44x.o idle.o
92036 obj-$(CONFIG_EBONY) += ebony.o
92037 obj-$(CONFIG_TAISHAN) += taishan.o
92038 obj-$(CONFIG_BAMBOO) += bamboo.o
92039 +obj-$(CONFIG_YOSEMITE) += bamboo.o
92040 obj-$(CONFIG_SEQUOIA) += sequoia.o
92041 obj-$(CONFIG_KATMAI) += katmai.o
92042 obj-$(CONFIG_RAINIER) += rainier.o
92043 obj-$(CONFIG_WARP) += warp.o
92044 obj-$(CONFIG_WARP) += warp-nand.o
92045 +obj-$(CONFIG_CANYONLANDS) += canyonlands.o
92046 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/bamboo.c
92047 ===================================================================
92048 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/bamboo.c
92049 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/bamboo.c
92050 @@ -22,8 +22,7 @@
92051 #include <asm/time.h>
92052 #include <asm/uic.h>
92053 #include <asm/pci-bridge.h>
92054 -
92055 -#include "44x.h"
92056 +#include <asm/ppc4xx.h>
92057
92058 static __initdata struct of_device_id bamboo_of_bus[] = {
92059 { .compatible = "ibm,plb4", },
92060 @@ -53,11 +52,11 @@ static int __init bamboo_probe(void)
92061 }
92062
92063 define_machine(bamboo) {
92064 - .name = "Bamboo",
92065 - .probe = bamboo_probe,
92066 - .progress = udbg_progress,
92067 - .init_IRQ = uic_init_tree,
92068 - .get_irq = uic_get_irq,
92069 - .restart = ppc44x_reset_system,
92070 + .name = "Bamboo",
92071 + .probe = bamboo_probe,
92072 + .progress = udbg_progress,
92073 + .init_IRQ = uic_init_tree,
92074 + .get_irq = uic_get_irq,
92075 + .restart = ppc4xx_reset_system,
92076 .calibrate_decr = generic_calibrate_decr,
92077 };
92078 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/canyonlands.c
92079 ===================================================================
92080 --- /dev/null
92081 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/canyonlands.c
92082 @@ -0,0 +1,63 @@
92083 +/*
92084 + * Canyonlands board specific routines
92085 + *
92086 + * Copyright 2008 DENX Software Engineering, Stefan Roese <sr@denx.de>
92087 + *
92088 + * Based on the Katmai code by
92089 + * Benjamin Herrenschmidt <benh@kernel.crashing.org>
92090 + * Copyright 2007 IBM Corp.
92091 + * Josh Boyer <jwboyer@linux.vnet.ibm.com>
92092 + * Copyright 2007 IBM Corporation
92093 + *
92094 + * This program is free software; you can redistribute it and/or modify it
92095 + * under the terms of the GNU General Public License as published by the
92096 + * Free Software Foundation; either version 2 of the License, or (at your
92097 + * option) any later version.
92098 + */
92099 +#include <linux/init.h>
92100 +#include <linux/of_platform.h>
92101 +
92102 +#include <asm/machdep.h>
92103 +#include <asm/prom.h>
92104 +#include <asm/udbg.h>
92105 +#include <asm/time.h>
92106 +#include <asm/uic.h>
92107 +#include <asm/pci-bridge.h>
92108 +#include <asm/ppc4xx.h>
92109 +
92110 +static __initdata struct of_device_id canyonlands_of_bus[] = {
92111 + { .compatible = "ibm,plb4", },
92112 + { .compatible = "ibm,opb", },
92113 + { .compatible = "ibm,ebc", },
92114 + {},
92115 +};
92116 +
92117 +static int __init canyonlands_device_probe(void)
92118 +{
92119 + of_platform_bus_probe(NULL, canyonlands_of_bus, NULL);
92120 +
92121 + return 0;
92122 +}
92123 +machine_device_initcall(canyonlands, canyonlands_device_probe);
92124 +
92125 +static int __init canyonlands_probe(void)
92126 +{
92127 + unsigned long root = of_get_flat_dt_root();
92128 +
92129 + if (!of_flat_dt_is_compatible(root, "amcc,canyonlands"))
92130 + return 0;
92131 +
92132 + ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC;
92133 +
92134 + return 1;
92135 +}
92136 +
92137 +define_machine(canyonlands) {
92138 + .name = "Canyonlands",
92139 + .probe = canyonlands_probe,
92140 + .progress = udbg_progress,
92141 + .init_IRQ = uic_init_tree,
92142 + .get_irq = uic_get_irq,
92143 + .restart = ppc4xx_reset_system,
92144 + .calibrate_decr = generic_calibrate_decr,
92145 +};
92146 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/ebony.c
92147 ===================================================================
92148 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/ebony.c
92149 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/ebony.c
92150 @@ -26,8 +26,7 @@
92151 #include <asm/time.h>
92152 #include <asm/uic.h>
92153 #include <asm/pci-bridge.h>
92154 -
92155 -#include "44x.h"
92156 +#include <asm/ppc4xx.h>
92157
92158 static __initdata struct of_device_id ebony_of_bus[] = {
92159 { .compatible = "ibm,plb4", },
92160 @@ -66,6 +65,6 @@ define_machine(ebony) {
92161 .progress = udbg_progress,
92162 .init_IRQ = uic_init_tree,
92163 .get_irq = uic_get_irq,
92164 - .restart = ppc44x_reset_system,
92165 + .restart = ppc4xx_reset_system,
92166 .calibrate_decr = generic_calibrate_decr,
92167 };
92168 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/idle.c
92169 ===================================================================
92170 --- /dev/null
92171 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/idle.c
92172 @@ -0,0 +1,67 @@
92173 +/*
92174 + * Copyright 2008 IBM Corp.
92175 + *
92176 + * Based on arch/powerpc/platforms/pasemi/idle.c:
92177 + * Copyright (C) 2006-2007 PA Semi, Inc
92178 + *
92179 + * Added by: Jerone Young <jyoung5@us.ibm.com>
92180 + *
92181 + * This program is free software; you can redistribute it and/or modify
92182 + * it under the terms of the GNU General Public License version 2 as
92183 + * published by the Free Software Foundation.
92184 + *
92185 + * This program is distributed in the hope that it will be useful,
92186 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
92187 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
92188 + * GNU General Public License for more details.
92189 + *
92190 + * You should have received a copy of the GNU General Public License
92191 + * along with this program; if not, write to the Free Software
92192 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
92193 + *
92194 + */
92195 +
92196 +#include <linux/of.h>
92197 +#include <linux/kernel.h>
92198 +#include <asm/machdep.h>
92199 +
92200 +static int mode_spin;
92201 +
92202 +static void ppc44x_idle(void)
92203 +{
92204 + unsigned long msr_save;
92205 +
92206 + msr_save = mfmsr();
92207 + /* set wait state MSR */
92208 + mtmsr(msr_save|MSR_WE|MSR_EE|MSR_CE|MSR_DE);
92209 + isync();
92210 + /* return to initial state */
92211 + mtmsr(msr_save);
92212 + isync();
92213 +}
92214 +
92215 +int __init ppc44x_idle_init(void)
92216 +{
92217 + if (!mode_spin) {
92218 + /* If we are not setting spin mode
92219 + then we set to wait mode */
92220 + ppc_md.power_save = &ppc44x_idle;
92221 + }
92222 +
92223 + return 0;
92224 +}
92225 +
92226 +arch_initcall(ppc44x_idle_init);
92227 +
92228 +static int __init idle_param(char *p)
92229 +{
92230 +
92231 + if (!strcmp("spin", p)) {
92232 + mode_spin = 1;
92233 + ppc_md.power_save = NULL;
92234 + }
92235 +
92236 + return 0;
92237 +}
92238 +
92239 +early_param("idle", idle_param);
92240 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/katmai.c
92241 ===================================================================
92242 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/katmai.c
92243 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/katmai.c
92244 @@ -22,8 +22,7 @@
92245 #include <asm/time.h>
92246 #include <asm/uic.h>
92247 #include <asm/pci-bridge.h>
92248 -
92249 -#include "44x.h"
92250 +#include <asm/ppc4xx.h>
92251
92252 static __initdata struct of_device_id katmai_of_bus[] = {
92253 { .compatible = "ibm,plb4", },
92254 @@ -58,6 +57,6 @@ define_machine(katmai) {
92255 .progress = udbg_progress,
92256 .init_IRQ = uic_init_tree,
92257 .get_irq = uic_get_irq,
92258 - .restart = ppc44x_reset_system,
92259 + .restart = ppc4xx_reset_system,
92260 .calibrate_decr = generic_calibrate_decr,
92261 };
92262 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/misc_44x.S
92263 ===================================================================
92264 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/misc_44x.S
92265 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/misc_44x.S
92266 @@ -44,14 +44,3 @@ _GLOBAL(as1_writeb)
92267 sync
92268 isync
92269 blr
92270 -
92271 -/*
92272 - * void ppc44x_reset_system(char *cmd)
92273 - *
92274 - * At present, this routine just applies a system reset.
92275 - */
92276 -_GLOBAL(ppc44x_reset_system)
92277 - mfspr r13,SPRN_DBCR0
92278 - oris r13,r13,DBCR0_RST_SYSTEM@h
92279 - mtspr SPRN_DBCR0,r13
92280 - b . /* Just in case the reset doesn't work */
92281 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/rainier.c
92282 ===================================================================
92283 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/rainier.c
92284 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/rainier.c
92285 @@ -22,7 +22,7 @@
92286 #include <asm/time.h>
92287 #include <asm/uic.h>
92288 #include <asm/pci-bridge.h>
92289 -#include "44x.h"
92290 +#include <asm/ppc4xx.h>
92291
92292 static __initdata struct of_device_id rainier_of_bus[] = {
92293 { .compatible = "ibm,plb4", },
92294 @@ -57,6 +57,6 @@ define_machine(rainier) {
92295 .progress = udbg_progress,
92296 .init_IRQ = uic_init_tree,
92297 .get_irq = uic_get_irq,
92298 - .restart = ppc44x_reset_system,
92299 + .restart = ppc4xx_reset_system,
92300 .calibrate_decr = generic_calibrate_decr,
92301 };
92302 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/sequoia.c
92303 ===================================================================
92304 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/sequoia.c
92305 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/sequoia.c
92306 @@ -23,7 +23,7 @@
92307 #include <asm/uic.h>
92308 #include <asm/pci-bridge.h>
92309
92310 -#include "44x.h"
92311 +#include <asm/ppc4xx.h>
92312
92313 static __initdata struct of_device_id sequoia_of_bus[] = {
92314 { .compatible = "ibm,plb4", },
92315 @@ -58,6 +58,6 @@ define_machine(sequoia) {
92316 .progress = udbg_progress,
92317 .init_IRQ = uic_init_tree,
92318 .get_irq = uic_get_irq,
92319 - .restart = ppc44x_reset_system,
92320 + .restart = ppc4xx_reset_system,
92321 .calibrate_decr = generic_calibrate_decr,
92322 };
92323 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/taishan.c
92324 ===================================================================
92325 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/taishan.c
92326 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/taishan.c
92327 @@ -29,8 +29,7 @@
92328 #include <asm/time.h>
92329 #include <asm/uic.h>
92330 #include <asm/pci-bridge.h>
92331 -
92332 -#include "44x.h"
92333 +#include <asm/ppc4xx.h>
92334
92335 static __initdata struct of_device_id taishan_of_bus[] = {
92336 { .compatible = "ibm,plb4", },
92337 @@ -68,6 +67,6 @@ define_machine(taishan) {
92338 .progress = udbg_progress,
92339 .init_IRQ = uic_init_tree,
92340 .get_irq = uic_get_irq,
92341 - .restart = ppc44x_reset_system,
92342 + .restart = ppc4xx_reset_system,
92343 .calibrate_decr = generic_calibrate_decr,
92344 };
92345 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/warp-nand.c
92346 ===================================================================
92347 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/warp-nand.c
92348 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/warp-nand.c
92349 @@ -11,6 +11,7 @@
92350 #include <linux/mtd/partitions.h>
92351 #include <linux/mtd/nand.h>
92352 #include <linux/mtd/ndfc.h>
92353 +#include <asm/machdep.h>
92354
92355 #ifdef CONFIG_MTD_NAND_NDFC
92356
92357 @@ -100,6 +101,6 @@ static int warp_setup_nand_flash(void)
92358
92359 return 0;
92360 }
92361 -device_initcall(warp_setup_nand_flash);
92362 +machine_device_initcall(warp, warp_setup_nand_flash);
92363
92364 #endif
92365 Index: linux-2.6.25.4/arch/powerpc/platforms/44x/warp.c
92366 ===================================================================
92367 --- linux-2.6.25.4.orig/arch/powerpc/platforms/44x/warp.c
92368 +++ linux-2.6.25.4/arch/powerpc/platforms/44x/warp.c
92369 @@ -18,9 +18,7 @@
92370 #include <asm/udbg.h>
92371 #include <asm/time.h>
92372 #include <asm/uic.h>
92373 -
92374 -#include "44x.h"
92375 -
92376 +#include <asm/ppc4xx.h>
92377
92378 static __initdata struct of_device_id warp_of_bus[] = {
92379 { .compatible = "ibm,plb4", },
92380 @@ -49,7 +47,7 @@ define_machine(warp) {
92381 .progress = udbg_progress,
92382 .init_IRQ = uic_init_tree,
92383 .get_irq = uic_get_irq,
92384 - .restart = ppc44x_reset_system,
92385 + .restart = ppc4xx_reset_system,
92386 .calibrate_decr = generic_calibrate_decr,
92387 };
92388
92389 Index: linux-2.6.25.4/arch/powerpc/platforms/52xx/lite5200.c
92390 ===================================================================
92391 --- linux-2.6.25.4.orig/arch/powerpc/platforms/52xx/lite5200.c
92392 +++ linux-2.6.25.4/arch/powerpc/platforms/52xx/lite5200.c
92393 @@ -63,7 +63,7 @@ lite5200_fix_clock_config(void)
92394 of_node_put(np);
92395 if (!cdm) {
92396 printk(KERN_ERR "%s() failed; expect abnormal behaviour\n",
92397 - __FUNCTION__);
92398 + __func__);
92399 return;
92400 }
92401
92402 @@ -98,7 +98,7 @@ lite5200_fix_port_config(void)
92403 of_node_put(np);
92404 if (!gpio) {
92405 printk(KERN_ERR "%s() failed. expect abnormal behavior\n",
92406 - __FUNCTION__);
92407 + __func__);
92408 return;
92409 }
92410
92411 Index: linux-2.6.25.4/arch/powerpc/platforms/82xx/Kconfig
92412 ===================================================================
92413 --- linux-2.6.25.4.orig/arch/powerpc/platforms/82xx/Kconfig
92414 +++ linux-2.6.25.4/arch/powerpc/platforms/82xx/Kconfig
92415 @@ -11,7 +11,6 @@ config MPC8272_ADS
92416 select 8260
92417 select FSL_SOC
92418 select PQ2_ADS_PCI_PIC if PCI
92419 - select PPC_CPM_NEW_BINDING
92420 help
92421 This option enables support for the MPC8272 ADS board
92422
92423 @@ -22,7 +21,6 @@ config PQ2FADS
92424 select 8260
92425 select FSL_SOC
92426 select PQ2_ADS_PCI_PIC if PCI
92427 - select PPC_CPM_NEW_BINDING
92428 help
92429 This option enables support for the PQ2FADS board
92430
92431 @@ -31,7 +29,6 @@ config EP8248E
92432 select 8272
92433 select 8260
92434 select FSL_SOC
92435 - select PPC_CPM_NEW_BINDING
92436 select MDIO_BITBANG
92437 help
92438 This enables support for the Embedded Planet EP8248E board.
92439 Index: linux-2.6.25.4/arch/powerpc/platforms/83xx/mpc837x_rdb.c
92440 ===================================================================
92441 --- linux-2.6.25.4.orig/arch/powerpc/platforms/83xx/mpc837x_rdb.c
92442 +++ linux-2.6.25.4/arch/powerpc/platforms/83xx/mpc837x_rdb.c
92443 @@ -46,6 +46,7 @@ static void __init mpc837x_rdb_setup_arc
92444 static struct of_device_id mpc837x_ids[] = {
92445 { .type = "soc", },
92446 { .compatible = "soc", },
92447 + { .compatible = "simple-bus", },
92448 {},
92449 };
92450
92451 Index: linux-2.6.25.4/arch/powerpc/platforms/83xx/mpc83xx.h
92452 ===================================================================
92453 --- linux-2.6.25.4.orig/arch/powerpc/platforms/83xx/mpc83xx.h
92454 +++ linux-2.6.25.4/arch/powerpc/platforms/83xx/mpc83xx.h
92455 @@ -16,6 +16,7 @@
92456 #define MPC83XX_SCCR_USB_DRCM_10 0x00200000
92457 #define MPC8315_SCCR_USB_MASK 0x00c00000
92458 #define MPC8315_SCCR_USB_DRCM_11 0x00c00000
92459 +#define MPC8315_SCCR_USB_DRCM_01 0x00400000
92460 #define MPC837X_SCCR_USB_DRCM_11 0x00c00000
92461
92462 /* system i/o configuration register low */
92463 @@ -37,6 +38,7 @@
92464 /* USB Control Register */
92465 #define FSL_USB2_CONTROL_OFFS 0x500
92466 #define CONTROL_UTMI_PHY_EN 0x00000200
92467 +#define CONTROL_REFSEL_24MHZ 0x00000040
92468 #define CONTROL_REFSEL_48MHZ 0x00000080
92469 #define CONTROL_PHY_CLK_SEL_ULPI 0x00000400
92470 #define CONTROL_OTG_PORT 0x00000020
92471 Index: linux-2.6.25.4/arch/powerpc/platforms/83xx/usb.c
92472 ===================================================================
92473 --- linux-2.6.25.4.orig/arch/powerpc/platforms/83xx/usb.c
92474 +++ linux-2.6.25.4/arch/powerpc/platforms/83xx/usb.c
92475 @@ -129,7 +129,7 @@ int mpc831x_usb_cfg(void)
92476 if (immr_node && of_device_is_compatible(immr_node, "fsl,mpc8315-immr"))
92477 clrsetbits_be32(immap + MPC83XX_SCCR_OFFS,
92478 MPC8315_SCCR_USB_MASK,
92479 - MPC8315_SCCR_USB_DRCM_11);
92480 + MPC8315_SCCR_USB_DRCM_01);
92481 else
92482 clrsetbits_be32(immap + MPC83XX_SCCR_OFFS,
92483 MPC83XX_SCCR_USB_MASK,
92484 @@ -164,9 +164,15 @@ int mpc831x_usb_cfg(void)
92485 /* Using on-chip PHY */
92486 if (prop && (!strcmp(prop, "utmi_wide") ||
92487 !strcmp(prop, "utmi"))) {
92488 - /* Set UTMI_PHY_EN, REFSEL to 48MHZ */
92489 + u32 refsel;
92490 +
92491 + if (of_device_is_compatible(immr_node, "fsl,mpc8315-immr"))
92492 + refsel = CONTROL_REFSEL_24MHZ;
92493 + else
92494 + refsel = CONTROL_REFSEL_48MHZ;
92495 + /* Set UTMI_PHY_EN and REFSEL */
92496 out_be32(usb_regs + FSL_USB2_CONTROL_OFFS,
92497 - CONTROL_UTMI_PHY_EN | CONTROL_REFSEL_48MHZ);
92498 + CONTROL_UTMI_PHY_EN | refsel);
92499 /* Using external UPLI PHY */
92500 } else if (prop && !strcmp(prop, "ulpi")) {
92501 /* Set PHY_CLK_SEL to ULPI */
92502 Index: linux-2.6.25.4/arch/powerpc/platforms/85xx/Kconfig
92503 ===================================================================
92504 --- linux-2.6.25.4.orig/arch/powerpc/platforms/85xx/Kconfig
92505 +++ linux-2.6.25.4/arch/powerpc/platforms/85xx/Kconfig
92506 @@ -19,7 +19,6 @@ config MPC8540_ADS
92507 config MPC8560_ADS
92508 bool "Freescale MPC8560 ADS"
92509 select DEFAULT_UIMAGE
92510 - select PPC_CPM_NEW_BINDING
92511 select CPM2
92512 help
92513 This option enables support for the MPC 8560 ADS board
92514 @@ -46,6 +45,12 @@ config MPC85xx_DS
92515 help
92516 This option enables support for the MPC85xx DS (MPC8544 DS) board
92517
92518 +config KSI8560
92519 + bool "Emerson KSI8560"
92520 + select DEFAULT_UIMAGE
92521 + help
92522 + This option enables support for the Emerson KSI8560 board
92523 +
92524 config STX_GP3
92525 bool "Silicon Turnkey Express GP3"
92526 help
92527 @@ -53,14 +58,12 @@ config STX_GP3
92528 board.
92529 select CPM2
92530 select DEFAULT_UIMAGE
92531 - select PPC_CPM_NEW_BINDING
92532
92533 config TQM8540
92534 bool "TQ Components TQM8540"
92535 help
92536 This option enables support for the TQ Components TQM8540 board.
92537 select DEFAULT_UIMAGE
92538 - select PPC_CPM_NEW_BINDING
92539 select TQM85xx
92540
92541 config TQM8541
92542 @@ -68,7 +71,6 @@ config TQM8541
92543 help
92544 This option enables support for the TQ Components TQM8541 board.
92545 select DEFAULT_UIMAGE
92546 - select PPC_CPM_NEW_BINDING
92547 select TQM85xx
92548 select CPM2
92549
92550 @@ -77,7 +79,6 @@ config TQM8555
92551 help
92552 This option enables support for the TQ Components TQM8555 board.
92553 select DEFAULT_UIMAGE
92554 - select PPC_CPM_NEW_BINDING
92555 select TQM85xx
92556 select CPM2
92557
92558 @@ -86,7 +87,6 @@ config TQM8560
92559 help
92560 This option enables support for the TQ Components TQM8560 board.
92561 select DEFAULT_UIMAGE
92562 - select PPC_CPM_NEW_BINDING
92563 select TQM85xx
92564 select CPM2
92565
92566 @@ -99,7 +99,6 @@ config SBC8548
92567 config SBC8560
92568 bool "Wind River SBC8560"
92569 select DEFAULT_UIMAGE
92570 - select PPC_CPM_NEW_BINDING if CPM2
92571 help
92572 This option enables support for the Wind River SBC8560 board
92573
92574 Index: linux-2.6.25.4/arch/powerpc/platforms/85xx/Makefile
92575 ===================================================================
92576 --- linux-2.6.25.4.orig/arch/powerpc/platforms/85xx/Makefile
92577 +++ linux-2.6.25.4/arch/powerpc/platforms/85xx/Makefile
92578 @@ -10,3 +10,4 @@ obj-$(CONFIG_STX_GP3) += stx_gp3.o
92579 obj-$(CONFIG_TQM85xx) += tqm85xx.o
92580 obj-$(CONFIG_SBC8560) += sbc8560.o
92581 obj-$(CONFIG_SBC8548) += sbc8548.o
92582 +obj-$(CONFIG_KSI8560) += ksi8560.o
92583 Index: linux-2.6.25.4/arch/powerpc/platforms/85xx/ksi8560.c
92584 ===================================================================
92585 --- /dev/null
92586 +++ linux-2.6.25.4/arch/powerpc/platforms/85xx/ksi8560.c
92587 @@ -0,0 +1,257 @@
92588 +/*
92589 + * Board setup routines for the Emerson KSI8560
92590 + *
92591 + * Author: Alexandr Smirnov <asmirnov@ru.mvista.com>
92592 + *
92593 + * Based on mpc85xx_ads.c maintained by Kumar Gala
92594 + *
92595 + * 2008 (c) MontaVista, Software, Inc. This file is licensed under
92596 + * the terms of the GNU General Public License version 2. This program
92597 + * is licensed "as is" without any warranty of any kind, whether express
92598 + * or implied.
92599 + *
92600 + */
92601 +
92602 +#include <linux/stddef.h>
92603 +#include <linux/kernel.h>
92604 +#include <linux/pci.h>
92605 +#include <linux/kdev_t.h>
92606 +#include <linux/delay.h>
92607 +#include <linux/seq_file.h>
92608 +#include <linux/of_platform.h>
92609 +
92610 +#include <asm/system.h>
92611 +#include <asm/time.h>
92612 +#include <asm/machdep.h>
92613 +#include <asm/pci-bridge.h>
92614 +#include <asm/mpic.h>
92615 +#include <mm/mmu_decl.h>
92616 +#include <asm/udbg.h>
92617 +#include <asm/prom.h>
92618 +
92619 +#include <sysdev/fsl_soc.h>
92620 +#include <sysdev/fsl_pci.h>
92621 +
92622 +#include <asm/cpm2.h>
92623 +#include <sysdev/cpm2_pic.h>
92624 +
92625 +
92626 +#define KSI8560_CPLD_HVR 0x04 /* Hardware Version Register */
92627 +#define KSI8560_CPLD_PVR 0x08 /* PLD Version Register */
92628 +#define KSI8560_CPLD_RCR1 0x30 /* Reset Command Register 1 */
92629 +
92630 +#define KSI8560_CPLD_RCR1_CPUHR 0x80 /* CPU Hard Reset */
92631 +
92632 +static void __iomem *cpld_base = NULL;
92633 +
92634 +static void machine_restart(char *cmd)
92635 +{
92636 + if (cpld_base)
92637 + out_8(cpld_base + KSI8560_CPLD_RCR1, KSI8560_CPLD_RCR1_CPUHR);
92638 + else
92639 + printk(KERN_ERR "Can't find CPLD base, hang forever\n");
92640 +
92641 + for (;;);
92642 +}
92643 +
92644 +static void cpm2_cascade(unsigned int irq, struct irq_desc *desc)
92645 +{
92646 + int cascade_irq;
92647 +
92648 + while ((cascade_irq = cpm2_get_irq()) >= 0)
92649 + generic_handle_irq(cascade_irq);
92650 +
92651 + desc->chip->eoi(irq);
92652 +}
92653 +
92654 +static void __init ksi8560_pic_init(void)
92655 +{
92656 + struct mpic *mpic;
92657 + struct resource r;
92658 + struct device_node *np;
92659 +#ifdef CONFIG_CPM2
92660 + int irq;
92661 +#endif
92662 +
92663 + np = of_find_node_by_type(NULL, "open-pic");
92664 +
92665 + if (np == NULL) {
92666 + printk(KERN_ERR "Could not find open-pic node\n");
92667 + return;
92668 + }
92669 +
92670 + if (of_address_to_resource(np, 0, &r)) {
92671 + printk(KERN_ERR "Could not map mpic register space\n");
92672 + of_node_put(np);
92673 + return;
92674 + }
92675 +
92676 + mpic = mpic_alloc(np, r.start,
92677 + MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
92678 + 0, 256, " OpenPIC ");
92679 + BUG_ON(mpic == NULL);
92680 + of_node_put(np);
92681 +
92682 + mpic_init(mpic);
92683 +
92684 +#ifdef CONFIG_CPM2
92685 + /* Setup CPM2 PIC */
92686 + np = of_find_compatible_node(NULL, NULL, "fsl,cpm2-pic");
92687 + if (np == NULL) {
92688 + printk(KERN_ERR "PIC init: can not find fsl,cpm2-pic node\n");
92689 + return;
92690 + }
92691 + irq = irq_of_parse_and_map(np, 0);
92692 +
92693 + cpm2_pic_init(np);
92694 + of_node_put(np);
92695 + set_irq_chained_handler(irq, cpm2_cascade);
92696 +
92697 + setup_irq(0, NULL);
92698 +#endif
92699 +}
92700 +
92701 +#ifdef CONFIG_CPM2
92702 +/*
92703 + * Setup I/O ports
92704 + */
92705 +struct cpm_pin {
92706 + int port, pin, flags;
92707 +};
92708 +
92709 +static struct cpm_pin __initdata ksi8560_pins[] = {
92710 + /* SCC1 */
92711 + {3, 29, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
92712 + {3, 30, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
92713 + {3, 31, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
92714 +
92715 + /* SCC2 */
92716 + {3, 26, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
92717 + {3, 27, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
92718 + {3, 28, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
92719 +
92720 + /* FCC1 */
92721 + {0, 14, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
92722 + {0, 15, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
92723 + {0, 16, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
92724 + {0, 17, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
92725 + {0, 18, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
92726 + {0, 19, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
92727 + {0, 20, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
92728 + {0, 21, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
92729 + {0, 26, CPM_PIN_INPUT | CPM_PIN_SECONDARY},
92730 + {0, 27, CPM_PIN_INPUT | CPM_PIN_SECONDARY},
92731 + {0, 28, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
92732 + {0, 29, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
92733 + {0, 30, CPM_PIN_INPUT | CPM_PIN_SECONDARY},
92734 + {0, 31, CPM_PIN_INPUT | CPM_PIN_SECONDARY},
92735 + {2, 23, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, /* CLK9 */
92736 + {2, 22, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, /* CLK10 */
92737 +
92738 +};
92739 +
92740 +static void __init init_ioports(void)
92741 +{
92742 + int i;
92743 +
92744 + for (i = 0; i < ARRAY_SIZE(ksi8560_pins); i++) {
92745 + struct cpm_pin *pin = &ksi8560_pins[i];
92746 + cpm2_set_pin(pin->port, pin->pin, pin->flags);
92747 + }
92748 +
92749 + cpm2_clk_setup(CPM_CLK_SCC1, CPM_BRG1, CPM_CLK_RX);
92750 + cpm2_clk_setup(CPM_CLK_SCC1, CPM_BRG1, CPM_CLK_TX);
92751 + cpm2_clk_setup(CPM_CLK_SCC2, CPM_BRG2, CPM_CLK_RX);
92752 + cpm2_clk_setup(CPM_CLK_SCC2, CPM_BRG2, CPM_CLK_TX);
92753 + cpm2_clk_setup(CPM_CLK_FCC1, CPM_CLK9, CPM_CLK_RX);
92754 + cpm2_clk_setup(CPM_CLK_FCC1, CPM_CLK10, CPM_CLK_TX);
92755 +}
92756 +#endif
92757 +
92758 +/*
92759 + * Setup the architecture
92760 + */
92761 +static void __init ksi8560_setup_arch(void)
92762 +{
92763 + struct device_node *cpld;
92764 +
92765 + cpld = of_find_compatible_node(NULL, NULL, "emerson,KSI8560-cpld");
92766 + if (cpld)
92767 + cpld_base = of_iomap(cpld, 0);
92768 + else
92769 + printk(KERN_ERR "Can't find CPLD in device tree\n");
92770 +
92771 + if (ppc_md.progress)
92772 + ppc_md.progress("ksi8560_setup_arch()", 0);
92773 +
92774 +#ifdef CONFIG_CPM2
92775 + cpm2_reset();
92776 + init_ioports();
92777 +#endif
92778 +}
92779 +
92780 +static void ksi8560_show_cpuinfo(struct seq_file *m)
92781 +{
92782 + uint pvid, svid, phid1;
92783 + uint memsize = total_memory;
92784 +
92785 + pvid = mfspr(SPRN_PVR);
92786 + svid = mfspr(SPRN_SVR);
92787 +
92788 + seq_printf(m, "Vendor\t\t: Emerson Network Power\n");
92789 + seq_printf(m, "Board\t\t: KSI8560\n");
92790 +
92791 + if (cpld_base) {
92792 + seq_printf(m, "Hardware rev\t: %d\n",
92793 + in_8(cpld_base + KSI8560_CPLD_HVR));
92794 + seq_printf(m, "CPLD rev\t: %d\n",
92795 + in_8(cpld_base + KSI8560_CPLD_PVR));
92796 + } else
92797 + seq_printf(m, "Unknown Hardware and CPLD revs\n");
92798 +
92799 + seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
92800 + seq_printf(m, "SVR\t\t: 0x%x\n", svid);
92801 +
92802 + /* Display cpu Pll setting */
92803 + phid1 = mfspr(SPRN_HID1);
92804 + seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
92805 +
92806 + /* Display the amount of memory */
92807 + seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
92808 +}
92809 +
92810 +static struct of_device_id __initdata of_bus_ids[] = {
92811 + { .type = "soc", },
92812 + { .name = "cpm", },
92813 + { .name = "localbus", },
92814 + {},
92815 +};
92816 +
92817 +static int __init declare_of_platform_devices(void)
92818 +{
92819 + of_platform_bus_probe(NULL, of_bus_ids, NULL);
92820 +
92821 + return 0;
92822 +}
92823 +machine_device_initcall(ksi8560, declare_of_platform_devices);
92824 +
92825 +/*
92826 + * Called very early, device-tree isn't unflattened
92827 + */
92828 +static int __init ksi8560_probe(void)
92829 +{
92830 + unsigned long root = of_get_flat_dt_root();
92831 +
92832 + return of_flat_dt_is_compatible(root, "emerson,KSI8560");
92833 +}
92834 +
92835 +define_machine(ksi8560) {
92836 + .name = "KSI8560",
92837 + .probe = ksi8560_probe,
92838 + .setup_arch = ksi8560_setup_arch,
92839 + .init_IRQ = ksi8560_pic_init,
92840 + .show_cpuinfo = ksi8560_show_cpuinfo,
92841 + .get_irq = mpic_get_irq,
92842 + .restart = machine_restart,
92843 + .calibrate_decr = generic_calibrate_decr,
92844 +};
92845 Index: linux-2.6.25.4/arch/powerpc/platforms/85xx/mpc85xx_ads.c
92846 ===================================================================
92847 --- linux-2.6.25.4.orig/arch/powerpc/platforms/85xx/mpc85xx_ads.c
92848 +++ linux-2.6.25.4/arch/powerpc/platforms/85xx/mpc85xx_ads.c
92849 @@ -165,7 +165,7 @@ static void __init init_ioports(void)
92850 int i;
92851
92852 for (i = 0; i < ARRAY_SIZE(mpc8560_ads_pins); i++) {
92853 - struct cpm_pin *pin = &mpc8560_ads_pins[i];
92854 + const struct cpm_pin *pin = &mpc8560_ads_pins[i];
92855 cpm2_set_pin(pin->port, pin->pin, pin->flags);
92856 }
92857
92858 Index: linux-2.6.25.4/arch/powerpc/platforms/85xx/mpc85xx_ds.c
92859 ===================================================================
92860 --- linux-2.6.25.4.orig/arch/powerpc/platforms/85xx/mpc85xx_ds.c
92861 +++ linux-2.6.25.4/arch/powerpc/platforms/85xx/mpc85xx_ds.c
92862 @@ -19,6 +19,7 @@
92863 #include <linux/delay.h>
92864 #include <linux/seq_file.h>
92865 #include <linux/interrupt.h>
92866 +#include <linux/of_platform.h>
92867
92868 #include <asm/system.h>
92869 #include <asm/time.h>
92870 @@ -36,7 +37,7 @@
92871 #undef DEBUG
92872
92873 #ifdef DEBUG
92874 -#define DBG(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
92875 +#define DBG(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args)
92876 #else
92877 #define DBG(fmt, args...)
92878 #endif
92879 @@ -183,6 +184,18 @@ static int __init mpc8544_ds_probe(void)
92880 }
92881 }
92882
92883 +static struct of_device_id mpc85xxds_ids[] = {
92884 + { .type = "soc", },
92885 + { .compatible = "soc", },
92886 + {},
92887 +};
92888 +
92889 +static int __init mpc85xxds_publish_devices(void)
92890 +{
92891 + return of_platform_bus_probe(NULL, mpc85xxds_ids, NULL);
92892 +}
92893 +machine_device_initcall(mpc8544_ds, mpc85xxds_publish_devices);
92894 +
92895 /*
92896 * Called very early, device-tree isn't unflattened
92897 */
92898 Index: linux-2.6.25.4/arch/powerpc/platforms/86xx/Kconfig
92899 ===================================================================
92900 --- linux-2.6.25.4.orig/arch/powerpc/platforms/86xx/Kconfig
92901 +++ linux-2.6.25.4/arch/powerpc/platforms/86xx/Kconfig
92902 @@ -11,6 +11,12 @@ config MPC8641_HPCN
92903 help
92904 This option enables support for the MPC8641 HPCN board.
92905
92906 +config SBC8641D
92907 + bool "Wind River SBC8641D"
92908 + select DEFAULT_UIMAGE
92909 + help
92910 + This option enables support for the WRS SBC8641D board.
92911 +
92912 config MPC8610_HPCD
92913 bool "Freescale MPC8610 HPCD"
92914 select DEFAULT_UIMAGE
92915 @@ -24,7 +30,7 @@ config MPC8641
92916 select FSL_PCI if PCI
92917 select PPC_UDBG_16550
92918 select MPIC
92919 - default y if MPC8641_HPCN
92920 + default y if MPC8641_HPCN || SBC8641D
92921
92922 config MPC8610
92923 bool
92924 Index: linux-2.6.25.4/arch/powerpc/platforms/86xx/Makefile
92925 ===================================================================
92926 --- linux-2.6.25.4.orig/arch/powerpc/platforms/86xx/Makefile
92927 +++ linux-2.6.25.4/arch/powerpc/platforms/86xx/Makefile
92928 @@ -4,4 +4,5 @@
92929
92930 obj-$(CONFIG_SMP) += mpc86xx_smp.o
92931 obj-$(CONFIG_MPC8641_HPCN) += mpc86xx_hpcn.o
92932 +obj-$(CONFIG_SBC8641D) += sbc8641d.o
92933 obj-$(CONFIG_MPC8610_HPCD) += mpc8610_hpcd.o
92934 Index: linux-2.6.25.4/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
92935 ===================================================================
92936 --- linux-2.6.25.4.orig/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
92937 +++ linux-2.6.25.4/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
92938 @@ -52,7 +52,7 @@ static int __init mpc8610_declare_of_pla
92939 }
92940 machine_device_initcall(mpc86xx_hpcd, mpc8610_declare_of_platform_devices);
92941
92942 -void __init
92943 +static void __init
92944 mpc86xx_hpcd_init_irq(void)
92945 {
92946 struct mpic *mpic1;
92947 @@ -200,7 +200,7 @@ static int __init mpc86xx_hpcd_probe(voi
92948 return 0;
92949 }
92950
92951 -long __init
92952 +static long __init
92953 mpc86xx_time_init(void)
92954 {
92955 unsigned int temp;
92956 Index: linux-2.6.25.4/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
92957 ===================================================================
92958 --- linux-2.6.25.4.orig/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
92959 +++ linux-2.6.25.4/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
92960 @@ -55,7 +55,7 @@ static void mpc86xx_8259_cascade(unsigne
92961 }
92962 #endif /* CONFIG_PCI */
92963
92964 -void __init
92965 +static void __init
92966 mpc86xx_hpcn_init_irq(void)
92967 {
92968 struct mpic *mpic1;
92969 @@ -162,7 +162,7 @@ mpc86xx_hpcn_setup_arch(void)
92970 }
92971
92972
92973 -void
92974 +static void
92975 mpc86xx_hpcn_show_cpuinfo(struct seq_file *m)
92976 {
92977 struct device_node *root;
92978 @@ -190,13 +190,19 @@ static int __init mpc86xx_hpcn_probe(voi
92979 {
92980 unsigned long root = of_get_flat_dt_root();
92981
92982 - if (of_flat_dt_is_compatible(root, "mpc86xx"))
92983 + if (of_flat_dt_is_compatible(root, "fsl,mpc8641hpcn"))
92984 return 1; /* Looks good */
92985
92986 + /* Be nice and don't give silent boot death. Delete this in 2.6.27 */
92987 + if (of_flat_dt_is_compatible(root, "mpc86xx")) {
92988 + pr_warning("WARNING: your dts/dtb is old. You must update before the next kernel release\n");
92989 + return 1;
92990 + }
92991 +
92992 return 0;
92993 }
92994
92995 -long __init
92996 +static long __init
92997 mpc86xx_time_init(void)
92998 {
92999 unsigned int temp;
93000 Index: linux-2.6.25.4/arch/powerpc/platforms/86xx/sbc8641d.c
93001 ===================================================================
93002 --- /dev/null
93003 +++ linux-2.6.25.4/arch/powerpc/platforms/86xx/sbc8641d.c
93004 @@ -0,0 +1,164 @@
93005 +/*
93006 + * SBC8641D board specific routines
93007 + *
93008 + * Copyright 2008 Wind River Systems Inc.
93009 + *
93010 + * By Paul Gortmaker (see MAINTAINERS for contact information)
93011 + *
93012 + * Based largely on the 8641 HPCN support by Freescale Semiconductor Inc.
93013 + *
93014 + * This program is free software; you can redistribute it and/or modify it
93015 + * under the terms of the GNU General Public License as published by the
93016 + * Free Software Foundation; either version 2 of the License, or (at your
93017 + * option) any later version.
93018 + */
93019 +
93020 +#include <linux/stddef.h>
93021 +#include <linux/kernel.h>
93022 +#include <linux/pci.h>
93023 +#include <linux/kdev_t.h>
93024 +#include <linux/delay.h>
93025 +#include <linux/seq_file.h>
93026 +#include <linux/of_platform.h>
93027 +
93028 +#include <asm/system.h>
93029 +#include <asm/time.h>
93030 +#include <asm/machdep.h>
93031 +#include <asm/pci-bridge.h>
93032 +#include <asm/mpc86xx.h>
93033 +#include <asm/prom.h>
93034 +#include <mm/mmu_decl.h>
93035 +#include <asm/udbg.h>
93036 +
93037 +#include <asm/mpic.h>
93038 +
93039 +#include <sysdev/fsl_pci.h>
93040 +#include <sysdev/fsl_soc.h>
93041 +
93042 +#include "mpc86xx.h"
93043 +
93044 +static void __init
93045 +sbc8641_init_irq(void)
93046 +{
93047 + struct mpic *mpic1;
93048 + struct device_node *np;
93049 + struct resource res;
93050 +
93051 + /* Determine PIC address. */
93052 + np = of_find_node_by_type(NULL, "open-pic");
93053 + if (np == NULL)
93054 + return;
93055 + of_address_to_resource(np, 0, &res);
93056 +
93057 + /* Alloc mpic structure and per isu has 16 INT entries. */
93058 + mpic1 = mpic_alloc(np, res.start,
93059 + MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
93060 + 0, 256, " MPIC ");
93061 + of_node_put(np);
93062 + BUG_ON(mpic1 == NULL);
93063 +
93064 + mpic_init(mpic1);
93065 +}
93066 +
93067 +static void __init
93068 +sbc8641_setup_arch(void)
93069 +{
93070 +#ifdef CONFIG_PCI
93071 + struct device_node *np;
93072 +#endif
93073 +
93074 + if (ppc_md.progress)
93075 + ppc_md.progress("sbc8641_setup_arch()", 0);
93076 +
93077 +#ifdef CONFIG_PCI
93078 + for_each_compatible_node(np, "pci", "fsl,mpc8641-pcie")
93079 + fsl_add_bridge(np, 0);
93080 +#endif
93081 +
93082 + printk("SBC8641 board from Wind River\n");
93083 +
93084 +#ifdef CONFIG_SMP
93085 + mpc86xx_smp_init();
93086 +#endif
93087 +}
93088 +
93089 +
93090 +static void
93091 +sbc8641_show_cpuinfo(struct seq_file *m)
93092 +{
93093 + struct device_node *root;
93094 + uint memsize = total_memory;
93095 + const char *model = "";
93096 + uint svid = mfspr(SPRN_SVR);
93097 +
93098 + seq_printf(m, "Vendor\t\t: Wind River Systems\n");
93099 +
93100 + root = of_find_node_by_path("/");
93101 + if (root)
93102 + model = of_get_property(root, "model", NULL);
93103 + seq_printf(m, "Machine\t\t: %s\n", model);
93104 + of_node_put(root);
93105 +
93106 + seq_printf(m, "SVR\t\t: 0x%x\n", svid);
93107 + seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
93108 +}
93109 +
93110 +
93111 +/*
93112 + * Called very early, device-tree isn't unflattened
93113 + */
93114 +static int __init sbc8641_probe(void)
93115 +{
93116 + unsigned long root = of_get_flat_dt_root();
93117 +
93118 + if (of_flat_dt_is_compatible(root, "wind,sbc8641"))
93119 + return 1; /* Looks good */
93120 +
93121 + return 0;
93122 +}
93123 +
93124 +static long __init
93125 +mpc86xx_time_init(void)
93126 +{
93127 + unsigned int temp;
93128 +
93129 + /* Set the time base to zero */
93130 + mtspr(SPRN_TBWL, 0);
93131 + mtspr(SPRN_TBWU, 0);
93132 +
93133 + temp = mfspr(SPRN_HID0);
93134 + temp |= HID0_TBEN;
93135 + mtspr(SPRN_HID0, temp);
93136 + asm volatile("isync");
93137 +
93138 + return 0;
93139 +}
93140 +
93141 +static __initdata struct of_device_id of_bus_ids[] = {
93142 + { .compatible = "simple-bus", },
93143 + {},
93144 +};
93145 +
93146 +static int __init declare_of_platform_devices(void)
93147 +{
93148 + of_platform_bus_probe(NULL, of_bus_ids, NULL);
93149 +
93150 + return 0;
93151 +}
93152 +machine_device_initcall(sbc8641, declare_of_platform_devices);
93153 +
93154 +define_machine(sbc8641) {
93155 + .name = "SBC8641D",
93156 + .probe = sbc8641_probe,
93157 + .setup_arch = sbc8641_setup_arch,
93158 + .init_IRQ = sbc8641_init_irq,
93159 + .show_cpuinfo = sbc8641_show_cpuinfo,
93160 + .get_irq = mpic_get_irq,
93161 + .restart = fsl_rstcr_restart,
93162 + .time_init = mpc86xx_time_init,
93163 + .calibrate_decr = generic_calibrate_decr,
93164 + .progress = udbg_progress,
93165 +#ifdef CONFIG_PCI
93166 + .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
93167 +#endif
93168 +};
93169 Index: linux-2.6.25.4/arch/powerpc/platforms/8xx/Kconfig
93170 ===================================================================
93171 --- linux-2.6.25.4.orig/arch/powerpc/platforms/8xx/Kconfig
93172 +++ linux-2.6.25.4/arch/powerpc/platforms/8xx/Kconfig
93173 @@ -18,7 +18,6 @@ config MPC8XXFADS
93174 config MPC86XADS
93175 bool "MPC86XADS"
93176 select CPM1
93177 - select PPC_CPM_NEW_BINDING
93178 help
93179 MPC86x Application Development System by Freescale Semiconductor.
93180 The MPC86xADS is meant to serve as a platform for s/w and h/w
93181 @@ -27,7 +26,6 @@ config MPC86XADS
93182 config MPC885ADS
93183 bool "MPC885ADS"
93184 select CPM1
93185 - select PPC_CPM_NEW_BINDING
93186 help
93187 Freescale Semiconductor MPC885 Application Development System (ADS).
93188 Also known as DUET.
93189 @@ -37,7 +35,6 @@ config MPC885ADS
93190 config PPC_EP88XC
93191 bool "Embedded Planet EP88xC (a.k.a. CWH-PPC-885XN-VE)"
93192 select CPM1
93193 - select PPC_CPM_NEW_BINDING
93194 help
93195 This enables support for the Embedded Planet EP88xC board.
93196
93197 @@ -47,7 +44,6 @@ config PPC_EP88XC
93198 config PPC_ADDER875
93199 bool "Analogue & Micro Adder 875"
93200 select CPM1
93201 - select PPC_CPM_NEW_BINDING
93202 select REDBOOT
93203 help
93204 This enables support for the Analogue & Micro Adder 875
93205 Index: linux-2.6.25.4/arch/powerpc/platforms/8xx/m8xx_setup.c
93206 ===================================================================
93207 --- linux-2.6.25.4.orig/arch/powerpc/platforms/8xx/m8xx_setup.c
93208 +++ linux-2.6.25.4/arch/powerpc/platforms/8xx/m8xx_setup.c
93209 @@ -111,17 +111,12 @@ void __init mpc8xx_calibrate_decr(void)
93210
93211 /* Processor frequency is MHz.
93212 */
93213 - ppc_tb_freq = 50000000;
93214 - if (!get_freq("bus-frequency", &ppc_tb_freq)) {
93215 - printk(KERN_ERR "WARNING: Estimating decrementer frequency "
93216 - "(not found)\n");
93217 - }
93218 - ppc_tb_freq /= 16;
93219 ppc_proc_freq = 50000000;
93220 if (!get_freq("clock-frequency", &ppc_proc_freq))
93221 printk(KERN_ERR "WARNING: Estimating processor frequency "
93222 "(not found)\n");
93223
93224 + ppc_tb_freq = ppc_proc_freq / 16;
93225 printk("Decrementer Frequency = 0x%lx\n", ppc_tb_freq);
93226
93227 /* Perform some more timer/timebase initialization. This used
93228 Index: linux-2.6.25.4/arch/powerpc/platforms/Kconfig
93229 ===================================================================
93230 --- linux-2.6.25.4.orig/arch/powerpc/platforms/Kconfig
93231 +++ linux-2.6.25.4/arch/powerpc/platforms/Kconfig
93232 @@ -290,13 +290,7 @@ config CPM2
93233 config PPC_CPM_NEW_BINDING
93234 bool
93235 depends on CPM1 || CPM2
93236 - help
93237 - Select this if your board has been converted to use the new
93238 - device tree bindings for CPM, and no longer needs the
93239 - ioport callbacks or the platform device glue code.
93240 -
93241 - The fs_enet and cpm_uart drivers will be built as
93242 - of_platform devices.
93243 + default y
93244
93245 config AXON_RAM
93246 tristate "Axon DDR2 memory device driver"
93247 Index: linux-2.6.25.4/arch/powerpc/platforms/Kconfig.cputype
93248 ===================================================================
93249 --- linux-2.6.25.4.orig/arch/powerpc/platforms/Kconfig.cputype
93250 +++ linux-2.6.25.4/arch/powerpc/platforms/Kconfig.cputype
93251 @@ -41,11 +41,13 @@ config 40x
93252 bool "AMCC 40x"
93253 select PPC_DCR_NATIVE
93254 select PPC_UDBG_16550
93255 + select 4xx_SOC
93256
93257 config 44x
93258 bool "AMCC 44x"
93259 select PPC_DCR_NATIVE
93260 select PPC_UDBG_16550
93261 + select 4xx_SOC
93262
93263 config E200
93264 bool "Freescale e200"
93265 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/iommu.c
93266 ===================================================================
93267 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/iommu.c
93268 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/iommu.c
93269 @@ -28,13 +28,13 @@
93270 #include <linux/notifier.h>
93271 #include <linux/of.h>
93272 #include <linux/of_platform.h>
93273 +#include <linux/lmb.h>
93274
93275 #include <asm/prom.h>
93276 #include <asm/iommu.h>
93277 #include <asm/machdep.h>
93278 #include <asm/pci-bridge.h>
93279 #include <asm/udbg.h>
93280 -#include <asm/lmb.h>
93281 #include <asm/firmware.h>
93282 #include <asm/cell-regs.h>
93283
93284 @@ -316,7 +316,7 @@ static void cell_iommu_setup_stab(struct
93285 segments = max(dbase + dsize, fbase + fsize) >> IO_SEGMENT_SHIFT;
93286
93287 pr_debug("%s: iommu[%d]: segments: %lu\n",
93288 - __FUNCTION__, iommu->nid, segments);
93289 + __func__, iommu->nid, segments);
93290
93291 /* set up the segment table */
93292 stab_size = segments * sizeof(unsigned long);
93293 @@ -343,7 +343,7 @@ static unsigned long *cell_iommu_alloc_p
93294 (1 << 12) / sizeof(unsigned long));
93295
93296 ptab_size = segments * pages_per_segment * sizeof(unsigned long);
93297 - pr_debug("%s: iommu[%d]: ptab_size: %lu, order: %d\n", __FUNCTION__,
93298 + pr_debug("%s: iommu[%d]: ptab_size: %lu, order: %d\n", __func__,
93299 iommu->nid, ptab_size, get_order(ptab_size));
93300 page = alloc_pages_node(iommu->nid, GFP_KERNEL, get_order(ptab_size));
93301 BUG_ON(!page);
93302 @@ -355,7 +355,7 @@ static unsigned long *cell_iommu_alloc_p
93303 n_pte_pages = (pages_per_segment * sizeof(unsigned long)) >> 12;
93304
93305 pr_debug("%s: iommu[%d]: stab at %p, ptab at %p, n_pte_pages: %lu\n",
93306 - __FUNCTION__, iommu->nid, iommu->stab, ptab,
93307 + __func__, iommu->nid, iommu->stab, ptab,
93308 n_pte_pages);
93309
93310 /* initialise the STEs */
93311 @@ -394,7 +394,7 @@ static void cell_iommu_enable_hardware(s
93312
93313 if (cell_iommu_find_ioc(iommu->nid, &xlate_base))
93314 panic("%s: missing IOC register mappings for node %d\n",
93315 - __FUNCTION__, iommu->nid);
93316 + __func__, iommu->nid);
93317
93318 iommu->xlate_regs = ioremap(xlate_base, IOC_Reg_Size);
93319 iommu->cmd_regs = iommu->xlate_regs + IOC_IOCmd_Offset;
93320 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/pervasive.c
93321 ===================================================================
93322 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/pervasive.c
93323 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/pervasive.c
93324 @@ -65,7 +65,7 @@ static void cbe_power_save(void)
93325 break;
93326 default:
93327 printk(KERN_WARNING "%s: unknown configuration\n",
93328 - __FUNCTION__);
93329 + __func__);
93330 break;
93331 }
93332 mtspr(SPRN_TSC_CELL, thread_switch_control);
93333 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/ras.c
93334 ===================================================================
93335 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/ras.c
93336 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/ras.c
93337 @@ -132,7 +132,7 @@ static int __init cbe_ptcal_enable_on_no
93338 (unsigned int)(addr >> 32),
93339 (unsigned int)(addr & 0xffffffff))) {
93340 printk(KERN_ERR "%s: error enabling PTCAL on node %d!\n",
93341 - __FUNCTION__, nid);
93342 + __func__, nid);
93343 goto out_free_pages;
93344 }
93345
93346 @@ -162,7 +162,7 @@ static int __init cbe_ptcal_enable(void)
93347 if (!size)
93348 return -ENODEV;
93349
93350 - pr_debug("%s: enabling PTCAL, size = 0x%x\n", __FUNCTION__, *size);
93351 + pr_debug("%s: enabling PTCAL, size = 0x%x\n", __func__, *size);
93352 order = get_order(*size);
93353 of_node_put(np);
93354
93355 @@ -180,7 +180,7 @@ static int __init cbe_ptcal_enable(void)
93356 const u32 *nid = of_get_property(np, "node-id", NULL);
93357 if (!nid) {
93358 printk(KERN_ERR "%s: node %s is missing node-id?\n",
93359 - __FUNCTION__, np->full_name);
93360 + __func__, np->full_name);
93361 continue;
93362 }
93363 cbe_ptcal_enable_on_node(*nid, order);
93364 @@ -195,13 +195,13 @@ static int cbe_ptcal_disable(void)
93365 struct ptcal_area *area, *tmp;
93366 int ret = 0;
93367
93368 - pr_debug("%s: disabling PTCAL\n", __FUNCTION__);
93369 + pr_debug("%s: disabling PTCAL\n", __func__);
93370
93371 list_for_each_entry_safe(area, tmp, &ptcal_list, list) {
93372 /* disable ptcal on this node */
93373 if (rtas_call(ptcal_stop_tok, 1, 1, NULL, area->nid)) {
93374 printk(KERN_ERR "%s: error disabling PTCAL "
93375 - "on node %d!\n", __FUNCTION__,
93376 + "on node %d!\n", __func__,
93377 area->nid);
93378 ret = -EIO;
93379 continue;
93380 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/spu_base.c
93381 ===================================================================
93382 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/spu_base.c
93383 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/spu_base.c
93384 @@ -165,7 +165,7 @@ static int __spu_trap_data_seg(struct sp
93385 struct spu_slb slb;
93386 int psize;
93387
93388 - pr_debug("%s\n", __FUNCTION__);
93389 + pr_debug("%s\n", __func__);
93390
93391 slb.esid = (ea & ESID_MASK) | SLB_ESID_V;
93392
93393 @@ -215,7 +215,7 @@ static int __spu_trap_data_seg(struct sp
93394 extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX
93395 static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr)
93396 {
93397 - pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);
93398 + pr_debug("%s, %lx, %lx\n", __func__, dsisr, ea);
93399
93400 /* Handle kernel space hash faults immediately.
93401 User hash faults need to be deferred to process context. */
93402 @@ -351,7 +351,7 @@ spu_irq_class_1(int irq, void *data)
93403 __spu_trap_data_seg(spu, dar);
93404
93405 spin_unlock(&spu->register_lock);
93406 - pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,
93407 + pr_debug("%s: %lx %lx %lx %lx\n", __func__, mask, stat,
93408 dar, dsisr);
93409
93410 if (stat & CLASS1_STORAGE_FAULT_INTR)
93411 @@ -726,7 +726,7 @@ static int __init init_spu_base(void)
93412
93413 if (ret < 0) {
93414 printk(KERN_WARNING "%s: Error initializing spus\n",
93415 - __FUNCTION__);
93416 + __func__);
93417 goto out_unregister_sysdev_class;
93418 }
93419
93420 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/spu_callbacks.c
93421 ===================================================================
93422 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/spu_callbacks.c
93423 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/spu_callbacks.c
93424 @@ -54,7 +54,7 @@ long spu_sys_callback(struct spu_syscall
93425 long (*syscall)(u64 a1, u64 a2, u64 a3, u64 a4, u64 a5, u64 a6);
93426
93427 if (s->nr_ret >= ARRAY_SIZE(spu_syscall_table)) {
93428 - pr_debug("%s: invalid syscall #%ld", __FUNCTION__, s->nr_ret);
93429 + pr_debug("%s: invalid syscall #%ld", __func__, s->nr_ret);
93430 return -ENOSYS;
93431 }
93432
93433 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/spu_manage.c
93434 ===================================================================
93435 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/spu_manage.c
93436 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/spu_manage.c
93437 @@ -92,7 +92,7 @@ static int __init spu_map_interrupts_old
93438
93439 tmp = of_get_property(np->parent->parent, "node-id", NULL);
93440 if (!tmp) {
93441 - printk(KERN_WARNING "%s: can't find node-id\n", __FUNCTION__);
93442 + printk(KERN_WARNING "%s: can't find node-id\n", __func__);
93443 nid = spu->node;
93444 } else
93445 nid = tmp[0];
93446 @@ -296,7 +296,7 @@ static int __init of_enumerate_spus(int
93447 ret = fn(node);
93448 if (ret) {
93449 printk(KERN_WARNING "%s: Error initializing %s\n",
93450 - __FUNCTION__, node->name);
93451 + __func__, node->name);
93452 break;
93453 }
93454 n++;
93455 @@ -327,7 +327,7 @@ static int __init of_create_spu(struct s
93456 if (!legacy_map) {
93457 legacy_map = 1;
93458 printk(KERN_WARNING "%s: Legacy device tree found, "
93459 - "trying to map old style\n", __FUNCTION__);
93460 + "trying to map old style\n", __func__);
93461 }
93462 ret = spu_map_device_old(spu);
93463 if (ret) {
93464 @@ -342,7 +342,7 @@ static int __init of_create_spu(struct s
93465 if (!legacy_irq) {
93466 legacy_irq = 1;
93467 printk(KERN_WARNING "%s: Legacy device tree found, "
93468 - "trying old style irq\n", __FUNCTION__);
93469 + "trying old style irq\n", __func__);
93470 }
93471 ret = spu_map_interrupts_old(spu, spe);
93472 if (ret) {
93473 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/spufs/coredump.c
93474 ===================================================================
93475 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/spufs/coredump.c
93476 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/spufs/coredump.c
93477 @@ -133,8 +133,6 @@ static struct spu_context *coredump_next
93478 if (ctx->flags & SPU_CREATE_NOSCHED)
93479 continue;
93480
93481 - /* start searching the next fd next time we're called */
93482 - (*fd)++;
93483 break;
93484 }
93485
93486 @@ -157,6 +155,9 @@ int spufs_coredump_extra_notes_size(void
93487 break;
93488
93489 size += rc;
93490 +
93491 + /* start searching the next fd next time */
93492 + fd++;
93493 }
93494
93495 return size;
93496 @@ -239,6 +240,9 @@ int spufs_coredump_extra_notes_write(str
93497 }
93498
93499 spu_release_saved(ctx);
93500 +
93501 + /* start searching the next fd next time */
93502 + fd++;
93503 }
93504
93505 return 0;
93506 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/spufs/file.c
93507 ===================================================================
93508 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/spufs/file.c
93509 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/spufs/file.c
93510 @@ -1337,7 +1337,7 @@ static u64 spufs_signal1_type_get(struct
93511 return ctx->ops->signal1_type_get(ctx);
93512 }
93513 DEFINE_SPUFS_ATTRIBUTE(spufs_signal1_type, spufs_signal1_type_get,
93514 - spufs_signal1_type_set, "%llu", SPU_ATTR_ACQUIRE);
93515 + spufs_signal1_type_set, "%llu\n", SPU_ATTR_ACQUIRE);
93516
93517
93518 static int spufs_signal2_type_set(void *data, u64 val)
93519 @@ -1359,7 +1359,7 @@ static u64 spufs_signal2_type_get(struct
93520 return ctx->ops->signal2_type_get(ctx);
93521 }
93522 DEFINE_SPUFS_ATTRIBUTE(spufs_signal2_type, spufs_signal2_type_get,
93523 - spufs_signal2_type_set, "%llu", SPU_ATTR_ACQUIRE);
93524 + spufs_signal2_type_set, "%llu\n", SPU_ATTR_ACQUIRE);
93525
93526 #if SPUFS_MMAP_4K
93527 static unsigned long spufs_mss_mmap_nopfn(struct vm_area_struct *vma,
93528 @@ -1556,7 +1556,7 @@ void spufs_mfc_callback(struct spu *spu)
93529
93530 wake_up_all(&ctx->mfc_wq);
93531
93532 - pr_debug("%s %s\n", __FUNCTION__, spu->name);
93533 + pr_debug("%s %s\n", __func__, spu->name);
93534 if (ctx->mfc_fasync) {
93535 u32 free_elements, tagstatus;
93536 unsigned int mask;
93537 @@ -1790,7 +1790,7 @@ static unsigned int spufs_mfc_poll(struc
93538 if (tagstatus & ctx->tagwait)
93539 mask |= POLLIN | POLLRDNORM;
93540
93541 - pr_debug("%s: free %d tagstatus %d tagwait %d\n", __FUNCTION__,
93542 + pr_debug("%s: free %d tagstatus %d tagwait %d\n", __func__,
93543 free_elements, tagstatus, ctx->tagwait);
93544
93545 return mask;
93546 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/spufs/run.c
93547 ===================================================================
93548 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/spufs/run.c
93549 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/spufs/run.c
93550 @@ -98,7 +98,7 @@ static int spu_setup_isolated(struct spu
93551 != MFC_CNTL_PURGE_DMA_COMPLETE) {
93552 if (time_after(jiffies, timeout)) {
93553 printk(KERN_ERR "%s: timeout flushing MFC DMA queue\n",
93554 - __FUNCTION__);
93555 + __func__);
93556 ret = -EIO;
93557 goto out;
93558 }
93559 @@ -124,7 +124,7 @@ static int spu_setup_isolated(struct spu
93560 status_loading) {
93561 if (time_after(jiffies, timeout)) {
93562 printk(KERN_ERR "%s: timeout waiting for loader\n",
93563 - __FUNCTION__);
93564 + __func__);
93565 ret = -EIO;
93566 goto out_drop_priv;
93567 }
93568 @@ -134,7 +134,7 @@ static int spu_setup_isolated(struct spu
93569 if (!(status & SPU_STATUS_RUNNING)) {
93570 /* If isolated LOAD has failed: run SPU, we will get a stop-and
93571 * signal later. */
93572 - pr_debug("%s: isolated LOAD failed\n", __FUNCTION__);
93573 + pr_debug("%s: isolated LOAD failed\n", __func__);
93574 ctx->ops->runcntl_write(ctx, SPU_RUNCNTL_RUNNABLE);
93575 ret = -EACCES;
93576 goto out_drop_priv;
93577 @@ -142,7 +142,7 @@ static int spu_setup_isolated(struct spu
93578
93579 if (!(status & SPU_STATUS_ISOLATED_STATE)) {
93580 /* This isn't allowed by the CBEA, but check anyway */
93581 - pr_debug("%s: SPU fell out of isolated mode?\n", __FUNCTION__);
93582 + pr_debug("%s: SPU fell out of isolated mode?\n", __func__);
93583 ctx->ops->runcntl_write(ctx, SPU_RUNCNTL_STOP);
93584 ret = -EINVAL;
93585 goto out_drop_priv;
93586 @@ -282,7 +282,7 @@ static int spu_handle_restartsys(struct
93587 break;
93588 default:
93589 printk(KERN_WARNING "%s: unexpected return code %ld\n",
93590 - __FUNCTION__, *spu_ret);
93591 + __func__, *spu_ret);
93592 ret = 0;
93593 }
93594 return ret;
93595 @@ -323,6 +323,10 @@ static int spu_process_callback(struct s
93596 return -EINTR;
93597 }
93598
93599 + /* need to re-get the ls, as it may have changed when we released the
93600 + * spu */
93601 + ls = (void __iomem *)ctx->ops->get_ls(ctx);
93602 +
93603 /* write result, jump over indirect pointer */
93604 memcpy_toio(ls + ls_pointer, &spu_ret, sizeof(spu_ret));
93605 ctx->ops->npc_write(ctx, npc);
93606 Index: linux-2.6.25.4/arch/powerpc/platforms/cell/spufs/switch.c
93607 ===================================================================
93608 --- linux-2.6.25.4.orig/arch/powerpc/platforms/cell/spufs/switch.c
93609 +++ linux-2.6.25.4/arch/powerpc/platforms/cell/spufs/switch.c
93610 @@ -1815,6 +1815,7 @@ static void save_csa(struct spu_state *p
93611 save_mfc_csr_ato(prev, spu); /* Step 24. */
93612 save_mfc_tclass_id(prev, spu); /* Step 25. */
93613 set_mfc_tclass_id(prev, spu); /* Step 26. */
93614 + save_mfc_cmd(prev, spu); /* Step 26a - moved from 44. */
93615 purge_mfc_queue(prev, spu); /* Step 27. */
93616 wait_purge_complete(prev, spu); /* Step 28. */
93617 setup_mfc_sr1(prev, spu); /* Step 30. */
93618 @@ -1831,7 +1832,6 @@ static void save_csa(struct spu_state *p
93619 save_ppuint_mb(prev, spu); /* Step 41. */
93620 save_ch_part1(prev, spu); /* Step 42. */
93621 save_spu_mb(prev, spu); /* Step 43. */
93622 - save_mfc_cmd(prev, spu); /* Step 44. */
93623 reset_ch(prev, spu); /* Step 45. */
93624 }
93625
93626 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/beat.c
93627 ===================================================================
93628 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/beat.c
93629 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/beat.c
93630 @@ -48,6 +48,7 @@ void beat_power_off(void)
93631 }
93632
93633 u64 beat_halt_code = 0x1000000000000000UL;
93634 +EXPORT_SYMBOL(beat_halt_code);
93635
93636 void beat_halt(void)
93637 {
93638 @@ -94,9 +95,8 @@ ssize_t beat_nvram_read(char *buf, size_
93639 len = count;
93640 if (len > BEAT_NVRW_CNT)
93641 len = BEAT_NVRW_CNT;
93642 - if (beat_eeprom_read(i, len, p)) {
93643 + if (beat_eeprom_read(i, len, p))
93644 return -EIO;
93645 - }
93646
93647 p += len;
93648 i += len;
93649 @@ -121,9 +121,8 @@ ssize_t beat_nvram_write(char *buf, size
93650 len = count;
93651 if (len > BEAT_NVRW_CNT)
93652 len = BEAT_NVRW_CNT;
93653 - if (beat_eeprom_write(i, len, p)) {
93654 + if (beat_eeprom_write(i, len, p))
93655 return -EIO;
93656 - }
93657
93658 p += len;
93659 i += len;
93660 @@ -149,13 +148,14 @@ int64_t beat_get_term_char(u64 vterm, u6
93661 u64 db[2];
93662 s64 ret;
93663
93664 - ret = beat_get_characters_from_console(vterm, len, (u8*)db);
93665 + ret = beat_get_characters_from_console(vterm, len, (u8 *)db);
93666 if (ret == 0) {
93667 *t1 = db[0];
93668 *t2 = db[1];
93669 }
93670 return ret;
93671 }
93672 +EXPORT_SYMBOL(beat_get_term_char);
93673
93674 int64_t beat_put_term_char(u64 vterm, u64 len, u64 t1, u64 t2)
93675 {
93676 @@ -163,8 +163,9 @@ int64_t beat_put_term_char(u64 vterm, u6
93677
93678 db[0] = t1;
93679 db[1] = t2;
93680 - return beat_put_characters_to_console(vterm, len, (u8*)db);
93681 + return beat_put_characters_to_console(vterm, len, (u8 *)db);
93682 }
93683 +EXPORT_SYMBOL(beat_put_term_char);
93684
93685 void beat_power_save(void)
93686 {
93687 @@ -261,7 +262,3 @@ static int __init beat_event_init(void)
93688 }
93689
93690 device_initcall(beat_event_init);
93691 -
93692 -EXPORT_SYMBOL(beat_get_term_char);
93693 -EXPORT_SYMBOL(beat_put_term_char);
93694 -EXPORT_SYMBOL(beat_halt_code);
93695 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/beat.h
93696 ===================================================================
93697 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/beat.h
93698 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/beat.h
93699 @@ -21,8 +21,8 @@
93700 #ifndef _CELLEB_BEAT_H
93701 #define _CELLEB_BEAT_H
93702
93703 -int64_t beat_get_term_char(uint64_t,uint64_t*,uint64_t*,uint64_t*);
93704 -int64_t beat_put_term_char(uint64_t,uint64_t,uint64_t,uint64_t);
93705 +int64_t beat_get_term_char(uint64_t, uint64_t *, uint64_t *, uint64_t *);
93706 +int64_t beat_put_term_char(uint64_t, uint64_t, uint64_t, uint64_t);
93707 int64_t beat_repository_encode(int, const char *, uint64_t[4]);
93708 void beat_restart(char *);
93709 void beat_power_off(void);
93710 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/beat_wrapper.h
93711 ===================================================================
93712 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/beat_wrapper.h
93713 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/beat_wrapper.h
93714 @@ -197,7 +197,8 @@ static inline s64 beat_put_characters_to
93715 u64 b[2];
93716
93717 memcpy(b, buffer, len);
93718 - return beat_hcall_norets(HV_put_characters_to_console, termno, len, b[0], b[1]);
93719 + return beat_hcall_norets(HV_put_characters_to_console, termno, len,
93720 + b[0], b[1]);
93721 }
93722
93723 static inline s64 beat_get_spe_privileged_state_1_registers(
93724 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/htab.c
93725 ===================================================================
93726 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/htab.c
93727 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/htab.c
93728 @@ -35,9 +35,9 @@
93729 #include "beat_wrapper.h"
93730
93731 #ifdef DEBUG_LOW
93732 -#define DBG_LOW(fmt...) do { udbg_printf(fmt); } while(0)
93733 +#define DBG_LOW(fmt...) do { udbg_printf(fmt); } while (0)
93734 #else
93735 -#define DBG_LOW(fmt...) do { } while(0)
93736 +#define DBG_LOW(fmt...) do { } while (0)
93737 #endif
93738
93739 static DEFINE_SPINLOCK(beat_htab_lock);
93740 @@ -116,7 +116,8 @@ static long beat_lpar_hpte_insert(unsign
93741 hpte_r &= ~_PAGE_COHERENT;
93742
93743 spin_lock(&beat_htab_lock);
93744 - if ((lpar_rc = beat_read_mask(hpte_group)) == 0) {
93745 + lpar_rc = beat_read_mask(hpte_group);
93746 + if (lpar_rc == 0) {
93747 if (!(vflags & HPTE_V_BOLTED))
93748 DBG_LOW(" full\n");
93749 spin_unlock(&beat_htab_lock);
93750 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/interrupt.c
93751 ===================================================================
93752 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/interrupt.c
93753 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/interrupt.c
93754 @@ -34,7 +34,7 @@ static DEFINE_SPINLOCK(beatic_irq_mask_l
93755 static uint64_t beatic_irq_mask_enable[(MAX_IRQS+255)/64];
93756 static uint64_t beatic_irq_mask_ack[(MAX_IRQS+255)/64];
93757
93758 -static struct irq_host *beatic_host = NULL;
93759 +static struct irq_host *beatic_host;
93760
93761 /*
93762 * In this implementation, "virq" == "IRQ plug number",
93763 @@ -49,13 +49,13 @@ static inline void beatic_update_irq_mas
93764
93765 off = (irq_plug / 256) * 4;
93766 masks[0] = beatic_irq_mask_enable[off + 0]
93767 - & beatic_irq_mask_ack[off + 0];
93768 + & beatic_irq_mask_ack[off + 0];
93769 masks[1] = beatic_irq_mask_enable[off + 1]
93770 - & beatic_irq_mask_ack[off + 1];
93771 + & beatic_irq_mask_ack[off + 1];
93772 masks[2] = beatic_irq_mask_enable[off + 2]
93773 - & beatic_irq_mask_ack[off + 2];
93774 + & beatic_irq_mask_ack[off + 2];
93775 masks[3] = beatic_irq_mask_enable[off + 3]
93776 - & beatic_irq_mask_ack[off + 3];
93777 + & beatic_irq_mask_ack[off + 3];
93778 if (beat_set_interrupt_mask(irq_plug&~255UL,
93779 masks[0], masks[1], masks[2], masks[3]) != 0)
93780 panic("Failed to set mask IRQ!");
93781 @@ -96,7 +96,8 @@ static void beatic_end_irq(unsigned int
93782 s64 err;
93783 unsigned long flags;
93784
93785 - if ((err = beat_downcount_of_interrupt(irq_plug)) != 0) {
93786 + err = beat_downcount_of_interrupt(irq_plug);
93787 + if (err != 0) {
93788 if ((err & 0xFFFFFFFF) != 0xFFFFFFF5) /* -11: wrong state */
93789 panic("Failed to downcount IRQ! Error = %16lx", err);
93790
93791 @@ -138,7 +139,8 @@ static int beatic_pic_host_map(struct ir
93792 struct irq_desc *desc = get_irq_desc(virq);
93793 int64_t err;
93794
93795 - if ((err = beat_construct_and_connect_irq_plug(virq, hw)) < 0)
93796 + err = beat_construct_and_connect_irq_plug(virq, hw);
93797 + if (err < 0)
93798 return -EIO;
93799
93800 desc->status |= IRQ_LEVEL;
93801 @@ -202,22 +204,22 @@ static inline unsigned int beatic_get_ir
93802 beat_detect_pending_interrupts(i, pending);
93803 __asm__ ("cntlzd %0,%1":"=r"(ub):
93804 "r"(pending[0] & beatic_irq_mask_enable[i/64+0]
93805 - & beatic_irq_mask_ack[i/64+0]));
93806 + & beatic_irq_mask_ack[i/64+0]));
93807 if (ub != 64)
93808 return i + ub + 0;
93809 __asm__ ("cntlzd %0,%1":"=r"(ub):
93810 "r"(pending[1] & beatic_irq_mask_enable[i/64+1]
93811 - & beatic_irq_mask_ack[i/64+1]));
93812 + & beatic_irq_mask_ack[i/64+1]));
93813 if (ub != 64)
93814 return i + ub + 64;
93815 __asm__ ("cntlzd %0,%1":"=r"(ub):
93816 "r"(pending[2] & beatic_irq_mask_enable[i/64+2]
93817 - & beatic_irq_mask_ack[i/64+2]));
93818 + & beatic_irq_mask_ack[i/64+2]));
93819 if (ub != 64)
93820 return i + ub + 128;
93821 __asm__ ("cntlzd %0,%1":"=r"(ub):
93822 "r"(pending[3] & beatic_irq_mask_enable[i/64+3]
93823 - & beatic_irq_mask_ack[i/64+3]));
93824 + & beatic_irq_mask_ack[i/64+3]));
93825 if (ub != 64)
93826 return i + ub + 192;
93827 }
93828 @@ -250,7 +252,7 @@ void __init beatic_init_IRQ(void)
93829
93830 /* Allocate an irq host */
93831 beatic_host = irq_alloc_host(NULL, IRQ_HOST_MAP_NOMAP, 0,
93832 - &beatic_pic_host_ops,
93833 + &beatic_pic_host_ops,
93834 0);
93835 BUG_ON(beatic_host == NULL);
93836 irq_set_default_host(beatic_host);
93837 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/scc_epci.c
93838 ===================================================================
93839 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/scc_epci.c
93840 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/scc_epci.c
93841 @@ -161,9 +161,9 @@ static PCI_IO_ADDR celleb_epci_make_conf
93842 if (bus != hose->bus)
93843 addr = celleb_epci_get_epci_cfg(hose) +
93844 (((bus->number & 0xff) << 16)
93845 - | ((devfn & 0xff) << 8)
93846 - | (where & 0xff)
93847 - | 0x01000000);
93848 + | ((devfn & 0xff) << 8)
93849 + | (where & 0xff)
93850 + | 0x01000000);
93851 else
93852 addr = celleb_epci_get_epci_cfg(hose) +
93853 (((devfn & 0xff) << 8) | (where & 0xff));
93854 @@ -174,7 +174,7 @@ static PCI_IO_ADDR celleb_epci_make_conf
93855 }
93856
93857 static int celleb_epci_read_config(struct pci_bus *bus,
93858 - unsigned int devfn, int where, int size, u32 * val)
93859 + unsigned int devfn, int where, int size, u32 *val)
93860 {
93861 PCI_IO_ADDR epci_base;
93862 PCI_IO_ADDR addr;
93863 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/scc_sio.c
93864 ===================================================================
93865 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/scc_sio.c
93866 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/scc_sio.c
93867 @@ -28,7 +28,7 @@
93868
93869 /* sio irq0=0xb00010022 irq0=0xb00010023 irq2=0xb00010024
93870 mmio=0xfff000-0x1000,0xff2000-0x1000 */
93871 -static int txx9_serial_bitmap __initdata = 0;
93872 +static int txx9_serial_bitmap __initdata;
93873
93874 static struct {
93875 uint32_t offset;
93876 @@ -84,7 +84,7 @@ static int __init txx9_serial_config(cha
93877 int i;
93878
93879 for (;;) {
93880 - switch(get_option(&ptr, &i)) {
93881 + switch (get_option(&ptr, &i)) {
93882 default:
93883 return 0;
93884 case 2:
93885 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/spu_priv1.c
93886 ===================================================================
93887 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/spu_priv1.c
93888 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/spu_priv1.c
93889 @@ -183,8 +183,7 @@ static u64 resource_allocation_enable_ge
93890 return enable;
93891 }
93892
93893 -const struct spu_priv1_ops spu_priv1_beat_ops =
93894 -{
93895 +const struct spu_priv1_ops spu_priv1_beat_ops = {
93896 .int_mask_and = int_mask_and,
93897 .int_mask_or = int_mask_or,
93898 .int_mask_set = int_mask_set,
93899 Index: linux-2.6.25.4/arch/powerpc/platforms/celleb/udbg_beat.c
93900 ===================================================================
93901 --- linux-2.6.25.4.orig/arch/powerpc/platforms/celleb/udbg_beat.c
93902 +++ linux-2.6.25.4/arch/powerpc/platforms/celleb/udbg_beat.c
93903 @@ -54,7 +54,8 @@ static int udbg_getc_poll_beat(void)
93904 if (inbuflen == 0) {
93905 /* get some more chars. */
93906 inbuflen = 0;
93907 - rc = beat_get_term_char(celleb_vtermno, &inbuflen, inbuf+0, inbuf+1);
93908 + rc = beat_get_term_char(celleb_vtermno, &inbuflen,
93909 + inbuf+0, inbuf+1);
93910 if (rc != 0)
93911 inbuflen = 0; /* otherwise inbuflen is garbage */
93912 }
93913 @@ -78,7 +79,7 @@ static int udbg_getc_beat(void)
93914 if (ch == -1) {
93915 /* This shouldn't be needed...but... */
93916 volatile unsigned long delay;
93917 - for (delay=0; delay < 2000000; delay++)
93918 + for (delay = 0; delay < 2000000; delay++)
93919 ;
93920 } else {
93921 return ch;
93922 Index: linux-2.6.25.4/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c
93923 ===================================================================
93924 --- linux-2.6.25.4.orig/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c
93925 +++ linux-2.6.25.4/arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c
93926 @@ -117,11 +117,11 @@ static void __init mpc7448_hpc2_init_IRQ
93927 }
93928
93929 if (mpic_paddr == 0) {
93930 - printk("%s: No tsi108 PIC found !\n", __FUNCTION__);
93931 + printk("%s: No tsi108 PIC found !\n", __func__);
93932 return;
93933 }
93934
93935 - DBG("%s: tsi108 pic phys_addr = 0x%x\n", __FUNCTION__,
93936 + DBG("%s: tsi108 pic phys_addr = 0x%x\n", __func__,
93937 (u32) mpic_paddr);
93938
93939 mpic = mpic_alloc(tsi_pic, mpic_paddr,
93940 @@ -140,17 +140,17 @@ static void __init mpc7448_hpc2_init_IRQ
93941 #ifdef CONFIG_PCI
93942 tsi_pci = of_find_node_by_type(NULL, "pci");
93943 if (tsi_pci == NULL) {
93944 - printk("%s: No tsi108 pci node found !\n", __FUNCTION__);
93945 + printk("%s: No tsi108 pci node found !\n", __func__);
93946 return;
93947 }
93948 cascade_node = of_find_node_by_type(NULL, "pic-router");
93949 if (cascade_node == NULL) {
93950 - printk("%s: No tsi108 pci cascade node found !\n", __FUNCTION__);
93951 + printk("%s: No tsi108 pci cascade node found !\n", __func__);
93952 return;
93953 }
93954
93955 cascade_pci_irq = irq_of_parse_and_map(tsi_pci, 0);
93956 - DBG("%s: tsi108 cascade_pci_irq = 0x%x\n", __FUNCTION__,
93957 + DBG("%s: tsi108 cascade_pci_irq = 0x%x\n", __func__,
93958 (u32) cascade_pci_irq);
93959 tsi108_pci_int_init(cascade_node);
93960 set_irq_data(cascade_pci_irq, mpic);
93961 Index: linux-2.6.25.4/arch/powerpc/platforms/embedded6xx/prpmc2800.c
93962 ===================================================================
93963 --- linux-2.6.25.4.orig/arch/powerpc/platforms/embedded6xx/prpmc2800.c
93964 +++ linux-2.6.25.4/arch/powerpc/platforms/embedded6xx/prpmc2800.c
93965 @@ -49,13 +49,13 @@ static void __init prpmc2800_setup_arch(
93966 * ioremap mpp and gpp registers in case they are later
93967 * needed by prpmc2800_reset_board().
93968 */
93969 - np = of_find_compatible_node(NULL, NULL, "marvell,mv64x60-mpp");
93970 + np = of_find_compatible_node(NULL, NULL, "marvell,mv64360-mpp");
93971 reg = of_get_property(np, "reg", NULL);
93972 paddr = of_translate_address(np, reg);
93973 of_node_put(np);
93974 mv64x60_mpp_reg_base = ioremap(paddr, reg[1]);
93975
93976 - np = of_find_compatible_node(NULL, NULL, "marvell,mv64x60-gpp");
93977 + np = of_find_compatible_node(NULL, NULL, "marvell,mv64360-gpp");
93978 reg = of_get_property(np, "reg", NULL);
93979 paddr = of_translate_address(np, reg);
93980 of_node_put(np);
93981 Index: linux-2.6.25.4/arch/powerpc/platforms/iseries/exception.S
93982 ===================================================================
93983 --- linux-2.6.25.4.orig/arch/powerpc/platforms/iseries/exception.S
93984 +++ linux-2.6.25.4/arch/powerpc/platforms/iseries/exception.S
93985 @@ -38,11 +38,19 @@
93986
93987 .globl system_reset_iSeries
93988 system_reset_iSeries:
93989 - mfspr r13,SPRN_SPRG3 /* Get paca address */
93990 + mfspr r13,SPRN_SPRG3 /* Get alpaca address */
93991 + LOAD_REG_IMMEDIATE(r23, alpaca)
93992 + li r0,ALPACA_SIZE
93993 + sub r23,r13,r23
93994 + divdu r23,r23,r0 /* r23 has cpu number */
93995 + LOAD_REG_IMMEDIATE(r13, paca)
93996 + mulli r0,r23,PACA_SIZE
93997 + add r13,r13,r0
93998 + mtspr SPRN_SPRG3,r13 /* Save it away for the future */
93999 mfmsr r24
94000 ori r24,r24,MSR_RI
94001 mtmsrd r24 /* RI on */
94002 - lhz r24,PACAPACAINDEX(r13) /* Get processor # */
94003 + mr r24,r23
94004 cmpwi 0,r24,0 /* Are we processor 0? */
94005 bne 1f
94006 b .__start_initialization_iSeries /* Start up the first processor */
94007 Index: linux-2.6.25.4/arch/powerpc/platforms/iseries/ipl_parms.h
94008 ===================================================================
94009 --- linux-2.6.25.4.orig/arch/powerpc/platforms/iseries/ipl_parms.h
94010 +++ linux-2.6.25.4/arch/powerpc/platforms/iseries/ipl_parms.h
94011 @@ -65,6 +65,4 @@ struct ItIplParmsReal {
94012 u64 xRsvd13; // Reserved x38-x3F
94013 };
94014
94015 -extern struct ItIplParmsReal xItIplParmsReal;
94016 -
94017 #endif /* _ISERIES_IPL_PARMS_H */
94018 Index: linux-2.6.25.4/arch/powerpc/platforms/iseries/lpardata.c
94019 ===================================================================
94020 --- linux-2.6.25.4.orig/arch/powerpc/platforms/iseries/lpardata.c
94021 +++ linux-2.6.25.4/arch/powerpc/platforms/iseries/lpardata.c
94022 @@ -14,10 +14,10 @@
94023 #include <asm/ptrace.h>
94024 #include <asm/abs_addr.h>
94025 #include <asm/lppaca.h>
94026 -#include <asm/iseries/it_lp_reg_save.h>
94027 #include <asm/paca.h>
94028 #include <asm/iseries/lpar_map.h>
94029 #include <asm/iseries/it_lp_queue.h>
94030 +#include <asm/iseries/alpaca.h>
94031
94032 #include "naca.h"
94033 #include "vpd_areas.h"
94034 @@ -31,7 +31,7 @@
94035 /* The HvReleaseData is the root of the information shared between
94036 * the hypervisor and Linux.
94037 */
94038 -struct HvReleaseData hvReleaseData = {
94039 +const struct HvReleaseData hvReleaseData = {
94040 .xDesc = 0xc8a5d9c4, /* "HvRD" ebcdic */
94041 .xSize = sizeof(struct HvReleaseData),
94042 .xVpdAreasPtrOffset = offsetof(struct naca_struct, xItVpdAreas),
94043 @@ -61,6 +61,63 @@ struct naca_struct naca = {
94044 .xRamDiskSize = 0,
94045 };
94046
94047 +struct ItLpRegSave {
94048 + u32 xDesc; // Eye catcher "LpRS" ebcdic 000-003
94049 + u16 xSize; // Size of this class 004-005
94050 + u8 xInUse; // Area is live 006-007
94051 + u8 xRsvd1[9]; // Reserved 007-00F
94052 +
94053 + u8 xFixedRegSave[352]; // Fixed Register Save Area 010-16F
94054 + u32 xCTRL; // Control Register 170-173
94055 + u32 xDEC; // Decrementer 174-177
94056 + u32 xFPSCR; // FP Status and Control Reg 178-17B
94057 + u32 xPVR; // Processor Version Number 17C-17F
94058 +
94059 + u64 xMMCR0; // Monitor Mode Control Reg 0 180-187
94060 + u32 xPMC1; // Perf Monitor Counter 1 188-18B
94061 + u32 xPMC2; // Perf Monitor Counter 2 18C-18F
94062 + u32 xPMC3; // Perf Monitor Counter 3 190-193
94063 + u32 xPMC4; // Perf Monitor Counter 4 194-197
94064 + u32 xPIR; // Processor ID Reg 198-19B
94065 +
94066 + u32 xMMCR1; // Monitor Mode Control Reg 1 19C-19F
94067 + u32 xMMCRA; // Monitor Mode Control Reg A 1A0-1A3
94068 + u32 xPMC5; // Perf Monitor Counter 5 1A4-1A7
94069 + u32 xPMC6; // Perf Monitor Counter 6 1A8-1AB
94070 + u32 xPMC7; // Perf Monitor Counter 7 1AC-1AF
94071 + u32 xPMC8; // Perf Monitor Counter 8 1B0-1B3
94072 + u32 xTSC; // Thread Switch Control 1B4-1B7
94073 + u32 xTST; // Thread Switch Timeout 1B8-1BB
94074 + u32 xRsvd; // Reserved 1BC-1BF
94075 +
94076 + u64 xACCR; // Address Compare Control Reg 1C0-1C7
94077 + u64 xIMR; // Instruction Match Register 1C8-1CF
94078 + u64 xSDR1; // Storage Description Reg 1 1D0-1D7
94079 + u64 xSPRG0; // Special Purpose Reg General0 1D8-1DF
94080 + u64 xSPRG1; // Special Purpose Reg General1 1E0-1E7
94081 + u64 xSPRG2; // Special Purpose Reg General2 1E8-1EF
94082 + u64 xSPRG3; // Special Purpose Reg General3 1F0-1F7
94083 + u64 xTB; // Time Base Register 1F8-1FF
94084 +
94085 + u64 xFPR[32]; // Floating Point Registers 200-2FF
94086 +
94087 + u64 xMSR; // Machine State Register 300-307
94088 + u64 xNIA; // Next Instruction Address 308-30F
94089 +
94090 + u64 xDABR; // Data Address Breakpoint Reg 310-317
94091 + u64 xIABR; // Inst Address Breakpoint Reg 318-31F
94092 +
94093 + u64 xHID0; // HW Implementation Dependent0 320-327
94094 +
94095 + u64 xHID4; // HW Implementation Dependent4 328-32F
94096 + u64 xSCOMd; // SCON Data Reg (SPRG4) 330-337
94097 + u64 xSCOMc; // SCON Command Reg (SPRG5) 338-33F
94098 + u64 xSDAR; // Sample Data Address Register 340-347
94099 + u64 xSIAR; // Sample Inst Address Register 348-34F
94100 +
94101 + u8 xRsvd3[176]; // Reserved 350-3FF
94102 +};
94103 +
94104 extern void system_reset_iSeries(void);
94105 extern void machine_check_iSeries(void);
94106 extern void data_access_iSeries(void);
94107 @@ -129,7 +186,7 @@ struct ItLpNaca itLpNaca = {
94108 };
94109
94110 /* May be filled in by the hypervisor so cannot end up in the BSS */
94111 -struct ItIplParmsReal xItIplParmsReal __attribute__((__section__(".data")));
94112 +static struct ItIplParmsReal xItIplParmsReal __attribute__((__section__(".data")));
94113
94114 /* May be filled in by the hypervisor so cannot end up in the BSS */
94115 struct ItExtVpdPanel xItExtVpdPanel __attribute__((__section__(".data")));
94116 @@ -152,13 +209,54 @@ u64 xMsVpd[3400] __attribute__((__sec
94117
94118 /* Space for Recovery Log Buffer */
94119 /* May be filled in by the hypervisor so cannot end up in the BSS */
94120 -u64 xRecoveryLogBuffer[32] __attribute__((__section__(".data")));
94121 +static u64 xRecoveryLogBuffer[32] __attribute__((__section__(".data")));
94122
94123 -struct SpCommArea xSpCommArea = {
94124 +static const struct SpCommArea xSpCommArea = {
94125 .xDesc = 0xE2D7C3C2,
94126 .xFormat = 1,
94127 };
94128
94129 +static const struct ItLpRegSave iseries_reg_save[] = {
94130 + [0 ... (NR_CPUS-1)] = {
94131 + .xDesc = 0xd397d9e2, /* "LpRS" */
94132 + .xSize = sizeof(struct ItLpRegSave),
94133 + },
94134 +};
94135 +
94136 +#define ALPACA_INIT(number) \
94137 +{ \
94138 + .lppaca_ptr = &lppaca[number], \
94139 + .reg_save_ptr = &iseries_reg_save[number], \
94140 +}
94141 +
94142 +const struct alpaca alpaca[] = {
94143 + ALPACA_INIT( 0),
94144 +#if NR_CPUS > 1
94145 + ALPACA_INIT( 1), ALPACA_INIT( 2), ALPACA_INIT( 3),
94146 +#if NR_CPUS > 4
94147 + ALPACA_INIT( 4), ALPACA_INIT( 5), ALPACA_INIT( 6), ALPACA_INIT( 7),
94148 +#if NR_CPUS > 8
94149 + ALPACA_INIT( 8), ALPACA_INIT( 9), ALPACA_INIT(10), ALPACA_INIT(11),
94150 + ALPACA_INIT(12), ALPACA_INIT(13), ALPACA_INIT(14), ALPACA_INIT(15),
94151 + ALPACA_INIT(16), ALPACA_INIT(17), ALPACA_INIT(18), ALPACA_INIT(19),
94152 + ALPACA_INIT(20), ALPACA_INIT(21), ALPACA_INIT(22), ALPACA_INIT(23),
94153 + ALPACA_INIT(24), ALPACA_INIT(25), ALPACA_INIT(26), ALPACA_INIT(27),
94154 + ALPACA_INIT(28), ALPACA_INIT(29), ALPACA_INIT(30), ALPACA_INIT(31),
94155 +#if NR_CPUS > 32
94156 + ALPACA_INIT(32), ALPACA_INIT(33), ALPACA_INIT(34), ALPACA_INIT(35),
94157 + ALPACA_INIT(36), ALPACA_INIT(37), ALPACA_INIT(38), ALPACA_INIT(39),
94158 + ALPACA_INIT(40), ALPACA_INIT(41), ALPACA_INIT(42), ALPACA_INIT(43),
94159 + ALPACA_INIT(44), ALPACA_INIT(45), ALPACA_INIT(46), ALPACA_INIT(47),
94160 + ALPACA_INIT(48), ALPACA_INIT(49), ALPACA_INIT(50), ALPACA_INIT(51),
94161 + ALPACA_INIT(52), ALPACA_INIT(53), ALPACA_INIT(54), ALPACA_INIT(55),
94162 + ALPACA_INIT(56), ALPACA_INIT(57), ALPACA_INIT(58), ALPACA_INIT(59),
94163 + ALPACA_INIT(60), ALPACA_INIT(61), ALPACA_INIT(62), ALPACA_INIT(63),
94164 +#endif
94165 +#endif
94166 +#endif
94167 +#endif
94168 +};
94169 +
94170 /* The LparMap data is now located at offset 0x6000 in head.S
94171 * It was put there so that the HvReleaseData could address it
94172 * with a 32-bit offset as required by the iSeries hypervisor
94173 @@ -167,7 +265,7 @@ struct SpCommArea xSpCommArea = {
94174 * the Naca via the HvReleaseData area. The HvReleaseData has the
94175 * offset into the Naca of the pointer to the ItVpdAreas.
94176 */
94177 -struct ItVpdAreas itVpdAreas = {
94178 +const struct ItVpdAreas itVpdAreas = {
94179 .xSlicDesc = 0xc9a3e5c1, /* "ItVA" */
94180 .xSlicSize = sizeof(struct ItVpdAreas),
94181 .xSlicVpdEntries = ItVpdMaxEntries, /* # VPD array entries */
94182 @@ -185,7 +283,7 @@ struct ItVpdAreas itVpdAreas = {
94183 .xSlicVpdLens = { /* VPD lengths */
94184 0,0,0, /* 0 - 2 */
94185 sizeof(xItExtVpdPanel), /* 3 Extended VPD */
94186 - sizeof(struct paca_struct), /* 4 length of Paca */
94187 + sizeof(struct alpaca), /* 4 length of (fake) Paca */
94188 0, /* 5 */
94189 sizeof(struct ItIplParmsReal),/* 6 length of IPL parms */
94190 26992, /* 7 length of MS VPD */
94191 @@ -203,7 +301,7 @@ struct ItVpdAreas itVpdAreas = {
94192 .xSlicVpdAdrs = { /* VPD addresses */
94193 0,0,0, /* 0 - 2 */
94194 &xItExtVpdPanel, /* 3 Extended VPD */
94195 - &paca[0], /* 4 first Paca */
94196 + &alpaca[0], /* 4 first (fake) Paca */
94197 0, /* 5 */
94198 &xItIplParmsReal, /* 6 IPL parms */
94199 &xMsVpd, /* 7 MS Vpd */
94200 @@ -219,10 +317,3 @@ struct ItVpdAreas itVpdAreas = {
94201 0,0
94202 }
94203 };
94204 -
94205 -struct ItLpRegSave iseries_reg_save[] = {
94206 - [0 ... (NR_CPUS-1)] = {
94207 - .xDesc = 0xd397d9e2, /* "LpRS" */
94208 - .xSize = sizeof(struct ItLpRegSave),
94209 - },
94210 -};
94211 Index: linux-2.6.25.4/arch/powerpc/platforms/iseries/naca.h
94212 ===================================================================
94213 --- linux-2.6.25.4.orig/arch/powerpc/platforms/iseries/naca.h
94214 +++ linux-2.6.25.4/arch/powerpc/platforms/iseries/naca.h
94215 @@ -14,7 +14,7 @@
94216
94217 struct naca_struct {
94218 /* Kernel only data - undefined for user space */
94219 - void *xItVpdAreas; /* VPD Data 0x00 */
94220 + const void *xItVpdAreas; /* VPD Data 0x00 */
94221 void *xRamDisk; /* iSeries ramdisk 0x08 */
94222 u64 xRamDiskSize; /* In pages 0x10 */
94223 };
94224 Index: linux-2.6.25.4/arch/powerpc/platforms/iseries/pci.c
94225 ===================================================================
94226 --- linux-2.6.25.4.orig/arch/powerpc/platforms/iseries/pci.c
94227 +++ linux-2.6.25.4/arch/powerpc/platforms/iseries/pci.c
94228 @@ -23,6 +23,7 @@
94229
94230 #undef DEBUG
94231
94232 +#include <linux/jiffies.h>
94233 #include <linux/kernel.h>
94234 #include <linux/list.h>
94235 #include <linux/string.h>
94236 @@ -586,7 +587,7 @@ static inline struct device_node *xlate_
94237 static unsigned long last_jiffies;
94238 static int num_printed;
94239
94240 - if ((jiffies - last_jiffies) > 60 * HZ) {
94241 + if (time_after(jiffies, last_jiffies + 60 * HZ)) {
94242 last_jiffies = jiffies;
94243 num_printed = 0;
94244 }
94245 Index: linux-2.6.25.4/arch/powerpc/platforms/iseries/release_data.h
94246 ===================================================================
94247 --- linux-2.6.25.4.orig/arch/powerpc/platforms/iseries/release_data.h
94248 +++ linux-2.6.25.4/arch/powerpc/platforms/iseries/release_data.h
94249 @@ -58,6 +58,6 @@ struct HvReleaseData {
94250 char xRsvd3[20]; /* Reserved x2C-x3F */
94251 };
94252
94253 -extern struct HvReleaseData hvReleaseData;
94254 +extern const struct HvReleaseData hvReleaseData;
94255
94256 #endif /* _ISERIES_RELEASE_DATA_H */
94257 Index: linux-2.6.25.4/arch/powerpc/platforms/iseries/spcomm_area.h
94258 ===================================================================
94259 --- linux-2.6.25.4.orig/arch/powerpc/platforms/iseries/spcomm_area.h
94260 +++ linux-2.6.25.4/arch/powerpc/platforms/iseries/spcomm_area.h
94261 @@ -31,6 +31,4 @@ struct SpCommArea {
94262 u8 xRsvd2[80]; // Reserved 030-07F
94263 };
94264
94265 -extern struct SpCommArea xSpCommArea;
94266 -
94267 #endif /* _ISERIES_SPCOMM_AREA_H */
94268 Index: linux-2.6.25.4/arch/powerpc/platforms/iseries/vpd_areas.h
94269 ===================================================================
94270 --- linux-2.6.25.4.orig/arch/powerpc/platforms/iseries/vpd_areas.h
94271 +++ linux-2.6.25.4/arch/powerpc/platforms/iseries/vpd_areas.h
94272 @@ -80,9 +80,9 @@ struct ItVpdAreas {
94273 u32 xPlicDmaLens[ItDmaMaxEntries];// Array of DMA lengths 080-0A7
94274 u32 xPlicDmaToks[ItDmaMaxEntries];// Array of DMA tokens 0A8-0CF
94275 u32 xSlicVpdLens[ItVpdMaxEntries];// Array of VPD lengths 0D0-12F
94276 - void *xSlicVpdAdrs[ItVpdMaxEntries];// Array of VPD buffers 130-1EF
94277 + const void *xSlicVpdAdrs[ItVpdMaxEntries];// Array of VPD buffers 130-1EF
94278 };
94279
94280 -extern struct ItVpdAreas itVpdAreas;
94281 +extern const struct ItVpdAreas itVpdAreas;
94282
94283 #endif /* _ISERIES_VPD_AREAS_H */
94284 Index: linux-2.6.25.4/arch/powerpc/platforms/maple/pci.c
94285 ===================================================================
94286 --- linux-2.6.25.4.orig/arch/powerpc/platforms/maple/pci.c
94287 +++ linux-2.6.25.4/arch/powerpc/platforms/maple/pci.c
94288 @@ -592,50 +592,3 @@ int maple_pci_get_legacy_ide_irq(struct
94289 }
94290 return irq;
94291 }
94292 -
94293 -/* XXX: To remove once all firmwares are ok */
94294 -static void fixup_maple_ide(struct pci_dev* dev)
94295 -{
94296 - if (!machine_is(maple))
94297 - return;
94298 -
94299 -#if 0 /* Enable this to enable IDE port 0 */
94300 - {
94301 - u8 v;
94302 -
94303 - pci_read_config_byte(dev, 0x40, &v);
94304 - v |= 2;
94305 - pci_write_config_byte(dev, 0x40, v);
94306 - }
94307 -#endif
94308 -#if 0 /* fix bus master base */
94309 - pci_write_config_dword(dev, 0x20, 0xcc01);
94310 - printk("old ide resource: %lx -> %lx \n",
94311 - dev->resource[4].start, dev->resource[4].end);
94312 - dev->resource[4].start = 0xcc00;
94313 - dev->resource[4].end = 0xcc10;
94314 -#endif
94315 -#if 0 /* Enable this to fixup IDE sense/polarity of irqs in IO-APICs */
94316 - {
94317 - struct pci_dev *apicdev;
94318 - u32 v;
94319 -
94320 - apicdev = pci_get_slot (dev->bus, PCI_DEVFN(5,0));
94321 - if (apicdev == NULL)
94322 - printk("IDE Fixup IRQ: Can't find IO-APIC !\n");
94323 - else {
94324 - pci_write_config_byte(apicdev, 0xf2, 0x10 + 2*14);
94325 - pci_read_config_dword(apicdev, 0xf4, &v);
94326 - v &= ~0x00000022;
94327 - pci_write_config_dword(apicdev, 0xf4, v);
94328 - pci_write_config_byte(apicdev, 0xf2, 0x10 + 2*15);
94329 - pci_read_config_dword(apicdev, 0xf4, &v);
94330 - v &= ~0x00000022;
94331 - pci_write_config_dword(apicdev, 0xf4, v);
94332 - pci_dev_put(apicdev);
94333 - }
94334 - }
94335 -#endif
94336 -}
94337 -DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8111_IDE,
94338 - fixup_maple_ide);
94339 Index: linux-2.6.25.4/arch/powerpc/platforms/maple/setup.c
94340 ===================================================================
94341 --- linux-2.6.25.4.orig/arch/powerpc/platforms/maple/setup.c
94342 +++ linux-2.6.25.4/arch/powerpc/platforms/maple/setup.c
94343 @@ -43,6 +43,7 @@
94344 #include <linux/smp.h>
94345 #include <linux/bitops.h>
94346 #include <linux/of_device.h>
94347 +#include <linux/lmb.h>
94348
94349 #include <asm/processor.h>
94350 #include <asm/sections.h>
94351 @@ -57,7 +58,6 @@
94352 #include <asm/dma.h>
94353 #include <asm/cputable.h>
94354 #include <asm/time.h>
94355 -#include <asm/lmb.h>
94356 #include <asm/mpic.h>
94357 #include <asm/rtas.h>
94358 #include <asm/udbg.h>
94359 @@ -319,7 +319,7 @@ static int __init maple_probe(void)
94360 return 1;
94361 }
94362
94363 -define_machine(maple_md) {
94364 +define_machine(maple) {
94365 .name = "Maple",
94366 .probe = maple_probe,
94367 .setup_arch = maple_setup_arch,
94368 Index: linux-2.6.25.4/arch/powerpc/platforms/pasemi/dma_lib.c
94369 ===================================================================
94370 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pasemi/dma_lib.c
94371 +++ linux-2.6.25.4/arch/powerpc/platforms/pasemi/dma_lib.c
94372 @@ -17,6 +17,7 @@
94373 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
94374 */
94375
94376 +#include <linux/kernel.h>
94377 #include <linux/init.h>
94378 #include <linux/module.h>
94379 #include <linux/pci.h>
94380 @@ -26,6 +27,8 @@
94381
94382 #define MAX_TXCH 64
94383 #define MAX_RXCH 64
94384 +#define MAX_FLAGS 64
94385 +#define MAX_FUN 8
94386
94387 static struct pasdma_status *dma_status;
94388
94389 @@ -43,6 +46,8 @@ static struct pci_dev *dma_pdev;
94390
94391 static DECLARE_BITMAP(txch_free, MAX_TXCH);
94392 static DECLARE_BITMAP(rxch_free, MAX_RXCH);
94393 +static DECLARE_BITMAP(flags_free, MAX_FLAGS);
94394 +static DECLARE_BITMAP(fun_free, MAX_FUN);
94395
94396 /* pasemi_read_iob_reg - read IOB register
94397 * @reg: Register to read (offset into PCI CFG space)
94398 @@ -373,6 +378,106 @@ void pasemi_dma_free_buf(struct pasemi_d
94399 }
94400 EXPORT_SYMBOL(pasemi_dma_free_buf);
94401
94402 +/* pasemi_dma_alloc_flag - Allocate a flag (event) for channel syncronization
94403 + *
94404 + * Allocates a flag for use with channel syncronization (event descriptors).
94405 + * Returns allocated flag (0-63), < 0 on error.
94406 + */
94407 +int pasemi_dma_alloc_flag(void)
94408 +{
94409 + int bit;
94410 +
94411 +retry:
94412 + bit = find_next_bit(flags_free, MAX_FLAGS, 0);
94413 + if (bit >= MAX_FLAGS)
94414 + return -ENOSPC;
94415 + if (!test_and_clear_bit(bit, flags_free))
94416 + goto retry;
94417 +
94418 + return bit;
94419 +}
94420 +EXPORT_SYMBOL(pasemi_dma_alloc_flag);
94421 +
94422 +
94423 +/* pasemi_dma_free_flag - Deallocates a flag (event)
94424 + * @flag: Flag number to deallocate
94425 + *
94426 + * Frees up a flag so it can be reused for other purposes.
94427 + */
94428 +void pasemi_dma_free_flag(int flag)
94429 +{
94430 + BUG_ON(test_bit(flag, flags_free));
94431 + BUG_ON(flag >= MAX_FLAGS);
94432 + set_bit(flag, flags_free);
94433 +}
94434 +EXPORT_SYMBOL(pasemi_dma_free_flag);
94435 +
94436 +
94437 +/* pasemi_dma_set_flag - Sets a flag (event) to 1
94438 + * @flag: Flag number to set active
94439 + *
94440 + * Sets the flag provided to 1.
94441 + */
94442 +void pasemi_dma_set_flag(int flag)
94443 +{
94444 + BUG_ON(flag >= MAX_FLAGS);
94445 + if (flag < 32)
94446 + pasemi_write_dma_reg(PAS_DMA_TXF_SFLG0, 1 << flag);
94447 + else
94448 + pasemi_write_dma_reg(PAS_DMA_TXF_SFLG1, 1 << flag);
94449 +}
94450 +EXPORT_SYMBOL(pasemi_dma_set_flag);
94451 +
94452 +/* pasemi_dma_clear_flag - Sets a flag (event) to 0
94453 + * @flag: Flag number to set inactive
94454 + *
94455 + * Sets the flag provided to 0.
94456 + */
94457 +void pasemi_dma_clear_flag(int flag)
94458 +{
94459 + BUG_ON(flag >= MAX_FLAGS);
94460 + if (flag < 32)
94461 + pasemi_write_dma_reg(PAS_DMA_TXF_CFLG0, 1 << flag);
94462 + else
94463 + pasemi_write_dma_reg(PAS_DMA_TXF_CFLG1, 1 << flag);
94464 +}
94465 +EXPORT_SYMBOL(pasemi_dma_clear_flag);
94466 +
94467 +/* pasemi_dma_alloc_fun - Allocate a function engine
94468 + *
94469 + * Allocates a function engine to use for crypto/checksum offload
94470 + * Returns allocated engine (0-8), < 0 on error.
94471 + */
94472 +int pasemi_dma_alloc_fun(void)
94473 +{
94474 + int bit;
94475 +
94476 +retry:
94477 + bit = find_next_bit(fun_free, MAX_FLAGS, 0);
94478 + if (bit >= MAX_FLAGS)
94479 + return -ENOSPC;
94480 + if (!test_and_clear_bit(bit, fun_free))
94481 + goto retry;
94482 +
94483 + return bit;
94484 +}
94485 +EXPORT_SYMBOL(pasemi_dma_alloc_fun);
94486 +
94487 +
94488 +/* pasemi_dma_free_fun - Deallocates a function engine
94489 + * @flag: Engine number to deallocate
94490 + *
94491 + * Frees up a function engine so it can be used for other purposes.
94492 + */
94493 +void pasemi_dma_free_fun(int fun)
94494 +{
94495 + BUG_ON(test_bit(fun, fun_free));
94496 + BUG_ON(fun >= MAX_FLAGS);
94497 + set_bit(fun, fun_free);
94498 +}
94499 +EXPORT_SYMBOL(pasemi_dma_free_fun);
94500 +
94501 +
94502 static void *map_onedev(struct pci_dev *p, int index)
94503 {
94504 struct device_node *dn;
94505 @@ -410,6 +515,7 @@ int pasemi_dma_init(void)
94506 struct resource res;
94507 struct device_node *dn;
94508 int i, intf, err = 0;
94509 + unsigned long timeout;
94510 u32 tmp;
94511
94512 if (!machine_is(pasemi))
94513 @@ -478,6 +584,44 @@ int pasemi_dma_init(void)
94514 for (i = 0; i < MAX_RXCH; i++)
94515 __set_bit(i, rxch_free);
94516
94517 + timeout = jiffies + HZ;
94518 + pasemi_write_dma_reg(PAS_DMA_COM_RXCMD, 0);
94519 + while (pasemi_read_dma_reg(PAS_DMA_COM_RXSTA) & 1) {
94520 + if (time_after(jiffies, timeout)) {
94521 + pr_warning("Warning: Could not disable RX section\n");
94522 + break;
94523 + }
94524 + }
94525 +
94526 + timeout = jiffies + HZ;
94527 + pasemi_write_dma_reg(PAS_DMA_COM_TXCMD, 0);
94528 + while (pasemi_read_dma_reg(PAS_DMA_COM_TXSTA) & 1) {
94529 + if (time_after(jiffies, timeout)) {
94530 + pr_warning("Warning: Could not disable TX section\n");
94531 + break;
94532 + }
94533 + }
94534 +
94535 + /* setup resource allocations for the different DMA sections */
94536 + tmp = pasemi_read_dma_reg(PAS_DMA_COM_CFG);
94537 + pasemi_write_dma_reg(PAS_DMA_COM_CFG, tmp | 0x18000000);
94538 +
94539 + /* enable tx section */
94540 + pasemi_write_dma_reg(PAS_DMA_COM_TXCMD, PAS_DMA_COM_TXCMD_EN);
94541 +
94542 + /* enable rx section */
94543 + pasemi_write_dma_reg(PAS_DMA_COM_RXCMD, PAS_DMA_COM_RXCMD_EN);
94544 +
94545 + for (i = 0; i < MAX_FLAGS; i++)
94546 + __set_bit(i, flags_free);
94547 +
94548 + for (i = 0; i < MAX_FUN; i++)
94549 + __set_bit(i, fun_free);
94550 +
94551 + /* clear all status flags */
94552 + pasemi_write_dma_reg(PAS_DMA_TXF_CFLG0, 0xffffffff);
94553 + pasemi_write_dma_reg(PAS_DMA_TXF_CFLG1, 0xffffffff);
94554 +
94555 printk(KERN_INFO "PA Semi PWRficient DMA library initialized "
94556 "(%d tx, %d rx channels)\n", num_txch, num_rxch);
94557
94558 Index: linux-2.6.25.4/arch/powerpc/platforms/pasemi/iommu.c
94559 ===================================================================
94560 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pasemi/iommu.c
94561 +++ linux-2.6.25.4/arch/powerpc/platforms/pasemi/iommu.c
94562 @@ -1,5 +1,5 @@
94563 /*
94564 - * Copyright (C) 2005-2007, PA Semi, Inc
94565 + * Copyright (C) 2005-2008, PA Semi, Inc
94566 *
94567 * Maintained by: Olof Johansson <olof@lixom.net>
94568 *
94569 @@ -27,7 +27,6 @@
94570 #include <asm/abs_addr.h>
94571 #include <asm/firmware.h>
94572
94573 -
94574 #define IOBMAP_PAGE_SHIFT 12
94575 #define IOBMAP_PAGE_SIZE (1 << IOBMAP_PAGE_SHIFT)
94576 #define IOBMAP_PAGE_MASK (IOBMAP_PAGE_SIZE - 1)
94577 @@ -35,13 +34,13 @@
94578 #define IOB_BASE 0xe0000000
94579 #define IOB_SIZE 0x3000
94580 /* Configuration registers */
94581 -#define IOBCAP_REG 0x10
94582 -#define IOBCOM_REG 0x40
94583 +#define IOBCAP_REG 0x40
94584 +#define IOBCOM_REG 0x100
94585 /* Enable IOB address translation */
94586 #define IOBCOM_ATEN 0x00000100
94587
94588 /* Address decode configuration register */
94589 -#define IOB_AD_REG 0x53
94590 +#define IOB_AD_REG 0x14c
94591 /* IOBCOM_AD_REG fields */
94592 #define IOB_AD_VGPRT 0x00000e00
94593 #define IOB_AD_VGAEN 0x00000100
94594 @@ -56,13 +55,13 @@
94595 #define IOB_AD_TRNG_2G 0x00000001
94596 #define IOB_AD_TRNG_128G 0x00000003
94597
94598 -#define IOB_TABLEBASE_REG 0x55
94599 +#define IOB_TABLEBASE_REG 0x154
94600
94601 /* Base of the 64 4-byte L1 registers */
94602 -#define IOB_XLT_L1_REGBASE 0xac0
94603 +#define IOB_XLT_L1_REGBASE 0x2b00
94604
94605 /* Register to invalidate TLB entries */
94606 -#define IOB_AT_INVAL_TLB_REG 0xb40
94607 +#define IOB_AT_INVAL_TLB_REG 0x2d00
94608
94609 /* The top two bits of the level 1 entry contains valid and type flags */
94610 #define IOBMAP_L1E_V 0x40000000
94611 @@ -76,7 +75,7 @@
94612 #define IOBMAP_L2E_V 0x80000000
94613 #define IOBMAP_L2E_V_CACHED 0xc0000000
94614
94615 -static u32 __iomem *iob;
94616 +static void __iomem *iob;
94617 static u32 iob_l1_emptyval;
94618 static u32 iob_l2_emptyval;
94619 static u32 *iob_l2_base;
94620 @@ -219,7 +218,7 @@ int __init iob_init(struct device_node *
94621 for (i = 0; i < 64; i++) {
94622 /* Each L1 covers 32MB, i.e. 8K entries = 32K of ram */
94623 regword = IOBMAP_L1E_V | (__pa(iob_l2_base + i*0x2000) >> 12);
94624 - out_le32(iob+IOB_XLT_L1_REGBASE+i, regword);
94625 + out_le32(iob+IOB_XLT_L1_REGBASE+i*4, regword);
94626 }
94627
94628 /* set 2GB translation window, based at 0 */
94629 Index: linux-2.6.25.4/arch/powerpc/platforms/powermac/setup.c
94630 ===================================================================
94631 --- linux-2.6.25.4.orig/arch/powerpc/platforms/powermac/setup.c
94632 +++ linux-2.6.25.4/arch/powerpc/platforms/powermac/setup.c
94633 @@ -53,6 +53,7 @@
94634 #include <linux/suspend.h>
94635 #include <linux/of_device.h>
94636 #include <linux/of_platform.h>
94637 +#include <linux/lmb.h>
94638
94639 #include <asm/reg.h>
94640 #include <asm/sections.h>
94641 @@ -74,7 +75,6 @@
94642 #include <asm/iommu.h>
94643 #include <asm/smu.h>
94644 #include <asm/pmc.h>
94645 -#include <asm/lmb.h>
94646 #include <asm/udbg.h>
94647
94648 #include "pmac.h"
94649 Index: linux-2.6.25.4/arch/powerpc/platforms/ps3/device-init.c
94650 ===================================================================
94651 --- linux-2.6.25.4.orig/arch/powerpc/platforms/ps3/device-init.c
94652 +++ linux-2.6.25.4/arch/powerpc/platforms/ps3/device-init.c
94653 @@ -499,41 +499,14 @@ static int __init ps3_register_graphics_
94654 }
94655
94656 /**
94657 - * ps3_register_repository_device - Register a device from the repositiory info.
94658 - *
94659 + * ps3_setup_dynamic_device - Setup a dynamic device from the repository
94660 */
94661
94662 -static int ps3_register_repository_device(
94663 - const struct ps3_repository_device *repo)
94664 +static int ps3_setup_dynamic_device(const struct ps3_repository_device *repo)
94665 {
94666 int result;
94667
94668 switch (repo->dev_type) {
94669 - case PS3_DEV_TYPE_SB_GELIC:
94670 - result = ps3_setup_gelic_device(repo);
94671 - if (result) {
94672 - pr_debug("%s:%d ps3_setup_gelic_device failed\n",
94673 - __func__, __LINE__);
94674 - }
94675 - break;
94676 - case PS3_DEV_TYPE_SB_USB:
94677 -
94678 - /* Each USB device has both an EHCI and an OHCI HC */
94679 -
94680 - result = ps3_setup_ehci_device(repo);
94681 -
94682 - if (result) {
94683 - pr_debug("%s:%d ps3_setup_ehci_device failed\n",
94684 - __func__, __LINE__);
94685 - }
94686 -
94687 - result = ps3_setup_ohci_device(repo);
94688 -
94689 - if (result) {
94690 - pr_debug("%s:%d ps3_setup_ohci_device failed\n",
94691 - __func__, __LINE__);
94692 - }
94693 - break;
94694 case PS3_DEV_TYPE_STOR_DISK:
94695 result = ps3_setup_storage_dev(repo, PS3_MATCH_ID_STOR_DISK);
94696
94697 @@ -572,6 +545,48 @@ static int ps3_register_repository_devic
94698 return result;
94699 }
94700
94701 +/**
94702 + * ps3_setup_static_device - Setup a static device from the repository
94703 + */
94704 +
94705 +static int __init ps3_setup_static_device(const struct ps3_repository_device *repo)
94706 +{
94707 + int result;
94708 +
94709 + switch (repo->dev_type) {
94710 + case PS3_DEV_TYPE_SB_GELIC:
94711 + result = ps3_setup_gelic_device(repo);
94712 + if (result) {
94713 + pr_debug("%s:%d ps3_setup_gelic_device failed\n",
94714 + __func__, __LINE__);
94715 + }
94716 + break;
94717 + case PS3_DEV_TYPE_SB_USB:
94718 +
94719 + /* Each USB device has both an EHCI and an OHCI HC */
94720 +
94721 + result = ps3_setup_ehci_device(repo);
94722 +
94723 + if (result) {
94724 + pr_debug("%s:%d ps3_setup_ehci_device failed\n",
94725 + __func__, __LINE__);
94726 + }
94727 +
94728 + result = ps3_setup_ohci_device(repo);
94729 +
94730 + if (result) {
94731 + pr_debug("%s:%d ps3_setup_ohci_device failed\n",
94732 + __func__, __LINE__);
94733 + }
94734 + break;
94735 +
94736 + default:
94737 + return ps3_setup_dynamic_device(repo);
94738 + }
94739 +
94740 + return result;
94741 +}
94742 +
94743 static void ps3_find_and_add_device(u64 bus_id, u64 dev_id)
94744 {
94745 struct ps3_repository_device repo;
94746 @@ -601,7 +616,7 @@ found:
94747 pr_debug("%s:%u: device %lu:%lu found after %u retries\n",
94748 __func__, __LINE__, bus_id, dev_id, retries);
94749
94750 - ps3_register_repository_device(&repo);
94751 + ps3_setup_dynamic_device(&repo);
94752 return;
94753 }
94754
94755 @@ -905,8 +920,7 @@ static int __init ps3_register_devices(v
94756
94757 ps3_register_graphics_devices();
94758
94759 - ps3_repository_find_devices(PS3_BUS_TYPE_SB,
94760 - ps3_register_repository_device);
94761 + ps3_repository_find_devices(PS3_BUS_TYPE_SB, ps3_setup_static_device);
94762
94763 ps3_register_sound_devices();
94764
94765 Index: linux-2.6.25.4/arch/powerpc/platforms/ps3/htab.c
94766 ===================================================================
94767 --- linux-2.6.25.4.orig/arch/powerpc/platforms/ps3/htab.c
94768 +++ linux-2.6.25.4/arch/powerpc/platforms/ps3/htab.c
94769 @@ -19,9 +19,10 @@
94770 */
94771
94772 #include <linux/kernel.h>
94773 +#include <linux/lmb.h>
94774
94775 #include <asm/machdep.h>
94776 -#include <asm/lmb.h>
94777 +#include <asm/prom.h>
94778 #include <asm/udbg.h>
94779 #include <asm/lv1call.h>
94780 #include <asm/ps3fb.h>
94781 Index: linux-2.6.25.4/arch/powerpc/platforms/ps3/interrupt.c
94782 ===================================================================
94783 --- linux-2.6.25.4.orig/arch/powerpc/platforms/ps3/interrupt.c
94784 +++ linux-2.6.25.4/arch/powerpc/platforms/ps3/interrupt.c
94785 @@ -709,7 +709,7 @@ static unsigned int ps3_get_irq(void)
94786 asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x));
94787 plug &= 0x3f;
94788
94789 - if (unlikely(plug) == NO_IRQ) {
94790 + if (unlikely(plug == NO_IRQ)) {
94791 pr_debug("%s:%d: no plug found: thread_id %lu\n", __func__,
94792 __LINE__, pd->thread_id);
94793 dump_bmp(&per_cpu(ps3_private, 0));
94794 Index: linux-2.6.25.4/arch/powerpc/platforms/ps3/mm.c
94795 ===================================================================
94796 --- linux-2.6.25.4.orig/arch/powerpc/platforms/ps3/mm.c
94797 +++ linux-2.6.25.4/arch/powerpc/platforms/ps3/mm.c
94798 @@ -21,9 +21,10 @@
94799 #include <linux/kernel.h>
94800 #include <linux/module.h>
94801 #include <linux/memory_hotplug.h>
94802 +#include <linux/lmb.h>
94803
94804 #include <asm/firmware.h>
94805 -#include <asm/lmb.h>
94806 +#include <asm/prom.h>
94807 #include <asm/udbg.h>
94808 #include <asm/lv1call.h>
94809
94810 Index: linux-2.6.25.4/arch/powerpc/platforms/ps3/os-area.c
94811 ===================================================================
94812 --- linux-2.6.25.4.orig/arch/powerpc/platforms/ps3/os-area.c
94813 +++ linux-2.6.25.4/arch/powerpc/platforms/ps3/os-area.c
94814 @@ -24,8 +24,9 @@
94815 #include <linux/fs.h>
94816 #include <linux/syscalls.h>
94817 #include <linux/ctype.h>
94818 +#include <linux/lmb.h>
94819
94820 -#include <asm/lmb.h>
94821 +#include <asm/prom.h>
94822
94823 #include "platform.h"
94824
94825 Index: linux-2.6.25.4/arch/powerpc/platforms/ps3/setup.c
94826 ===================================================================
94827 --- linux-2.6.25.4.orig/arch/powerpc/platforms/ps3/setup.c
94828 +++ linux-2.6.25.4/arch/powerpc/platforms/ps3/setup.c
94829 @@ -95,6 +95,14 @@ static void ps3_power_off(void)
94830 ps3_sys_manager_power_off(); /* never returns */
94831 }
94832
94833 +static void ps3_halt(void)
94834 +{
94835 + DBG("%s:%d\n", __func__, __LINE__);
94836 +
94837 + smp_send_stop();
94838 + ps3_sys_manager_halt(); /* never returns */
94839 +}
94840 +
94841 static void ps3_panic(char *str)
94842 {
94843 DBG("%s:%d %s\n", __func__, __LINE__, str);
94844 @@ -105,7 +113,8 @@ static void ps3_panic(char *str)
94845 printk(" Please press POWER button.\n");
94846 printk("\n");
94847
94848 - while(1);
94849 + while(1)
94850 + lv1_pause(1);
94851 }
94852
94853 #if defined(CONFIG_FB_PS3) || defined(CONFIG_FB_PS3_MODULE) || \
94854 @@ -117,7 +126,7 @@ static void __init prealloc(struct ps3_p
94855
94856 p->address = __alloc_bootmem(p->size, p->align, __pa(MAX_DMA_ADDRESS));
94857 if (!p->address) {
94858 - printk(KERN_ERR "%s: Cannot allocate %s\n", __FUNCTION__,
94859 + printk(KERN_ERR "%s: Cannot allocate %s\n", __func__,
94860 p->name);
94861 return;
94862 }
94863 @@ -266,6 +275,7 @@ define_machine(ps3) {
94864 .progress = ps3_progress,
94865 .restart = ps3_restart,
94866 .power_off = ps3_power_off,
94867 + .halt = ps3_halt,
94868 #if defined(CONFIG_KEXEC)
94869 .kexec_cpu_down = ps3_kexec_cpu_down,
94870 .machine_kexec = default_machine_kexec,
94871 Index: linux-2.6.25.4/arch/powerpc/platforms/ps3/spu.c
94872 ===================================================================
94873 --- linux-2.6.25.4.orig/arch/powerpc/platforms/ps3/spu.c
94874 +++ linux-2.6.25.4/arch/powerpc/platforms/ps3/spu.c
94875 @@ -27,6 +27,7 @@
94876 #include <asm/spu.h>
94877 #include <asm/spu_priv1.h>
94878 #include <asm/lv1call.h>
94879 +#include <asm/ps3.h>
94880
94881 #include "../cell/spufs/spufs.h"
94882 #include "platform.h"
94883 @@ -140,6 +141,12 @@ static void _dump_areas(unsigned int spe
94884 pr_debug("%s:%d: shadow: %lxh\n", func, line, shadow);
94885 }
94886
94887 +inline u64 ps3_get_spe_id(void *arg)
94888 +{
94889 + return spu_pdata(arg)->spe_id;
94890 +}
94891 +EXPORT_SYMBOL_GPL(ps3_get_spe_id);
94892 +
94893 static unsigned long get_vas_id(void)
94894 {
94895 unsigned long id;
94896 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/Makefile
94897 ===================================================================
94898 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/Makefile
94899 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/Makefile
94900 @@ -18,3 +18,4 @@ obj-$(CONFIG_HOTPLUG_CPU) += hotplug-cpu
94901 obj-$(CONFIG_HVC_CONSOLE) += hvconsole.o
94902 obj-$(CONFIG_HVCS) += hvcserver.o
94903 obj-$(CONFIG_HCALL_STATS) += hvCall_inst.o
94904 +obj-$(CONFIG_PHYP_DUMP) += phyp_dump.o
94905 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/eeh.c
94906 ===================================================================
94907 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/eeh.c
94908 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/eeh.c
94909 @@ -945,7 +945,6 @@ static void *early_enable_eeh(struct dev
94910 unsigned int rets[3];
94911 struct eeh_early_enable_info *info = data;
94912 int ret;
94913 - const char *status = of_get_property(dn, "status", NULL);
94914 const u32 *class_code = of_get_property(dn, "class-code", NULL);
94915 const u32 *vendor_id = of_get_property(dn, "vendor-id", NULL);
94916 const u32 *device_id = of_get_property(dn, "device-id", NULL);
94917 @@ -959,8 +958,8 @@ static void *early_enable_eeh(struct dev
94918 pdn->eeh_freeze_count = 0;
94919 pdn->eeh_false_positives = 0;
94920
94921 - if (status && strncmp(status, "ok", 2) != 0)
94922 - return NULL; /* ignore devices with bad status */
94923 + if (!of_device_is_available(dn))
94924 + return NULL;
94925
94926 /* Ignore bad nodes. */
94927 if (!class_code || !vendor_id || !device_id)
94928 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/lpar.c
94929 ===================================================================
94930 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/lpar.c
94931 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/lpar.c
94932 @@ -40,6 +40,7 @@
94933 #include <asm/smp.h>
94934
94935 #include "plpar_wrappers.h"
94936 +#include "pseries.h"
94937
94938 #ifdef DEBUG_LOW
94939 #define DBG_LOW(fmt...) do { udbg_printf(fmt); } while(0)
94940 @@ -203,7 +204,6 @@ void __init find_udbg_vterm(void)
94941 struct device_node *stdout_node;
94942 const u32 *termno;
94943 const char *name;
94944 - int add_console;
94945
94946 /* find the boot console from /chosen/stdout */
94947 if (!of_chosen)
94948 @@ -219,8 +219,6 @@ void __init find_udbg_vterm(void)
94949 printk(KERN_WARNING "stdout node missing 'name' property!\n");
94950 goto out;
94951 }
94952 - /* The user has requested a console so this is already set up. */
94953 - add_console = !strstr(cmd_line, "console=");
94954
94955 /* Check if it's a virtual terminal */
94956 if (strncmp(name, "vty", 3) != 0)
94957 @@ -234,15 +232,13 @@ void __init find_udbg_vterm(void)
94958 udbg_putc = udbg_putcLP;
94959 udbg_getc = udbg_getcLP;
94960 udbg_getc_poll = udbg_getc_pollLP;
94961 - if (add_console)
94962 - add_preferred_console("hvc", termno[0] & 0xff, NULL);
94963 + add_preferred_console("hvc", termno[0] & 0xff, NULL);
94964 } else if (of_device_is_compatible(stdout_node, "hvterm-protocol")) {
94965 vtermno = termno[0];
94966 udbg_putc = udbg_hvsi_putc;
94967 udbg_getc = udbg_hvsi_getc;
94968 udbg_getc_poll = udbg_hvsi_getc_poll;
94969 - if (add_console)
94970 - add_preferred_console("hvsi", termno[0] & 0xff, NULL);
94971 + add_preferred_console("hvsi", termno[0] & 0xff, NULL);
94972 }
94973 out:
94974 of_node_put(stdout_node);
94975 @@ -520,6 +516,20 @@ static void pSeries_lpar_hpte_invalidate
94976 BUG_ON(lpar_rc != H_SUCCESS);
94977 }
94978
94979 +static void pSeries_lpar_hpte_removebolted(unsigned long ea,
94980 + int psize, int ssize)
94981 +{
94982 + unsigned long slot, vsid, va;
94983 +
94984 + vsid = get_kernel_vsid(ea, ssize);
94985 + va = hpt_va(ea, vsid, ssize);
94986 +
94987 + slot = pSeries_lpar_hpte_find(va, psize, ssize);
94988 + BUG_ON(slot == -1);
94989 +
94990 + pSeries_lpar_hpte_invalidate(slot, va, psize, ssize, 0);
94991 +}
94992 +
94993 /* Flag bits for H_BULK_REMOVE */
94994 #define HBR_REQUEST 0x4000000000000000UL
94995 #define HBR_RESPONSE 0x8000000000000000UL
94996 @@ -597,6 +607,7 @@ void __init hpte_init_lpar(void)
94997 ppc_md.hpte_updateboltedpp = pSeries_lpar_hpte_updateboltedpp;
94998 ppc_md.hpte_insert = pSeries_lpar_hpte_insert;
94999 ppc_md.hpte_remove = pSeries_lpar_hpte_remove;
95000 + ppc_md.hpte_removebolted = pSeries_lpar_hpte_removebolted;
95001 ppc_md.flush_hash_range = pSeries_lpar_flush_hash_range;
95002 ppc_md.hpte_clear_all = pSeries_lpar_hptab_clear;
95003 }
95004 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/pci_dlpar.c
95005 ===================================================================
95006 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/pci_dlpar.c
95007 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/pci_dlpar.c
95008 @@ -123,7 +123,7 @@ pcibios_pci_config_bridge(struct pci_dev
95009 /* Add to children of PCI bridge dev->bus */
95010 child_bus = pci_add_new_bus(dev->bus, dev, sec_busno);
95011 if (!child_bus) {
95012 - printk (KERN_ERR "%s: could not add second bus\n", __FUNCTION__);
95013 + printk (KERN_ERR "%s: could not add second bus\n", __func__);
95014 return -EIO;
95015 }
95016 sprintf(child_bus->name, "PCI Bus #%02x", child_bus->number);
95017 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/phyp_dump.c
95018 ===================================================================
95019 --- /dev/null
95020 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/phyp_dump.c
95021 @@ -0,0 +1,507 @@
95022 +/*
95023 + * Hypervisor-assisted dump
95024 + *
95025 + * Linas Vepstas, Manish Ahuja 2008
95026 + * Copyright 2008 IBM Corp.
95027 + *
95028 + * This program is free software; you can redistribute it and/or
95029 + * modify it under the terms of the GNU General Public License
95030 + * as published by the Free Software Foundation; either version
95031 + * 2 of the License, or (at your option) any later version.
95032 + *
95033 + */
95034 +
95035 +#include <linux/init.h>
95036 +#include <linux/kobject.h>
95037 +#include <linux/mm.h>
95038 +#include <linux/of.h>
95039 +#include <linux/pfn.h>
95040 +#include <linux/swap.h>
95041 +#include <linux/sysfs.h>
95042 +
95043 +#include <asm/page.h>
95044 +#include <asm/phyp_dump.h>
95045 +#include <asm/machdep.h>
95046 +#include <asm/prom.h>
95047 +#include <asm/rtas.h>
95048 +
95049 +/* Variables, used to communicate data between early boot and late boot */
95050 +static struct phyp_dump phyp_dump_vars;
95051 +struct phyp_dump *phyp_dump_info = &phyp_dump_vars;
95052 +
95053 +static int ibm_configure_kernel_dump;
95054 +/* ------------------------------------------------- */
95055 +/* RTAS interfaces to declare the dump regions */
95056 +
95057 +struct dump_section {
95058 + u32 dump_flags;
95059 + u16 source_type;
95060 + u16 error_flags;
95061 + u64 source_address;
95062 + u64 source_length;
95063 + u64 length_copied;
95064 + u64 destination_address;
95065 +};
95066 +
95067 +struct phyp_dump_header {
95068 + u32 version;
95069 + u16 num_of_sections;
95070 + u16 status;
95071 +
95072 + u32 first_offset_section;
95073 + u32 dump_disk_section;
95074 + u64 block_num_dd;
95075 + u64 num_of_blocks_dd;
95076 + u32 offset_dd;
95077 + u32 maxtime_to_auto;
95078 + /* No dump disk path string used */
95079 +
95080 + struct dump_section cpu_data;
95081 + struct dump_section hpte_data;
95082 + struct dump_section kernel_data;
95083 +};
95084 +
95085 +/* The dump header *must be* in low memory, so .bss it */
95086 +static struct phyp_dump_header phdr;
95087 +
95088 +#define NUM_DUMP_SECTIONS 3
95089 +#define DUMP_HEADER_VERSION 0x1
95090 +#define DUMP_REQUEST_FLAG 0x1
95091 +#define DUMP_SOURCE_CPU 0x0001
95092 +#define DUMP_SOURCE_HPTE 0x0002
95093 +#define DUMP_SOURCE_RMO 0x0011
95094 +#define DUMP_ERROR_FLAG 0x2000
95095 +#define DUMP_TRIGGERED 0x4000
95096 +#define DUMP_PERFORMED 0x8000
95097 +
95098 +
95099 +/**
95100 + * init_dump_header() - initialize the header declaring a dump
95101 + * Returns: length of dump save area.
95102 + *
95103 + * When the hypervisor saves crashed state, it needs to put
95104 + * it somewhere. The dump header tells the hypervisor where
95105 + * the data can be saved.
95106 + */
95107 +static unsigned long init_dump_header(struct phyp_dump_header *ph)
95108 +{
95109 + unsigned long addr_offset = 0;
95110 +
95111 + /* Set up the dump header */
95112 + ph->version = DUMP_HEADER_VERSION;
95113 + ph->num_of_sections = NUM_DUMP_SECTIONS;
95114 + ph->status = 0;
95115 +
95116 + ph->first_offset_section =
95117 + (u32)offsetof(struct phyp_dump_header, cpu_data);
95118 + ph->dump_disk_section = 0;
95119 + ph->block_num_dd = 0;
95120 + ph->num_of_blocks_dd = 0;
95121 + ph->offset_dd = 0;
95122 +
95123 + ph->maxtime_to_auto = 0; /* disabled */
95124 +
95125 + /* The first two sections are mandatory */
95126 + ph->cpu_data.dump_flags = DUMP_REQUEST_FLAG;
95127 + ph->cpu_data.source_type = DUMP_SOURCE_CPU;
95128 + ph->cpu_data.source_address = 0;
95129 + ph->cpu_data.source_length = phyp_dump_info->cpu_state_size;
95130 + ph->cpu_data.destination_address = addr_offset;
95131 + addr_offset += phyp_dump_info->cpu_state_size;
95132 +
95133 + ph->hpte_data.dump_flags = DUMP_REQUEST_FLAG;
95134 + ph->hpte_data.source_type = DUMP_SOURCE_HPTE;
95135 + ph->hpte_data.source_address = 0;
95136 + ph->hpte_data.source_length = phyp_dump_info->hpte_region_size;
95137 + ph->hpte_data.destination_address = addr_offset;
95138 + addr_offset += phyp_dump_info->hpte_region_size;
95139 +
95140 + /* This section describes the low kernel region */
95141 + ph->kernel_data.dump_flags = DUMP_REQUEST_FLAG;
95142 + ph->kernel_data.source_type = DUMP_SOURCE_RMO;
95143 + ph->kernel_data.source_address = PHYP_DUMP_RMR_START;
95144 + ph->kernel_data.source_length = PHYP_DUMP_RMR_END;
95145 + ph->kernel_data.destination_address = addr_offset;
95146 + addr_offset += ph->kernel_data.source_length;
95147 +
95148 + return addr_offset;
95149 +}
95150 +
95151 +static void print_dump_header(const struct phyp_dump_header *ph)
95152 +{
95153 +#ifdef DEBUG
95154 + printk(KERN_INFO "dump header:\n");
95155 + /* setup some ph->sections required */
95156 + printk(KERN_INFO "version = %d\n", ph->version);
95157 + printk(KERN_INFO "Sections = %d\n", ph->num_of_sections);
95158 + printk(KERN_INFO "Status = 0x%x\n", ph->status);
95159 +
95160 + /* No ph->disk, so all should be set to 0 */
95161 + printk(KERN_INFO "Offset to first section 0x%x\n",
95162 + ph->first_offset_section);
95163 + printk(KERN_INFO "dump disk sections should be zero\n");
95164 + printk(KERN_INFO "dump disk section = %d\n", ph->dump_disk_section);
95165 + printk(KERN_INFO "block num = %ld\n", ph->block_num_dd);
95166 + printk(KERN_INFO "number of blocks = %ld\n", ph->num_of_blocks_dd);
95167 + printk(KERN_INFO "dump disk offset = %d\n", ph->offset_dd);
95168 + printk(KERN_INFO "Max auto time= %d\n", ph->maxtime_to_auto);
95169 +
95170 + /*set cpu state and hpte states as well scratch pad area */
95171 + printk(KERN_INFO " CPU AREA \n");
95172 + printk(KERN_INFO "cpu dump_flags =%d\n", ph->cpu_data.dump_flags);
95173 + printk(KERN_INFO "cpu source_type =%d\n", ph->cpu_data.source_type);
95174 + printk(KERN_INFO "cpu error_flags =%d\n", ph->cpu_data.error_flags);
95175 + printk(KERN_INFO "cpu source_address =%lx\n",
95176 + ph->cpu_data.source_address);
95177 + printk(KERN_INFO "cpu source_length =%lx\n",
95178 + ph->cpu_data.source_length);
95179 + printk(KERN_INFO "cpu length_copied =%lx\n",
95180 + ph->cpu_data.length_copied);
95181 +
95182 + printk(KERN_INFO " HPTE AREA \n");
95183 + printk(KERN_INFO "HPTE dump_flags =%d\n", ph->hpte_data.dump_flags);
95184 + printk(KERN_INFO "HPTE source_type =%d\n", ph->hpte_data.source_type);
95185 + printk(KERN_INFO "HPTE error_flags =%d\n", ph->hpte_data.error_flags);
95186 + printk(KERN_INFO "HPTE source_address =%lx\n",
95187 + ph->hpte_data.source_address);
95188 + printk(KERN_INFO "HPTE source_length =%lx\n",
95189 + ph->hpte_data.source_length);
95190 + printk(KERN_INFO "HPTE length_copied =%lx\n",
95191 + ph->hpte_data.length_copied);
95192 +
95193 + printk(KERN_INFO " SRSD AREA \n");
95194 + printk(KERN_INFO "SRSD dump_flags =%d\n", ph->kernel_data.dump_flags);
95195 + printk(KERN_INFO "SRSD source_type =%d\n", ph->kernel_data.source_type);
95196 + printk(KERN_INFO "SRSD error_flags =%d\n", ph->kernel_data.error_flags);
95197 + printk(KERN_INFO "SRSD source_address =%lx\n",
95198 + ph->kernel_data.source_address);
95199 + printk(KERN_INFO "SRSD source_length =%lx\n",
95200 + ph->kernel_data.source_length);
95201 + printk(KERN_INFO "SRSD length_copied =%lx\n",
95202 + ph->kernel_data.length_copied);
95203 +#endif
95204 +}
95205 +
95206 +static ssize_t show_phyp_dump_active(struct kobject *kobj,
95207 + struct kobj_attribute *attr, char *buf)
95208 +{
95209 +
95210 + /* create filesystem entry so kdump is phyp-dump aware */
95211 + return sprintf(buf, "%lx\n", phyp_dump_info->phyp_dump_at_boot);
95212 +}
95213 +
95214 +static struct kobj_attribute pdl = __ATTR(phyp_dump_active, 0600,
95215 + show_phyp_dump_active,
95216 + NULL);
95217 +
95218 +static void register_dump_area(struct phyp_dump_header *ph, unsigned long addr)
95219 +{
95220 + int rc;
95221 +
95222 + /* Add addr value if not initialized before */
95223 + if (ph->cpu_data.destination_address == 0) {
95224 + ph->cpu_data.destination_address += addr;
95225 + ph->hpte_data.destination_address += addr;
95226 + ph->kernel_data.destination_address += addr;
95227 + }
95228 +
95229 + /* ToDo Invalidate kdump and free memory range. */
95230 +
95231 + do {
95232 + rc = rtas_call(ibm_configure_kernel_dump, 3, 1, NULL,
95233 + 1, ph, sizeof(struct phyp_dump_header));
95234 + } while (rtas_busy_delay(rc));
95235 +
95236 + if (rc) {
95237 + printk(KERN_ERR "phyp-dump: unexpected error (%d) on "
95238 + "register\n", rc);
95239 + print_dump_header(ph);
95240 + return;
95241 + }
95242 +
95243 + rc = sysfs_create_file(kernel_kobj, &pdl.attr);
95244 + if (rc)
95245 + printk(KERN_ERR "phyp-dump: unable to create sysfs"
95246 + " file (%d)\n", rc);
95247 +}
95248 +
95249 +static
95250 +void invalidate_last_dump(struct phyp_dump_header *ph, unsigned long addr)
95251 +{
95252 + int rc;
95253 +
95254 + /* Add addr value if not initialized before */
95255 + if (ph->cpu_data.destination_address == 0) {
95256 + ph->cpu_data.destination_address += addr;
95257 + ph->hpte_data.destination_address += addr;
95258 + ph->kernel_data.destination_address += addr;
95259 + }
95260 +
95261 + do {
95262 + rc = rtas_call(ibm_configure_kernel_dump, 3, 1, NULL,
95263 + 2, ph, sizeof(struct phyp_dump_header));
95264 + } while (rtas_busy_delay(rc));
95265 +
95266 + if (rc) {
95267 + printk(KERN_ERR "phyp-dump: unexpected error (%d) "
95268 + "on invalidate\n", rc);
95269 + print_dump_header(ph);
95270 + }
95271 +}
95272 +
95273 +/* ------------------------------------------------- */
95274 +/**
95275 + * release_memory_range -- release memory previously lmb_reserved
95276 + * @start_pfn: starting physical frame number
95277 + * @nr_pages: number of pages to free.
95278 + *
95279 + * This routine will release memory that had been previously
95280 + * lmb_reserved in early boot. The released memory becomes
95281 + * available for genreal use.
95282 + */
95283 +static void release_memory_range(unsigned long start_pfn,
95284 + unsigned long nr_pages)
95285 +{
95286 + struct page *rpage;
95287 + unsigned long end_pfn;
95288 + long i;
95289 +
95290 + end_pfn = start_pfn + nr_pages;
95291 +
95292 + for (i = start_pfn; i <= end_pfn; i++) {
95293 + rpage = pfn_to_page(i);
95294 + if (PageReserved(rpage)) {
95295 + ClearPageReserved(rpage);
95296 + init_page_count(rpage);
95297 + __free_page(rpage);
95298 + totalram_pages++;
95299 + }
95300 + }
95301 +}
95302 +
95303 +/**
95304 + * track_freed_range -- Counts the range being freed.
95305 + * Once the counter goes to zero, it re-registers dump for
95306 + * future use.
95307 + */
95308 +static void
95309 +track_freed_range(unsigned long addr, unsigned long length)
95310 +{
95311 + static unsigned long scratch_area_size, reserved_area_size;
95312 +
95313 + if (addr < phyp_dump_info->init_reserve_start)
95314 + return;
95315 +
95316 + if ((addr >= phyp_dump_info->init_reserve_start) &&
95317 + (addr <= phyp_dump_info->init_reserve_start +
95318 + phyp_dump_info->init_reserve_size))
95319 + reserved_area_size += length;
95320 +
95321 + if ((addr >= phyp_dump_info->reserved_scratch_addr) &&
95322 + (addr <= phyp_dump_info->reserved_scratch_addr +
95323 + phyp_dump_info->reserved_scratch_size))
95324 + scratch_area_size += length;
95325 +
95326 + if ((reserved_area_size == phyp_dump_info->init_reserve_size) &&
95327 + (scratch_area_size == phyp_dump_info->reserved_scratch_size)) {
95328 +
95329 + invalidate_last_dump(&phdr,
95330 + phyp_dump_info->reserved_scratch_addr);
95331 + register_dump_area(&phdr,
95332 + phyp_dump_info->reserved_scratch_addr);
95333 + }
95334 +}
95335 +
95336 +/* ------------------------------------------------- */
95337 +/**
95338 + * sysfs_release_region -- sysfs interface to release memory range.
95339 + *
95340 + * Usage:
95341 + * "echo <start addr> <length> > /sys/kernel/release_region"
95342 + *
95343 + * Example:
95344 + * "echo 0x40000000 0x10000000 > /sys/kernel/release_region"
95345 + *
95346 + * will release 256MB starting at 1GB.
95347 + */
95348 +static ssize_t store_release_region(struct kobject *kobj,
95349 + struct kobj_attribute *attr,
95350 + const char *buf, size_t count)
95351 +{
95352 + unsigned long start_addr, length, end_addr;
95353 + unsigned long start_pfn, nr_pages;
95354 + ssize_t ret;
95355 +
95356 + ret = sscanf(buf, "%lx %lx", &start_addr, &length);
95357 + if (ret != 2)
95358 + return -EINVAL;
95359 +
95360 + track_freed_range(start_addr, length);
95361 +
95362 + /* Range-check - don't free any reserved memory that
95363 + * wasn't reserved for phyp-dump */
95364 + if (start_addr < phyp_dump_info->init_reserve_start)
95365 + start_addr = phyp_dump_info->init_reserve_start;
95366 +
95367 + end_addr = phyp_dump_info->init_reserve_start +
95368 + phyp_dump_info->init_reserve_size;
95369 + if (start_addr+length > end_addr)
95370 + length = end_addr - start_addr;
95371 +
95372 + /* Release the region of memory assed in by user */
95373 + start_pfn = PFN_DOWN(start_addr);
95374 + nr_pages = PFN_DOWN(length);
95375 + release_memory_range(start_pfn, nr_pages);
95376 +
95377 + return count;
95378 +}
95379 +
95380 +static ssize_t show_release_region(struct kobject *kobj,
95381 + struct kobj_attribute *attr, char *buf)
95382 +{
95383 + u64 second_addr_range;
95384 +
95385 + /* total reserved size - start of scratch area */
95386 + second_addr_range = phyp_dump_info->init_reserve_size -
95387 + phyp_dump_info->reserved_scratch_size;
95388 + return sprintf(buf, "CPU:0x%lx-0x%lx: HPTE:0x%lx-0x%lx:"
95389 + " DUMP:0x%lx-0x%lx, 0x%lx-0x%lx:\n",
95390 + phdr.cpu_data.destination_address,
95391 + phdr.cpu_data.length_copied,
95392 + phdr.hpte_data.destination_address,
95393 + phdr.hpte_data.length_copied,
95394 + phdr.kernel_data.destination_address,
95395 + phdr.kernel_data.length_copied,
95396 + phyp_dump_info->init_reserve_start,
95397 + second_addr_range);
95398 +}
95399 +
95400 +static struct kobj_attribute rr = __ATTR(release_region, 0600,
95401 + show_release_region,
95402 + store_release_region);
95403 +
95404 +static int __init phyp_dump_setup(void)
95405 +{
95406 + struct device_node *rtas;
95407 + const struct phyp_dump_header *dump_header = NULL;
95408 + unsigned long dump_area_start;
95409 + unsigned long dump_area_length;
95410 + int header_len = 0;
95411 + int rc;
95412 +
95413 + /* If no memory was reserved in early boot, there is nothing to do */
95414 + if (phyp_dump_info->init_reserve_size == 0)
95415 + return 0;
95416 +
95417 + /* Return if phyp dump not supported */
95418 + if (!phyp_dump_info->phyp_dump_configured)
95419 + return -ENOSYS;
95420 +
95421 + /* Is there dump data waiting for us? If there isn't,
95422 + * then register a new dump area, and release all of
95423 + * the rest of the reserved ram.
95424 + *
95425 + * The /rtas/ibm,kernel-dump rtas node is present only
95426 + * if there is dump data waiting for us.
95427 + */
95428 + rtas = of_find_node_by_path("/rtas");
95429 + if (rtas) {
95430 + dump_header = of_get_property(rtas, "ibm,kernel-dump",
95431 + &header_len);
95432 + of_node_put(rtas);
95433 + }
95434 +
95435 + print_dump_header(dump_header);
95436 + dump_area_length = init_dump_header(&phdr);
95437 + /* align down */
95438 + dump_area_start = phyp_dump_info->init_reserve_start & PAGE_MASK;
95439 +
95440 + if (dump_header == NULL) {
95441 + register_dump_area(&phdr, dump_area_start);
95442 + return 0;
95443 + }
95444 +
95445 + /* re-register the dump area, if old dump was invalid */
95446 + if ((dump_header) && (dump_header->status & DUMP_ERROR_FLAG)) {
95447 + invalidate_last_dump(&phdr, dump_area_start);
95448 + register_dump_area(&phdr, dump_area_start);
95449 + return 0;
95450 + }
95451 +
95452 + if (dump_header) {
95453 + phyp_dump_info->reserved_scratch_addr =
95454 + dump_header->cpu_data.destination_address;
95455 + phyp_dump_info->reserved_scratch_size =
95456 + dump_header->cpu_data.source_length +
95457 + dump_header->hpte_data.source_length +
95458 + dump_header->kernel_data.source_length;
95459 + }
95460 +
95461 + /* Should we create a dump_subsys, analogous to s390/ipl.c ? */
95462 + rc = sysfs_create_file(kernel_kobj, &rr.attr);
95463 + if (rc)
95464 + printk(KERN_ERR "phyp-dump: unable to create sysfs file (%d)\n",
95465 + rc);
95466 +
95467 + /* ToDo: re-register the dump area, for next time. */
95468 + return 0;
95469 +}
95470 +machine_subsys_initcall(pseries, phyp_dump_setup);
95471 +
95472 +int __init early_init_dt_scan_phyp_dump(unsigned long node,
95473 + const char *uname, int depth, void *data)
95474 +{
95475 + const unsigned int *sizes;
95476 +
95477 + phyp_dump_info->phyp_dump_configured = 0;
95478 + phyp_dump_info->phyp_dump_is_active = 0;
95479 +
95480 + if (depth != 1 || strcmp(uname, "rtas") != 0)
95481 + return 0;
95482 +
95483 + if (of_get_flat_dt_prop(node, "ibm,configure-kernel-dump", NULL))
95484 + phyp_dump_info->phyp_dump_configured++;
95485 +
95486 + if (of_get_flat_dt_prop(node, "ibm,dump-kernel", NULL))
95487 + phyp_dump_info->phyp_dump_is_active++;
95488 +
95489 + sizes = of_get_flat_dt_prop(node, "ibm,configure-kernel-dump-sizes",
95490 + NULL);
95491 + if (!sizes)
95492 + return 0;
95493 +
95494 + if (sizes[0] == 1)
95495 + phyp_dump_info->cpu_state_size = *((unsigned long *)&sizes[1]);
95496 +
95497 + if (sizes[3] == 2)
95498 + phyp_dump_info->hpte_region_size =
95499 + *((unsigned long *)&sizes[4]);
95500 + return 1;
95501 +}
95502 +
95503 +/* Look for phyp_dump= cmdline option */
95504 +static int __init early_phyp_dump_enabled(char *p)
95505 +{
95506 + phyp_dump_info->phyp_dump_at_boot = 1;
95507 +
95508 + if (!p)
95509 + return 0;
95510 +
95511 + if (strncmp(p, "1", 1) == 0)
95512 + phyp_dump_info->phyp_dump_at_boot = 1;
95513 + else if (strncmp(p, "0", 1) == 0)
95514 + phyp_dump_info->phyp_dump_at_boot = 0;
95515 +
95516 + return 0;
95517 +}
95518 +early_param("phyp_dump", early_phyp_dump_enabled);
95519 +
95520 +/* Look for phyp_dump_reserve_size= cmdline option */
95521 +static int __init early_phyp_dump_reserve_size(char *p)
95522 +{
95523 + if (p)
95524 + phyp_dump_info->reserve_bootvar = memparse(p, &p);
95525 +
95526 + return 0;
95527 +}
95528 +early_param("phyp_dump_reserve_size", early_phyp_dump_reserve_size);
95529 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/pseries.h
95530 ===================================================================
95531 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/pseries.h
95532 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/pseries.h
95533 @@ -38,4 +38,6 @@ extern void pSeries_final_fixup(void);
95534 /* Poweron flag used for enabling auto ups restart */
95535 extern unsigned long rtas_poweron_auto;
95536
95537 +extern void find_udbg_vterm(void);
95538 +
95539 #endif /* _PSERIES_PSERIES_H */
95540 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/reconfig.c
95541 ===================================================================
95542 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/reconfig.c
95543 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/reconfig.c
95544 @@ -222,14 +222,14 @@ static char * parse_next_property(char *
95545 tmp = strchr(buf, ' ');
95546 if (!tmp) {
95547 printk(KERN_ERR "property parse failed in %s at line %d\n",
95548 - __FUNCTION__, __LINE__);
95549 + __func__, __LINE__);
95550 return NULL;
95551 }
95552 *tmp = '\0';
95553
95554 if (++tmp >= end) {
95555 printk(KERN_ERR "property parse failed in %s at line %d\n",
95556 - __FUNCTION__, __LINE__);
95557 + __func__, __LINE__);
95558 return NULL;
95559 }
95560
95561 @@ -238,12 +238,12 @@ static char * parse_next_property(char *
95562 *length = simple_strtoul(tmp, &tmp, 10);
95563 if (*length == -1) {
95564 printk(KERN_ERR "property parse failed in %s at line %d\n",
95565 - __FUNCTION__, __LINE__);
95566 + __func__, __LINE__);
95567 return NULL;
95568 }
95569 if (*tmp != ' ' || ++tmp >= end) {
95570 printk(KERN_ERR "property parse failed in %s at line %d\n",
95571 - __FUNCTION__, __LINE__);
95572 + __func__, __LINE__);
95573 return NULL;
95574 }
95575
95576 @@ -252,12 +252,12 @@ static char * parse_next_property(char *
95577 tmp += *length;
95578 if (tmp > end) {
95579 printk(KERN_ERR "property parse failed in %s at line %d\n",
95580 - __FUNCTION__, __LINE__);
95581 + __func__, __LINE__);
95582 return NULL;
95583 }
95584 else if (tmp < end && *tmp != ' ' && *tmp != '\0') {
95585 printk(KERN_ERR "property parse failed in %s at line %d\n",
95586 - __FUNCTION__, __LINE__);
95587 + __func__, __LINE__);
95588 return NULL;
95589 }
95590 tmp++;
95591 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/scanlog.c
95592 ===================================================================
95593 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/scanlog.c
95594 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/scanlog.c
95595 @@ -195,31 +195,30 @@ const struct file_operations scanlog_fop
95596 static int __init scanlog_init(void)
95597 {
95598 struct proc_dir_entry *ent;
95599 + void *data;
95600 + int err = -ENOMEM;
95601
95602 ibm_scan_log_dump = rtas_token("ibm,scan-log-dump");
95603 - if (ibm_scan_log_dump == RTAS_UNKNOWN_SERVICE) {
95604 - printk(KERN_ERR "scan-log-dump not implemented on this system\n");
95605 - return -EIO;
95606 - }
95607 + if (ibm_scan_log_dump == RTAS_UNKNOWN_SERVICE)
95608 + return -ENODEV;
95609
95610 - ent = create_proc_entry("ppc64/rtas/scan-log-dump", S_IRUSR, NULL);
95611 - if (ent) {
95612 - ent->proc_fops = &scanlog_fops;
95613 - /* Ideally we could allocate a buffer < 4G */
95614 - ent->data = kmalloc(RTAS_DATA_BUF_SIZE, GFP_KERNEL);
95615 - if (!ent->data) {
95616 - printk(KERN_ERR "Failed to allocate a buffer\n");
95617 - remove_proc_entry("scan-log-dump", ent->parent);
95618 - return -ENOMEM;
95619 - }
95620 - ((unsigned int *)ent->data)[0] = 0;
95621 - } else {
95622 - printk(KERN_ERR "Failed to create ppc64/scan-log-dump proc entry\n");
95623 - return -EIO;
95624 - }
95625 + /* Ideally we could allocate a buffer < 4G */
95626 + data = kzalloc(RTAS_DATA_BUF_SIZE, GFP_KERNEL);
95627 + if (!data)
95628 + goto err;
95629 +
95630 + ent = proc_create("ppc64/rtas/scan-log-dump", S_IRUSR, NULL,
95631 + &scanlog_fops);
95632 + if (!ent)
95633 + goto err;
95634 +
95635 + ent->data = data;
95636 proc_ppc64_scan_log_dump = ent;
95637
95638 return 0;
95639 +err:
95640 + kfree(data);
95641 + return err;
95642 }
95643
95644 static void __exit scanlog_cleanup(void)
95645 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/setup.c
95646 ===================================================================
95647 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/setup.c
95648 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/setup.c
95649 @@ -76,9 +76,6 @@
95650 #define DBG(fmt...)
95651 #endif
95652
95653 -/* move those away to a .h */
95654 -extern void find_udbg_vterm(void);
95655 -
95656 int fwnmi_active; /* TRUE if an FWNMI handler is present */
95657
95658 static void pseries_shared_idle_sleep(void);
95659 @@ -127,14 +124,60 @@ void pseries_8259_cascade(unsigned int i
95660 desc->chip->eoi(irq);
95661 }
95662
95663 -static void __init pseries_mpic_init_IRQ(void)
95664 +static void __init pseries_setup_i8259_cascade(void)
95665 {
95666 - struct device_node *np, *old, *cascade = NULL;
95667 - const unsigned int *addrp;
95668 + struct device_node *np, *old, *found = NULL;
95669 + unsigned int cascade;
95670 + const u32 *addrp;
95671 unsigned long intack = 0;
95672 + int naddr;
95673 +
95674 + for_each_node_by_type(np, "interrupt-controller") {
95675 + if (of_device_is_compatible(np, "chrp,iic")) {
95676 + found = np;
95677 + break;
95678 + }
95679 + }
95680 +
95681 + if (found == NULL) {
95682 + printk(KERN_DEBUG "pic: no ISA interrupt controller\n");
95683 + return;
95684 + }
95685 +
95686 + cascade = irq_of_parse_and_map(found, 0);
95687 + if (cascade == NO_IRQ) {
95688 + printk(KERN_ERR "pic: failed to map cascade interrupt");
95689 + return;
95690 + }
95691 + pr_debug("pic: cascade mapped to irq %d\n", cascade);
95692 +
95693 + for (old = of_node_get(found); old != NULL ; old = np) {
95694 + np = of_get_parent(old);
95695 + of_node_put(old);
95696 + if (np == NULL)
95697 + break;
95698 + if (strcmp(np->name, "pci") != 0)
95699 + continue;
95700 + addrp = of_get_property(np, "8259-interrupt-acknowledge", NULL);
95701 + if (addrp == NULL)
95702 + continue;
95703 + naddr = of_n_addr_cells(np);
95704 + intack = addrp[naddr-1];
95705 + if (naddr > 1)
95706 + intack |= ((unsigned long)addrp[naddr-2]) << 32;
95707 + }
95708 + if (intack)
95709 + printk(KERN_DEBUG "pic: PCI 8259 intack at 0x%016lx\n", intack);
95710 + i8259_init(found, intack);
95711 + of_node_put(found);
95712 + set_irq_chained_handler(cascade, pseries_8259_cascade);
95713 +}
95714 +
95715 +static void __init pseries_mpic_init_IRQ(void)
95716 +{
95717 + struct device_node *np;
95718 const unsigned int *opprop;
95719 unsigned long openpic_addr = 0;
95720 - unsigned int cascade_irq;
95721 int naddr, n, i, opplen;
95722 struct mpic *mpic;
95723
95724 @@ -167,43 +210,13 @@ static void __init pseries_mpic_init_IRQ
95725 mpic_init(mpic);
95726
95727 /* Look for cascade */
95728 - for_each_node_by_type(np, "interrupt-controller")
95729 - if (of_device_is_compatible(np, "chrp,iic")) {
95730 - cascade = np;
95731 - break;
95732 - }
95733 - if (cascade == NULL)
95734 - return;
95735 -
95736 - cascade_irq = irq_of_parse_and_map(cascade, 0);
95737 - if (cascade_irq == NO_IRQ) {
95738 - printk(KERN_ERR "mpic: failed to map cascade interrupt");
95739 - return;
95740 - }
95741 + pseries_setup_i8259_cascade();
95742 +}
95743
95744 - /* Check ACK type */
95745 - for (old = of_node_get(cascade); old != NULL ; old = np) {
95746 - np = of_get_parent(old);
95747 - of_node_put(old);
95748 - if (np == NULL)
95749 - break;
95750 - if (strcmp(np->name, "pci") != 0)
95751 - continue;
95752 - addrp = of_get_property(np, "8259-interrupt-acknowledge",
95753 - NULL);
95754 - if (addrp == NULL)
95755 - continue;
95756 - naddr = of_n_addr_cells(np);
95757 - intack = addrp[naddr-1];
95758 - if (naddr > 1)
95759 - intack |= ((unsigned long)addrp[naddr-2]) << 32;
95760 - }
95761 - if (intack)
95762 - printk(KERN_DEBUG "mpic: PCI 8259 intack at 0x%016lx\n",
95763 - intack);
95764 - i8259_init(cascade, intack);
95765 - of_node_put(cascade);
95766 - set_irq_chained_handler(cascade_irq, pseries_8259_cascade);
95767 +static void __init pseries_xics_init_IRQ(void)
95768 +{
95769 + xics_init_IRQ();
95770 + pseries_setup_i8259_cascade();
95771 }
95772
95773 static void pseries_lpar_enable_pmcs(void)
95774 @@ -235,7 +248,7 @@ static void __init pseries_discover_pic(
95775 smp_init_pseries_mpic();
95776 return;
95777 } else if (strstr(typep, "ppc-xicp")) {
95778 - ppc_md.init_IRQ = xics_init_IRQ;
95779 + ppc_md.init_IRQ = pseries_xics_init_IRQ;
95780 setup_kexec_cpu_down_xics();
95781 smp_init_pseries_xics();
95782 return;
95783 @@ -393,6 +406,7 @@ static void pseries_dedicated_idle_sleep
95784 {
95785 unsigned int cpu = smp_processor_id();
95786 unsigned long start_snooze;
95787 + unsigned long in_purr, out_purr;
95788
95789 /*
95790 * Indicate to the HV that we are idle. Now would be
95791 @@ -400,6 +414,7 @@ static void pseries_dedicated_idle_sleep
95792 */
95793 get_lppaca()->idle = 1;
95794 get_lppaca()->donate_dedicated_cpu = 1;
95795 + in_purr = mfspr(SPRN_PURR);
95796
95797 /*
95798 * We come in with interrupts disabled, and need_resched()
95799 @@ -432,6 +447,8 @@ static void pseries_dedicated_idle_sleep
95800
95801 out:
95802 HMT_medium();
95803 + out_purr = mfspr(SPRN_PURR);
95804 + get_lppaca()->wait_state_cycles += out_purr - in_purr;
95805 get_lppaca()->donate_dedicated_cpu = 0;
95806 get_lppaca()->idle = 0;
95807 }
95808 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/xics.c
95809 ===================================================================
95810 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/xics.c
95811 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/xics.c
95812 @@ -516,6 +516,8 @@ static struct irq_chip xics_pic_lpar = {
95813 .set_affinity = xics_set_affinity
95814 };
95815
95816 +/* Points to the irq_chip we're actually using */
95817 +static struct irq_chip *xics_irq_chip;
95818
95819 static int xics_host_match(struct irq_host *h, struct device_node *node)
95820 {
95821 @@ -526,23 +528,13 @@ static int xics_host_match(struct irq_ho
95822 return !of_device_is_compatible(node, "chrp,iic");
95823 }
95824
95825 -static int xics_host_map_direct(struct irq_host *h, unsigned int virq,
95826 - irq_hw_number_t hw)
95827 +static int xics_host_map(struct irq_host *h, unsigned int virq,
95828 + irq_hw_number_t hw)
95829 {
95830 - pr_debug("xics: map_direct virq %d, hwirq 0x%lx\n", virq, hw);
95831 + pr_debug("xics: map virq %d, hwirq 0x%lx\n", virq, hw);
95832
95833 get_irq_desc(virq)->status |= IRQ_LEVEL;
95834 - set_irq_chip_and_handler(virq, &xics_pic_direct, handle_fasteoi_irq);
95835 - return 0;
95836 -}
95837 -
95838 -static int xics_host_map_lpar(struct irq_host *h, unsigned int virq,
95839 - irq_hw_number_t hw)
95840 -{
95841 - pr_debug("xics: map_direct virq %d, hwirq 0x%lx\n", virq, hw);
95842 -
95843 - get_irq_desc(virq)->status |= IRQ_LEVEL;
95844 - set_irq_chip_and_handler(virq, &xics_pic_lpar, handle_fasteoi_irq);
95845 + set_irq_chip_and_handler(virq, xics_irq_chip, handle_fasteoi_irq);
95846 return 0;
95847 }
95848
95849 @@ -561,27 +553,20 @@ static int xics_host_xlate(struct irq_ho
95850 return 0;
95851 }
95852
95853 -static struct irq_host_ops xics_host_direct_ops = {
95854 - .match = xics_host_match,
95855 - .map = xics_host_map_direct,
95856 - .xlate = xics_host_xlate,
95857 -};
95858 -
95859 -static struct irq_host_ops xics_host_lpar_ops = {
95860 +static struct irq_host_ops xics_host_ops = {
95861 .match = xics_host_match,
95862 - .map = xics_host_map_lpar,
95863 + .map = xics_host_map,
95864 .xlate = xics_host_xlate,
95865 };
95866
95867 static void __init xics_init_host(void)
95868 {
95869 - struct irq_host_ops *ops;
95870 -
95871 if (firmware_has_feature(FW_FEATURE_LPAR))
95872 - ops = &xics_host_lpar_ops;
95873 + xics_irq_chip = &xics_pic_lpar;
95874 else
95875 - ops = &xics_host_direct_ops;
95876 - xics_host = irq_alloc_host(NULL, IRQ_HOST_MAP_TREE, 0, ops,
95877 + xics_irq_chip = &xics_pic_direct;
95878 +
95879 + xics_host = irq_alloc_host(NULL, IRQ_HOST_MAP_TREE, 0, &xics_host_ops,
95880 XICS_IRQ_SPURIOUS);
95881 BUG_ON(xics_host == NULL);
95882 irq_set_default_host(xics_host);
95883 @@ -655,52 +640,6 @@ static void __init xics_init_one_node(st
95884 }
95885 }
95886
95887 -
95888 -static void __init xics_setup_8259_cascade(void)
95889 -{
95890 - struct device_node *np, *old, *found = NULL;
95891 - int cascade, naddr;
95892 - const u32 *addrp;
95893 - unsigned long intack = 0;
95894 -
95895 - for_each_node_by_type(np, "interrupt-controller")
95896 - if (of_device_is_compatible(np, "chrp,iic")) {
95897 - found = np;
95898 - break;
95899 - }
95900 - if (found == NULL) {
95901 - printk(KERN_DEBUG "xics: no ISA interrupt controller\n");
95902 - return;
95903 - }
95904 - cascade = irq_of_parse_and_map(found, 0);
95905 - if (cascade == NO_IRQ) {
95906 - printk(KERN_ERR "xics: failed to map cascade interrupt");
95907 - return;
95908 - }
95909 - pr_debug("xics: cascade mapped to irq %d\n", cascade);
95910 -
95911 - for (old = of_node_get(found); old != NULL ; old = np) {
95912 - np = of_get_parent(old);
95913 - of_node_put(old);
95914 - if (np == NULL)
95915 - break;
95916 - if (strcmp(np->name, "pci") != 0)
95917 - continue;
95918 - addrp = of_get_property(np, "8259-interrupt-acknowledge", NULL);
95919 - if (addrp == NULL)
95920 - continue;
95921 - naddr = of_n_addr_cells(np);
95922 - intack = addrp[naddr-1];
95923 - if (naddr > 1)
95924 - intack |= ((unsigned long)addrp[naddr-2]) << 32;
95925 - }
95926 - if (intack)
95927 - printk(KERN_DEBUG "xics: PCI 8259 intack at 0x%016lx\n", intack);
95928 - i8259_init(found, intack);
95929 - of_node_put(found);
95930 - set_irq_chained_handler(cascade, pseries_8259_cascade);
95931 -}
95932 -
95933 void __init xics_init_IRQ(void)
95934 {
95935 struct device_node *np;
95936 @@ -733,8 +672,6 @@ void __init xics_init_IRQ(void)
95937
95938 xics_setup_cpu();
95939
95940 - xics_setup_8259_cascade();
95941 -
95942 ppc64_boot_msg(0x21, "XICS Done");
95943 }
95944
95945 Index: linux-2.6.25.4/arch/powerpc/platforms/pseries/xics.h
95946 ===================================================================
95947 --- linux-2.6.25.4.orig/arch/powerpc/platforms/pseries/xics.h
95948 +++ linux-2.6.25.4/arch/powerpc/platforms/pseries/xics.h
95949 @@ -28,7 +28,4 @@ struct xics_ipi_struct {
95950
95951 extern struct xics_ipi_struct xics_ipi_message[NR_CPUS] __cacheline_aligned;
95952
95953 -struct irq_desc;
95954 -extern void pseries_8259_cascade(unsigned int irq, struct irq_desc *desc);
95955 -
95956 #endif /* _POWERPC_KERNEL_XICS_H */
95957 Index: linux-2.6.25.4/arch/powerpc/sysdev/Makefile
95958 ===================================================================
95959 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/Makefile
95960 +++ linux-2.6.25.4/arch/powerpc/sysdev/Makefile
95961 @@ -12,6 +12,7 @@ obj-$(CONFIG_U3_DART) += dart_iommu.o
95962 obj-$(CONFIG_MMIO_NVRAM) += mmio_nvram.o
95963 obj-$(CONFIG_FSL_SOC) += fsl_soc.o
95964 obj-$(CONFIG_FSL_PCI) += fsl_pci.o
95965 +obj-$(CONFIG_FSL_LBC) += fsl_lbc.o
95966 obj-$(CONFIG_RAPIDIO) += fsl_rio.o
95967 obj-$(CONFIG_TSI108_BRIDGE) += tsi108_pci.o tsi108_dev.o
95968 obj-$(CONFIG_QUICC_ENGINE) += qe_lib/
95969 @@ -27,6 +28,7 @@ obj-$(CONFIG_PPC_INDIRECT_PCI) += indire
95970 obj-$(CONFIG_PPC_I8259) += i8259.o
95971 obj-$(CONFIG_IPIC) += ipic.o
95972 obj-$(CONFIG_4xx) += uic.o
95973 +obj-$(CONFIG_4xx_SOC) += ppc4xx_soc.o
95974 obj-$(CONFIG_XILINX_VIRTEX) += xilinx_intc.o
95975 obj-$(CONFIG_OF_RTC) += of_rtc.o
95976 ifeq ($(CONFIG_PCI),y)
95977 Index: linux-2.6.25.4/arch/powerpc/sysdev/cpm1.c
95978 ===================================================================
95979 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/cpm1.c
95980 +++ linux-2.6.25.4/arch/powerpc/sysdev/cpm1.c
95981 @@ -44,9 +44,6 @@
95982
95983 #define CPM_MAP_SIZE (0x4000)
95984
95985 -#ifndef CONFIG_PPC_CPM_NEW_BINDING
95986 -static void m8xx_cpm_dpinit(void);
95987 -#endif
95988 cpm8xx_t __iomem *cpmp; /* Pointer to comm processor space */
95989 immap_t __iomem *mpc8xx_immr;
95990 static cpic8xx_t __iomem *cpic_reg;
95991 @@ -229,12 +226,7 @@ void __init cpm_reset(void)
95992 out_be32(&siu_conf->sc_sdcr, 1);
95993 immr_unmap(siu_conf);
95994
95995 -#ifdef CONFIG_PPC_CPM_NEW_BINDING
95996 cpm_muram_init();
95997 -#else
95998 - /* Reclaim the DP memory for our use. */
95999 - m8xx_cpm_dpinit();
96000 -#endif
96001 }
96002
96003 static DEFINE_SPINLOCK(cmd_lock);
96004 @@ -257,7 +249,7 @@ int cpm_command(u32 command, u8 opcode)
96005 if ((in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG) == 0)
96006 goto out;
96007
96008 - printk(KERN_ERR "%s(): Not able to issue CPM command\n", __FUNCTION__);
96009 + printk(KERN_ERR "%s(): Not able to issue CPM command\n", __func__);
96010 ret = -EIO;
96011 out:
96012 spin_unlock_irqrestore(&cmd_lock, flags);
96013 @@ -293,110 +285,6 @@ cpm_setbrg(uint brg, uint rate)
96014 CPM_BRG_EN | CPM_BRG_DIV16);
96015 }
96016
96017 -#ifndef CONFIG_PPC_CPM_NEW_BINDING
96018 -/*
96019 - * dpalloc / dpfree bits.
96020 - */
96021 -static spinlock_t cpm_dpmem_lock;
96022 -/*
96023 - * 16 blocks should be enough to satisfy all requests
96024 - * until the memory subsystem goes up...
96025 - */
96026 -static rh_block_t cpm_boot_dpmem_rh_block[16];
96027 -static rh_info_t cpm_dpmem_info;
96028 -
96029 -#define CPM_DPMEM_ALIGNMENT 8
96030 -static u8 __iomem *dpram_vbase;
96031 -static phys_addr_t dpram_pbase;
96032 -
96033 -static void m8xx_cpm_dpinit(void)
96034 -{
96035 - spin_lock_init(&cpm_dpmem_lock);
96036 -
96037 - dpram_vbase = cpmp->cp_dpmem;
96038 - dpram_pbase = get_immrbase() + offsetof(immap_t, im_cpm.cp_dpmem);
96039 -
96040 - /* Initialize the info header */
96041 - rh_init(&cpm_dpmem_info, CPM_DPMEM_ALIGNMENT,
96042 - sizeof(cpm_boot_dpmem_rh_block) /
96043 - sizeof(cpm_boot_dpmem_rh_block[0]),
96044 - cpm_boot_dpmem_rh_block);
96045 -
96046 - /*
96047 - * Attach the usable dpmem area.
96048 - * XXX: This is actually crap. CPM_DATAONLY_BASE and
96049 - * CPM_DATAONLY_SIZE are a subset of the available dparm. It varies
96050 - * with the processor and the microcode patches applied / activated.
96051 - * But the following should be at least safe.
96052 - */
96053 - rh_attach_region(&cpm_dpmem_info, CPM_DATAONLY_BASE, CPM_DATAONLY_SIZE);
96054 -}
96055 -
96056 -/*
96057 - * Allocate the requested size worth of DP memory.
96058 - * This function returns an offset into the DPRAM area.
96059 - * Use cpm_dpram_addr() to get the virtual address of the area.
96060 - */
96061 -unsigned long cpm_dpalloc(uint size, uint align)
96062 -{
96063 - unsigned long start;
96064 - unsigned long flags;
96065 -
96066 - spin_lock_irqsave(&cpm_dpmem_lock, flags);
96067 - cpm_dpmem_info.alignment = align;
96068 - start = rh_alloc(&cpm_dpmem_info, size, "commproc");
96069 - spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
96070 -
96071 - return (uint)start;
96072 -}
96073 -EXPORT_SYMBOL(cpm_dpalloc);
96074 -
96075 -int cpm_dpfree(unsigned long offset)
96076 -{
96077 - int ret;
96078 - unsigned long flags;
96079 -
96080 - spin_lock_irqsave(&cpm_dpmem_lock, flags);
96081 - ret = rh_free(&cpm_dpmem_info, offset);
96082 - spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
96083 -
96084 - return ret;
96085 -}
96086 -EXPORT_SYMBOL(cpm_dpfree);
96087 -
96088 -unsigned long cpm_dpalloc_fixed(unsigned long offset, uint size, uint align)
96089 -{
96090 - unsigned long start;
96091 - unsigned long flags;
96092 -
96093 - spin_lock_irqsave(&cpm_dpmem_lock, flags);
96094 - cpm_dpmem_info.alignment = align;
96095 - start = rh_alloc_fixed(&cpm_dpmem_info, offset, size, "commproc");
96096 - spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
96097 -
96098 - return start;
96099 -}
96100 -EXPORT_SYMBOL(cpm_dpalloc_fixed);
96101 -
96102 -void cpm_dpdump(void)
96103 -{
96104 - rh_dump(&cpm_dpmem_info);
96105 -}
96106 -EXPORT_SYMBOL(cpm_dpdump);
96107 -
96108 -void *cpm_dpram_addr(unsigned long offset)
96109 -{
96110 - return (void *)(dpram_vbase + offset);
96111 -}
96112 -EXPORT_SYMBOL(cpm_dpram_addr);
96113 -
96114 -uint cpm_dpram_phys(u8 *addr)
96115 -{
96116 - return (dpram_pbase + (uint)(addr - dpram_vbase));
96117 -}
96118 -EXPORT_SYMBOL(cpm_dpram_phys);
96119 -#endif /* !CONFIG_PPC_CPM_NEW_BINDING */
96120 -
96121 struct cpm_ioport16 {
96122 __be16 dir, par, odr_sor, dat, intr;
96123 __be16 res[3];
96124 Index: linux-2.6.25.4/arch/powerpc/sysdev/cpm2.c
96125 ===================================================================
96126 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/cpm2.c
96127 +++ linux-2.6.25.4/arch/powerpc/sysdev/cpm2.c
96128 @@ -46,10 +46,6 @@
96129
96130 #include <sysdev/fsl_soc.h>
96131
96132 -#ifndef CONFIG_PPC_CPM_NEW_BINDING
96133 -static void cpm2_dpinit(void);
96134 -#endif
96135 -
96136 cpm_cpm2_t __iomem *cpmp; /* Pointer to comm processor space */
96137
96138 /* We allocate this here because it is used almost exclusively for
96139 @@ -71,15 +67,17 @@ void __init cpm2_reset(void)
96140
96141 /* Reclaim the DP memory for our use.
96142 */
96143 -#ifdef CONFIG_PPC_CPM_NEW_BINDING
96144 cpm_muram_init();
96145 -#else
96146 - cpm2_dpinit();
96147 -#endif
96148
96149 /* Tell everyone where the comm processor resides.
96150 */
96151 cpmp = &cpm2_immr->im_cpm;
96152 +
96153 +#ifndef CONFIG_PPC_EARLY_DEBUG_CPM
96154 + /* Reset the CPM.
96155 + */
96156 + cpm_command(CPM_CR_RST, 0);
96157 +#endif
96158 }
96159
96160 static DEFINE_SPINLOCK(cmd_lock);
96161 @@ -99,7 +97,7 @@ int cpm_command(u32 command, u8 opcode)
96162 if ((in_be32(&cpmp->cp_cpcr) & CPM_CR_FLG) == 0)
96163 goto out;
96164
96165 - printk(KERN_ERR "%s(): Not able to issue CPM command\n", __FUNCTION__);
96166 + printk(KERN_ERR "%s(): Not able to issue CPM command\n", __func__);
96167 ret = -EIO;
96168 out:
96169 spin_unlock_irqrestore(&cmd_lock, flags);
96170 @@ -347,95 +345,6 @@ int cpm2_smc_clk_setup(enum cpm_clk_targ
96171 return ret;
96172 }
96173
96174 -#ifndef CONFIG_PPC_CPM_NEW_BINDING
96175 -/*
96176 - * dpalloc / dpfree bits.
96177 - */
96178 -static spinlock_t cpm_dpmem_lock;
96179 -/* 16 blocks should be enough to satisfy all requests
96180 - * until the memory subsystem goes up... */
96181 -static rh_block_t cpm_boot_dpmem_rh_block[16];
96182 -static rh_info_t cpm_dpmem_info;
96183 -static u8 __iomem *im_dprambase;
96184 -
96185 -static void cpm2_dpinit(void)
96186 -{
96187 - spin_lock_init(&cpm_dpmem_lock);
96188 -
96189 - /* initialize the info header */
96190 - rh_init(&cpm_dpmem_info, 1,
96191 - sizeof(cpm_boot_dpmem_rh_block) /
96192 - sizeof(cpm_boot_dpmem_rh_block[0]),
96193 - cpm_boot_dpmem_rh_block);
96194 -
96195 - im_dprambase = cpm2_immr;
96196 -
96197 - /* Attach the usable dpmem area */
96198 - /* XXX: This is actually crap. CPM_DATAONLY_BASE and
96199 - * CPM_DATAONLY_SIZE is only a subset of the available dpram. It
96200 - * varies with the processor and the microcode patches activated.
96201 - * But the following should be at least safe.
96202 - */
96203 - rh_attach_region(&cpm_dpmem_info, CPM_DATAONLY_BASE, CPM_DATAONLY_SIZE);
96204 -}
96205 -
96206 -/* This function returns an index into the DPRAM area.
96207 - */
96208 -unsigned long cpm_dpalloc(uint size, uint align)
96209 -{
96210 - unsigned long start;
96211 - unsigned long flags;
96212 -
96213 - spin_lock_irqsave(&cpm_dpmem_lock, flags);
96214 - cpm_dpmem_info.alignment = align;
96215 - start = rh_alloc(&cpm_dpmem_info, size, "commproc");
96216 - spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
96217 -
96218 - return (uint)start;
96219 -}
96220 -EXPORT_SYMBOL(cpm_dpalloc);
96221 -
96222 -int cpm_dpfree(unsigned long offset)
96223 -{
96224 - int ret;
96225 - unsigned long flags;
96226 -
96227 - spin_lock_irqsave(&cpm_dpmem_lock, flags);
96228 - ret = rh_free(&cpm_dpmem_info, offset);
96229 - spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
96230 -
96231 - return ret;
96232 -}
96233 -EXPORT_SYMBOL(cpm_dpfree);
96234 -
96235 -/* not sure if this is ever needed */
96236 -unsigned long cpm_dpalloc_fixed(unsigned long offset, uint size, uint align)
96237 -{
96238 - unsigned long start;
96239 - unsigned long flags;
96240 -
96241 - spin_lock_irqsave(&cpm_dpmem_lock, flags);
96242 - cpm_dpmem_info.alignment = align;
96243 - start = rh_alloc_fixed(&cpm_dpmem_info, offset, size, "commproc");
96244 - spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
96245 -
96246 - return start;
96247 -}
96248 -EXPORT_SYMBOL(cpm_dpalloc_fixed);
96249 -
96250 -void cpm_dpdump(void)
96251 -{
96252 - rh_dump(&cpm_dpmem_info);
96253 -}
96254 -EXPORT_SYMBOL(cpm_dpdump);
96255 -
96256 -void *cpm_dpram_addr(unsigned long offset)
96257 -{
96258 - return (void *)(im_dprambase + offset);
96259 -}
96260 -EXPORT_SYMBOL(cpm_dpram_addr);
96261 -#endif /* !CONFIG_PPC_CPM_NEW_BINDING */
96262 -
96263 struct cpm2_ioports {
96264 u32 dir, par, sor, odr, dat;
96265 u32 res[3];
96266 Index: linux-2.6.25.4/arch/powerpc/sysdev/cpm_common.c
96267 ===================================================================
96268 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/cpm_common.c
96269 +++ linux-2.6.25.4/arch/powerpc/sysdev/cpm_common.c
96270 @@ -58,7 +58,6 @@ void __init udbg_init_cpm(void)
96271 }
96272 #endif
96273
96274 -#ifdef CONFIG_PPC_CPM_NEW_BINDING
96275 static spinlock_t cpm_muram_lock;
96276 static rh_block_t cpm_boot_muram_rh_block[16];
96277 static rh_info_t cpm_muram_info;
96278 @@ -199,5 +198,3 @@ dma_addr_t cpm_muram_dma(void __iomem *a
96279 return muram_pbase + ((u8 __iomem *)addr - muram_vbase);
96280 }
96281 EXPORT_SYMBOL(cpm_muram_dma);
96282 -
96283 -#endif /* CONFIG_PPC_CPM_NEW_BINDING */
96284 Index: linux-2.6.25.4/arch/powerpc/sysdev/dart_iommu.c
96285 ===================================================================
96286 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/dart_iommu.c
96287 +++ linux-2.6.25.4/arch/powerpc/sysdev/dart_iommu.c
96288 @@ -37,6 +37,7 @@
96289 #include <linux/dma-mapping.h>
96290 #include <linux/vmalloc.h>
96291 #include <linux/suspend.h>
96292 +#include <linux/lmb.h>
96293 #include <asm/io.h>
96294 #include <asm/prom.h>
96295 #include <asm/iommu.h>
96296 @@ -44,7 +45,6 @@
96297 #include <asm/machdep.h>
96298 #include <asm/abs_addr.h>
96299 #include <asm/cacheflush.h>
96300 -#include <asm/lmb.h>
96301 #include <asm/ppc-pci.h>
96302
96303 #include "dart.h"
96304 Index: linux-2.6.25.4/arch/powerpc/sysdev/fsl_lbc.c
96305 ===================================================================
96306 --- /dev/null
96307 +++ linux-2.6.25.4/arch/powerpc/sysdev/fsl_lbc.c
96308 @@ -0,0 +1,129 @@
96309 +/*
96310 + * Freescale LBC and UPM routines.
96311 + *
96312 + * Copyright (c) 2007-2008 MontaVista Software, Inc.
96313 + *
96314 + * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
96315 + *
96316 + * This program is free software; you can redistribute it and/or modify
96317 + * it under the terms of the GNU General Public License as published by
96318 + * the Free Software Foundation; either version 2 of the License, or
96319 + * (at your option) any later version.
96320 + */
96321 +
96322 +#include <linux/kernel.h>
96323 +#include <linux/of.h>
96324 +#include <asm/fsl_lbc.h>
96325 +
96326 +spinlock_t fsl_lbc_lock = __SPIN_LOCK_UNLOCKED(fsl_lbc_lock);
96327 +
96328 +struct fsl_lbc_regs __iomem *fsl_lbc_regs;
96329 +EXPORT_SYMBOL(fsl_lbc_regs);
96330 +
96331 +static char __initdata *compat_lbc[] = {
96332 + "fsl,pq2-localbus",
96333 + "fsl,pq2pro-localbus",
96334 + "fsl,pq3-localbus",
96335 + "fsl,elbc",
96336 +};
96337 +
96338 +static int __init fsl_lbc_init(void)
96339 +{
96340 + struct device_node *lbus;
96341 + int i;
96342 +
96343 + for (i = 0; i < ARRAY_SIZE(compat_lbc); i++) {
96344 + lbus = of_find_compatible_node(NULL, NULL, compat_lbc[i]);
96345 + if (lbus)
96346 + goto found;
96347 + }
96348 + return -ENODEV;
96349 +
96350 +found:
96351 + fsl_lbc_regs = of_iomap(lbus, 0);
96352 + of_node_put(lbus);
96353 + if (!fsl_lbc_regs)
96354 + return -ENOMEM;
96355 + return 0;
96356 +}
96357 +arch_initcall(fsl_lbc_init);
96358 +
96359 +/**
96360 + * fsl_lbc_find - find Localbus bank
96361 + * @addr_base: base address of the memory bank
96362 + *
96363 + * This function walks LBC banks comparing "Base address" field of the BR
96364 + * registers with the supplied addr_base argument. When bases match this
96365 + * function returns bank number (starting with 0), otherwise it returns
96366 + * appropriate errno value.
96367 + */
96368 +int fsl_lbc_find(phys_addr_t addr_base)
96369 +{
96370 + int i;
96371 +
96372 + if (!fsl_lbc_regs)
96373 + return -ENODEV;
96374 +
96375 + for (i = 0; i < ARRAY_SIZE(fsl_lbc_regs->bank); i++) {
96376 + __be32 br = in_be32(&fsl_lbc_regs->bank[i].br);
96377 + __be32 or = in_be32(&fsl_lbc_regs->bank[i].or);
96378 +
96379 + if (br & BR_V && (br & or & BR_BA) == addr_base)
96380 + return i;
96381 + }
96382 +
96383 + return -ENOENT;
96384 +}
96385 +EXPORT_SYMBOL(fsl_lbc_find);
96386 +
96387 +/**
96388 + * fsl_upm_find - find pre-programmed UPM via base address
96389 + * @addr_base: base address of the memory bank controlled by the UPM
96390 + * @upm: pointer to the allocated fsl_upm structure
96391 + *
96392 + * This function fills fsl_upm structure so you can use it with the rest of
96393 + * UPM API. On success this function returns 0, otherwise it returns
96394 + * appropriate errno value.
96395 + */
96396 +int fsl_upm_find(phys_addr_t addr_base, struct fsl_upm *upm)
96397 +{
96398 + int bank;
96399 + __be32 br;
96400 +
96401 + bank = fsl_lbc_find(addr_base);
96402 + if (bank < 0)
96403 + return bank;
96404 +
96405 + br = in_be32(&fsl_lbc_regs->bank[bank].br);
96406 +
96407 + switch (br & BR_MSEL) {
96408 + case BR_MS_UPMA:
96409 + upm->mxmr = &fsl_lbc_regs->mamr;
96410 + break;
96411 + case BR_MS_UPMB:
96412 + upm->mxmr = &fsl_lbc_regs->mbmr;
96413 + break;
96414 + case BR_MS_UPMC:
96415 + upm->mxmr = &fsl_lbc_regs->mcmr;
96416 + break;
96417 + default:
96418 + return -EINVAL;
96419 + }
96420 +
96421 + switch (br & BR_PS) {
96422 + case BR_PS_8:
96423 + upm->width = 8;
96424 + break;
96425 + case BR_PS_16:
96426 + upm->width = 16;
96427 + break;
96428 + case BR_PS_32:
96429 + upm->width = 32;
96430 + break;
96431 + default:
96432 + return -EINVAL;
96433 + }
96434 +
96435 + return 0;
96436 +}
96437 +EXPORT_SYMBOL(fsl_upm_find);
96438 Index: linux-2.6.25.4/arch/powerpc/sysdev/fsl_soc.c
96439 ===================================================================
96440 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/fsl_soc.c
96441 +++ linux-2.6.25.4/arch/powerpc/sysdev/fsl_soc.c
96442 @@ -75,6 +75,33 @@ phys_addr_t get_immrbase(void)
96443
96444 EXPORT_SYMBOL(get_immrbase);
96445
96446 +static u32 sysfreq = -1;
96447 +
96448 +u32 fsl_get_sys_freq(void)
96449 +{
96450 + struct device_node *soc;
96451 + const u32 *prop;
96452 + int size;
96453 +
96454 + if (sysfreq != -1)
96455 + return sysfreq;
96456 +
96457 + soc = of_find_node_by_type(NULL, "soc");
96458 + if (!soc)
96459 + return -1;
96460 +
96461 + prop = of_get_property(soc, "clock-frequency", &size);
96462 + if (!prop || size != sizeof(*prop) || *prop == 0)
96463 + prop = of_get_property(soc, "bus-frequency", &size);
96464 +
96465 + if (prop && size == sizeof(*prop))
96466 + sysfreq = *prop;
96467 +
96468 + of_node_put(soc);
96469 + return sysfreq;
96470 +}
96471 +EXPORT_SYMBOL(fsl_get_sys_freq);
96472 +
96473 #if defined(CONFIG_CPM2) || defined(CONFIG_QUICC_ENGINE) || defined(CONFIG_8xx)
96474
96475 static u32 brgfreq = -1;
96476 @@ -516,9 +543,9 @@ arch_initcall(fsl_i2c_of_init);
96477 static int __init mpc83xx_wdt_init(void)
96478 {
96479 struct resource r;
96480 - struct device_node *soc, *np;
96481 + struct device_node *np;
96482 struct platform_device *dev;
96483 - const unsigned int *freq;
96484 + u32 freq = fsl_get_sys_freq();
96485 int ret;
96486
96487 np = of_find_compatible_node(NULL, "watchdog", "mpc83xx_wdt");
96488 @@ -528,19 +555,6 @@ static int __init mpc83xx_wdt_init(void)
96489 goto nodev;
96490 }
96491
96492 - soc = of_find_node_by_type(NULL, "soc");
96493 -
96494 - if (!soc) {
96495 - ret = -ENODEV;
96496 - goto nosoc;
96497 - }
96498 -
96499 - freq = of_get_property(soc, "bus-frequency", NULL);
96500 - if (!freq) {
96501 - ret = -ENODEV;
96502 - goto err;
96503 - }
96504 -
96505 memset(&r, 0, sizeof(r));
96506
96507 ret = of_address_to_resource(np, 0, &r);
96508 @@ -553,20 +567,16 @@ static int __init mpc83xx_wdt_init(void)
96509 goto err;
96510 }
96511
96512 - ret = platform_device_add_data(dev, freq, sizeof(int));
96513 + ret = platform_device_add_data(dev, &freq, sizeof(freq));
96514 if (ret)
96515 goto unreg;
96516
96517 - of_node_put(soc);
96518 of_node_put(np);
96519 -
96520 return 0;
96521
96522 unreg:
96523 platform_device_unregister(dev);
96524 err:
96525 - of_node_put(soc);
96526 -nosoc:
96527 of_node_put(np);
96528 nodev:
96529 return ret;
96530 @@ -735,547 +745,6 @@ err:
96531
96532 arch_initcall(fsl_usb_of_init);
96533
96534 -#ifndef CONFIG_PPC_CPM_NEW_BINDING
96535 -#ifdef CONFIG_CPM2
96536 -
96537 -extern void init_scc_ioports(struct fs_uart_platform_info*);
96538 -
96539 -static const char fcc_regs[] = "fcc_regs";
96540 -static const char fcc_regs_c[] = "fcc_regs_c";
96541 -static const char fcc_pram[] = "fcc_pram";
96542 -static char bus_id[9][BUS_ID_SIZE];
96543 -
96544 -static int __init fs_enet_of_init(void)
96545 -{
96546 - struct device_node *np;
96547 - unsigned int i;
96548 - struct platform_device *fs_enet_dev;
96549 - struct resource res;
96550 - int ret;
96551 -
96552 - for (np = NULL, i = 0;
96553 - (np = of_find_compatible_node(np, "network", "fs_enet")) != NULL;
96554 - i++) {
96555 - struct resource r[4];
96556 - struct device_node *phy, *mdio;
96557 - struct fs_platform_info fs_enet_data;
96558 - const unsigned int *id, *phy_addr, *phy_irq;
96559 - const void *mac_addr;
96560 - const phandle *ph;
96561 - const char *model;
96562 -
96563 - memset(r, 0, sizeof(r));
96564 - memset(&fs_enet_data, 0, sizeof(fs_enet_data));
96565 -
96566 - ret = of_address_to_resource(np, 0, &r[0]);
96567 - if (ret)
96568 - goto err;
96569 - r[0].name = fcc_regs;
96570 -
96571 - ret = of_address_to_resource(np, 1, &r[1]);
96572 - if (ret)
96573 - goto err;
96574 - r[1].name = fcc_pram;
96575 -
96576 - ret = of_address_to_resource(np, 2, &r[2]);
96577 - if (ret)
96578 - goto err;
96579 - r[2].name = fcc_regs_c;
96580 - fs_enet_data.fcc_regs_c = r[2].start;
96581 -
96582 - of_irq_to_resource(np, 0, &r[3]);
96583 -
96584 - fs_enet_dev =
96585 - platform_device_register_simple("fsl-cpm-fcc", i, &r[0], 4);
96586 -
96587 - if (IS_ERR(fs_enet_dev)) {
96588 - ret = PTR_ERR(fs_enet_dev);
96589 - goto err;
96590 - }
96591 -
96592 - model = of_get_property(np, "model", NULL);
96593 - if (model == NULL) {
96594 - ret = -ENODEV;
96595 - goto unreg;
96596 - }
96597 -
96598 - mac_addr = of_get_mac_address(np);
96599 - if (mac_addr)
96600 - memcpy(fs_enet_data.macaddr, mac_addr, 6);
96601 -
96602 - ph = of_get_property(np, "phy-handle", NULL);
96603 - phy = of_find_node_by_phandle(*ph);
96604 -
96605 - if (phy == NULL) {
96606 - ret = -ENODEV;
96607 - goto unreg;
96608 - }
96609 -
96610 - phy_addr = of_get_property(phy, "reg", NULL);
96611 - fs_enet_data.phy_addr = *phy_addr;
96612 -
96613 - phy_irq = of_get_property(phy, "interrupts", NULL);
96614 -
96615 - id = of_get_property(np, "device-id", NULL);
96616 - fs_enet_data.fs_no = *id;
96617 - strcpy(fs_enet_data.fs_type, model);
96618 -
96619 - mdio = of_get_parent(phy);
96620 - ret = of_address_to_resource(mdio, 0, &res);
96621 - if (ret) {
96622 - of_node_put(phy);
96623 - of_node_put(mdio);
96624 - goto unreg;
96625 - }
96626 -
96627 - fs_enet_data.clk_rx = *((u32 *)of_get_property(np,
96628 - "rx-clock", NULL));
96629 - fs_enet_data.clk_tx = *((u32 *)of_get_property(np,
96630 - "tx-clock", NULL));
96631 -
96632 - if (strstr(model, "FCC")) {
96633 - int fcc_index = *id - 1;
96634 - const unsigned char *mdio_bb_prop;
96635 -
96636 - fs_enet_data.dpram_offset = (u32)cpm_dpram_addr(0);
96637 - fs_enet_data.rx_ring = 32;
96638 - fs_enet_data.tx_ring = 32;
96639 - fs_enet_data.rx_copybreak = 240;
96640 - fs_enet_data.use_napi = 0;
96641 - fs_enet_data.napi_weight = 17;
96642 - fs_enet_data.mem_offset = FCC_MEM_OFFSET(fcc_index);
96643 - fs_enet_data.cp_page = CPM_CR_FCC_PAGE(fcc_index);
96644 - fs_enet_data.cp_block = CPM_CR_FCC_SBLOCK(fcc_index);
96645 -
96646 - snprintf((char*)&bus_id[(*id)], BUS_ID_SIZE, "%x:%02x",
96647 - (u32)res.start, fs_enet_data.phy_addr);
96648 - fs_enet_data.bus_id = (char*)&bus_id[(*id)];
96649 - fs_enet_data.init_ioports = init_fcc_ioports;
96650 -
96651 - mdio_bb_prop = of_get_property(phy, "bitbang", NULL);
96652 - if (mdio_bb_prop) {
96653 - struct platform_device *fs_enet_mdio_bb_dev;
96654 - struct fs_mii_bb_platform_info fs_enet_mdio_bb_data;
96655 -
96656 - fs_enet_mdio_bb_dev =
96657 - platform_device_register_simple("fsl-bb-mdio",
96658 - i, NULL, 0);
96659 - memset(&fs_enet_mdio_bb_data, 0,
96660 - sizeof(struct fs_mii_bb_platform_info));
96661 - fs_enet_mdio_bb_data.mdio_dat.bit =
96662 - mdio_bb_prop[0];
96663 - fs_enet_mdio_bb_data.mdio_dir.bit =
96664 - mdio_bb_prop[1];
96665 - fs_enet_mdio_bb_data.mdc_dat.bit =
96666 - mdio_bb_prop[2];
96667 - fs_enet_mdio_bb_data.mdio_port =
96668 - mdio_bb_prop[3];
96669 - fs_enet_mdio_bb_data.mdc_port =
96670 - mdio_bb_prop[4];
96671 - fs_enet_mdio_bb_data.delay =
96672 - mdio_bb_prop[5];
96673 -
96674 - fs_enet_mdio_bb_data.irq[0] = phy_irq[0];
96675 - fs_enet_mdio_bb_data.irq[1] = -1;
96676 - fs_enet_mdio_bb_data.irq[2] = -1;
96677 - fs_enet_mdio_bb_data.irq[3] = phy_irq[0];
96678 - fs_enet_mdio_bb_data.irq[31] = -1;
96679 -
96680 - fs_enet_mdio_bb_data.mdio_dat.offset =
96681 - (u32)&cpm2_immr->im_ioport.iop_pdatc;
96682 - fs_enet_mdio_bb_data.mdio_dir.offset =
96683 - (u32)&cpm2_immr->im_ioport.iop_pdirc;
96684 - fs_enet_mdio_bb_data.mdc_dat.offset =
96685 - (u32)&cpm2_immr->im_ioport.iop_pdatc;
96686 -
96687 - ret = platform_device_add_data(
96688 - fs_enet_mdio_bb_dev,
96689 - &fs_enet_mdio_bb_data,
96690 - sizeof(struct fs_mii_bb_platform_info));
96691 - if (ret)
96692 - goto unreg;
96693 - }
96694 -
96695 - of_node_put(phy);
96696 - of_node_put(mdio);
96697 -
96698 - ret = platform_device_add_data(fs_enet_dev, &fs_enet_data,
96699 - sizeof(struct
96700 - fs_platform_info));
96701 - if (ret)
96702 - goto unreg;
96703 - }
96704 - }
96705 - return 0;
96706 -
96707 -unreg:
96708 - platform_device_unregister(fs_enet_dev);
96709 -err:
96710 - return ret;
96711 -}
96712 -
96713 -arch_initcall(fs_enet_of_init);
96714 -
96715 -static const char scc_regs[] = "regs";
96716 -static const char scc_pram[] = "pram";
96717 -
96718 -static int __init cpm_uart_of_init(void)
96719 -{
96720 - struct device_node *np;
96721 - unsigned int i;
96722 - struct platform_device *cpm_uart_dev;
96723 - int ret;
96724 -
96725 - for (np = NULL, i = 0;
96726 - (np = of_find_compatible_node(np, "serial", "cpm_uart")) != NULL;
96727 - i++) {
96728 - struct resource r[3];
96729 - struct fs_uart_platform_info cpm_uart_data;
96730 - const int *id;
96731 - const char *model;
96732 -
96733 - memset(r, 0, sizeof(r));
96734 - memset(&cpm_uart_data, 0, sizeof(cpm_uart_data));
96735 -
96736 - ret = of_address_to_resource(np, 0, &r[0]);
96737 - if (ret)
96738 - goto err;
96739 -
96740 - r[0].name = scc_regs;
96741 -
96742 - ret = of_address_to_resource(np, 1, &r[1]);
96743 - if (ret)
96744 - goto err;
96745 - r[1].name = scc_pram;
96746 -
96747 - of_irq_to_resource(np, 0, &r[2]);
96748 -
96749 - cpm_uart_dev =
96750 - platform_device_register_simple("fsl-cpm-scc:uart", i, &r[0], 3);
96751 -
96752 - if (IS_ERR(cpm_uart_dev)) {
96753 - ret = PTR_ERR(cpm_uart_dev);
96754 - goto err;
96755 - }
96756 -
96757 - id = of_get_property(np, "device-id", NULL);
96758 - cpm_uart_data.fs_no = *id;
96759 -
96760 - model = of_get_property(np, "model", NULL);
96761 - strcpy(cpm_uart_data.fs_type, model);
96762 -
96763 - cpm_uart_data.uart_clk = ppc_proc_freq;
96764 -
96765 - cpm_uart_data.tx_num_fifo = 4;
96766 - cpm_uart_data.tx_buf_size = 32;
96767 - cpm_uart_data.rx_num_fifo = 4;
96768 - cpm_uart_data.rx_buf_size = 32;
96769 - cpm_uart_data.clk_rx = *((u32 *)of_get_property(np,
96770 - "rx-clock", NULL));
96771 - cpm_uart_data.clk_tx = *((u32 *)of_get_property(np,
96772 - "tx-clock", NULL));
96773 -
96774 - ret =
96775 - platform_device_add_data(cpm_uart_dev, &cpm_uart_data,
96776 - sizeof(struct
96777 - fs_uart_platform_info));
96778 - if (ret)
96779 - goto unreg;
96780 - }
96781 -
96782 - return 0;
96783 -
96784 -unreg:
96785 - platform_device_unregister(cpm_uart_dev);
96786 -err:
96787 - return ret;
96788 -}
96789 -
96790 -arch_initcall(cpm_uart_of_init);
96791 -#endif /* CONFIG_CPM2 */
96792 -
96793 -#ifdef CONFIG_8xx
96794 -
96795 -extern void init_scc_ioports(struct fs_platform_info*);
96796 -extern int platform_device_skip(const char *model, int id);
96797 -
96798 -static int __init fs_enet_mdio_of_init(void)
96799 -{
96800 - struct device_node *np;
96801 - unsigned int i;
96802 - struct platform_device *mdio_dev;
96803 - struct resource res;
96804 - int ret;
96805 -
96806 - for (np = NULL, i = 0;
96807 - (np = of_find_compatible_node(np, "mdio", "fs_enet")) != NULL;
96808 - i++) {
96809 - struct fs_mii_fec_platform_info mdio_data;
96810 -
96811 - memset(&res, 0, sizeof(res));
96812 - memset(&mdio_data, 0, sizeof(mdio_data));
96813 -
96814 - ret = of_address_to_resource(np, 0, &res);
96815 - if (ret)
96816 - goto err;
96817 -
96818 - mdio_dev =
96819 - platform_device_register_simple("fsl-cpm-fec-mdio",
96820 - res.start, &res, 1);
96821 - if (IS_ERR(mdio_dev)) {
96822 - ret = PTR_ERR(mdio_dev);
96823 - goto err;
96824 - }
96825 -
96826 - mdio_data.mii_speed = ((((ppc_proc_freq + 4999999) / 2500000) / 2) & 0x3F) << 1;
96827 -
96828 - ret =
96829 - platform_device_add_data(mdio_dev, &mdio_data,
96830 - sizeof(struct fs_mii_fec_platform_info));
96831 - if (ret)
96832 - goto unreg;
96833 - }
96834 - return 0;
96835 -
96836 -unreg:
96837 - platform_device_unregister(mdio_dev);
96838 -err:
96839 - return ret;
96840 -}
96841 -
96842 -arch_initcall(fs_enet_mdio_of_init);
96843 -
96844 -static const char *enet_regs = "regs";
96845 -static const char *enet_pram = "pram";
96846 -static const char *enet_irq = "interrupt";
96847 -static char bus_id[9][BUS_ID_SIZE];
96848 -
96849 -static int __init fs_enet_of_init(void)
96850 -{
96851 - struct device_node *np;
96852 - unsigned int i;
96853 - struct platform_device *fs_enet_dev = NULL;
96854 - struct resource res;
96855 - int ret;
96856 -
96857 - for (np = NULL, i = 0;
96858 - (np = of_find_compatible_node(np, "network", "fs_enet")) != NULL;
96859 - i++) {
96860 - struct resource r[4];
96861 - struct device_node *phy = NULL, *mdio = NULL;
96862 - struct fs_platform_info fs_enet_data;
96863 - const unsigned int *id;
96864 - const unsigned int *phy_addr;
96865 - const void *mac_addr;
96866 - const phandle *ph;
96867 - const char *model;
96868 -
96869 - memset(r, 0, sizeof(r));
96870 - memset(&fs_enet_data, 0, sizeof(fs_enet_data));
96871 -
96872 - model = of_get_property(np, "model", NULL);
96873 - if (model == NULL) {
96874 - ret = -ENODEV;
96875 - goto unreg;
96876 - }
96877 -
96878 - id = of_get_property(np, "device-id", NULL);
96879 - fs_enet_data.fs_no = *id;
96880 -
96881 - if (platform_device_skip(model, *id))
96882 - continue;
96883 -
96884 - ret = of_address_to_resource(np, 0, &r[0]);
96885 - if (ret)
96886 - goto err;
96887 - r[0].name = enet_regs;
96888 -
96889 - mac_addr = of_get_mac_address(np);
96890 - if (mac_addr)
96891 - memcpy(fs_enet_data.macaddr, mac_addr, 6);
96892 -
96893 - ph = of_get_property(np, "phy-handle", NULL);
96894 - if (ph != NULL)
96895 - phy = of_find_node_by_phandle(*ph);
96896 -
96897 - if (phy != NULL) {
96898 - phy_addr = of_get_property(phy, "reg", NULL);
96899 - fs_enet_data.phy_addr = *phy_addr;
96900 - fs_enet_data.has_phy = 1;
96901 -
96902 - mdio = of_get_parent(phy);
96903 - ret = of_address_to_resource(mdio, 0, &res);
96904 - if (ret) {
96905 - of_node_put(phy);
96906 - of_node_put(mdio);
96907 - goto unreg;
96908 - }
96909 - }
96910 -
96911 - model = of_get_property(np, "model", NULL);
96912 - strcpy(fs_enet_data.fs_type, model);
96913 -
96914 - if (strstr(model, "FEC")) {
96915 - r[1].start = r[1].end = irq_of_parse_and_map(np, 0);
96916 - r[1].flags = IORESOURCE_IRQ;
96917 - r[1].name = enet_irq;
96918 -
96919 - fs_enet_dev =
96920 - platform_device_register_simple("fsl-cpm-fec", i, &r[0], 2);
96921 -
96922 - if (IS_ERR(fs_enet_dev)) {
96923 - ret = PTR_ERR(fs_enet_dev);
96924 - goto err;
96925 - }
96926 -
96927 - fs_enet_data.rx_ring = 128;
96928 - fs_enet_data.tx_ring = 16;
96929 - fs_enet_data.rx_copybreak = 240;
96930 - fs_enet_data.use_napi = 1;
96931 - fs_enet_data.napi_weight = 17;
96932 -
96933 - snprintf((char*)&bus_id[i], BUS_ID_SIZE, "%x:%02x",
96934 - (u32)res.start, fs_enet_data.phy_addr);
96935 - fs_enet_data.bus_id = (char*)&bus_id[i];
96936 - fs_enet_data.init_ioports = init_fec_ioports;
96937 - }
96938 - if (strstr(model, "SCC")) {
96939 - ret = of_address_to_resource(np, 1, &r[1]);
96940 - if (ret)
96941 - goto err;
96942 - r[1].name = enet_pram;
96943 -
96944 - r[2].start = r[2].end = irq_of_parse_and_map(np, 0);
96945 - r[2].flags = IORESOURCE_IRQ;
96946 - r[2].name = enet_irq;
96947 -
96948 - fs_enet_dev =
96949 - platform_device_register_simple("fsl-cpm-scc", i, &r[0], 3);
96950 -
96951 - if (IS_ERR(fs_enet_dev)) {
96952 - ret = PTR_ERR(fs_enet_dev);
96953 - goto err;
96954 - }
96955 -
96956 - fs_enet_data.rx_ring = 64;
96957 - fs_enet_data.tx_ring = 8;
96958 - fs_enet_data.rx_copybreak = 240;
96959 - fs_enet_data.use_napi = 1;
96960 - fs_enet_data.napi_weight = 17;
96961 -
96962 - snprintf((char*)&bus_id[i], BUS_ID_SIZE, "%s", "fixed@10:1");
96963 - fs_enet_data.bus_id = (char*)&bus_id[i];
96964 - fs_enet_data.init_ioports = init_scc_ioports;
96965 - }
96966 -
96967 - of_node_put(phy);
96968 - of_node_put(mdio);
96969 -
96970 - ret = platform_device_add_data(fs_enet_dev, &fs_enet_data,
96971 - sizeof(struct
96972 - fs_platform_info));
96973 - if (ret)
96974 - goto unreg;
96975 - }
96976 - return 0;
96977 -
96978 -unreg:
96979 - platform_device_unregister(fs_enet_dev);
96980 -err:
96981 - return ret;
96982 -}
96983 -
96984 -arch_initcall(fs_enet_of_init);
96985 -
96986 -static int __init fsl_pcmcia_of_init(void)
96987 -{
96988 - struct device_node *np;
96989 - /*
96990 - * Register all the devices which type is "pcmcia"
96991 - */
96992 - for_each_compatible_node(np, "pcmcia", "fsl,pq-pcmcia")
96993 - of_platform_device_create(np, "m8xx-pcmcia", NULL);
96994 - return 0;
96995 -}
96996 -
96997 -arch_initcall(fsl_pcmcia_of_init);
96998 -
96999 -static const char *smc_regs = "regs";
97000 -static const char *smc_pram = "pram";
97001 -
97002 -static int __init cpm_smc_uart_of_init(void)
97003 -{
97004 - struct device_node *np;
97005 - unsigned int i;
97006 - struct platform_device *cpm_uart_dev;
97007 - int ret;
97008 -
97009 - for (np = NULL, i = 0;
97010 - (np = of_find_compatible_node(np, "serial", "cpm_uart")) != NULL;
97011 - i++) {
97012 - struct resource r[3];
97013 - struct fs_uart_platform_info cpm_uart_data;
97014 - const int *id;
97015 - const char *model;
97016 -
97017 - memset(r, 0, sizeof(r));
97018 - memset(&cpm_uart_data, 0, sizeof(cpm_uart_data));
97019 -
97020 - ret = of_address_to_resource(np, 0, &r[0]);
97021 - if (ret)
97022 - goto err;
97023 -
97024 - r[0].name = smc_regs;
97025 -
97026 - ret = of_address_to_resource(np, 1, &r[1]);
97027 - if (ret)
97028 - goto err;
97029 - r[1].name = smc_pram;
97030 -
97031 - r[2].start = r[2].end = irq_of_parse_and_map(np, 0);
97032 - r[2].flags = IORESOURCE_IRQ;
97033 -
97034 - cpm_uart_dev =
97035 - platform_device_register_simple("fsl-cpm-smc:uart", i, &r[0], 3);
97036 -
97037 - if (IS_ERR(cpm_uart_dev)) {
97038 - ret = PTR_ERR(cpm_uart_dev);
97039 - goto err;
97040 - }
97041 -
97042 - model = of_get_property(np, "model", NULL);
97043 - strcpy(cpm_uart_data.fs_type, model);
97044 -
97045 - id = of_get_property(np, "device-id", NULL);
97046 - cpm_uart_data.fs_no = *id;
97047 - cpm_uart_data.uart_clk = ppc_proc_freq;
97048 -
97049 - cpm_uart_data.tx_num_fifo = 4;
97050 - cpm_uart_data.tx_buf_size = 32;
97051 - cpm_uart_data.rx_num_fifo = 4;
97052 - cpm_uart_data.rx_buf_size = 32;
97053 -
97054 - ret =
97055 - platform_device_add_data(cpm_uart_dev, &cpm_uart_data,
97056 - sizeof(struct
97057 - fs_uart_platform_info));
97058 - if (ret)
97059 - goto unreg;
97060 - }
97061 -
97062 - return 0;
97063 -
97064 -unreg:
97065 - platform_device_unregister(cpm_uart_dev);
97066 -err:
97067 - return ret;
97068 -}
97069 -
97070 -arch_initcall(cpm_smc_uart_of_init);
97071 -
97072 -#endif /* CONFIG_8xx */
97073 -#endif /* CONFIG_PPC_CPM_NEW_BINDING */
97074 -
97075 static int __init of_fsl_spi_probe(char *type, char *compatible, u32 sysclk,
97076 struct spi_board_info *board_infos,
97077 unsigned int num_board_infos,
97078 @@ -1371,25 +840,9 @@ int __init fsl_spi_init(struct spi_board
97079 sysclk = get_brgfreq();
97080 #endif
97081 if (sysclk == -1) {
97082 - struct device_node *np;
97083 - const u32 *freq;
97084 - int size;
97085 -
97086 - np = of_find_node_by_type(NULL, "soc");
97087 - if (!np)
97088 + sysclk = fsl_get_sys_freq();
97089 + if (sysclk == -1)
97090 return -ENODEV;
97091 -
97092 - freq = of_get_property(np, "clock-frequency", &size);
97093 - if (!freq || size != sizeof(*freq) || *freq == 0) {
97094 - freq = of_get_property(np, "bus-frequency", &size);
97095 - if (!freq || size != sizeof(*freq) || *freq == 0) {
97096 - of_node_put(np);
97097 - return -ENODEV;
97098 - }
97099 - }
97100 -
97101 - sysclk = *freq;
97102 - of_node_put(np);
97103 }
97104
97105 ret = of_fsl_spi_probe(NULL, "fsl,spi", sysclk, board_infos,
97106 Index: linux-2.6.25.4/arch/powerpc/sysdev/fsl_soc.h
97107 ===================================================================
97108 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/fsl_soc.h
97109 +++ linux-2.6.25.4/arch/powerpc/sysdev/fsl_soc.h
97110 @@ -7,6 +7,7 @@
97111 extern phys_addr_t get_immrbase(void);
97112 extern u32 get_brgfreq(void);
97113 extern u32 get_baudrate(void);
97114 +extern u32 fsl_get_sys_freq(void);
97115
97116 struct spi_board_info;
97117
97118 Index: linux-2.6.25.4/arch/powerpc/sysdev/mpic.c
97119 ===================================================================
97120 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/mpic.c
97121 +++ linux-2.6.25.4/arch/powerpc/sysdev/mpic.c
97122 @@ -175,13 +175,16 @@ static inline void _mpic_write(enum mpic
97123 switch(type) {
97124 #ifdef CONFIG_PPC_DCR
97125 case mpic_access_dcr:
97126 - return dcr_write(rb->dhost, reg, value);
97127 + dcr_write(rb->dhost, reg, value);
97128 + break;
97129 #endif
97130 case mpic_access_mmio_be:
97131 - return out_be32(rb->base + (reg >> 2), value);
97132 + out_be32(rb->base + (reg >> 2), value);
97133 + break;
97134 case mpic_access_mmio_le:
97135 default:
97136 - return out_le32(rb->base + (reg >> 2), value);
97137 + out_le32(rb->base + (reg >> 2), value);
97138 + break;
97139 }
97140 }
97141
97142 @@ -1000,7 +1003,7 @@ struct mpic * __init mpic_alloc(struct d
97143 const char *name)
97144 {
97145 struct mpic *mpic;
97146 - u32 reg;
97147 + u32 greg_feature;
97148 const char *vers;
97149 int i;
97150 int intvec_top;
97151 @@ -1064,7 +1067,8 @@ struct mpic * __init mpic_alloc(struct d
97152
97153 /* Look for protected sources */
97154 if (node) {
97155 - unsigned int psize, bits, mapsize;
97156 + int psize;
97157 + unsigned int bits, mapsize;
97158 const u32 *psrc =
97159 of_get_property(node, "protected-sources", &psize);
97160 if (psrc) {
97161 @@ -1107,8 +1111,7 @@ struct mpic * __init mpic_alloc(struct d
97162 * in, try to obtain one
97163 */
97164 if (paddr == 0 && !(mpic->flags & MPIC_USES_DCR)) {
97165 - const u32 *reg;
97166 - reg = of_get_property(node, "reg", NULL);
97167 + const u32 *reg = of_get_property(node, "reg", NULL);
97168 BUG_ON(reg == NULL);
97169 paddr = of_translate_address(node, reg);
97170 BUG_ON(paddr == OF_BAD_ADDR);
97171 @@ -1137,12 +1140,13 @@ struct mpic * __init mpic_alloc(struct d
97172 * MPICs, num sources as well. On ISU MPICs, sources are counted
97173 * as ISUs are added
97174 */
97175 - reg = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0));
97176 - mpic->num_cpus = ((reg & MPIC_GREG_FEATURE_LAST_CPU_MASK)
97177 + greg_feature = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0));
97178 + mpic->num_cpus = ((greg_feature & MPIC_GREG_FEATURE_LAST_CPU_MASK)
97179 >> MPIC_GREG_FEATURE_LAST_CPU_SHIFT) + 1;
97180 if (isu_size == 0)
97181 - mpic->num_sources = ((reg & MPIC_GREG_FEATURE_LAST_SRC_MASK)
97182 - >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT) + 1;
97183 + mpic->num_sources =
97184 + ((greg_feature & MPIC_GREG_FEATURE_LAST_SRC_MASK)
97185 + >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT) + 1;
97186
97187 /* Map the per-CPU registers */
97188 for (i = 0; i < mpic->num_cpus; i++) {
97189 @@ -1161,7 +1165,7 @@ struct mpic * __init mpic_alloc(struct d
97190 mpic->isu_mask = (1 << mpic->isu_shift) - 1;
97191
97192 /* Display version */
97193 - switch (reg & MPIC_GREG_FEATURE_VERSION_MASK) {
97194 + switch (greg_feature & MPIC_GREG_FEATURE_VERSION_MASK) {
97195 case 1:
97196 vers = "1.0";
97197 break;
97198 @@ -1321,7 +1325,7 @@ void __init mpic_set_serial_int(struct m
97199
97200 void mpic_irq_set_priority(unsigned int irq, unsigned int pri)
97201 {
97202 - int is_ipi;
97203 + unsigned int is_ipi;
97204 struct mpic *mpic = mpic_find(irq, &is_ipi);
97205 unsigned int src = mpic_irq_to_hw(irq);
97206 unsigned long flags;
97207 @@ -1344,7 +1348,7 @@ void mpic_irq_set_priority(unsigned int
97208
97209 unsigned int mpic_irq_get_priority(unsigned int irq)
97210 {
97211 - int is_ipi;
97212 + unsigned int is_ipi;
97213 struct mpic *mpic = mpic_find(irq, &is_ipi);
97214 unsigned int src = mpic_irq_to_hw(irq);
97215 unsigned long flags;
97216 @@ -1406,11 +1410,6 @@ void mpic_cpu_set_priority(int prio)
97217 mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), prio);
97218 }
97219
97220 -/*
97221 - * XXX: someone who knows mpic should check this.
97222 - * do we need to eoi the ipi including for kexec cpu here (see xics comments)?
97223 - * or can we reset the mpic in the new kernel?
97224 - */
97225 void mpic_teardown_this_cpu(int secondary)
97226 {
97227 struct mpic *mpic = mpic_primary;
97228 @@ -1430,6 +1429,10 @@ void mpic_teardown_this_cpu(int secondar
97229
97230 /* Set current processor priority to max */
97231 mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
97232 + /* We need to EOI the IPI since not all platforms reset the MPIC
97233 + * on boot and new interrupts wouldn't get delivered otherwise.
97234 + */
97235 + mpic_eoi(mpic);
97236
97237 spin_unlock_irqrestore(&mpic_lock, flags);
97238 }
97239 Index: linux-2.6.25.4/arch/powerpc/sysdev/mv64x60_dev.c
97240 ===================================================================
97241 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/mv64x60_dev.c
97242 +++ linux-2.6.25.4/arch/powerpc/sysdev/mv64x60_dev.c
97243 @@ -127,7 +127,7 @@ static int __init mv64x60_mpsc_device_se
97244 if (err)
97245 return err;
97246
97247 - prop = of_get_property(np, "block-index", NULL);
97248 + prop = of_get_property(np, "cell-index", NULL);
97249 if (!prop)
97250 return -ENODEV;
97251 port_number = *(int *)prop;
97252 @@ -136,6 +136,7 @@ static int __init mv64x60_mpsc_device_se
97253
97254 pdata.cache_mgmt = 1; /* All current revs need this set */
97255
97256 + pdata.max_idle = 40; /* default */
97257 prop = of_get_property(np, "max_idle", NULL);
97258 if (prop)
97259 pdata.max_idle = *prop;
97260 @@ -205,30 +206,24 @@ error:
97261 /*
97262 * Create mv64x60_eth platform devices
97263 */
97264 -static int __init eth_register_shared_pdev(struct device_node *np)
97265 +static struct platform_device * __init mv64x60_eth_register_shared_pdev(
97266 + struct device_node *np, int id)
97267 {
97268 struct platform_device *pdev;
97269 struct resource r[1];
97270 int err;
97271
97272 - np = of_get_parent(np);
97273 - if (!np)
97274 - return -ENODEV;
97275 -
97276 err = of_address_to_resource(np, 0, &r[0]);
97277 - of_node_put(np);
97278 if (err)
97279 - return err;
97280 + return ERR_PTR(err);
97281
97282 - pdev = platform_device_register_simple(MV643XX_ETH_SHARED_NAME, 0,
97283 + pdev = platform_device_register_simple(MV643XX_ETH_SHARED_NAME, id,
97284 r, 1);
97285 - if (IS_ERR(pdev))
97286 - return PTR_ERR(pdev);
97287 -
97288 - return 0;
97289 + return pdev;
97290 }
97291
97292 -static int __init mv64x60_eth_device_setup(struct device_node *np, int id)
97293 +static int __init mv64x60_eth_device_setup(struct device_node *np, int id,
97294 + struct platform_device *shared_pdev)
97295 {
97296 struct resource r[1];
97297 struct mv643xx_eth_platform_data pdata;
97298 @@ -239,16 +234,12 @@ static int __init mv64x60_eth_device_set
97299 const phandle *ph;
97300 int err;
97301
97302 - /* only register the shared platform device the first time through */
97303 - if (id == 0 && (err = eth_register_shared_pdev(np)))
97304 - return err;
97305 -
97306 memset(r, 0, sizeof(r));
97307 of_irq_to_resource(np, 0, &r[0]);
97308
97309 memset(&pdata, 0, sizeof(pdata));
97310
97311 - prop = of_get_property(np, "block-index", NULL);
97312 + prop = of_get_property(np, "reg", NULL);
97313 if (!prop)
97314 return -ENODEV;
97315 pdata.port_number = *prop;
97316 @@ -301,7 +292,7 @@ static int __init mv64x60_eth_device_set
97317
97318 of_node_put(phy);
97319
97320 - pdev = platform_device_alloc(MV643XX_ETH_NAME, pdata.port_number);
97321 + pdev = platform_device_alloc(MV643XX_ETH_NAME, id);
97322 if (!pdev)
97323 return -ENOMEM;
97324
97325 @@ -345,21 +336,19 @@ static int __init mv64x60_i2c_device_set
97326
97327 memset(&pdata, 0, sizeof(pdata));
97328
97329 + pdata.freq_m = 8; /* default */
97330 prop = of_get_property(np, "freq_m", NULL);
97331 if (!prop)
97332 return -ENODEV;
97333 pdata.freq_m = *prop;
97334
97335 + pdata.freq_m = 3; /* default */
97336 prop = of_get_property(np, "freq_n", NULL);
97337 if (!prop)
97338 return -ENODEV;
97339 pdata.freq_n = *prop;
97340
97341 - prop = of_get_property(np, "timeout", NULL);
97342 - if (prop)
97343 - pdata.timeout = *prop;
97344 - else
97345 - pdata.timeout = 1000; /* 1 second */
97346 + pdata.timeout = 1000; /* default: 1 second */
97347
97348 pdev = platform_device_alloc(MV64XXX_I2C_CTLR_NAME, id);
97349 if (!pdev)
97350 @@ -401,10 +390,7 @@ static int __init mv64x60_wdt_device_set
97351
97352 memset(&pdata, 0, sizeof(pdata));
97353
97354 - prop = of_get_property(np, "timeout", NULL);
97355 - if (!prop)
97356 - return -ENODEV;
97357 - pdata.timeout = *prop;
97358 + pdata.timeout = 10; /* Default: 10 seconds */
97359
97360 np = of_get_parent(np);
97361 if (!np)
97362 @@ -441,27 +427,43 @@ error:
97363
97364 static int __init mv64x60_device_setup(void)
97365 {
97366 - struct device_node *np = NULL;
97367 - int id;
97368 + struct device_node *np, *np2;
97369 + struct platform_device *pdev;
97370 + int id, id2;
97371 int err;
97372
97373 id = 0;
97374 - for_each_compatible_node(np, "serial", "marvell,mpsc")
97375 + for_each_compatible_node(np, "serial", "marvell,mv64360-mpsc")
97376 if ((err = mv64x60_mpsc_device_setup(np, id++)))
97377 goto error;
97378
97379 id = 0;
97380 - for_each_compatible_node(np, "network", "marvell,mv64x60-eth")
97381 - if ((err = mv64x60_eth_device_setup(np, id++)))
97382 + id2 = 0;
97383 + for_each_compatible_node(np, NULL, "marvell,mv64360-eth-group") {
97384 + pdev = mv64x60_eth_register_shared_pdev(np, id++);
97385 + if (IS_ERR(pdev)) {
97386 + err = PTR_ERR(pdev);
97387 goto error;
97388 + }
97389 + for_each_child_of_node(np, np2) {
97390 + if (!of_device_is_compatible(np2,
97391 + "marvell,mv64360-eth"))
97392 + continue;
97393 + err = mv64x60_eth_device_setup(np2, id2++, pdev);
97394 + if (err) {
97395 + of_node_put(np2);
97396 + goto error;
97397 + }
97398 + }
97399 + }
97400
97401 id = 0;
97402 - for_each_compatible_node(np, "i2c", "marvell,mv64x60-i2c")
97403 + for_each_compatible_node(np, "i2c", "marvell,mv64360-i2c")
97404 if ((err = mv64x60_i2c_device_setup(np, id++)))
97405 goto error;
97406
97407 /* support up to one watchdog timer */
97408 - np = of_find_compatible_node(np, NULL, "marvell,mv64x60-wdt");
97409 + np = of_find_compatible_node(np, NULL, "marvell,mv64360-wdt");
97410 if (np) {
97411 if ((err = mv64x60_wdt_device_setup(np, id)))
97412 goto error;
97413 @@ -489,10 +491,10 @@ static int __init mv64x60_add_mpsc_conso
97414 if (!np)
97415 goto not_mpsc;
97416
97417 - if (!of_device_is_compatible(np, "marvell,mpsc"))
97418 + if (!of_device_is_compatible(np, "marvell,mv64360-mpsc"))
97419 goto not_mpsc;
97420
97421 - prop = of_get_property(np, "block-index", NULL);
97422 + prop = of_get_property(np, "cell-index", NULL);
97423 if (!prop)
97424 goto not_mpsc;
97425
97426 Index: linux-2.6.25.4/arch/powerpc/sysdev/mv64x60_pci.c
97427 ===================================================================
97428 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/mv64x60_pci.c
97429 +++ linux-2.6.25.4/arch/powerpc/sysdev/mv64x60_pci.c
97430 @@ -86,14 +86,14 @@ static int __init mv64x60_sysfs_init(voi
97431 struct platform_device *pdev;
97432 const unsigned int *prop;
97433
97434 - np = of_find_compatible_node(NULL, NULL, "marvell,mv64x60");
97435 + np = of_find_compatible_node(NULL, NULL, "marvell,mv64360");
97436 if (!np)
97437 return 0;
97438
97439 prop = of_get_property(np, "hs_reg_valid", NULL);
97440 of_node_put(np);
97441
97442 - pdev = platform_device_register_simple("marvell,mv64x60", 0, NULL, 0);
97443 + pdev = platform_device_register_simple("marvell,mv64360", 0, NULL, 0);
97444 if (IS_ERR(pdev))
97445 return PTR_ERR(pdev);
97446
97447 @@ -166,6 +166,6 @@ void __init mv64x60_pci_init(void)
97448 {
97449 struct device_node *np;
97450
97451 - for_each_compatible_node(np, "pci", "marvell,mv64x60-pci")
97452 + for_each_compatible_node(np, "pci", "marvell,mv64360-pci")
97453 mv64x60_add_bridge(np);
97454 }
97455 Index: linux-2.6.25.4/arch/powerpc/sysdev/mv64x60_pic.c
97456 ===================================================================
97457 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/mv64x60_pic.c
97458 +++ linux-2.6.25.4/arch/powerpc/sysdev/mv64x60_pic.c
97459 @@ -238,13 +238,13 @@ void __init mv64x60_init_irq(void)
97460 const unsigned int *reg;
97461 unsigned long flags;
97462
97463 - np = of_find_compatible_node(NULL, NULL, "marvell,mv64x60-gpp");
97464 + np = of_find_compatible_node(NULL, NULL, "marvell,mv64360-gpp");
97465 reg = of_get_property(np, "reg", &size);
97466 paddr = of_translate_address(np, reg);
97467 mv64x60_gpp_reg_base = ioremap(paddr, reg[1]);
97468 of_node_put(np);
97469
97470 - np = of_find_compatible_node(NULL, NULL, "marvell,mv64x60-pic");
97471 + np = of_find_compatible_node(NULL, NULL, "marvell,mv64360-pic");
97472 reg = of_get_property(np, "reg", &size);
97473 paddr = of_translate_address(np, reg);
97474 mv64x60_irq_reg_base = ioremap(paddr, reg[1]);
97475 Index: linux-2.6.25.4/arch/powerpc/sysdev/mv64x60_udbg.c
97476 ===================================================================
97477 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/mv64x60_udbg.c
97478 +++ linux-2.6.25.4/arch/powerpc/sysdev/mv64x60_udbg.c
97479 @@ -85,7 +85,7 @@ static void mv64x60_udbg_init(void)
97480 if (!stdout)
97481 return;
97482
97483 - for_each_compatible_node(np, "serial", "marvell,mpsc") {
97484 + for_each_compatible_node(np, "serial", "marvell,mv64360-mpsc") {
97485 if (np == stdout)
97486 break;
97487 }
97488 Index: linux-2.6.25.4/arch/powerpc/sysdev/ppc4xx_pci.c
97489 ===================================================================
97490 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/ppc4xx_pci.c
97491 +++ linux-2.6.25.4/arch/powerpc/sysdev/ppc4xx_pci.c
97492 @@ -527,6 +527,7 @@ static void __init ppc4xx_probe_pcix_bri
97493 *
97494 * ibm,plb-pciex-440spe
97495 * ibm,plb-pciex-405ex
97496 + * ibm,plb-pciex-460ex
97497 *
97498 * Anything else will be rejected for now as they are all subtly
97499 * different unfortunately.
97500 @@ -645,7 +646,7 @@ static int __init ppc440spe_pciex_core_i
97501 int time_out = 20;
97502
97503 /* Set PLL clock receiver to LVPECL */
97504 - mtdcri(SDR0, PESDR0_PLLLCT1, mfdcri(SDR0, PESDR0_PLLLCT1) | 1 << 28);
97505 + dcri_clrset(SDR0, PESDR0_PLLLCT1, 0, 1 << 28);
97506
97507 /* Shouldn't we do all the calibration stuff etc... here ? */
97508 if (ppc440spe_pciex_check_reset(np))
97509 @@ -659,8 +660,7 @@ static int __init ppc440spe_pciex_core_i
97510 }
97511
97512 /* De-assert reset of PCIe PLL, wait for lock */
97513 - mtdcri(SDR0, PESDR0_PLLLCT1,
97514 - mfdcri(SDR0, PESDR0_PLLLCT1) & ~(1 << 24));
97515 + dcri_clrset(SDR0, PESDR0_PLLLCT1, 1 << 24, 0);
97516 udelay(3);
97517
97518 while (time_out) {
97519 @@ -712,9 +712,8 @@ static int ppc440spe_pciex_init_port_hw(
97520 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL7SET1,
97521 0x35000000);
97522 }
97523 - val = mfdcri(SDR0, port->sdr_base + PESDRn_RCSSET);
97524 - mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET,
97525 - (val & ~(1 << 24 | 1 << 16)) | 1 << 12);
97526 + dcri_clrset(SDR0, port->sdr_base + PESDRn_RCSSET,
97527 + (1 << 24) | (1 << 16), 1 << 12);
97528
97529 return 0;
97530 }
97531 @@ -775,6 +774,115 @@ static struct ppc4xx_pciex_hwops ppc440s
97532 .setup_utl = ppc440speB_pciex_init_utl,
97533 };
97534
97535 +static int __init ppc460ex_pciex_core_init(struct device_node *np)
97536 +{
97537 + /* Nothing to do, return 2 ports */
97538 + return 2;
97539 +}
97540 +
97541 +static int ppc460ex_pciex_init_port_hw(struct ppc4xx_pciex_port *port)
97542 +{
97543 + u32 val;
97544 + u32 utlset1;
97545 +
97546 + if (port->endpoint)
97547 + val = PTYPE_LEGACY_ENDPOINT << 20;
97548 + else
97549 + val = PTYPE_ROOT_PORT << 20;
97550 +
97551 + if (port->index == 0) {
97552 + val |= LNKW_X1 << 12;
97553 + utlset1 = 0x20000000;
97554 + } else {
97555 + val |= LNKW_X4 << 12;
97556 + utlset1 = 0x20101101;
97557 + }
97558 +
97559 + mtdcri(SDR0, port->sdr_base + PESDRn_DLPSET, val);
97560 + mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET1, utlset1);
97561 + mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET2, 0x01210000);
97562 +
97563 + switch (port->index) {
97564 + case 0:
97565 + mtdcri(SDR0, PESDR0_460EX_L0CDRCTL, 0x00003230);
97566 + mtdcri(SDR0, PESDR0_460EX_L0DRV, 0x00000136);
97567 + mtdcri(SDR0, PESDR0_460EX_L0CLK, 0x00000006);
97568 +
97569 + mtdcri(SDR0, PESDR0_460EX_PHY_CTL_RST,0x10000000);
97570 + break;
97571 +
97572 + case 1:
97573 + mtdcri(SDR0, PESDR1_460EX_L0CDRCTL, 0x00003230);
97574 + mtdcri(SDR0, PESDR1_460EX_L1CDRCTL, 0x00003230);
97575 + mtdcri(SDR0, PESDR1_460EX_L2CDRCTL, 0x00003230);
97576 + mtdcri(SDR0, PESDR1_460EX_L3CDRCTL, 0x00003230);
97577 + mtdcri(SDR0, PESDR1_460EX_L0DRV, 0x00000136);
97578 + mtdcri(SDR0, PESDR1_460EX_L1DRV, 0x00000136);
97579 + mtdcri(SDR0, PESDR1_460EX_L2DRV, 0x00000136);
97580 + mtdcri(SDR0, PESDR1_460EX_L3DRV, 0x00000136);
97581 + mtdcri(SDR0, PESDR1_460EX_L0CLK, 0x00000006);
97582 + mtdcri(SDR0, PESDR1_460EX_L1CLK, 0x00000006);
97583 + mtdcri(SDR0, PESDR1_460EX_L2CLK, 0x00000006);
97584 + mtdcri(SDR0, PESDR1_460EX_L3CLK, 0x00000006);
97585 +
97586 + mtdcri(SDR0, PESDR1_460EX_PHY_CTL_RST,0x10000000);
97587 + break;
97588 + }
97589 +
97590 + mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET,
97591 + mfdcri(SDR0, port->sdr_base + PESDRn_RCSSET) |
97592 + (PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTPYN));
97593 +
97594 + /* Poll for PHY reset */
97595 + /* XXX FIXME add timeout */
97596 + switch (port->index) {
97597 + case 0:
97598 + while (!(mfdcri(SDR0, PESDR0_460EX_RSTSTA) & 0x1))
97599 + udelay(10);
97600 + break;
97601 + case 1:
97602 + while (!(mfdcri(SDR0, PESDR1_460EX_RSTSTA) & 0x1))
97603 + udelay(10);
97604 + break;
97605 + }
97606 +
97607 + mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET,
97608 + (mfdcri(SDR0, port->sdr_base + PESDRn_RCSSET) &
97609 + ~(PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTDL)) |
97610 + PESDRx_RCSSET_RSTPYN);
97611 +
97612 + port->has_ibpre = 1;
97613 +
97614 + return 0;
97615 +}
97616 +
97617 +static int ppc460ex_pciex_init_utl(struct ppc4xx_pciex_port *port)
97618 +{
97619 + dcr_write(port->dcrs, DCRO_PEGPL_SPECIAL, 0x0);
97620 +
97621 + /*
97622 + * Set buffer allocations and then assert VRB and TXE.
97623 + */
97624 + out_be32(port->utl_base + PEUTL_PBCTL, 0x0800000c);
97625 + out_be32(port->utl_base + PEUTL_OUTTR, 0x08000000);
97626 + out_be32(port->utl_base + PEUTL_INTR, 0x02000000);
97627 + out_be32(port->utl_base + PEUTL_OPDBSZ, 0x04000000);
97628 + out_be32(port->utl_base + PEUTL_PBBSZ, 0x00000000);
97629 + out_be32(port->utl_base + PEUTL_IPHBSZ, 0x02000000);
97630 + out_be32(port->utl_base + PEUTL_IPDBSZ, 0x04000000);
97631 + out_be32(port->utl_base + PEUTL_RCIRQEN,0x00f00000);
97632 + out_be32(port->utl_base + PEUTL_PCTL, 0x80800066);
97633 +
97634 + return 0;
97635 +}
97636 +
97637 +static struct ppc4xx_pciex_hwops ppc460ex_pcie_hwops __initdata =
97638 +{
97639 + .core_init = ppc460ex_pciex_core_init,
97640 + .port_init_hw = ppc460ex_pciex_init_port_hw,
97641 + .setup_utl = ppc460ex_pciex_init_utl,
97642 +};
97643 +
97644 #endif /* CONFIG_44x */
97645
97646 #ifdef CONFIG_40x
97647 @@ -830,17 +938,9 @@ static int ppc405ex_pciex_init_port_hw(s
97648 * PCIe boards don't show this problem.
97649 * This has to be re-tested and fixed in a later release!
97650 */
97651 -#if 0 /* XXX FIXME: Not resetting the PHY will leave all resources
97652 - * configured as done previously by U-Boot. Then Linux will currently
97653 - * not reassign them. So the PHY reset is now done always. This will
97654 - * lead to problems with the Atheros PCIe board again.
97655 - */
97656 val = mfdcri(SDR0, port->sdr_base + PESDRn_LOOP);
97657 if (!(val & 0x00001000))
97658 ppc405ex_pcie_phy_reset(port);
97659 -#else
97660 - ppc405ex_pcie_phy_reset(port);
97661 -#endif
97662
97663 dcr_write(port->dcrs, DCRO_PEGPL_CFG, 0x10000000); /* guarded on */
97664
97665 @@ -896,6 +996,8 @@ static int __init ppc4xx_pciex_check_cor
97666 else
97667 ppc4xx_pciex_hwops = &ppc440speB_pcie_hwops;
97668 }
97669 + if (of_device_is_compatible(np, "ibm,plb-pciex-460ex"))
97670 + ppc4xx_pciex_hwops = &ppc460ex_pcie_hwops;
97671 #endif /* CONFIG_44x */
97672 #ifdef CONFIG_40x
97673 if (of_device_is_compatible(np, "ibm,plb-pciex-405ex"))
97674 @@ -1042,8 +1144,7 @@ static int __init ppc4xx_pciex_port_init
97675 port->link = 0;
97676 }
97677
97678 - mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET,
97679 - mfdcri(SDR0, port->sdr_base + PESDRn_RCSSET) | 1 << 20);
97680 + dcri_clrset(SDR0, port->sdr_base + PESDRn_RCSSET, 0, 1 << 20);
97681 msleep(100);
97682
97683 return 0;
97684 Index: linux-2.6.25.4/arch/powerpc/sysdev/ppc4xx_pci.h
97685 ===================================================================
97686 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/ppc4xx_pci.h
97687 +++ linux-2.6.25.4/arch/powerpc/sysdev/ppc4xx_pci.h
97688 @@ -271,6 +271,59 @@
97689 #define PESDR1_405EX_PHYSTA 0x044C
97690
97691 /*
97692 + * 460EX additional DCRs
97693 + */
97694 +#define PESDR0_460EX_L0BIST 0x0308
97695 +#define PESDR0_460EX_L0BISTSTS 0x0309
97696 +#define PESDR0_460EX_L0CDRCTL 0x030A
97697 +#define PESDR0_460EX_L0DRV 0x030B
97698 +#define PESDR0_460EX_L0REC 0x030C
97699 +#define PESDR0_460EX_L0LPB 0x030D
97700 +#define PESDR0_460EX_L0CLK 0x030E
97701 +#define PESDR0_460EX_PHY_CTL_RST 0x030F
97702 +#define PESDR0_460EX_RSTSTA 0x0310
97703 +#define PESDR0_460EX_OBS 0x0311
97704 +#define PESDR0_460EX_L0ERRC 0x0320
97705 +
97706 +#define PESDR1_460EX_L0BIST 0x0348
97707 +#define PESDR1_460EX_L1BIST 0x0349
97708 +#define PESDR1_460EX_L2BIST 0x034A
97709 +#define PESDR1_460EX_L3BIST 0x034B
97710 +#define PESDR1_460EX_L0BISTSTS 0x034C
97711 +#define PESDR1_460EX_L1BISTSTS 0x034D
97712 +#define PESDR1_460EX_L2BISTSTS 0x034E
97713 +#define PESDR1_460EX_L3BISTSTS 0x034F
97714 +#define PESDR1_460EX_L0CDRCTL 0x0350
97715 +#define PESDR1_460EX_L1CDRCTL 0x0351
97716 +#define PESDR1_460EX_L2CDRCTL 0x0352
97717 +#define PESDR1_460EX_L3CDRCTL 0x0353
97718 +#define PESDR1_460EX_L0DRV 0x0354
97719 +#define PESDR1_460EX_L1DRV 0x0355
97720 +#define PESDR1_460EX_L2DRV 0x0356
97721 +#define PESDR1_460EX_L3DRV 0x0357
97722 +#define PESDR1_460EX_L0REC 0x0358
97723 +#define PESDR1_460EX_L1REC 0x0359
97724 +#define PESDR1_460EX_L2REC 0x035A
97725 +#define PESDR1_460EX_L3REC 0x035B
97726 +#define PESDR1_460EX_L0LPB 0x035C
97727 +#define PESDR1_460EX_L1LPB 0x035D
97728 +#define PESDR1_460EX_L2LPB 0x035E
97729 +#define PESDR1_460EX_L3LPB 0x035F
97730 +#define PESDR1_460EX_L0CLK 0x0360
97731 +#define PESDR1_460EX_L1CLK 0x0361
97732 +#define PESDR1_460EX_L2CLK 0x0362
97733 +#define PESDR1_460EX_L3CLK 0x0363
97734 +#define PESDR1_460EX_PHY_CTL_RST 0x0364
97735 +#define PESDR1_460EX_RSTSTA 0x0365
97736 +#define PESDR1_460EX_OBS 0x0366
97737 +#define PESDR1_460EX_L0ERRC 0x0368
97738 +#define PESDR1_460EX_L1ERRC 0x0369
97739 +#define PESDR1_460EX_L2ERRC 0x036A
97740 +#define PESDR1_460EX_L3ERRC 0x036B
97741 +#define PESDR0_460EX_IHS1 0x036C
97742 +#define PESDR0_460EX_IHS2 0x036D
97743 +
97744 +/*
97745 * Of the above, some are common offsets from the base
97746 */
97747 #define PESDRn_UTLSET1 0x00
97748 @@ -353,6 +406,12 @@
97749 #define PECFG_POM2LAL 0x390
97750 #define PECFG_POM2LAH 0x394
97751
97752 +/* SDR Bit Mappings */
97753 +#define PESDRx_RCSSET_HLDPLB 0x10000000
97754 +#define PESDRx_RCSSET_RSTGU 0x01000000
97755 +#define PESDRx_RCSSET_RDY 0x00100000
97756 +#define PESDRx_RCSSET_RSTDL 0x00010000
97757 +#define PESDRx_RCSSET_RSTPYN 0x00001000
97758
97759 enum
97760 {
97761 Index: linux-2.6.25.4/arch/powerpc/sysdev/ppc4xx_soc.c
97762 ===================================================================
97763 --- /dev/null
97764 +++ linux-2.6.25.4/arch/powerpc/sysdev/ppc4xx_soc.c
97765 @@ -0,0 +1,200 @@
97766 +/*
97767 + * IBM/AMCC PPC4xx SoC setup code
97768 + *
97769 + * Copyright 2008 DENX Software Engineering, Stefan Roese <sr@denx.de>
97770 + *
97771 + * L2 cache routines cloned from arch/ppc/syslib/ibm440gx_common.c which is:
97772 + * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
97773 + * Copyright (c) 2003 - 2006 Zultys Technologies
97774 + *
97775 + * This program is free software; you can redistribute it and/or modify it
97776 + * under the terms of the GNU General Public License as published by the
97777 + * Free Software Foundation; either version 2 of the License, or (at your
97778 + * option) any later version.
97779 + */
97780 +
97781 +#include <linux/stddef.h>
97782 +#include <linux/kernel.h>
97783 +#include <linux/init.h>
97784 +#include <linux/errno.h>
97785 +#include <linux/interrupt.h>
97786 +#include <linux/irq.h>
97787 +#include <linux/of_platform.h>
97788 +
97789 +#include <asm/dcr.h>
97790 +#include <asm/dcr-regs.h>
97791 +#include <asm/reg.h>
97792 +
97793 +static u32 dcrbase_l2c;
97794 +
97795 +/*
97796 + * L2-cache
97797 + */
97798 +
97799 +/* Issue L2C diagnostic command */
97800 +static inline u32 l2c_diag(u32 addr)
97801 +{
97802 + mtdcr(dcrbase_l2c + DCRN_L2C0_ADDR, addr);
97803 + mtdcr(dcrbase_l2c + DCRN_L2C0_CMD, L2C_CMD_DIAG);
97804 + while (!(mfdcr(dcrbase_l2c + DCRN_L2C0_SR) & L2C_SR_CC))
97805 + ;
97806 +
97807 + return mfdcr(dcrbase_l2c + DCRN_L2C0_DATA);
97808 +}
97809 +
97810 +static irqreturn_t l2c_error_handler(int irq, void *dev)
97811 +{
97812 + u32 sr = mfdcr(dcrbase_l2c + DCRN_L2C0_SR);
97813 +
97814 + if (sr & L2C_SR_CPE) {
97815 + /* Read cache trapped address */
97816 + u32 addr = l2c_diag(0x42000000);
97817 + printk(KERN_EMERG "L2C: Cache Parity Error, addr[16:26] = 0x%08x\n",
97818 + addr);
97819 + }
97820 + if (sr & L2C_SR_TPE) {
97821 + /* Read tag trapped address */
97822 + u32 addr = l2c_diag(0x82000000) >> 16;
97823 + printk(KERN_EMERG "L2C: Tag Parity Error, addr[16:26] = 0x%08x\n",
97824 + addr);
97825 + }
97826 +
97827 + /* Clear parity errors */
97828 + if (sr & (L2C_SR_CPE | L2C_SR_TPE)){
97829 + mtdcr(dcrbase_l2c + DCRN_L2C0_ADDR, 0);
97830 + mtdcr(dcrbase_l2c + DCRN_L2C0_CMD, L2C_CMD_CCP | L2C_CMD_CTE);
97831 + } else {
97832 + printk(KERN_EMERG "L2C: LRU error\n");
97833 + }
97834 +
97835 + return IRQ_HANDLED;
97836 +}
97837 +
97838 +static int __init ppc4xx_l2c_probe(void)
97839 +{
97840 + struct device_node *np;
97841 + u32 r;
97842 + unsigned long flags;
97843 + int irq;
97844 + const u32 *dcrreg;
97845 + u32 dcrbase_isram;
97846 + int len;
97847 + const u32 *prop;
97848 + u32 l2_size;
97849 +
97850 + np = of_find_compatible_node(NULL, NULL, "ibm,l2-cache");
97851 + if (!np)
97852 + return 0;
97853 +
97854 + /* Get l2 cache size */
97855 + prop = of_get_property(np, "cache-size", NULL);
97856 + if (prop == NULL) {
97857 + printk(KERN_ERR "%s: Can't get cache-size!\n", np->full_name);
97858 + of_node_put(np);
97859 + return -ENODEV;
97860 + }
97861 + l2_size = prop[0];
97862 +
97863 + /* Map DCRs */
97864 + dcrreg = of_get_property(np, "dcr-reg", &len);
97865 + if (!dcrreg || (len != 4 * sizeof(u32))) {
97866 + printk(KERN_ERR "%s: Can't get DCR register base !",
97867 + np->full_name);
97868 + of_node_put(np);
97869 + return -ENODEV;
97870 + }
97871 + dcrbase_isram = dcrreg[0];
97872 + dcrbase_l2c = dcrreg[2];
97873 +
97874 + /* Get and map irq number from device tree */
97875 + irq = irq_of_parse_and_map(np, 0);
97876 + if (irq == NO_IRQ) {
97877 + printk(KERN_ERR "irq_of_parse_and_map failed\n");
97878 + of_node_put(np);
97879 + return -ENODEV;
97880 + }
97881 +
97882 + /* Install error handler */
97883 + if (request_irq(irq, l2c_error_handler, IRQF_DISABLED, "L2C", 0) < 0) {
97884 + printk(KERN_ERR "Cannot install L2C error handler"
97885 + ", cache is not enabled\n");
97886 + of_node_put(np);
97887 + return -ENODEV;
97888 + }
97889 +
97890 + local_irq_save(flags);
97891 + asm volatile ("sync" ::: "memory");
97892 +
97893 + /* Disable SRAM */
97894 + mtdcr(dcrbase_isram + DCRN_SRAM0_DPC,
97895 + mfdcr(dcrbase_isram + DCRN_SRAM0_DPC) & ~SRAM_DPC_ENABLE);
97896 + mtdcr(dcrbase_isram + DCRN_SRAM0_SB0CR,
97897 + mfdcr(dcrbase_isram + DCRN_SRAM0_SB0CR) & ~SRAM_SBCR_BU_MASK);
97898 + mtdcr(dcrbase_isram + DCRN_SRAM0_SB1CR,
97899 + mfdcr(dcrbase_isram + DCRN_SRAM0_SB1CR) & ~SRAM_SBCR_BU_MASK);
97900 + mtdcr(dcrbase_isram + DCRN_SRAM0_SB2CR,
97901 + mfdcr(dcrbase_isram + DCRN_SRAM0_SB2CR) & ~SRAM_SBCR_BU_MASK);
97902 + mtdcr(dcrbase_isram + DCRN_SRAM0_SB3CR,
97903 + mfdcr(dcrbase_isram + DCRN_SRAM0_SB3CR) & ~SRAM_SBCR_BU_MASK);
97904 +
97905 + /* Enable L2_MODE without ICU/DCU */
97906 + r = mfdcr(dcrbase_l2c + DCRN_L2C0_CFG) &
97907 + ~(L2C_CFG_ICU | L2C_CFG_DCU | L2C_CFG_SS_MASK);
97908 + r |= L2C_CFG_L2M | L2C_CFG_SS_256;
97909 + mtdcr(dcrbase_l2c + DCRN_L2C0_CFG, r);
97910 +
97911 + mtdcr(dcrbase_l2c + DCRN_L2C0_ADDR, 0);
97912 +
97913 + /* Hardware Clear Command */
97914 + mtdcr(dcrbase_l2c + DCRN_L2C0_CMD, L2C_CMD_HCC);
97915 + while (!(mfdcr(dcrbase_l2c + DCRN_L2C0_SR) & L2C_SR_CC))
97916 + ;
97917 +
97918 + /* Clear Cache Parity and Tag Errors */
97919 + mtdcr(dcrbase_l2c + DCRN_L2C0_CMD, L2C_CMD_CCP | L2C_CMD_CTE);
97920 +
97921 + /* Enable 64G snoop region starting at 0 */
97922 + r = mfdcr(dcrbase_l2c + DCRN_L2C0_SNP0) &
97923 + ~(L2C_SNP_BA_MASK | L2C_SNP_SSR_MASK);
97924 + r |= L2C_SNP_SSR_32G | L2C_SNP_ESR;
97925 + mtdcr(dcrbase_l2c + DCRN_L2C0_SNP0, r);
97926 +
97927 + r = mfdcr(dcrbase_l2c + DCRN_L2C0_SNP1) &
97928 + ~(L2C_SNP_BA_MASK | L2C_SNP_SSR_MASK);
97929 + r |= 0x80000000 | L2C_SNP_SSR_32G | L2C_SNP_ESR;
97930 + mtdcr(dcrbase_l2c + DCRN_L2C0_SNP1, r);
97931 +
97932 + asm volatile ("sync" ::: "memory");
97933 +
97934 + /* Enable ICU/DCU ports */
97935 + r = mfdcr(dcrbase_l2c + DCRN_L2C0_CFG);
97936 + r &= ~(L2C_CFG_DCW_MASK | L2C_CFG_PMUX_MASK | L2C_CFG_PMIM
97937 + | L2C_CFG_TPEI | L2C_CFG_CPEI | L2C_CFG_NAM | L2C_CFG_NBRM);
97938 + r |= L2C_CFG_ICU | L2C_CFG_DCU | L2C_CFG_TPC | L2C_CFG_CPC | L2C_CFG_FRAN
97939 + | L2C_CFG_CPIM | L2C_CFG_TPIM | L2C_CFG_LIM | L2C_CFG_SMCM;
97940 +
97941 + /* Check for 460EX/GT special handling */
97942 + if (of_device_is_compatible(np, "ibm,l2-cache-460ex"))
97943 + r |= L2C_CFG_RDBW;
97944 +
97945 + mtdcr(dcrbase_l2c + DCRN_L2C0_CFG, r);
97946 +
97947 + asm volatile ("sync; isync" ::: "memory");
97948 + local_irq_restore(flags);
97949 +
97950 + printk(KERN_INFO "%dk L2-cache enabled\n", l2_size >> 10);
97951 +
97952 + of_node_put(np);
97953 + return 0;
97954 +}
97955 +arch_initcall(ppc4xx_l2c_probe);
97956 +
97957 +/*
97958 + * At present, this routine just applies a system reset.
97959 + */
97960 +void ppc4xx_reset_system(char *cmd)
97961 +{
97962 + mtspr(SPRN_DBCR0, mfspr(SPRN_DBCR0) | DBCR0_RST_SYSTEM);
97963 + while (1)
97964 + ; /* Just in case the reset doesn't work */
97965 +}
97966 Index: linux-2.6.25.4/arch/powerpc/sysdev/qe_lib/qe.c
97967 ===================================================================
97968 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/qe_lib/qe.c
97969 +++ linux-2.6.25.4/arch/powerpc/sysdev/qe_lib/qe.c
97970 @@ -55,7 +55,7 @@ struct qe_snum {
97971 /* We allocate this here because it is used almost exclusively for
97972 * the communication processor devices.
97973 */
97974 -struct qe_immap *qe_immr = NULL;
97975 +struct qe_immap __iomem *qe_immr;
97976 EXPORT_SYMBOL(qe_immr);
97977
97978 static struct qe_snum snums[QE_NUM_OF_SNUM]; /* Dynamically allocated SNUMs */
97979 @@ -156,7 +156,7 @@ EXPORT_SYMBOL(qe_issue_cmd);
97980 */
97981 static unsigned int brg_clk = 0;
97982
97983 -unsigned int get_brg_clk(void)
97984 +unsigned int qe_get_brg_clk(void)
97985 {
97986 struct device_node *qe;
97987 unsigned int size;
97988 @@ -180,6 +180,7 @@ unsigned int get_brg_clk(void)
97989
97990 return brg_clk;
97991 }
97992 +EXPORT_SYMBOL(qe_get_brg_clk);
97993
97994 /* Program the BRG to the given sampling rate and multiplier
97995 *
97996 @@ -197,7 +198,7 @@ int qe_setbrg(enum qe_clock brg, unsigne
97997 if ((brg < QE_BRG1) || (brg > QE_BRG16))
97998 return -EINVAL;
97999
98000 - divisor = get_brg_clk() / (rate * multiplier);
98001 + divisor = qe_get_brg_clk() / (rate * multiplier);
98002
98003 if (divisor > QE_BRGC_DIVISOR_MAX + 1) {
98004 div16 = QE_BRGC_DIV16;
98005 @@ -415,12 +416,6 @@ void qe_muram_dump(void)
98006 }
98007 EXPORT_SYMBOL(qe_muram_dump);
98008
98009 -void *qe_muram_addr(unsigned long offset)
98010 -{
98011 - return (void *)&qe_immr->muram[offset];
98012 -}
98013 -EXPORT_SYMBOL(qe_muram_addr);
98014 -
98015 /* The maximum number of RISCs we support */
98016 #define MAX_QE_RISC 2
98017
98018 Index: linux-2.6.25.4/arch/powerpc/sysdev/qe_lib/qe_io.c
98019 ===================================================================
98020 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/qe_lib/qe_io.c
98021 +++ linux-2.6.25.4/arch/powerpc/sysdev/qe_lib/qe_io.c
98022 @@ -22,6 +22,7 @@
98023 #include <linux/ioport.h>
98024
98025 #include <asm/io.h>
98026 +#include <asm/qe.h>
98027 #include <asm/prom.h>
98028 #include <sysdev/fsl_soc.h>
98029
98030 @@ -41,7 +42,7 @@ struct port_regs {
98031 #endif
98032 };
98033
98034 -static struct port_regs *par_io = NULL;
98035 +static struct port_regs __iomem *par_io;
98036 static int num_par_io_ports = 0;
98037
98038 int par_io_init(struct device_node *np)
98039 @@ -165,7 +166,7 @@ int par_io_of_config(struct device_node
98040 }
98041
98042 ph = of_get_property(np, "pio-handle", NULL);
98043 - if (ph == 0) {
98044 + if (ph == NULL) {
98045 printk(KERN_ERR "pio-handle not available \n");
98046 return -1;
98047 }
98048 @@ -200,7 +201,7 @@ static void dump_par_io(void)
98049 {
98050 unsigned int i;
98051
98052 - printk(KERN_INFO "%s: par_io=%p\n", __FUNCTION__, par_io);
98053 + printk(KERN_INFO "%s: par_io=%p\n", __func__, par_io);
98054 for (i = 0; i < num_par_io_ports; i++) {
98055 printk(KERN_INFO " cpodr[%u]=%08x\n", i,
98056 in_be32(&par_io[i].cpodr));
98057 Index: linux-2.6.25.4/arch/powerpc/sysdev/qe_lib/ucc_fast.c
98058 ===================================================================
98059 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/qe_lib/ucc_fast.c
98060 +++ linux-2.6.25.4/arch/powerpc/sysdev/qe_lib/ucc_fast.c
98061 @@ -148,57 +148,57 @@ int ucc_fast_init(struct ucc_fast_info *
98062
98063 /* check if the UCC port number is in range. */
98064 if ((uf_info->ucc_num < 0) || (uf_info->ucc_num > UCC_MAX_NUM - 1)) {
98065 - printk(KERN_ERR "%s: illegal UCC number\n", __FUNCTION__);
98066 + printk(KERN_ERR "%s: illegal UCC number\n", __func__);
98067 return -EINVAL;
98068 }
98069
98070 /* Check that 'max_rx_buf_length' is properly aligned (4). */
98071 if (uf_info->max_rx_buf_length & (UCC_FAST_MRBLR_ALIGNMENT - 1)) {
98072 printk(KERN_ERR "%s: max_rx_buf_length not aligned\n",
98073 - __FUNCTION__);
98074 + __func__);
98075 return -EINVAL;
98076 }
98077
98078 /* Validate Virtual Fifo register values */
98079 if (uf_info->urfs < UCC_FAST_URFS_MIN_VAL) {
98080 - printk(KERN_ERR "%s: urfs is too small\n", __FUNCTION__);
98081 + printk(KERN_ERR "%s: urfs is too small\n", __func__);
98082 return -EINVAL;
98083 }
98084
98085 if (uf_info->urfs & (UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT - 1)) {
98086 - printk(KERN_ERR "%s: urfs is not aligned\n", __FUNCTION__);
98087 + printk(KERN_ERR "%s: urfs is not aligned\n", __func__);
98088 return -EINVAL;
98089 }
98090
98091 if (uf_info->urfet & (UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT - 1)) {
98092 - printk(KERN_ERR "%s: urfet is not aligned.\n", __FUNCTION__);
98093 + printk(KERN_ERR "%s: urfet is not aligned.\n", __func__);
98094 return -EINVAL;
98095 }
98096
98097 if (uf_info->urfset & (UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT - 1)) {
98098 - printk(KERN_ERR "%s: urfset is not aligned\n", __FUNCTION__);
98099 + printk(KERN_ERR "%s: urfset is not aligned\n", __func__);
98100 return -EINVAL;
98101 }
98102
98103 if (uf_info->utfs & (UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT - 1)) {
98104 - printk(KERN_ERR "%s: utfs is not aligned\n", __FUNCTION__);
98105 + printk(KERN_ERR "%s: utfs is not aligned\n", __func__);
98106 return -EINVAL;
98107 }
98108
98109 if (uf_info->utfet & (UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT - 1)) {
98110 - printk(KERN_ERR "%s: utfet is not aligned\n", __FUNCTION__);
98111 + printk(KERN_ERR "%s: utfet is not aligned\n", __func__);
98112 return -EINVAL;
98113 }
98114
98115 if (uf_info->utftt & (UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT - 1)) {
98116 - printk(KERN_ERR "%s: utftt is not aligned\n", __FUNCTION__);
98117 + printk(KERN_ERR "%s: utftt is not aligned\n", __func__);
98118 return -EINVAL;
98119 }
98120
98121 uccf = kzalloc(sizeof(struct ucc_fast_private), GFP_KERNEL);
98122 if (!uccf) {
98123 printk(KERN_ERR "%s: Cannot allocate private data\n",
98124 - __FUNCTION__);
98125 + __func__);
98126 return -ENOMEM;
98127 }
98128
98129 @@ -207,7 +207,7 @@ int ucc_fast_init(struct ucc_fast_info *
98130 /* Set the PHY base address */
98131 uccf->uf_regs = ioremap(uf_info->regs, sizeof(struct ucc_fast));
98132 if (uccf->uf_regs == NULL) {
98133 - printk(KERN_ERR "%s: Cannot map UCC registers\n", __FUNCTION__);
98134 + printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__);
98135 return -ENOMEM;
98136 }
98137
98138 @@ -230,7 +230,7 @@ int ucc_fast_init(struct ucc_fast_info *
98139 /* Set UCC to fast type */
98140 ret = ucc_set_type(uf_info->ucc_num, UCC_SPEED_TYPE_FAST);
98141 if (ret) {
98142 - printk(KERN_ERR "%s: cannot set UCC type\n", __FUNCTION__);
98143 + printk(KERN_ERR "%s: cannot set UCC type\n", __func__);
98144 ucc_fast_free(uccf);
98145 return ret;
98146 }
98147 @@ -270,7 +270,7 @@ int ucc_fast_init(struct ucc_fast_info *
98148 qe_muram_alloc(uf_info->utfs, UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT);
98149 if (IS_ERR_VALUE(uccf->ucc_fast_tx_virtual_fifo_base_offset)) {
98150 printk(KERN_ERR "%s: cannot allocate MURAM for TX FIFO\n",
98151 - __FUNCTION__);
98152 + __func__);
98153 uccf->ucc_fast_tx_virtual_fifo_base_offset = 0;
98154 ucc_fast_free(uccf);
98155 return -ENOMEM;
98156 @@ -283,7 +283,7 @@ int ucc_fast_init(struct ucc_fast_info *
98157 UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT);
98158 if (IS_ERR_VALUE(uccf->ucc_fast_rx_virtual_fifo_base_offset)) {
98159 printk(KERN_ERR "%s: cannot allocate MURAM for RX FIFO\n",
98160 - __FUNCTION__);
98161 + __func__);
98162 uccf->ucc_fast_rx_virtual_fifo_base_offset = 0;
98163 ucc_fast_free(uccf);
98164 return -ENOMEM;
98165 @@ -314,7 +314,7 @@ int ucc_fast_init(struct ucc_fast_info *
98166 ucc_set_qe_mux_rxtx(uf_info->ucc_num, uf_info->rx_clock,
98167 COMM_DIR_RX)) {
98168 printk(KERN_ERR "%s: illegal value for RX clock\n",
98169 - __FUNCTION__);
98170 + __func__);
98171 ucc_fast_free(uccf);
98172 return -EINVAL;
98173 }
98174 @@ -323,7 +323,7 @@ int ucc_fast_init(struct ucc_fast_info *
98175 ucc_set_qe_mux_rxtx(uf_info->ucc_num, uf_info->tx_clock,
98176 COMM_DIR_TX)) {
98177 printk(KERN_ERR "%s: illegal value for TX clock\n",
98178 - __FUNCTION__);
98179 + __func__);
98180 ucc_fast_free(uccf);
98181 return -EINVAL;
98182 }
98183 Index: linux-2.6.25.4/arch/powerpc/sysdev/qe_lib/ucc_slow.c
98184 ===================================================================
98185 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/qe_lib/ucc_slow.c
98186 +++ linux-2.6.25.4/arch/powerpc/sysdev/qe_lib/ucc_slow.c
98187 @@ -142,7 +142,7 @@ int ucc_slow_init(struct ucc_slow_info *
98188
98189 /* check if the UCC port number is in range. */
98190 if ((us_info->ucc_num < 0) || (us_info->ucc_num > UCC_MAX_NUM - 1)) {
98191 - printk(KERN_ERR "%s: illegal UCC number\n", __FUNCTION__);
98192 + printk(KERN_ERR "%s: illegal UCC number\n", __func__);
98193 return -EINVAL;
98194 }
98195
98196 @@ -161,7 +161,7 @@ int ucc_slow_init(struct ucc_slow_info *
98197 uccs = kzalloc(sizeof(struct ucc_slow_private), GFP_KERNEL);
98198 if (!uccs) {
98199 printk(KERN_ERR "%s: Cannot allocate private data\n",
98200 - __FUNCTION__);
98201 + __func__);
98202 return -ENOMEM;
98203 }
98204
98205 @@ -170,7 +170,7 @@ int ucc_slow_init(struct ucc_slow_info *
98206 /* Set the PHY base address */
98207 uccs->us_regs = ioremap(us_info->regs, sizeof(struct ucc_slow));
98208 if (uccs->us_regs == NULL) {
98209 - printk(KERN_ERR "%s: Cannot map UCC registers\n", __FUNCTION__);
98210 + printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__);
98211 return -ENOMEM;
98212 }
98213
98214 @@ -189,7 +189,7 @@ int ucc_slow_init(struct ucc_slow_info *
98215 uccs->us_pram_offset =
98216 qe_muram_alloc(UCC_SLOW_PRAM_SIZE, ALIGNMENT_OF_UCC_SLOW_PRAM);
98217 if (IS_ERR_VALUE(uccs->us_pram_offset)) {
98218 - printk(KERN_ERR "%s: cannot allocate MURAM for PRAM", __FUNCTION__);
98219 + printk(KERN_ERR "%s: cannot allocate MURAM for PRAM", __func__);
98220 ucc_slow_free(uccs);
98221 return -ENOMEM;
98222 }
98223 @@ -202,7 +202,7 @@ int ucc_slow_init(struct ucc_slow_info *
98224 /* Set UCC to slow type */
98225 ret = ucc_set_type(us_info->ucc_num, UCC_SPEED_TYPE_SLOW);
98226 if (ret) {
98227 - printk(KERN_ERR "%s: cannot set UCC type", __FUNCTION__);
98228 + printk(KERN_ERR "%s: cannot set UCC type", __func__);
98229 ucc_slow_free(uccs);
98230 return ret;
98231 }
98232 @@ -216,7 +216,7 @@ int ucc_slow_init(struct ucc_slow_info *
98233 qe_muram_alloc(us_info->rx_bd_ring_len * sizeof(struct qe_bd),
98234 QE_ALIGNMENT_OF_BD);
98235 if (IS_ERR_VALUE(uccs->rx_base_offset)) {
98236 - printk(KERN_ERR "%s: cannot allocate %u RX BDs\n", __FUNCTION__,
98237 + printk(KERN_ERR "%s: cannot allocate %u RX BDs\n", __func__,
98238 us_info->rx_bd_ring_len);
98239 uccs->rx_base_offset = 0;
98240 ucc_slow_free(uccs);
98241 @@ -227,7 +227,7 @@ int ucc_slow_init(struct ucc_slow_info *
98242 qe_muram_alloc(us_info->tx_bd_ring_len * sizeof(struct qe_bd),
98243 QE_ALIGNMENT_OF_BD);
98244 if (IS_ERR_VALUE(uccs->tx_base_offset)) {
98245 - printk(KERN_ERR "%s: cannot allocate TX BDs", __FUNCTION__);
98246 + printk(KERN_ERR "%s: cannot allocate TX BDs", __func__);
98247 uccs->tx_base_offset = 0;
98248 ucc_slow_free(uccs);
98249 return -ENOMEM;
98250 @@ -317,7 +317,7 @@ int ucc_slow_init(struct ucc_slow_info *
98251 if (ucc_set_qe_mux_rxtx(us_info->ucc_num, us_info->rx_clock,
98252 COMM_DIR_RX)) {
98253 printk(KERN_ERR "%s: illegal value for RX clock\n",
98254 - __FUNCTION__);
98255 + __func__);
98256 ucc_slow_free(uccs);
98257 return -EINVAL;
98258 }
98259 @@ -325,7 +325,7 @@ int ucc_slow_init(struct ucc_slow_info *
98260 if (ucc_set_qe_mux_rxtx(us_info->ucc_num, us_info->tx_clock,
98261 COMM_DIR_TX)) {
98262 printk(KERN_ERR "%s: illegal value for TX clock\n",
98263 - __FUNCTION__);
98264 + __func__);
98265 ucc_slow_free(uccs);
98266 return -EINVAL;
98267 }
98268 Index: linux-2.6.25.4/arch/powerpc/sysdev/rtc_cmos_setup.c
98269 ===================================================================
98270 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/rtc_cmos_setup.c
98271 +++ linux-2.6.25.4/arch/powerpc/sysdev/rtc_cmos_setup.c
98272 @@ -56,3 +56,5 @@ static int __init add_rtc(void)
98273 return 0;
98274 }
98275 fs_initcall(add_rtc);
98276 +
98277 +MODULE_LICENSE("GPL");
98278 Index: linux-2.6.25.4/arch/powerpc/sysdev/tsi108_dev.c
98279 ===================================================================
98280 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/tsi108_dev.c
98281 +++ linux-2.6.25.4/arch/powerpc/sysdev/tsi108_dev.c
98282 @@ -84,7 +84,7 @@ static int __init tsi108_eth_of_init(voi
98283
98284 ret = of_address_to_resource(np, 0, &r[0]);
98285 DBG("%s: name:start->end = %s:0x%lx-> 0x%lx\n",
98286 - __FUNCTION__,r[0].name, r[0].start, r[0].end);
98287 + __func__,r[0].name, r[0].start, r[0].end);
98288 if (ret)
98289 goto err;
98290
98291 @@ -93,7 +93,7 @@ static int __init tsi108_eth_of_init(voi
98292 r[1].end = irq_of_parse_and_map(np, 0);
98293 r[1].flags = IORESOURCE_IRQ;
98294 DBG("%s: name:start->end = %s:0x%lx-> 0x%lx\n",
98295 - __FUNCTION__,r[1].name, r[1].start, r[1].end);
98296 + __func__,r[1].name, r[1].start, r[1].end);
98297
98298 tsi_eth_dev =
98299 platform_device_register_simple("tsi-ethernet", i++, &r[0],
98300 Index: linux-2.6.25.4/arch/powerpc/sysdev/tsi108_pci.c
98301 ===================================================================
98302 --- linux-2.6.25.4.orig/arch/powerpc/sysdev/tsi108_pci.c
98303 +++ linux-2.6.25.4/arch/powerpc/sysdev/tsi108_pci.c
98304 @@ -207,7 +207,7 @@ int __init tsi108_setup_pci(struct devic
98305 /* PCI Config mapping */
98306 tsi108_pci_cfg_base = (u32)ioremap(cfg_phys, TSI108_PCI_CFG_SIZE);
98307 tsi108_pci_cfg_phys = cfg_phys;
98308 - DBG("TSI_PCI: %s tsi108_pci_cfg_base=0x%x\n", __FUNCTION__,
98309 + DBG("TSI_PCI: %s tsi108_pci_cfg_base=0x%x\n", __func__,
98310 tsi108_pci_cfg_base);
98311
98312 /* Fetch host bridge registers address */
98313 @@ -395,7 +395,7 @@ static int pci_irq_host_xlate(struct irq
98314 static int pci_irq_host_map(struct irq_host *h, unsigned int virq,
98315 irq_hw_number_t hw)
98316 { unsigned int irq;
98317 - DBG("%s(%d, 0x%lx)\n", __FUNCTION__, virq, hw);
98318 + DBG("%s(%d, 0x%lx)\n", __func__, virq, hw);
98319 if ((virq >= 1) && (virq <= 4)){
98320 irq = virq + IRQ_PCI_INTAD_BASE - 1;
98321 get_irq_desc(irq)->status |= IRQ_LEVEL;
98322 Index: linux-2.6.25.4/arch/powerpc/xmon/xmon.c
98323 ===================================================================
98324 --- linux-2.6.25.4.orig/arch/powerpc/xmon/xmon.c
98325 +++ linux-2.6.25.4/arch/powerpc/xmon/xmon.c
98326 @@ -45,7 +45,6 @@
98327 #ifdef CONFIG_PPC64
98328 #include <asm/hvcall.h>
98329 #include <asm/paca.h>
98330 -#include <asm/iseries/it_lp_reg_save.h>
98331 #endif
98332
98333 #include "nonstdio.h"
98334 @@ -1244,15 +1243,12 @@ static void get_function_bounds(unsigned
98335
98336 static int xmon_depth_to_print = 64;
98337
98338 -#ifdef CONFIG_PPC64
98339 -#define LRSAVE_OFFSET 0x10
98340 -#define REG_FRAME_MARKER 0x7265677368657265ul /* "regshere" */
98341 -#define MARKER_OFFSET 0x60
98342 +#define LRSAVE_OFFSET (STACK_FRAME_LR_SAVE * sizeof(unsigned long))
98343 +#define MARKER_OFFSET (STACK_FRAME_MARKER * sizeof(unsigned long))
98344 +
98345 +#ifdef __powerpc64__
98346 #define REGS_OFFSET 0x70
98347 #else
98348 -#define LRSAVE_OFFSET 4
98349 -#define REG_FRAME_MARKER 0x72656773
98350 -#define MARKER_OFFSET 8
98351 #define REGS_OFFSET 16
98352 #endif
98353
98354 @@ -1318,7 +1314,7 @@ static void xmon_show_stack(unsigned lon
98355 /* Look for "regshere" marker to see if this is
98356 an exception frame. */
98357 if (mread(sp + MARKER_OFFSET, &marker, sizeof(unsigned long))
98358 - && marker == REG_FRAME_MARKER) {
98359 + && marker == STACK_FRAME_REGS_MARKER) {
98360 if (mread(sp + REGS_OFFSET, &regs, sizeof(regs))
98361 != sizeof(regs)) {
98362 printf("Couldn't read registers at %lx\n",
98363 @@ -1598,7 +1594,6 @@ void super_regs(void)
98364 if (firmware_has_feature(FW_FEATURE_ISERIES)) {
98365 struct paca_struct *ptrPaca;
98366 struct lppaca *ptrLpPaca;
98367 - struct ItLpRegSave *ptrLpRegSave;
98368
98369 /* Dump out relevant Paca data areas. */
98370 printf("Paca: \n");
98371 @@ -1611,15 +1606,6 @@ void super_regs(void)
98372 printf(" Saved Gpr3=%.16lx Saved Gpr4=%.16lx \n",
98373 ptrLpPaca->saved_gpr3, ptrLpPaca->saved_gpr4);
98374 printf(" Saved Gpr5=%.16lx \n", ptrLpPaca->saved_gpr5);
98375 -
98376 - printf(" Local Processor Register Save Area (LpRegSave): \n");
98377 - ptrLpRegSave = ptrPaca->reg_save_ptr;
98378 - printf(" Saved Sprg0=%.16lx Saved Sprg1=%.16lx \n",
98379 - ptrLpRegSave->xSPRG0, ptrLpRegSave->xSPRG0);
98380 - printf(" Saved Sprg2=%.16lx Saved Sprg3=%.16lx \n",
98381 - ptrLpRegSave->xSPRG2, ptrLpRegSave->xSPRG3);
98382 - printf(" Saved Msr =%.16lx Saved Nia =%.16lx \n",
98383 - ptrLpRegSave->xMSR, ptrLpRegSave->xNIA);
98384 }
98385 #endif
98386
98387 Index: linux-2.6.25.4/arch/ppc/8xx_io/commproc.c
98388 ===================================================================
98389 --- linux-2.6.25.4.orig/arch/ppc/8xx_io/commproc.c
98390 +++ linux-2.6.25.4/arch/ppc/8xx_io/commproc.c
98391 @@ -43,7 +43,7 @@
98392 ({ \
98393 u32 offset = offsetof(immap_t, member); \
98394 void *addr = ioremap (IMAP_ADDR + offset, \
98395 - sizeof( ((immap_t*)0)->member)); \
98396 + FIELD_SIZEOF(immap_t, member)); \
98397 addr; \
98398 })
98399
98400 Index: linux-2.6.25.4/arch/ppc/8xx_io/fec.c
98401 ===================================================================
98402 --- linux-2.6.25.4.orig/arch/ppc/8xx_io/fec.c
98403 +++ linux-2.6.25.4/arch/ppc/8xx_io/fec.c
98404 @@ -520,7 +520,7 @@ fec_enet_interrupt(int irq, void * dev_i
98405 #ifdef CONFIG_USE_MDIO
98406 fec_enet_mii(dev);
98407 #else
98408 -printk("%s[%d] %s: unexpected FEC_ENET_MII event\n", __FILE__,__LINE__,__FUNCTION__);
98409 +printk("%s[%d] %s: unexpected FEC_ENET_MII event\n", __FILE__, __LINE__, __func__);
98410 #endif /* CONFIG_USE_MDIO */
98411 }
98412
98413 @@ -1441,7 +1441,7 @@ irqreturn_t mii_link_interrupt(int irq,
98414 fecp->fec_ecntrl = ecntrl; /* restore old settings */
98415 }
98416 #else
98417 -printk("%s[%d] %s: unexpected Link interrupt\n", __FILE__,__LINE__,__FUNCTION__);
98418 +printk("%s[%d] %s: unexpected Link interrupt\n", __FILE__, __LINE__, __func__);
98419 #endif /* CONFIG_USE_MDIO */
98420
98421 #ifndef CONFIG_RPXCLASSIC
98422 Index: linux-2.6.25.4/arch/ppc/kernel/head.S
98423 ===================================================================
98424 --- linux-2.6.25.4.orig/arch/ppc/kernel/head.S
98425 +++ linux-2.6.25.4/arch/ppc/kernel/head.S
98426 @@ -701,23 +701,6 @@ load_up_altivec:
98427 b fast_exception_return
98428
98429 /*
98430 - * AltiVec unavailable trap from kernel - print a message, but let
98431 - * the task use AltiVec in the kernel until it returns to user mode.
98432 - */
98433 -KernelAltiVec:
98434 - lwz r3,_MSR(r1)
98435 - oris r3,r3,MSR_VEC@h
98436 - stw r3,_MSR(r1) /* enable use of AltiVec after return */
98437 - lis r3,87f@h
98438 - ori r3,r3,87f@l
98439 - mr r4,r2 /* current */
98440 - lwz r5,_NIP(r1)
98441 - bl printk
98442 - b ret_from_except
98443 -87: .string "AltiVec used in kernel (task=%p, pc=%x) \n"
98444 - .align 4,0
98445 -
98446 -/*
98447 * giveup_altivec(tsk)
98448 * Disable AltiVec for the task given as the argument,
98449 * and save the AltiVec registers in its thread_struct.
98450 Index: linux-2.6.25.4/arch/ppc/mm/init.c
98451 ===================================================================
98452 --- linux-2.6.25.4.orig/arch/ppc/mm/init.c
98453 +++ linux-2.6.25.4/arch/ppc/mm/init.c
98454 @@ -109,7 +109,6 @@ void show_mem(void)
98455
98456 printk("Mem-info:\n");
98457 show_free_areas();
98458 - printk("Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10));
98459 i = max_mapnr;
98460 while (i-- > 0) {
98461 total++;
98462 Index: linux-2.6.25.4/arch/ppc/platforms/radstone_ppc7d.c
98463 ===================================================================
98464 --- linux-2.6.25.4.orig/arch/ppc/platforms/radstone_ppc7d.c
98465 +++ linux-2.6.25.4/arch/ppc/platforms/radstone_ppc7d.c
98466 @@ -512,7 +512,7 @@ static void __init ppc7d_init_irq(void)
98467 {
98468 int irq;
98469
98470 - pr_debug("%s\n", __FUNCTION__);
98471 + pr_debug("%s\n", __func__);
98472 i8259_init(0, 0);
98473 mv64360_init_irq();
98474
98475 @@ -569,7 +569,7 @@ static int __init ppc7d_map_irq(struct p
98476 };
98477 const long min_idsel = 10, max_idsel = 14, irqs_per_slot = 4;
98478
98479 - pr_debug("%s: %04x/%04x/%x: idsel=%hx pin=%hu\n", __FUNCTION__,
98480 + pr_debug("%s: %04x/%04x/%x: idsel=%hx pin=%hu\n", __func__,
98481 dev->vendor, dev->device, PCI_FUNC(dev->devfn), idsel, pin);
98482
98483 return PCI_IRQ_TABLE_LOOKUP;
98484 @@ -1300,7 +1300,7 @@ static void ppc7d_init2(void)
98485 u32 data;
98486 u8 data8;
98487
98488 - pr_debug("%s: enter\n", __FUNCTION__);
98489 + pr_debug("%s: enter\n", __func__);
98490
98491 /* Wait for debugger? */
98492 if (ppc7d_wait_debugger) {
98493 @@ -1333,7 +1333,7 @@ static void ppc7d_init2(void)
98494 ppc_md.set_rtc_time = ppc7d_set_rtc_time;
98495 ppc_md.get_rtc_time = ppc7d_get_rtc_time;
98496
98497 - pr_debug("%s: exit\n", __FUNCTION__);
98498 + pr_debug("%s: exit\n", __func__);
98499 }
98500
98501 /* Called from machine_init(), early, before any of the __init functions
98502 Index: linux-2.6.25.4/arch/ppc/syslib/mpc52xx_setup.c
98503 ===================================================================
98504 --- linux-2.6.25.4.orig/arch/ppc/syslib/mpc52xx_setup.c
98505 +++ linux-2.6.25.4/arch/ppc/syslib/mpc52xx_setup.c
98506 @@ -279,7 +279,7 @@ int mpc52xx_match_psc_function(int psc_i
98507
98508 int mpc52xx_set_psc_clkdiv(int psc_id, int clkdiv)
98509 {
98510 - static spinlock_t lock = SPIN_LOCK_UNLOCKED;
98511 + static DEFINE_SPINLOCK(lock);
98512 struct mpc52xx_cdm __iomem *cdm;
98513 unsigned long flags;
98514 u16 mclken_div;
98515 Index: linux-2.6.25.4/arch/sparc64/Kconfig
98516 ===================================================================
98517 --- linux-2.6.25.4.orig/arch/sparc64/Kconfig
98518 +++ linux-2.6.25.4/arch/sparc64/Kconfig
98519 @@ -16,6 +16,7 @@ config SPARC64
98520 bool
98521 default y
98522 select HAVE_IDE
98523 + select HAVE_LMB
98524 help
98525 SPARC is a family of RISC microprocessors designed and marketed by
98526 Sun Microsystems, incorporated. This port covers the newer 64-bit
98527 Index: linux-2.6.25.4/drivers/block/viodasd.c
98528 ===================================================================
98529 --- linux-2.6.25.4.orig/drivers/block/viodasd.c
98530 +++ linux-2.6.25.4/drivers/block/viodasd.c
98531 @@ -69,7 +69,7 @@ MODULE_LICENSE("GPL");
98532 enum {
98533 PARTITION_SHIFT = 3,
98534 MAX_DISKNO = HVMAXARCHITECTEDVIRTUALDISKS,
98535 - MAX_DISK_NAME = sizeof(((struct gendisk *)0)->disk_name)
98536 + MAX_DISK_NAME = FIELD_SIZEOF(struct gendisk, disk_name)
98537 };
98538
98539 static DEFINE_SPINLOCK(viodasd_spinlock);
98540 Index: linux-2.6.25.4/drivers/char/hvc_beat.c
98541 ===================================================================
98542 --- linux-2.6.25.4.orig/drivers/char/hvc_beat.c
98543 +++ linux-2.6.25.4/drivers/char/hvc_beat.c
98544 @@ -78,8 +78,8 @@ static int hvc_beat_put_chars(uint32_t v
98545 for (rest = cnt; rest > 0; rest -= nlen) {
98546 nlen = (rest > 16) ? 16 : rest;
98547 memcpy(kb, buf, nlen);
98548 - beat_put_term_char(vtermno, rest, kb[0], kb[1]);
98549 - rest -= nlen;
98550 + beat_put_term_char(vtermno, nlen, kb[0], kb[1]);
98551 + buf += nlen;
98552 }
98553 return cnt;
98554 }
98555 Index: linux-2.6.25.4/drivers/char/xilinx_hwicap/buffer_icap.c
98556 ===================================================================
98557 --- linux-2.6.25.4.orig/drivers/char/xilinx_hwicap/buffer_icap.c
98558 +++ linux-2.6.25.4/drivers/char/xilinx_hwicap/buffer_icap.c
98559 @@ -74,7 +74,7 @@
98560
98561 /**
98562 * buffer_icap_get_status - Get the contents of the status register.
98563 - * @base_address: is the base address of the device
98564 + * @drvdata: a pointer to the drvdata.
98565 *
98566 * The status register contains the ICAP status and the done bit.
98567 *
98568 @@ -88,9 +88,9 @@
98569 * D1 - Always 1
98570 * D0 - Done bit
98571 **/
98572 -static inline u32 buffer_icap_get_status(void __iomem *base_address)
98573 +u32 buffer_icap_get_status(struct hwicap_drvdata *drvdata)
98574 {
98575 - return in_be32(base_address + XHI_STATUS_REG_OFFSET);
98576 + return in_be32(drvdata->base_address + XHI_STATUS_REG_OFFSET);
98577 }
98578
98579 /**
98580 @@ -117,20 +117,8 @@ static inline u32 buffer_icap_get_bram(v
98581 **/
98582 static inline bool buffer_icap_busy(void __iomem *base_address)
98583 {
98584 - return (buffer_icap_get_status(base_address) & 1) == XHI_NOT_FINISHED;
98585 -}
98586 -
98587 -/**
98588 - * buffer_icap_busy - Return true if the icap device is not busy
98589 - * @base_address: is the base address of the device
98590 - *
98591 - * The queries the low order bit of the status register, which
98592 - * indicates whether the current configuration or readback operation
98593 - * has completed.
98594 - **/
98595 -static inline bool buffer_icap_done(void __iomem *base_address)
98596 -{
98597 - return (buffer_icap_get_status(base_address) & 1) == XHI_FINISHED;
98598 + u32 status = in_be32(base_address + XHI_STATUS_REG_OFFSET);
98599 + return (status & 1) == XHI_NOT_FINISHED;
98600 }
98601
98602 /**
98603 Index: linux-2.6.25.4/drivers/char/xilinx_hwicap/buffer_icap.h
98604 ===================================================================
98605 --- linux-2.6.25.4.orig/drivers/char/xilinx_hwicap/buffer_icap.h
98606 +++ linux-2.6.25.4/drivers/char/xilinx_hwicap/buffer_icap.h
98607 @@ -44,8 +44,6 @@
98608 #include <asm/io.h>
98609 #include "xilinx_hwicap.h"
98610
98611 -void buffer_icap_reset(struct hwicap_drvdata *drvdata);
98612 -
98613 /* Loads a partial bitstream from system memory. */
98614 int buffer_icap_set_configuration(struct hwicap_drvdata *drvdata, u32 *data,
98615 u32 Size);
98616 @@ -54,4 +52,7 @@ int buffer_icap_set_configuration(struct
98617 int buffer_icap_get_configuration(struct hwicap_drvdata *drvdata, u32 *data,
98618 u32 Size);
98619
98620 +u32 buffer_icap_get_status(struct hwicap_drvdata *drvdata);
98621 +void buffer_icap_reset(struct hwicap_drvdata *drvdata);
98622 +
98623 #endif
98624 Index: linux-2.6.25.4/drivers/char/xilinx_hwicap/fifo_icap.c
98625 ===================================================================
98626 --- linux-2.6.25.4.orig/drivers/char/xilinx_hwicap/fifo_icap.c
98627 +++ linux-2.6.25.4/drivers/char/xilinx_hwicap/fifo_icap.c
98628 @@ -78,13 +78,6 @@
98629 #define XHI_CR_READ_MASK 0x00000002 /* Read from ICAP to FIFO */
98630 #define XHI_CR_WRITE_MASK 0x00000001 /* Write from FIFO to ICAP */
98631
98632 -/* Status Register (SR) */
98633 -#define XHI_SR_CFGERR_N_MASK 0x00000100 /* Config Error Mask */
98634 -#define XHI_SR_DALIGN_MASK 0x00000080 /* Data Alignment Mask */
98635 -#define XHI_SR_RIP_MASK 0x00000040 /* Read back Mask */
98636 -#define XHI_SR_IN_ABORT_N_MASK 0x00000020 /* Select Map Abort Mask */
98637 -#define XHI_SR_DONE_MASK 0x00000001 /* Done bit Mask */
98638 -
98639
98640 #define XHI_WFO_MAX_VACANCY 1024 /* Max Write FIFO Vacancy, in words */
98641 #define XHI_RFO_MAX_OCCUPANCY 256 /* Max Read FIFO Occupancy, in words */
98642 @@ -152,13 +145,35 @@ static inline void fifo_icap_start_readb
98643 }
98644
98645 /**
98646 + * fifo_icap_get_status - Get the contents of the status register.
98647 + * @drvdata: a pointer to the drvdata.
98648 + *
98649 + * The status register contains the ICAP status and the done bit.
98650 + *
98651 + * D8 - cfgerr
98652 + * D7 - dalign
98653 + * D6 - rip
98654 + * D5 - in_abort_l
98655 + * D4 - Always 1
98656 + * D3 - Always 1
98657 + * D2 - Always 1
98658 + * D1 - Always 1
98659 + * D0 - Done bit
98660 + **/
98661 +u32 fifo_icap_get_status(struct hwicap_drvdata *drvdata)
98662 +{
98663 + u32 status = in_be32(drvdata->base_address + XHI_SR_OFFSET);
98664 + dev_dbg(drvdata->dev, "Getting status = %x\n", status);
98665 + return status;
98666 +}
98667 +
98668 +/**
98669 * fifo_icap_busy - Return true if the ICAP is still processing a transaction.
98670 * @drvdata: a pointer to the drvdata.
98671 **/
98672 static inline u32 fifo_icap_busy(struct hwicap_drvdata *drvdata)
98673 {
98674 u32 status = in_be32(drvdata->base_address + XHI_SR_OFFSET);
98675 - dev_dbg(drvdata->dev, "Getting status = %x\n", status);
98676 return (status & XHI_SR_DONE_MASK) ? 0 : 1;
98677 }
98678
98679 Index: linux-2.6.25.4/drivers/char/xilinx_hwicap/fifo_icap.h
98680 ===================================================================
98681 --- linux-2.6.25.4.orig/drivers/char/xilinx_hwicap/fifo_icap.h
98682 +++ linux-2.6.25.4/drivers/char/xilinx_hwicap/fifo_icap.h
98683 @@ -56,6 +56,7 @@ int fifo_icap_set_configuration(
98684 u32 *FrameBuffer,
98685 u32 NumWords);
98686
98687 +u32 fifo_icap_get_status(struct hwicap_drvdata *drvdata);
98688 void fifo_icap_reset(struct hwicap_drvdata *drvdata);
98689 void fifo_icap_flush_fifo(struct hwicap_drvdata *drvdata);
98690
98691 Index: linux-2.6.25.4/drivers/char/xilinx_hwicap/xilinx_hwicap.c
98692 ===================================================================
98693 --- linux-2.6.25.4.orig/drivers/char/xilinx_hwicap/xilinx_hwicap.c
98694 +++ linux-2.6.25.4/drivers/char/xilinx_hwicap/xilinx_hwicap.c
98695 @@ -36,7 +36,7 @@
98696 *****************************************************************************/
98697
98698 /*
98699 - * This is the code behind /dev/xilinx_icap -- it allows a user-space
98700 + * This is the code behind /dev/icap* -- it allows a user-space
98701 * application to use the Xilinx ICAP subsystem.
98702 *
98703 * The following operations are possible:
98704 @@ -67,7 +67,7 @@
98705 * user-space application code that uses this device. The simplest
98706 * way to use this interface is simply:
98707 *
98708 - * cp foo.bit /dev/xilinx_icap
98709 + * cp foo.bit /dev/icap0
98710 *
98711 * Note that unless foo.bit is an appropriately constructed partial
98712 * bitstream, this has a high likelyhood of overwriting the design
98713 @@ -105,18 +105,14 @@
98714 #include "buffer_icap.h"
98715 #include "fifo_icap.h"
98716
98717 -#define DRIVER_NAME "xilinx_icap"
98718 +#define DRIVER_NAME "icap"
98719
98720 #define HWICAP_REGS (0x10000)
98721
98722 -/* dynamically allocate device number */
98723 -static int xhwicap_major;
98724 -static int xhwicap_minor;
98725 +#define XHWICAP_MAJOR 259
98726 +#define XHWICAP_MINOR 0
98727 #define HWICAP_DEVICES 1
98728
98729 -module_param(xhwicap_major, int, S_IRUGO);
98730 -module_param(xhwicap_minor, int, S_IRUGO);
98731 -
98732 /* An array, which is set to true when the device is registered. */
98733 static bool probed_devices[HWICAP_DEVICES];
98734 static struct mutex icap_sem;
98735 @@ -250,8 +246,26 @@ static int hwicap_get_configuration_regi
98736 * Create the data to be written to the ICAP.
98737 */
98738 buffer[index++] = XHI_DUMMY_PACKET;
98739 + buffer[index++] = XHI_NOOP_PACKET;
98740 buffer[index++] = XHI_SYNC_PACKET;
98741 buffer[index++] = XHI_NOOP_PACKET;
98742 + buffer[index++] = XHI_NOOP_PACKET;
98743 +
98744 + /*
98745 + * Write the data to the FIFO and initiate the transfer of data present
98746 + * in the FIFO to the ICAP device.
98747 + */
98748 + status = drvdata->config->set_configuration(drvdata,
98749 + &buffer[0], index);
98750 + if (status)
98751 + return status;
98752 +
98753 + /* If the syncword was not found, then we need to start over. */
98754 + status = drvdata->config->get_status(drvdata);
98755 + if ((status & XHI_SR_DALIGN_MASK) != XHI_SR_DALIGN_MASK)
98756 + return -EIO;
98757 +
98758 + index = 0;
98759 buffer[index++] = hwicap_type_1_read(reg) | 1;
98760 buffer[index++] = XHI_NOOP_PACKET;
98761 buffer[index++] = XHI_NOOP_PACKET;
98762 @@ -587,7 +601,7 @@ static int __devinit hwicap_setup(struct
98763 probed_devices[id] = 1;
98764 mutex_unlock(&icap_sem);
98765
98766 - devt = MKDEV(xhwicap_major, xhwicap_minor + id);
98767 + devt = MKDEV(XHWICAP_MAJOR, XHWICAP_MINOR + id);
98768
98769 drvdata = kzalloc(sizeof(struct hwicap_drvdata), GFP_KERNEL);
98770 if (!drvdata) {
98771 @@ -664,12 +678,14 @@ static int __devinit hwicap_setup(struct
98772 static struct hwicap_driver_config buffer_icap_config = {
98773 .get_configuration = buffer_icap_get_configuration,
98774 .set_configuration = buffer_icap_set_configuration,
98775 + .get_status = buffer_icap_get_status,
98776 .reset = buffer_icap_reset,
98777 };
98778
98779 static struct hwicap_driver_config fifo_icap_config = {
98780 .get_configuration = fifo_icap_get_configuration,
98781 .set_configuration = fifo_icap_set_configuration,
98782 + .get_status = fifo_icap_get_status,
98783 .reset = fifo_icap_reset,
98784 };
98785
98786 @@ -690,7 +706,7 @@ static int __devexit hwicap_remove(struc
98787 dev_set_drvdata(dev, NULL);
98788
98789 mutex_lock(&icap_sem);
98790 - probed_devices[MINOR(dev->devt)-xhwicap_minor] = 0;
98791 + probed_devices[MINOR(dev->devt)-XHWICAP_MINOR] = 0;
98792 mutex_unlock(&icap_sem);
98793 return 0; /* success */
98794 }
98795 @@ -830,23 +846,12 @@ static int __init hwicap_module_init(voi
98796 icap_class = class_create(THIS_MODULE, "xilinx_config");
98797 mutex_init(&icap_sem);
98798
98799 - if (xhwicap_major) {
98800 - devt = MKDEV(xhwicap_major, xhwicap_minor);
98801 - retval = register_chrdev_region(
98802 - devt,
98803 - HWICAP_DEVICES,
98804 - DRIVER_NAME);
98805 - if (retval < 0)
98806 - return retval;
98807 - } else {
98808 - retval = alloc_chrdev_region(&devt,
98809 - xhwicap_minor,
98810 - HWICAP_DEVICES,
98811 - DRIVER_NAME);
98812 - if (retval < 0)
98813 - return retval;
98814 - xhwicap_major = MAJOR(devt);
98815 - }
98816 + devt = MKDEV(XHWICAP_MAJOR, XHWICAP_MINOR);
98817 + retval = register_chrdev_region(devt,
98818 + HWICAP_DEVICES,
98819 + DRIVER_NAME);
98820 + if (retval < 0)
98821 + return retval;
98822
98823 retval = platform_driver_register(&hwicap_platform_driver);
98824
98825 @@ -871,7 +876,7 @@ static int __init hwicap_module_init(voi
98826
98827 static void __exit hwicap_module_cleanup(void)
98828 {
98829 - dev_t devt = MKDEV(xhwicap_major, xhwicap_minor);
98830 + dev_t devt = MKDEV(XHWICAP_MAJOR, XHWICAP_MINOR);
98831
98832 class_destroy(icap_class);
98833
98834 Index: linux-2.6.25.4/drivers/char/xilinx_hwicap/xilinx_hwicap.h
98835 ===================================================================
98836 --- linux-2.6.25.4.orig/drivers/char/xilinx_hwicap/xilinx_hwicap.h
98837 +++ linux-2.6.25.4/drivers/char/xilinx_hwicap/xilinx_hwicap.h
98838 @@ -65,10 +65,27 @@ struct hwicap_drvdata {
98839 };
98840
98841 struct hwicap_driver_config {
98842 + /* Read configuration data given by size into the data buffer.
98843 + Return 0 if successful. */
98844 int (*get_configuration)(struct hwicap_drvdata *drvdata, u32 *data,
98845 u32 size);
98846 + /* Write configuration data given by size from the data buffer.
98847 + Return 0 if successful. */
98848 int (*set_configuration)(struct hwicap_drvdata *drvdata, u32 *data,
98849 u32 size);
98850 + /* Get the status register, bit pattern given by:
98851 + * D8 - 0 = configuration error
98852 + * D7 - 1 = alignment found
98853 + * D6 - 1 = readback in progress
98854 + * D5 - 0 = abort in progress
98855 + * D4 - Always 1
98856 + * D3 - Always 1
98857 + * D2 - Always 1
98858 + * D1 - Always 1
98859 + * D0 - 1 = operation completed
98860 + */
98861 + u32 (*get_status)(struct hwicap_drvdata *drvdata);
98862 + /* Reset the hw */
98863 void (*reset)(struct hwicap_drvdata *drvdata);
98864 };
98865
98866 @@ -163,6 +180,13 @@ struct config_registers {
98867 /* Constant to use for CRC check when CRC has been disabled */
98868 #define XHI_DISABLED_AUTO_CRC 0x0000DEFCUL
98869
98870 +/* Meanings of the bits returned by get_status */
98871 +#define XHI_SR_CFGERR_N_MASK 0x00000100 /* Config Error Mask */
98872 +#define XHI_SR_DALIGN_MASK 0x00000080 /* Data Alignment Mask */
98873 +#define XHI_SR_RIP_MASK 0x00000040 /* Read back Mask */
98874 +#define XHI_SR_IN_ABORT_N_MASK 0x00000020 /* Select Map Abort Mask */
98875 +#define XHI_SR_DONE_MASK 0x00000001 /* Done bit Mask */
98876 +
98877 /**
98878 * hwicap_type_1_read - Generates a Type 1 read packet header.
98879 * @reg: is the address of the register to be read back.
98880 Index: linux-2.6.25.4/drivers/mtd/nand/fsl_elbc_nand.c
98881 ===================================================================
98882 --- linux-2.6.25.4.orig/drivers/mtd/nand/fsl_elbc_nand.c
98883 +++ linux-2.6.25.4/drivers/mtd/nand/fsl_elbc_nand.c
98884 @@ -36,207 +36,12 @@
98885 #include <linux/mtd/partitions.h>
98886
98887 #include <asm/io.h>
98888 -
98889 +#include <asm/fsl_lbc.h>
98890
98891 #define MAX_BANKS 8
98892 #define ERR_BYTE 0xFF /* Value returned for read bytes when read failed */
98893 #define FCM_TIMEOUT_MSECS 500 /* Maximum number of mSecs to wait for FCM */
98894
98895 -struct elbc_bank {
98896 - __be32 br; /**< Base Register */
98897 -#define BR_BA 0xFFFF8000
98898 -#define BR_BA_SHIFT 15
98899 -#define BR_PS 0x00001800
98900 -#define BR_PS_SHIFT 11
98901 -#define BR_PS_8 0x00000800 /* Port Size 8 bit */
98902 -#define BR_PS_16 0x00001000 /* Port Size 16 bit */
98903 -#define BR_PS_32 0x00001800 /* Port Size 32 bit */
98904 -#define BR_DECC 0x00000600
98905 -#define BR_DECC_SHIFT 9
98906 -#define BR_DECC_OFF 0x00000000 /* HW ECC checking and generation off */
98907 -#define BR_DECC_CHK 0x00000200 /* HW ECC checking on, generation off */
98908 -#define BR_DECC_CHK_GEN 0x00000400 /* HW ECC checking and generation on */
98909 -#define BR_WP 0x00000100
98910 -#define BR_WP_SHIFT 8
98911 -#define BR_MSEL 0x000000E0
98912 -#define BR_MSEL_SHIFT 5
98913 -#define BR_MS_GPCM 0x00000000 /* GPCM */
98914 -#define BR_MS_FCM 0x00000020 /* FCM */
98915 -#define BR_MS_SDRAM 0x00000060 /* SDRAM */
98916 -#define BR_MS_UPMA 0x00000080 /* UPMA */
98917 -#define BR_MS_UPMB 0x000000A0 /* UPMB */
98918 -#define BR_MS_UPMC 0x000000C0 /* UPMC */
98919 -#define BR_V 0x00000001
98920 -#define BR_V_SHIFT 0
98921 -#define BR_RES ~(BR_BA|BR_PS|BR_DECC|BR_WP|BR_MSEL|BR_V)
98922 -
98923 - __be32 or; /**< Base Register */
98924 -#define OR0 0x5004
98925 -#define OR1 0x500C
98926 -#define OR2 0x5014
98927 -#define OR3 0x501C
98928 -#define OR4 0x5024
98929 -#define OR5 0x502C
98930 -#define OR6 0x5034
98931 -#define OR7 0x503C
98932 -
98933 -#define OR_FCM_AM 0xFFFF8000
98934 -#define OR_FCM_AM_SHIFT 15
98935 -#define OR_FCM_BCTLD 0x00001000
98936 -#define OR_FCM_BCTLD_SHIFT 12
98937 -#define OR_FCM_PGS 0x00000400
98938 -#define OR_FCM_PGS_SHIFT 10
98939 -#define OR_FCM_CSCT 0x00000200
98940 -#define OR_FCM_CSCT_SHIFT 9
98941 -#define OR_FCM_CST 0x00000100
98942 -#define OR_FCM_CST_SHIFT 8
98943 -#define OR_FCM_CHT 0x00000080
98944 -#define OR_FCM_CHT_SHIFT 7
98945 -#define OR_FCM_SCY 0x00000070
98946 -#define OR_FCM_SCY_SHIFT 4
98947 -#define OR_FCM_SCY_1 0x00000010
98948 -#define OR_FCM_SCY_2 0x00000020
98949 -#define OR_FCM_SCY_3 0x00000030
98950 -#define OR_FCM_SCY_4 0x00000040
98951 -#define OR_FCM_SCY_5 0x00000050
98952 -#define OR_FCM_SCY_6 0x00000060
98953 -#define OR_FCM_SCY_7 0x00000070
98954 -#define OR_FCM_RST 0x00000008
98955 -#define OR_FCM_RST_SHIFT 3
98956 -#define OR_FCM_TRLX 0x00000004
98957 -#define OR_FCM_TRLX_SHIFT 2
98958 -#define OR_FCM_EHTR 0x00000002
98959 -#define OR_FCM_EHTR_SHIFT 1
98960 -};
98961 -
98962 -struct elbc_regs {
98963 - struct elbc_bank bank[8];
98964 - u8 res0[0x28];
98965 - __be32 mar; /**< UPM Address Register */
98966 - u8 res1[0x4];
98967 - __be32 mamr; /**< UPMA Mode Register */
98968 - __be32 mbmr; /**< UPMB Mode Register */
98969 - __be32 mcmr; /**< UPMC Mode Register */
98970 - u8 res2[0x8];
98971 - __be32 mrtpr; /**< Memory Refresh Timer Prescaler Register */
98972 - __be32 mdr; /**< UPM Data Register */
98973 - u8 res3[0x4];
98974 - __be32 lsor; /**< Special Operation Initiation Register */
98975 - __be32 lsdmr; /**< SDRAM Mode Register */
98976 - u8 res4[0x8];
98977 - __be32 lurt; /**< UPM Refresh Timer */
98978 - __be32 lsrt; /**< SDRAM Refresh Timer */
98979 - u8 res5[0x8];
98980 - __be32 ltesr; /**< Transfer Error Status Register */
98981 -#define LTESR_BM 0x80000000
98982 -#define LTESR_FCT 0x40000000
98983 -#define LTESR_PAR 0x20000000
98984 -#define LTESR_WP 0x04000000
98985 -#define LTESR_ATMW 0x00800000
98986 -#define LTESR_ATMR 0x00400000
98987 -#define LTESR_CS 0x00080000
98988 -#define LTESR_CC 0x00000001
98989 -#define LTESR_NAND_MASK (LTESR_FCT | LTESR_PAR | LTESR_CC)
98990 - __be32 ltedr; /**< Transfer Error Disable Register */
98991 - __be32 lteir; /**< Transfer Error Interrupt Register */
98992 - __be32 lteatr; /**< Transfer Error Attributes Register */
98993 - __be32 ltear; /**< Transfer Error Address Register */
98994 - u8 res6[0xC];
98995 - __be32 lbcr; /**< Configuration Register */
98996 -#define LBCR_LDIS 0x80000000
98997 -#define LBCR_LDIS_SHIFT 31
98998 -#define LBCR_BCTLC 0x00C00000
98999 -#define LBCR_BCTLC_SHIFT 22
99000 -#define LBCR_AHD 0x00200000
99001 -#define LBCR_LPBSE 0x00020000
99002 -#define LBCR_LPBSE_SHIFT 17
99003 -#define LBCR_EPAR 0x00010000
99004 -#define LBCR_EPAR_SHIFT 16
99005 -#define LBCR_BMT 0x0000FF00
99006 -#define LBCR_BMT_SHIFT 8
99007 -#define LBCR_INIT 0x00040000
99008 - __be32 lcrr; /**< Clock Ratio Register */
99009 -#define LCRR_DBYP 0x80000000
99010 -#define LCRR_DBYP_SHIFT 31
99011 -#define LCRR_BUFCMDC 0x30000000
99012 -#define LCRR_BUFCMDC_SHIFT 28
99013 -#define LCRR_ECL 0x03000000
99014 -#define LCRR_ECL_SHIFT 24
99015 -#define LCRR_EADC 0x00030000
99016 -#define LCRR_EADC_SHIFT 16
99017 -#define LCRR_CLKDIV 0x0000000F
99018 -#define LCRR_CLKDIV_SHIFT 0
99019 - u8 res7[0x8];
99020 - __be32 fmr; /**< Flash Mode Register */
99021 -#define FMR_CWTO 0x0000F000
99022 -#define FMR_CWTO_SHIFT 12
99023 -#define FMR_BOOT 0x00000800
99024 -#define FMR_ECCM 0x00000100
99025 -#define FMR_AL 0x00000030
99026 -#define FMR_AL_SHIFT 4
99027 -#define FMR_OP 0x00000003
99028 -#define FMR_OP_SHIFT 0
99029 - __be32 fir; /**< Flash Instruction Register */
99030 -#define FIR_OP0 0xF0000000
99031 -#define FIR_OP0_SHIFT 28
99032 -#define FIR_OP1 0x0F000000
99033 -#define FIR_OP1_SHIFT 24
99034 -#define FIR_OP2 0x00F00000
99035 -#define FIR_OP2_SHIFT 20
99036 -#define FIR_OP3 0x000F0000
99037 -#define FIR_OP3_SHIFT 16
99038 -#define FIR_OP4 0x0000F000
99039 -#define FIR_OP4_SHIFT 12
99040 -#define FIR_OP5 0x00000F00
99041 -#define FIR_OP5_SHIFT 8
99042 -#define FIR_OP6 0x000000F0
99043 -#define FIR_OP6_SHIFT 4
99044 -#define FIR_OP7 0x0000000F
99045 -#define FIR_OP7_SHIFT 0
99046 -#define FIR_OP_NOP 0x0 /* No operation and end of sequence */
99047 -#define FIR_OP_CA 0x1 /* Issue current column address */
99048 -#define FIR_OP_PA 0x2 /* Issue current block+page address */
99049 -#define FIR_OP_UA 0x3 /* Issue user defined address */
99050 -#define FIR_OP_CM0 0x4 /* Issue command from FCR[CMD0] */
99051 -#define FIR_OP_CM1 0x5 /* Issue command from FCR[CMD1] */
99052 -#define FIR_OP_CM2 0x6 /* Issue command from FCR[CMD2] */
99053 -#define FIR_OP_CM3 0x7 /* Issue command from FCR[CMD3] */
99054 -#define FIR_OP_WB 0x8 /* Write FBCR bytes from FCM buffer */
99055 -#define FIR_OP_WS 0x9 /* Write 1 or 2 bytes from MDR[AS] */
99056 -#define FIR_OP_RB 0xA /* Read FBCR bytes to FCM buffer */
99057 -#define FIR_OP_RS 0xB /* Read 1 or 2 bytes to MDR[AS] */
99058 -#define FIR_OP_CW0 0xC /* Wait then issue FCR[CMD0] */
99059 -#define FIR_OP_CW1 0xD /* Wait then issue FCR[CMD1] */
99060 -#define FIR_OP_RBW 0xE /* Wait then read FBCR bytes */
99061 -#define FIR_OP_RSW 0xE /* Wait then read 1 or 2 bytes */
99062 - __be32 fcr; /**< Flash Command Register */
99063 -#define FCR_CMD0 0xFF000000
99064 -#define FCR_CMD0_SHIFT 24
99065 -#define FCR_CMD1 0x00FF0000
99066 -#define FCR_CMD1_SHIFT 16
99067 -#define FCR_CMD2 0x0000FF00
99068 -#define FCR_CMD2_SHIFT 8
99069 -#define FCR_CMD3 0x000000FF
99070 -#define FCR_CMD3_SHIFT 0
99071 - __be32 fbar; /**< Flash Block Address Register */
99072 -#define FBAR_BLK 0x00FFFFFF
99073 - __be32 fpar; /**< Flash Page Address Register */
99074 -#define FPAR_SP_PI 0x00007C00
99075 -#define FPAR_SP_PI_SHIFT 10
99076 -#define FPAR_SP_MS 0x00000200
99077 -#define FPAR_SP_CI 0x000001FF
99078 -#define FPAR_SP_CI_SHIFT 0
99079 -#define FPAR_LP_PI 0x0003F000
99080 -#define FPAR_LP_PI_SHIFT 12
99081 -#define FPAR_LP_MS 0x00000800
99082 -#define FPAR_LP_CI 0x000007FF
99083 -#define FPAR_LP_CI_SHIFT 0
99084 - __be32 fbcr; /**< Flash Byte Count Register */
99085 -#define FBCR_BC 0x00000FFF
99086 - u8 res11[0x8];
99087 - u8 res8[0xF00];
99088 -};
99089 -
99090 struct fsl_elbc_ctrl;
99091
99092 /* mtd information per set */
99093 @@ -261,7 +66,7 @@ struct fsl_elbc_ctrl {
99094
99095 /* device info */
99096 struct device *dev;
99097 - struct elbc_regs __iomem *regs;
99098 + struct fsl_lbc_regs __iomem *regs;
99099 int irq;
99100 wait_queue_head_t irq_wait;
99101 unsigned int irq_status; /* status read from LTESR by irq handler */
99102 @@ -322,7 +127,7 @@ static void set_addr(struct mtd_info *mt
99103 struct nand_chip *chip = mtd->priv;
99104 struct fsl_elbc_mtd *priv = chip->priv;
99105 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
99106 - struct elbc_regs __iomem *lbc = ctrl->regs;
99107 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99108 int buf_num;
99109
99110 ctrl->page = page_addr;
99111 @@ -363,7 +168,7 @@ static int fsl_elbc_run_command(struct m
99112 struct nand_chip *chip = mtd->priv;
99113 struct fsl_elbc_mtd *priv = chip->priv;
99114 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
99115 - struct elbc_regs __iomem *lbc = ctrl->regs;
99116 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99117
99118 /* Setup the FMR[OP] to execute without write protection */
99119 out_be32(&lbc->fmr, priv->fmr | 3);
99120 @@ -406,7 +211,7 @@ static void fsl_elbc_do_read(struct nand
99121 {
99122 struct fsl_elbc_mtd *priv = chip->priv;
99123 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
99124 - struct elbc_regs __iomem *lbc = ctrl->regs;
99125 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99126
99127 if (priv->page_size) {
99128 out_be32(&lbc->fir,
99129 @@ -439,7 +244,7 @@ static void fsl_elbc_cmdfunc(struct mtd_
99130 struct nand_chip *chip = mtd->priv;
99131 struct fsl_elbc_mtd *priv = chip->priv;
99132 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
99133 - struct elbc_regs __iomem *lbc = ctrl->regs;
99134 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99135
99136 ctrl->use_mdr = 0;
99137
99138 @@ -775,7 +580,7 @@ static int fsl_elbc_wait(struct mtd_info
99139 {
99140 struct fsl_elbc_mtd *priv = chip->priv;
99141 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
99142 - struct elbc_regs __iomem *lbc = ctrl->regs;
99143 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99144
99145 if (ctrl->status != LTESR_CC)
99146 return NAND_STATUS_FAIL;
99147 @@ -807,7 +612,7 @@ static int fsl_elbc_chip_init_tail(struc
99148 struct nand_chip *chip = mtd->priv;
99149 struct fsl_elbc_mtd *priv = chip->priv;
99150 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
99151 - struct elbc_regs __iomem *lbc = ctrl->regs;
99152 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99153 unsigned int al;
99154
99155 /* calculate FMR Address Length field */
99156 @@ -922,7 +727,7 @@ static void fsl_elbc_write_page(struct m
99157 static int fsl_elbc_chip_init(struct fsl_elbc_mtd *priv)
99158 {
99159 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
99160 - struct elbc_regs __iomem *lbc = ctrl->regs;
99161 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99162 struct nand_chip *chip = &priv->chip;
99163
99164 dev_dbg(priv->dev, "eLBC Set Information for bank %d\n", priv->bank);
99165 @@ -986,7 +791,7 @@ static int fsl_elbc_chip_remove(struct f
99166 static int fsl_elbc_chip_probe(struct fsl_elbc_ctrl *ctrl,
99167 struct device_node *node)
99168 {
99169 - struct elbc_regs __iomem *lbc = ctrl->regs;
99170 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99171 struct fsl_elbc_mtd *priv;
99172 struct resource res;
99173 #ifdef CONFIG_MTD_PARTITIONS
99174 @@ -1083,7 +888,7 @@ err:
99175
99176 static int __devinit fsl_elbc_ctrl_init(struct fsl_elbc_ctrl *ctrl)
99177 {
99178 - struct elbc_regs __iomem *lbc = ctrl->regs;
99179 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99180
99181 /* clear event registers */
99182 setbits32(&lbc->ltesr, LTESR_NAND_MASK);
99183 @@ -1128,7 +933,7 @@ static int __devexit fsl_elbc_ctrl_remov
99184 static irqreturn_t fsl_elbc_ctrl_irq(int irqno, void *data)
99185 {
99186 struct fsl_elbc_ctrl *ctrl = data;
99187 - struct elbc_regs __iomem *lbc = ctrl->regs;
99188 + struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
99189 __be32 status = in_be32(&lbc->ltesr) & LTESR_NAND_MASK;
99190
99191 if (status) {
99192 Index: linux-2.6.25.4/drivers/net/Makefile
99193 ===================================================================
99194 --- linux-2.6.25.4.orig/drivers/net/Makefile
99195 +++ linux-2.6.25.4/drivers/net/Makefile
99196 @@ -219,7 +219,8 @@ obj-$(CONFIG_SMC911X) += smc911x.o
99197 obj-$(CONFIG_BFIN_MAC) += bfin_mac.o
99198 obj-$(CONFIG_DM9000) += dm9000.o
99199 obj-$(CONFIG_FEC_8XX) += fec_8xx/
99200 -obj-$(CONFIG_PASEMI_MAC) += pasemi_mac.o
99201 +obj-$(CONFIG_PASEMI_MAC) += pasemi_mac_driver.o
99202 +pasemi_mac_driver-objs := pasemi_mac.o pasemi_mac_ethtool.o
99203 obj-$(CONFIG_MLX4_CORE) += mlx4/
99204 obj-$(CONFIG_ENC28J60) += enc28j60.o
99205
99206 Index: linux-2.6.25.4/drivers/net/iseries_veth.c
99207 ===================================================================
99208 --- linux-2.6.25.4.orig/drivers/net/iseries_veth.c
99209 +++ linux-2.6.25.4/drivers/net/iseries_veth.c
99210 @@ -308,7 +308,8 @@ static void veth_complete_allocation(voi
99211
99212 static int veth_allocate_events(HvLpIndex rlp, int number)
99213 {
99214 - struct veth_allocation vc = { COMPLETION_INITIALIZER(vc.c), 0 };
99215 + struct veth_allocation vc =
99216 + { COMPLETION_INITIALIZER_ONSTACK(vc.c), 0 };
99217
99218 mf_allocate_lp_events(rlp, HvLpEvent_Type_VirtualLan,
99219 sizeof(struct veth_lpevent), number,
99220 Index: linux-2.6.25.4/drivers/net/pasemi_mac.c
99221 ===================================================================
99222 --- linux-2.6.25.4.orig/drivers/net/pasemi_mac.c
99223 +++ linux-2.6.25.4/drivers/net/pasemi_mac.c
99224 @@ -55,15 +55,10 @@
99225 * - Multiqueue RX/TX
99226 */
99227
99228 -
99229 -/* Must be a power of two */
99230 -#define RX_RING_SIZE 2048
99231 -#define TX_RING_SIZE 4096
99232 -
99233 #define LRO_MAX_AGGR 64
99234
99235 #define PE_MIN_MTU 64
99236 -#define PE_MAX_MTU 1500
99237 +#define PE_MAX_MTU 9000
99238 #define PE_DEF_MTU ETH_DATA_LEN
99239
99240 #define DEFAULT_MSG_ENABLE \
99241 @@ -76,16 +71,6 @@
99242 NETIF_MSG_RX_ERR | \
99243 NETIF_MSG_TX_ERR)
99244
99245 -#define TX_DESC(tx, num) ((tx)->chan.ring_virt[(num) & (TX_RING_SIZE-1)])
99246 -#define TX_DESC_INFO(tx, num) ((tx)->ring_info[(num) & (TX_RING_SIZE-1)])
99247 -#define RX_DESC(rx, num) ((rx)->chan.ring_virt[(num) & (RX_RING_SIZE-1)])
99248 -#define RX_DESC_INFO(rx, num) ((rx)->ring_info[(num) & (RX_RING_SIZE-1)])
99249 -#define RX_BUFF(rx, num) ((rx)->buffers[(num) & (RX_RING_SIZE-1)])
99250 -
99251 -#define RING_USED(ring) (((ring)->next_to_fill - (ring)->next_to_clean) \
99252 - & ((ring)->size - 1))
99253 -#define RING_AVAIL(ring) ((ring->size) - RING_USED(ring))
99254 -
99255 MODULE_LICENSE("GPL");
99256 MODULE_AUTHOR ("Olof Johansson <olof@lixom.net>");
99257 MODULE_DESCRIPTION("PA Semi PWRficient Ethernet driver");
99258 @@ -94,6 +79,8 @@ static int debug = -1; /* -1 == use DEFA
99259 module_param(debug, int, 0);
99260 MODULE_PARM_DESC(debug, "PA Semi MAC bitmapped debugging message enable value");
99261
99262 +extern const struct ethtool_ops pasemi_mac_ethtool_ops;
99263 +
99264 static int translation_enabled(void)
99265 {
99266 #if defined(CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE)
99267 @@ -322,6 +309,104 @@ static int pasemi_mac_unmap_tx_skb(struc
99268 return (nfrags + 3) & ~1;
99269 }
99270
99271 +static struct pasemi_mac_csring *pasemi_mac_setup_csring(struct pasemi_mac *mac)
99272 +{
99273 + struct pasemi_mac_csring *ring;
99274 + u32 val;
99275 + unsigned int cfg;
99276 + int chno;
99277 +
99278 + ring = pasemi_dma_alloc_chan(TXCHAN, sizeof(struct pasemi_mac_csring),
99279 + offsetof(struct pasemi_mac_csring, chan));
99280 +
99281 + if (!ring) {
99282 + dev_err(&mac->pdev->dev, "Can't allocate checksum channel\n");
99283 + goto out_chan;
99284 + }
99285 +
99286 + chno = ring->chan.chno;
99287 +
99288 + ring->size = CS_RING_SIZE;
99289 + ring->next_to_fill = 0;
99290 +
99291 + /* Allocate descriptors */
99292 + if (pasemi_dma_alloc_ring(&ring->chan, CS_RING_SIZE))
99293 + goto out_ring_desc;
99294 +
99295 + write_dma_reg(PAS_DMA_TXCHAN_BASEL(chno),
99296 + PAS_DMA_TXCHAN_BASEL_BRBL(ring->chan.ring_dma));
99297 + val = PAS_DMA_TXCHAN_BASEU_BRBH(ring->chan.ring_dma >> 32);
99298 + val |= PAS_DMA_TXCHAN_BASEU_SIZ(CS_RING_SIZE >> 3);
99299 +
99300 + write_dma_reg(PAS_DMA_TXCHAN_BASEU(chno), val);
99301 +
99302 + ring->events[0] = pasemi_dma_alloc_flag();
99303 + ring->events[1] = pasemi_dma_alloc_flag();
99304 + if (ring->events[0] < 0 || ring->events[1] < 0)
99305 + goto out_flags;
99306 +
99307 + pasemi_dma_clear_flag(ring->events[0]);
99308 + pasemi_dma_clear_flag(ring->events[1]);
99309 +
99310 + ring->fun = pasemi_dma_alloc_fun();
99311 + if (ring->fun < 0)
99312 + goto out_fun;
99313 +
99314 + cfg = PAS_DMA_TXCHAN_CFG_TY_FUNC | PAS_DMA_TXCHAN_CFG_UP |
99315 + PAS_DMA_TXCHAN_CFG_TATTR(ring->fun) |
99316 + PAS_DMA_TXCHAN_CFG_LPSQ | PAS_DMA_TXCHAN_CFG_LPDQ;
99317 +
99318 + if (translation_enabled())
99319 + cfg |= PAS_DMA_TXCHAN_CFG_TRD | PAS_DMA_TXCHAN_CFG_TRR;
99320 +
99321 + write_dma_reg(PAS_DMA_TXCHAN_CFG(chno), cfg);
99322 +
99323 + /* enable channel */
99324 + pasemi_dma_start_chan(&ring->chan, PAS_DMA_TXCHAN_TCMDSTA_SZ |
99325 + PAS_DMA_TXCHAN_TCMDSTA_DB |
99326 + PAS_DMA_TXCHAN_TCMDSTA_DE |
99327 + PAS_DMA_TXCHAN_TCMDSTA_DA);
99328 +
99329 + return ring;
99330 +
99331 +out_fun:
99332 +out_flags:
99333 + if (ring->events[0] >= 0)
99334 + pasemi_dma_free_flag(ring->events[0]);
99335 + if (ring->events[1] >= 0)
99336 + pasemi_dma_free_flag(ring->events[1]);
99337 + pasemi_dma_free_ring(&ring->chan);
99338 +out_ring_desc:
99339 + pasemi_dma_free_chan(&ring->chan);
99340 +out_chan:
99341 +
99342 + return NULL;
99343 +}
99344 +
99345 +static void pasemi_mac_setup_csrings(struct pasemi_mac *mac)
99346 +{
99347 + int i;
99348 + mac->cs[0] = pasemi_mac_setup_csring(mac);
99349 + if (mac->type == MAC_TYPE_XAUI)
99350 + mac->cs[1] = pasemi_mac_setup_csring(mac);
99351 + else
99352 + mac->cs[1] = 0;
99353 +
99354 + for (i = 0; i < MAX_CS; i++)
99355 + if (mac->cs[i])
99356 + mac->num_cs++;
99357 +}
99358 +
99359 +static void pasemi_mac_free_csring(struct pasemi_mac_csring *csring)
99360 +{
99361 + pasemi_dma_stop_chan(&csring->chan);
99362 + pasemi_dma_free_flag(csring->events[0]);
99363 + pasemi_dma_free_flag(csring->events[1]);
99364 + pasemi_dma_free_ring(&csring->chan);
99365 + pasemi_dma_free_chan(&csring->chan);
99366 + pasemi_dma_free_fun(csring->fun);
99367 +}
99368 +
99369 static int pasemi_mac_setup_rx_resources(const struct net_device *dev)
99370 {
99371 struct pasemi_mac_rxring *ring;
99372 @@ -445,7 +530,7 @@ pasemi_mac_setup_tx_resources(const stru
99373 cfg = PAS_DMA_TXCHAN_CFG_TY_IFACE |
99374 PAS_DMA_TXCHAN_CFG_TATTR(mac->dma_if) |
99375 PAS_DMA_TXCHAN_CFG_UP |
99376 - PAS_DMA_TXCHAN_CFG_WT(2);
99377 + PAS_DMA_TXCHAN_CFG_WT(4);
99378
99379 if (translation_enabled())
99380 cfg |= PAS_DMA_TXCHAN_CFG_TRD | PAS_DMA_TXCHAN_CFG_TRR;
99381 @@ -810,13 +895,21 @@ restart:
99382 u64 mactx = TX_DESC(txring, i);
99383 struct sk_buff *skb;
99384
99385 - skb = TX_DESC_INFO(txring, i+1).skb;
99386 - nr_frags = TX_DESC_INFO(txring, i).dma;
99387 -
99388 if ((mactx & XCT_MACTX_E) ||
99389 (*chan->status & PAS_STATUS_ERROR))
99390 pasemi_mac_tx_error(mac, mactx);
99391
99392 + /* Skip over control descriptors */
99393 + if (!(mactx & XCT_MACTX_LLEN_M)) {
99394 + TX_DESC(txring, i) = 0;
99395 + TX_DESC(txring, i+1) = 0;
99396 + buf_count = 2;
99397 + continue;
99398 + }
99399 +
99400 + skb = TX_DESC_INFO(txring, i+1).skb;
99401 + nr_frags = TX_DESC_INFO(txring, i).dma;
99402 +
99403 if (unlikely(mactx & XCT_MACTX_O))
99404 /* Not yet transmitted */
99405 break;
99406 @@ -1041,13 +1134,7 @@ static int pasemi_mac_open(struct net_de
99407 {
99408 struct pasemi_mac *mac = netdev_priv(dev);
99409 unsigned int flags;
99410 - int ret;
99411 -
99412 - /* enable rx section */
99413 - write_dma_reg(PAS_DMA_COM_RXCMD, PAS_DMA_COM_RXCMD_EN);
99414 -
99415 - /* enable tx section */
99416 - write_dma_reg(PAS_DMA_COM_TXCMD, PAS_DMA_COM_TXCMD_EN);
99417 + int i, ret;
99418
99419 flags = PAS_MAC_CFG_TXP_FCE | PAS_MAC_CFG_TXP_FPC(3) |
99420 PAS_MAC_CFG_TXP_SL(3) | PAS_MAC_CFG_TXP_COB(0xf) |
99421 @@ -1064,6 +1151,19 @@ static int pasemi_mac_open(struct net_de
99422 if (!mac->tx)
99423 goto out_tx_ring;
99424
99425 + /* We might already have allocated rings in case mtu was changed
99426 + * before interface was brought up.
99427 + */
99428 + if (dev->mtu > 1500 && !mac->num_cs) {
99429 + pasemi_mac_setup_csrings(mac);
99430 + if (!mac->num_cs)
99431 + goto out_tx_ring;
99432 + }
99433 +
99434 + /* Zero out rmon counters */
99435 + for (i = 0; i < 32; i++)
99436 + write_mac_reg(mac, PAS_MAC_RMON(i), 0);
99437 +
99438 /* 0x3ff with 33MHz clock is about 31us */
99439 write_iob_reg(PAS_IOB_DMA_COM_TIMEOUTCFG,
99440 PAS_IOB_DMA_COM_TIMEOUTCFG_TCNT(0x3ff));
99441 @@ -1247,7 +1347,7 @@ static int pasemi_mac_close(struct net_d
99442 {
99443 struct pasemi_mac *mac = netdev_priv(dev);
99444 unsigned int sta;
99445 - int rxch, txch;
99446 + int rxch, txch, i;
99447
99448 rxch = rx_ring(mac)->chan.chno;
99449 txch = tx_ring(mac)->chan.chno;
99450 @@ -1292,6 +1392,13 @@ static int pasemi_mac_close(struct net_d
99451 free_irq(mac->tx->chan.irq, mac->tx);
99452 free_irq(mac->rx->chan.irq, mac->rx);
99453
99454 + for (i = 0; i < mac->num_cs; i++) {
99455 + pasemi_mac_free_csring(mac->cs[i]);
99456 + mac->cs[i] = NULL;
99457 + }
99458 +
99459 + mac->num_cs = 0;
99460 +
99461 /* Free resources */
99462 pasemi_mac_free_rx_resources(mac);
99463 pasemi_mac_free_tx_resources(mac);
99464 @@ -1299,35 +1406,113 @@ static int pasemi_mac_close(struct net_d
99465 return 0;
99466 }
99467
99468 +static void pasemi_mac_queue_csdesc(const struct sk_buff *skb,
99469 + const dma_addr_t *map,
99470 + const unsigned int *map_size,
99471 + struct pasemi_mac_txring *txring,
99472 + struct pasemi_mac_csring *csring)
99473 +{
99474 + u64 fund;
99475 + dma_addr_t cs_dest;
99476 + const int nh_off = skb_network_offset(skb);
99477 + const int nh_len = skb_network_header_len(skb);
99478 + const int nfrags = skb_shinfo(skb)->nr_frags;
99479 + int cs_size, i, fill, hdr, cpyhdr, evt;
99480 + dma_addr_t csdma;
99481 +
99482 + fund = XCT_FUN_ST | XCT_FUN_RR_8BRES |
99483 + XCT_FUN_O | XCT_FUN_FUN(csring->fun) |
99484 + XCT_FUN_CRM_SIG | XCT_FUN_LLEN(skb->len - nh_off) |
99485 + XCT_FUN_SHL(nh_len >> 2) | XCT_FUN_SE;
99486 +
99487 + switch (ip_hdr(skb)->protocol) {
99488 + case IPPROTO_TCP:
99489 + fund |= XCT_FUN_SIG_TCP4;
99490 + /* TCP checksum is 16 bytes into the header */
99491 + cs_dest = map[0] + skb_transport_offset(skb) + 16;
99492 + break;
99493 + case IPPROTO_UDP:
99494 + fund |= XCT_FUN_SIG_UDP4;
99495 + /* UDP checksum is 6 bytes into the header */
99496 + cs_dest = map[0] + skb_transport_offset(skb) + 6;
99497 + break;
99498 + default:
99499 + BUG();
99500 + }
99501 +
99502 + /* Do the checksum offloaded */
99503 + fill = csring->next_to_fill;
99504 + hdr = fill;
99505 +
99506 + CS_DESC(csring, fill++) = fund;
99507 + /* Room for 8BRES. Checksum result is really 2 bytes into it */
99508 + csdma = csring->chan.ring_dma + (fill & (CS_RING_SIZE-1)) * 8 + 2;
99509 + CS_DESC(csring, fill++) = 0;
99510 +
99511 + CS_DESC(csring, fill) = XCT_PTR_LEN(map_size[0]-nh_off) | XCT_PTR_ADDR(map[0]+nh_off);
99512 + for (i = 1; i <= nfrags; i++)
99513 + CS_DESC(csring, fill+i) = XCT_PTR_LEN(map_size[i]) | XCT_PTR_ADDR(map[i]);
99514 +
99515 + fill += i;
99516 + if (fill & 1)
99517 + fill++;
99518 +
99519 + /* Copy the result into the TCP packet */
99520 + cpyhdr = fill;
99521 + CS_DESC(csring, fill++) = XCT_FUN_O | XCT_FUN_FUN(csring->fun) |
99522 + XCT_FUN_LLEN(2) | XCT_FUN_SE;
99523 + CS_DESC(csring, fill++) = XCT_PTR_LEN(2) | XCT_PTR_ADDR(cs_dest) | XCT_PTR_T;
99524 + CS_DESC(csring, fill++) = XCT_PTR_LEN(2) | XCT_PTR_ADDR(csdma);
99525 + fill++;
99526 +
99527 + evt = !csring->last_event;
99528 + csring->last_event = evt;
99529 +
99530 + /* Event handshaking with MAC TX */
99531 + CS_DESC(csring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O |
99532 + CTRL_CMD_ETYPE_SET | CTRL_CMD_REG(csring->events[evt]);
99533 + CS_DESC(csring, fill++) = 0;
99534 + CS_DESC(csring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O |
99535 + CTRL_CMD_ETYPE_WCLR | CTRL_CMD_REG(csring->events[!evt]);
99536 + CS_DESC(csring, fill++) = 0;
99537 + csring->next_to_fill = fill & (CS_RING_SIZE-1);
99538 +
99539 + cs_size = fill - hdr;
99540 + write_dma_reg(PAS_DMA_TXCHAN_INCR(csring->chan.chno), (cs_size) >> 1);
99541 +
99542 + /* TX-side event handshaking */
99543 + fill = txring->next_to_fill;
99544 + TX_DESC(txring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O |
99545 + CTRL_CMD_ETYPE_WSET | CTRL_CMD_REG(csring->events[evt]);
99546 + TX_DESC(txring, fill++) = 0;
99547 + TX_DESC(txring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O |
99548 + CTRL_CMD_ETYPE_CLR | CTRL_CMD_REG(csring->events[!evt]);
99549 + TX_DESC(txring, fill++) = 0;
99550 + txring->next_to_fill = fill;
99551 +
99552 + write_dma_reg(PAS_DMA_TXCHAN_INCR(txring->chan.chno), 2);
99553 +
99554 + return;
99555 +}
99556 +
99557 static int pasemi_mac_start_tx(struct sk_buff *skb, struct net_device *dev)
99558 {
99559 - struct pasemi_mac *mac = netdev_priv(dev);
99560 - struct pasemi_mac_txring *txring;
99561 - u64 dflags, mactx;
99562 + struct pasemi_mac * const mac = netdev_priv(dev);
99563 + struct pasemi_mac_txring * const txring = tx_ring(mac);
99564 + struct pasemi_mac_csring *csring;
99565 + u64 dflags = 0;
99566 + u64 mactx;
99567 dma_addr_t map[MAX_SKB_FRAGS+1];
99568 unsigned int map_size[MAX_SKB_FRAGS+1];
99569 unsigned long flags;
99570 int i, nfrags;
99571 int fill;
99572 + const int nh_off = skb_network_offset(skb);
99573 + const int nh_len = skb_network_header_len(skb);
99574
99575 - dflags = XCT_MACTX_O | XCT_MACTX_ST | XCT_MACTX_CRC_PAD;
99576 -
99577 - if (skb->ip_summed == CHECKSUM_PARTIAL) {
99578 - const unsigned char *nh = skb_network_header(skb);
99579 + prefetch(&txring->ring_info);
99580
99581 - switch (ip_hdr(skb)->protocol) {
99582 - case IPPROTO_TCP:
99583 - dflags |= XCT_MACTX_CSUM_TCP;
99584 - dflags |= XCT_MACTX_IPH(skb_network_header_len(skb) >> 2);
99585 - dflags |= XCT_MACTX_IPO(nh - skb->data);
99586 - break;
99587 - case IPPROTO_UDP:
99588 - dflags |= XCT_MACTX_CSUM_UDP;
99589 - dflags |= XCT_MACTX_IPH(skb_network_header_len(skb) >> 2);
99590 - dflags |= XCT_MACTX_IPO(nh - skb->data);
99591 - break;
99592 - }
99593 - }
99594 + dflags = XCT_MACTX_O | XCT_MACTX_ST | XCT_MACTX_CRC_PAD;
99595
99596 nfrags = skb_shinfo(skb)->nr_frags;
99597
99598 @@ -1350,24 +1535,46 @@ static int pasemi_mac_start_tx(struct sk
99599 }
99600 }
99601
99602 - mactx = dflags | XCT_MACTX_LLEN(skb->len);
99603 + if (skb->ip_summed == CHECKSUM_PARTIAL && skb->len <= 1540) {
99604 + switch (ip_hdr(skb)->protocol) {
99605 + case IPPROTO_TCP:
99606 + dflags |= XCT_MACTX_CSUM_TCP;
99607 + dflags |= XCT_MACTX_IPH(nh_len >> 2);
99608 + dflags |= XCT_MACTX_IPO(nh_off);
99609 + break;
99610 + case IPPROTO_UDP:
99611 + dflags |= XCT_MACTX_CSUM_UDP;
99612 + dflags |= XCT_MACTX_IPH(nh_len >> 2);
99613 + dflags |= XCT_MACTX_IPO(nh_off);
99614 + break;
99615 + default:
99616 + WARN_ON(1);
99617 + }
99618 + }
99619
99620 - txring = tx_ring(mac);
99621 + mactx = dflags | XCT_MACTX_LLEN(skb->len);
99622
99623 spin_lock_irqsave(&txring->lock, flags);
99624
99625 - fill = txring->next_to_fill;
99626 -
99627 /* Avoid stepping on the same cache line that the DMA controller
99628 * is currently about to send, so leave at least 8 words available.
99629 * Total free space needed is mactx + fragments + 8
99630 */
99631 - if (RING_AVAIL(txring) < nfrags + 10) {
99632 + if (RING_AVAIL(txring) < nfrags + 14) {
99633 /* no room -- stop the queue and wait for tx intr */
99634 netif_stop_queue(dev);
99635 goto out_err;
99636 }
99637
99638 + /* Queue up checksum + event descriptors, if needed */
99639 + if (mac->num_cs && skb->ip_summed == CHECKSUM_PARTIAL && skb->len > 1540) {
99640 + csring = mac->cs[mac->last_cs];
99641 + mac->last_cs = (mac->last_cs + 1) % mac->num_cs;
99642 +
99643 + pasemi_mac_queue_csdesc(skb, map, map_size, txring, csring);
99644 + }
99645 +
99646 + fill = txring->next_to_fill;
99647 TX_DESC(txring, fill) = mactx;
99648 TX_DESC_INFO(txring, fill).dma = nfrags;
99649 fill++;
99650 @@ -1441,12 +1648,33 @@ static int pasemi_mac_poll(struct napi_s
99651 return pkts;
99652 }
99653
99654 +#ifdef CONFIG_NET_POLL_CONTROLLER
99655 +/*
99656 + * Polling 'interrupt' - used by things like netconsole to send skbs
99657 + * without having to re-enable interrupts. It's not called while
99658 + * the interrupt routine is executing.
99659 + */
99660 +static void pasemi_mac_netpoll(struct net_device *dev)
99661 +{
99662 + const struct pasemi_mac *mac = netdev_priv(dev);
99663 +
99664 + disable_irq(mac->tx->chan.irq);
99665 + pasemi_mac_tx_intr(mac->tx->chan.irq, mac->tx);
99666 + enable_irq(mac->tx->chan.irq);
99667 +
99668 + disable_irq(mac->rx->chan.irq);
99669 + pasemi_mac_rx_intr(mac->rx->chan.irq, mac->rx);
99670 + enable_irq(mac->rx->chan.irq);
99671 +}
99672 +#endif
99673 +
99674 static int pasemi_mac_change_mtu(struct net_device *dev, int new_mtu)
99675 {
99676 struct pasemi_mac *mac = netdev_priv(dev);
99677 unsigned int reg;
99678 - unsigned int rcmdsta;
99679 + unsigned int rcmdsta = 0;
99680 int running;
99681 + int ret = 0;
99682
99683 if (new_mtu < PE_MIN_MTU || new_mtu > PE_MAX_MTU)
99684 return -EINVAL;
99685 @@ -1468,6 +1696,16 @@ static int pasemi_mac_change_mtu(struct
99686 pasemi_mac_pause_rxint(mac);
99687 pasemi_mac_clean_rx(rx_ring(mac), RX_RING_SIZE);
99688 pasemi_mac_free_rx_buffers(mac);
99689 +
99690 + }
99691 +
99692 + /* Setup checksum channels if large MTU and none already allocated */
99693 + if (new_mtu > 1500 && !mac->num_cs) {
99694 + pasemi_mac_setup_csrings(mac);
99695 + if (!mac->num_cs) {
99696 + ret = -ENOMEM;
99697 + goto out;
99698 + }
99699 }
99700
99701 /* Change maxf, i.e. what size frames are accepted.
99702 @@ -1482,6 +1720,7 @@ static int pasemi_mac_change_mtu(struct
99703 /* MTU + ETH_HLEN + VLAN_HLEN + 2 64B cachelines */
99704 mac->bufsz = new_mtu + ETH_HLEN + ETH_FCS_LEN + LOCAL_SKB_ALIGN + 128;
99705
99706 +out:
99707 if (running) {
99708 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if),
99709 rcmdsta | PAS_DMA_RXINT_RCMDSTA_EN);
99710 @@ -1494,7 +1733,7 @@ static int pasemi_mac_change_mtu(struct
99711 pasemi_mac_intf_enable(mac);
99712 }
99713
99714 - return 0;
99715 + return ret;
99716 }
99717
99718 static int __devinit
99719 @@ -1528,7 +1767,7 @@ pasemi_mac_probe(struct pci_dev *pdev, c
99720 netif_napi_add(dev, &mac->napi, pasemi_mac_poll, 64);
99721
99722 dev->features = NETIF_F_IP_CSUM | NETIF_F_LLTX | NETIF_F_SG |
99723 - NETIF_F_HIGHDMA;
99724 + NETIF_F_HIGHDMA | NETIF_F_GSO;
99725
99726 mac->lro_mgr.max_aggr = LRO_MAX_AGGR;
99727 mac->lro_mgr.max_desc = MAX_LRO_DESCRIPTORS;
99728 @@ -1588,8 +1827,12 @@ pasemi_mac_probe(struct pci_dev *pdev, c
99729 dev->mtu = PE_DEF_MTU;
99730 /* 1500 MTU + ETH_HLEN + VLAN_HLEN + 2 64B cachelines */
99731 mac->bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + LOCAL_SKB_ALIGN + 128;
99732 +#ifdef CONFIG_NET_POLL_CONTROLLER
99733 + dev->poll_controller = pasemi_mac_netpoll;
99734 +#endif
99735
99736 dev->change_mtu = pasemi_mac_change_mtu;
99737 + dev->ethtool_ops = &pasemi_mac_ethtool_ops;
99738
99739 if (err)
99740 goto out;
99741 Index: linux-2.6.25.4/drivers/net/pasemi_mac.h
99742 ===================================================================
99743 --- linux-2.6.25.4.orig/drivers/net/pasemi_mac.h
99744 +++ linux-2.6.25.4/drivers/net/pasemi_mac.h
99745 @@ -26,7 +26,14 @@
99746 #include <linux/spinlock.h>
99747 #include <linux/phy.h>
99748
99749 +/* Must be a power of two */
99750 +#define RX_RING_SIZE 2048
99751 +#define TX_RING_SIZE 4096
99752 +#define CS_RING_SIZE (TX_RING_SIZE*2)
99753 +
99754 +
99755 #define MAX_LRO_DESCRIPTORS 8
99756 +#define MAX_CS 2
99757
99758 struct pasemi_mac_txring {
99759 struct pasemi_dmachan chan; /* Must be first */
99760 @@ -51,6 +58,15 @@ struct pasemi_mac_rxring {
99761 struct pasemi_mac *mac; /* Needed in intr handler */
99762 };
99763
99764 +struct pasemi_mac_csring {
99765 + struct pasemi_dmachan chan;
99766 + unsigned int size;
99767 + unsigned int next_to_fill;
99768 + int events[2];
99769 + int last_event;
99770 + int fun;
99771 +};
99772 +
99773 struct pasemi_mac {
99774 struct net_device *netdev;
99775 struct pci_dev *pdev;
99776 @@ -60,10 +76,12 @@ struct pasemi_mac {
99777 struct napi_struct napi;
99778
99779 int bufsz; /* RX ring buffer size */
99780 + int last_cs;
99781 + int num_cs;
99782 + u32 dma_if;
99783 u8 type;
99784 #define MAC_TYPE_GMAC 1
99785 #define MAC_TYPE_XAUI 2
99786 - u32 dma_if;
99787
99788 u8 mac_addr[6];
99789
99790 @@ -74,6 +92,7 @@ struct pasemi_mac {
99791
99792 struct pasemi_mac_txring *tx;
99793 struct pasemi_mac_rxring *rx;
99794 + struct pasemi_mac_csring *cs[MAX_CS];
99795 char tx_irq_name[10]; /* "eth%d tx" */
99796 char rx_irq_name[10]; /* "eth%d rx" */
99797 int link;
99798 @@ -90,6 +109,16 @@ struct pasemi_mac_buffer {
99799 dma_addr_t dma;
99800 };
99801
99802 +#define TX_DESC(tx, num) ((tx)->chan.ring_virt[(num) & (TX_RING_SIZE-1)])
99803 +#define TX_DESC_INFO(tx, num) ((tx)->ring_info[(num) & (TX_RING_SIZE-1)])
99804 +#define RX_DESC(rx, num) ((rx)->chan.ring_virt[(num) & (RX_RING_SIZE-1)])
99805 +#define RX_DESC_INFO(rx, num) ((rx)->ring_info[(num) & (RX_RING_SIZE-1)])
99806 +#define RX_BUFF(rx, num) ((rx)->buffers[(num) & (RX_RING_SIZE-1)])
99807 +#define CS_DESC(cs, num) ((cs)->chan.ring_virt[(num) & (CS_RING_SIZE-1)])
99808 +
99809 +#define RING_USED(ring) (((ring)->next_to_fill - (ring)->next_to_clean) \
99810 + & ((ring)->size - 1))
99811 +#define RING_AVAIL(ring) ((ring->size) - RING_USED(ring))
99812
99813 /* PCI register offsets and formats */
99814
99815 @@ -101,6 +130,7 @@ enum {
99816 PAS_MAC_CFG_ADR0 = 0x8c,
99817 PAS_MAC_CFG_ADR1 = 0x90,
99818 PAS_MAC_CFG_TXP = 0x98,
99819 + PAS_MAC_CFG_RMON = 0x100,
99820 PAS_MAC_IPC_CHNL = 0x208,
99821 };
99822
99823 @@ -172,6 +202,8 @@ enum {
99824 #define PAS_MAC_CFG_TXP_TIFG(x) (((x) << PAS_MAC_CFG_TXP_TIFG_S) & \
99825 PAS_MAC_CFG_TXP_TIFG_M)
99826
99827 +#define PAS_MAC_RMON(r) (0x100+(r)*4)
99828 +
99829 #define PAS_MAC_IPC_CHNL_DCHNO_M 0x003f0000
99830 #define PAS_MAC_IPC_CHNL_DCHNO_S 16
99831 #define PAS_MAC_IPC_CHNL_DCHNO(x) (((x) << PAS_MAC_IPC_CHNL_DCHNO_S) & \
99832 @@ -181,4 +213,5 @@ enum {
99833 #define PAS_MAC_IPC_CHNL_BCH(x) (((x) << PAS_MAC_IPC_CHNL_BCH_S) & \
99834 PAS_MAC_IPC_CHNL_BCH_M)
99835
99836 +
99837 #endif /* PASEMI_MAC_H */
99838 Index: linux-2.6.25.4/drivers/net/pasemi_mac_ethtool.c
99839 ===================================================================
99840 --- /dev/null
99841 +++ linux-2.6.25.4/drivers/net/pasemi_mac_ethtool.c
99842 @@ -0,0 +1,159 @@
99843 +/*
99844 + * Copyright (C) 2006-2008 PA Semi, Inc
99845 + *
99846 + * Ethtool hooks for the PA Semi PWRficient onchip 1G/10G Ethernet MACs
99847 + *
99848 + * This program is free software; you can redistribute it and/or modify
99849 + * it under the terms of the GNU General Public License version 2 as
99850 + * published by the Free Software Foundation.
99851 + *
99852 + * This program is distributed in the hope that it will be useful,
99853 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
99854 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
99855 + * GNU General Public License for more details.
99856 + *
99857 + * You should have received a copy of the GNU General Public License
99858 + * along with this program; if not, write to the Free Software
99859 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
99860 + */
99861 +
99862 +
99863 +#include <linux/netdevice.h>
99864 +#include <linux/ethtool.h>
99865 +#include <linux/pci.h>
99866 +#include <linux/inet_lro.h>
99867 +
99868 +#include <asm/pasemi_dma.h>
99869 +#include "pasemi_mac.h"
99870 +
99871 +static struct {
99872 + const char str[ETH_GSTRING_LEN];
99873 +} ethtool_stats_keys[] = {
99874 + { "rx-drops" },
99875 + { "rx-bytes" },
99876 + { "rx-packets" },
99877 + { "rx-broadcast-packets" },
99878 + { "rx-multicast-packets" },
99879 + { "rx-crc-errors" },
99880 + { "rx-undersize-errors" },
99881 + { "rx-oversize-errors" },
99882 + { "rx-short-fragment-errors" },
99883 + { "rx-jabber-errors" },
99884 + { "rx-64-byte-packets" },
99885 + { "rx-65-127-byte-packets" },
99886 + { "rx-128-255-byte-packets" },
99887 + { "rx-256-511-byte-packets" },
99888 + { "rx-512-1023-byte-packets" },
99889 + { "rx-1024-1518-byte-packets" },
99890 + { "rx-pause-frames" },
99891 + { "tx-bytes" },
99892 + { "tx-packets" },
99893 + { "tx-broadcast-packets" },
99894 + { "tx-multicast-packets" },
99895 + { "tx-collisions" },
99896 + { "tx-late-collisions" },
99897 + { "tx-excessive-collisions" },
99898 + { "tx-crc-errors" },
99899 + { "tx-undersize-errors" },
99900 + { "tx-oversize-errors" },
99901 + { "tx-64-byte-packets" },
99902 + { "tx-65-127-byte-packets" },
99903 + { "tx-128-255-byte-packets" },
99904 + { "tx-256-511-byte-packets" },
99905 + { "tx-512-1023-byte-packets" },
99906 + { "tx-1024-1518-byte-packets" },
99907 +};
99908 +
99909 +static int
99910 +pasemi_mac_ethtool_get_settings(struct net_device *netdev,
99911 + struct ethtool_cmd *cmd)
99912 +{
99913 + struct pasemi_mac *mac = netdev_priv(netdev);
99914 + struct phy_device *phydev = mac->phydev;
99915 +
99916 + return phy_ethtool_gset(phydev, cmd);
99917 +}
99918 +
99919 +static void
99920 +pasemi_mac_ethtool_get_drvinfo(struct net_device *netdev,
99921 + struct ethtool_drvinfo *drvinfo)
99922 +{
99923 + struct pasemi_mac *mac;
99924 + mac = netdev_priv(netdev);
99925 +
99926 + /* clear and fill out info */
99927 + memset(drvinfo, 0, sizeof(struct ethtool_drvinfo));
99928 + strncpy(drvinfo->driver, "pasemi_mac", 12);
99929 + strcpy(drvinfo->version, "N/A");
99930 + strcpy(drvinfo->fw_version, "N/A");
99931 + strncpy(drvinfo->bus_info, pci_name(mac->pdev), 32);
99932 +}
99933 +
99934 +static u32
99935 +pasemi_mac_ethtool_get_msglevel(struct net_device *netdev)
99936 +{
99937 + struct pasemi_mac *mac = netdev_priv(netdev);
99938 + return mac->msg_enable;
99939 +}
99940 +
99941 +static void
99942 +pasemi_mac_ethtool_set_msglevel(struct net_device *netdev,
99943 + u32 level)
99944 +{
99945 + struct pasemi_mac *mac = netdev_priv(netdev);
99946 + mac->msg_enable = level;
99947 +}
99948 +
99949 +
99950 +static void
99951 +pasemi_mac_ethtool_get_ringparam(struct net_device *netdev,
99952 + struct ethtool_ringparam *ering)
99953 +{
99954 + struct pasemi_mac *mac = netdev->priv;
99955 +
99956 + ering->tx_max_pending = TX_RING_SIZE/2;
99957 + ering->tx_pending = RING_USED(mac->tx)/2;
99958 + ering->rx_max_pending = RX_RING_SIZE/4;
99959 + ering->rx_pending = RING_USED(mac->rx)/4;
99960 +}
99961 +
99962 +static int pasemi_mac_get_sset_count(struct net_device *netdev, int sset)
99963 +{
99964 + switch (sset) {
99965 + case ETH_SS_STATS:
99966 + return ARRAY_SIZE(ethtool_stats_keys);
99967 + default:
99968 + return -EOPNOTSUPP;
99969 + }
99970 +}
99971 +
99972 +static void pasemi_mac_get_ethtool_stats(struct net_device *netdev,
99973 + struct ethtool_stats *stats, u64 *data)
99974 +{
99975 + struct pasemi_mac *mac = netdev->priv;
99976 + int i;
99977 +
99978 + data[0] = pasemi_read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if))
99979 + >> PAS_DMA_RXINT_RCMDSTA_DROPS_S;
99980 + for (i = 0; i < 32; i++)
99981 + data[1+i] = pasemi_read_mac_reg(mac->dma_if, PAS_MAC_RMON(i));
99982 +}
99983 +
99984 +static void pasemi_mac_get_strings(struct net_device *netdev, u32 stringset,
99985 + u8 *data)
99986 +{
99987 + memcpy(data, ethtool_stats_keys, sizeof(ethtool_stats_keys));
99988 +}
99989 +
99990 +const struct ethtool_ops pasemi_mac_ethtool_ops = {
99991 + .get_settings = pasemi_mac_ethtool_get_settings,
99992 + .get_drvinfo = pasemi_mac_ethtool_get_drvinfo,
99993 + .get_msglevel = pasemi_mac_ethtool_get_msglevel,
99994 + .set_msglevel = pasemi_mac_ethtool_set_msglevel,
99995 + .get_link = ethtool_op_get_link,
99996 + .get_ringparam = pasemi_mac_ethtool_get_ringparam,
99997 + .get_strings = pasemi_mac_get_strings,
99998 + .get_sset_count = pasemi_mac_get_sset_count,
99999 + .get_ethtool_stats = pasemi_mac_get_ethtool_stats,
100000 +};
100001 +
100002 Index: linux-2.6.25.4/drivers/net/ps3_gelic_net.c
100003 ===================================================================
100004 --- linux-2.6.25.4.orig/drivers/net/ps3_gelic_net.c
100005 +++ linux-2.6.25.4/drivers/net/ps3_gelic_net.c
100006 @@ -1266,6 +1266,85 @@ int gelic_net_set_rx_csum(struct net_dev
100007 return 0;
100008 }
100009
100010 +static void gelic_net_get_wol(struct net_device *netdev,
100011 + struct ethtool_wolinfo *wol)
100012 +{
100013 + if (0 <= ps3_compare_firmware_version(2, 2, 0))
100014 + wol->supported = WAKE_MAGIC;
100015 + else
100016 + wol->supported = 0;
100017 +
100018 + wol->wolopts = ps3_sys_manager_get_wol() ? wol->supported : 0;
100019 + memset(&wol->sopass, 0, sizeof(wol->sopass));
100020 +}
100021 +static int gelic_net_set_wol(struct net_device *netdev,
100022 + struct ethtool_wolinfo *wol)
100023 +{
100024 + int status;
100025 + struct gelic_card *card;
100026 + u64 v1, v2;
100027 +
100028 + if (ps3_compare_firmware_version(2, 2, 0) < 0 ||
100029 + !capable(CAP_NET_ADMIN))
100030 + return -EPERM;
100031 +
100032 + if (wol->wolopts & ~WAKE_MAGIC)
100033 + return -EINVAL;
100034 +
100035 + card = netdev_card(netdev);
100036 + if (wol->wolopts & WAKE_MAGIC) {
100037 + status = lv1_net_control(bus_id(card), dev_id(card),
100038 + GELIC_LV1_SET_WOL,
100039 + GELIC_LV1_WOL_MAGIC_PACKET,
100040 + 0, GELIC_LV1_WOL_MP_ENABLE,
100041 + &v1, &v2);
100042 + if (status) {
100043 + pr_info("%s: enabling WOL failed %d\n", __func__,
100044 + status);
100045 + status = -EIO;
100046 + goto done;
100047 + }
100048 + status = lv1_net_control(bus_id(card), dev_id(card),
100049 + GELIC_LV1_SET_WOL,
100050 + GELIC_LV1_WOL_ADD_MATCH_ADDR,
100051 + 0, GELIC_LV1_WOL_MATCH_ALL,
100052 + &v1, &v2);
100053 + if (!status)
100054 + ps3_sys_manager_set_wol(1);
100055 + else {
100056 + pr_info("%s: enabling WOL filter failed %d\n",
100057 + __func__, status);
100058 + status = -EIO;
100059 + }
100060 + } else {
100061 + status = lv1_net_control(bus_id(card), dev_id(card),
100062 + GELIC_LV1_SET_WOL,
100063 + GELIC_LV1_WOL_MAGIC_PACKET,
100064 + 0, GELIC_LV1_WOL_MP_DISABLE,
100065 + &v1, &v2);
100066 + if (status) {
100067 + pr_info("%s: disabling WOL failed %d\n", __func__,
100068 + status);
100069 + status = -EIO;
100070 + goto done;
100071 + }
100072 + status = lv1_net_control(bus_id(card), dev_id(card),
100073 + GELIC_LV1_SET_WOL,
100074 + GELIC_LV1_WOL_DELETE_MATCH_ADDR,
100075 + 0, GELIC_LV1_WOL_MATCH_ALL,
100076 + &v1, &v2);
100077 + if (!status)
100078 + ps3_sys_manager_set_wol(0);
100079 + else {
100080 + pr_info("%s: removing WOL filter failed %d\n",
100081 + __func__, status);
100082 + status = -EIO;
100083 + }
100084 + }
100085 +done:
100086 + return status;
100087 +}
100088 +
100089 static struct ethtool_ops gelic_ether_ethtool_ops = {
100090 .get_drvinfo = gelic_net_get_drvinfo,
100091 .get_settings = gelic_ether_get_settings,
100092 @@ -1274,6 +1353,8 @@ static struct ethtool_ops gelic_ether_et
100093 .set_tx_csum = ethtool_op_set_tx_csum,
100094 .get_rx_csum = gelic_net_get_rx_csum,
100095 .set_rx_csum = gelic_net_set_rx_csum,
100096 + .get_wol = gelic_net_get_wol,
100097 + .set_wol = gelic_net_set_wol,
100098 };
100099
100100 /**
100101 Index: linux-2.6.25.4/drivers/net/ps3_gelic_net.h
100102 ===================================================================
100103 --- linux-2.6.25.4.orig/drivers/net/ps3_gelic_net.h
100104 +++ linux-2.6.25.4/drivers/net/ps3_gelic_net.h
100105 @@ -182,12 +182,32 @@ enum gelic_lv1_net_control_code {
100106 GELIC_LV1_GET_ETH_PORT_STATUS = 2,
100107 GELIC_LV1_SET_NEGOTIATION_MODE = 3,
100108 GELIC_LV1_GET_VLAN_ID = 4,
100109 + GELIC_LV1_SET_WOL = 5,
100110 GELIC_LV1_GET_CHANNEL = 6,
100111 GELIC_LV1_POST_WLAN_CMD = 9,
100112 GELIC_LV1_GET_WLAN_CMD_RESULT = 10,
100113 GELIC_LV1_GET_WLAN_EVENT = 11
100114 };
100115
100116 +/* for GELIC_LV1_SET_WOL */
100117 +enum gelic_lv1_wol_command {
100118 + GELIC_LV1_WOL_MAGIC_PACKET = 1,
100119 + GELIC_LV1_WOL_ADD_MATCH_ADDR = 6,
100120 + GELIC_LV1_WOL_DELETE_MATCH_ADDR = 7,
100121 +};
100122 +
100123 +/* for GELIC_LV1_WOL_MAGIC_PACKET */
100124 +enum gelic_lv1_wol_mp_arg {
100125 + GELIC_LV1_WOL_MP_DISABLE = 0,
100126 + GELIC_LV1_WOL_MP_ENABLE = 1,
100127 +};
100128 +
100129 +/* for GELIC_LV1_WOL_{ADD,DELETE}_MATCH_ADDR */
100130 +enum gelic_lv1_wol_match_arg {
100131 + GELIC_LV1_WOL_MATCH_INDIVIDUAL = 0,
100132 + GELIC_LV1_WOL_MATCH_ALL = 1,
100133 +};
100134 +
100135 /* status returened from GET_ETH_PORT_STATUS */
100136 enum gelic_lv1_ether_port_status {
100137 GELIC_LV1_ETHER_LINK_UP = 0x0000000000000001L,
100138 Index: linux-2.6.25.4/drivers/net/ucc_geth.c
100139 ===================================================================
100140 --- linux-2.6.25.4.orig/drivers/net/ucc_geth.c
100141 +++ linux-2.6.25.4/drivers/net/ucc_geth.c
100142 @@ -3853,7 +3853,13 @@ static int ucc_geth_probe(struct of_devi
100143
100144 ugeth_vdbg("%s: IN", __FUNCTION__);
100145
100146 - prop = of_get_property(np, "device-id", NULL);
100147 + prop = of_get_property(np, "cell-index", NULL);
100148 + if (!prop) {
100149 + prop = of_get_property(np, "device-id", NULL);
100150 + if (!prop)
100151 + return -ENODEV;
100152 + }
100153 +
100154 ucc_num = *prop - 1;
100155 if ((ucc_num < 0) || (ucc_num > 7))
100156 return -ENODEV;
100157 Index: linux-2.6.25.4/drivers/net/ucc_geth_mii.c
100158 ===================================================================
100159 --- linux-2.6.25.4.orig/drivers/net/ucc_geth_mii.c
100160 +++ linux-2.6.25.4/drivers/net/ucc_geth_mii.c
100161 @@ -203,9 +203,14 @@ static int uec_mdio_probe(struct of_devi
100162 if ((res.start >= tempres.start) &&
100163 (res.end <= tempres.end)) {
100164 /* set this UCC to be the MII master */
100165 - const u32 *id = of_get_property(tempnp, "device-id", NULL);
100166 - if (id == NULL)
100167 - goto bus_register_fail;
100168 + const u32 *id;
100169 +
100170 + id = of_get_property(tempnp, "cell-index", NULL);
100171 + if (!id) {
100172 + id = of_get_property(tempnp, "device-id", NULL);
100173 + if (!id)
100174 + goto bus_register_fail;
100175 + }
100176
100177 ucc_set_qe_mux_mii_mng(*id - 1);
100178
100179 Index: linux-2.6.25.4/drivers/of/Kconfig
100180 ===================================================================
100181 --- linux-2.6.25.4.orig/drivers/of/Kconfig
100182 +++ linux-2.6.25.4/drivers/of/Kconfig
100183 @@ -1,3 +1,15 @@
100184 config OF_DEVICE
100185 def_bool y
100186 depends on OF && (SPARC || PPC_OF)
100187 +
100188 +config OF_GPIO
100189 + def_bool y
100190 + depends on OF && PPC_OF && HAVE_GPIO_LIB
100191 + help
100192 + OpenFirmware GPIO accessors
100193 +
100194 +config OF_I2C
100195 + def_bool y
100196 + depends on OF && I2C
100197 + help
100198 + OpenFirmware I2C accessors
100199 Index: linux-2.6.25.4/drivers/of/Makefile
100200 ===================================================================
100201 --- linux-2.6.25.4.orig/drivers/of/Makefile
100202 +++ linux-2.6.25.4/drivers/of/Makefile
100203 @@ -1,2 +1,4 @@
100204 obj-y = base.o
100205 obj-$(CONFIG_OF_DEVICE) += device.o platform.o
100206 +obj-$(CONFIG_OF_GPIO) += gpio.o
100207 +obj-$(CONFIG_OF_I2C) += i2c.o
100208 Index: linux-2.6.25.4/drivers/of/base.c
100209 ===================================================================
100210 --- linux-2.6.25.4.orig/drivers/of/base.c
100211 +++ linux-2.6.25.4/drivers/of/base.c
100212 @@ -117,6 +117,32 @@ int of_device_is_compatible(const struct
100213 EXPORT_SYMBOL(of_device_is_compatible);
100214
100215 /**
100216 + * of_device_is_available - check if a device is available for use
100217 + *
100218 + * @device: Node to check for availability
100219 + *
100220 + * Returns 1 if the status property is absent or set to "okay" or "ok",
100221 + * 0 otherwise
100222 + */
100223 +int of_device_is_available(const struct device_node *device)
100224 +{
100225 + const char *status;
100226 + int statlen;
100227 +
100228 + status = of_get_property(device, "status", &statlen);
100229 + if (status == NULL)
100230 + return 1;
100231 +
100232 + if (statlen > 0) {
100233 + if (!strcmp(status, "okay") || !strcmp(status, "ok"))
100234 + return 1;
100235 + }
100236 +
100237 + return 0;
100238 +}
100239 +EXPORT_SYMBOL(of_device_is_available);
100240 +
100241 +/**
100242 * of_get_parent - Get a node's parent if any
100243 * @node: Node to get parent
100244 *
100245 Index: linux-2.6.25.4/drivers/of/gpio.c
100246 ===================================================================
100247 --- /dev/null
100248 +++ linux-2.6.25.4/drivers/of/gpio.c
100249 @@ -0,0 +1,242 @@
100250 +/*
100251 + * OF helpers for the GPIO API
100252 + *
100253 + * Copyright (c) 2007-2008 MontaVista Software, Inc.
100254 + *
100255 + * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
100256 + *
100257 + * This program is free software; you can redistribute it and/or modify
100258 + * it under the terms of the GNU General Public License as published by
100259 + * the Free Software Foundation; either version 2 of the License, or
100260 + * (at your option) any later version.
100261 + */
100262 +
100263 +#include <linux/kernel.h>
100264 +#include <linux/errno.h>
100265 +#include <linux/io.h>
100266 +#include <linux/of.h>
100267 +#include <linux/of_gpio.h>
100268 +#include <asm/prom.h>
100269 +
100270 +/**
100271 + * of_get_gpio - Get a GPIO number from the device tree to use with GPIO API
100272 + * @np: device node to get GPIO from
100273 + * @index: index of the GPIO
100274 + *
100275 + * Returns GPIO number to use with Linux generic GPIO API, or one of the errno
100276 + * value on the error condition.
100277 + */
100278 +int of_get_gpio(struct device_node *np, int index)
100279 +{
100280 + int ret = -EINVAL;
100281 + struct device_node *gc;
100282 + struct of_gpio_chip *of_gc = NULL;
100283 + int size;
100284 + const u32 *gpios;
100285 + u32 nr_cells;
100286 + int i;
100287 + const void *gpio_spec;
100288 + const u32 *gpio_cells;
100289 + int gpio_index = 0;
100290 +
100291 + gpios = of_get_property(np, "gpios", &size);
100292 + if (!gpios) {
100293 + ret = -ENOENT;
100294 + goto err0;
100295 + }
100296 + nr_cells = size / sizeof(u32);
100297 +
100298 + for (i = 0; i < nr_cells; gpio_index++) {
100299 + const phandle *gpio_phandle;
100300 +
100301 + gpio_phandle = gpios + i;
100302 + gpio_spec = gpio_phandle + 1;
100303 +
100304 + /* one cell hole in the gpios = <>; */
100305 + if (!*gpio_phandle) {
100306 + if (gpio_index == index)
100307 + return -ENOENT;
100308 + i++;
100309 + continue;
100310 + }
100311 +
100312 + gc = of_find_node_by_phandle(*gpio_phandle);
100313 + if (!gc) {
100314 + pr_debug("%s: could not find phandle for gpios\n",
100315 + np->full_name);
100316 + goto err0;
100317 + }
100318 +
100319 + of_gc = gc->data;
100320 + if (!of_gc) {
100321 + pr_debug("%s: gpio controller %s isn't registered\n",
100322 + np->full_name, gc->full_name);
100323 + goto err1;
100324 + }
100325 +
100326 + gpio_cells = of_get_property(gc, "#gpio-cells", &size);
100327 + if (!gpio_cells || size != sizeof(*gpio_cells) ||
100328 + *gpio_cells != of_gc->gpio_cells) {
100329 + pr_debug("%s: wrong #gpio-cells for %s\n",
100330 + np->full_name, gc->full_name);
100331 + goto err1;
100332 + }
100333 +
100334 + /* Next phandle is at phandle cells + #gpio-cells */
100335 + i += sizeof(*gpio_phandle) / sizeof(u32) + *gpio_cells;
100336 + if (i >= nr_cells + 1) {
100337 + pr_debug("%s: insufficient gpio-spec length\n",
100338 + np->full_name);
100339 + goto err1;
100340 + }
100341 +
100342 + if (gpio_index == index)
100343 + break;
100344 +
100345 + of_gc = NULL;
100346 + of_node_put(gc);
100347 + }
100348 +
100349 + if (!of_gc) {
100350 + ret = -ENOENT;
100351 + goto err0;
100352 + }
100353 +
100354 + ret = of_gc->xlate(of_gc, np, gpio_spec);
100355 + if (ret < 0)
100356 + goto err1;
100357 +
100358 + ret += of_gc->gc.base;
100359 +err1:
100360 + of_node_put(gc);
100361 +err0:
100362 + pr_debug("%s exited with status %d\n", __func__, ret);
100363 + return ret;
100364 +}
100365 +EXPORT_SYMBOL(of_get_gpio);
100366 +
100367 +/**
100368 + * of_gpio_simple_xlate - translate gpio_spec to the GPIO number
100369 + * @of_gc: pointer to the of_gpio_chip structure
100370 + * @np: device node of the GPIO chip
100371 + * @gpio_spec: gpio specifier as found in the device tree
100372 + *
100373 + * This is simple translation function, suitable for the most 1:1 mapped
100374 + * gpio chips. This function performs only one sanity check: whether gpio
100375 + * is less than ngpios (that is specified in the gpio_chip).
100376 + */
100377 +int of_gpio_simple_xlate(struct of_gpio_chip *of_gc, struct device_node *np,
100378 + const void *gpio_spec)
100379 +{
100380 + const u32 *gpio = gpio_spec;
100381 +
100382 + if (*gpio > of_gc->gc.ngpio)
100383 + return -EINVAL;
100384 +
100385 + return *gpio;
100386 +}
100387 +EXPORT_SYMBOL(of_gpio_simple_xlate);
100388 +
100389 +/* Should be sufficient for now, later we'll use dynamic bases. */
100390 +#if defined(CONFIG_PPC32) || defined(CONFIG_SPARC32)
100391 +#define GPIOS_PER_CHIP 32
100392 +#else
100393 +#define GPIOS_PER_CHIP 64
100394 +#endif
100395 +
100396 +static int of_get_gpiochip_base(struct device_node *np)
100397 +{
100398 + struct device_node *gc = NULL;
100399 + int gpiochip_base = 0;
100400 +
100401 + while ((gc = of_find_all_nodes(gc))) {
100402 + if (!of_get_property(gc, "gpio-controller", NULL))
100403 + continue;
100404 +
100405 + if (gc != np) {
100406 + gpiochip_base += GPIOS_PER_CHIP;
100407 + continue;
100408 + }
100409 +
100410 + of_node_put(gc);
100411 +
100412 + if (gpiochip_base >= ARCH_NR_GPIOS)
100413 + return -ENOSPC;
100414 +
100415 + return gpiochip_base;
100416 + }
100417 +
100418 + return -ENOENT;
100419 +}
100420 +
100421 +/**
100422 + * of_mm_gpiochip_add - Add memory mapped GPIO chip (bank)
100423 + * @np: device node of the GPIO chip
100424 + * @mm_gc: pointer to the of_mm_gpio_chip allocated structure
100425 + *
100426 + * To use this function you should allocate and fill mm_gc with:
100427 + *
100428 + * 1) In the gpio_chip structure:
100429 + * - all the callbacks
100430 + *
100431 + * 2) In the of_gpio_chip structure:
100432 + * - gpio_cells
100433 + * - xlate callback (optional)
100434 + *
100435 + * 3) In the of_mm_gpio_chip structure:
100436 + * - save_regs callback (optional)
100437 + *
100438 + * If succeeded, this function will map bank's memory and will
100439 + * do all necessary work for you. Then you'll able to use .regs
100440 + * to manage GPIOs from the callbacks.
100441 + */
100442 +int of_mm_gpiochip_add(struct device_node *np,
100443 + struct of_mm_gpio_chip *mm_gc)
100444 +{
100445 + int ret = -ENOMEM;
100446 + struct of_gpio_chip *of_gc = &mm_gc->of_gc;
100447 + struct gpio_chip *gc = &of_gc->gc;
100448 +
100449 + gc->label = kstrdup(np->full_name, GFP_KERNEL);
100450 + if (!gc->label)
100451 + goto err0;
100452 +
100453 + mm_gc->regs = of_iomap(np, 0);
100454 + if (!mm_gc->regs)
100455 + goto err1;
100456 +
100457 + gc->base = of_get_gpiochip_base(np);
100458 + if (gc->base < 0) {
100459 + ret = gc->base;
100460 + goto err1;
100461 + }
100462 +
100463 + if (!of_gc->xlate)
100464 + of_gc->xlate = of_gpio_simple_xlate;
100465 +
100466 + if (mm_gc->save_regs)
100467 + mm_gc->save_regs(mm_gc);
100468 +
100469 + np->data = of_gc;
100470 +
100471 + ret = gpiochip_add(gc);
100472 + if (ret)
100473 + goto err2;
100474 +
100475 + /* We don't want to lose the node and its ->data */
100476 + of_node_get(np);
100477 +
100478 + pr_debug("%s: registered as generic GPIO chip, base is %d\n",
100479 + np->full_name, gc->base);
100480 + return 0;
100481 +err2:
100482 + np->data = NULL;
100483 + iounmap(mm_gc->regs);
100484 +err1:
100485 + kfree(gc->label);
100486 +err0:
100487 + pr_err("%s: GPIO chip registration failed with status %d\n",
100488 + np->full_name, ret);
100489 + return ret;
100490 +}
100491 +EXPORT_SYMBOL(of_mm_gpiochip_add);
100492 Index: linux-2.6.25.4/drivers/of/i2c.c
100493 ===================================================================
100494 --- /dev/null
100495 +++ linux-2.6.25.4/drivers/of/i2c.c
100496 @@ -0,0 +1,115 @@
100497 +/*
100498 + * OF helpers for the I2C API
100499 + *
100500 + * Copyright (c) 2008 Jochen Friedrich <jochen@scram.de>
100501 + *
100502 + * Based on a previous patch from Jon Smirl <jonsmirl@gmail.com>
100503 + *
100504 + * This program is free software; you can redistribute it and/or modify
100505 + * it under the terms of the GNU General Public License as published by
100506 + * the Free Software Foundation; either version 2 of the License, or
100507 + * (at your option) any later version.
100508 + */
100509 +
100510 +#include <linux/i2c.h>
100511 +#include <linux/of.h>
100512 +
100513 +struct i2c_driver_device {
100514 + char *of_device;
100515 + char *i2c_type;
100516 +};
100517 +
100518 +static struct i2c_driver_device i2c_devices[] = {
100519 + { "dallas,ds1374", "rtc-ds1374" },
100520 +};
100521 +
100522 +static int of_find_i2c_driver(struct device_node *node,
100523 + struct i2c_board_info *info)
100524 +{
100525 + int i, cplen;
100526 + const char *compatible;
100527 + const char *p;
100528 +
100529 + /* 1. search for exception list entry */
100530 + for (i = 0; i < ARRAY_SIZE(i2c_devices); i++) {
100531 + if (!of_device_is_compatible(node, i2c_devices[i].of_device))
100532 + continue;
100533 + if (strlcpy(info->type, i2c_devices[i].i2c_type,
100534 + I2C_NAME_SIZE) >= I2C_NAME_SIZE)
100535 + return -ENOMEM;
100536 +
100537 + return 0;
100538 + }
100539 +
100540 + compatible = of_get_property(node, "compatible", &cplen);
100541 + if (!compatible)
100542 + return -ENODEV;
100543 +
100544 + /* 2. search for linux,<i2c-type> entry */
100545 + p = compatible;
100546 + while (cplen > 0) {
100547 + if (!strncmp(p, "linux,", 6)) {
100548 + p += 6;
100549 + if (strlcpy(info->type, p,
100550 + I2C_NAME_SIZE) >= I2C_NAME_SIZE)
100551 + return -ENOMEM;
100552 + return 0;
100553 + }
100554 +
100555 + i = strlen(p) + 1;
100556 + p += i;
100557 + cplen -= i;
100558 + }
100559 +
100560 + /* 3. take fist compatible entry and strip manufacturer */
100561 + p = strchr(compatible, ',');
100562 + if (!p)
100563 + return -ENODEV;
100564 + p++;
100565 + if (strlcpy(info->type, p, I2C_NAME_SIZE) >= I2C_NAME_SIZE)
100566 + return -ENOMEM;
100567 + return 0;
100568 +}
100569 +
100570 +void of_register_i2c_devices(struct i2c_adapter *adap,
100571 + struct device_node *adap_node)
100572 +{
100573 + void *result;
100574 + struct device_node *node;
100575 +
100576 + for_each_child_of_node(adap_node, node) {
100577 + struct i2c_board_info info = {};
100578 + const u32 *addr;
100579 + int len;
100580 +
100581 + addr = of_get_property(node, "reg", &len);
100582 + if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) {
100583 + printk(KERN_ERR
100584 + "of-i2c: invalid i2c device entry\n");
100585 + continue;
100586 + }
100587 +
100588 + info.irq = irq_of_parse_and_map(node, 0);
100589 + if (info.irq == NO_IRQ)
100590 + info.irq = -1;
100591 +
100592 + if (of_find_i2c_driver(node, &info) < 0) {
100593 + irq_dispose_mapping(info.irq);
100594 + continue;
100595 + }
100596 +
100597 + info.addr = *addr;
100598 +
100599 + request_module(info.type);
100600 +
100601 + result = i2c_new_device(adap, &info);
100602 + if (result == NULL) {
100603 + printk(KERN_ERR
100604 + "of-i2c: Failed to load driver for %s\n",
100605 + info.type);
100606 + irq_dispose_mapping(info.irq);
100607 + continue;
100608 + }
100609 + }
100610 +}
100611 +EXPORT_SYMBOL(of_register_i2c_devices);
100612 Index: linux-2.6.25.4/drivers/ps3/ps3-sys-manager.c
100613 ===================================================================
100614 --- linux-2.6.25.4.orig/drivers/ps3/ps3-sys-manager.c
100615 +++ linux-2.6.25.4/drivers/ps3/ps3-sys-manager.c
100616 @@ -24,6 +24,7 @@
100617 #include <linux/reboot.h>
100618
100619 #include <asm/firmware.h>
100620 +#include <asm/lv1call.h>
100621 #include <asm/ps3.h>
100622
100623 #include "vuart.h"
100624 @@ -187,6 +188,7 @@ enum ps3_sys_manager_next_op {
100625 * controller, and bluetooth controller.
100626 * @PS3_SM_WAKE_RTC:
100627 * @PS3_SM_WAKE_RTC_ERROR:
100628 + * @PS3_SM_WAKE_W_O_L: Ether or wireless LAN.
100629 * @PS3_SM_WAKE_P_O_R: Power on reset.
100630 *
100631 * Additional wakeup sources when specifying PS3_SM_NEXT_OP_SYS_SHUTDOWN.
100632 @@ -200,10 +202,19 @@ enum ps3_sys_manager_wake_source {
100633 PS3_SM_WAKE_DEFAULT = 0,
100634 PS3_SM_WAKE_RTC = 0x00000040,
100635 PS3_SM_WAKE_RTC_ERROR = 0x00000080,
100636 + PS3_SM_WAKE_W_O_L = 0x00000400,
100637 PS3_SM_WAKE_P_O_R = 0x80000000,
100638 };
100639
100640 /**
100641 + * user_wake_sources - User specified wakeup sources.
100642 + *
100643 + * Logical OR of enum ps3_sys_manager_wake_source types.
100644 + */
100645 +
100646 +static u32 user_wake_sources = PS3_SM_WAKE_DEFAULT;
100647 +
100648 +/**
100649 * enum ps3_sys_manager_cmd - Command from system manager to guest.
100650 *
100651 * The guest completes the actions needed, then acks or naks the command via
100652 @@ -581,6 +592,23 @@ fail_id:
100653 return -EIO;
100654 }
100655
100656 +static void ps3_sys_manager_fin(struct ps3_system_bus_device *dev)
100657 +{
100658 + ps3_sys_manager_send_request_shutdown(dev);
100659 +
100660 + pr_emerg("System Halted, OK to turn off power\n");
100661 +
100662 + while (ps3_sys_manager_handle_msg(dev)) {
100663 + /* pause until next DEC interrupt */
100664 + lv1_pause(0);
100665 + }
100666 +
100667 + while (1) {
100668 + /* pause, ignoring DEC interrupt */
100669 + lv1_pause(1);
100670 + }
100671 +}
100672 +
100673 /**
100674 * ps3_sys_manager_final_power_off - The final platform machine_power_off routine.
100675 *
100676 @@ -601,13 +629,9 @@ static void ps3_sys_manager_final_power_
100677 ps3_vuart_cancel_async(dev);
100678
100679 ps3_sys_manager_send_next_op(dev, PS3_SM_NEXT_OP_SYS_SHUTDOWN,
100680 - PS3_SM_WAKE_DEFAULT);
100681 - ps3_sys_manager_send_request_shutdown(dev);
100682 -
100683 - pr_emerg("System Halted, OK to turn off power\n");
100684 + user_wake_sources);
100685
100686 - while (1)
100687 - ps3_sys_manager_handle_msg(dev);
100688 + ps3_sys_manager_fin(dev);
100689 }
100690
100691 /**
100692 @@ -638,14 +662,42 @@ static void ps3_sys_manager_final_restar
100693
100694 ps3_sys_manager_send_attr(dev, 0);
100695 ps3_sys_manager_send_next_op(dev, PS3_SM_NEXT_OP_SYS_REBOOT,
100696 - PS3_SM_WAKE_DEFAULT);
100697 - ps3_sys_manager_send_request_shutdown(dev);
100698 + user_wake_sources);
100699
100700 - pr_emerg("System Halted, OK to turn off power\n");
100701 + ps3_sys_manager_fin(dev);
100702 +}
100703 +
100704 +/**
100705 + * ps3_sys_manager_get_wol - Get wake-on-lan setting.
100706 + */
100707 +
100708 +int ps3_sys_manager_get_wol(void)
100709 +{
100710 + pr_debug("%s:%d\n", __func__, __LINE__);
100711 +
100712 + return (user_wake_sources & PS3_SM_WAKE_W_O_L) != 0;
100713 +}
100714 +EXPORT_SYMBOL_GPL(ps3_sys_manager_get_wol);
100715 +
100716 +/**
100717 + * ps3_sys_manager_set_wol - Set wake-on-lan setting.
100718 + */
100719 +
100720 +void ps3_sys_manager_set_wol(int state)
100721 +{
100722 + static DEFINE_MUTEX(mutex);
100723 +
100724 + mutex_lock(&mutex);
100725 +
100726 + pr_debug("%s:%d: %d\n", __func__, __LINE__, state);
100727
100728 - while (1)
100729 - ps3_sys_manager_handle_msg(dev);
100730 + if (state)
100731 + user_wake_sources |= PS3_SM_WAKE_W_O_L;
100732 + else
100733 + user_wake_sources &= ~PS3_SM_WAKE_W_O_L;
100734 + mutex_unlock(&mutex);
100735 }
100736 +EXPORT_SYMBOL_GPL(ps3_sys_manager_set_wol);
100737
100738 /**
100739 * ps3_sys_manager_work - Asynchronous read handler.
100740 Index: linux-2.6.25.4/drivers/ps3/sys-manager-core.c
100741 ===================================================================
100742 --- linux-2.6.25.4.orig/drivers/ps3/sys-manager-core.c
100743 +++ linux-2.6.25.4/drivers/ps3/sys-manager-core.c
100744 @@ -19,6 +19,7 @@
100745 */
100746
100747 #include <linux/kernel.h>
100748 +#include <asm/lv1call.h>
100749 #include <asm/ps3.h>
100750
100751 /**
100752 @@ -50,10 +51,7 @@ void ps3_sys_manager_power_off(void)
100753 if (ps3_sys_manager_ops.power_off)
100754 ps3_sys_manager_ops.power_off(ps3_sys_manager_ops.dev);
100755
100756 - printk(KERN_EMERG "System Halted, OK to turn off power\n");
100757 - local_irq_disable();
100758 - while (1)
100759 - (void)0;
100760 + ps3_sys_manager_halt();
100761 }
100762
100763 void ps3_sys_manager_restart(void)
100764 @@ -61,8 +59,14 @@ void ps3_sys_manager_restart(void)
100765 if (ps3_sys_manager_ops.restart)
100766 ps3_sys_manager_ops.restart(ps3_sys_manager_ops.dev);
100767
100768 - printk(KERN_EMERG "System Halted, OK to turn off power\n");
100769 + ps3_sys_manager_halt();
100770 +}
100771 +
100772 +void ps3_sys_manager_halt(void)
100773 +{
100774 + pr_emerg("System Halted, OK to turn off power\n");
100775 local_irq_disable();
100776 while (1)
100777 - (void)0;
100778 + lv1_pause(1);
100779 }
100780 +
100781 Index: linux-2.6.25.4/drivers/serial/cpm_uart/cpm_uart.h
100782 ===================================================================
100783 --- linux-2.6.25.4.orig/drivers/serial/cpm_uart/cpm_uart.h
100784 +++ linux-2.6.25.4/drivers/serial/cpm_uart/cpm_uart.h
100785 @@ -92,6 +92,9 @@ extern struct uart_cpm_port cpm_uart_por
100786
100787 /* these are located in their respective files */
100788 void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd);
100789 +void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
100790 + struct device_node *np);
100791 +void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram);
100792 int cpm_uart_init_portdesc(void);
100793 int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con);
100794 void cpm_uart_freebuf(struct uart_cpm_port *pinfo);
100795 Index: linux-2.6.25.4/drivers/serial/cpm_uart/cpm_uart_core.c
100796 ===================================================================
100797 --- linux-2.6.25.4.orig/drivers/serial/cpm_uart/cpm_uart_core.c
100798 +++ linux-2.6.25.4/drivers/serial/cpm_uart/cpm_uart_core.c
100799 @@ -966,24 +966,23 @@ static int cpm_uart_init_port(struct dev
100800 if (!mem)
100801 return -ENOMEM;
100802
100803 - pram = of_iomap(np, 1);
100804 - if (!pram) {
100805 - ret = -ENOMEM;
100806 - goto out_mem;
100807 - }
100808 -
100809 if (of_device_is_compatible(np, "fsl,cpm1-scc-uart") ||
100810 of_device_is_compatible(np, "fsl,cpm2-scc-uart")) {
100811 pinfo->sccp = mem;
100812 - pinfo->sccup = pram;
100813 + pinfo->sccup = pram = cpm_uart_map_pram(pinfo, np);
100814 } else if (of_device_is_compatible(np, "fsl,cpm1-smc-uart") ||
100815 of_device_is_compatible(np, "fsl,cpm2-smc-uart")) {
100816 pinfo->flags |= FLAG_SMC;
100817 pinfo->smcp = mem;
100818 - pinfo->smcup = pram;
100819 + pinfo->smcup = pram = cpm_uart_map_pram(pinfo, np);
100820 } else {
100821 ret = -ENODEV;
100822 - goto out_pram;
100823 + goto out_mem;
100824 + }
100825 +
100826 + if (!pram) {
100827 + ret = -ENOMEM;
100828 + goto out_mem;
100829 }
100830
100831 pinfo->tx_nrfifos = TX_NUM_FIFO;
100832 @@ -1007,7 +1006,7 @@ static int cpm_uart_init_port(struct dev
100833 return cpm_uart_request_port(&pinfo->port);
100834
100835 out_pram:
100836 - iounmap(pram);
100837 + cpm_uart_unmap_pram(pinfo, pram);
100838 out_mem:
100839 iounmap(mem);
100840 return ret;
100841 Index: linux-2.6.25.4/drivers/serial/cpm_uart/cpm_uart_cpm1.c
100842 ===================================================================
100843 --- linux-2.6.25.4.orig/drivers/serial/cpm_uart/cpm_uart_cpm1.c
100844 +++ linux-2.6.25.4/drivers/serial/cpm_uart/cpm_uart_cpm1.c
100845 @@ -45,6 +45,8 @@
100846 #include <linux/serial_core.h>
100847 #include <linux/kernel.h>
100848
100849 +#include <linux/of.h>
100850 +
100851 #include "cpm_uart.h"
100852
100853 /**************************************************************/
100854 @@ -54,6 +56,18 @@ void cpm_line_cr_cmd(struct uart_cpm_por
100855 {
100856 cpm_command(port->command, cmd);
100857 }
100858 +
100859 +void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
100860 + struct device_node *np)
100861 +{
100862 + return of_iomap(np, 1);
100863 +}
100864 +
100865 +void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram)
100866 +{
100867 + iounmap(pram);
100868 +}
100869 +
100870 #else
100871 void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd)
100872 {
100873 Index: linux-2.6.25.4/drivers/serial/cpm_uart/cpm_uart_cpm2.c
100874 ===================================================================
100875 --- linux-2.6.25.4.orig/drivers/serial/cpm_uart/cpm_uart_cpm2.c
100876 +++ linux-2.6.25.4/drivers/serial/cpm_uart/cpm_uart_cpm2.c
100877 @@ -41,6 +41,9 @@
100878 #include <asm/io.h>
100879 #include <asm/irq.h>
100880 #include <asm/fs_pd.h>
100881 +#ifdef CONFIG_PPC_CPM_NEW_BINDING
100882 +#include <asm/prom.h>
100883 +#endif
100884
100885 #include <linux/serial_core.h>
100886 #include <linux/kernel.h>
100887 @@ -54,6 +57,55 @@ void cpm_line_cr_cmd(struct uart_cpm_por
100888 {
100889 cpm_command(port->command, cmd);
100890 }
100891 +
100892 +void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
100893 + struct device_node *np)
100894 +{
100895 + void __iomem *pram;
100896 + unsigned long offset;
100897 + struct resource res;
100898 + unsigned long len;
100899 +
100900 + /* Don't remap parameter RAM if it has already been initialized
100901 + * during console setup.
100902 + */
100903 + if (IS_SMC(port) && port->smcup)
100904 + return port->smcup;
100905 + else if (!IS_SMC(port) && port->sccup)
100906 + return port->sccup;
100907 +
100908 + if (of_address_to_resource(np, 1, &res))
100909 + return NULL;
100910 +
100911 + len = 1 + res.end - res.start;
100912 + pram = ioremap(res.start, len);
100913 + if (!pram)
100914 + return NULL;
100915 +
100916 + if (!IS_SMC(port))
100917 + return pram;
100918 +
100919 + if (len != 2) {
100920 + printk(KERN_WARNING "cpm_uart[%d]: device tree references "
100921 + "SMC pram, using boot loader/wrapper pram mapping. "
100922 + "Please fix your device tree to reference the pram "
100923 + "base register instead.\n",
100924 + port->port.line);
100925 + return pram;
100926 + }
100927 +
100928 + offset = cpm_dpalloc(PROFF_SMC_SIZE, 64);
100929 + out_be16(pram, offset);
100930 + iounmap(pram);
100931 + return cpm_muram_addr(offset);
100932 +}
100933 +
100934 +void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram)
100935 +{
100936 + if (!IS_SMC(port))
100937 + iounmap(pram);
100938 +}
100939 +
100940 #else
100941 void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd)
100942 {
100943 Index: linux-2.6.25.4/drivers/serial/of_serial.c
100944 ===================================================================
100945 --- linux-2.6.25.4.orig/drivers/serial/of_serial.c
100946 +++ linux-2.6.25.4/drivers/serial/of_serial.c
100947 @@ -56,7 +56,9 @@ static int __devinit of_platform_serial_
100948 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
100949 | UPF_FIXED_PORT;
100950 port->dev = &ofdev->dev;
100951 - port->custom_divisor = *clk / (16 * (*spd));
100952 + /* If current-speed was set, then try not to change it. */
100953 + if (spd)
100954 + port->custom_divisor = *clk / (16 * (*spd));
100955
100956 return 0;
100957 }
100958 Index: linux-2.6.25.4/drivers/serial/ucc_uart.c
100959 ===================================================================
100960 --- linux-2.6.25.4.orig/drivers/serial/ucc_uart.c
100961 +++ linux-2.6.25.4/drivers/serial/ucc_uart.c
100962 @@ -1270,10 +1270,18 @@ static int ucc_uart_probe(struct of_devi
100963
100964 /* Get the UCC number (device ID) */
100965 /* UCCs are numbered 1-7 */
100966 - iprop = of_get_property(np, "device-id", NULL);
100967 - if (!iprop || (*iprop < 1) || (*iprop > UCC_MAX_NUM)) {
100968 - dev_err(&ofdev->dev,
100969 - "missing or invalid UCC specified in device tree\n");
100970 + iprop = of_get_property(np, "cell-index", NULL);
100971 + if (!iprop) {
100972 + iprop = of_get_property(np, "device-id", NULL);
100973 + if (!iprop) {
100974 + dev_err(&ofdev->dev, "UCC is unspecified in "
100975 + "device tree\n");
100976 + return -EINVAL;
100977 + }
100978 + }
100979 +
100980 + if ((*iprop < 1) || (*iprop > UCC_MAX_NUM)) {
100981 + dev_err(&ofdev->dev, "no support for UCC%u\n", *iprop);
100982 kfree(qe_port);
100983 return -ENODEV;
100984 }
100985 Index: linux-2.6.25.4/include/asm-powerpc/Kbuild
100986 ===================================================================
100987 --- linux-2.6.25.4.orig/include/asm-powerpc/Kbuild
100988 +++ linux-2.6.25.4/include/asm-powerpc/Kbuild
100989 @@ -1,5 +1,6 @@
100990 include include/asm-generic/Kbuild.asm
100991
100992 +header-y += a.out.h
100993 header-y += auxvec.h
100994 header-y += ioctls.h
100995 header-y += mman.h
100996 @@ -23,7 +24,6 @@ header-y += sigcontext.h
100997 header-y += statfs.h
100998 header-y += ps3fb.h
100999
101000 -unifdef-y += a.out.h
101001 unifdef-y += asm-compat.h
101002 unifdef-y += bootx.h
101003 unifdef-y += byteorder.h
101004 Index: linux-2.6.25.4/include/asm-powerpc/abs_addr.h
101005 ===================================================================
101006 --- linux-2.6.25.4.orig/include/asm-powerpc/abs_addr.h
101007 +++ linux-2.6.25.4/include/asm-powerpc/abs_addr.h
101008 @@ -12,10 +12,11 @@
101009 * 2 of the License, or (at your option) any later version.
101010 */
101011
101012 +#include <linux/lmb.h>
101013 +
101014 #include <asm/types.h>
101015 #include <asm/page.h>
101016 #include <asm/prom.h>
101017 -#include <asm/lmb.h>
101018 #include <asm/firmware.h>
101019
101020 struct mschunks_map {
101021 Index: linux-2.6.25.4/include/asm-powerpc/bitops.h
101022 ===================================================================
101023 --- linux-2.6.25.4.orig/include/asm-powerpc/bitops.h
101024 +++ linux-2.6.25.4/include/asm-powerpc/bitops.h
101025 @@ -312,24 +312,26 @@ static __inline__ int fls(unsigned int x
101026 asm ("cntlzw %0,%1" : "=r" (lz) : "r" (x));
101027 return 32 - lz;
101028 }
101029 +
101030 +/*
101031 + * 64-bit can do this using one cntlzd (count leading zeroes doubleword)
101032 + * instruction; for 32-bit we use the generic version, which does two
101033 + * 32-bit fls calls.
101034 + */
101035 +#ifdef __powerpc64__
101036 +static __inline__ int fls64(__u64 x)
101037 +{
101038 + int lz;
101039 +
101040 + asm ("cntlzd %0,%1" : "=r" (lz) : "r" (x));
101041 + return 64 - lz;
101042 +}
101043 +#else
101044 #include <asm-generic/bitops/fls64.h>
101045 +#endif /* __powerpc64__ */
101046
101047 #include <asm-generic/bitops/hweight.h>
101048 -
101049 -#define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
101050 -unsigned long find_next_zero_bit(const unsigned long *addr,
101051 - unsigned long size, unsigned long offset);
101052 -/**
101053 - * find_first_bit - find the first set bit in a memory region
101054 - * @addr: The address to start the search at
101055 - * @size: The maximum size to search
101056 - *
101057 - * Returns the bit-number of the first set bit, not the number of the byte
101058 - * containing a bit.
101059 - */
101060 -#define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
101061 -unsigned long find_next_bit(const unsigned long *addr,
101062 - unsigned long size, unsigned long offset);
101063 +#include <asm-generic/bitops/find.h>
101064
101065 /* Little-endian versions */
101066
101067 Index: linux-2.6.25.4/include/asm-powerpc/cpm.h
101068 ===================================================================
101069 --- linux-2.6.25.4.orig/include/asm-powerpc/cpm.h
101070 +++ linux-2.6.25.4/include/asm-powerpc/cpm.h
101071 @@ -4,6 +4,20 @@
101072 #include <linux/compiler.h>
101073 #include <linux/types.h>
101074
101075 +/* Opcodes common to CPM1 and CPM2
101076 +*/
101077 +#define CPM_CR_INIT_TRX ((ushort)0x0000)
101078 +#define CPM_CR_INIT_RX ((ushort)0x0001)
101079 +#define CPM_CR_INIT_TX ((ushort)0x0002)
101080 +#define CPM_CR_HUNT_MODE ((ushort)0x0003)
101081 +#define CPM_CR_STOP_TX ((ushort)0x0004)
101082 +#define CPM_CR_GRA_STOP_TX ((ushort)0x0005)
101083 +#define CPM_CR_RESTART_TX ((ushort)0x0006)
101084 +#define CPM_CR_CLOSE_RX_BD ((ushort)0x0007)
101085 +#define CPM_CR_SET_GADDR ((ushort)0x0008)
101086 +#define CPM_CR_SET_TIMER ((ushort)0x0008)
101087 +#define CPM_CR_STOP_IDMA ((ushort)0x000b)
101088 +
101089 /* Buffer descriptors used by many of the CPM protocols. */
101090 typedef struct cpm_buf_desc {
101091 ushort cbd_sc; /* Status and Control */
101092 Index: linux-2.6.25.4/include/asm-powerpc/cpm1.h
101093 ===================================================================
101094 --- linux-2.6.25.4.orig/include/asm-powerpc/cpm1.h
101095 +++ linux-2.6.25.4/include/asm-powerpc/cpm1.h
101096 @@ -28,19 +28,6 @@
101097 #define CPM_CR_CHAN ((ushort)0x00f0)
101098 #define CPM_CR_FLG ((ushort)0x0001)
101099
101100 -/* Some commands (there are more...later)
101101 -*/
101102 -#define CPM_CR_INIT_TRX ((ushort)0x0000)
101103 -#define CPM_CR_INIT_RX ((ushort)0x0001)
101104 -#define CPM_CR_INIT_TX ((ushort)0x0002)
101105 -#define CPM_CR_HUNT_MODE ((ushort)0x0003)
101106 -#define CPM_CR_STOP_TX ((ushort)0x0004)
101107 -#define CPM_CR_GRA_STOP_TX ((ushort)0x0005)
101108 -#define CPM_CR_RESTART_TX ((ushort)0x0006)
101109 -#define CPM_CR_CLOSE_RX_BD ((ushort)0x0007)
101110 -#define CPM_CR_SET_GADDR ((ushort)0x0008)
101111 -#define CPM_CR_SET_TIMER CPM_CR_SET_GADDR
101112 -
101113 /* Channel numbers.
101114 */
101115 #define CPM_CR_CH_SCC1 ((ushort)0x0000)
101116 Index: linux-2.6.25.4/include/asm-powerpc/cpm2.h
101117 ===================================================================
101118 --- linux-2.6.25.4.orig/include/asm-powerpc/cpm2.h
101119 +++ linux-2.6.25.4/include/asm-powerpc/cpm2.h
101120 @@ -71,18 +71,9 @@
101121
101122 #define CPM_CR_FCC_PAGE(x) (x + 0x04)
101123
101124 -/* Some opcodes (there are more...later)
101125 +/* CPM2-specific opcodes (see cpm.h for common opcodes)
101126 */
101127 -#define CPM_CR_INIT_TRX ((ushort)0x0000)
101128 -#define CPM_CR_INIT_RX ((ushort)0x0001)
101129 -#define CPM_CR_INIT_TX ((ushort)0x0002)
101130 -#define CPM_CR_HUNT_MODE ((ushort)0x0003)
101131 -#define CPM_CR_STOP_TX ((ushort)0x0004)
101132 -#define CPM_CR_GRA_STOP_TX ((ushort)0x0005)
101133 -#define CPM_CR_RESTART_TX ((ushort)0x0006)
101134 -#define CPM_CR_SET_GADDR ((ushort)0x0008)
101135 #define CPM_CR_START_IDMA ((ushort)0x0009)
101136 -#define CPM_CR_STOP_IDMA ((ushort)0x000b)
101137
101138 #define mk_cr_cmd(PG, SBC, MCN, OP) \
101139 ((PG << 26) | (SBC << 21) | (MCN << 6) | OP)
101140 Index: linux-2.6.25.4/include/asm-powerpc/cputhreads.h
101141 ===================================================================
101142 --- linux-2.6.25.4.orig/include/asm-powerpc/cputhreads.h
101143 +++ linux-2.6.25.4/include/asm-powerpc/cputhreads.h
101144 @@ -35,7 +35,7 @@ static inline cpumask_t cpu_thread_mask_
101145
101146 res = CPU_MASK_NONE;
101147 for (i = 0; i < NR_CPUS; i += threads_per_core) {
101148 - cpus_shift_right(tmp, threads_core_mask, i);
101149 + cpus_shift_left(tmp, threads_core_mask, i);
101150 if (cpus_intersects(threads, tmp))
101151 cpu_set(i, res);
101152 }
101153 Index: linux-2.6.25.4/include/asm-powerpc/dcr-native.h
101154 ===================================================================
101155 --- linux-2.6.25.4.orig/include/asm-powerpc/dcr-native.h
101156 +++ linux-2.6.25.4/include/asm-powerpc/dcr-native.h
101157 @@ -82,6 +82,19 @@ static inline void __mtdcri(int base_add
101158 spin_unlock_irqrestore(&dcr_ind_lock, flags);
101159 }
101160
101161 +static inline void __dcri_clrset(int base_addr, int base_data, int reg,
101162 + unsigned clr, unsigned set)
101163 +{
101164 + unsigned long flags;
101165 + unsigned int val;
101166 +
101167 + spin_lock_irqsave(&dcr_ind_lock, flags);
101168 + __mtdcr(base_addr, reg);
101169 + val = (__mfdcr(base_data) & ~clr) | set;
101170 + __mtdcr(base_data, val);
101171 + spin_unlock_irqrestore(&dcr_ind_lock, flags);
101172 +}
101173 +
101174 #define mfdcri(base, reg) __mfdcri(DCRN_ ## base ## _CONFIG_ADDR, \
101175 DCRN_ ## base ## _CONFIG_DATA, \
101176 reg)
101177 @@ -90,6 +103,10 @@ static inline void __mtdcri(int base_add
101178 DCRN_ ## base ## _CONFIG_DATA, \
101179 reg, data)
101180
101181 +#define dcri_clrset(base, reg, clr, set) __dcri_clrset(DCRN_ ## base ## _CONFIG_ADDR, \
101182 + DCRN_ ## base ## _CONFIG_DATA, \
101183 + reg, clr, set)
101184 +
101185 #endif /* __ASSEMBLY__ */
101186 #endif /* __KERNEL__ */
101187 #endif /* _ASM_POWERPC_DCR_NATIVE_H */
101188 Index: linux-2.6.25.4/include/asm-powerpc/dcr-regs.h
101189 ===================================================================
101190 --- linux-2.6.25.4.orig/include/asm-powerpc/dcr-regs.h
101191 +++ linux-2.6.25.4/include/asm-powerpc/dcr-regs.h
101192 @@ -68,4 +68,82 @@
101193 #define SDR0_UART3 0x0123
101194 #define SDR0_CUST0 0x4000
101195
101196 +/*
101197 + * All those DCR register addresses are offsets from the base address
101198 + * for the SRAM0 controller (e.g. 0x20 on 440GX). The base address is
101199 + * excluded here and configured in the device tree.
101200 + */
101201 +#define DCRN_SRAM0_SB0CR 0x00
101202 +#define DCRN_SRAM0_SB1CR 0x01
101203 +#define DCRN_SRAM0_SB2CR 0x02
101204 +#define DCRN_SRAM0_SB3CR 0x03
101205 +#define SRAM_SBCR_BU_MASK 0x00000180
101206 +#define SRAM_SBCR_BS_64KB 0x00000800
101207 +#define SRAM_SBCR_BU_RO 0x00000080
101208 +#define SRAM_SBCR_BU_RW 0x00000180
101209 +#define DCRN_SRAM0_BEAR 0x04
101210 +#define DCRN_SRAM0_BESR0 0x05
101211 +#define DCRN_SRAM0_BESR1 0x06
101212 +#define DCRN_SRAM0_PMEG 0x07
101213 +#define DCRN_SRAM0_CID 0x08
101214 +#define DCRN_SRAM0_REVID 0x09
101215 +#define DCRN_SRAM0_DPC 0x0a
101216 +#define SRAM_DPC_ENABLE 0x80000000
101217 +
101218 +/*
101219 + * All those DCR register addresses are offsets from the base address
101220 + * for the SRAM0 controller (e.g. 0x30 on 440GX). The base address is
101221 + * excluded here and configured in the device tree.
101222 + */
101223 +#define DCRN_L2C0_CFG 0x00
101224 +#define L2C_CFG_L2M 0x80000000
101225 +#define L2C_CFG_ICU 0x40000000
101226 +#define L2C_CFG_DCU 0x20000000
101227 +#define L2C_CFG_DCW_MASK 0x1e000000
101228 +#define L2C_CFG_TPC 0x01000000
101229 +#define L2C_CFG_CPC 0x00800000
101230 +#define L2C_CFG_FRAN 0x00200000
101231 +#define L2C_CFG_SS_MASK 0x00180000
101232 +#define L2C_CFG_SS_256 0x00000000
101233 +#define L2C_CFG_CPIM 0x00040000
101234 +#define L2C_CFG_TPIM 0x00020000
101235 +#define L2C_CFG_LIM 0x00010000
101236 +#define L2C_CFG_PMUX_MASK 0x00007000
101237 +#define L2C_CFG_PMUX_SNP 0x00000000
101238 +#define L2C_CFG_PMUX_IF 0x00001000
101239 +#define L2C_CFG_PMUX_DF 0x00002000
101240 +#define L2C_CFG_PMUX_DS 0x00003000
101241 +#define L2C_CFG_PMIM 0x00000800
101242 +#define L2C_CFG_TPEI 0x00000400
101243 +#define L2C_CFG_CPEI 0x00000200
101244 +#define L2C_CFG_NAM 0x00000100
101245 +#define L2C_CFG_SMCM 0x00000080
101246 +#define L2C_CFG_NBRM 0x00000040
101247 +#define L2C_CFG_RDBW 0x00000008 /* only 460EX/GT */
101248 +#define DCRN_L2C0_CMD 0x01
101249 +#define L2C_CMD_CLR 0x80000000
101250 +#define L2C_CMD_DIAG 0x40000000
101251 +#define L2C_CMD_INV 0x20000000
101252 +#define L2C_CMD_CCP 0x10000000
101253 +#define L2C_CMD_CTE 0x08000000
101254 +#define L2C_CMD_STRC 0x04000000
101255 +#define L2C_CMD_STPC 0x02000000
101256 +#define L2C_CMD_RPMC 0x01000000
101257 +#define L2C_CMD_HCC 0x00800000
101258 +#define DCRN_L2C0_ADDR 0x02
101259 +#define DCRN_L2C0_DATA 0x03
101260 +#define DCRN_L2C0_SR 0x04
101261 +#define L2C_SR_CC 0x80000000
101262 +#define L2C_SR_CPE 0x40000000
101263 +#define L2C_SR_TPE 0x20000000
101264 +#define L2C_SR_LRU 0x10000000
101265 +#define L2C_SR_PCS 0x08000000
101266 +#define DCRN_L2C0_REVID 0x05
101267 +#define DCRN_L2C0_SNP0 0x06
101268 +#define DCRN_L2C0_SNP1 0x07
101269 +#define L2C_SNP_BA_MASK 0xffff0000
101270 +#define L2C_SNP_SSR_MASK 0x0000f000
101271 +#define L2C_SNP_SSR_32G 0x0000f000
101272 +#define L2C_SNP_ESR 0x00000800
101273 +
101274 #endif /* __DCR_REGS_H__ */
101275 Index: linux-2.6.25.4/include/asm-powerpc/exception.h
101276 ===================================================================
101277 --- linux-2.6.25.4.orig/include/asm-powerpc/exception.h
101278 +++ linux-2.6.25.4/include/asm-powerpc/exception.h
101279 @@ -228,18 +228,18 @@ label##_pSeries: \
101280 BEGIN_FW_FTR_SECTION; \
101281 stb r11,PACAHARDIRQEN(r13); \
101282 END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES); \
101283 + TRACE_DISABLE_INTS; \
101284 BEGIN_FW_FTR_SECTION; \
101285 mfmsr r10; \
101286 ori r10,r10,MSR_EE; \
101287 mtmsrd r10,1; \
101288 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
101289 -
101290 #else
101291 #define DISABLE_INTS \
101292 li r11,0; \
101293 stb r11,PACASOFTIRQEN(r13); \
101294 - stb r11,PACAHARDIRQEN(r13)
101295 -
101296 + stb r11,PACAHARDIRQEN(r13); \
101297 + TRACE_DISABLE_INTS
101298 #endif /* CONFIG_PPC_ISERIES */
101299
101300 #define ENABLE_INTS \
101301 Index: linux-2.6.25.4/include/asm-powerpc/fsl_lbc.h
101302 ===================================================================
101303 --- /dev/null
101304 +++ linux-2.6.25.4/include/asm-powerpc/fsl_lbc.h
101305 @@ -0,0 +1,311 @@
101306 +/* Freescale Local Bus Controller
101307 + *
101308 + * Copyright (c) 2006-2007 Freescale Semiconductor
101309 + *
101310 + * Authors: Nick Spence <nick.spence@freescale.com>,
101311 + * Scott Wood <scottwood@freescale.com>
101312 + *
101313 + * This program is free software; you can redistribute it and/or modify
101314 + * it under the terms of the GNU General Public License as published by
101315 + * the Free Software Foundation; either version 2 of the License, or
101316 + * (at your option) any later version.
101317 + *
101318 + * This program is distributed in the hope that it will be useful,
101319 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
101320 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
101321 + * GNU General Public License for more details.
101322 + *
101323 + * You should have received a copy of the GNU General Public License
101324 + * along with this program; if not, write to the Free Software
101325 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
101326 + */
101327 +
101328 +#ifndef __ASM_FSL_LBC_H
101329 +#define __ASM_FSL_LBC_H
101330 +
101331 +#include <linux/types.h>
101332 +#include <linux/spinlock.h>
101333 +#include <asm/io.h>
101334 +
101335 +struct fsl_lbc_bank {
101336 + __be32 br; /**< Base Register */
101337 +#define BR_BA 0xFFFF8000
101338 +#define BR_BA_SHIFT 15
101339 +#define BR_PS 0x00001800
101340 +#define BR_PS_SHIFT 11
101341 +#define BR_PS_8 0x00000800 /* Port Size 8 bit */
101342 +#define BR_PS_16 0x00001000 /* Port Size 16 bit */
101343 +#define BR_PS_32 0x00001800 /* Port Size 32 bit */
101344 +#define BR_DECC 0x00000600
101345 +#define BR_DECC_SHIFT 9
101346 +#define BR_DECC_OFF 0x00000000 /* HW ECC checking and generation off */
101347 +#define BR_DECC_CHK 0x00000200 /* HW ECC checking on, generation off */
101348 +#define BR_DECC_CHK_GEN 0x00000400 /* HW ECC checking and generation on */
101349 +#define BR_WP 0x00000100
101350 +#define BR_WP_SHIFT 8
101351 +#define BR_MSEL 0x000000E0
101352 +#define BR_MSEL_SHIFT 5
101353 +#define BR_MS_GPCM 0x00000000 /* GPCM */
101354 +#define BR_MS_FCM 0x00000020 /* FCM */
101355 +#define BR_MS_SDRAM 0x00000060 /* SDRAM */
101356 +#define BR_MS_UPMA 0x00000080 /* UPMA */
101357 +#define BR_MS_UPMB 0x000000A0 /* UPMB */
101358 +#define BR_MS_UPMC 0x000000C0 /* UPMC */
101359 +#define BR_V 0x00000001
101360 +#define BR_V_SHIFT 0
101361 +#define BR_RES ~(BR_BA|BR_PS|BR_DECC|BR_WP|BR_MSEL|BR_V)
101362 +
101363 + __be32 or; /**< Base Register */
101364 +#define OR0 0x5004
101365 +#define OR1 0x500C
101366 +#define OR2 0x5014
101367 +#define OR3 0x501C
101368 +#define OR4 0x5024
101369 +#define OR5 0x502C
101370 +#define OR6 0x5034
101371 +#define OR7 0x503C
101372 +
101373 +#define OR_FCM_AM 0xFFFF8000
101374 +#define OR_FCM_AM_SHIFT 15
101375 +#define OR_FCM_BCTLD 0x00001000
101376 +#define OR_FCM_BCTLD_SHIFT 12
101377 +#define OR_FCM_PGS 0x00000400
101378 +#define OR_FCM_PGS_SHIFT 10
101379 +#define OR_FCM_CSCT 0x00000200
101380 +#define OR_FCM_CSCT_SHIFT 9
101381 +#define OR_FCM_CST 0x00000100
101382 +#define OR_FCM_CST_SHIFT 8
101383 +#define OR_FCM_CHT 0x00000080
101384 +#define OR_FCM_CHT_SHIFT 7
101385 +#define OR_FCM_SCY 0x00000070
101386 +#define OR_FCM_SCY_SHIFT 4
101387 +#define OR_FCM_SCY_1 0x00000010
101388 +#define OR_FCM_SCY_2 0x00000020
101389 +#define OR_FCM_SCY_3 0x00000030
101390 +#define OR_FCM_SCY_4 0x00000040
101391 +#define OR_FCM_SCY_5 0x00000050
101392 +#define OR_FCM_SCY_6 0x00000060
101393 +#define OR_FCM_SCY_7 0x00000070
101394 +#define OR_FCM_RST 0x00000008
101395 +#define OR_FCM_RST_SHIFT 3
101396 +#define OR_FCM_TRLX 0x00000004
101397 +#define OR_FCM_TRLX_SHIFT 2
101398 +#define OR_FCM_EHTR 0x00000002
101399 +#define OR_FCM_EHTR_SHIFT 1
101400 +};
101401 +
101402 +struct fsl_lbc_regs {
101403 + struct fsl_lbc_bank bank[8];
101404 + u8 res0[0x28];
101405 + __be32 mar; /**< UPM Address Register */
101406 + u8 res1[0x4];
101407 + __be32 mamr; /**< UPMA Mode Register */
101408 +#define MxMR_OP_NO (0 << 28) /**< normal operation */
101409 +#define MxMR_OP_WA (1 << 28) /**< write array */
101410 +#define MxMR_OP_RA (2 << 28) /**< read array */
101411 +#define MxMR_OP_RP (3 << 28) /**< run pattern */
101412 +#define MxMR_MAD 0x3f /**< machine address */
101413 + __be32 mbmr; /**< UPMB Mode Register */
101414 + __be32 mcmr; /**< UPMC Mode Register */
101415 + u8 res2[0x8];
101416 + __be32 mrtpr; /**< Memory Refresh Timer Prescaler Register */
101417 + __be32 mdr; /**< UPM Data Register */
101418 + u8 res3[0x4];
101419 + __be32 lsor; /**< Special Operation Initiation Register */
101420 + __be32 lsdmr; /**< SDRAM Mode Register */
101421 + u8 res4[0x8];
101422 + __be32 lurt; /**< UPM Refresh Timer */
101423 + __be32 lsrt; /**< SDRAM Refresh Timer */
101424 + u8 res5[0x8];
101425 + __be32 ltesr; /**< Transfer Error Status Register */
101426 +#define LTESR_BM 0x80000000
101427 +#define LTESR_FCT 0x40000000
101428 +#define LTESR_PAR 0x20000000
101429 +#define LTESR_WP 0x04000000
101430 +#define LTESR_ATMW 0x00800000
101431 +#define LTESR_ATMR 0x00400000
101432 +#define LTESR_CS 0x00080000
101433 +#define LTESR_CC 0x00000001
101434 +#define LTESR_NAND_MASK (LTESR_FCT | LTESR_PAR | LTESR_CC)
101435 + __be32 ltedr; /**< Transfer Error Disable Register */
101436 + __be32 lteir; /**< Transfer Error Interrupt Register */
101437 + __be32 lteatr; /**< Transfer Error Attributes Register */
101438 + __be32 ltear; /**< Transfer Error Address Register */
101439 + u8 res6[0xC];
101440 + __be32 lbcr; /**< Configuration Register */
101441 +#define LBCR_LDIS 0x80000000
101442 +#define LBCR_LDIS_SHIFT 31
101443 +#define LBCR_BCTLC 0x00C00000
101444 +#define LBCR_BCTLC_SHIFT 22
101445 +#define LBCR_AHD 0x00200000
101446 +#define LBCR_LPBSE 0x00020000
101447 +#define LBCR_LPBSE_SHIFT 17
101448 +#define LBCR_EPAR 0x00010000
101449 +#define LBCR_EPAR_SHIFT 16
101450 +#define LBCR_BMT 0x0000FF00
101451 +#define LBCR_BMT_SHIFT 8
101452 +#define LBCR_INIT 0x00040000
101453 + __be32 lcrr; /**< Clock Ratio Register */
101454 +#define LCRR_DBYP 0x80000000
101455 +#define LCRR_DBYP_SHIFT 31
101456 +#define LCRR_BUFCMDC 0x30000000
101457 +#define LCRR_BUFCMDC_SHIFT 28
101458 +#define LCRR_ECL 0x03000000
101459 +#define LCRR_ECL_SHIFT 24
101460 +#define LCRR_EADC 0x00030000
101461 +#define LCRR_EADC_SHIFT 16
101462 +#define LCRR_CLKDIV 0x0000000F
101463 +#define LCRR_CLKDIV_SHIFT 0
101464 + u8 res7[0x8];
101465 + __be32 fmr; /**< Flash Mode Register */
101466 +#define FMR_CWTO 0x0000F000
101467 +#define FMR_CWTO_SHIFT 12
101468 +#define FMR_BOOT 0x00000800
101469 +#define FMR_ECCM 0x00000100
101470 +#define FMR_AL 0x00000030
101471 +#define FMR_AL_SHIFT 4
101472 +#define FMR_OP 0x00000003
101473 +#define FMR_OP_SHIFT 0
101474 + __be32 fir; /**< Flash Instruction Register */
101475 +#define FIR_OP0 0xF0000000
101476 +#define FIR_OP0_SHIFT 28
101477 +#define FIR_OP1 0x0F000000
101478 +#define FIR_OP1_SHIFT 24
101479 +#define FIR_OP2 0x00F00000
101480 +#define FIR_OP2_SHIFT 20
101481 +#define FIR_OP3 0x000F0000
101482 +#define FIR_OP3_SHIFT 16
101483 +#define FIR_OP4 0x0000F000
101484 +#define FIR_OP4_SHIFT 12
101485 +#define FIR_OP5 0x00000F00
101486 +#define FIR_OP5_SHIFT 8
101487 +#define FIR_OP6 0x000000F0
101488 +#define FIR_OP6_SHIFT 4
101489 +#define FIR_OP7 0x0000000F
101490 +#define FIR_OP7_SHIFT 0
101491 +#define FIR_OP_NOP 0x0 /* No operation and end of sequence */
101492 +#define FIR_OP_CA 0x1 /* Issue current column address */
101493 +#define FIR_OP_PA 0x2 /* Issue current block+page address */
101494 +#define FIR_OP_UA 0x3 /* Issue user defined address */
101495 +#define FIR_OP_CM0 0x4 /* Issue command from FCR[CMD0] */
101496 +#define FIR_OP_CM1 0x5 /* Issue command from FCR[CMD1] */
101497 +#define FIR_OP_CM2 0x6 /* Issue command from FCR[CMD2] */
101498 +#define FIR_OP_CM3 0x7 /* Issue command from FCR[CMD3] */
101499 +#define FIR_OP_WB 0x8 /* Write FBCR bytes from FCM buffer */
101500 +#define FIR_OP_WS 0x9 /* Write 1 or 2 bytes from MDR[AS] */
101501 +#define FIR_OP_RB 0xA /* Read FBCR bytes to FCM buffer */
101502 +#define FIR_OP_RS 0xB /* Read 1 or 2 bytes to MDR[AS] */
101503 +#define FIR_OP_CW0 0xC /* Wait then issue FCR[CMD0] */
101504 +#define FIR_OP_CW1 0xD /* Wait then issue FCR[CMD1] */
101505 +#define FIR_OP_RBW 0xE /* Wait then read FBCR bytes */
101506 +#define FIR_OP_RSW 0xE /* Wait then read 1 or 2 bytes */
101507 + __be32 fcr; /**< Flash Command Register */
101508 +#define FCR_CMD0 0xFF000000
101509 +#define FCR_CMD0_SHIFT 24
101510 +#define FCR_CMD1 0x00FF0000
101511 +#define FCR_CMD1_SHIFT 16
101512 +#define FCR_CMD2 0x0000FF00
101513 +#define FCR_CMD2_SHIFT 8
101514 +#define FCR_CMD3 0x000000FF
101515 +#define FCR_CMD3_SHIFT 0
101516 + __be32 fbar; /**< Flash Block Address Register */
101517 +#define FBAR_BLK 0x00FFFFFF
101518 + __be32 fpar; /**< Flash Page Address Register */
101519 +#define FPAR_SP_PI 0x00007C00
101520 +#define FPAR_SP_PI_SHIFT 10
101521 +#define FPAR_SP_MS 0x00000200
101522 +#define FPAR_SP_CI 0x000001FF
101523 +#define FPAR_SP_CI_SHIFT 0
101524 +#define FPAR_LP_PI 0x0003F000
101525 +#define FPAR_LP_PI_SHIFT 12
101526 +#define FPAR_LP_MS 0x00000800
101527 +#define FPAR_LP_CI 0x000007FF
101528 +#define FPAR_LP_CI_SHIFT 0
101529 + __be32 fbcr; /**< Flash Byte Count Register */
101530 +#define FBCR_BC 0x00000FFF
101531 + u8 res11[0x8];
101532 + u8 res8[0xF00];
101533 +};
101534 +
101535 +extern struct fsl_lbc_regs __iomem *fsl_lbc_regs;
101536 +extern spinlock_t fsl_lbc_lock;
101537 +
101538 +/*
101539 + * FSL UPM routines
101540 + */
101541 +struct fsl_upm {
101542 + __be32 __iomem *mxmr;
101543 + int width;
101544 +};
101545 +
101546 +extern int fsl_lbc_find(phys_addr_t addr_base);
101547 +extern int fsl_upm_find(phys_addr_t addr_base, struct fsl_upm *upm);
101548 +
101549 +/**
101550 + * fsl_upm_start_pattern - start UPM patterns execution
101551 + * @upm: pointer to the fsl_upm structure obtained via fsl_upm_find
101552 + * @pat_offset: UPM pattern offset for the command to be executed
101553 + *
101554 + * This routine programmes UPM so the next memory access that hits an UPM
101555 + * will trigger pattern execution, starting at pat_offset.
101556 + */
101557 +static inline void fsl_upm_start_pattern(struct fsl_upm *upm, u8 pat_offset)
101558 +{
101559 + clrsetbits_be32(upm->mxmr, MxMR_MAD, MxMR_OP_RP | pat_offset);
101560 +}
101561 +
101562 +/**
101563 + * fsl_upm_end_pattern - end UPM patterns execution
101564 + * @upm: pointer to the fsl_upm structure obtained via fsl_upm_find
101565 + *
101566 + * This routine reverts UPM to normal operation mode.
101567 + */
101568 +static inline void fsl_upm_end_pattern(struct fsl_upm *upm)
101569 +{
101570 + clrbits32(upm->mxmr, MxMR_OP_RP);
101571 +
101572 + while (in_be32(upm->mxmr) & MxMR_OP_RP)
101573 + cpu_relax();
101574 +}
101575 +
101576 +/**
101577 + * fsl_upm_run_pattern - actually run an UPM pattern
101578 + * @upm: pointer to the fsl_upm structure obtained via fsl_upm_find
101579 + * @io_base: remapped pointer to where memory access should happen
101580 + * @mar: MAR register content during pattern execution
101581 + *
101582 + * This function triggers dummy write to the memory specified by the io_base,
101583 + * thus UPM pattern actually executed. Note that mar usage depends on the
101584 + * pre-programmed AMX bits in the UPM RAM.
101585 + */
101586 +static inline int fsl_upm_run_pattern(struct fsl_upm *upm,
101587 + void __iomem *io_base, u32 mar)
101588 +{
101589 + int ret = 0;
101590 + unsigned long flags;
101591 +
101592 + spin_lock_irqsave(&fsl_lbc_lock, flags);
101593 +
101594 + out_be32(&fsl_lbc_regs->mar, mar << (32 - upm->width));
101595 +
101596 + switch (upm->width) {
101597 + case 8:
101598 + out_8(io_base, 0x0);
101599 + break;
101600 + case 16:
101601 + out_be16(io_base, 0x0);
101602 + break;
101603 + case 32:
101604 + out_be32(io_base, 0x0);
101605 + break;
101606 + default:
101607 + ret = -EINVAL;
101608 + break;
101609 + }
101610 +
101611 + spin_unlock_irqrestore(&fsl_lbc_lock, flags);
101612 +
101613 + return ret;
101614 +}
101615 +
101616 +#endif /* __ASM_FSL_LBC_H */
101617 Index: linux-2.6.25.4/include/asm-powerpc/gpio.h
101618 ===================================================================
101619 --- /dev/null
101620 +++ linux-2.6.25.4/include/asm-powerpc/gpio.h
101621 @@ -0,0 +1,56 @@
101622 +/*
101623 + * Generic GPIO API implementation for PowerPC.
101624 + *
101625 + * Copyright (c) 2007-2008 MontaVista Software, Inc.
101626 + *
101627 + * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
101628 + *
101629 + * This program is free software; you can redistribute it and/or modify
101630 + * it under the terms of the GNU General Public License as published by
101631 + * the Free Software Foundation; either version 2 of the License, or
101632 + * (at your option) any later version.
101633 + */
101634 +
101635 +#ifndef __ASM_POWERPC_GPIO_H
101636 +#define __ASM_POWERPC_GPIO_H
101637 +
101638 +#include <linux/errno.h>
101639 +#include <asm-generic/gpio.h>
101640 +
101641 +#ifdef CONFIG_HAVE_GPIO_LIB
101642 +
101643 +/*
101644 + * We don't (yet) implement inlined/rapid versions for on-chip gpios.
101645 + * Just call gpiolib.
101646 + */
101647 +static inline int gpio_get_value(unsigned int gpio)
101648 +{
101649 + return __gpio_get_value(gpio);
101650 +}
101651 +
101652 +static inline void gpio_set_value(unsigned int gpio, int value)
101653 +{
101654 + __gpio_set_value(gpio, value);
101655 +}
101656 +
101657 +static inline int gpio_cansleep(unsigned int gpio)
101658 +{
101659 + return __gpio_cansleep(gpio);
101660 +}
101661 +
101662 +/*
101663 + * Not implemented, yet.
101664 + */
101665 +static inline int gpio_to_irq(unsigned int gpio)
101666 +{
101667 + return -ENOSYS;
101668 +}
101669 +
101670 +static inline int irq_to_gpio(unsigned int irq)
101671 +{
101672 + return -EINVAL;
101673 +}
101674 +
101675 +#endif /* CONFIG_HAVE_GPIO_LIB */
101676 +
101677 +#endif /* __ASM_POWERPC_GPIO_H */
101678 Index: linux-2.6.25.4/include/asm-powerpc/hw_irq.h
101679 ===================================================================
101680 --- linux-2.6.25.4.orig/include/asm-powerpc/hw_irq.h
101681 +++ linux-2.6.25.4/include/asm-powerpc/hw_irq.h
101682 @@ -27,7 +27,7 @@ static inline unsigned long local_get_fl
101683 return flags;
101684 }
101685
101686 -static inline unsigned long local_irq_disable(void)
101687 +static inline unsigned long raw_local_irq_disable(void)
101688 {
101689 unsigned long flags, zero;
101690
101691 @@ -39,14 +39,15 @@ static inline unsigned long local_irq_di
101692 return flags;
101693 }
101694
101695 -extern void local_irq_restore(unsigned long);
101696 +extern void raw_local_irq_restore(unsigned long);
101697 extern void iseries_handle_interrupts(void);
101698
101699 -#define local_irq_enable() local_irq_restore(1)
101700 -#define local_save_flags(flags) ((flags) = local_get_flags())
101701 -#define local_irq_save(flags) ((flags) = local_irq_disable())
101702 +#define raw_local_irq_enable() raw_local_irq_restore(1)
101703 +#define raw_local_save_flags(flags) ((flags) = local_get_flags())
101704 +#define raw_local_irq_save(flags) ((flags) = raw_local_irq_disable())
101705
101706 -#define irqs_disabled() (local_get_flags() == 0)
101707 +#define raw_irqs_disabled() (local_get_flags() == 0)
101708 +#define raw_irqs_disabled_flags(flags) ((flags) == 0)
101709
101710 #define __hard_irq_enable() __mtmsrd(mfmsr() | MSR_EE, 1)
101711 #define __hard_irq_disable() __mtmsrd(mfmsr() & ~MSR_EE, 1)
101712 Index: linux-2.6.25.4/include/asm-powerpc/immap_qe.h
101713 ===================================================================
101714 --- linux-2.6.25.4.orig/include/asm-powerpc/immap_qe.h
101715 +++ linux-2.6.25.4/include/asm-powerpc/immap_qe.h
101716 @@ -20,6 +20,7 @@
101717 #ifdef __KERNEL__
101718
101719 #include <linux/kernel.h>
101720 +#include <asm/io.h>
101721
101722 #define QE_IMMAP_SIZE (1024 * 1024) /* 1MB from 1MB+IMMR */
101723
101724 @@ -468,7 +469,7 @@ struct qe_immap {
101725 u8 res18[0xC0000]; /* 0x140000 - 0x200000 */
101726 } __attribute__ ((packed));
101727
101728 -extern struct qe_immap *qe_immr;
101729 +extern struct qe_immap __iomem *qe_immr;
101730 extern phys_addr_t get_qe_base(void);
101731
101732 static inline unsigned long immrbar_virt_to_phys(void *address)
101733 Index: linux-2.6.25.4/include/asm-powerpc/irqflags.h
101734 ===================================================================
101735 --- linux-2.6.25.4.orig/include/asm-powerpc/irqflags.h
101736 +++ linux-2.6.25.4/include/asm-powerpc/irqflags.h
101737 @@ -2,30 +2,43 @@
101738 * include/asm-powerpc/irqflags.h
101739 *
101740 * IRQ flags handling
101741 - *
101742 - * This file gets included from lowlevel asm headers too, to provide
101743 - * wrapped versions of the local_irq_*() APIs, based on the
101744 - * raw_local_irq_*() macros from the lowlevel headers.
101745 */
101746 #ifndef _ASM_IRQFLAGS_H
101747 #define _ASM_IRQFLAGS_H
101748
101749 +#ifndef __ASSEMBLY__
101750 /*
101751 * Get definitions for raw_local_save_flags(x), etc.
101752 */
101753 #include <asm-powerpc/hw_irq.h>
101754
101755 +#else
101756 +#ifdef CONFIG_TRACE_IRQFLAGS
101757 /*
101758 - * Do the CPU's IRQ-state tracing from assembly code. We call a
101759 - * C function, so save all the C-clobbered registers:
101760 + * Most of the CPU's IRQ-state tracing is done from assembly code; we
101761 + * have to call a C function so call a wrapper that saves all the
101762 + * C-clobbered registers.
101763 */
101764 -#ifdef CONFIG_TRACE_IRQFLAGS
101765 -
101766 -#error No support on PowerPC yet for CONFIG_TRACE_IRQFLAGS
101767 -
101768 +#define TRACE_ENABLE_INTS bl .trace_hardirqs_on
101769 +#define TRACE_DISABLE_INTS bl .trace_hardirqs_off
101770 +#define TRACE_AND_RESTORE_IRQ_PARTIAL(en,skip) \
101771 + cmpdi en, 0; \
101772 + bne 95f; \
101773 + stb en,PACASOFTIRQEN(r13); \
101774 + bl .trace_hardirqs_off; \
101775 + b skip; \
101776 +95: bl .trace_hardirqs_on; \
101777 + li en,1;
101778 +#define TRACE_AND_RESTORE_IRQ(en) \
101779 + TRACE_AND_RESTORE_IRQ_PARTIAL(en,96f); \
101780 +96: stb en,PACASOFTIRQEN(r13)
101781 #else
101782 -# define TRACE_IRQS_ON
101783 -# define TRACE_IRQS_OFF
101784 +#define TRACE_ENABLE_INTS
101785 +#define TRACE_DISABLE_INTS
101786 +#define TRACE_AND_RESTORE_IRQ_PARTIAL(en,skip)
101787 +#define TRACE_AND_RESTORE_IRQ(en) \
101788 + stb en,PACASOFTIRQEN(r13)
101789 +#endif
101790 #endif
101791
101792 #endif
101793 Index: linux-2.6.25.4/include/asm-powerpc/iseries/alpaca.h
101794 ===================================================================
101795 --- /dev/null
101796 +++ linux-2.6.25.4/include/asm-powerpc/iseries/alpaca.h
101797 @@ -0,0 +1,31 @@
101798 +/*
101799 + * Copyright © 2008 Stephen Rothwell IBM Corporation
101800 + *
101801 + * This program is free software; you can redistribute it and/or modify
101802 + * it under the terms of the GNU General Public License as published by
101803 + * the Free Software Foundation; either version 2 of the License, or
101804 + * (at your option) any later version.
101805 + *
101806 + * This program is distributed in the hope that it will be useful,
101807 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
101808 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
101809 + * GNU General Public License for more details.
101810 + *
101811 + * You should have received a copy of the GNU General Public License
101812 + * along with this program; if not, write to the Free Software
101813 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
101814 + */
101815 +#ifndef _ASM_POWERPC_ISERIES_ALPACA_H
101816 +#define _ASM_POWERPC_ISERIES_ALPACA_H
101817 +
101818 +/*
101819 + * This is the part of the paca that the iSeries hypervisor
101820 + * needs to be statically initialised. Immediately after boot
101821 + * we switch to the normal Linux paca.
101822 + */
101823 +struct alpaca {
101824 + struct lppaca *lppaca_ptr; /* Pointer to LpPaca for PLIC */
101825 + const void *reg_save_ptr; /* Pointer to LpRegSave for PLIC */
101826 +};
101827 +
101828 +#endif /* _ASM_POWERPC_ISERIES_ALPACA_H */
101829 Index: linux-2.6.25.4/include/asm-powerpc/iseries/it_lp_reg_save.h
101830 ===================================================================
101831 --- linux-2.6.25.4.orig/include/asm-powerpc/iseries/it_lp_reg_save.h
101832 +++ /dev/null
101833 @@ -1,85 +0,0 @@
101834 -/*
101835 - * Copyright (C) 2001 Mike Corrigan IBM Corporation
101836 - *
101837 - * This program is free software; you can redistribute it and/or modify
101838 - * it under the terms of the GNU General Public License as published by
101839 - * the Free Software Foundation; either version 2 of the License, or
101840 - * (at your option) any later version.
101841 - *
101842 - * This program is distributed in the hope that it will be useful,
101843 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
101844 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
101845 - * GNU General Public License for more details.
101846 - *
101847 - * You should have received a copy of the GNU General Public License
101848 - * along with this program; if not, write to the Free Software
101849 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
101850 - */
101851 -#ifndef _ASM_POWERPC_ISERIES_IT_LP_REG_SAVE_H
101852 -#define _ASM_POWERPC_ISERIES_IT_LP_REG_SAVE_H
101853 -
101854 -/*
101855 - * This control block contains the data that is shared between PLIC
101856 - * and the OS
101857 - */
101858 -
101859 -struct ItLpRegSave {
101860 - u32 xDesc; // Eye catcher "LpRS" ebcdic 000-003
101861 - u16 xSize; // Size of this class 004-005
101862 - u8 xInUse; // Area is live 006-007
101863 - u8 xRsvd1[9]; // Reserved 007-00F
101864 -
101865 - u8 xFixedRegSave[352]; // Fixed Register Save Area 010-16F
101866 - u32 xCTRL; // Control Register 170-173
101867 - u32 xDEC; // Decrementer 174-177
101868 - u32 xFPSCR; // FP Status and Control Reg 178-17B
101869 - u32 xPVR; // Processor Version Number 17C-17F
101870 -
101871 - u64 xMMCR0; // Monitor Mode Control Reg 0 180-187
101872 - u32 xPMC1; // Perf Monitor Counter 1 188-18B
101873 - u32 xPMC2; // Perf Monitor Counter 2 18C-18F
101874 - u32 xPMC3; // Perf Monitor Counter 3 190-193
101875 - u32 xPMC4; // Perf Monitor Counter 4 194-197
101876 - u32 xPIR; // Processor ID Reg 198-19B
101877 -
101878 - u32 xMMCR1; // Monitor Mode Control Reg 1 19C-19F
101879 - u32 xMMCRA; // Monitor Mode Control Reg A 1A0-1A3
101880 - u32 xPMC5; // Perf Monitor Counter 5 1A4-1A7
101881 - u32 xPMC6; // Perf Monitor Counter 6 1A8-1AB
101882 - u32 xPMC7; // Perf Monitor Counter 7 1AC-1AF
101883 - u32 xPMC8; // Perf Monitor Counter 8 1B0-1B3
101884 - u32 xTSC; // Thread Switch Control 1B4-1B7
101885 - u32 xTST; // Thread Switch Timeout 1B8-1BB
101886 - u32 xRsvd; // Reserved 1BC-1BF
101887 -
101888 - u64 xACCR; // Address Compare Control Reg 1C0-1C7
101889 - u64 xIMR; // Instruction Match Register 1C8-1CF
101890 - u64 xSDR1; // Storage Description Reg 1 1D0-1D7
101891 - u64 xSPRG0; // Special Purpose Reg General0 1D8-1DF
101892 - u64 xSPRG1; // Special Purpose Reg General1 1E0-1E7
101893 - u64 xSPRG2; // Special Purpose Reg General2 1E8-1EF
101894 - u64 xSPRG3; // Special Purpose Reg General3 1F0-1F7
101895 - u64 xTB; // Time Base Register 1F8-1FF
101896 -
101897 - u64 xFPR[32]; // Floating Point Registers 200-2FF
101898 -
101899 - u64 xMSR; // Machine State Register 300-307
101900 - u64 xNIA; // Next Instruction Address 308-30F
101901 -
101902 - u64 xDABR; // Data Address Breakpoint Reg 310-317
101903 - u64 xIABR; // Inst Address Breakpoint Reg 318-31F
101904 -
101905 - u64 xHID0; // HW Implementation Dependent0 320-327
101906 -
101907 - u64 xHID4; // HW Implementation Dependent4 328-32F
101908 - u64 xSCOMd; // SCON Data Reg (SPRG4) 330-337
101909 - u64 xSCOMc; // SCON Command Reg (SPRG5) 338-33F
101910 - u64 xSDAR; // Sample Data Address Register 340-347
101911 - u64 xSIAR; // Sample Inst Address Register 348-34F
101912 -
101913 - u8 xRsvd3[176]; // Reserved 350-3FF
101914 -};
101915 -
101916 -extern struct ItLpRegSave iseries_reg_save[];
101917 -
101918 -#endif /* _ASM_POWERPC_ISERIES_IT_LP_REG_SAVE_H */
101919 Index: linux-2.6.25.4/include/asm-powerpc/lmb.h
101920 ===================================================================
101921 --- linux-2.6.25.4.orig/include/asm-powerpc/lmb.h
101922 +++ linux-2.6.25.4/include/asm-powerpc/lmb.h
101923 @@ -1,81 +1,15 @@
101924 #ifndef _ASM_POWERPC_LMB_H
101925 #define _ASM_POWERPC_LMB_H
101926 -#ifdef __KERNEL__
101927
101928 -/*
101929 - * Definitions for talking to the Open Firmware PROM on
101930 - * Power Macintosh computers.
101931 - *
101932 - * Copyright (C) 2001 Peter Bergner, IBM Corp.
101933 - *
101934 - * This program is free software; you can redistribute it and/or
101935 - * modify it under the terms of the GNU General Public License
101936 - * as published by the Free Software Foundation; either version
101937 - * 2 of the License, or (at your option) any later version.
101938 - */
101939 +#include <asm/udbg.h>
101940
101941 -#include <linux/init.h>
101942 -#include <asm/prom.h>
101943 +#define LMB_DBG(fmt...) udbg_printf(fmt)
101944
101945 -#define MAX_LMB_REGIONS 128
101946 +#ifdef CONFIG_PPC32
101947 +extern phys_addr_t lowmem_end_addr;
101948 +#define LMB_REAL_LIMIT lowmem_end_addr
101949 +#else
101950 +#define LMB_REAL_LIMIT 0
101951 +#endif
101952
101953 -struct lmb_property {
101954 - unsigned long base;
101955 - unsigned long size;
101956 -};
101957 -
101958 -struct lmb_region {
101959 - unsigned long cnt;
101960 - unsigned long size;
101961 - struct lmb_property region[MAX_LMB_REGIONS+1];
101962 -};
101963 -
101964 -struct lmb {
101965 - unsigned long debug;
101966 - unsigned long rmo_size;
101967 - struct lmb_region memory;
101968 - struct lmb_region reserved;
101969 -};
101970 -
101971 -extern struct lmb lmb;
101972 -
101973 -extern void __init lmb_init(void);
101974 -extern void __init lmb_analyze(void);
101975 -extern long __init lmb_add(unsigned long base, unsigned long size);
101976 -extern long __init lmb_reserve(unsigned long base, unsigned long size);
101977 -extern unsigned long __init lmb_alloc(unsigned long size, unsigned long align);
101978 -extern unsigned long __init lmb_alloc_base(unsigned long size,
101979 - unsigned long align, unsigned long max_addr);
101980 -extern unsigned long __init __lmb_alloc_base(unsigned long size,
101981 - unsigned long align, unsigned long max_addr);
101982 -extern unsigned long __init lmb_phys_mem_size(void);
101983 -extern unsigned long __init lmb_end_of_DRAM(void);
101984 -extern void __init lmb_enforce_memory_limit(unsigned long memory_limit);
101985 -extern int __init lmb_is_reserved(unsigned long addr);
101986 -
101987 -extern void lmb_dump_all(void);
101988 -
101989 -static inline unsigned long
101990 -lmb_size_bytes(struct lmb_region *type, unsigned long region_nr)
101991 -{
101992 - return type->region[region_nr].size;
101993 -}
101994 -static inline unsigned long
101995 -lmb_size_pages(struct lmb_region *type, unsigned long region_nr)
101996 -{
101997 - return lmb_size_bytes(type, region_nr) >> PAGE_SHIFT;
101998 -}
101999 -static inline unsigned long
102000 -lmb_start_pfn(struct lmb_region *type, unsigned long region_nr)
102001 -{
102002 - return type->region[region_nr].base >> PAGE_SHIFT;
102003 -}
102004 -static inline unsigned long
102005 -lmb_end_pfn(struct lmb_region *type, unsigned long region_nr)
102006 -{
102007 - return lmb_start_pfn(type, region_nr) +
102008 - lmb_size_pages(type, region_nr);
102009 -}
102010 -
102011 -#endif /* __KERNEL__ */
102012 #endif /* _ASM_POWERPC_LMB_H */
102013 Index: linux-2.6.25.4/include/asm-powerpc/machdep.h
102014 ===================================================================
102015 --- linux-2.6.25.4.orig/include/asm-powerpc/machdep.h
102016 +++ linux-2.6.25.4/include/asm-powerpc/machdep.h
102017 @@ -68,6 +68,8 @@ struct machdep_calls {
102018 unsigned long vflags,
102019 int psize, int ssize);
102020 long (*hpte_remove)(unsigned long hpte_group);
102021 + void (*hpte_removebolted)(unsigned long ea,
102022 + int psize, int ssize);
102023 void (*flush_hash_range)(unsigned long number, int local);
102024
102025 /* special for kexec, to be called in real mode, linar mapping is
102026 @@ -196,9 +198,6 @@ struct machdep_calls {
102027 May be NULL. */
102028 void (*init)(void);
102029
102030 - void (*setup_io_mappings)(void);
102031 -
102032 - void (*early_serial_map)(void);
102033 void (*kgdb_map_scc)(void);
102034
102035 /*
102036 Index: linux-2.6.25.4/include/asm-powerpc/macio.h
102037 ===================================================================
102038 --- linux-2.6.25.4.orig/include/asm-powerpc/macio.h
102039 +++ linux-2.6.25.4/include/asm-powerpc/macio.h
102040 @@ -2,7 +2,7 @@
102041 #define __MACIO_ASIC_H__
102042 #ifdef __KERNEL__
102043
102044 -#include <asm/of_device.h>
102045 +#include <linux/of_device.h>
102046
102047 extern struct bus_type macio_bus_type;
102048
102049 Index: linux-2.6.25.4/include/asm-powerpc/mmu-40x.h
102050 ===================================================================
102051 --- linux-2.6.25.4.orig/include/asm-powerpc/mmu-40x.h
102052 +++ linux-2.6.25.4/include/asm-powerpc/mmu-40x.h
102053 @@ -53,8 +53,6 @@
102054
102055 #ifndef __ASSEMBLY__
102056
102057 -typedef unsigned long phys_addr_t;
102058 -
102059 typedef struct {
102060 unsigned long id;
102061 unsigned long vdso_base;
102062 Index: linux-2.6.25.4/include/asm-powerpc/mmu-44x.h
102063 ===================================================================
102064 --- linux-2.6.25.4.orig/include/asm-powerpc/mmu-44x.h
102065 +++ linux-2.6.25.4/include/asm-powerpc/mmu-44x.h
102066 @@ -53,8 +53,6 @@
102067
102068 #ifndef __ASSEMBLY__
102069
102070 -typedef unsigned long long phys_addr_t;
102071 -
102072 typedef struct {
102073 unsigned long id;
102074 unsigned long vdso_base;
102075 Index: linux-2.6.25.4/include/asm-powerpc/mmu-8xx.h
102076 ===================================================================
102077 --- linux-2.6.25.4.orig/include/asm-powerpc/mmu-8xx.h
102078 +++ linux-2.6.25.4/include/asm-powerpc/mmu-8xx.h
102079 @@ -136,8 +136,6 @@
102080 #define SPRN_M_TW 799
102081
102082 #ifndef __ASSEMBLY__
102083 -typedef unsigned long phys_addr_t;
102084 -
102085 typedef struct {
102086 unsigned long id;
102087 unsigned long vdso_base;
102088 Index: linux-2.6.25.4/include/asm-powerpc/mmu-fsl-booke.h
102089 ===================================================================
102090 --- linux-2.6.25.4.orig/include/asm-powerpc/mmu-fsl-booke.h
102091 +++ linux-2.6.25.4/include/asm-powerpc/mmu-fsl-booke.h
102092 @@ -73,12 +73,6 @@
102093
102094 #ifndef __ASSEMBLY__
102095
102096 -#ifndef CONFIG_PHYS_64BIT
102097 -typedef unsigned long phys_addr_t;
102098 -#else
102099 -typedef unsigned long long phys_addr_t;
102100 -#endif
102101 -
102102 typedef struct {
102103 unsigned long id;
102104 unsigned long vdso_base;
102105 Index: linux-2.6.25.4/include/asm-powerpc/mmu-hash32.h
102106 ===================================================================
102107 --- linux-2.6.25.4.orig/include/asm-powerpc/mmu-hash32.h
102108 +++ linux-2.6.25.4/include/asm-powerpc/mmu-hash32.h
102109 @@ -84,8 +84,6 @@ typedef struct {
102110 unsigned long vdso_base;
102111 } mm_context_t;
102112
102113 -typedef unsigned long phys_addr_t;
102114 -
102115 #endif /* !__ASSEMBLY__ */
102116
102117 #endif /* _ASM_POWERPC_MMU_HASH32_H_ */
102118 Index: linux-2.6.25.4/include/asm-powerpc/mmu-hash64.h
102119 ===================================================================
102120 --- linux-2.6.25.4.orig/include/asm-powerpc/mmu-hash64.h
102121 +++ linux-2.6.25.4/include/asm-powerpc/mmu-hash64.h
102122 @@ -469,9 +469,6 @@ static inline unsigned long get_vsid(uns
102123 VSID_MODULUS_256M)
102124 #define KERNEL_VSID(ea) VSID_SCRAMBLE(GET_ESID(ea))
102125
102126 -/* Physical address used by some IO functions */
102127 -typedef unsigned long phys_addr_t;
102128 -
102129 #endif /* __ASSEMBLY__ */
102130
102131 #endif /* _ASM_POWERPC_MMU_HASH64_H_ */
102132 Index: linux-2.6.25.4/include/asm-powerpc/paca.h
102133 ===================================================================
102134 --- linux-2.6.25.4.orig/include/asm-powerpc/paca.h
102135 +++ linux-2.6.25.4/include/asm-powerpc/paca.h
102136 @@ -42,10 +42,7 @@ struct task_struct;
102137 * Defines the layout of the paca.
102138 *
102139 * This structure is not directly accessed by firmware or the service
102140 - * processor except for the first two pointers that point to the
102141 - * lppaca area and the ItLpRegSave area for this CPU. The lppaca
102142 - * object is currently contained within the PACA but it doesn't need
102143 - * to be.
102144 + * processor.
102145 */
102146 struct paca_struct {
102147 /*
102148 @@ -55,14 +52,7 @@ struct paca_struct {
102149 * avoid cacheline bouncing.
102150 */
102151
102152 - /*
102153 - * MAGIC: These first two pointers can't be moved - they're
102154 - * accessed by the firmware
102155 - */
102156 struct lppaca *lppaca_ptr; /* Pointer to LpPaca for PLIC */
102157 -#ifdef CONFIG_PPC_ISERIES
102158 - void *reg_save_ptr; /* Pointer to LpRegSave for PLIC */
102159 -#endif /* CONFIG_PPC_ISERIES */
102160
102161 /*
102162 * MAGIC: the spinlock functions in arch/powerpc/lib/locks.c
102163 Index: linux-2.6.25.4/include/asm-powerpc/page.h
102164 ===================================================================
102165 --- linux-2.6.25.4.orig/include/asm-powerpc/page.h
102166 +++ linux-2.6.25.4/include/asm-powerpc/page.h
102167 @@ -53,6 +53,7 @@
102168
102169 #define PAGE_OFFSET ASM_CONST(CONFIG_KERNEL_START)
102170 #define KERNELBASE (PAGE_OFFSET + PHYSICAL_START)
102171 +#define LOAD_OFFSET PAGE_OFFSET
102172
102173 #ifdef CONFIG_FLATMEM
102174 #define pfn_valid(pfn) ((pfn) < max_mapnr)
102175 Index: linux-2.6.25.4/include/asm-powerpc/page_32.h
102176 ===================================================================
102177 --- linux-2.6.25.4.orig/include/asm-powerpc/page_32.h
102178 +++ linux-2.6.25.4/include/asm-powerpc/page_32.h
102179 @@ -3,8 +3,6 @@
102180
102181 #define VM_DATA_DEFAULT_FLAGS VM_DATA_DEFAULT_FLAGS32
102182
102183 -#define PPC_MEMSTART 0
102184 -
102185 #ifdef CONFIG_NOT_COHERENT_CACHE
102186 #define ARCH_KMALLOC_MINALIGN L1_CACHE_BYTES
102187 #endif
102188 Index: linux-2.6.25.4/include/asm-powerpc/pasemi_dma.h
102189 ===================================================================
102190 --- linux-2.6.25.4.orig/include/asm-powerpc/pasemi_dma.h
102191 +++ linux-2.6.25.4/include/asm-powerpc/pasemi_dma.h
102192 @@ -1,5 +1,5 @@
102193 /*
102194 - * Copyright (C) 2006 PA Semi, Inc
102195 + * Copyright (C) 2006-2008 PA Semi, Inc
102196 *
102197 * Hardware register layout and descriptor formats for the on-board
102198 * DMA engine on PA Semi PWRficient. Used by ethernet, function and security
102199 @@ -40,6 +40,11 @@ enum {
102200 PAS_DMA_COM_TXSTA = 0x104, /* Transmit Status Register */
102201 PAS_DMA_COM_RXCMD = 0x108, /* Receive Command Register */
102202 PAS_DMA_COM_RXSTA = 0x10c, /* Receive Status Register */
102203 + PAS_DMA_COM_CFG = 0x114, /* Common config reg */
102204 + PAS_DMA_TXF_SFLG0 = 0x140, /* Set flags */
102205 + PAS_DMA_TXF_SFLG1 = 0x144, /* Set flags */
102206 + PAS_DMA_TXF_CFLG0 = 0x148, /* Set flags */
102207 + PAS_DMA_TXF_CFLG1 = 0x14c, /* Set flags */
102208 };
102209
102210
102211 @@ -123,11 +128,16 @@ enum {
102212 #define PAS_DMA_TXCHAN_TCMDSTA_DA 0x00000100
102213 #define PAS_DMA_TXCHAN_CFG(c) (0x304+(c)*_PAS_DMA_TXCHAN_STRIDE)
102214 #define PAS_DMA_TXCHAN_CFG_TY_IFACE 0x00000000 /* Type = interface */
102215 +#define PAS_DMA_TXCHAN_CFG_TY_COPY 0x00000001 /* Type = copy only */
102216 +#define PAS_DMA_TXCHAN_CFG_TY_FUNC 0x00000002 /* Type = function */
102217 +#define PAS_DMA_TXCHAN_CFG_TY_XOR 0x00000003 /* Type = xor only */
102218 #define PAS_DMA_TXCHAN_CFG_TATTR_M 0x0000003c
102219 #define PAS_DMA_TXCHAN_CFG_TATTR_S 2
102220 #define PAS_DMA_TXCHAN_CFG_TATTR(x) (((x) << PAS_DMA_TXCHAN_CFG_TATTR_S) & \
102221 PAS_DMA_TXCHAN_CFG_TATTR_M)
102222 -#define PAS_DMA_TXCHAN_CFG_WT_M 0x000001c0
102223 +#define PAS_DMA_TXCHAN_CFG_LPDQ 0x00000800
102224 +#define PAS_DMA_TXCHAN_CFG_LPSQ 0x00000400
102225 +#define PAS_DMA_TXCHAN_CFG_WT_M 0x000003c0
102226 #define PAS_DMA_TXCHAN_CFG_WT_S 6
102227 #define PAS_DMA_TXCHAN_CFG_WT(x) (((x) << PAS_DMA_TXCHAN_CFG_WT_S) & \
102228 PAS_DMA_TXCHAN_CFG_WT_M)
102229 @@ -394,11 +404,62 @@ enum {
102230 XCT_COPY_LLEN_M)
102231 #define XCT_COPY_SE 0x0000000000000001ull
102232
102233 +/* Function descriptor fields */
102234 +#define XCT_FUN_T 0x8000000000000000ull
102235 +#define XCT_FUN_ST 0x4000000000000000ull
102236 +#define XCT_FUN_RR_M 0x3000000000000000ull
102237 +#define XCT_FUN_RR_NORES 0x0000000000000000ull
102238 +#define XCT_FUN_RR_8BRES 0x1000000000000000ull
102239 +#define XCT_FUN_RR_24BRES 0x2000000000000000ull
102240 +#define XCT_FUN_RR_40BRES 0x3000000000000000ull
102241 +#define XCT_FUN_I 0x0800000000000000ull
102242 +#define XCT_FUN_O 0x0400000000000000ull
102243 +#define XCT_FUN_E 0x0200000000000000ull
102244 +#define XCT_FUN_FUN_M 0x01c0000000000000ull
102245 +#define XCT_FUN_FUN_S 54
102246 +#define XCT_FUN_FUN(x) ((((long)(x)) << XCT_FUN_FUN_S) & XCT_FUN_FUN_M)
102247 +#define XCT_FUN_CRM_M 0x0038000000000000ull
102248 +#define XCT_FUN_CRM_NOP 0x0000000000000000ull
102249 +#define XCT_FUN_CRM_SIG 0x0008000000000000ull
102250 +#define XCT_FUN_LLEN_M 0x0007ffff00000000ull
102251 +#define XCT_FUN_LLEN_S 32
102252 +#define XCT_FUN_LLEN(x) ((((long)(x)) << XCT_FUN_LLEN_S) & XCT_FUN_LLEN_M)
102253 +#define XCT_FUN_SHL_M 0x00000000f8000000ull
102254 +#define XCT_FUN_SHL_S 27
102255 +#define XCT_FUN_SHL(x) ((((long)(x)) << XCT_FUN_SHL_S) & XCT_FUN_SHL_M)
102256 +#define XCT_FUN_CHL_M 0x0000000007c00000ull
102257 +#define XCT_FUN_HSZ_M 0x00000000003c0000ull
102258 +#define XCT_FUN_ALG_M 0x0000000000038000ull
102259 +#define XCT_FUN_HP 0x0000000000004000ull
102260 +#define XCT_FUN_BCM_M 0x0000000000003800ull
102261 +#define XCT_FUN_BCP_M 0x0000000000000600ull
102262 +#define XCT_FUN_SIG_M 0x00000000000001f0ull
102263 +#define XCT_FUN_SIG_TCP4 0x0000000000000140ull
102264 +#define XCT_FUN_SIG_TCP6 0x0000000000000150ull
102265 +#define XCT_FUN_SIG_UDP4 0x0000000000000160ull
102266 +#define XCT_FUN_SIG_UDP6 0x0000000000000170ull
102267 +#define XCT_FUN_A 0x0000000000000008ull
102268 +#define XCT_FUN_C 0x0000000000000004ull
102269 +#define XCT_FUN_AL2 0x0000000000000002ull
102270 +#define XCT_FUN_SE 0x0000000000000001ull
102271 +
102272 +/* Function descriptor 8byte result fields */
102273 +#define XCT_FUNRES_8B_CS_M 0x0000ffff00000000ull
102274 +#define XCT_FUNRES_8B_CS_S 32
102275 +#define XCT_FUNRES_8B_CRC_M 0x00000000ffffffffull
102276 +#define XCT_FUNRES_8B_CRC_S 0
102277 +
102278 /* Control descriptor fields */
102279 #define CTRL_CMD_T 0x8000000000000000ull
102280 #define CTRL_CMD_META_EVT 0x2000000000000000ull
102281 #define CTRL_CMD_O 0x0400000000000000ull
102282 -#define CTRL_CMD_REG_M 0x000000000000000full
102283 +#define CTRL_CMD_ETYPE_M 0x0038000000000000ull
102284 +#define CTRL_CMD_ETYPE_EXT 0x0000000000000000ull
102285 +#define CTRL_CMD_ETYPE_WSET 0x0020000000000000ull
102286 +#define CTRL_CMD_ETYPE_WCLR 0x0028000000000000ull
102287 +#define CTRL_CMD_ETYPE_SET 0x0030000000000000ull
102288 +#define CTRL_CMD_ETYPE_CLR 0x0038000000000000ull
102289 +#define CTRL_CMD_REG_M 0x000000000000007full
102290 #define CTRL_CMD_REG_S 0
102291 #define CTRL_CMD_REG(x) ((((long)(x)) << CTRL_CMD_REG_S) & \
102292 CTRL_CMD_REG_M)
102293 @@ -461,6 +522,16 @@ extern void *pasemi_dma_alloc_buf(struct
102294 extern void pasemi_dma_free_buf(struct pasemi_dmachan *chan, int size,
102295 dma_addr_t *handle);
102296
102297 +/* Routines to allocate flags (events) for channel syncronization */
102298 +extern int pasemi_dma_alloc_flag(void);
102299 +extern void pasemi_dma_free_flag(int flag);
102300 +extern void pasemi_dma_set_flag(int flag);
102301 +extern void pasemi_dma_clear_flag(int flag);
102302 +
102303 +/* Routines to allocate function engines */
102304 +extern int pasemi_dma_alloc_fun(void);
102305 +extern void pasemi_dma_free_fun(int fun);
102306 +
102307 /* Initialize the library, must be called before any other functions */
102308 extern int pasemi_dma_init(void);
102309
102310 Index: linux-2.6.25.4/include/asm-powerpc/pci-bridge.h
102311 ===================================================================
102312 --- linux-2.6.25.4.orig/include/asm-powerpc/pci-bridge.h
102313 +++ linux-2.6.25.4/include/asm-powerpc/pci-bridge.h
102314 @@ -117,7 +117,7 @@ struct pci_controller {
102315
102316 #ifndef CONFIG_PPC64
102317
102318 -static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)
102319 +static inline struct pci_controller *pci_bus_to_host(const struct pci_bus *bus)
102320 {
102321 return bus->sysdata;
102322 }
102323 @@ -235,7 +235,7 @@ extern void pcibios_fixup_new_pci_device
102324
102325 extern int pcibios_remove_root_bus(struct pci_controller *phb);
102326
102327 -static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)
102328 +static inline struct pci_controller *pci_bus_to_host(const struct pci_bus *bus)
102329 {
102330 struct device_node *busdn = bus->sysdata;
102331
102332 Index: linux-2.6.25.4/include/asm-powerpc/pgtable-ppc32.h
102333 ===================================================================
102334 --- linux-2.6.25.4.orig/include/asm-powerpc/pgtable-ppc32.h
102335 +++ linux-2.6.25.4/include/asm-powerpc/pgtable-ppc32.h
102336 @@ -98,9 +98,6 @@ extern int icache_44x_need_flush;
102337 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
102338 #define FIRST_USER_ADDRESS 0
102339
102340 -#define USER_PGD_PTRS (PAGE_OFFSET >> PGDIR_SHIFT)
102341 -#define KERNEL_PGD_PTRS (PTRS_PER_PGD-USER_PGD_PTRS)
102342 -
102343 #define pte_ERROR(e) \
102344 printk("%s:%d: bad pte %llx.\n", __FILE__, __LINE__, \
102345 (unsigned long long)pte_val(e))
102346 @@ -420,7 +417,8 @@ extern int icache_44x_need_flush;
102347 #define _PAGE_IO (_PAGE_KERNEL | _PAGE_NO_CACHE | _PAGE_GUARDED)
102348 #define _PAGE_RAM (_PAGE_KERNEL | _PAGE_HWEXEC)
102349
102350 -#if defined(CONFIG_KGDB) || defined(CONFIG_XMON) || defined(CONFIG_BDI_SWITCH)
102351 +#if defined(CONFIG_KGDB) || defined(CONFIG_XMON) || defined(CONFIG_BDI_SWITCH) ||\
102352 + defined(CONFIG_KPROBES)
102353 /* We want the debuggers to be able to set breakpoints anywhere, so
102354 * don't write protect the kernel text */
102355 #define _PAGE_RAM_TEXT _PAGE_RAM
102356 @@ -692,7 +690,7 @@ extern pgprot_t phys_mem_access_prot(str
102357 #define pmd_page_vaddr(pmd) \
102358 ((unsigned long) (pmd_val(pmd) & PAGE_MASK))
102359 #define pmd_page(pmd) \
102360 - (mem_map + (__pa(pmd_val(pmd)) >> PAGE_SHIFT))
102361 + pfn_to_page((__pa(pmd_val(pmd)) >> PAGE_SHIFT))
102362 #endif
102363
102364 /* to find an entry in a kernel page-table-directory */
102365 Index: linux-2.6.25.4/include/asm-powerpc/phyp_dump.h
102366 ===================================================================
102367 --- /dev/null
102368 +++ linux-2.6.25.4/include/asm-powerpc/phyp_dump.h
102369 @@ -0,0 +1,47 @@
102370 +/*
102371 + * Hypervisor-assisted dump
102372 + *
102373 + * Linas Vepstas, Manish Ahuja 2008
102374 + * Copyright 2008 IBM Corp.
102375 + *
102376 + * This program is free software; you can redistribute it and/or
102377 + * modify it under the terms of the GNU General Public License
102378 + * as published by the Free Software Foundation; either version
102379 + * 2 of the License, or (at your option) any later version.
102380 + */
102381 +
102382 +#ifndef _PPC64_PHYP_DUMP_H
102383 +#define _PPC64_PHYP_DUMP_H
102384 +
102385 +#ifdef CONFIG_PHYP_DUMP
102386 +
102387 +/* The RMR region will be saved for later dumping
102388 + * whenever the kernel crashes. Set this to 256MB. */
102389 +#define PHYP_DUMP_RMR_START 0x0
102390 +#define PHYP_DUMP_RMR_END (1UL<<28)
102391 +
102392 +struct phyp_dump {
102393 + /* Memory that is reserved during very early boot. */
102394 + unsigned long init_reserve_start;
102395 + unsigned long init_reserve_size;
102396 + /* cmd line options during boot */
102397 + unsigned long reserve_bootvar;
102398 + unsigned long phyp_dump_at_boot;
102399 + /* Check status during boot if dump supported, active & present*/
102400 + unsigned long phyp_dump_configured;
102401 + unsigned long phyp_dump_is_active;
102402 + /* store cpu & hpte size */
102403 + unsigned long cpu_state_size;
102404 + unsigned long hpte_region_size;
102405 + /* previous scratch area values */
102406 + unsigned long reserved_scratch_addr;
102407 + unsigned long reserved_scratch_size;
102408 +};
102409 +
102410 +extern struct phyp_dump *phyp_dump_info;
102411 +
102412 +int early_init_dt_scan_phyp_dump(unsigned long node,
102413 + const char *uname, int depth, void *data);
102414 +
102415 +#endif /* CONFIG_PHYP_DUMP */
102416 +#endif /* _PPC64_PHYP_DUMP_H */
102417 Index: linux-2.6.25.4/include/asm-powerpc/pmi.h
102418 ===================================================================
102419 --- linux-2.6.25.4.orig/include/asm-powerpc/pmi.h
102420 +++ linux-2.6.25.4/include/asm-powerpc/pmi.h
102421 @@ -29,8 +29,6 @@
102422
102423 #ifdef __KERNEL__
102424
102425 -#include <asm/of_device.h>
102426 -
102427 #define PMI_TYPE_FREQ_CHANGE 0x01
102428 #define PMI_READ_TYPE 0
102429 #define PMI_READ_DATA0 1
102430 Index: linux-2.6.25.4/include/asm-powerpc/ppc4xx.h
102431 ===================================================================
102432 --- /dev/null
102433 +++ linux-2.6.25.4/include/asm-powerpc/ppc4xx.h
102434 @@ -0,0 +1,18 @@
102435 +/*
102436 + * PPC4xx Prototypes and definitions
102437 + *
102438 + * Copyright 2008 DENX Software Engineering, Stefan Roese <sr@denx.de>
102439 + *
102440 + * This is free software; you can redistribute it and/or modify it
102441 + * under the terms of the GNU General Public License as published by
102442 + * the Free Software Foundation; either version 2 of the License, or
102443 + * (at your option) any later version.
102444 + *
102445 + */
102446 +
102447 +#ifndef __ASM_POWERPC_PPC4xx_H__
102448 +#define __ASM_POWERPC_PPC4xx_H__
102449 +
102450 +extern void ppc4xx_reset_system(char *cmd);
102451 +
102452 +#endif /* __ASM_POWERPC_PPC4xx_H__ */
102453 Index: linux-2.6.25.4/include/asm-powerpc/ps3.h
102454 ===================================================================
102455 --- linux-2.6.25.4.orig/include/asm-powerpc/ps3.h
102456 +++ linux-2.6.25.4/include/asm-powerpc/ps3.h
102457 @@ -434,8 +434,11 @@ struct ps3_sys_manager_ops {
102458 };
102459
102460 void ps3_sys_manager_register_ops(const struct ps3_sys_manager_ops *ops);
102461 -void ps3_sys_manager_power_off(void);
102462 -void ps3_sys_manager_restart(void);
102463 +void __noreturn ps3_sys_manager_power_off(void);
102464 +void __noreturn ps3_sys_manager_restart(void);
102465 +void __noreturn ps3_sys_manager_halt(void);
102466 +int ps3_sys_manager_get_wol(void);
102467 +void ps3_sys_manager_set_wol(int state);
102468
102469 struct ps3_prealloc {
102470 const char *name;
102471 Index: linux-2.6.25.4/include/asm-powerpc/ptrace.h
102472 ===================================================================
102473 --- linux-2.6.25.4.orig/include/asm-powerpc/ptrace.h
102474 +++ linux-2.6.25.4/include/asm-powerpc/ptrace.h
102475 @@ -58,6 +58,11 @@ struct pt_regs {
102476 #define __ARCH_WANT_COMPAT_SYS_PTRACE
102477
102478 #define STACK_FRAME_OVERHEAD 112 /* size of minimum stack frame */
102479 +#define STACK_FRAME_LR_SAVE 2 /* Location of LR in stack frame */
102480 +#define STACK_FRAME_REGS_MARKER ASM_CONST(0x7265677368657265)
102481 +#define STACK_INT_FRAME_SIZE (sizeof(struct pt_regs) + \
102482 + STACK_FRAME_OVERHEAD + 288)
102483 +#define STACK_FRAME_MARKER 12
102484
102485 /* Size of dummy stack frame allocated when calling signal handler. */
102486 #define __SIGNAL_FRAMESIZE 128
102487 @@ -66,6 +71,10 @@ struct pt_regs {
102488 #else /* __powerpc64__ */
102489
102490 #define STACK_FRAME_OVERHEAD 16 /* size of minimum stack frame */
102491 +#define STACK_FRAME_LR_SAVE 1 /* Location of LR in stack frame */
102492 +#define STACK_FRAME_REGS_MARKER ASM_CONST(0x72656773)
102493 +#define STACK_INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD)
102494 +#define STACK_FRAME_MARKER 2
102495
102496 /* Size of stack frame allocated when calling signal handler. */
102497 #define __SIGNAL_FRAMESIZE 64
102498 Index: linux-2.6.25.4/include/asm-powerpc/qe.h
102499 ===================================================================
102500 --- linux-2.6.25.4.orig/include/asm-powerpc/qe.h
102501 +++ linux-2.6.25.4/include/asm-powerpc/qe.h
102502 @@ -85,6 +85,7 @@ extern int par_io_data_set(u8 port, u8 p
102503 /* QE internal API */
102504 int qe_issue_cmd(u32 cmd, u32 device, u8 mcn_protocol, u32 cmd_input);
102505 enum qe_clock qe_clock_source(const char *source);
102506 +unsigned int qe_get_brg_clk(void);
102507 int qe_setbrg(enum qe_clock brg, unsigned int rate, unsigned int multiplier);
102508 int qe_get_snum(void);
102509 void qe_put_snum(u8 snum);
102510 @@ -92,7 +93,16 @@ unsigned long qe_muram_alloc(int size, i
102511 int qe_muram_free(unsigned long offset);
102512 unsigned long qe_muram_alloc_fixed(unsigned long offset, int size);
102513 void qe_muram_dump(void);
102514 -void *qe_muram_addr(unsigned long offset);
102515 +
102516 +static inline void __iomem *qe_muram_addr(unsigned long offset)
102517 +{
102518 + return (void __iomem *)&qe_immr->muram[offset];
102519 +}
102520 +
102521 +static inline unsigned long qe_muram_offset(void __iomem *addr)
102522 +{
102523 + return addr - (void __iomem *)qe_immr->muram;
102524 +}
102525
102526 /* Structure that defines QE firmware binary files.
102527 *
102528 Index: linux-2.6.25.4/include/asm-powerpc/rwsem.h
102529 ===================================================================
102530 --- linux-2.6.25.4.orig/include/asm-powerpc/rwsem.h
102531 +++ linux-2.6.25.4/include/asm-powerpc/rwsem.h
102532 @@ -32,11 +32,20 @@ struct rw_semaphore {
102533 #define RWSEM_ACTIVE_WRITE_BIAS (RWSEM_WAITING_BIAS + RWSEM_ACTIVE_BIAS)
102534 spinlock_t wait_lock;
102535 struct list_head wait_list;
102536 +#ifdef CONFIG_DEBUG_LOCK_ALLOC
102537 + struct lockdep_map dep_map;
102538 +#endif
102539 };
102540
102541 +#ifdef CONFIG_DEBUG_LOCK_ALLOC
102542 +# define __RWSEM_DEP_MAP_INIT(lockname) , .dep_map = { .name = #lockname }
102543 +#else
102544 +# define __RWSEM_DEP_MAP_INIT(lockname)
102545 +#endif
102546 +
102547 #define __RWSEM_INITIALIZER(name) \
102548 - { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \
102549 - LIST_HEAD_INIT((name).wait_list) }
102550 + { RWSEM_UNLOCKED_VALUE, __SPIN_LOCK_UNLOCKED((name).wait_lock), \
102551 + LIST_HEAD_INIT((name).wait_list) __RWSEM_DEP_MAP_INIT(name) }
102552
102553 #define DECLARE_RWSEM(name) \
102554 struct rw_semaphore name = __RWSEM_INITIALIZER(name)
102555 @@ -46,12 +55,15 @@ extern struct rw_semaphore *rwsem_down_w
102556 extern struct rw_semaphore *rwsem_wake(struct rw_semaphore *sem);
102557 extern struct rw_semaphore *rwsem_downgrade_wake(struct rw_semaphore *sem);
102558
102559 -static inline void init_rwsem(struct rw_semaphore *sem)
102560 -{
102561 - sem->count = RWSEM_UNLOCKED_VALUE;
102562 - spin_lock_init(&sem->wait_lock);
102563 - INIT_LIST_HEAD(&sem->wait_list);
102564 -}
102565 +extern void __init_rwsem(struct rw_semaphore *sem, const char *name,
102566 + struct lock_class_key *key);
102567 +
102568 +#define init_rwsem(sem) \
102569 + do { \
102570 + static struct lock_class_key __key; \
102571 + \
102572 + __init_rwsem((sem), #sem, &__key); \
102573 + } while (0)
102574
102575 /*
102576 * lock for reading
102577 @@ -78,7 +90,7 @@ static inline int __down_read_trylock(st
102578 /*
102579 * lock for writing
102580 */
102581 -static inline void __down_write(struct rw_semaphore *sem)
102582 +static inline void __down_write_nested(struct rw_semaphore *sem, int subclass)
102583 {
102584 int tmp;
102585
102586 @@ -88,6 +100,11 @@ static inline void __down_write(struct r
102587 rwsem_down_write_failed(sem);
102588 }
102589
102590 +static inline void __down_write(struct rw_semaphore *sem)
102591 +{
102592 + __down_write_nested(sem, 0);
102593 +}
102594 +
102595 static inline int __down_write_trylock(struct rw_semaphore *sem)
102596 {
102597 int tmp;
102598 Index: linux-2.6.25.4/include/asm-powerpc/sparsemem.h
102599 ===================================================================
102600 --- linux-2.6.25.4.orig/include/asm-powerpc/sparsemem.h
102601 +++ linux-2.6.25.4/include/asm-powerpc/sparsemem.h
102602 @@ -15,6 +15,7 @@
102603
102604 #ifdef CONFIG_MEMORY_HOTPLUG
102605 extern void create_section_mapping(unsigned long start, unsigned long end);
102606 +extern int remove_section_mapping(unsigned long start, unsigned long end);
102607 #ifdef CONFIG_NUMA
102608 extern int hot_add_scn_to_nid(unsigned long scn_addr);
102609 #else
102610 Index: linux-2.6.25.4/include/asm-powerpc/spinlock.h
102611 ===================================================================
102612 --- linux-2.6.25.4.orig/include/asm-powerpc/spinlock.h
102613 +++ linux-2.6.25.4/include/asm-powerpc/spinlock.h
102614 @@ -19,6 +19,7 @@
102615 *
102616 * (the type definitions are in asm/spinlock_types.h)
102617 */
102618 +#include <linux/irqflags.h>
102619 #ifdef CONFIG_PPC64
102620 #include <asm/paca.h>
102621 #include <asm/hvcall.h>
102622 Index: linux-2.6.25.4/include/asm-powerpc/string.h
102623 ===================================================================
102624 --- linux-2.6.25.4.orig/include/asm-powerpc/string.h
102625 +++ linux-2.6.25.4/include/asm-powerpc/string.h
102626 @@ -7,6 +7,7 @@
102627 #define __HAVE_ARCH_STRNCPY
102628 #define __HAVE_ARCH_STRLEN
102629 #define __HAVE_ARCH_STRCMP
102630 +#define __HAVE_ARCH_STRNCMP
102631 #define __HAVE_ARCH_STRCAT
102632 #define __HAVE_ARCH_MEMSET
102633 #define __HAVE_ARCH_MEMCPY
102634 @@ -18,6 +19,7 @@ extern char * strcpy(char *,const char *
102635 extern char * strncpy(char *,const char *, __kernel_size_t);
102636 extern __kernel_size_t strlen(const char *);
102637 extern int strcmp(const char *,const char *);
102638 +extern int strncmp(const char *, const char *, __kernel_size_t);
102639 extern char * strcat(char *, const char *);
102640 extern void * memset(void *,int,__kernel_size_t);
102641 extern void * memcpy(void *,const void *,__kernel_size_t);
102642 Index: linux-2.6.25.4/include/asm-powerpc/types.h
102643 ===================================================================
102644 --- linux-2.6.25.4.orig/include/asm-powerpc/types.h
102645 +++ linux-2.6.25.4/include/asm-powerpc/types.h
102646 @@ -84,6 +84,13 @@ typedef unsigned long long u64;
102647
102648 typedef __vector128 vector128;
102649
102650 +/* Physical address used by some IO functions */
102651 +#if defined(CONFIG_PPC64) || defined(CONFIG_PHYS_64BIT)
102652 +typedef u64 phys_addr_t;
102653 +#else
102654 +typedef u32 phys_addr_t;
102655 +#endif
102656 +
102657 #ifdef __powerpc64__
102658 typedef u64 dma_addr_t;
102659 #else
102660 Index: linux-2.6.25.4/include/asm-sparc64/lmb.h
102661 ===================================================================
102662 --- /dev/null
102663 +++ linux-2.6.25.4/include/asm-sparc64/lmb.h
102664 @@ -0,0 +1,10 @@
102665 +#ifndef _SPARC64_LMB_H
102666 +#define _SPARC64_LMB_H
102667 +
102668 +#include <asm/oplib.h>
102669 +
102670 +#define LMB_DBG(fmt...) prom_printf(fmt)
102671 +
102672 +#define LMB_REAL_LIMIT 0
102673 +
102674 +#endif /* !(_SPARC64_LMB_H) */
102675 Index: linux-2.6.25.4/include/linux/lmb.h
102676 ===================================================================
102677 --- /dev/null
102678 +++ linux-2.6.25.4/include/linux/lmb.h
102679 @@ -0,0 +1,85 @@
102680 +#ifndef _LINUX_LMB_H
102681 +#define _LINUX_LMB_H
102682 +#ifdef __KERNEL__
102683 +
102684 +/*
102685 + * Logical memory blocks.
102686 + *
102687 + * Copyright (C) 2001 Peter Bergner, IBM Corp.
102688 + *
102689 + * This program is free software; you can redistribute it and/or
102690 + * modify it under the terms of the GNU General Public License
102691 + * as published by the Free Software Foundation; either version
102692 + * 2 of the License, or (at your option) any later version.
102693 + */
102694 +
102695 +#include <linux/init.h>
102696 +#include <linux/mm.h>
102697 +
102698 +#define MAX_LMB_REGIONS 128
102699 +
102700 +struct lmb_property {
102701 + u64 base;
102702 + u64 size;
102703 +};
102704 +
102705 +struct lmb_region {
102706 + unsigned long cnt;
102707 + u64 size;
102708 + struct lmb_property region[MAX_LMB_REGIONS+1];
102709 +};
102710 +
102711 +struct lmb {
102712 + unsigned long debug;
102713 + u64 rmo_size;
102714 + struct lmb_region memory;
102715 + struct lmb_region reserved;
102716 +};
102717 +
102718 +extern struct lmb lmb;
102719 +
102720 +extern void __init lmb_init(void);
102721 +extern void __init lmb_analyze(void);
102722 +extern long __init lmb_add(u64 base, u64 size);
102723 +extern long __init lmb_reserve(u64 base, u64 size);
102724 +extern u64 __init lmb_alloc_nid(u64 size, u64 align, int nid,
102725 + u64 (*nid_range)(u64, u64, int *));
102726 +extern u64 __init lmb_alloc(u64 size, u64 align);
102727 +extern u64 __init lmb_alloc_base(u64 size,
102728 + u64, u64 max_addr);
102729 +extern u64 __init __lmb_alloc_base(u64 size,
102730 + u64 align, u64 max_addr);
102731 +extern u64 __init lmb_phys_mem_size(void);
102732 +extern u64 __init lmb_end_of_DRAM(void);
102733 +extern void __init lmb_enforce_memory_limit(u64 memory_limit);
102734 +extern int __init lmb_is_reserved(u64 addr);
102735 +
102736 +extern void lmb_dump_all(void);
102737 +
102738 +static inline u64
102739 +lmb_size_bytes(struct lmb_region *type, unsigned long region_nr)
102740 +{
102741 + return type->region[region_nr].size;
102742 +}
102743 +static inline u64
102744 +lmb_size_pages(struct lmb_region *type, unsigned long region_nr)
102745 +{
102746 + return lmb_size_bytes(type, region_nr) >> PAGE_SHIFT;
102747 +}
102748 +static inline u64
102749 +lmb_start_pfn(struct lmb_region *type, unsigned long region_nr)
102750 +{
102751 + return type->region[region_nr].base >> PAGE_SHIFT;
102752 +}
102753 +static inline u64
102754 +lmb_end_pfn(struct lmb_region *type, unsigned long region_nr)
102755 +{
102756 + return lmb_start_pfn(type, region_nr) +
102757 + lmb_size_pages(type, region_nr);
102758 +}
102759 +
102760 +#include <asm/lmb.h>
102761 +
102762 +#endif /* __KERNEL__ */
102763 +
102764 +#endif /* _LINUX_LMB_H */
102765 Index: linux-2.6.25.4/include/linux/of.h
102766 ===================================================================
102767 --- linux-2.6.25.4.orig/include/linux/of.h
102768 +++ linux-2.6.25.4/include/linux/of.h
102769 @@ -62,6 +62,7 @@ extern struct property *of_find_property
102770 int *lenp);
102771 extern int of_device_is_compatible(const struct device_node *device,
102772 const char *);
102773 +extern int of_device_is_available(const struct device_node *device);
102774 extern const void *of_get_property(const struct device_node *node,
102775 const char *name,
102776 int *lenp);
102777 Index: linux-2.6.25.4/include/linux/of_gpio.h
102778 ===================================================================
102779 --- /dev/null
102780 +++ linux-2.6.25.4/include/linux/of_gpio.h
102781 @@ -0,0 +1,69 @@
102782 +/*
102783 + * OF helpers for the GPIO API
102784 + *
102785 + * Copyright (c) 2007-2008 MontaVista Software, Inc.
102786 + *
102787 + * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
102788 + *
102789 + * This program is free software; you can redistribute it and/or modify
102790 + * it under the terms of the GNU General Public License as published by
102791 + * the Free Software Foundation; either version 2 of the License, or
102792 + * (at your option) any later version.
102793 + */
102794 +
102795 +#ifndef __LINUX_OF_GPIO_H
102796 +#define __LINUX_OF_GPIO_H
102797 +
102798 +#include <linux/errno.h>
102799 +#include <asm/gpio.h>
102800 +
102801 +#ifdef CONFIG_OF_GPIO
102802 +
102803 +/*
102804 + * Generic OF GPIO chip
102805 + */
102806 +struct of_gpio_chip {
102807 + struct gpio_chip gc;
102808 + int gpio_cells;
102809 + int (*xlate)(struct of_gpio_chip *of_gc, struct device_node *np,
102810 + const void *gpio_spec);
102811 +};
102812 +
102813 +static inline struct of_gpio_chip *to_of_gpio_chip(struct gpio_chip *gc)
102814 +{
102815 + return container_of(gc, struct of_gpio_chip, gc);
102816 +}
102817 +
102818 +/*
102819 + * OF GPIO chip for memory mapped banks
102820 + */
102821 +struct of_mm_gpio_chip {
102822 + struct of_gpio_chip of_gc;
102823 + void (*save_regs)(struct of_mm_gpio_chip *mm_gc);
102824 + void __iomem *regs;
102825 +};
102826 +
102827 +static inline struct of_mm_gpio_chip *to_of_mm_gpio_chip(struct gpio_chip *gc)
102828 +{
102829 + struct of_gpio_chip *of_gc = to_of_gpio_chip(gc);
102830 +
102831 + return container_of(of_gc, struct of_mm_gpio_chip, of_gc);
102832 +}
102833 +
102834 +extern int of_get_gpio(struct device_node *np, int index);
102835 +extern int of_mm_gpiochip_add(struct device_node *np,
102836 + struct of_mm_gpio_chip *mm_gc);
102837 +extern int of_gpio_simple_xlate(struct of_gpio_chip *of_gc,
102838 + struct device_node *np,
102839 + const void *gpio_spec);
102840 +#else
102841 +
102842 +/* Drivers may not strictly depend on the GPIO support, so let them link. */
102843 +static inline int of_get_gpio(struct device_node *np, int index)
102844 +{
102845 + return -ENOSYS;
102846 +}
102847 +
102848 +#endif /* CONFIG_OF_GPIO */
102849 +
102850 +#endif /* __LINUX_OF_GPIO_H */
102851 Index: linux-2.6.25.4/include/linux/of_i2c.h
102852 ===================================================================
102853 --- /dev/null
102854 +++ linux-2.6.25.4/include/linux/of_i2c.h
102855 @@ -0,0 +1,24 @@
102856 +/*
102857 + * Generic I2C API implementation for PowerPC.
102858 + *
102859 + * Copyright (c) 2008 Jochen Friedrich <jochen@scram.de>
102860 + *
102861 + * This program is free software; you can redistribute it and/or modify
102862 + * it under the terms of the GNU General Public License as published by
102863 + * the Free Software Foundation; either version 2 of the License, or
102864 + * (at your option) any later version.
102865 + */
102866 +
102867 +#ifndef __LINUX_OF_I2C_H
102868 +#define __LINUX_OF_I2C_H
102869 +
102870 +#include <linux/i2c.h>
102871 +
102872 +#ifdef CONFIG_OF_I2C
102873 +
102874 +void of_register_i2c_devices(struct i2c_adapter *adap,
102875 + struct device_node *adap_node);
102876 +
102877 +#endif /* CONFIG_OF_I2C */
102878 +
102879 +#endif /* __LINUX_OF_I2C_H */
102880 Index: linux-2.6.25.4/lib/Kconfig
102881 ===================================================================
102882 --- linux-2.6.25.4.orig/lib/Kconfig
102883 +++ linux-2.6.25.4/lib/Kconfig
102884 @@ -141,4 +141,7 @@ config HAS_DMA
102885 config CHECK_SIGNATURE
102886 bool
102887
102888 +config HAVE_LMB
102889 + boolean
102890 +
102891 endmenu
102892 Index: linux-2.6.25.4/lib/Makefile
102893 ===================================================================
102894 --- linux-2.6.25.4.orig/lib/Makefile
102895 +++ linux-2.6.25.4/lib/Makefile
102896 @@ -70,6 +70,8 @@ obj-$(CONFIG_FAULT_INJECTION) += fault-i
102897
102898 lib-$(CONFIG_GENERIC_BUG) += bug.o
102899
102900 +obj-$(CONFIG_HAVE_LMB) += lmb.o
102901 +
102902 hostprogs-y := gen_crc32table
102903 clean-files := crc32table.h
102904
102905 Index: linux-2.6.25.4/lib/lmb.c
102906 ===================================================================
102907 --- /dev/null
102908 +++ linux-2.6.25.4/lib/lmb.c
102909 @@ -0,0 +1,428 @@
102910 +/*
102911 + * Procedures for maintaining information about logical memory blocks.
102912 + *
102913 + * Peter Bergner, IBM Corp. June 2001.
102914 + * Copyright (C) 2001 Peter Bergner.
102915 + *
102916 + * This program is free software; you can redistribute it and/or
102917 + * modify it under the terms of the GNU General Public License
102918 + * as published by the Free Software Foundation; either version
102919 + * 2 of the License, or (at your option) any later version.
102920 + */
102921 +
102922 +#include <linux/kernel.h>
102923 +#include <linux/init.h>
102924 +#include <linux/bitops.h>
102925 +#include <linux/lmb.h>
102926 +
102927 +#define LMB_ALLOC_ANYWHERE 0
102928 +
102929 +struct lmb lmb;
102930 +
102931 +void lmb_dump_all(void)
102932 +{
102933 +#ifdef DEBUG
102934 + unsigned long i;
102935 +
102936 + pr_debug("lmb_dump_all:\n");
102937 + pr_debug(" memory.cnt = 0x%lx\n", lmb.memory.cnt);
102938 + pr_debug(" memory.size = 0x%llx\n",
102939 + (unsigned long long)lmb.memory.size);
102940 + for (i=0; i < lmb.memory.cnt ;i++) {
102941 + pr_debug(" memory.region[0x%x].base = 0x%llx\n",
102942 + i, (unsigned long long)lmb.memory.region[i].base);
102943 + pr_debug(" .size = 0x%llx\n",
102944 + (unsigned long long)lmb.memory.region[i].size);
102945 + }
102946 +
102947 + pr_debug(" reserved.cnt = 0x%lx\n", lmb.reserved.cnt);
102948 + pr_debug(" reserved.size = 0x%lx\n", lmb.reserved.size);
102949 + for (i=0; i < lmb.reserved.cnt ;i++) {
102950 + pr_debug(" reserved.region[0x%x].base = 0x%llx\n",
102951 + i, (unsigned long long)lmb.reserved.region[i].base);
102952 + pr_debug(" .size = 0x%llx\n",
102953 + (unsigned long long)lmb.reserved.region[i].size);
102954 + }
102955 +#endif /* DEBUG */
102956 +}
102957 +
102958 +static unsigned long __init lmb_addrs_overlap(u64 base1, u64 size1,
102959 + u64 base2, u64 size2)
102960 +{
102961 + return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
102962 +}
102963 +
102964 +static long __init lmb_addrs_adjacent(u64 base1, u64 size1,
102965 + u64 base2, u64 size2)
102966 +{
102967 + if (base2 == base1 + size1)
102968 + return 1;
102969 + else if (base1 == base2 + size2)
102970 + return -1;
102971 +
102972 + return 0;
102973 +}
102974 +
102975 +static long __init lmb_regions_adjacent(struct lmb_region *rgn,
102976 + unsigned long r1, unsigned long r2)
102977 +{
102978 + u64 base1 = rgn->region[r1].base;
102979 + u64 size1 = rgn->region[r1].size;
102980 + u64 base2 = rgn->region[r2].base;
102981 + u64 size2 = rgn->region[r2].size;
102982 +
102983 + return lmb_addrs_adjacent(base1, size1, base2, size2);
102984 +}
102985 +
102986 +static void __init lmb_remove_region(struct lmb_region *rgn, unsigned long r)
102987 +{
102988 + unsigned long i;
102989 +
102990 + for (i = r; i < rgn->cnt - 1; i++) {
102991 + rgn->region[i].base = rgn->region[i + 1].base;
102992 + rgn->region[i].size = rgn->region[i + 1].size;
102993 + }
102994 + rgn->cnt--;
102995 +}
102996 +
102997 +/* Assumption: base addr of region 1 < base addr of region 2 */
102998 +static void __init lmb_coalesce_regions(struct lmb_region *rgn,
102999 + unsigned long r1, unsigned long r2)
103000 +{
103001 + rgn->region[r1].size += rgn->region[r2].size;
103002 + lmb_remove_region(rgn, r2);
103003 +}
103004 +
103005 +void __init lmb_init(void)
103006 +{
103007 + /* Create a dummy zero size LMB which will get coalesced away later.
103008 + * This simplifies the lmb_add() code below...
103009 + */
103010 + lmb.memory.region[0].base = 0;
103011 + lmb.memory.region[0].size = 0;
103012 + lmb.memory.cnt = 1;
103013 +
103014 + /* Ditto. */
103015 + lmb.reserved.region[0].base = 0;
103016 + lmb.reserved.region[0].size = 0;
103017 + lmb.reserved.cnt = 1;
103018 +}
103019 +
103020 +void __init lmb_analyze(void)
103021 +{
103022 + int i;
103023 +
103024 + lmb.memory.size = 0;
103025 +
103026 + for (i = 0; i < lmb.memory.cnt; i++)
103027 + lmb.memory.size += lmb.memory.region[i].size;
103028 +}
103029 +
103030 +static long __init lmb_add_region(struct lmb_region *rgn, u64 base, u64 size)
103031 +{
103032 + unsigned long coalesced = 0;
103033 + long adjacent, i;
103034 +
103035 + if ((rgn->cnt == 1) && (rgn->region[0].size == 0)) {
103036 + rgn->region[0].base = base;
103037 + rgn->region[0].size = size;
103038 + return 0;
103039 + }
103040 +
103041 + /* First try and coalesce this LMB with another. */
103042 + for (i = 0; i < rgn->cnt; i++) {
103043 + u64 rgnbase = rgn->region[i].base;
103044 + u64 rgnsize = rgn->region[i].size;
103045 +
103046 + if ((rgnbase == base) && (rgnsize == size))
103047 + /* Already have this region, so we're done */
103048 + return 0;
103049 +
103050 + adjacent = lmb_addrs_adjacent(base, size, rgnbase, rgnsize);
103051 + if (adjacent > 0) {
103052 + rgn->region[i].base -= size;
103053 + rgn->region[i].size += size;
103054 + coalesced++;
103055 + break;
103056 + } else if (adjacent < 0) {
103057 + rgn->region[i].size += size;
103058 + coalesced++;
103059 + break;
103060 + }
103061 + }
103062 +
103063 + if ((i < rgn->cnt - 1) && lmb_regions_adjacent(rgn, i, i+1)) {
103064 + lmb_coalesce_regions(rgn, i, i+1);
103065 + coalesced++;
103066 + }
103067 +
103068 + if (coalesced)
103069 + return coalesced;
103070 + if (rgn->cnt >= MAX_LMB_REGIONS)
103071 + return -1;
103072 +
103073 + /* Couldn't coalesce the LMB, so add it to the sorted table. */
103074 + for (i = rgn->cnt - 1; i >= 0; i--) {
103075 + if (base < rgn->region[i].base) {
103076 + rgn->region[i+1].base = rgn->region[i].base;
103077 + rgn->region[i+1].size = rgn->region[i].size;
103078 + } else {
103079 + rgn->region[i+1].base = base;
103080 + rgn->region[i+1].size = size;
103081 + break;
103082 + }
103083 + }
103084 +
103085 + if (base < rgn->region[0].base) {
103086 + rgn->region[0].base = base;
103087 + rgn->region[0].size = size;
103088 + }
103089 + rgn->cnt++;
103090 +
103091 + return 0;
103092 +}
103093 +
103094 +long __init lmb_add(u64 base, u64 size)
103095 +{
103096 + struct lmb_region *_rgn = &lmb.memory;
103097 +
103098 + /* On pSeries LPAR systems, the first LMB is our RMO region. */
103099 + if (base == 0)
103100 + lmb.rmo_size = size;
103101 +
103102 + return lmb_add_region(_rgn, base, size);
103103 +
103104 +}
103105 +
103106 +long __init lmb_reserve(u64 base, u64 size)
103107 +{
103108 + struct lmb_region *_rgn = &lmb.reserved;
103109 +
103110 + BUG_ON(0 == size);
103111 +
103112 + return lmb_add_region(_rgn, base, size);
103113 +}
103114 +
103115 +long __init lmb_overlaps_region(struct lmb_region *rgn, u64 base, u64 size)
103116 +{
103117 + unsigned long i;
103118 +
103119 + for (i = 0; i < rgn->cnt; i++) {
103120 + u64 rgnbase = rgn->region[i].base;
103121 + u64 rgnsize = rgn->region[i].size;
103122 + if (lmb_addrs_overlap(base, size, rgnbase, rgnsize))
103123 + break;
103124 + }
103125 +
103126 + return (i < rgn->cnt) ? i : -1;
103127 +}
103128 +
103129 +static u64 lmb_align_down(u64 addr, u64 size)
103130 +{
103131 + return addr & ~(size - 1);
103132 +}
103133 +
103134 +static u64 lmb_align_up(u64 addr, u64 size)
103135 +{
103136 + return (addr + (size - 1)) & ~(size - 1);
103137 +}
103138 +
103139 +static u64 __init lmb_alloc_nid_unreserved(u64 start, u64 end,
103140 + u64 size, u64 align)
103141 +{
103142 + u64 base, res_base;
103143 + long j;
103144 +
103145 + base = lmb_align_down((end - size), align);
103146 + while (start <= base) {
103147 + j = lmb_overlaps_region(&lmb.reserved, base, size);
103148 + if (j < 0) {
103149 + /* this area isn't reserved, take it */
103150 + if (lmb_add_region(&lmb.reserved, base,
103151 + lmb_align_up(size, align)) < 0)
103152 + base = ~(u64)0;
103153 + return base;
103154 + }
103155 + res_base = lmb.reserved.region[j].base;
103156 + if (res_base < size)
103157 + break;
103158 + base = lmb_align_down(res_base - size, align);
103159 + }
103160 +
103161 + return ~(u64)0;
103162 +}
103163 +
103164 +static u64 __init lmb_alloc_nid_region(struct lmb_property *mp,
103165 + u64 (*nid_range)(u64, u64, int *),
103166 + u64 size, u64 align, int nid)
103167 +{
103168 + u64 start, end;
103169 +
103170 + start = mp->base;
103171 + end = start + mp->size;
103172 +
103173 + start = lmb_align_up(start, align);
103174 + while (start < end) {
103175 + u64 this_end;
103176 + int this_nid;
103177 +
103178 + this_end = nid_range(start, end, &this_nid);
103179 + if (this_nid == nid) {
103180 + u64 ret = lmb_alloc_nid_unreserved(start, this_end,
103181 + size, align);
103182 + if (ret != ~(u64)0)
103183 + return ret;
103184 + }
103185 + start = this_end;
103186 + }
103187 +
103188 + return ~(u64)0;
103189 +}
103190 +
103191 +u64 __init lmb_alloc_nid(u64 size, u64 align, int nid,
103192 + u64 (*nid_range)(u64 start, u64 end, int *nid))
103193 +{
103194 + struct lmb_region *mem = &lmb.memory;
103195 + int i;
103196 +
103197 + for (i = 0; i < mem->cnt; i++) {
103198 + u64 ret = lmb_alloc_nid_region(&mem->region[i],
103199 + nid_range,
103200 + size, align, nid);
103201 + if (ret != ~(u64)0)
103202 + return ret;
103203 + }
103204 +
103205 + return lmb_alloc(size, align);
103206 +}
103207 +
103208 +u64 __init lmb_alloc(u64 size, u64 align)
103209 +{
103210 + return lmb_alloc_base(size, align, LMB_ALLOC_ANYWHERE);
103211 +}
103212 +
103213 +u64 __init lmb_alloc_base(u64 size, u64 align, u64 max_addr)
103214 +{
103215 + u64 alloc;
103216 +
103217 + alloc = __lmb_alloc_base(size, align, max_addr);
103218 +
103219 + if (alloc == 0)
103220 + panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
103221 + (unsigned long long) size, (unsigned long long) max_addr);
103222 +
103223 + return alloc;
103224 +}
103225 +
103226 +u64 __init __lmb_alloc_base(u64 size, u64 align, u64 max_addr)
103227 +{
103228 + long i, j;
103229 + u64 base = 0;
103230 + u64 res_base;
103231 +
103232 + BUG_ON(0 == size);
103233 +
103234 + /* On some platforms, make sure we allocate lowmem */
103235 + /* Note that LMB_REAL_LIMIT may be LMB_ALLOC_ANYWHERE */
103236 + if (max_addr == LMB_ALLOC_ANYWHERE)
103237 + max_addr = LMB_REAL_LIMIT;
103238 +
103239 + for (i = lmb.memory.cnt - 1; i >= 0; i--) {
103240 + u64 lmbbase = lmb.memory.region[i].base;
103241 + u64 lmbsize = lmb.memory.region[i].size;
103242 +
103243 + if (lmbsize < size)
103244 + continue;
103245 + if (max_addr == LMB_ALLOC_ANYWHERE)
103246 + base = lmb_align_down(lmbbase + lmbsize - size, align);
103247 + else if (lmbbase < max_addr) {
103248 + base = min(lmbbase + lmbsize, max_addr);
103249 + base = lmb_align_down(base - size, align);
103250 + } else
103251 + continue;
103252 +
103253 + while (base && lmbbase <= base) {
103254 + j = lmb_overlaps_region(&lmb.reserved, base, size);
103255 + if (j < 0) {
103256 + /* this area isn't reserved, take it */
103257 + if (lmb_add_region(&lmb.reserved, base,
103258 + size) < 0)
103259 + return 0;
103260 + return base;
103261 + }
103262 + res_base = lmb.reserved.region[j].base;
103263 + if (res_base < size)
103264 + break;
103265 + base = lmb_align_down(res_base - size, align);
103266 + }
103267 + }
103268 + return 0;
103269 +}
103270 +
103271 +/* You must call lmb_analyze() before this. */
103272 +u64 __init lmb_phys_mem_size(void)
103273 +{
103274 + return lmb.memory.size;
103275 +}
103276 +
103277 +u64 __init lmb_end_of_DRAM(void)
103278 +{
103279 + int idx = lmb.memory.cnt - 1;
103280 +
103281 + return (lmb.memory.region[idx].base + lmb.memory.region[idx].size);
103282 +}
103283 +
103284 +/* You must call lmb_analyze() after this. */
103285 +void __init lmb_enforce_memory_limit(u64 memory_limit)
103286 +{
103287 + unsigned long i;
103288 + u64 limit;
103289 + struct lmb_property *p;
103290 +
103291 + if (!memory_limit)
103292 + return;
103293 +
103294 + /* Truncate the lmb regions to satisfy the memory limit. */
103295 + limit = memory_limit;
103296 + for (i = 0; i < lmb.memory.cnt; i++) {
103297 + if (limit > lmb.memory.region[i].size) {
103298 + limit -= lmb.memory.region[i].size;
103299 + continue;
103300 + }
103301 +
103302 + lmb.memory.region[i].size = limit;
103303 + lmb.memory.cnt = i + 1;
103304 + break;
103305 + }
103306 +
103307 + if (lmb.memory.region[0].size < lmb.rmo_size)
103308 + lmb.rmo_size = lmb.memory.region[0].size;
103309 +
103310 + /* And truncate any reserves above the limit also. */
103311 + for (i = 0; i < lmb.reserved.cnt; i++) {
103312 + p = &lmb.reserved.region[i];
103313 +
103314 + if (p->base > memory_limit)
103315 + p->size = 0;
103316 + else if ((p->base + p->size) > memory_limit)
103317 + p->size = memory_limit - p->base;
103318 +
103319 + if (p->size == 0) {
103320 + lmb_remove_region(&lmb.reserved, i);
103321 + i--;
103322 + }
103323 + }
103324 +}
103325 +
103326 +int __init lmb_is_reserved(u64 addr)
103327 +{
103328 + int i;
103329 +
103330 + for (i = 0; i < lmb.reserved.cnt; i++) {
103331 + u64 upper = lmb.reserved.region[i].base +
103332 + lmb.reserved.region[i].size - 1;
103333 + if ((addr >= lmb.reserved.region[i].base) && (addr <= upper))
103334 + return 1;
103335 + }
103336 + return 0;
103337 +}
This page took 5.686761 seconds and 5 git commands to generate.