diff options
123 files changed, 3914 insertions, 2111 deletions
diff --git a/Documentation/hw_random.txt b/Documentation/hw_random.txt index bb58c36b5845..690f52550c80 100644 --- a/Documentation/hw_random.txt +++ b/Documentation/hw_random.txt | |||
@@ -1,33 +1,26 @@ | |||
1 | Hardware driver for Intel/AMD/VIA Random Number Generators (RNG) | ||
2 | Copyright 2000,2001 Jeff Garzik <jgarzik@pobox.com> | ||
3 | Copyright 2000,2001 Philipp Rumpf <prumpf@mandrakesoft.com> | ||
4 | |||
5 | Introduction: | 1 | Introduction: |
6 | 2 | ||
7 | The hw_random device driver is software that makes use of a | 3 | The hw_random framework is software that makes use of a |
8 | special hardware feature on your CPU or motherboard, | 4 | special hardware feature on your CPU or motherboard, |
9 | a Random Number Generator (RNG). | 5 | a Random Number Generator (RNG). The software has two parts: |
6 | a core providing the /dev/hw_random character device and its | ||
7 | sysfs support, plus a hardware-specific driver that plugs | ||
8 | into that core. | ||
10 | 9 | ||
11 | In order to make effective use of this device driver, you | 10 | To make the most effective use of these mechanisms, you |
12 | should download the support software as well. Download the | 11 | should download the support software as well. Download the |
13 | latest version of the "rng-tools" package from the | 12 | latest version of the "rng-tools" package from the |
14 | hw_random driver's official Web site: | 13 | hw_random driver's official Web site: |
15 | 14 | ||
16 | http://sourceforge.net/projects/gkernel/ | 15 | http://sourceforge.net/projects/gkernel/ |
17 | 16 | ||
18 | About the Intel RNG hardware, from the firmware hub datasheet: | 17 | Those tools use /dev/hw_random to fill the kernel entropy pool, |
19 | 18 | which is used internally and exported by the /dev/urandom and | |
20 | The Firmware Hub integrates a Random Number Generator (RNG) | 19 | /dev/random special files. |
21 | using thermal noise generated from inherently random quantum | ||
22 | mechanical properties of silicon. When not generating new random | ||
23 | bits the RNG circuitry will enter a low power state. Intel will | ||
24 | provide a binary software driver to give third party software | ||
25 | access to our RNG for use as a security feature. At this time, | ||
26 | the RNG is only to be used with a system in an OS-present state. | ||
27 | 20 | ||
28 | Theory of operation: | 21 | Theory of operation: |
29 | 22 | ||
30 | Character driver. Using the standard open() | 23 | CHARACTER DEVICE. Using the standard open() |
31 | and read() system calls, you can read random data from | 24 | and read() system calls, you can read random data from |
32 | the hardware RNG device. This data is NOT CHECKED by any | 25 | the hardware RNG device. This data is NOT CHECKED by any |
33 | fitness tests, and could potentially be bogus (if the | 26 | fitness tests, and could potentially be bogus (if the |
@@ -36,9 +29,37 @@ Theory of operation: | |||
36 | a security-conscious person would run fitness tests on the | 29 | a security-conscious person would run fitness tests on the |
37 | data before assuming it is truly random. | 30 | data before assuming it is truly random. |
38 | 31 | ||
39 | /dev/hwrandom is char device major 10, minor 183. | 32 | The rng-tools package uses such tests in "rngd", and lets you |
33 | run them by hand with a "rngtest" utility. | ||
34 | |||
35 | /dev/hw_random is char device major 10, minor 183. | ||
36 | |||
37 | CLASS DEVICE. There is a /sys/class/misc/hw_random node with | ||
38 | two unique attributes, "rng_available" and "rng_current". The | ||
39 | "rng_available" attribute lists the hardware-specific drivers | ||
40 | available, while "rng_current" lists the one which is currently | ||
41 | connected to /dev/hw_random. If your system has more than one | ||
42 | RNG available, you may change the one used by writing a name from | ||
43 | the list in "rng_available" into "rng_current". | ||
44 | |||
45 | ========================================================================== | ||
46 | |||
47 | Hardware driver for Intel/AMD/VIA Random Number Generators (RNG) | ||
48 | Copyright 2000,2001 Jeff Garzik <jgarzik@pobox.com> | ||
49 | Copyright 2000,2001 Philipp Rumpf <prumpf@mandrakesoft.com> | ||
50 | |||
51 | |||
52 | About the Intel RNG hardware, from the firmware hub datasheet: | ||
53 | |||
54 | The Firmware Hub integrates a Random Number Generator (RNG) | ||
55 | using thermal noise generated from inherently random quantum | ||
56 | mechanical properties of silicon. When not generating new random | ||
57 | bits the RNG circuitry will enter a low power state. Intel will | ||
58 | provide a binary software driver to give third party software | ||
59 | access to our RNG for use as a security feature. At this time, | ||
60 | the RNG is only to be used with a system in an OS-present state. | ||
40 | 61 | ||
41 | Driver notes: | 62 | Intel RNG Driver notes: |
42 | 63 | ||
43 | * FIXME: support poll(2) | 64 | * FIXME: support poll(2) |
44 | 65 | ||
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 650b0d8aa89b..508e2a2c9864 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -1130,6 +1130,10 @@ and is between 256 and 4096 characters. It is defined in the file | |||
1130 | memmap=nn[KMG]$ss[KMG] | 1130 | memmap=nn[KMG]$ss[KMG] |
1131 | [KNL,ACPI] Mark specific memory as reserved. | 1131 | [KNL,ACPI] Mark specific memory as reserved. |
1132 | Region of memory to be used, from ss to ss+nn. | 1132 | Region of memory to be used, from ss to ss+nn. |
1133 | Example: Exclude memory from 0x18690000-0x1869ffff | ||
1134 | memmap=64K$0x18690000 | ||
1135 | or | ||
1136 | memmap=0x10000$0x18690000 | ||
1133 | 1137 | ||
1134 | meye.*= [HW] Set MotionEye Camera parameters | 1138 | meye.*= [HW] Set MotionEye Camera parameters |
1135 | See Documentation/video4linux/meye.txt. | 1139 | See Documentation/video4linux/meye.txt. |
@@ -189,7 +189,7 @@ SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \ | |||
189 | # Alternatively CROSS_COMPILE can be set in the environment. | 189 | # Alternatively CROSS_COMPILE can be set in the environment. |
190 | # Default value for CROSS_COMPILE is not to prefix executables | 190 | # Default value for CROSS_COMPILE is not to prefix executables |
191 | # Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile | 191 | # Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile |
192 | 192 | export KBUILD_BUILDHOST := $(SUBARCH) | |
193 | ARCH ?= $(SUBARCH) | 193 | ARCH ?= $(SUBARCH) |
194 | CROSS_COMPILE ?= | 194 | CROSS_COMPILE ?= |
195 | 195 | ||
diff --git a/arch/powerpc/boot/dts/lite5200b.dts b/arch/powerpc/boot/dts/lite5200b.dts index 571ba02accac..2e9bc397ae9a 100644 --- a/arch/powerpc/boot/dts/lite5200b.dts +++ b/arch/powerpc/boot/dts/lite5200b.dts | |||
@@ -270,7 +270,7 @@ | |||
270 | mdio@3000 { | 270 | mdio@3000 { |
271 | #address-cells = <1>; | 271 | #address-cells = <1>; |
272 | #size-cells = <0>; | 272 | #size-cells = <0>; |
273 | compatible = "fsl,mpc5200b-mdio"; | 273 | compatible = "fsl,mpc5200b-mdio", "fsl,mpc5200-mdio"; |
274 | reg = <3000 400>; // fec range, since we need to setup fec interrupts | 274 | reg = <3000 400>; // fec range, since we need to setup fec interrupts |
275 | interrupts = <2 5 0>; // these are for "mii command finished", not link changes & co. | 275 | interrupts = <2 5 0>; // these are for "mii command finished", not link changes & co. |
276 | interrupt-parent = <&mpc5200_pic>; | 276 | interrupt-parent = <&mpc5200_pic>; |
diff --git a/arch/powerpc/configs/ep8248e_defconfig b/arch/powerpc/configs/ep8248e_defconfig index 01ad5951ade9..2b1504e0a111 100644 --- a/arch/powerpc/configs/ep8248e_defconfig +++ b/arch/powerpc/configs/ep8248e_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Fri Jan 11 14:02:06 2008 | 4 | # Mon Mar 24 08:48:09 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -28,6 +28,7 @@ CONFIG_GENERIC_TIME=y | |||
28 | CONFIG_GENERIC_TIME_VSYSCALL=y | 28 | CONFIG_GENERIC_TIME_VSYSCALL=y |
29 | CONFIG_GENERIC_CLOCKEVENTS=y | 29 | CONFIG_GENERIC_CLOCKEVENTS=y |
30 | CONFIG_GENERIC_HARDIRQS=y | 30 | CONFIG_GENERIC_HARDIRQS=y |
31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
31 | CONFIG_IRQ_PER_CPU=y | 32 | CONFIG_IRQ_PER_CPU=y |
32 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
33 | CONFIG_ARCH_HAS_ILOG2_U32=y | 34 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -69,11 +70,14 @@ CONFIG_IKCONFIG=y | |||
69 | CONFIG_IKCONFIG_PROC=y | 70 | CONFIG_IKCONFIG_PROC=y |
70 | CONFIG_LOG_BUF_SHIFT=14 | 71 | CONFIG_LOG_BUF_SHIFT=14 |
71 | # CONFIG_CGROUPS is not set | 72 | # CONFIG_CGROUPS is not set |
73 | CONFIG_GROUP_SCHED=y | ||
72 | CONFIG_FAIR_GROUP_SCHED=y | 74 | CONFIG_FAIR_GROUP_SCHED=y |
73 | CONFIG_FAIR_USER_SCHED=y | 75 | CONFIG_USER_SCHED=y |
74 | # CONFIG_FAIR_CGROUP_SCHED is not set | 76 | # CONFIG_CGROUP_SCHED is not set |
75 | CONFIG_SYSFS_DEPRECATED=y | 77 | CONFIG_SYSFS_DEPRECATED=y |
78 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
76 | # CONFIG_RELAY is not set | 79 | # CONFIG_RELAY is not set |
80 | # CONFIG_NAMESPACES is not set | ||
77 | # CONFIG_BLK_DEV_INITRD is not set | 81 | # CONFIG_BLK_DEV_INITRD is not set |
78 | CONFIG_SYSCTL=y | 82 | CONFIG_SYSCTL=y |
79 | CONFIG_EMBEDDED=y | 83 | CONFIG_EMBEDDED=y |
@@ -85,17 +89,26 @@ CONFIG_HOTPLUG=y | |||
85 | CONFIG_PRINTK=y | 89 | CONFIG_PRINTK=y |
86 | CONFIG_BUG=y | 90 | CONFIG_BUG=y |
87 | CONFIG_ELF_CORE=y | 91 | CONFIG_ELF_CORE=y |
92 | CONFIG_COMPAT_BRK=y | ||
88 | CONFIG_BASE_FULL=y | 93 | CONFIG_BASE_FULL=y |
89 | CONFIG_FUTEX=y | 94 | CONFIG_FUTEX=y |
90 | CONFIG_ANON_INODES=y | 95 | CONFIG_ANON_INODES=y |
91 | CONFIG_EPOLL=y | 96 | CONFIG_EPOLL=y |
92 | CONFIG_SIGNALFD=y | 97 | CONFIG_SIGNALFD=y |
98 | CONFIG_TIMERFD=y | ||
93 | CONFIG_EVENTFD=y | 99 | CONFIG_EVENTFD=y |
94 | CONFIG_SHMEM=y | 100 | CONFIG_SHMEM=y |
95 | CONFIG_VM_EVENT_COUNTERS=y | 101 | CONFIG_VM_EVENT_COUNTERS=y |
96 | CONFIG_SLAB=y | 102 | CONFIG_SLAB=y |
97 | # CONFIG_SLUB is not set | 103 | # CONFIG_SLUB is not set |
98 | # CONFIG_SLOB is not set | 104 | # CONFIG_SLOB is not set |
105 | # CONFIG_PROFILING is not set | ||
106 | # CONFIG_MARKERS is not set | ||
107 | CONFIG_HAVE_OPROFILE=y | ||
108 | CONFIG_HAVE_KPROBES=y | ||
109 | CONFIG_HAVE_KRETPROBES=y | ||
110 | CONFIG_PROC_PAGE_MONITOR=y | ||
111 | CONFIG_SLABINFO=y | ||
99 | CONFIG_RT_MUTEXES=y | 112 | CONFIG_RT_MUTEXES=y |
100 | # CONFIG_TINY_SHMEM is not set | 113 | # CONFIG_TINY_SHMEM is not set |
101 | CONFIG_BASE_SMALL=0 | 114 | CONFIG_BASE_SMALL=0 |
@@ -117,6 +130,7 @@ CONFIG_DEFAULT_DEADLINE=y | |||
117 | # CONFIG_DEFAULT_CFQ is not set | 130 | # CONFIG_DEFAULT_CFQ is not set |
118 | # CONFIG_DEFAULT_NOOP is not set | 131 | # CONFIG_DEFAULT_NOOP is not set |
119 | CONFIG_DEFAULT_IOSCHED="deadline" | 132 | CONFIG_DEFAULT_IOSCHED="deadline" |
133 | CONFIG_CLASSIC_RCU=y | ||
120 | 134 | ||
121 | # | 135 | # |
122 | # Platform support | 136 | # Platform support |
@@ -125,8 +139,8 @@ CONFIG_DEFAULT_IOSCHED="deadline" | |||
125 | CONFIG_PPC_82xx=y | 139 | CONFIG_PPC_82xx=y |
126 | # CONFIG_PPC_83xx is not set | 140 | # CONFIG_PPC_83xx is not set |
127 | # CONFIG_PPC_86xx is not set | 141 | # CONFIG_PPC_86xx is not set |
128 | # CONFIG_PPC_MPC52xx is not set | 142 | # CONFIG_PPC_MPC512x is not set |
129 | # CONFIG_PPC_MPC5200 is not set | 143 | # CONFIG_PPC_MPC5121 is not set |
130 | # CONFIG_PPC_CELL is not set | 144 | # CONFIG_PPC_CELL is not set |
131 | # CONFIG_PPC_CELL_NATIVE is not set | 145 | # CONFIG_PPC_CELL_NATIVE is not set |
132 | # CONFIG_MPC8272_ADS is not set | 146 | # CONFIG_MPC8272_ADS is not set |
@@ -135,6 +149,7 @@ CONFIG_EP8248E=y | |||
135 | # CONFIG_PQ2ADS is not set | 149 | # CONFIG_PQ2ADS is not set |
136 | CONFIG_8260=y | 150 | CONFIG_8260=y |
137 | CONFIG_8272=y | 151 | CONFIG_8272=y |
152 | # CONFIG_IPIC is not set | ||
138 | # CONFIG_MPIC is not set | 153 | # CONFIG_MPIC is not set |
139 | # CONFIG_MPIC_WEIRD is not set | 154 | # CONFIG_MPIC_WEIRD is not set |
140 | # CONFIG_PPC_I8259 is not set | 155 | # CONFIG_PPC_I8259 is not set |
@@ -163,12 +178,16 @@ CONFIG_HZ_250=y | |||
163 | # CONFIG_HZ_300 is not set | 178 | # CONFIG_HZ_300 is not set |
164 | # CONFIG_HZ_1000 is not set | 179 | # CONFIG_HZ_1000 is not set |
165 | CONFIG_HZ=250 | 180 | CONFIG_HZ=250 |
181 | # CONFIG_SCHED_HRTICK is not set | ||
166 | CONFIG_PREEMPT_NONE=y | 182 | CONFIG_PREEMPT_NONE=y |
167 | # CONFIG_PREEMPT_VOLUNTARY is not set | 183 | # CONFIG_PREEMPT_VOLUNTARY is not set |
168 | # CONFIG_PREEMPT is not set | 184 | # CONFIG_PREEMPT is not set |
169 | CONFIG_BINFMT_ELF=y | 185 | CONFIG_BINFMT_ELF=y |
170 | CONFIG_BINFMT_MISC=y | 186 | CONFIG_BINFMT_MISC=y |
187 | # CONFIG_IOMMU_HELPER is not set | ||
171 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 188 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
189 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
190 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
172 | CONFIG_ARCH_FLATMEM_ENABLE=y | 191 | CONFIG_ARCH_FLATMEM_ENABLE=y |
173 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 192 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
174 | CONFIG_FLATMEM=y | 193 | CONFIG_FLATMEM=y |
@@ -183,11 +202,7 @@ CONFIG_VIRT_TO_BUS=y | |||
183 | CONFIG_PROC_DEVICETREE=y | 202 | CONFIG_PROC_DEVICETREE=y |
184 | # CONFIG_CMDLINE_BOOL is not set | 203 | # CONFIG_CMDLINE_BOOL is not set |
185 | # CONFIG_PM is not set | 204 | # CONFIG_PM is not set |
186 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
187 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
188 | # CONFIG_SECCOMP is not set | 205 | # CONFIG_SECCOMP is not set |
189 | CONFIG_WANT_DEVICE_TREE=y | ||
190 | CONFIG_DEVICE_TREE="ep8248e.dts" | ||
191 | CONFIG_ISA_DMA_API=y | 206 | CONFIG_ISA_DMA_API=y |
192 | 207 | ||
193 | # | 208 | # |
@@ -272,12 +287,13 @@ CONFIG_IPV6_SIT=y | |||
272 | # CONFIG_NETWORK_SECMARK is not set | 287 | # CONFIG_NETWORK_SECMARK is not set |
273 | CONFIG_NETFILTER=y | 288 | CONFIG_NETFILTER=y |
274 | # CONFIG_NETFILTER_DEBUG is not set | 289 | # CONFIG_NETFILTER_DEBUG is not set |
290 | CONFIG_NETFILTER_ADVANCED=y | ||
275 | 291 | ||
276 | # | 292 | # |
277 | # Core Netfilter Configuration | 293 | # Core Netfilter Configuration |
278 | # | 294 | # |
279 | # CONFIG_NETFILTER_NETLINK is not set | 295 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
280 | # CONFIG_NF_CONNTRACK_ENABLED is not set | 296 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
281 | # CONFIG_NF_CONNTRACK is not set | 297 | # CONFIG_NF_CONNTRACK is not set |
282 | # CONFIG_NETFILTER_XTABLES is not set | 298 | # CONFIG_NETFILTER_XTABLES is not set |
283 | 299 | ||
@@ -287,6 +303,13 @@ CONFIG_NETFILTER=y | |||
287 | # CONFIG_IP_NF_QUEUE is not set | 303 | # CONFIG_IP_NF_QUEUE is not set |
288 | # CONFIG_IP_NF_IPTABLES is not set | 304 | # CONFIG_IP_NF_IPTABLES is not set |
289 | # CONFIG_IP_NF_ARPTABLES is not set | 305 | # CONFIG_IP_NF_ARPTABLES is not set |
306 | |||
307 | # | ||
308 | # IPv6: Netfilter Configuration | ||
309 | # | ||
310 | # CONFIG_IP6_NF_QUEUE is not set | ||
311 | # CONFIG_IP6_NF_IPTABLES is not set | ||
312 | # CONFIG_ATM is not set | ||
290 | # CONFIG_BRIDGE is not set | 313 | # CONFIG_BRIDGE is not set |
291 | # CONFIG_VLAN_8021Q is not set | 314 | # CONFIG_VLAN_8021Q is not set |
292 | # CONFIG_DECNET is not set | 315 | # CONFIG_DECNET is not set |
@@ -300,6 +323,7 @@ CONFIG_NETFILTER=y | |||
300 | # | 323 | # |
301 | # CONFIG_NET_PKTGEN is not set | 324 | # CONFIG_NET_PKTGEN is not set |
302 | # CONFIG_HAMRADIO is not set | 325 | # CONFIG_HAMRADIO is not set |
326 | # CONFIG_CAN is not set | ||
303 | # CONFIG_IRDA is not set | 327 | # CONFIG_IRDA is not set |
304 | # CONFIG_BT is not set | 328 | # CONFIG_BT is not set |
305 | 329 | ||
@@ -308,6 +332,7 @@ CONFIG_NETFILTER=y | |||
308 | # | 332 | # |
309 | # CONFIG_CFG80211 is not set | 333 | # CONFIG_CFG80211 is not set |
310 | # CONFIG_WIRELESS_EXT is not set | 334 | # CONFIG_WIRELESS_EXT is not set |
335 | # CONFIG_MAC80211 is not set | ||
311 | # CONFIG_IEEE80211 is not set | 336 | # CONFIG_IEEE80211 is not set |
312 | # CONFIG_RFKILL is not set | 337 | # CONFIG_RFKILL is not set |
313 | 338 | ||
@@ -415,6 +440,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
415 | # CONFIG_CDROM_PKTCDVD is not set | 440 | # CONFIG_CDROM_PKTCDVD is not set |
416 | # CONFIG_ATA_OVER_ETH is not set | 441 | # CONFIG_ATA_OVER_ETH is not set |
417 | # CONFIG_MISC_DEVICES is not set | 442 | # CONFIG_MISC_DEVICES is not set |
443 | CONFIG_HAVE_IDE=y | ||
418 | # CONFIG_IDE is not set | 444 | # CONFIG_IDE is not set |
419 | 445 | ||
420 | # | 446 | # |
@@ -448,6 +474,7 @@ CONFIG_DAVICOM_PHY=y | |||
448 | # CONFIG_SMSC_PHY is not set | 474 | # CONFIG_SMSC_PHY is not set |
449 | # CONFIG_BROADCOM_PHY is not set | 475 | # CONFIG_BROADCOM_PHY is not set |
450 | # CONFIG_ICPLUS_PHY is not set | 476 | # CONFIG_ICPLUS_PHY is not set |
477 | # CONFIG_REALTEK_PHY is not set | ||
451 | # CONFIG_FIXED_PHY is not set | 478 | # CONFIG_FIXED_PHY is not set |
452 | CONFIG_MDIO_BITBANG=y | 479 | CONFIG_MDIO_BITBANG=y |
453 | CONFIG_NET_ETHERNET=y | 480 | CONFIG_NET_ETHERNET=y |
@@ -462,6 +489,8 @@ CONFIG_FS_ENET=y | |||
462 | CONFIG_FS_ENET_HAS_FCC=y | 489 | CONFIG_FS_ENET_HAS_FCC=y |
463 | # CONFIG_FS_ENET_MDIO_FCC is not set | 490 | # CONFIG_FS_ENET_MDIO_FCC is not set |
464 | CONFIG_NETDEV_1000=y | 491 | CONFIG_NETDEV_1000=y |
492 | # CONFIG_E1000E_ENABLED is not set | ||
493 | # CONFIG_GIANFAR is not set | ||
465 | CONFIG_NETDEV_10000=y | 494 | CONFIG_NETDEV_10000=y |
466 | 495 | ||
467 | # | 496 | # |
@@ -532,6 +561,7 @@ CONFIG_HW_RANDOM=y | |||
532 | # CONFIG_W1 is not set | 561 | # CONFIG_W1 is not set |
533 | # CONFIG_POWER_SUPPLY is not set | 562 | # CONFIG_POWER_SUPPLY is not set |
534 | # CONFIG_HWMON is not set | 563 | # CONFIG_HWMON is not set |
564 | # CONFIG_THERMAL is not set | ||
535 | # CONFIG_WATCHDOG is not set | 565 | # CONFIG_WATCHDOG is not set |
536 | 566 | ||
537 | # | 567 | # |
@@ -571,8 +601,10 @@ CONFIG_DAB=y | |||
571 | # CONFIG_SOUND is not set | 601 | # CONFIG_SOUND is not set |
572 | # CONFIG_USB_SUPPORT is not set | 602 | # CONFIG_USB_SUPPORT is not set |
573 | # CONFIG_MMC is not set | 603 | # CONFIG_MMC is not set |
604 | # CONFIG_MEMSTICK is not set | ||
574 | # CONFIG_NEW_LEDS is not set | 605 | # CONFIG_NEW_LEDS is not set |
575 | # CONFIG_RTC_CLASS is not set | 606 | # CONFIG_RTC_CLASS is not set |
607 | # CONFIG_DMADEVICES is not set | ||
576 | 608 | ||
577 | # | 609 | # |
578 | # Userspace I/O | 610 | # Userspace I/O |
@@ -593,12 +625,10 @@ CONFIG_JBD=y | |||
593 | # CONFIG_FS_POSIX_ACL is not set | 625 | # CONFIG_FS_POSIX_ACL is not set |
594 | # CONFIG_XFS_FS is not set | 626 | # CONFIG_XFS_FS is not set |
595 | # CONFIG_OCFS2_FS is not set | 627 | # CONFIG_OCFS2_FS is not set |
596 | # CONFIG_MINIX_FS is not set | 628 | CONFIG_DNOTIFY=y |
597 | # CONFIG_ROMFS_FS is not set | ||
598 | CONFIG_INOTIFY=y | 629 | CONFIG_INOTIFY=y |
599 | CONFIG_INOTIFY_USER=y | 630 | CONFIG_INOTIFY_USER=y |
600 | # CONFIG_QUOTA is not set | 631 | # CONFIG_QUOTA is not set |
601 | CONFIG_DNOTIFY=y | ||
602 | # CONFIG_AUTOFS_FS is not set | 632 | # CONFIG_AUTOFS_FS is not set |
603 | CONFIG_AUTOFS4_FS=y | 633 | CONFIG_AUTOFS4_FS=y |
604 | # CONFIG_FUSE_FS is not set | 634 | # CONFIG_FUSE_FS is not set |
@@ -626,6 +656,7 @@ CONFIG_SYSFS=y | |||
626 | CONFIG_TMPFS=y | 656 | CONFIG_TMPFS=y |
627 | # CONFIG_TMPFS_POSIX_ACL is not set | 657 | # CONFIG_TMPFS_POSIX_ACL is not set |
628 | # CONFIG_HUGETLB_PAGE is not set | 658 | # CONFIG_HUGETLB_PAGE is not set |
659 | # CONFIG_CONFIGFS_FS is not set | ||
629 | 660 | ||
630 | # | 661 | # |
631 | # Miscellaneous filesystems | 662 | # Miscellaneous filesystems |
@@ -634,8 +665,10 @@ CONFIG_TMPFS=y | |||
634 | # CONFIG_JFFS2_FS is not set | 665 | # CONFIG_JFFS2_FS is not set |
635 | CONFIG_CRAMFS=y | 666 | CONFIG_CRAMFS=y |
636 | # CONFIG_VXFS_FS is not set | 667 | # CONFIG_VXFS_FS is not set |
668 | # CONFIG_MINIX_FS is not set | ||
637 | # CONFIG_HPFS_FS is not set | 669 | # CONFIG_HPFS_FS is not set |
638 | # CONFIG_QNX4FS_FS is not set | 670 | # CONFIG_QNX4FS_FS is not set |
671 | # CONFIG_ROMFS_FS is not set | ||
639 | # CONFIG_SYSV_FS is not set | 672 | # CONFIG_SYSV_FS is not set |
640 | # CONFIG_UFS_FS is not set | 673 | # CONFIG_UFS_FS is not set |
641 | CONFIG_NETWORK_FILESYSTEMS=y | 674 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -715,7 +748,6 @@ CONFIG_NLS_ISO8859_1=y | |||
715 | # CONFIG_NLS_KOI8_R is not set | 748 | # CONFIG_NLS_KOI8_R is not set |
716 | # CONFIG_NLS_KOI8_U is not set | 749 | # CONFIG_NLS_KOI8_U is not set |
717 | CONFIG_NLS_UTF8=y | 750 | CONFIG_NLS_UTF8=y |
718 | # CONFIG_UCC_SLOW is not set | ||
719 | 751 | ||
720 | # | 752 | # |
721 | # Library routines | 753 | # Library routines |
@@ -731,9 +763,6 @@ CONFIG_PLIST=y | |||
731 | CONFIG_HAS_IOMEM=y | 763 | CONFIG_HAS_IOMEM=y |
732 | CONFIG_HAS_IOPORT=y | 764 | CONFIG_HAS_IOPORT=y |
733 | CONFIG_HAS_DMA=y | 765 | CONFIG_HAS_DMA=y |
734 | CONFIG_INSTRUMENTATION=y | ||
735 | # CONFIG_PROFILING is not set | ||
736 | # CONFIG_MARKERS is not set | ||
737 | 766 | ||
738 | # | 767 | # |
739 | # Kernel hacking | 768 | # Kernel hacking |
@@ -764,8 +793,8 @@ CONFIG_DEBUG_INFO=y | |||
764 | # CONFIG_DEBUG_VM is not set | 793 | # CONFIG_DEBUG_VM is not set |
765 | # CONFIG_DEBUG_LIST is not set | 794 | # CONFIG_DEBUG_LIST is not set |
766 | # CONFIG_DEBUG_SG is not set | 795 | # CONFIG_DEBUG_SG is not set |
767 | CONFIG_FORCED_INLINING=y | ||
768 | # CONFIG_BOOT_PRINTK_DELAY is not set | 796 | # CONFIG_BOOT_PRINTK_DELAY is not set |
797 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
769 | # CONFIG_FAULT_INJECTION is not set | 798 | # CONFIG_FAULT_INJECTION is not set |
770 | # CONFIG_SAMPLES is not set | 799 | # CONFIG_SAMPLES is not set |
771 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 800 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -784,6 +813,7 @@ CONFIG_BDI_SWITCH=y | |||
784 | CONFIG_CRYPTO=y | 813 | CONFIG_CRYPTO=y |
785 | CONFIG_CRYPTO_ALGAPI=y | 814 | CONFIG_CRYPTO_ALGAPI=y |
786 | CONFIG_CRYPTO_BLKCIPHER=y | 815 | CONFIG_CRYPTO_BLKCIPHER=y |
816 | # CONFIG_CRYPTO_SEQIV is not set | ||
787 | CONFIG_CRYPTO_MANAGER=y | 817 | CONFIG_CRYPTO_MANAGER=y |
788 | # CONFIG_CRYPTO_HMAC is not set | 818 | # CONFIG_CRYPTO_HMAC is not set |
789 | # CONFIG_CRYPTO_NULL is not set | 819 | # CONFIG_CRYPTO_NULL is not set |
@@ -797,6 +827,9 @@ CONFIG_CRYPTO_MD5=y | |||
797 | CONFIG_CRYPTO_ECB=y | 827 | CONFIG_CRYPTO_ECB=y |
798 | CONFIG_CRYPTO_CBC=y | 828 | CONFIG_CRYPTO_CBC=y |
799 | CONFIG_CRYPTO_PCBC=y | 829 | CONFIG_CRYPTO_PCBC=y |
830 | # CONFIG_CRYPTO_CTR is not set | ||
831 | # CONFIG_CRYPTO_GCM is not set | ||
832 | # CONFIG_CRYPTO_CCM is not set | ||
800 | # CONFIG_CRYPTO_CRYPTD is not set | 833 | # CONFIG_CRYPTO_CRYPTD is not set |
801 | CONFIG_CRYPTO_DES=y | 834 | CONFIG_CRYPTO_DES=y |
802 | # CONFIG_CRYPTO_FCRYPT is not set | 835 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -816,6 +849,7 @@ CONFIG_CRYPTO_DES=y | |||
816 | # CONFIG_CRYPTO_CRC32C is not set | 849 | # CONFIG_CRYPTO_CRC32C is not set |
817 | # CONFIG_CRYPTO_CAMELLIA is not set | 850 | # CONFIG_CRYPTO_CAMELLIA is not set |
818 | # CONFIG_CRYPTO_AUTHENC is not set | 851 | # CONFIG_CRYPTO_AUTHENC is not set |
852 | # CONFIG_CRYPTO_LZO is not set | ||
819 | # CONFIG_CRYPTO_HW is not set | 853 | # CONFIG_CRYPTO_HW is not set |
820 | # CONFIG_PPC_CLOCK is not set | 854 | # CONFIG_PPC_CLOCK is not set |
821 | CONFIG_PPC_LIB_RHEAP=y | 855 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/ep88xc_defconfig b/arch/powerpc/configs/ep88xc_defconfig index a1f98200d9e3..125b4764aadd 100644 --- a/arch/powerpc/configs/ep88xc_defconfig +++ b/arch/powerpc/configs/ep88xc_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:13 2007 | 4 | # Mon Mar 24 08:48:10 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -26,6 +26,7 @@ CONFIG_GENERIC_TIME=y | |||
26 | CONFIG_GENERIC_TIME_VSYSCALL=y | 26 | CONFIG_GENERIC_TIME_VSYSCALL=y |
27 | CONFIG_GENERIC_CLOCKEVENTS=y | 27 | CONFIG_GENERIC_CLOCKEVENTS=y |
28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
29 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
30 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
31 | CONFIG_ARCH_HAS_ILOG2_U32=y | 32 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -63,15 +64,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
63 | # CONFIG_POSIX_MQUEUE is not set | 64 | # CONFIG_POSIX_MQUEUE is not set |
64 | # CONFIG_BSD_PROCESS_ACCT is not set | 65 | # CONFIG_BSD_PROCESS_ACCT is not set |
65 | # CONFIG_TASKSTATS is not set | 66 | # CONFIG_TASKSTATS is not set |
66 | # CONFIG_USER_NS is not set | ||
67 | # CONFIG_PID_NS is not set | ||
68 | # CONFIG_AUDIT is not set | 67 | # CONFIG_AUDIT is not set |
69 | # CONFIG_IKCONFIG is not set | 68 | # CONFIG_IKCONFIG is not set |
70 | CONFIG_LOG_BUF_SHIFT=14 | 69 | CONFIG_LOG_BUF_SHIFT=14 |
71 | # CONFIG_CGROUPS is not set | 70 | # CONFIG_CGROUPS is not set |
71 | CONFIG_GROUP_SCHED=y | ||
72 | # CONFIG_FAIR_GROUP_SCHED is not set | 72 | # CONFIG_FAIR_GROUP_SCHED is not set |
73 | # CONFIG_RT_GROUP_SCHED is not set | ||
74 | CONFIG_USER_SCHED=y | ||
75 | # CONFIG_CGROUP_SCHED is not set | ||
73 | CONFIG_SYSFS_DEPRECATED=y | 76 | CONFIG_SYSFS_DEPRECATED=y |
77 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
74 | # CONFIG_RELAY is not set | 78 | # CONFIG_RELAY is not set |
79 | # CONFIG_NAMESPACES is not set | ||
75 | # CONFIG_BLK_DEV_INITRD is not set | 80 | # CONFIG_BLK_DEV_INITRD is not set |
76 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 81 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
77 | CONFIG_SYSCTL=y | 82 | CONFIG_SYSCTL=y |
@@ -84,11 +89,13 @@ CONFIG_HOTPLUG=y | |||
84 | CONFIG_PRINTK=y | 89 | CONFIG_PRINTK=y |
85 | CONFIG_BUG=y | 90 | CONFIG_BUG=y |
86 | # CONFIG_ELF_CORE is not set | 91 | # CONFIG_ELF_CORE is not set |
92 | CONFIG_COMPAT_BRK=y | ||
87 | # CONFIG_BASE_FULL is not set | 93 | # CONFIG_BASE_FULL is not set |
88 | # CONFIG_FUTEX is not set | 94 | # CONFIG_FUTEX is not set |
89 | CONFIG_ANON_INODES=y | 95 | CONFIG_ANON_INODES=y |
90 | CONFIG_EPOLL=y | 96 | CONFIG_EPOLL=y |
91 | CONFIG_SIGNALFD=y | 97 | CONFIG_SIGNALFD=y |
98 | CONFIG_TIMERFD=y | ||
92 | CONFIG_EVENTFD=y | 99 | CONFIG_EVENTFD=y |
93 | CONFIG_SHMEM=y | 100 | CONFIG_SHMEM=y |
94 | # CONFIG_VM_EVENT_COUNTERS is not set | 101 | # CONFIG_VM_EVENT_COUNTERS is not set |
@@ -96,6 +103,13 @@ CONFIG_SLUB_DEBUG=y | |||
96 | # CONFIG_SLAB is not set | 103 | # CONFIG_SLAB is not set |
97 | CONFIG_SLUB=y | 104 | CONFIG_SLUB=y |
98 | # CONFIG_SLOB is not set | 105 | # CONFIG_SLOB is not set |
106 | # CONFIG_PROFILING is not set | ||
107 | # CONFIG_MARKERS is not set | ||
108 | CONFIG_HAVE_OPROFILE=y | ||
109 | CONFIG_HAVE_KPROBES=y | ||
110 | CONFIG_HAVE_KRETPROBES=y | ||
111 | CONFIG_PROC_PAGE_MONITOR=y | ||
112 | CONFIG_SLABINFO=y | ||
99 | # CONFIG_TINY_SHMEM is not set | 113 | # CONFIG_TINY_SHMEM is not set |
100 | CONFIG_BASE_SMALL=1 | 114 | CONFIG_BASE_SMALL=1 |
101 | # CONFIG_MODULES is not set | 115 | # CONFIG_MODULES is not set |
@@ -117,12 +131,13 @@ CONFIG_DEFAULT_DEADLINE=y | |||
117 | # CONFIG_DEFAULT_CFQ is not set | 131 | # CONFIG_DEFAULT_CFQ is not set |
118 | # CONFIG_DEFAULT_NOOP is not set | 132 | # CONFIG_DEFAULT_NOOP is not set |
119 | CONFIG_DEFAULT_IOSCHED="deadline" | 133 | CONFIG_DEFAULT_IOSCHED="deadline" |
134 | CONFIG_CLASSIC_RCU=y | ||
120 | 135 | ||
121 | # | 136 | # |
122 | # Platform support | 137 | # Platform support |
123 | # | 138 | # |
124 | # CONFIG_PPC_MPC52xx is not set | 139 | # CONFIG_PPC_MPC512x is not set |
125 | # CONFIG_PPC_MPC5200 is not set | 140 | # CONFIG_PPC_MPC5121 is not set |
126 | # CONFIG_PPC_CELL is not set | 141 | # CONFIG_PPC_CELL is not set |
127 | # CONFIG_PPC_CELL_NATIVE is not set | 142 | # CONFIG_PPC_CELL_NATIVE is not set |
128 | CONFIG_CPM1=y | 143 | CONFIG_CPM1=y |
@@ -130,6 +145,7 @@ CONFIG_CPM1=y | |||
130 | # CONFIG_MPC86XADS is not set | 145 | # CONFIG_MPC86XADS is not set |
131 | # CONFIG_MPC885ADS is not set | 146 | # CONFIG_MPC885ADS is not set |
132 | CONFIG_PPC_EP88XC=y | 147 | CONFIG_PPC_EP88XC=y |
148 | # CONFIG_PPC_ADDER875 is not set | ||
133 | 149 | ||
134 | # | 150 | # |
135 | # MPC8xx CPM Options | 151 | # MPC8xx CPM Options |
@@ -146,6 +162,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
146 | # CONFIG_I2C_SPI_UCODE_PATCH is not set | 162 | # CONFIG_I2C_SPI_UCODE_PATCH is not set |
147 | # CONFIG_I2C_SPI_SMC1_UCODE_PATCH is not set | 163 | # CONFIG_I2C_SPI_SMC1_UCODE_PATCH is not set |
148 | # CONFIG_PQ2ADS is not set | 164 | # CONFIG_PQ2ADS is not set |
165 | # CONFIG_IPIC is not set | ||
149 | # CONFIG_MPIC is not set | 166 | # CONFIG_MPIC is not set |
150 | # CONFIG_MPIC_WEIRD is not set | 167 | # CONFIG_MPIC_WEIRD is not set |
151 | # CONFIG_PPC_I8259 is not set | 168 | # CONFIG_PPC_I8259 is not set |
@@ -156,7 +173,6 @@ CONFIG_NO_UCODE_PATCH=y | |||
156 | # CONFIG_PPC_INDIRECT_IO is not set | 173 | # CONFIG_PPC_INDIRECT_IO is not set |
157 | # CONFIG_GENERIC_IOMAP is not set | 174 | # CONFIG_GENERIC_IOMAP is not set |
158 | # CONFIG_CPU_FREQ is not set | 175 | # CONFIG_CPU_FREQ is not set |
159 | # CONFIG_CPM2 is not set | ||
160 | CONFIG_PPC_CPM_NEW_BINDING=y | 176 | CONFIG_PPC_CPM_NEW_BINDING=y |
161 | # CONFIG_FSL_ULI1575 is not set | 177 | # CONFIG_FSL_ULI1575 is not set |
162 | CONFIG_CPM=y | 178 | CONFIG_CPM=y |
@@ -174,6 +190,7 @@ CONFIG_HZ_100=y | |||
174 | # CONFIG_HZ_300 is not set | 190 | # CONFIG_HZ_300 is not set |
175 | # CONFIG_HZ_1000 is not set | 191 | # CONFIG_HZ_1000 is not set |
176 | CONFIG_HZ=100 | 192 | CONFIG_HZ=100 |
193 | # CONFIG_SCHED_HRTICK is not set | ||
177 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
178 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
179 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
@@ -181,7 +198,10 @@ CONFIG_BINFMT_ELF=y | |||
181 | # CONFIG_BINFMT_MISC is not set | 198 | # CONFIG_BINFMT_MISC is not set |
182 | # CONFIG_MATH_EMULATION is not set | 199 | # CONFIG_MATH_EMULATION is not set |
183 | CONFIG_8XX_MINIMAL_FPEMU=y | 200 | CONFIG_8XX_MINIMAL_FPEMU=y |
201 | # CONFIG_IOMMU_HELPER is not set | ||
184 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 202 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
203 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
204 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
185 | CONFIG_ARCH_FLATMEM_ENABLE=y | 205 | CONFIG_ARCH_FLATMEM_ENABLE=y |
186 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 206 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
187 | CONFIG_SELECT_MEMORY_MODEL=y | 207 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -200,11 +220,7 @@ CONFIG_VIRT_TO_BUS=y | |||
200 | CONFIG_PROC_DEVICETREE=y | 220 | CONFIG_PROC_DEVICETREE=y |
201 | # CONFIG_CMDLINE_BOOL is not set | 221 | # CONFIG_CMDLINE_BOOL is not set |
202 | # CONFIG_PM is not set | 222 | # CONFIG_PM is not set |
203 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
204 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
205 | # CONFIG_SECCOMP is not set | 223 | # CONFIG_SECCOMP is not set |
206 | CONFIG_WANT_DEVICE_TREE=y | ||
207 | CONFIG_DEVICE_TREE="ep88xc.dts" | ||
208 | CONFIG_ISA_DMA_API=y | 224 | CONFIG_ISA_DMA_API=y |
209 | 225 | ||
210 | # | 226 | # |
@@ -301,6 +317,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
301 | # | 317 | # |
302 | # CONFIG_NET_PKTGEN is not set | 318 | # CONFIG_NET_PKTGEN is not set |
303 | # CONFIG_HAMRADIO is not set | 319 | # CONFIG_HAMRADIO is not set |
320 | # CONFIG_CAN is not set | ||
304 | # CONFIG_IRDA is not set | 321 | # CONFIG_IRDA is not set |
305 | # CONFIG_BT is not set | 322 | # CONFIG_BT is not set |
306 | # CONFIG_AF_RXRPC is not set | 323 | # CONFIG_AF_RXRPC is not set |
@@ -407,6 +424,7 @@ CONFIG_OF_DEVICE=y | |||
407 | # CONFIG_PARPORT is not set | 424 | # CONFIG_PARPORT is not set |
408 | # CONFIG_BLK_DEV is not set | 425 | # CONFIG_BLK_DEV is not set |
409 | # CONFIG_MISC_DEVICES is not set | 426 | # CONFIG_MISC_DEVICES is not set |
427 | CONFIG_HAVE_IDE=y | ||
410 | # CONFIG_IDE is not set | 428 | # CONFIG_IDE is not set |
411 | 429 | ||
412 | # | 430 | # |
@@ -441,6 +459,7 @@ CONFIG_LXT_PHY=y | |||
441 | # CONFIG_SMSC_PHY is not set | 459 | # CONFIG_SMSC_PHY is not set |
442 | # CONFIG_BROADCOM_PHY is not set | 460 | # CONFIG_BROADCOM_PHY is not set |
443 | # CONFIG_ICPLUS_PHY is not set | 461 | # CONFIG_ICPLUS_PHY is not set |
462 | # CONFIG_REALTEK_PHY is not set | ||
444 | # CONFIG_FIXED_PHY is not set | 463 | # CONFIG_FIXED_PHY is not set |
445 | # CONFIG_MDIO_BITBANG is not set | 464 | # CONFIG_MDIO_BITBANG is not set |
446 | CONFIG_NET_ETHERNET=y | 465 | CONFIG_NET_ETHERNET=y |
@@ -465,7 +484,6 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
465 | # CONFIG_WAN is not set | 484 | # CONFIG_WAN is not set |
466 | # CONFIG_PPP is not set | 485 | # CONFIG_PPP is not set |
467 | # CONFIG_SLIP is not set | 486 | # CONFIG_SLIP is not set |
468 | # CONFIG_SHAPER is not set | ||
469 | # CONFIG_NETCONSOLE is not set | 487 | # CONFIG_NETCONSOLE is not set |
470 | # CONFIG_NETPOLL is not set | 488 | # CONFIG_NETPOLL is not set |
471 | # CONFIG_NET_POLL_CONTROLLER is not set | 489 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -528,6 +546,7 @@ CONFIG_GEN_RTC=y | |||
528 | # CONFIG_W1 is not set | 546 | # CONFIG_W1 is not set |
529 | # CONFIG_POWER_SUPPLY is not set | 547 | # CONFIG_POWER_SUPPLY is not set |
530 | # CONFIG_HWMON is not set | 548 | # CONFIG_HWMON is not set |
549 | # CONFIG_THERMAL is not set | ||
531 | # CONFIG_WATCHDOG is not set | 550 | # CONFIG_WATCHDOG is not set |
532 | 551 | ||
533 | # | 552 | # |
@@ -567,9 +586,11 @@ CONFIG_DAB=y | |||
567 | # CONFIG_SOUND is not set | 586 | # CONFIG_SOUND is not set |
568 | # CONFIG_USB_SUPPORT is not set | 587 | # CONFIG_USB_SUPPORT is not set |
569 | # CONFIG_MMC is not set | 588 | # CONFIG_MMC is not set |
589 | # CONFIG_MEMSTICK is not set | ||
570 | # CONFIG_NEW_LEDS is not set | 590 | # CONFIG_NEW_LEDS is not set |
571 | # CONFIG_EDAC is not set | 591 | # CONFIG_EDAC is not set |
572 | # CONFIG_RTC_CLASS is not set | 592 | # CONFIG_RTC_CLASS is not set |
593 | # CONFIG_DMADEVICES is not set | ||
573 | 594 | ||
574 | # | 595 | # |
575 | # Userspace I/O | 596 | # Userspace I/O |
@@ -588,11 +609,9 @@ CONFIG_DAB=y | |||
588 | # CONFIG_XFS_FS is not set | 609 | # CONFIG_XFS_FS is not set |
589 | # CONFIG_GFS2_FS is not set | 610 | # CONFIG_GFS2_FS is not set |
590 | # CONFIG_OCFS2_FS is not set | 611 | # CONFIG_OCFS2_FS is not set |
591 | # CONFIG_MINIX_FS is not set | 612 | # CONFIG_DNOTIFY is not set |
592 | # CONFIG_ROMFS_FS is not set | ||
593 | # CONFIG_INOTIFY is not set | 613 | # CONFIG_INOTIFY is not set |
594 | # CONFIG_QUOTA is not set | 614 | # CONFIG_QUOTA is not set |
595 | # CONFIG_DNOTIFY is not set | ||
596 | # CONFIG_AUTOFS_FS is not set | 615 | # CONFIG_AUTOFS_FS is not set |
597 | # CONFIG_AUTOFS4_FS is not set | 616 | # CONFIG_AUTOFS4_FS is not set |
598 | # CONFIG_FUSE_FS is not set | 617 | # CONFIG_FUSE_FS is not set |
@@ -635,8 +654,10 @@ CONFIG_TMPFS=y | |||
635 | # CONFIG_JFFS2_FS is not set | 654 | # CONFIG_JFFS2_FS is not set |
636 | CONFIG_CRAMFS=y | 655 | CONFIG_CRAMFS=y |
637 | # CONFIG_VXFS_FS is not set | 656 | # CONFIG_VXFS_FS is not set |
657 | # CONFIG_MINIX_FS is not set | ||
638 | # CONFIG_HPFS_FS is not set | 658 | # CONFIG_HPFS_FS is not set |
639 | # CONFIG_QNX4FS_FS is not set | 659 | # CONFIG_QNX4FS_FS is not set |
660 | # CONFIG_ROMFS_FS is not set | ||
640 | # CONFIG_SYSV_FS is not set | 661 | # CONFIG_SYSV_FS is not set |
641 | # CONFIG_UFS_FS is not set | 662 | # CONFIG_UFS_FS is not set |
642 | CONFIG_NETWORK_FILESYSTEMS=y | 663 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -683,7 +704,6 @@ CONFIG_MSDOS_PARTITION=y | |||
683 | # CONFIG_SYSV68_PARTITION is not set | 704 | # CONFIG_SYSV68_PARTITION is not set |
684 | # CONFIG_NLS is not set | 705 | # CONFIG_NLS is not set |
685 | # CONFIG_DLM is not set | 706 | # CONFIG_DLM is not set |
686 | # CONFIG_UCC_SLOW is not set | ||
687 | 707 | ||
688 | # | 708 | # |
689 | # Library routines | 709 | # Library routines |
@@ -698,7 +718,6 @@ CONFIG_ZLIB_INFLATE=y | |||
698 | CONFIG_HAS_IOMEM=y | 718 | CONFIG_HAS_IOMEM=y |
699 | CONFIG_HAS_IOPORT=y | 719 | CONFIG_HAS_IOPORT=y |
700 | CONFIG_HAS_DMA=y | 720 | CONFIG_HAS_DMA=y |
701 | # CONFIG_INSTRUMENTATION is not set | ||
702 | 721 | ||
703 | # | 722 | # |
704 | # Kernel hacking | 723 | # Kernel hacking |
@@ -717,6 +736,7 @@ CONFIG_SCHED_DEBUG=y | |||
717 | # CONFIG_SCHEDSTATS is not set | 736 | # CONFIG_SCHEDSTATS is not set |
718 | # CONFIG_TIMER_STATS is not set | 737 | # CONFIG_TIMER_STATS is not set |
719 | # CONFIG_SLUB_DEBUG_ON is not set | 738 | # CONFIG_SLUB_DEBUG_ON is not set |
739 | # CONFIG_SLUB_STATS is not set | ||
720 | # CONFIG_DEBUG_SPINLOCK is not set | 740 | # CONFIG_DEBUG_SPINLOCK is not set |
721 | # CONFIG_DEBUG_MUTEXES is not set | 741 | # CONFIG_DEBUG_MUTEXES is not set |
722 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 742 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
@@ -727,8 +747,8 @@ CONFIG_DEBUG_INFO=y | |||
727 | # CONFIG_DEBUG_VM is not set | 747 | # CONFIG_DEBUG_VM is not set |
728 | # CONFIG_DEBUG_LIST is not set | 748 | # CONFIG_DEBUG_LIST is not set |
729 | # CONFIG_DEBUG_SG is not set | 749 | # CONFIG_DEBUG_SG is not set |
730 | CONFIG_FORCED_INLINING=y | ||
731 | # CONFIG_BOOT_PRINTK_DELAY is not set | 750 | # CONFIG_BOOT_PRINTK_DELAY is not set |
751 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
732 | # CONFIG_FAULT_INJECTION is not set | 752 | # CONFIG_FAULT_INJECTION is not set |
733 | # CONFIG_SAMPLES is not set | 753 | # CONFIG_SAMPLES is not set |
734 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 754 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
diff --git a/arch/powerpc/configs/linkstation_defconfig b/arch/powerpc/configs/linkstation_defconfig index 7b4280811fb9..22a943afc3c0 100644 --- a/arch/powerpc/configs/linkstation_defconfig +++ b/arch/powerpc/configs/linkstation_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:22 2007 | 4 | # Mon Mar 24 08:48:10 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,16 +67,24 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | CONFIG_POSIX_MQUEUE=y | 67 | CONFIG_POSIX_MQUEUE=y |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | CONFIG_IKCONFIG=y | 71 | CONFIG_IKCONFIG=y |
73 | CONFIG_IKCONFIG_PROC=y | 72 | CONFIG_IKCONFIG_PROC=y |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | # CONFIG_FAIR_GROUP_SCHED is not set | 76 | # CONFIG_FAIR_GROUP_SCHED is not set |
77 | # CONFIG_RT_GROUP_SCHED is not set | ||
78 | CONFIG_USER_SCHED=y | ||
79 | # CONFIG_CGROUP_SCHED is not set | ||
77 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
78 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | CONFIG_NAMESPACES=y | ||
84 | # CONFIG_UTS_NS is not set | ||
85 | # CONFIG_IPC_NS is not set | ||
86 | # CONFIG_USER_NS is not set | ||
87 | # CONFIG_PID_NS is not set | ||
79 | CONFIG_BLK_DEV_INITRD=y | 88 | CONFIG_BLK_DEV_INITRD=y |
80 | CONFIG_INITRAMFS_SOURCE="" | 89 | CONFIG_INITRAMFS_SOURCE="" |
81 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +98,13 @@ CONFIG_HOTPLUG=y | |||
89 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
101 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 102 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 103 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 104 | CONFIG_ANON_INODES=y |
95 | CONFIG_EPOLL=y | 105 | CONFIG_EPOLL=y |
96 | CONFIG_SIGNALFD=y | 106 | CONFIG_SIGNALFD=y |
107 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 108 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 109 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 110 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +112,14 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 112 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | ||
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | ||
118 | # CONFIG_KPROBES is not set | ||
119 | CONFIG_HAVE_KPROBES=y | ||
120 | CONFIG_HAVE_KRETPROBES=y | ||
121 | CONFIG_PROC_PAGE_MONITOR=y | ||
122 | CONFIG_SLABINFO=y | ||
104 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
105 | # CONFIG_TINY_SHMEM is not set | 124 | # CONFIG_TINY_SHMEM is not set |
106 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
@@ -128,6 +147,7 @@ CONFIG_DEFAULT_AS=y | |||
128 | # CONFIG_DEFAULT_CFQ is not set | 147 | # CONFIG_DEFAULT_CFQ is not set |
129 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
130 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | ||
131 | 151 | ||
132 | # | 152 | # |
133 | # Platform support | 153 | # Platform support |
@@ -138,22 +158,24 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
138 | # CONFIG_PPC_86xx is not set | 158 | # CONFIG_PPC_86xx is not set |
139 | CONFIG_CLASSIC32=y | 159 | CONFIG_CLASSIC32=y |
140 | # CONFIG_PPC_CHRP is not set | 160 | # CONFIG_PPC_CHRP is not set |
161 | # CONFIG_PPC_MPC512x is not set | ||
162 | # CONFIG_PPC_MPC5121 is not set | ||
163 | # CONFIG_MPC5121_ADS is not set | ||
141 | # CONFIG_PPC_MPC52xx is not set | 164 | # CONFIG_PPC_MPC52xx is not set |
142 | # CONFIG_PPC_MPC5200 is not set | ||
143 | # CONFIG_PPC_EFIKA is not set | ||
144 | # CONFIG_PPC_LITE5200 is not set | ||
145 | # CONFIG_PPC_PMAC is not set | 165 | # CONFIG_PPC_PMAC is not set |
146 | # CONFIG_PPC_CELL is not set | 166 | # CONFIG_PPC_CELL is not set |
147 | # CONFIG_PPC_CELL_NATIVE is not set | 167 | # CONFIG_PPC_CELL_NATIVE is not set |
148 | # CONFIG_PQ2ADS is not set | 168 | # CONFIG_PQ2ADS is not set |
149 | CONFIG_EMBEDDED6xx=y | 169 | CONFIG_EMBEDDED6xx=y |
150 | CONFIG_LINKSTATION=y | 170 | CONFIG_LINKSTATION=y |
171 | # CONFIG_STORCENTER is not set | ||
151 | # CONFIG_MPC7448HPC2 is not set | 172 | # CONFIG_MPC7448HPC2 is not set |
152 | # CONFIG_PPC_HOLLY is not set | 173 | # CONFIG_PPC_HOLLY is not set |
153 | # CONFIG_PPC_PRPMC2800 is not set | 174 | # CONFIG_PPC_PRPMC2800 is not set |
154 | CONFIG_MPC10X_BRIDGE=y | 175 | CONFIG_MPC10X_BRIDGE=y |
155 | CONFIG_MPC10X_OPENPIC=y | 176 | CONFIG_MPC10X_OPENPIC=y |
156 | # CONFIG_MPC10X_STORE_GATHERING is not set | 177 | # CONFIG_MPC10X_STORE_GATHERING is not set |
178 | # CONFIG_IPIC is not set | ||
157 | CONFIG_MPIC=y | 179 | CONFIG_MPIC=y |
158 | # CONFIG_MPIC_WEIRD is not set | 180 | # CONFIG_MPIC_WEIRD is not set |
159 | # CONFIG_PPC_I8259 is not set | 181 | # CONFIG_PPC_I8259 is not set |
@@ -165,7 +187,6 @@ CONFIG_MPIC=y | |||
165 | # CONFIG_GENERIC_IOMAP is not set | 187 | # CONFIG_GENERIC_IOMAP is not set |
166 | # CONFIG_CPU_FREQ is not set | 188 | # CONFIG_CPU_FREQ is not set |
167 | # CONFIG_TAU is not set | 189 | # CONFIG_TAU is not set |
168 | # CONFIG_CPM2 is not set | ||
169 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
170 | 191 | ||
171 | # | 192 | # |
@@ -181,12 +202,16 @@ CONFIG_HZ_100=y | |||
181 | # CONFIG_HZ_300 is not set | 202 | # CONFIG_HZ_300 is not set |
182 | # CONFIG_HZ_1000 is not set | 203 | # CONFIG_HZ_1000 is not set |
183 | CONFIG_HZ=100 | 204 | CONFIG_HZ=100 |
205 | # CONFIG_SCHED_HRTICK is not set | ||
184 | CONFIG_PREEMPT_NONE=y | 206 | CONFIG_PREEMPT_NONE=y |
185 | # CONFIG_PREEMPT_VOLUNTARY is not set | 207 | # CONFIG_PREEMPT_VOLUNTARY is not set |
186 | # CONFIG_PREEMPT is not set | 208 | # CONFIG_PREEMPT is not set |
187 | CONFIG_BINFMT_ELF=y | 209 | CONFIG_BINFMT_ELF=y |
188 | # CONFIG_BINFMT_MISC is not set | 210 | # CONFIG_BINFMT_MISC is not set |
211 | # CONFIG_IOMMU_HELPER is not set | ||
189 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
213 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
190 | # CONFIG_KEXEC is not set | 215 | # CONFIG_KEXEC is not set |
191 | CONFIG_ARCH_FLATMEM_ENABLE=y | 216 | CONFIG_ARCH_FLATMEM_ENABLE=y |
192 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 217 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -206,10 +231,7 @@ CONFIG_VIRT_TO_BUS=y | |||
206 | CONFIG_PROC_DEVICETREE=y | 231 | CONFIG_PROC_DEVICETREE=y |
207 | # CONFIG_CMDLINE_BOOL is not set | 232 | # CONFIG_CMDLINE_BOOL is not set |
208 | # CONFIG_PM is not set | 233 | # CONFIG_PM is not set |
209 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
210 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
211 | CONFIG_SECCOMP=y | 234 | CONFIG_SECCOMP=y |
212 | # CONFIG_WANT_DEVICE_TREE is not set | ||
213 | CONFIG_ISA_DMA_API=y | 235 | CONFIG_ISA_DMA_API=y |
214 | 236 | ||
215 | # | 237 | # |
@@ -259,6 +281,7 @@ CONFIG_XFRM=y | |||
259 | # CONFIG_XFRM_USER is not set | 281 | # CONFIG_XFRM_USER is not set |
260 | # CONFIG_XFRM_SUB_POLICY is not set | 282 | # CONFIG_XFRM_SUB_POLICY is not set |
261 | # CONFIG_XFRM_MIGRATE is not set | 283 | # CONFIG_XFRM_MIGRATE is not set |
284 | # CONFIG_XFRM_STATISTICS is not set | ||
262 | # CONFIG_NET_KEY is not set | 285 | # CONFIG_NET_KEY is not set |
263 | CONFIG_INET=y | 286 | CONFIG_INET=y |
264 | CONFIG_IP_MULTICAST=y | 287 | CONFIG_IP_MULTICAST=y |
@@ -295,12 +318,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
295 | # CONFIG_NETWORK_SECMARK is not set | 318 | # CONFIG_NETWORK_SECMARK is not set |
296 | CONFIG_NETFILTER=y | 319 | CONFIG_NETFILTER=y |
297 | # CONFIG_NETFILTER_DEBUG is not set | 320 | # CONFIG_NETFILTER_DEBUG is not set |
321 | CONFIG_NETFILTER_ADVANCED=y | ||
298 | 322 | ||
299 | # | 323 | # |
300 | # Core Netfilter Configuration | 324 | # Core Netfilter Configuration |
301 | # | 325 | # |
302 | # CONFIG_NETFILTER_NETLINK is not set | 326 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
303 | CONFIG_NF_CONNTRACK_ENABLED=m | 327 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
304 | CONFIG_NF_CONNTRACK=m | 328 | CONFIG_NF_CONNTRACK=m |
305 | # CONFIG_NF_CT_ACCT is not set | 329 | # CONFIG_NF_CT_ACCT is not set |
306 | # CONFIG_NF_CONNTRACK_MARK is not set | 330 | # CONFIG_NF_CONNTRACK_MARK is not set |
@@ -317,6 +341,7 @@ CONFIG_NF_CONNTRACK_PPTP=m | |||
317 | # CONFIG_NF_CONNTRACK_SANE is not set | 341 | # CONFIG_NF_CONNTRACK_SANE is not set |
318 | CONFIG_NF_CONNTRACK_SIP=m | 342 | CONFIG_NF_CONNTRACK_SIP=m |
319 | CONFIG_NF_CONNTRACK_TFTP=m | 343 | CONFIG_NF_CONNTRACK_TFTP=m |
344 | # CONFIG_NF_CT_NETLINK is not set | ||
320 | CONFIG_NETFILTER_XTABLES=m | 345 | CONFIG_NETFILTER_XTABLES=m |
321 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | 346 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set |
322 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set | 347 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set |
@@ -325,8 +350,10 @@ CONFIG_NETFILTER_XTABLES=m | |||
325 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | 350 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set |
326 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | 351 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set |
327 | # CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set | 352 | # CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set |
353 | # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set | ||
328 | # CONFIG_NETFILTER_XT_TARGET_TRACE is not set | 354 | # CONFIG_NETFILTER_XT_TARGET_TRACE is not set |
329 | # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set | 355 | # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set |
356 | # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set | ||
330 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set | 357 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set |
331 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set | 358 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set |
332 | # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set | 359 | # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set |
@@ -336,14 +363,17 @@ CONFIG_NETFILTER_XTABLES=m | |||
336 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | 363 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set |
337 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | 364 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set |
338 | # CONFIG_NETFILTER_XT_MATCH_HELPER is not set | 365 | # CONFIG_NETFILTER_XT_MATCH_HELPER is not set |
366 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | ||
339 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | 367 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set |
340 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | 368 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set |
341 | CONFIG_NETFILTER_XT_MATCH_MAC=m | 369 | CONFIG_NETFILTER_XT_MATCH_MAC=m |
342 | # CONFIG_NETFILTER_XT_MATCH_MARK is not set | 370 | # CONFIG_NETFILTER_XT_MATCH_MARK is not set |
371 | # CONFIG_NETFILTER_XT_MATCH_OWNER is not set | ||
343 | # CONFIG_NETFILTER_XT_MATCH_POLICY is not set | 372 | # CONFIG_NETFILTER_XT_MATCH_POLICY is not set |
344 | # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set | 373 | # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set |
345 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m | 374 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m |
346 | # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set | 375 | # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set |
376 | # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set | ||
347 | # CONFIG_NETFILTER_XT_MATCH_REALM is not set | 377 | # CONFIG_NETFILTER_XT_MATCH_REALM is not set |
348 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set | 378 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set |
349 | CONFIG_NETFILTER_XT_MATCH_STATE=m | 379 | CONFIG_NETFILTER_XT_MATCH_STATE=m |
@@ -361,13 +391,10 @@ CONFIG_NF_CONNTRACK_IPV4=m | |||
361 | CONFIG_NF_CONNTRACK_PROC_COMPAT=y | 391 | CONFIG_NF_CONNTRACK_PROC_COMPAT=y |
362 | # CONFIG_IP_NF_QUEUE is not set | 392 | # CONFIG_IP_NF_QUEUE is not set |
363 | CONFIG_IP_NF_IPTABLES=m | 393 | CONFIG_IP_NF_IPTABLES=m |
364 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
365 | # CONFIG_IP_NF_MATCH_TOS is not set | ||
366 | CONFIG_IP_NF_MATCH_RECENT=m | 394 | CONFIG_IP_NF_MATCH_RECENT=m |
367 | # CONFIG_IP_NF_MATCH_ECN is not set | 395 | # CONFIG_IP_NF_MATCH_ECN is not set |
368 | # CONFIG_IP_NF_MATCH_AH is not set | 396 | # CONFIG_IP_NF_MATCH_AH is not set |
369 | # CONFIG_IP_NF_MATCH_TTL is not set | 397 | # CONFIG_IP_NF_MATCH_TTL is not set |
370 | CONFIG_IP_NF_MATCH_OWNER=m | ||
371 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | 398 | CONFIG_IP_NF_MATCH_ADDRTYPE=m |
372 | CONFIG_IP_NF_FILTER=m | 399 | CONFIG_IP_NF_FILTER=m |
373 | CONFIG_IP_NF_TARGET_REJECT=m | 400 | CONFIG_IP_NF_TARGET_REJECT=m |
@@ -378,7 +405,6 @@ CONFIG_NF_NAT_NEEDED=y | |||
378 | CONFIG_IP_NF_TARGET_MASQUERADE=m | 405 | CONFIG_IP_NF_TARGET_MASQUERADE=m |
379 | CONFIG_IP_NF_TARGET_REDIRECT=m | 406 | CONFIG_IP_NF_TARGET_REDIRECT=m |
380 | # CONFIG_IP_NF_TARGET_NETMAP is not set | 407 | # CONFIG_IP_NF_TARGET_NETMAP is not set |
381 | # CONFIG_IP_NF_TARGET_SAME is not set | ||
382 | # CONFIG_NF_NAT_SNMP_BASIC is not set | 408 | # CONFIG_NF_NAT_SNMP_BASIC is not set |
383 | CONFIG_NF_NAT_PROTO_GRE=m | 409 | CONFIG_NF_NAT_PROTO_GRE=m |
384 | CONFIG_NF_NAT_FTP=m | 410 | CONFIG_NF_NAT_FTP=m |
@@ -389,7 +415,6 @@ CONFIG_NF_NAT_PPTP=m | |||
389 | CONFIG_NF_NAT_H323=m | 415 | CONFIG_NF_NAT_H323=m |
390 | CONFIG_NF_NAT_SIP=m | 416 | CONFIG_NF_NAT_SIP=m |
391 | CONFIG_IP_NF_MANGLE=m | 417 | CONFIG_IP_NF_MANGLE=m |
392 | CONFIG_IP_NF_TARGET_TOS=m | ||
393 | CONFIG_IP_NF_TARGET_ECN=m | 418 | CONFIG_IP_NF_TARGET_ECN=m |
394 | CONFIG_IP_NF_TARGET_TTL=m | 419 | CONFIG_IP_NF_TARGET_TTL=m |
395 | # CONFIG_IP_NF_TARGET_CLUSTERIP is not set | 420 | # CONFIG_IP_NF_TARGET_CLUSTERIP is not set |
@@ -418,6 +443,7 @@ CONFIG_IP_NF_ARP_MANGLE=m | |||
418 | # | 443 | # |
419 | # CONFIG_NET_PKTGEN is not set | 444 | # CONFIG_NET_PKTGEN is not set |
420 | # CONFIG_HAMRADIO is not set | 445 | # CONFIG_HAMRADIO is not set |
446 | # CONFIG_CAN is not set | ||
421 | # CONFIG_IRDA is not set | 447 | # CONFIG_IRDA is not set |
422 | # CONFIG_BT is not set | 448 | # CONFIG_BT is not set |
423 | # CONFIG_AF_RXRPC is not set | 449 | # CONFIG_AF_RXRPC is not set |
@@ -459,6 +485,7 @@ CONFIG_MTD_CONCAT=y | |||
459 | CONFIG_MTD_PARTITIONS=y | 485 | CONFIG_MTD_PARTITIONS=y |
460 | # CONFIG_MTD_REDBOOT_PARTS is not set | 486 | # CONFIG_MTD_REDBOOT_PARTS is not set |
461 | # CONFIG_MTD_CMDLINE_PARTS is not set | 487 | # CONFIG_MTD_CMDLINE_PARTS is not set |
488 | # CONFIG_MTD_OF_PARTS is not set | ||
462 | 489 | ||
463 | # | 490 | # |
464 | # User Modules And Translation Layers | 491 | # User Modules And Translation Layers |
@@ -554,7 +581,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
554 | CONFIG_BLK_DEV_RAM=y | 581 | CONFIG_BLK_DEV_RAM=y |
555 | CONFIG_BLK_DEV_RAM_COUNT=2 | 582 | CONFIG_BLK_DEV_RAM_COUNT=2 |
556 | CONFIG_BLK_DEV_RAM_SIZE=8192 | 583 | CONFIG_BLK_DEV_RAM_SIZE=8192 |
557 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 584 | # CONFIG_BLK_DEV_XIP is not set |
558 | # CONFIG_CDROM_PKTCDVD is not set | 585 | # CONFIG_CDROM_PKTCDVD is not set |
559 | # CONFIG_ATA_OVER_ETH is not set | 586 | # CONFIG_ATA_OVER_ETH is not set |
560 | CONFIG_MISC_DEVICES=y | 587 | CONFIG_MISC_DEVICES=y |
@@ -562,6 +589,8 @@ CONFIG_MISC_DEVICES=y | |||
562 | # CONFIG_EEPROM_93CX6 is not set | 589 | # CONFIG_EEPROM_93CX6 is not set |
563 | # CONFIG_SGI_IOC4 is not set | 590 | # CONFIG_SGI_IOC4 is not set |
564 | # CONFIG_TIFM_CORE is not set | 591 | # CONFIG_TIFM_CORE is not set |
592 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
593 | CONFIG_HAVE_IDE=y | ||
565 | # CONFIG_IDE is not set | 594 | # CONFIG_IDE is not set |
566 | 595 | ||
567 | # | 596 | # |
@@ -626,6 +655,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
626 | # CONFIG_SCSI_IPS is not set | 655 | # CONFIG_SCSI_IPS is not set |
627 | # CONFIG_SCSI_INITIO is not set | 656 | # CONFIG_SCSI_INITIO is not set |
628 | # CONFIG_SCSI_INIA100 is not set | 657 | # CONFIG_SCSI_INIA100 is not set |
658 | # CONFIG_SCSI_MVSAS is not set | ||
629 | # CONFIG_SCSI_STEX is not set | 659 | # CONFIG_SCSI_STEX is not set |
630 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 660 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
631 | # CONFIG_SCSI_IPR is not set | 661 | # CONFIG_SCSI_IPR is not set |
@@ -656,6 +686,7 @@ CONFIG_ATA=y | |||
656 | # CONFIG_SATA_VIA is not set | 686 | # CONFIG_SATA_VIA is not set |
657 | # CONFIG_SATA_VITESSE is not set | 687 | # CONFIG_SATA_VITESSE is not set |
658 | # CONFIG_SATA_INIC162X is not set | 688 | # CONFIG_SATA_INIC162X is not set |
689 | # CONFIG_SATA_FSL is not set | ||
659 | # CONFIG_PATA_ALI is not set | 690 | # CONFIG_PATA_ALI is not set |
660 | # CONFIG_PATA_AMD is not set | 691 | # CONFIG_PATA_AMD is not set |
661 | # CONFIG_PATA_ARTOP is not set | 692 | # CONFIG_PATA_ARTOP is not set |
@@ -679,6 +710,7 @@ CONFIG_PATA_IT821X=y | |||
679 | # CONFIG_PATA_MPIIX is not set | 710 | # CONFIG_PATA_MPIIX is not set |
680 | # CONFIG_PATA_OLDPIIX is not set | 711 | # CONFIG_PATA_OLDPIIX is not set |
681 | # CONFIG_PATA_NETCELL is not set | 712 | # CONFIG_PATA_NETCELL is not set |
713 | # CONFIG_PATA_NINJA32 is not set | ||
682 | # CONFIG_PATA_NS87410 is not set | 714 | # CONFIG_PATA_NS87410 is not set |
683 | # CONFIG_PATA_NS87415 is not set | 715 | # CONFIG_PATA_NS87415 is not set |
684 | # CONFIG_PATA_OPTI is not set | 716 | # CONFIG_PATA_OPTI is not set |
@@ -693,6 +725,7 @@ CONFIG_PATA_SIL680=y | |||
693 | # CONFIG_PATA_SIS is not set | 725 | # CONFIG_PATA_SIS is not set |
694 | # CONFIG_PATA_VIA is not set | 726 | # CONFIG_PATA_VIA is not set |
695 | # CONFIG_PATA_WINBOND is not set | 727 | # CONFIG_PATA_WINBOND is not set |
728 | # CONFIG_PATA_PLATFORM is not set | ||
696 | # CONFIG_MD is not set | 729 | # CONFIG_MD is not set |
697 | # CONFIG_FUSION is not set | 730 | # CONFIG_FUSION is not set |
698 | 731 | ||
@@ -711,7 +744,6 @@ CONFIG_NETDEVICES=y | |||
711 | # CONFIG_EQUALIZER is not set | 744 | # CONFIG_EQUALIZER is not set |
712 | CONFIG_TUN=m | 745 | CONFIG_TUN=m |
713 | # CONFIG_VETH is not set | 746 | # CONFIG_VETH is not set |
714 | # CONFIG_IP1000 is not set | ||
715 | # CONFIG_ARCNET is not set | 747 | # CONFIG_ARCNET is not set |
716 | # CONFIG_PHYLIB is not set | 748 | # CONFIG_PHYLIB is not set |
717 | CONFIG_NET_ETHERNET=y | 749 | CONFIG_NET_ETHERNET=y |
@@ -742,6 +774,9 @@ CONFIG_NETDEV_1000=y | |||
742 | # CONFIG_DL2K is not set | 774 | # CONFIG_DL2K is not set |
743 | # CONFIG_E1000 is not set | 775 | # CONFIG_E1000 is not set |
744 | # CONFIG_E1000E is not set | 776 | # CONFIG_E1000E is not set |
777 | # CONFIG_E1000E_ENABLED is not set | ||
778 | # CONFIG_IP1000 is not set | ||
779 | # CONFIG_IGB is not set | ||
745 | # CONFIG_NS83820 is not set | 780 | # CONFIG_NS83820 is not set |
746 | # CONFIG_HAMACHI is not set | 781 | # CONFIG_HAMACHI is not set |
747 | # CONFIG_YELLOWFIN is not set | 782 | # CONFIG_YELLOWFIN is not set |
@@ -754,6 +789,7 @@ CONFIG_R8169=y | |||
754 | # CONFIG_VIA_VELOCITY is not set | 789 | # CONFIG_VIA_VELOCITY is not set |
755 | # CONFIG_TIGON3 is not set | 790 | # CONFIG_TIGON3 is not set |
756 | # CONFIG_BNX2 is not set | 791 | # CONFIG_BNX2 is not set |
792 | # CONFIG_GIANFAR is not set | ||
757 | # CONFIG_MV643XX_ETH is not set | 793 | # CONFIG_MV643XX_ETH is not set |
758 | # CONFIG_QLA3XXX is not set | 794 | # CONFIG_QLA3XXX is not set |
759 | # CONFIG_ATL1 is not set | 795 | # CONFIG_ATL1 is not set |
@@ -768,6 +804,7 @@ CONFIG_NETDEV_10000=y | |||
768 | # CONFIG_NIU is not set | 804 | # CONFIG_NIU is not set |
769 | # CONFIG_MLX4_CORE is not set | 805 | # CONFIG_MLX4_CORE is not set |
770 | # CONFIG_TEHUTI is not set | 806 | # CONFIG_TEHUTI is not set |
807 | # CONFIG_BNX2X is not set | ||
771 | # CONFIG_TR is not set | 808 | # CONFIG_TR is not set |
772 | 809 | ||
773 | # | 810 | # |
@@ -790,7 +827,6 @@ CONFIG_NETDEV_10000=y | |||
790 | # CONFIG_PPP is not set | 827 | # CONFIG_PPP is not set |
791 | # CONFIG_SLIP is not set | 828 | # CONFIG_SLIP is not set |
792 | # CONFIG_NET_FC is not set | 829 | # CONFIG_NET_FC is not set |
793 | # CONFIG_SHAPER is not set | ||
794 | CONFIG_NETCONSOLE=y | 830 | CONFIG_NETCONSOLE=y |
795 | # CONFIG_NETCONSOLE_DYNAMIC is not set | 831 | # CONFIG_NETCONSOLE_DYNAMIC is not set |
796 | CONFIG_NETPOLL=y | 832 | CONFIG_NETPOLL=y |
@@ -851,6 +887,7 @@ CONFIG_VT_CONSOLE=y | |||
851 | CONFIG_HW_CONSOLE=y | 887 | CONFIG_HW_CONSOLE=y |
852 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 888 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
853 | # CONFIG_SERIAL_NONSTANDARD is not set | 889 | # CONFIG_SERIAL_NONSTANDARD is not set |
890 | # CONFIG_NOZOMI is not set | ||
854 | 891 | ||
855 | # | 892 | # |
856 | # Serial drivers | 893 | # Serial drivers |
@@ -924,14 +961,12 @@ CONFIG_I2C_MPC=y | |||
924 | # | 961 | # |
925 | # Miscellaneous I2C Chip support | 962 | # Miscellaneous I2C Chip support |
926 | # | 963 | # |
927 | # CONFIG_SENSORS_DS1337 is not set | ||
928 | # CONFIG_SENSORS_DS1374 is not set | ||
929 | # CONFIG_DS1682 is not set | 964 | # CONFIG_DS1682 is not set |
930 | CONFIG_SENSORS_EEPROM=m | 965 | CONFIG_SENSORS_EEPROM=m |
931 | # CONFIG_SENSORS_PCF8574 is not set | 966 | # CONFIG_SENSORS_PCF8574 is not set |
932 | # CONFIG_SENSORS_PCA9539 is not set | 967 | # CONFIG_PCF8575 is not set |
933 | # CONFIG_SENSORS_PCF8591 is not set | 968 | # CONFIG_SENSORS_PCF8591 is not set |
934 | # CONFIG_SENSORS_M41T00 is not set | 969 | # CONFIG_TPS65010 is not set |
935 | # CONFIG_SENSORS_MAX6875 is not set | 970 | # CONFIG_SENSORS_MAX6875 is not set |
936 | # CONFIG_SENSORS_TSL2550 is not set | 971 | # CONFIG_SENSORS_TSL2550 is not set |
937 | # CONFIG_I2C_DEBUG_CORE is not set | 972 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -956,6 +991,7 @@ CONFIG_HWMON=y | |||
956 | # CONFIG_SENSORS_ADM1031 is not set | 991 | # CONFIG_SENSORS_ADM1031 is not set |
957 | # CONFIG_SENSORS_ADM9240 is not set | 992 | # CONFIG_SENSORS_ADM9240 is not set |
958 | # CONFIG_SENSORS_ADT7470 is not set | 993 | # CONFIG_SENSORS_ADT7470 is not set |
994 | # CONFIG_SENSORS_ADT7473 is not set | ||
959 | # CONFIG_SENSORS_ATXP1 is not set | 995 | # CONFIG_SENSORS_ATXP1 is not set |
960 | # CONFIG_SENSORS_DS1621 is not set | 996 | # CONFIG_SENSORS_DS1621 is not set |
961 | # CONFIG_SENSORS_I5K_AMB is not set | 997 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -985,6 +1021,7 @@ CONFIG_HWMON=y | |||
985 | # CONFIG_SENSORS_SMSC47M1 is not set | 1021 | # CONFIG_SENSORS_SMSC47M1 is not set |
986 | # CONFIG_SENSORS_SMSC47M192 is not set | 1022 | # CONFIG_SENSORS_SMSC47M192 is not set |
987 | # CONFIG_SENSORS_SMSC47B397 is not set | 1023 | # CONFIG_SENSORS_SMSC47B397 is not set |
1024 | # CONFIG_SENSORS_ADS7828 is not set | ||
988 | # CONFIG_SENSORS_THMC50 is not set | 1025 | # CONFIG_SENSORS_THMC50 is not set |
989 | # CONFIG_SENSORS_VIA686A is not set | 1026 | # CONFIG_SENSORS_VIA686A is not set |
990 | # CONFIG_SENSORS_VT1211 is not set | 1027 | # CONFIG_SENSORS_VT1211 is not set |
@@ -994,9 +1031,11 @@ CONFIG_HWMON=y | |||
994 | # CONFIG_SENSORS_W83792D is not set | 1031 | # CONFIG_SENSORS_W83792D is not set |
995 | # CONFIG_SENSORS_W83793 is not set | 1032 | # CONFIG_SENSORS_W83793 is not set |
996 | # CONFIG_SENSORS_W83L785TS is not set | 1033 | # CONFIG_SENSORS_W83L785TS is not set |
1034 | # CONFIG_SENSORS_W83L786NG is not set | ||
997 | # CONFIG_SENSORS_W83627HF is not set | 1035 | # CONFIG_SENSORS_W83627HF is not set |
998 | # CONFIG_SENSORS_W83627EHF is not set | 1036 | # CONFIG_SENSORS_W83627EHF is not set |
999 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1037 | # CONFIG_HWMON_DEBUG_CHIP is not set |
1038 | # CONFIG_THERMAL is not set | ||
1000 | # CONFIG_WATCHDOG is not set | 1039 | # CONFIG_WATCHDOG is not set |
1001 | 1040 | ||
1002 | # | 1041 | # |
@@ -1063,6 +1102,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
1063 | CONFIG_USB_ARCH_HAS_EHCI=y | 1102 | CONFIG_USB_ARCH_HAS_EHCI=y |
1064 | CONFIG_USB=y | 1103 | CONFIG_USB=y |
1065 | # CONFIG_USB_DEBUG is not set | 1104 | # CONFIG_USB_DEBUG is not set |
1105 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1066 | 1106 | ||
1067 | # | 1107 | # |
1068 | # Miscellaneous USB options | 1108 | # Miscellaneous USB options |
@@ -1076,9 +1116,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
1076 | # USB Host Controller Drivers | 1116 | # USB Host Controller Drivers |
1077 | # | 1117 | # |
1078 | CONFIG_USB_EHCI_HCD=y | 1118 | CONFIG_USB_EHCI_HCD=y |
1079 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
1080 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1119 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1081 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1120 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1121 | # CONFIG_USB_EHCI_FSL is not set | ||
1122 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1082 | # CONFIG_USB_ISP116X_HCD is not set | 1123 | # CONFIG_USB_ISP116X_HCD is not set |
1083 | CONFIG_USB_OHCI_HCD=y | 1124 | CONFIG_USB_OHCI_HCD=y |
1084 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1125 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
@@ -1130,12 +1171,9 @@ CONFIG_USB_MON=y | |||
1130 | # | 1171 | # |
1131 | # USB port drivers | 1172 | # USB port drivers |
1132 | # | 1173 | # |
1133 | |||
1134 | # | ||
1135 | # USB Serial Converter support | ||
1136 | # | ||
1137 | CONFIG_USB_SERIAL=y | 1174 | CONFIG_USB_SERIAL=y |
1138 | CONFIG_USB_SERIAL_CONSOLE=y | 1175 | CONFIG_USB_SERIAL_CONSOLE=y |
1176 | # CONFIG_USB_EZUSB is not set | ||
1139 | # CONFIG_USB_SERIAL_GENERIC is not set | 1177 | # CONFIG_USB_SERIAL_GENERIC is not set |
1140 | # CONFIG_USB_SERIAL_AIRCABLE is not set | 1178 | # CONFIG_USB_SERIAL_AIRCABLE is not set |
1141 | # CONFIG_USB_SERIAL_AIRPRIME is not set | 1179 | # CONFIG_USB_SERIAL_AIRPRIME is not set |
@@ -1156,6 +1194,7 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
1156 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set | 1194 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set |
1157 | # CONFIG_USB_SERIAL_GARMIN is not set | 1195 | # CONFIG_USB_SERIAL_GARMIN is not set |
1158 | # CONFIG_USB_SERIAL_IPW is not set | 1196 | # CONFIG_USB_SERIAL_IPW is not set |
1197 | # CONFIG_USB_SERIAL_IUU is not set | ||
1159 | # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set | 1198 | # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set |
1160 | # CONFIG_USB_SERIAL_KEYSPAN is not set | 1199 | # CONFIG_USB_SERIAL_KEYSPAN is not set |
1161 | # CONFIG_USB_SERIAL_KLSI is not set | 1200 | # CONFIG_USB_SERIAL_KLSI is not set |
@@ -1199,16 +1238,9 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
1199 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1238 | # CONFIG_USB_TRANCEVIBRATOR is not set |
1200 | # CONFIG_USB_IOWARRIOR is not set | 1239 | # CONFIG_USB_IOWARRIOR is not set |
1201 | # CONFIG_USB_TEST is not set | 1240 | # CONFIG_USB_TEST is not set |
1202 | |||
1203 | # | ||
1204 | # USB DSL modem support | ||
1205 | # | ||
1206 | |||
1207 | # | ||
1208 | # USB Gadget Support | ||
1209 | # | ||
1210 | # CONFIG_USB_GADGET is not set | 1241 | # CONFIG_USB_GADGET is not set |
1211 | # CONFIG_MMC is not set | 1242 | # CONFIG_MMC is not set |
1243 | # CONFIG_MEMSTICK is not set | ||
1212 | # CONFIG_NEW_LEDS is not set | 1244 | # CONFIG_NEW_LEDS is not set |
1213 | # CONFIG_INFINIBAND is not set | 1245 | # CONFIG_INFINIBAND is not set |
1214 | # CONFIG_EDAC is not set | 1246 | # CONFIG_EDAC is not set |
@@ -1240,6 +1272,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1240 | # CONFIG_RTC_DRV_PCF8563 is not set | 1272 | # CONFIG_RTC_DRV_PCF8563 is not set |
1241 | # CONFIG_RTC_DRV_PCF8583 is not set | 1273 | # CONFIG_RTC_DRV_PCF8583 is not set |
1242 | # CONFIG_RTC_DRV_M41T80 is not set | 1274 | # CONFIG_RTC_DRV_M41T80 is not set |
1275 | # CONFIG_RTC_DRV_S35390A is not set | ||
1243 | 1276 | ||
1244 | # | 1277 | # |
1245 | # SPI RTC drivers | 1278 | # SPI RTC drivers |
@@ -1249,9 +1282,10 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1249 | # Platform RTC drivers | 1282 | # Platform RTC drivers |
1250 | # | 1283 | # |
1251 | # CONFIG_RTC_DRV_CMOS is not set | 1284 | # CONFIG_RTC_DRV_CMOS is not set |
1285 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1252 | # CONFIG_RTC_DRV_DS1553 is not set | 1286 | # CONFIG_RTC_DRV_DS1553 is not set |
1253 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1254 | # CONFIG_RTC_DRV_DS1742 is not set | 1287 | # CONFIG_RTC_DRV_DS1742 is not set |
1288 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1255 | # CONFIG_RTC_DRV_M48T86 is not set | 1289 | # CONFIG_RTC_DRV_M48T86 is not set |
1256 | # CONFIG_RTC_DRV_M48T59 is not set | 1290 | # CONFIG_RTC_DRV_M48T59 is not set |
1257 | # CONFIG_RTC_DRV_V3020 is not set | 1291 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1259,6 +1293,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1259 | # | 1293 | # |
1260 | # on-CPU RTC drivers | 1294 | # on-CPU RTC drivers |
1261 | # | 1295 | # |
1296 | # CONFIG_DMADEVICES is not set | ||
1262 | 1297 | ||
1263 | # | 1298 | # |
1264 | # Userspace I/O | 1299 | # Userspace I/O |
@@ -1288,12 +1323,10 @@ CONFIG_XFS_FS=m | |||
1288 | # CONFIG_XFS_RT is not set | 1323 | # CONFIG_XFS_RT is not set |
1289 | # CONFIG_GFS2_FS is not set | 1324 | # CONFIG_GFS2_FS is not set |
1290 | # CONFIG_OCFS2_FS is not set | 1325 | # CONFIG_OCFS2_FS is not set |
1291 | # CONFIG_MINIX_FS is not set | 1326 | CONFIG_DNOTIFY=y |
1292 | # CONFIG_ROMFS_FS is not set | ||
1293 | CONFIG_INOTIFY=y | 1327 | CONFIG_INOTIFY=y |
1294 | CONFIG_INOTIFY_USER=y | 1328 | CONFIG_INOTIFY_USER=y |
1295 | # CONFIG_QUOTA is not set | 1329 | # CONFIG_QUOTA is not set |
1296 | CONFIG_DNOTIFY=y | ||
1297 | # CONFIG_AUTOFS_FS is not set | 1330 | # CONFIG_AUTOFS_FS is not set |
1298 | # CONFIG_AUTOFS4_FS is not set | 1331 | # CONFIG_AUTOFS4_FS is not set |
1299 | # CONFIG_FUSE_FS is not set | 1332 | # CONFIG_FUSE_FS is not set |
@@ -1344,8 +1377,10 @@ CONFIG_TMPFS=y | |||
1344 | # CONFIG_JFFS2_FS is not set | 1377 | # CONFIG_JFFS2_FS is not set |
1345 | # CONFIG_CRAMFS is not set | 1378 | # CONFIG_CRAMFS is not set |
1346 | # CONFIG_VXFS_FS is not set | 1379 | # CONFIG_VXFS_FS is not set |
1380 | # CONFIG_MINIX_FS is not set | ||
1347 | # CONFIG_HPFS_FS is not set | 1381 | # CONFIG_HPFS_FS is not set |
1348 | # CONFIG_QNX4FS_FS is not set | 1382 | # CONFIG_QNX4FS_FS is not set |
1383 | # CONFIG_ROMFS_FS is not set | ||
1349 | # CONFIG_SYSV_FS is not set | 1384 | # CONFIG_SYSV_FS is not set |
1350 | # CONFIG_UFS_FS is not set | 1385 | # CONFIG_UFS_FS is not set |
1351 | CONFIG_NETWORK_FILESYSTEMS=y | 1386 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1427,7 +1462,6 @@ CONFIG_NLS_ISO8859_1=m | |||
1427 | # CONFIG_NLS_KOI8_U is not set | 1462 | # CONFIG_NLS_KOI8_U is not set |
1428 | CONFIG_NLS_UTF8=m | 1463 | CONFIG_NLS_UTF8=m |
1429 | # CONFIG_DLM is not set | 1464 | # CONFIG_DLM is not set |
1430 | # CONFIG_UCC_SLOW is not set | ||
1431 | 1465 | ||
1432 | # | 1466 | # |
1433 | # Library routines | 1467 | # Library routines |
@@ -1447,7 +1481,6 @@ CONFIG_PLIST=y | |||
1447 | CONFIG_HAS_IOMEM=y | 1481 | CONFIG_HAS_IOMEM=y |
1448 | CONFIG_HAS_IOPORT=y | 1482 | CONFIG_HAS_IOPORT=y |
1449 | CONFIG_HAS_DMA=y | 1483 | CONFIG_HAS_DMA=y |
1450 | # CONFIG_INSTRUMENTATION is not set | ||
1451 | 1484 | ||
1452 | # | 1485 | # |
1453 | # Kernel hacking | 1486 | # Kernel hacking |
@@ -1466,6 +1499,7 @@ CONFIG_SCHED_DEBUG=y | |||
1466 | # CONFIG_SCHEDSTATS is not set | 1499 | # CONFIG_SCHEDSTATS is not set |
1467 | # CONFIG_TIMER_STATS is not set | 1500 | # CONFIG_TIMER_STATS is not set |
1468 | # CONFIG_SLUB_DEBUG_ON is not set | 1501 | # CONFIG_SLUB_DEBUG_ON is not set |
1502 | # CONFIG_SLUB_STATS is not set | ||
1469 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1503 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1470 | # CONFIG_RT_MUTEX_TESTER is not set | 1504 | # CONFIG_RT_MUTEX_TESTER is not set |
1471 | # CONFIG_DEBUG_SPINLOCK is not set | 1505 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1478,9 +1512,9 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1478 | # CONFIG_DEBUG_VM is not set | 1512 | # CONFIG_DEBUG_VM is not set |
1479 | # CONFIG_DEBUG_LIST is not set | 1513 | # CONFIG_DEBUG_LIST is not set |
1480 | # CONFIG_DEBUG_SG is not set | 1514 | # CONFIG_DEBUG_SG is not set |
1481 | CONFIG_FORCED_INLINING=y | ||
1482 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1515 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1483 | # CONFIG_RCU_TORTURE_TEST is not set | 1516 | # CONFIG_RCU_TORTURE_TEST is not set |
1517 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1484 | # CONFIG_FAULT_INJECTION is not set | 1518 | # CONFIG_FAULT_INJECTION is not set |
1485 | # CONFIG_SAMPLES is not set | 1519 | # CONFIG_SAMPLES is not set |
1486 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1520 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1500,6 +1534,7 @@ CONFIG_FORCED_INLINING=y | |||
1500 | CONFIG_CRYPTO=y | 1534 | CONFIG_CRYPTO=y |
1501 | CONFIG_CRYPTO_ALGAPI=y | 1535 | CONFIG_CRYPTO_ALGAPI=y |
1502 | CONFIG_CRYPTO_BLKCIPHER=y | 1536 | CONFIG_CRYPTO_BLKCIPHER=y |
1537 | # CONFIG_CRYPTO_SEQIV is not set | ||
1503 | CONFIG_CRYPTO_MANAGER=y | 1538 | CONFIG_CRYPTO_MANAGER=y |
1504 | # CONFIG_CRYPTO_HMAC is not set | 1539 | # CONFIG_CRYPTO_HMAC is not set |
1505 | # CONFIG_CRYPTO_XCBC is not set | 1540 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1517,6 +1552,9 @@ CONFIG_CRYPTO_CBC=y | |||
1517 | CONFIG_CRYPTO_PCBC=m | 1552 | CONFIG_CRYPTO_PCBC=m |
1518 | # CONFIG_CRYPTO_LRW is not set | 1553 | # CONFIG_CRYPTO_LRW is not set |
1519 | # CONFIG_CRYPTO_XTS is not set | 1554 | # CONFIG_CRYPTO_XTS is not set |
1555 | # CONFIG_CRYPTO_CTR is not set | ||
1556 | # CONFIG_CRYPTO_GCM is not set | ||
1557 | # CONFIG_CRYPTO_CCM is not set | ||
1520 | # CONFIG_CRYPTO_CRYPTD is not set | 1558 | # CONFIG_CRYPTO_CRYPTD is not set |
1521 | CONFIG_CRYPTO_DES=y | 1559 | CONFIG_CRYPTO_DES=y |
1522 | # CONFIG_CRYPTO_FCRYPT is not set | 1560 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1532,11 +1570,14 @@ CONFIG_CRYPTO_ARC4=m | |||
1532 | # CONFIG_CRYPTO_KHAZAD is not set | 1570 | # CONFIG_CRYPTO_KHAZAD is not set |
1533 | # CONFIG_CRYPTO_ANUBIS is not set | 1571 | # CONFIG_CRYPTO_ANUBIS is not set |
1534 | # CONFIG_CRYPTO_SEED is not set | 1572 | # CONFIG_CRYPTO_SEED is not set |
1573 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1535 | CONFIG_CRYPTO_DEFLATE=m | 1574 | CONFIG_CRYPTO_DEFLATE=m |
1536 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1575 | CONFIG_CRYPTO_MICHAEL_MIC=m |
1537 | CONFIG_CRYPTO_CRC32C=m | 1576 | CONFIG_CRYPTO_CRC32C=m |
1538 | # CONFIG_CRYPTO_CAMELLIA is not set | 1577 | # CONFIG_CRYPTO_CAMELLIA is not set |
1539 | # CONFIG_CRYPTO_TEST is not set | 1578 | # CONFIG_CRYPTO_TEST is not set |
1540 | # CONFIG_CRYPTO_AUTHENC is not set | 1579 | # CONFIG_CRYPTO_AUTHENC is not set |
1580 | # CONFIG_CRYPTO_LZO is not set | ||
1541 | CONFIG_CRYPTO_HW=y | 1581 | CONFIG_CRYPTO_HW=y |
1582 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1542 | # CONFIG_PPC_CLOCK is not set | 1583 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc7448_hpc2_defconfig b/arch/powerpc/configs/mpc7448_hpc2_defconfig index b0266de48491..a3d52e3f2ded 100644 --- a/arch/powerpc/configs/mpc7448_hpc2_defconfig +++ b/arch/powerpc/configs/mpc7448_hpc2_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:28 2007 | 4 | # Mon Mar 24 08:48:11 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -87,11 +92,13 @@ CONFIG_HOTPLUG=y | |||
87 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
88 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
89 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
90 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
91 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
92 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
93 | CONFIG_EPOLL=y | 99 | CONFIG_EPOLL=y |
94 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
95 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
96 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
97 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -99,6 +106,13 @@ CONFIG_SLUB_DEBUG=y | |||
99 | # CONFIG_SLAB is not set | 106 | # CONFIG_SLAB is not set |
100 | CONFIG_SLUB=y | 107 | CONFIG_SLUB=y |
101 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | ||
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
115 | CONFIG_SLABINFO=y | ||
102 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
103 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
104 | CONFIG_BASE_SMALL=0 | 118 | CONFIG_BASE_SMALL=0 |
@@ -121,6 +135,7 @@ CONFIG_DEFAULT_AS=y | |||
121 | # CONFIG_DEFAULT_CFQ is not set | 135 | # CONFIG_DEFAULT_CFQ is not set |
122 | # CONFIG_DEFAULT_NOOP is not set | 136 | # CONFIG_DEFAULT_NOOP is not set |
123 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 137 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
138 | CONFIG_CLASSIC_RCU=y | ||
124 | 139 | ||
125 | # | 140 | # |
126 | # Platform support | 141 | # Platform support |
@@ -131,20 +146,22 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
131 | # CONFIG_PPC_86xx is not set | 146 | # CONFIG_PPC_86xx is not set |
132 | CONFIG_CLASSIC32=y | 147 | CONFIG_CLASSIC32=y |
133 | # CONFIG_PPC_CHRP is not set | 148 | # CONFIG_PPC_CHRP is not set |
149 | # CONFIG_PPC_MPC512x is not set | ||
150 | # CONFIG_PPC_MPC5121 is not set | ||
151 | # CONFIG_MPC5121_ADS is not set | ||
134 | # CONFIG_PPC_MPC52xx is not set | 152 | # CONFIG_PPC_MPC52xx is not set |
135 | # CONFIG_PPC_MPC5200 is not set | ||
136 | # CONFIG_PPC_EFIKA is not set | ||
137 | # CONFIG_PPC_LITE5200 is not set | ||
138 | # CONFIG_PPC_PMAC is not set | 153 | # CONFIG_PPC_PMAC is not set |
139 | # CONFIG_PPC_CELL is not set | 154 | # CONFIG_PPC_CELL is not set |
140 | # CONFIG_PPC_CELL_NATIVE is not set | 155 | # CONFIG_PPC_CELL_NATIVE is not set |
141 | # CONFIG_PQ2ADS is not set | 156 | # CONFIG_PQ2ADS is not set |
142 | CONFIG_EMBEDDED6xx=y | 157 | CONFIG_EMBEDDED6xx=y |
143 | # CONFIG_LINKSTATION is not set | 158 | # CONFIG_LINKSTATION is not set |
159 | # CONFIG_STORCENTER is not set | ||
144 | CONFIG_MPC7448HPC2=y | 160 | CONFIG_MPC7448HPC2=y |
145 | # CONFIG_PPC_HOLLY is not set | 161 | # CONFIG_PPC_HOLLY is not set |
146 | # CONFIG_PPC_PRPMC2800 is not set | 162 | # CONFIG_PPC_PRPMC2800 is not set |
147 | CONFIG_TSI108_BRIDGE=y | 163 | CONFIG_TSI108_BRIDGE=y |
164 | # CONFIG_IPIC is not set | ||
148 | CONFIG_MPIC=y | 165 | CONFIG_MPIC=y |
149 | CONFIG_MPIC_WEIRD=y | 166 | CONFIG_MPIC_WEIRD=y |
150 | # CONFIG_PPC_I8259 is not set | 167 | # CONFIG_PPC_I8259 is not set |
@@ -156,7 +173,6 @@ CONFIG_MPIC_WEIRD=y | |||
156 | # CONFIG_GENERIC_IOMAP is not set | 173 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 174 | # CONFIG_CPU_FREQ is not set |
158 | # CONFIG_TAU is not set | 175 | # CONFIG_TAU is not set |
159 | # CONFIG_CPM2 is not set | ||
160 | # CONFIG_FSL_ULI1575 is not set | 176 | # CONFIG_FSL_ULI1575 is not set |
161 | 177 | ||
162 | # | 178 | # |
@@ -172,12 +188,16 @@ CONFIG_HZ_250=y | |||
172 | # CONFIG_HZ_300 is not set | 188 | # CONFIG_HZ_300 is not set |
173 | # CONFIG_HZ_1000 is not set | 189 | # CONFIG_HZ_1000 is not set |
174 | CONFIG_HZ=250 | 190 | CONFIG_HZ=250 |
191 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 192 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 193 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 194 | # CONFIG_PREEMPT is not set |
178 | CONFIG_BINFMT_ELF=y | 195 | CONFIG_BINFMT_ELF=y |
179 | CONFIG_BINFMT_MISC=y | 196 | CONFIG_BINFMT_MISC=y |
197 | # CONFIG_IOMMU_HELPER is not set | ||
180 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 198 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
199 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
200 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
181 | # CONFIG_KEXEC is not set | 201 | # CONFIG_KEXEC is not set |
182 | CONFIG_ARCH_FLATMEM_ENABLE=y | 202 | CONFIG_ARCH_FLATMEM_ENABLE=y |
183 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 203 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -197,11 +217,7 @@ CONFIG_VIRT_TO_BUS=y | |||
197 | CONFIG_PROC_DEVICETREE=y | 217 | CONFIG_PROC_DEVICETREE=y |
198 | # CONFIG_CMDLINE_BOOL is not set | 218 | # CONFIG_CMDLINE_BOOL is not set |
199 | # CONFIG_PM is not set | 219 | # CONFIG_PM is not set |
200 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
201 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
202 | # CONFIG_SECCOMP is not set | 220 | # CONFIG_SECCOMP is not set |
203 | CONFIG_WANT_DEVICE_TREE=y | ||
204 | CONFIG_DEVICE_TREE="" | ||
205 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
206 | 222 | ||
207 | # | 223 | # |
@@ -249,6 +265,7 @@ CONFIG_XFRM=y | |||
249 | CONFIG_XFRM_USER=y | 265 | CONFIG_XFRM_USER=y |
250 | # CONFIG_XFRM_SUB_POLICY is not set | 266 | # CONFIG_XFRM_SUB_POLICY is not set |
251 | # CONFIG_XFRM_MIGRATE is not set | 267 | # CONFIG_XFRM_MIGRATE is not set |
268 | # CONFIG_XFRM_STATISTICS is not set | ||
252 | # CONFIG_NET_KEY is not set | 269 | # CONFIG_NET_KEY is not set |
253 | CONFIG_INET=y | 270 | CONFIG_INET=y |
254 | CONFIG_IP_MULTICAST=y | 271 | CONFIG_IP_MULTICAST=y |
@@ -304,6 +321,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
304 | # | 321 | # |
305 | # CONFIG_NET_PKTGEN is not set | 322 | # CONFIG_NET_PKTGEN is not set |
306 | # CONFIG_HAMRADIO is not set | 323 | # CONFIG_HAMRADIO is not set |
324 | # CONFIG_CAN is not set | ||
307 | # CONFIG_IRDA is not set | 325 | # CONFIG_IRDA is not set |
308 | # CONFIG_BT is not set | 326 | # CONFIG_BT is not set |
309 | # CONFIG_AF_RXRPC is not set | 327 | # CONFIG_AF_RXRPC is not set |
@@ -348,7 +366,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
348 | CONFIG_BLK_DEV_RAM=y | 366 | CONFIG_BLK_DEV_RAM=y |
349 | CONFIG_BLK_DEV_RAM_COUNT=16 | 367 | CONFIG_BLK_DEV_RAM_COUNT=16 |
350 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 368 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
351 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 369 | # CONFIG_BLK_DEV_XIP is not set |
352 | # CONFIG_CDROM_PKTCDVD is not set | 370 | # CONFIG_CDROM_PKTCDVD is not set |
353 | # CONFIG_ATA_OVER_ETH is not set | 371 | # CONFIG_ATA_OVER_ETH is not set |
354 | CONFIG_MISC_DEVICES=y | 372 | CONFIG_MISC_DEVICES=y |
@@ -356,6 +374,8 @@ CONFIG_MISC_DEVICES=y | |||
356 | # CONFIG_EEPROM_93CX6 is not set | 374 | # CONFIG_EEPROM_93CX6 is not set |
357 | # CONFIG_SGI_IOC4 is not set | 375 | # CONFIG_SGI_IOC4 is not set |
358 | # CONFIG_TIFM_CORE is not set | 376 | # CONFIG_TIFM_CORE is not set |
377 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
378 | CONFIG_HAVE_IDE=y | ||
359 | # CONFIG_IDE is not set | 379 | # CONFIG_IDE is not set |
360 | 380 | ||
361 | # | 381 | # |
@@ -419,6 +439,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
419 | # CONFIG_SCSI_IPS is not set | 439 | # CONFIG_SCSI_IPS is not set |
420 | # CONFIG_SCSI_INITIO is not set | 440 | # CONFIG_SCSI_INITIO is not set |
421 | # CONFIG_SCSI_INIA100 is not set | 441 | # CONFIG_SCSI_INIA100 is not set |
442 | # CONFIG_SCSI_MVSAS is not set | ||
422 | # CONFIG_SCSI_STEX is not set | 443 | # CONFIG_SCSI_STEX is not set |
423 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 444 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
424 | # CONFIG_SCSI_IPR is not set | 445 | # CONFIG_SCSI_IPR is not set |
@@ -472,6 +493,7 @@ CONFIG_SATA_MV=y | |||
472 | # CONFIG_PATA_MPIIX is not set | 493 | # CONFIG_PATA_MPIIX is not set |
473 | # CONFIG_PATA_OLDPIIX is not set | 494 | # CONFIG_PATA_OLDPIIX is not set |
474 | # CONFIG_PATA_NETCELL is not set | 495 | # CONFIG_PATA_NETCELL is not set |
496 | # CONFIG_PATA_NINJA32 is not set | ||
475 | # CONFIG_PATA_NS87410 is not set | 497 | # CONFIG_PATA_NS87410 is not set |
476 | # CONFIG_PATA_NS87415 is not set | 498 | # CONFIG_PATA_NS87415 is not set |
477 | # CONFIG_PATA_OPTI is not set | 499 | # CONFIG_PATA_OPTI is not set |
@@ -505,7 +527,6 @@ CONFIG_NETDEVICES=y | |||
505 | # CONFIG_EQUALIZER is not set | 527 | # CONFIG_EQUALIZER is not set |
506 | # CONFIG_TUN is not set | 528 | # CONFIG_TUN is not set |
507 | # CONFIG_VETH is not set | 529 | # CONFIG_VETH is not set |
508 | # CONFIG_IP1000 is not set | ||
509 | # CONFIG_ARCNET is not set | 530 | # CONFIG_ARCNET is not set |
510 | CONFIG_PHYLIB=y | 531 | CONFIG_PHYLIB=y |
511 | 532 | ||
@@ -521,6 +542,7 @@ CONFIG_PHYLIB=y | |||
521 | # CONFIG_SMSC_PHY is not set | 542 | # CONFIG_SMSC_PHY is not set |
522 | # CONFIG_BROADCOM_PHY is not set | 543 | # CONFIG_BROADCOM_PHY is not set |
523 | # CONFIG_ICPLUS_PHY is not set | 544 | # CONFIG_ICPLUS_PHY is not set |
545 | # CONFIG_REALTEK_PHY is not set | ||
524 | # CONFIG_FIXED_PHY is not set | 546 | # CONFIG_FIXED_PHY is not set |
525 | # CONFIG_MDIO_BITBANG is not set | 547 | # CONFIG_MDIO_BITBANG is not set |
526 | CONFIG_NET_ETHERNET=y | 548 | CONFIG_NET_ETHERNET=y |
@@ -552,6 +574,7 @@ CONFIG_8139TOO=y | |||
552 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 574 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
553 | # CONFIG_8139TOO_8129 is not set | 575 | # CONFIG_8139TOO_8129 is not set |
554 | # CONFIG_8139_OLD_RX_RESET is not set | 576 | # CONFIG_8139_OLD_RX_RESET is not set |
577 | # CONFIG_R6040 is not set | ||
555 | # CONFIG_SIS900 is not set | 578 | # CONFIG_SIS900 is not set |
556 | # CONFIG_EPIC100 is not set | 579 | # CONFIG_EPIC100 is not set |
557 | # CONFIG_SUNDANCE is not set | 580 | # CONFIG_SUNDANCE is not set |
@@ -563,6 +586,9 @@ CONFIG_NETDEV_1000=y | |||
563 | # CONFIG_DL2K is not set | 586 | # CONFIG_DL2K is not set |
564 | # CONFIG_E1000 is not set | 587 | # CONFIG_E1000 is not set |
565 | # CONFIG_E1000E is not set | 588 | # CONFIG_E1000E is not set |
589 | # CONFIG_E1000E_ENABLED is not set | ||
590 | # CONFIG_IP1000 is not set | ||
591 | # CONFIG_IGB is not set | ||
566 | # CONFIG_NS83820 is not set | 592 | # CONFIG_NS83820 is not set |
567 | # CONFIG_HAMACHI is not set | 593 | # CONFIG_HAMACHI is not set |
568 | # CONFIG_YELLOWFIN is not set | 594 | # CONFIG_YELLOWFIN is not set |
@@ -589,6 +615,7 @@ CONFIG_NETDEV_10000=y | |||
589 | # CONFIG_NIU is not set | 615 | # CONFIG_NIU is not set |
590 | # CONFIG_MLX4_CORE is not set | 616 | # CONFIG_MLX4_CORE is not set |
591 | # CONFIG_TEHUTI is not set | 617 | # CONFIG_TEHUTI is not set |
618 | # CONFIG_BNX2X is not set | ||
592 | # CONFIG_TR is not set | 619 | # CONFIG_TR is not set |
593 | 620 | ||
594 | # | 621 | # |
@@ -602,7 +629,6 @@ CONFIG_NETDEV_10000=y | |||
602 | # CONFIG_PPP is not set | 629 | # CONFIG_PPP is not set |
603 | # CONFIG_SLIP is not set | 630 | # CONFIG_SLIP is not set |
604 | # CONFIG_NET_FC is not set | 631 | # CONFIG_NET_FC is not set |
605 | # CONFIG_SHAPER is not set | ||
606 | # CONFIG_NETCONSOLE is not set | 632 | # CONFIG_NETCONSOLE is not set |
607 | # CONFIG_NETPOLL is not set | 633 | # CONFIG_NETPOLL is not set |
608 | # CONFIG_NET_POLL_CONTROLLER is not set | 634 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -645,6 +671,7 @@ CONFIG_INPUT=y | |||
645 | # | 671 | # |
646 | # CONFIG_VT is not set | 672 | # CONFIG_VT is not set |
647 | # CONFIG_SERIAL_NONSTANDARD is not set | 673 | # CONFIG_SERIAL_NONSTANDARD is not set |
674 | # CONFIG_NOZOMI is not set | ||
648 | 675 | ||
649 | # | 676 | # |
650 | # Serial drivers | 677 | # Serial drivers |
@@ -703,6 +730,7 @@ CONFIG_HWMON=y | |||
703 | # CONFIG_SENSORS_W83627HF is not set | 730 | # CONFIG_SENSORS_W83627HF is not set |
704 | # CONFIG_SENSORS_W83627EHF is not set | 731 | # CONFIG_SENSORS_W83627EHF is not set |
705 | # CONFIG_HWMON_DEBUG_CHIP is not set | 732 | # CONFIG_HWMON_DEBUG_CHIP is not set |
733 | # CONFIG_THERMAL is not set | ||
706 | # CONFIG_WATCHDOG is not set | 734 | # CONFIG_WATCHDOG is not set |
707 | 735 | ||
708 | # | 736 | # |
@@ -755,16 +783,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
755 | # | 783 | # |
756 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 784 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
757 | # | 785 | # |
758 | |||
759 | # | ||
760 | # USB Gadget Support | ||
761 | # | ||
762 | # CONFIG_USB_GADGET is not set | 786 | # CONFIG_USB_GADGET is not set |
763 | # CONFIG_MMC is not set | 787 | # CONFIG_MMC is not set |
788 | # CONFIG_MEMSTICK is not set | ||
764 | # CONFIG_NEW_LEDS is not set | 789 | # CONFIG_NEW_LEDS is not set |
765 | # CONFIG_INFINIBAND is not set | 790 | # CONFIG_INFINIBAND is not set |
766 | # CONFIG_EDAC is not set | 791 | # CONFIG_EDAC is not set |
767 | # CONFIG_RTC_CLASS is not set | 792 | # CONFIG_RTC_CLASS is not set |
793 | # CONFIG_DMADEVICES is not set | ||
768 | 794 | ||
769 | # | 795 | # |
770 | # Userspace I/O | 796 | # Userspace I/O |
@@ -790,12 +816,10 @@ CONFIG_FS_MBCACHE=y | |||
790 | # CONFIG_XFS_FS is not set | 816 | # CONFIG_XFS_FS is not set |
791 | # CONFIG_GFS2_FS is not set | 817 | # CONFIG_GFS2_FS is not set |
792 | # CONFIG_OCFS2_FS is not set | 818 | # CONFIG_OCFS2_FS is not set |
793 | # CONFIG_MINIX_FS is not set | 819 | CONFIG_DNOTIFY=y |
794 | # CONFIG_ROMFS_FS is not set | ||
795 | CONFIG_INOTIFY=y | 820 | CONFIG_INOTIFY=y |
796 | CONFIG_INOTIFY_USER=y | 821 | CONFIG_INOTIFY_USER=y |
797 | # CONFIG_QUOTA is not set | 822 | # CONFIG_QUOTA is not set |
798 | CONFIG_DNOTIFY=y | ||
799 | # CONFIG_AUTOFS_FS is not set | 823 | # CONFIG_AUTOFS_FS is not set |
800 | # CONFIG_AUTOFS4_FS is not set | 824 | # CONFIG_AUTOFS4_FS is not set |
801 | # CONFIG_FUSE_FS is not set | 825 | # CONFIG_FUSE_FS is not set |
@@ -837,8 +861,10 @@ CONFIG_TMPFS=y | |||
837 | # CONFIG_EFS_FS is not set | 861 | # CONFIG_EFS_FS is not set |
838 | # CONFIG_CRAMFS is not set | 862 | # CONFIG_CRAMFS is not set |
839 | # CONFIG_VXFS_FS is not set | 863 | # CONFIG_VXFS_FS is not set |
864 | # CONFIG_MINIX_FS is not set | ||
840 | # CONFIG_HPFS_FS is not set | 865 | # CONFIG_HPFS_FS is not set |
841 | # CONFIG_QNX4FS_FS is not set | 866 | # CONFIG_QNX4FS_FS is not set |
867 | # CONFIG_ROMFS_FS is not set | ||
842 | # CONFIG_SYSV_FS is not set | 868 | # CONFIG_SYSV_FS is not set |
843 | # CONFIG_UFS_FS is not set | 869 | # CONFIG_UFS_FS is not set |
844 | CONFIG_NETWORK_FILESYSTEMS=y | 870 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -883,7 +909,6 @@ CONFIG_MSDOS_PARTITION=y | |||
883 | # CONFIG_SYSV68_PARTITION is not set | 909 | # CONFIG_SYSV68_PARTITION is not set |
884 | # CONFIG_NLS is not set | 910 | # CONFIG_NLS is not set |
885 | # CONFIG_DLM is not set | 911 | # CONFIG_DLM is not set |
886 | # CONFIG_UCC_SLOW is not set | ||
887 | 912 | ||
888 | # | 913 | # |
889 | # Library routines | 914 | # Library routines |
@@ -899,7 +924,6 @@ CONFIG_PLIST=y | |||
899 | CONFIG_HAS_IOMEM=y | 924 | CONFIG_HAS_IOMEM=y |
900 | CONFIG_HAS_IOPORT=y | 925 | CONFIG_HAS_IOPORT=y |
901 | CONFIG_HAS_DMA=y | 926 | CONFIG_HAS_DMA=y |
902 | # CONFIG_INSTRUMENTATION is not set | ||
903 | 927 | ||
904 | # | 928 | # |
905 | # Kernel hacking | 929 | # Kernel hacking |
@@ -913,6 +937,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
913 | # CONFIG_HEADERS_CHECK is not set | 937 | # CONFIG_HEADERS_CHECK is not set |
914 | # CONFIG_DEBUG_KERNEL is not set | 938 | # CONFIG_DEBUG_KERNEL is not set |
915 | # CONFIG_SLUB_DEBUG_ON is not set | 939 | # CONFIG_SLUB_DEBUG_ON is not set |
940 | # CONFIG_SLUB_STATS is not set | ||
916 | # CONFIG_DEBUG_BUGVERBOSE is not set | 941 | # CONFIG_DEBUG_BUGVERBOSE is not set |
917 | # CONFIG_SAMPLES is not set | 942 | # CONFIG_SAMPLES is not set |
918 | # CONFIG_BOOTX_TEXT is not set | 943 | # CONFIG_BOOTX_TEXT is not set |
@@ -924,5 +949,49 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
924 | # CONFIG_KEYS is not set | 949 | # CONFIG_KEYS is not set |
925 | # CONFIG_SECURITY is not set | 950 | # CONFIG_SECURITY is not set |
926 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 951 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
927 | # CONFIG_CRYPTO is not set | 952 | CONFIG_CRYPTO=y |
953 | # CONFIG_CRYPTO_SEQIV is not set | ||
954 | # CONFIG_CRYPTO_MANAGER is not set | ||
955 | # CONFIG_CRYPTO_HMAC is not set | ||
956 | # CONFIG_CRYPTO_XCBC is not set | ||
957 | # CONFIG_CRYPTO_NULL is not set | ||
958 | # CONFIG_CRYPTO_MD4 is not set | ||
959 | # CONFIG_CRYPTO_MD5 is not set | ||
960 | # CONFIG_CRYPTO_SHA1 is not set | ||
961 | # CONFIG_CRYPTO_SHA256 is not set | ||
962 | # CONFIG_CRYPTO_SHA512 is not set | ||
963 | # CONFIG_CRYPTO_WP512 is not set | ||
964 | # CONFIG_CRYPTO_TGR192 is not set | ||
965 | # CONFIG_CRYPTO_GF128MUL is not set | ||
966 | # CONFIG_CRYPTO_ECB is not set | ||
967 | # CONFIG_CRYPTO_CBC is not set | ||
968 | # CONFIG_CRYPTO_PCBC is not set | ||
969 | # CONFIG_CRYPTO_LRW is not set | ||
970 | # CONFIG_CRYPTO_XTS is not set | ||
971 | # CONFIG_CRYPTO_CTR is not set | ||
972 | # CONFIG_CRYPTO_GCM is not set | ||
973 | # CONFIG_CRYPTO_CCM is not set | ||
974 | # CONFIG_CRYPTO_CRYPTD is not set | ||
975 | # CONFIG_CRYPTO_DES is not set | ||
976 | # CONFIG_CRYPTO_FCRYPT is not set | ||
977 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
978 | # CONFIG_CRYPTO_TWOFISH is not set | ||
979 | # CONFIG_CRYPTO_SERPENT is not set | ||
980 | # CONFIG_CRYPTO_AES is not set | ||
981 | # CONFIG_CRYPTO_CAST5 is not set | ||
982 | # CONFIG_CRYPTO_CAST6 is not set | ||
983 | # CONFIG_CRYPTO_TEA is not set | ||
984 | # CONFIG_CRYPTO_ARC4 is not set | ||
985 | # CONFIG_CRYPTO_KHAZAD is not set | ||
986 | # CONFIG_CRYPTO_ANUBIS is not set | ||
987 | # CONFIG_CRYPTO_SEED is not set | ||
988 | # CONFIG_CRYPTO_SALSA20 is not set | ||
989 | # CONFIG_CRYPTO_DEFLATE is not set | ||
990 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
991 | # CONFIG_CRYPTO_CRC32C is not set | ||
992 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
993 | # CONFIG_CRYPTO_AUTHENC is not set | ||
994 | # CONFIG_CRYPTO_LZO is not set | ||
995 | CONFIG_CRYPTO_HW=y | ||
996 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
928 | # CONFIG_PPC_CLOCK is not set | 997 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc8272_ads_defconfig b/arch/powerpc/configs/mpc8272_ads_defconfig index 5eae305215dc..0264c5757f78 100644 --- a/arch/powerpc/configs/mpc8272_ads_defconfig +++ b/arch/powerpc/configs/mpc8272_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc5 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 13 22:40:57 2007 | 4 | # Mon Mar 24 08:48:13 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -28,6 +28,7 @@ CONFIG_GENERIC_TIME=y | |||
28 | CONFIG_GENERIC_TIME_VSYSCALL=y | 28 | CONFIG_GENERIC_TIME_VSYSCALL=y |
29 | CONFIG_GENERIC_CLOCKEVENTS=y | 29 | CONFIG_GENERIC_CLOCKEVENTS=y |
30 | CONFIG_GENERIC_HARDIRQS=y | 30 | CONFIG_GENERIC_HARDIRQS=y |
31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
31 | CONFIG_IRQ_PER_CPU=y | 32 | CONFIG_IRQ_PER_CPU=y |
32 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
33 | CONFIG_ARCH_HAS_ILOG2_U32=y | 34 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -69,9 +70,14 @@ CONFIG_IKCONFIG=y | |||
69 | CONFIG_IKCONFIG_PROC=y | 70 | CONFIG_IKCONFIG_PROC=y |
70 | CONFIG_LOG_BUF_SHIFT=14 | 71 | CONFIG_LOG_BUF_SHIFT=14 |
71 | # CONFIG_CGROUPS is not set | 72 | # CONFIG_CGROUPS is not set |
73 | CONFIG_GROUP_SCHED=y | ||
72 | # CONFIG_FAIR_GROUP_SCHED is not set | 74 | # CONFIG_FAIR_GROUP_SCHED is not set |
75 | CONFIG_USER_SCHED=y | ||
76 | # CONFIG_CGROUP_SCHED is not set | ||
73 | CONFIG_SYSFS_DEPRECATED=y | 77 | CONFIG_SYSFS_DEPRECATED=y |
78 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
74 | # CONFIG_RELAY is not set | 79 | # CONFIG_RELAY is not set |
80 | # CONFIG_NAMESPACES is not set | ||
75 | # CONFIG_BLK_DEV_INITRD is not set | 81 | # CONFIG_BLK_DEV_INITRD is not set |
76 | CONFIG_SYSCTL=y | 82 | CONFIG_SYSCTL=y |
77 | CONFIG_EMBEDDED=y | 83 | CONFIG_EMBEDDED=y |
@@ -83,11 +89,13 @@ CONFIG_HOTPLUG=y | |||
83 | CONFIG_PRINTK=y | 89 | CONFIG_PRINTK=y |
84 | CONFIG_BUG=y | 90 | CONFIG_BUG=y |
85 | CONFIG_ELF_CORE=y | 91 | CONFIG_ELF_CORE=y |
92 | CONFIG_COMPAT_BRK=y | ||
86 | CONFIG_BASE_FULL=y | 93 | CONFIG_BASE_FULL=y |
87 | CONFIG_FUTEX=y | 94 | CONFIG_FUTEX=y |
88 | CONFIG_ANON_INODES=y | 95 | CONFIG_ANON_INODES=y |
89 | CONFIG_EPOLL=y | 96 | CONFIG_EPOLL=y |
90 | CONFIG_SIGNALFD=y | 97 | CONFIG_SIGNALFD=y |
98 | CONFIG_TIMERFD=y | ||
91 | CONFIG_EVENTFD=y | 99 | CONFIG_EVENTFD=y |
92 | CONFIG_SHMEM=y | 100 | CONFIG_SHMEM=y |
93 | CONFIG_VM_EVENT_COUNTERS=y | 101 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -95,6 +103,13 @@ CONFIG_SLUB_DEBUG=y | |||
95 | # CONFIG_SLAB is not set | 103 | # CONFIG_SLAB is not set |
96 | CONFIG_SLUB=y | 104 | CONFIG_SLUB=y |
97 | # CONFIG_SLOB is not set | 105 | # CONFIG_SLOB is not set |
106 | # CONFIG_PROFILING is not set | ||
107 | # CONFIG_MARKERS is not set | ||
108 | CONFIG_HAVE_OPROFILE=y | ||
109 | CONFIG_HAVE_KPROBES=y | ||
110 | CONFIG_HAVE_KRETPROBES=y | ||
111 | CONFIG_PROC_PAGE_MONITOR=y | ||
112 | CONFIG_SLABINFO=y | ||
98 | CONFIG_RT_MUTEXES=y | 113 | CONFIG_RT_MUTEXES=y |
99 | # CONFIG_TINY_SHMEM is not set | 114 | # CONFIG_TINY_SHMEM is not set |
100 | CONFIG_BASE_SMALL=0 | 115 | CONFIG_BASE_SMALL=0 |
@@ -116,6 +131,7 @@ CONFIG_DEFAULT_AS=y | |||
116 | # CONFIG_DEFAULT_CFQ is not set | 131 | # CONFIG_DEFAULT_CFQ is not set |
117 | # CONFIG_DEFAULT_NOOP is not set | 132 | # CONFIG_DEFAULT_NOOP is not set |
118 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 133 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
134 | CONFIG_CLASSIC_RCU=y | ||
119 | 135 | ||
120 | # | 136 | # |
121 | # Platform support | 137 | # Platform support |
@@ -124,16 +140,18 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
124 | CONFIG_PPC_82xx=y | 140 | CONFIG_PPC_82xx=y |
125 | # CONFIG_PPC_83xx is not set | 141 | # CONFIG_PPC_83xx is not set |
126 | # CONFIG_PPC_86xx is not set | 142 | # CONFIG_PPC_86xx is not set |
127 | # CONFIG_PPC_MPC52xx is not set | 143 | # CONFIG_PPC_MPC512x is not set |
128 | # CONFIG_PPC_MPC5200 is not set | 144 | # CONFIG_PPC_MPC5121 is not set |
129 | # CONFIG_PPC_CELL is not set | 145 | # CONFIG_PPC_CELL is not set |
130 | # CONFIG_PPC_CELL_NATIVE is not set | 146 | # CONFIG_PPC_CELL_NATIVE is not set |
131 | CONFIG_MPC8272_ADS=y | 147 | CONFIG_MPC8272_ADS=y |
132 | # CONFIG_PQ2FADS is not set | 148 | # CONFIG_PQ2FADS is not set |
149 | # CONFIG_EP8248E is not set | ||
133 | CONFIG_PQ2ADS=y | 150 | CONFIG_PQ2ADS=y |
134 | CONFIG_8260=y | 151 | CONFIG_8260=y |
135 | CONFIG_8272=y | 152 | CONFIG_8272=y |
136 | CONFIG_PQ2_ADS_PCI_PIC=y | 153 | CONFIG_PQ2_ADS_PCI_PIC=y |
154 | # CONFIG_IPIC is not set | ||
137 | # CONFIG_MPIC is not set | 155 | # CONFIG_MPIC is not set |
138 | # CONFIG_MPIC_WEIRD is not set | 156 | # CONFIG_MPIC_WEIRD is not set |
139 | # CONFIG_PPC_I8259 is not set | 157 | # CONFIG_PPC_I8259 is not set |
@@ -162,12 +180,16 @@ CONFIG_HZ_250=y | |||
162 | # CONFIG_HZ_300 is not set | 180 | # CONFIG_HZ_300 is not set |
163 | # CONFIG_HZ_1000 is not set | 181 | # CONFIG_HZ_1000 is not set |
164 | CONFIG_HZ=250 | 182 | CONFIG_HZ=250 |
183 | # CONFIG_SCHED_HRTICK is not set | ||
165 | CONFIG_PREEMPT_NONE=y | 184 | CONFIG_PREEMPT_NONE=y |
166 | # CONFIG_PREEMPT_VOLUNTARY is not set | 185 | # CONFIG_PREEMPT_VOLUNTARY is not set |
167 | # CONFIG_PREEMPT is not set | 186 | # CONFIG_PREEMPT is not set |
168 | CONFIG_BINFMT_ELF=y | 187 | CONFIG_BINFMT_ELF=y |
169 | CONFIG_BINFMT_MISC=y | 188 | CONFIG_BINFMT_MISC=y |
189 | # CONFIG_IOMMU_HELPER is not set | ||
170 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 190 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
191 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
192 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
171 | CONFIG_ARCH_FLATMEM_ENABLE=y | 193 | CONFIG_ARCH_FLATMEM_ENABLE=y |
172 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 194 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
173 | CONFIG_FLATMEM=y | 195 | CONFIG_FLATMEM=y |
@@ -182,11 +204,7 @@ CONFIG_VIRT_TO_BUS=y | |||
182 | CONFIG_PROC_DEVICETREE=y | 204 | CONFIG_PROC_DEVICETREE=y |
183 | # CONFIG_CMDLINE_BOOL is not set | 205 | # CONFIG_CMDLINE_BOOL is not set |
184 | # CONFIG_PM is not set | 206 | # CONFIG_PM is not set |
185 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
186 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
187 | CONFIG_SECCOMP=y | 207 | CONFIG_SECCOMP=y |
188 | CONFIG_WANT_DEVICE_TREE=y | ||
189 | CONFIG_DEVICE_TREE="mpc8272ads.dts" | ||
190 | CONFIG_ISA_DMA_API=y | 208 | CONFIG_ISA_DMA_API=y |
191 | 209 | ||
192 | # | 210 | # |
@@ -205,6 +223,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
205 | CONFIG_PCI_LEGACY=y | 223 | CONFIG_PCI_LEGACY=y |
206 | # CONFIG_PCI_DEBUG is not set | 224 | # CONFIG_PCI_DEBUG is not set |
207 | # CONFIG_PCCARD is not set | 225 | # CONFIG_PCCARD is not set |
226 | # CONFIG_HOTPLUG_PCI is not set | ||
208 | 227 | ||
209 | # | 228 | # |
210 | # Advanced setup | 229 | # Advanced setup |
@@ -277,12 +296,13 @@ CONFIG_IPV6_SIT=y | |||
277 | # CONFIG_NETWORK_SECMARK is not set | 296 | # CONFIG_NETWORK_SECMARK is not set |
278 | CONFIG_NETFILTER=y | 297 | CONFIG_NETFILTER=y |
279 | # CONFIG_NETFILTER_DEBUG is not set | 298 | # CONFIG_NETFILTER_DEBUG is not set |
299 | CONFIG_NETFILTER_ADVANCED=y | ||
280 | 300 | ||
281 | # | 301 | # |
282 | # Core Netfilter Configuration | 302 | # Core Netfilter Configuration |
283 | # | 303 | # |
284 | # CONFIG_NETFILTER_NETLINK is not set | 304 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
285 | # CONFIG_NF_CONNTRACK_ENABLED is not set | 305 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
286 | # CONFIG_NF_CONNTRACK is not set | 306 | # CONFIG_NF_CONNTRACK is not set |
287 | # CONFIG_NETFILTER_XTABLES is not set | 307 | # CONFIG_NETFILTER_XTABLES is not set |
288 | 308 | ||
@@ -292,6 +312,13 @@ CONFIG_NETFILTER=y | |||
292 | # CONFIG_IP_NF_QUEUE is not set | 312 | # CONFIG_IP_NF_QUEUE is not set |
293 | # CONFIG_IP_NF_IPTABLES is not set | 313 | # CONFIG_IP_NF_IPTABLES is not set |
294 | # CONFIG_IP_NF_ARPTABLES is not set | 314 | # CONFIG_IP_NF_ARPTABLES is not set |
315 | |||
316 | # | ||
317 | # IPv6: Netfilter Configuration | ||
318 | # | ||
319 | # CONFIG_IP6_NF_QUEUE is not set | ||
320 | # CONFIG_IP6_NF_IPTABLES is not set | ||
321 | # CONFIG_ATM is not set | ||
295 | # CONFIG_BRIDGE is not set | 322 | # CONFIG_BRIDGE is not set |
296 | # CONFIG_VLAN_8021Q is not set | 323 | # CONFIG_VLAN_8021Q is not set |
297 | # CONFIG_DECNET is not set | 324 | # CONFIG_DECNET is not set |
@@ -305,6 +332,7 @@ CONFIG_NETFILTER=y | |||
305 | # | 332 | # |
306 | # CONFIG_NET_PKTGEN is not set | 333 | # CONFIG_NET_PKTGEN is not set |
307 | # CONFIG_HAMRADIO is not set | 334 | # CONFIG_HAMRADIO is not set |
335 | # CONFIG_CAN is not set | ||
308 | # CONFIG_IRDA is not set | 336 | # CONFIG_IRDA is not set |
309 | # CONFIG_BT is not set | 337 | # CONFIG_BT is not set |
310 | 338 | ||
@@ -313,6 +341,7 @@ CONFIG_NETFILTER=y | |||
313 | # | 341 | # |
314 | # CONFIG_CFG80211 is not set | 342 | # CONFIG_CFG80211 is not set |
315 | # CONFIG_WIRELESS_EXT is not set | 343 | # CONFIG_WIRELESS_EXT is not set |
344 | # CONFIG_MAC80211 is not set | ||
316 | # CONFIG_IEEE80211 is not set | 345 | # CONFIG_IEEE80211 is not set |
317 | # CONFIG_RFKILL is not set | 346 | # CONFIG_RFKILL is not set |
318 | 347 | ||
@@ -427,6 +456,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
427 | # CONFIG_CDROM_PKTCDVD is not set | 456 | # CONFIG_CDROM_PKTCDVD is not set |
428 | # CONFIG_ATA_OVER_ETH is not set | 457 | # CONFIG_ATA_OVER_ETH is not set |
429 | # CONFIG_MISC_DEVICES is not set | 458 | # CONFIG_MISC_DEVICES is not set |
459 | CONFIG_HAVE_IDE=y | ||
430 | # CONFIG_IDE is not set | 460 | # CONFIG_IDE is not set |
431 | 461 | ||
432 | # | 462 | # |
@@ -472,6 +502,7 @@ CONFIG_DAVICOM_PHY=y | |||
472 | # CONFIG_SMSC_PHY is not set | 502 | # CONFIG_SMSC_PHY is not set |
473 | # CONFIG_BROADCOM_PHY is not set | 503 | # CONFIG_BROADCOM_PHY is not set |
474 | # CONFIG_ICPLUS_PHY is not set | 504 | # CONFIG_ICPLUS_PHY is not set |
505 | # CONFIG_REALTEK_PHY is not set | ||
475 | # CONFIG_FIXED_PHY is not set | 506 | # CONFIG_FIXED_PHY is not set |
476 | CONFIG_MDIO_BITBANG=y | 507 | CONFIG_MDIO_BITBANG=y |
477 | CONFIG_NET_ETHERNET=y | 508 | CONFIG_NET_ETHERNET=y |
@@ -497,6 +528,8 @@ CONFIG_NETDEV_1000=y | |||
497 | # CONFIG_DL2K is not set | 528 | # CONFIG_DL2K is not set |
498 | # CONFIG_E1000 is not set | 529 | # CONFIG_E1000 is not set |
499 | # CONFIG_E1000E is not set | 530 | # CONFIG_E1000E is not set |
531 | # CONFIG_E1000E_ENABLED is not set | ||
532 | # CONFIG_IGB is not set | ||
500 | # CONFIG_NS83820 is not set | 533 | # CONFIG_NS83820 is not set |
501 | # CONFIG_HAMACHI is not set | 534 | # CONFIG_HAMACHI is not set |
502 | # CONFIG_R8169 is not set | 535 | # CONFIG_R8169 is not set |
@@ -507,6 +540,7 @@ CONFIG_NETDEV_1000=y | |||
507 | # CONFIG_VIA_VELOCITY is not set | 540 | # CONFIG_VIA_VELOCITY is not set |
508 | # CONFIG_TIGON3 is not set | 541 | # CONFIG_TIGON3 is not set |
509 | # CONFIG_BNX2 is not set | 542 | # CONFIG_BNX2 is not set |
543 | # CONFIG_GIANFAR is not set | ||
510 | # CONFIG_QLA3XXX is not set | 544 | # CONFIG_QLA3XXX is not set |
511 | CONFIG_NETDEV_10000=y | 545 | CONFIG_NETDEV_10000=y |
512 | # CONFIG_CHELSIO_T1 is not set | 546 | # CONFIG_CHELSIO_T1 is not set |
@@ -519,6 +553,7 @@ CONFIG_NETDEV_10000=y | |||
519 | # CONFIG_NIU is not set | 553 | # CONFIG_NIU is not set |
520 | # CONFIG_MLX4_CORE is not set | 554 | # CONFIG_MLX4_CORE is not set |
521 | # CONFIG_TEHUTI is not set | 555 | # CONFIG_TEHUTI is not set |
556 | # CONFIG_BNX2X is not set | ||
522 | # CONFIG_TR is not set | 557 | # CONFIG_TR is not set |
523 | 558 | ||
524 | # | 559 | # |
@@ -642,6 +677,7 @@ CONFIG_DEVPORT=y | |||
642 | # CONFIG_W1 is not set | 677 | # CONFIG_W1 is not set |
643 | # CONFIG_POWER_SUPPLY is not set | 678 | # CONFIG_POWER_SUPPLY is not set |
644 | # CONFIG_HWMON is not set | 679 | # CONFIG_HWMON is not set |
680 | # CONFIG_THERMAL is not set | ||
645 | # CONFIG_WATCHDOG is not set | 681 | # CONFIG_WATCHDOG is not set |
646 | 682 | ||
647 | # | 683 | # |
@@ -684,9 +720,11 @@ CONFIG_DAB=y | |||
684 | # CONFIG_HID_SUPPORT is not set | 720 | # CONFIG_HID_SUPPORT is not set |
685 | # CONFIG_USB_SUPPORT is not set | 721 | # CONFIG_USB_SUPPORT is not set |
686 | # CONFIG_MMC is not set | 722 | # CONFIG_MMC is not set |
723 | # CONFIG_MEMSTICK is not set | ||
687 | # CONFIG_NEW_LEDS is not set | 724 | # CONFIG_NEW_LEDS is not set |
688 | # CONFIG_INFINIBAND is not set | 725 | # CONFIG_INFINIBAND is not set |
689 | # CONFIG_RTC_CLASS is not set | 726 | # CONFIG_RTC_CLASS is not set |
727 | # CONFIG_DMADEVICES is not set | ||
690 | 728 | ||
691 | # | 729 | # |
692 | # Userspace I/O | 730 | # Userspace I/O |
@@ -710,12 +748,10 @@ CONFIG_FS_MBCACHE=y | |||
710 | CONFIG_FS_POSIX_ACL=y | 748 | CONFIG_FS_POSIX_ACL=y |
711 | # CONFIG_XFS_FS is not set | 749 | # CONFIG_XFS_FS is not set |
712 | # CONFIG_OCFS2_FS is not set | 750 | # CONFIG_OCFS2_FS is not set |
713 | # CONFIG_MINIX_FS is not set | 751 | CONFIG_DNOTIFY=y |
714 | # CONFIG_ROMFS_FS is not set | ||
715 | CONFIG_INOTIFY=y | 752 | CONFIG_INOTIFY=y |
716 | CONFIG_INOTIFY_USER=y | 753 | CONFIG_INOTIFY_USER=y |
717 | # CONFIG_QUOTA is not set | 754 | # CONFIG_QUOTA is not set |
718 | CONFIG_DNOTIFY=y | ||
719 | # CONFIG_AUTOFS_FS is not set | 755 | # CONFIG_AUTOFS_FS is not set |
720 | CONFIG_AUTOFS4_FS=y | 756 | CONFIG_AUTOFS4_FS=y |
721 | # CONFIG_FUSE_FS is not set | 757 | # CONFIG_FUSE_FS is not set |
@@ -743,6 +779,7 @@ CONFIG_SYSFS=y | |||
743 | CONFIG_TMPFS=y | 779 | CONFIG_TMPFS=y |
744 | # CONFIG_TMPFS_POSIX_ACL is not set | 780 | # CONFIG_TMPFS_POSIX_ACL is not set |
745 | # CONFIG_HUGETLB_PAGE is not set | 781 | # CONFIG_HUGETLB_PAGE is not set |
782 | # CONFIG_CONFIGFS_FS is not set | ||
746 | 783 | ||
747 | # | 784 | # |
748 | # Miscellaneous filesystems | 785 | # Miscellaneous filesystems |
@@ -751,8 +788,10 @@ CONFIG_TMPFS=y | |||
751 | # CONFIG_JFFS2_FS is not set | 788 | # CONFIG_JFFS2_FS is not set |
752 | CONFIG_CRAMFS=y | 789 | CONFIG_CRAMFS=y |
753 | # CONFIG_VXFS_FS is not set | 790 | # CONFIG_VXFS_FS is not set |
791 | # CONFIG_MINIX_FS is not set | ||
754 | # CONFIG_HPFS_FS is not set | 792 | # CONFIG_HPFS_FS is not set |
755 | # CONFIG_QNX4FS_FS is not set | 793 | # CONFIG_QNX4FS_FS is not set |
794 | # CONFIG_ROMFS_FS is not set | ||
756 | # CONFIG_SYSV_FS is not set | 795 | # CONFIG_SYSV_FS is not set |
757 | # CONFIG_UFS_FS is not set | 796 | # CONFIG_UFS_FS is not set |
758 | CONFIG_NETWORK_FILESYSTEMS=y | 797 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -833,7 +872,6 @@ CONFIG_NLS_ISO8859_1=y | |||
833 | # CONFIG_NLS_KOI8_R is not set | 872 | # CONFIG_NLS_KOI8_R is not set |
834 | # CONFIG_NLS_KOI8_U is not set | 873 | # CONFIG_NLS_KOI8_U is not set |
835 | CONFIG_NLS_UTF8=y | 874 | CONFIG_NLS_UTF8=y |
836 | # CONFIG_UCC_SLOW is not set | ||
837 | 875 | ||
838 | # | 876 | # |
839 | # Library routines | 877 | # Library routines |
@@ -851,7 +889,6 @@ CONFIG_PLIST=y | |||
851 | CONFIG_HAS_IOMEM=y | 889 | CONFIG_HAS_IOMEM=y |
852 | CONFIG_HAS_IOPORT=y | 890 | CONFIG_HAS_IOPORT=y |
853 | CONFIG_HAS_DMA=y | 891 | CONFIG_HAS_DMA=y |
854 | # CONFIG_INSTRUMENTATION is not set | ||
855 | 892 | ||
856 | # | 893 | # |
857 | # Kernel hacking | 894 | # Kernel hacking |
@@ -870,6 +907,7 @@ CONFIG_SCHED_DEBUG=y | |||
870 | # CONFIG_SCHEDSTATS is not set | 907 | # CONFIG_SCHEDSTATS is not set |
871 | # CONFIG_TIMER_STATS is not set | 908 | # CONFIG_TIMER_STATS is not set |
872 | # CONFIG_SLUB_DEBUG_ON is not set | 909 | # CONFIG_SLUB_DEBUG_ON is not set |
910 | # CONFIG_SLUB_STATS is not set | ||
873 | # CONFIG_DEBUG_RT_MUTEXES is not set | 911 | # CONFIG_DEBUG_RT_MUTEXES is not set |
874 | # CONFIG_RT_MUTEX_TESTER is not set | 912 | # CONFIG_RT_MUTEX_TESTER is not set |
875 | # CONFIG_DEBUG_SPINLOCK is not set | 913 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -882,8 +920,8 @@ CONFIG_DEBUG_INFO=y | |||
882 | # CONFIG_DEBUG_VM is not set | 920 | # CONFIG_DEBUG_VM is not set |
883 | # CONFIG_DEBUG_LIST is not set | 921 | # CONFIG_DEBUG_LIST is not set |
884 | # CONFIG_DEBUG_SG is not set | 922 | # CONFIG_DEBUG_SG is not set |
885 | CONFIG_FORCED_INLINING=y | ||
886 | # CONFIG_BOOT_PRINTK_DELAY is not set | 923 | # CONFIG_BOOT_PRINTK_DELAY is not set |
924 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
887 | # CONFIG_FAULT_INJECTION is not set | 925 | # CONFIG_FAULT_INJECTION is not set |
888 | # CONFIG_SAMPLES is not set | 926 | # CONFIG_SAMPLES is not set |
889 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 927 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -902,6 +940,7 @@ CONFIG_BDI_SWITCH=y | |||
902 | CONFIG_CRYPTO=y | 940 | CONFIG_CRYPTO=y |
903 | CONFIG_CRYPTO_ALGAPI=y | 941 | CONFIG_CRYPTO_ALGAPI=y |
904 | CONFIG_CRYPTO_BLKCIPHER=y | 942 | CONFIG_CRYPTO_BLKCIPHER=y |
943 | # CONFIG_CRYPTO_SEQIV is not set | ||
905 | CONFIG_CRYPTO_MANAGER=y | 944 | CONFIG_CRYPTO_MANAGER=y |
906 | # CONFIG_CRYPTO_HMAC is not set | 945 | # CONFIG_CRYPTO_HMAC is not set |
907 | # CONFIG_CRYPTO_NULL is not set | 946 | # CONFIG_CRYPTO_NULL is not set |
@@ -915,6 +954,9 @@ CONFIG_CRYPTO_MD5=y | |||
915 | CONFIG_CRYPTO_ECB=y | 954 | CONFIG_CRYPTO_ECB=y |
916 | CONFIG_CRYPTO_CBC=y | 955 | CONFIG_CRYPTO_CBC=y |
917 | CONFIG_CRYPTO_PCBC=y | 956 | CONFIG_CRYPTO_PCBC=y |
957 | # CONFIG_CRYPTO_CTR is not set | ||
958 | # CONFIG_CRYPTO_GCM is not set | ||
959 | # CONFIG_CRYPTO_CCM is not set | ||
918 | # CONFIG_CRYPTO_CRYPTD is not set | 960 | # CONFIG_CRYPTO_CRYPTD is not set |
919 | CONFIG_CRYPTO_DES=y | 961 | CONFIG_CRYPTO_DES=y |
920 | # CONFIG_CRYPTO_FCRYPT is not set | 962 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -934,6 +976,7 @@ CONFIG_CRYPTO_DES=y | |||
934 | # CONFIG_CRYPTO_CRC32C is not set | 976 | # CONFIG_CRYPTO_CRC32C is not set |
935 | # CONFIG_CRYPTO_CAMELLIA is not set | 977 | # CONFIG_CRYPTO_CAMELLIA is not set |
936 | # CONFIG_CRYPTO_AUTHENC is not set | 978 | # CONFIG_CRYPTO_AUTHENC is not set |
979 | # CONFIG_CRYPTO_LZO is not set | ||
937 | # CONFIG_CRYPTO_HW is not set | 980 | # CONFIG_CRYPTO_HW is not set |
938 | # CONFIG_PPC_CLOCK is not set | 981 | # CONFIG_PPC_CLOCK is not set |
939 | CONFIG_PPC_LIB_RHEAP=y | 982 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc8313_rdb_defconfig b/arch/powerpc/configs/mpc8313_rdb_defconfig index 3b29ac53844e..7a862a6e3be8 100644 --- a/arch/powerpc/configs/mpc8313_rdb_defconfig +++ b/arch/powerpc/configs/mpc8313_rdb_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Jan 17 16:35:55 2008 | 4 | # Mon Mar 24 08:48:14 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +91,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
92 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
93 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +105,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 105 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 106 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_HAVE_KRETPROBES=y | ||
113 | CONFIG_PROC_PAGE_MONITOR=y | ||
114 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 117 | CONFIG_BASE_SMALL=0 |
@@ -125,6 +139,7 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 139 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | ||
128 | 143 | ||
129 | # | 144 | # |
130 | # Platform support | 145 | # Platform support |
@@ -133,11 +148,12 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
133 | # CONFIG_PPC_82xx is not set | 148 | # CONFIG_PPC_82xx is not set |
134 | CONFIG_PPC_83xx=y | 149 | CONFIG_PPC_83xx=y |
135 | # CONFIG_PPC_86xx is not set | 150 | # CONFIG_PPC_86xx is not set |
136 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
137 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
138 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
139 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
140 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
156 | CONFIG_MPC83xx=y | ||
141 | CONFIG_MPC831x_RDB=y | 157 | CONFIG_MPC831x_RDB=y |
142 | # CONFIG_MPC832x_MDS is not set | 158 | # CONFIG_MPC832x_MDS is not set |
143 | # CONFIG_MPC832x_RDB is not set | 159 | # CONFIG_MPC832x_RDB is not set |
@@ -145,7 +161,10 @@ CONFIG_MPC831x_RDB=y | |||
145 | # CONFIG_MPC834x_ITX is not set | 161 | # CONFIG_MPC834x_ITX is not set |
146 | # CONFIG_MPC836x_MDS is not set | 162 | # CONFIG_MPC836x_MDS is not set |
147 | # CONFIG_MPC837x_MDS is not set | 163 | # CONFIG_MPC837x_MDS is not set |
164 | # CONFIG_MPC837x_RDB is not set | ||
165 | # CONFIG_SBC834x is not set | ||
148 | CONFIG_PPC_MPC831x=y | 166 | CONFIG_PPC_MPC831x=y |
167 | CONFIG_IPIC=y | ||
149 | # CONFIG_MPIC is not set | 168 | # CONFIG_MPIC is not set |
150 | # CONFIG_MPIC_WEIRD is not set | 169 | # CONFIG_MPIC_WEIRD is not set |
151 | # CONFIG_PPC_I8259 is not set | 170 | # CONFIG_PPC_I8259 is not set |
@@ -156,7 +175,6 @@ CONFIG_PPC_MPC831x=y | |||
156 | # CONFIG_PPC_INDIRECT_IO is not set | 175 | # CONFIG_PPC_INDIRECT_IO is not set |
157 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
158 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
159 | # CONFIG_CPM2 is not set | ||
160 | # CONFIG_FSL_ULI1575 is not set | 178 | # CONFIG_FSL_ULI1575 is not set |
161 | 179 | ||
162 | # | 180 | # |
@@ -172,12 +190,16 @@ CONFIG_HZ_250=y | |||
172 | # CONFIG_HZ_300 is not set | 190 | # CONFIG_HZ_300 is not set |
173 | # CONFIG_HZ_1000 is not set | 191 | # CONFIG_HZ_1000 is not set |
174 | CONFIG_HZ=250 | 192 | CONFIG_HZ=250 |
193 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
178 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
179 | # CONFIG_BINFMT_MISC is not set | 198 | # CONFIG_BINFMT_MISC is not set |
199 | # CONFIG_IOMMU_HELPER is not set | ||
180 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
181 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
182 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
183 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -196,11 +218,7 @@ CONFIG_VIRT_TO_BUS=y | |||
196 | CONFIG_PROC_DEVICETREE=y | 218 | CONFIG_PROC_DEVICETREE=y |
197 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
198 | # CONFIG_PM is not set | 220 | # CONFIG_PM is not set |
199 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
200 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
201 | CONFIG_SECCOMP=y | 221 | CONFIG_SECCOMP=y |
202 | CONFIG_WANT_DEVICE_TREE=y | ||
203 | CONFIG_DEVICE_TREE="" | ||
204 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
205 | 223 | ||
206 | # | 224 | # |
@@ -250,6 +268,7 @@ CONFIG_XFRM=y | |||
250 | # CONFIG_XFRM_USER is not set | 268 | # CONFIG_XFRM_USER is not set |
251 | # CONFIG_XFRM_SUB_POLICY is not set | 269 | # CONFIG_XFRM_SUB_POLICY is not set |
252 | # CONFIG_XFRM_MIGRATE is not set | 270 | # CONFIG_XFRM_MIGRATE is not set |
271 | # CONFIG_XFRM_STATISTICS is not set | ||
253 | # CONFIG_NET_KEY is not set | 272 | # CONFIG_NET_KEY is not set |
254 | CONFIG_INET=y | 273 | CONFIG_INET=y |
255 | CONFIG_IP_MULTICAST=y | 274 | CONFIG_IP_MULTICAST=y |
@@ -305,6 +324,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
305 | # | 324 | # |
306 | # CONFIG_NET_PKTGEN is not set | 325 | # CONFIG_NET_PKTGEN is not set |
307 | # CONFIG_HAMRADIO is not set | 326 | # CONFIG_HAMRADIO is not set |
327 | # CONFIG_CAN is not set | ||
308 | # CONFIG_IRDA is not set | 328 | # CONFIG_IRDA is not set |
309 | # CONFIG_BT is not set | 329 | # CONFIG_BT is not set |
310 | # CONFIG_AF_RXRPC is not set | 330 | # CONFIG_AF_RXRPC is not set |
@@ -340,6 +360,7 @@ CONFIG_MTD=y | |||
340 | CONFIG_MTD_PARTITIONS=y | 360 | CONFIG_MTD_PARTITIONS=y |
341 | # CONFIG_MTD_REDBOOT_PARTS is not set | 361 | # CONFIG_MTD_REDBOOT_PARTS is not set |
342 | # CONFIG_MTD_CMDLINE_PARTS is not set | 362 | # CONFIG_MTD_CMDLINE_PARTS is not set |
363 | # CONFIG_MTD_OF_PARTS is not set | ||
343 | 364 | ||
344 | # | 365 | # |
345 | # User Modules And Translation Layers | 366 | # User Modules And Translation Layers |
@@ -415,6 +436,7 @@ CONFIG_MTD_NAND_IDS=y | |||
415 | # CONFIG_MTD_NAND_NANDSIM is not set | 436 | # CONFIG_MTD_NAND_NANDSIM is not set |
416 | # CONFIG_MTD_NAND_PLATFORM is not set | 437 | # CONFIG_MTD_NAND_PLATFORM is not set |
417 | # CONFIG_MTD_ALAUDA is not set | 438 | # CONFIG_MTD_ALAUDA is not set |
439 | # CONFIG_MTD_NAND_FSL_ELBC is not set | ||
418 | # CONFIG_MTD_ONENAND is not set | 440 | # CONFIG_MTD_ONENAND is not set |
419 | 441 | ||
420 | # | 442 | # |
@@ -438,7 +460,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
438 | CONFIG_BLK_DEV_RAM=y | 460 | CONFIG_BLK_DEV_RAM=y |
439 | CONFIG_BLK_DEV_RAM_COUNT=16 | 461 | CONFIG_BLK_DEV_RAM_COUNT=16 |
440 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 462 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
441 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 463 | # CONFIG_BLK_DEV_XIP is not set |
442 | # CONFIG_CDROM_PKTCDVD is not set | 464 | # CONFIG_CDROM_PKTCDVD is not set |
443 | # CONFIG_ATA_OVER_ETH is not set | 465 | # CONFIG_ATA_OVER_ETH is not set |
444 | CONFIG_MISC_DEVICES=y | 466 | CONFIG_MISC_DEVICES=y |
@@ -446,6 +468,8 @@ CONFIG_MISC_DEVICES=y | |||
446 | # CONFIG_EEPROM_93CX6 is not set | 468 | # CONFIG_EEPROM_93CX6 is not set |
447 | # CONFIG_SGI_IOC4 is not set | 469 | # CONFIG_SGI_IOC4 is not set |
448 | # CONFIG_TIFM_CORE is not set | 470 | # CONFIG_TIFM_CORE is not set |
471 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
472 | CONFIG_HAVE_IDE=y | ||
449 | # CONFIG_IDE is not set | 473 | # CONFIG_IDE is not set |
450 | 474 | ||
451 | # | 475 | # |
@@ -510,6 +534,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
510 | # CONFIG_SCSI_IPS is not set | 534 | # CONFIG_SCSI_IPS is not set |
511 | # CONFIG_SCSI_INITIO is not set | 535 | # CONFIG_SCSI_INITIO is not set |
512 | # CONFIG_SCSI_INIA100 is not set | 536 | # CONFIG_SCSI_INIA100 is not set |
537 | # CONFIG_SCSI_MVSAS is not set | ||
513 | # CONFIG_SCSI_STEX is not set | 538 | # CONFIG_SCSI_STEX is not set |
514 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 539 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
515 | # CONFIG_SCSI_QLOGIC_1280 is not set | 540 | # CONFIG_SCSI_QLOGIC_1280 is not set |
@@ -549,7 +574,6 @@ CONFIG_NETDEVICES=y | |||
549 | # CONFIG_EQUALIZER is not set | 574 | # CONFIG_EQUALIZER is not set |
550 | # CONFIG_TUN is not set | 575 | # CONFIG_TUN is not set |
551 | # CONFIG_VETH is not set | 576 | # CONFIG_VETH is not set |
552 | # CONFIG_IP1000 is not set | ||
553 | # CONFIG_ARCNET is not set | 577 | # CONFIG_ARCNET is not set |
554 | CONFIG_PHYLIB=y | 578 | CONFIG_PHYLIB=y |
555 | 579 | ||
@@ -565,6 +589,7 @@ CONFIG_CICADA_PHY=y | |||
565 | # CONFIG_SMSC_PHY is not set | 589 | # CONFIG_SMSC_PHY is not set |
566 | # CONFIG_BROADCOM_PHY is not set | 590 | # CONFIG_BROADCOM_PHY is not set |
567 | # CONFIG_ICPLUS_PHY is not set | 591 | # CONFIG_ICPLUS_PHY is not set |
592 | # CONFIG_REALTEK_PHY is not set | ||
568 | # CONFIG_FIXED_PHY is not set | 593 | # CONFIG_FIXED_PHY is not set |
569 | # CONFIG_MDIO_BITBANG is not set | 594 | # CONFIG_MDIO_BITBANG is not set |
570 | CONFIG_NET_ETHERNET=y | 595 | CONFIG_NET_ETHERNET=y |
@@ -573,6 +598,7 @@ CONFIG_MII=y | |||
573 | # CONFIG_SUNGEM is not set | 598 | # CONFIG_SUNGEM is not set |
574 | # CONFIG_CASSINI is not set | 599 | # CONFIG_CASSINI is not set |
575 | # CONFIG_NET_VENDOR_3COM is not set | 600 | # CONFIG_NET_VENDOR_3COM is not set |
601 | # CONFIG_ENC28J60 is not set | ||
576 | # CONFIG_NET_TULIP is not set | 602 | # CONFIG_NET_TULIP is not set |
577 | # CONFIG_HP100 is not set | 603 | # CONFIG_HP100 is not set |
578 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 604 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -592,6 +618,7 @@ CONFIG_E100=y | |||
592 | # CONFIG_NE2K_PCI is not set | 618 | # CONFIG_NE2K_PCI is not set |
593 | # CONFIG_8139CP is not set | 619 | # CONFIG_8139CP is not set |
594 | # CONFIG_8139TOO is not set | 620 | # CONFIG_8139TOO is not set |
621 | # CONFIG_R6040 is not set | ||
595 | # CONFIG_SIS900 is not set | 622 | # CONFIG_SIS900 is not set |
596 | # CONFIG_EPIC100 is not set | 623 | # CONFIG_EPIC100 is not set |
597 | # CONFIG_SUNDANCE is not set | 624 | # CONFIG_SUNDANCE is not set |
@@ -603,6 +630,9 @@ CONFIG_NETDEV_1000=y | |||
603 | # CONFIG_DL2K is not set | 630 | # CONFIG_DL2K is not set |
604 | # CONFIG_E1000 is not set | 631 | # CONFIG_E1000 is not set |
605 | # CONFIG_E1000E is not set | 632 | # CONFIG_E1000E is not set |
633 | # CONFIG_E1000E_ENABLED is not set | ||
634 | # CONFIG_IP1000 is not set | ||
635 | # CONFIG_IGB is not set | ||
606 | # CONFIG_NS83820 is not set | 636 | # CONFIG_NS83820 is not set |
607 | # CONFIG_HAMACHI is not set | 637 | # CONFIG_HAMACHI is not set |
608 | # CONFIG_YELLOWFIN is not set | 638 | # CONFIG_YELLOWFIN is not set |
@@ -629,6 +659,7 @@ CONFIG_NETDEV_10000=y | |||
629 | # CONFIG_NIU is not set | 659 | # CONFIG_NIU is not set |
630 | # CONFIG_MLX4_CORE is not set | 660 | # CONFIG_MLX4_CORE is not set |
631 | # CONFIG_TEHUTI is not set | 661 | # CONFIG_TEHUTI is not set |
662 | # CONFIG_BNX2X is not set | ||
632 | # CONFIG_TR is not set | 663 | # CONFIG_TR is not set |
633 | 664 | ||
634 | # | 665 | # |
@@ -651,7 +682,6 @@ CONFIG_NETDEV_10000=y | |||
651 | # CONFIG_PPP is not set | 682 | # CONFIG_PPP is not set |
652 | # CONFIG_SLIP is not set | 683 | # CONFIG_SLIP is not set |
653 | # CONFIG_NET_FC is not set | 684 | # CONFIG_NET_FC is not set |
654 | # CONFIG_SHAPER is not set | ||
655 | # CONFIG_NETCONSOLE is not set | 685 | # CONFIG_NETCONSOLE is not set |
656 | # CONFIG_NETPOLL is not set | 686 | # CONFIG_NETPOLL is not set |
657 | # CONFIG_NET_POLL_CONTROLLER is not set | 687 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -694,6 +724,7 @@ CONFIG_INPUT=y | |||
694 | # | 724 | # |
695 | # CONFIG_VT is not set | 725 | # CONFIG_VT is not set |
696 | # CONFIG_SERIAL_NONSTANDARD is not set | 726 | # CONFIG_SERIAL_NONSTANDARD is not set |
727 | # CONFIG_NOZOMI is not set | ||
697 | 728 | ||
698 | # | 729 | # |
699 | # Serial drivers | 730 | # Serial drivers |
@@ -767,14 +798,12 @@ CONFIG_I2C_MPC=y | |||
767 | # | 798 | # |
768 | # Miscellaneous I2C Chip support | 799 | # Miscellaneous I2C Chip support |
769 | # | 800 | # |
770 | # CONFIG_SENSORS_DS1337 is not set | ||
771 | # CONFIG_SENSORS_DS1374 is not set | ||
772 | # CONFIG_DS1682 is not set | 801 | # CONFIG_DS1682 is not set |
773 | # CONFIG_SENSORS_EEPROM is not set | 802 | # CONFIG_SENSORS_EEPROM is not set |
774 | # CONFIG_SENSORS_PCF8574 is not set | 803 | # CONFIG_SENSORS_PCF8574 is not set |
775 | # CONFIG_SENSORS_PCA9539 is not set | 804 | # CONFIG_PCF8575 is not set |
776 | # CONFIG_SENSORS_PCF8591 is not set | 805 | # CONFIG_SENSORS_PCF8591 is not set |
777 | # CONFIG_SENSORS_M41T00 is not set | 806 | # CONFIG_TPS65010 is not set |
778 | # CONFIG_SENSORS_MAX6875 is not set | 807 | # CONFIG_SENSORS_MAX6875 is not set |
779 | # CONFIG_SENSORS_TSL2550 is not set | 808 | # CONFIG_SENSORS_TSL2550 is not set |
780 | # CONFIG_I2C_DEBUG_CORE is not set | 809 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -813,6 +842,7 @@ CONFIG_HWMON=y | |||
813 | # CONFIG_SENSORS_ADM1031 is not set | 842 | # CONFIG_SENSORS_ADM1031 is not set |
814 | # CONFIG_SENSORS_ADM9240 is not set | 843 | # CONFIG_SENSORS_ADM9240 is not set |
815 | # CONFIG_SENSORS_ADT7470 is not set | 844 | # CONFIG_SENSORS_ADT7470 is not set |
845 | # CONFIG_SENSORS_ADT7473 is not set | ||
816 | # CONFIG_SENSORS_ATXP1 is not set | 846 | # CONFIG_SENSORS_ATXP1 is not set |
817 | # CONFIG_SENSORS_DS1621 is not set | 847 | # CONFIG_SENSORS_DS1621 is not set |
818 | # CONFIG_SENSORS_I5K_AMB is not set | 848 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -843,6 +873,7 @@ CONFIG_HWMON=y | |||
843 | # CONFIG_SENSORS_SMSC47M1 is not set | 873 | # CONFIG_SENSORS_SMSC47M1 is not set |
844 | # CONFIG_SENSORS_SMSC47M192 is not set | 874 | # CONFIG_SENSORS_SMSC47M192 is not set |
845 | # CONFIG_SENSORS_SMSC47B397 is not set | 875 | # CONFIG_SENSORS_SMSC47B397 is not set |
876 | # CONFIG_SENSORS_ADS7828 is not set | ||
846 | # CONFIG_SENSORS_THMC50 is not set | 877 | # CONFIG_SENSORS_THMC50 is not set |
847 | # CONFIG_SENSORS_VIA686A is not set | 878 | # CONFIG_SENSORS_VIA686A is not set |
848 | # CONFIG_SENSORS_VT1211 is not set | 879 | # CONFIG_SENSORS_VT1211 is not set |
@@ -852,9 +883,11 @@ CONFIG_HWMON=y | |||
852 | # CONFIG_SENSORS_W83792D is not set | 883 | # CONFIG_SENSORS_W83792D is not set |
853 | # CONFIG_SENSORS_W83793 is not set | 884 | # CONFIG_SENSORS_W83793 is not set |
854 | # CONFIG_SENSORS_W83L785TS is not set | 885 | # CONFIG_SENSORS_W83L785TS is not set |
886 | # CONFIG_SENSORS_W83L786NG is not set | ||
855 | # CONFIG_SENSORS_W83627HF is not set | 887 | # CONFIG_SENSORS_W83627HF is not set |
856 | # CONFIG_SENSORS_W83627EHF is not set | 888 | # CONFIG_SENSORS_W83627EHF is not set |
857 | # CONFIG_HWMON_DEBUG_CHIP is not set | 889 | # CONFIG_HWMON_DEBUG_CHIP is not set |
890 | # CONFIG_THERMAL is not set | ||
858 | CONFIG_WATCHDOG=y | 891 | CONFIG_WATCHDOG=y |
859 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 892 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
860 | 893 | ||
@@ -934,6 +967,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
934 | CONFIG_USB_ARCH_HAS_EHCI=y | 967 | CONFIG_USB_ARCH_HAS_EHCI=y |
935 | CONFIG_USB=y | 968 | CONFIG_USB=y |
936 | # CONFIG_USB_DEBUG is not set | 969 | # CONFIG_USB_DEBUG is not set |
970 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
937 | 971 | ||
938 | # | 972 | # |
939 | # Miscellaneous USB options | 973 | # Miscellaneous USB options |
@@ -947,10 +981,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
947 | # USB Host Controller Drivers | 981 | # USB Host Controller Drivers |
948 | # | 982 | # |
949 | CONFIG_USB_EHCI_HCD=y | 983 | CONFIG_USB_EHCI_HCD=y |
950 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
951 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 984 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
952 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 985 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
953 | CONFIG_USB_EHCI_FSL=y | 986 | CONFIG_USB_EHCI_FSL=y |
987 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
954 | # CONFIG_USB_ISP116X_HCD is not set | 988 | # CONFIG_USB_ISP116X_HCD is not set |
955 | CONFIG_USB_OHCI_HCD=y | 989 | CONFIG_USB_OHCI_HCD=y |
956 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 990 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
@@ -1001,10 +1035,6 @@ CONFIG_USB_MON=y | |||
1001 | # | 1035 | # |
1002 | # USB port drivers | 1036 | # USB port drivers |
1003 | # | 1037 | # |
1004 | |||
1005 | # | ||
1006 | # USB Serial Converter support | ||
1007 | # | ||
1008 | # CONFIG_USB_SERIAL is not set | 1038 | # CONFIG_USB_SERIAL is not set |
1009 | 1039 | ||
1010 | # | 1040 | # |
@@ -1030,14 +1060,6 @@ CONFIG_USB_MON=y | |||
1030 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1060 | # CONFIG_USB_TRANCEVIBRATOR is not set |
1031 | # CONFIG_USB_IOWARRIOR is not set | 1061 | # CONFIG_USB_IOWARRIOR is not set |
1032 | # CONFIG_USB_TEST is not set | 1062 | # CONFIG_USB_TEST is not set |
1033 | |||
1034 | # | ||
1035 | # USB DSL modem support | ||
1036 | # | ||
1037 | |||
1038 | # | ||
1039 | # USB Gadget Support | ||
1040 | # | ||
1041 | CONFIG_USB_GADGET=y | 1063 | CONFIG_USB_GADGET=y |
1042 | # CONFIG_USB_GADGET_DEBUG is not set | 1064 | # CONFIG_USB_GADGET_DEBUG is not set |
1043 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | 1065 | # CONFIG_USB_GADGET_DEBUG_FILES is not set |
@@ -1063,7 +1085,9 @@ CONFIG_USB_ETH_RNDIS=y | |||
1063 | # CONFIG_USB_FILE_STORAGE is not set | 1085 | # CONFIG_USB_FILE_STORAGE is not set |
1064 | # CONFIG_USB_G_SERIAL is not set | 1086 | # CONFIG_USB_G_SERIAL is not set |
1065 | # CONFIG_USB_MIDI_GADGET is not set | 1087 | # CONFIG_USB_MIDI_GADGET is not set |
1088 | # CONFIG_USB_G_PRINTER is not set | ||
1066 | # CONFIG_MMC is not set | 1089 | # CONFIG_MMC is not set |
1090 | # CONFIG_MEMSTICK is not set | ||
1067 | # CONFIG_NEW_LEDS is not set | 1091 | # CONFIG_NEW_LEDS is not set |
1068 | # CONFIG_INFINIBAND is not set | 1092 | # CONFIG_INFINIBAND is not set |
1069 | # CONFIG_EDAC is not set | 1093 | # CONFIG_EDAC is not set |
@@ -1095,20 +1119,23 @@ CONFIG_RTC_DRV_DS1307=y | |||
1095 | # CONFIG_RTC_DRV_PCF8563 is not set | 1119 | # CONFIG_RTC_DRV_PCF8563 is not set |
1096 | # CONFIG_RTC_DRV_PCF8583 is not set | 1120 | # CONFIG_RTC_DRV_PCF8583 is not set |
1097 | # CONFIG_RTC_DRV_M41T80 is not set | 1121 | # CONFIG_RTC_DRV_M41T80 is not set |
1122 | # CONFIG_RTC_DRV_S35390A is not set | ||
1098 | 1123 | ||
1099 | # | 1124 | # |
1100 | # SPI RTC drivers | 1125 | # SPI RTC drivers |
1101 | # | 1126 | # |
1102 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1103 | # CONFIG_RTC_DRV_MAX6902 is not set | 1127 | # CONFIG_RTC_DRV_MAX6902 is not set |
1128 | # CONFIG_RTC_DRV_R9701 is not set | ||
1129 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1104 | 1130 | ||
1105 | # | 1131 | # |
1106 | # Platform RTC drivers | 1132 | # Platform RTC drivers |
1107 | # | 1133 | # |
1108 | # CONFIG_RTC_DRV_CMOS is not set | 1134 | # CONFIG_RTC_DRV_CMOS is not set |
1135 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1109 | # CONFIG_RTC_DRV_DS1553 is not set | 1136 | # CONFIG_RTC_DRV_DS1553 is not set |
1110 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1111 | # CONFIG_RTC_DRV_DS1742 is not set | 1137 | # CONFIG_RTC_DRV_DS1742 is not set |
1138 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1112 | # CONFIG_RTC_DRV_M48T86 is not set | 1139 | # CONFIG_RTC_DRV_M48T86 is not set |
1113 | # CONFIG_RTC_DRV_M48T59 is not set | 1140 | # CONFIG_RTC_DRV_M48T59 is not set |
1114 | # CONFIG_RTC_DRV_V3020 is not set | 1141 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1116,6 +1143,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
1116 | # | 1143 | # |
1117 | # on-CPU RTC drivers | 1144 | # on-CPU RTC drivers |
1118 | # | 1145 | # |
1146 | # CONFIG_DMADEVICES is not set | ||
1119 | 1147 | ||
1120 | # | 1148 | # |
1121 | # Userspace I/O | 1149 | # Userspace I/O |
@@ -1141,12 +1169,10 @@ CONFIG_FS_MBCACHE=y | |||
1141 | # CONFIG_XFS_FS is not set | 1169 | # CONFIG_XFS_FS is not set |
1142 | # CONFIG_GFS2_FS is not set | 1170 | # CONFIG_GFS2_FS is not set |
1143 | # CONFIG_OCFS2_FS is not set | 1171 | # CONFIG_OCFS2_FS is not set |
1144 | # CONFIG_MINIX_FS is not set | 1172 | CONFIG_DNOTIFY=y |
1145 | # CONFIG_ROMFS_FS is not set | ||
1146 | CONFIG_INOTIFY=y | 1173 | CONFIG_INOTIFY=y |
1147 | CONFIG_INOTIFY_USER=y | 1174 | CONFIG_INOTIFY_USER=y |
1148 | # CONFIG_QUOTA is not set | 1175 | # CONFIG_QUOTA is not set |
1149 | CONFIG_DNOTIFY=y | ||
1150 | # CONFIG_AUTOFS_FS is not set | 1176 | # CONFIG_AUTOFS_FS is not set |
1151 | # CONFIG_AUTOFS4_FS is not set | 1177 | # CONFIG_AUTOFS4_FS is not set |
1152 | # CONFIG_FUSE_FS is not set | 1178 | # CONFIG_FUSE_FS is not set |
@@ -1199,8 +1225,10 @@ CONFIG_JFFS2_RTIME=y | |||
1199 | # CONFIG_JFFS2_RUBIN is not set | 1225 | # CONFIG_JFFS2_RUBIN is not set |
1200 | # CONFIG_CRAMFS is not set | 1226 | # CONFIG_CRAMFS is not set |
1201 | # CONFIG_VXFS_FS is not set | 1227 | # CONFIG_VXFS_FS is not set |
1228 | # CONFIG_MINIX_FS is not set | ||
1202 | # CONFIG_HPFS_FS is not set | 1229 | # CONFIG_HPFS_FS is not set |
1203 | # CONFIG_QNX4FS_FS is not set | 1230 | # CONFIG_QNX4FS_FS is not set |
1231 | # CONFIG_ROMFS_FS is not set | ||
1204 | # CONFIG_SYSV_FS is not set | 1232 | # CONFIG_SYSV_FS is not set |
1205 | # CONFIG_UFS_FS is not set | 1233 | # CONFIG_UFS_FS is not set |
1206 | CONFIG_NETWORK_FILESYSTEMS=y | 1234 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1248,7 +1276,6 @@ CONFIG_MSDOS_PARTITION=y | |||
1248 | # CONFIG_SYSV68_PARTITION is not set | 1276 | # CONFIG_SYSV68_PARTITION is not set |
1249 | # CONFIG_NLS is not set | 1277 | # CONFIG_NLS is not set |
1250 | # CONFIG_DLM is not set | 1278 | # CONFIG_DLM is not set |
1251 | # CONFIG_UCC_SLOW is not set | ||
1252 | 1279 | ||
1253 | # | 1280 | # |
1254 | # Library routines | 1281 | # Library routines |
@@ -1266,7 +1293,6 @@ CONFIG_PLIST=y | |||
1266 | CONFIG_HAS_IOMEM=y | 1293 | CONFIG_HAS_IOMEM=y |
1267 | CONFIG_HAS_IOPORT=y | 1294 | CONFIG_HAS_IOPORT=y |
1268 | CONFIG_HAS_DMA=y | 1295 | CONFIG_HAS_DMA=y |
1269 | # CONFIG_INSTRUMENTATION is not set | ||
1270 | 1296 | ||
1271 | # | 1297 | # |
1272 | # Kernel hacking | 1298 | # Kernel hacking |
@@ -1285,6 +1311,7 @@ CONFIG_SCHED_DEBUG=y | |||
1285 | # CONFIG_SCHEDSTATS is not set | 1311 | # CONFIG_SCHEDSTATS is not set |
1286 | # CONFIG_TIMER_STATS is not set | 1312 | # CONFIG_TIMER_STATS is not set |
1287 | # CONFIG_SLUB_DEBUG_ON is not set | 1313 | # CONFIG_SLUB_DEBUG_ON is not set |
1314 | # CONFIG_SLUB_STATS is not set | ||
1288 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1315 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1289 | # CONFIG_RT_MUTEX_TESTER is not set | 1316 | # CONFIG_RT_MUTEX_TESTER is not set |
1290 | # CONFIG_DEBUG_SPINLOCK is not set | 1317 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1297,9 +1324,9 @@ CONFIG_SCHED_DEBUG=y | |||
1297 | # CONFIG_DEBUG_VM is not set | 1324 | # CONFIG_DEBUG_VM is not set |
1298 | # CONFIG_DEBUG_LIST is not set | 1325 | # CONFIG_DEBUG_LIST is not set |
1299 | # CONFIG_DEBUG_SG is not set | 1326 | # CONFIG_DEBUG_SG is not set |
1300 | CONFIG_FORCED_INLINING=y | ||
1301 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1327 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1302 | # CONFIG_RCU_TORTURE_TEST is not set | 1328 | # CONFIG_RCU_TORTURE_TEST is not set |
1329 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1303 | # CONFIG_FAULT_INJECTION is not set | 1330 | # CONFIG_FAULT_INJECTION is not set |
1304 | # CONFIG_SAMPLES is not set | 1331 | # CONFIG_SAMPLES is not set |
1305 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1332 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1318,6 +1345,7 @@ CONFIG_FORCED_INLINING=y | |||
1318 | CONFIG_CRYPTO=y | 1345 | CONFIG_CRYPTO=y |
1319 | CONFIG_CRYPTO_ALGAPI=y | 1346 | CONFIG_CRYPTO_ALGAPI=y |
1320 | CONFIG_CRYPTO_BLKCIPHER=y | 1347 | CONFIG_CRYPTO_BLKCIPHER=y |
1348 | # CONFIG_CRYPTO_SEQIV is not set | ||
1321 | CONFIG_CRYPTO_MANAGER=y | 1349 | CONFIG_CRYPTO_MANAGER=y |
1322 | # CONFIG_CRYPTO_HMAC is not set | 1350 | # CONFIG_CRYPTO_HMAC is not set |
1323 | # CONFIG_CRYPTO_XCBC is not set | 1351 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1335,6 +1363,9 @@ CONFIG_CRYPTO_CBC=y | |||
1335 | CONFIG_CRYPTO_PCBC=m | 1363 | CONFIG_CRYPTO_PCBC=m |
1336 | # CONFIG_CRYPTO_LRW is not set | 1364 | # CONFIG_CRYPTO_LRW is not set |
1337 | # CONFIG_CRYPTO_XTS is not set | 1365 | # CONFIG_CRYPTO_XTS is not set |
1366 | # CONFIG_CRYPTO_CTR is not set | ||
1367 | # CONFIG_CRYPTO_GCM is not set | ||
1368 | # CONFIG_CRYPTO_CCM is not set | ||
1338 | # CONFIG_CRYPTO_CRYPTD is not set | 1369 | # CONFIG_CRYPTO_CRYPTD is not set |
1339 | CONFIG_CRYPTO_DES=y | 1370 | CONFIG_CRYPTO_DES=y |
1340 | # CONFIG_CRYPTO_FCRYPT is not set | 1371 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1349,11 +1380,14 @@ CONFIG_CRYPTO_DES=y | |||
1349 | # CONFIG_CRYPTO_KHAZAD is not set | 1380 | # CONFIG_CRYPTO_KHAZAD is not set |
1350 | # CONFIG_CRYPTO_ANUBIS is not set | 1381 | # CONFIG_CRYPTO_ANUBIS is not set |
1351 | # CONFIG_CRYPTO_SEED is not set | 1382 | # CONFIG_CRYPTO_SEED is not set |
1383 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1352 | # CONFIG_CRYPTO_DEFLATE is not set | 1384 | # CONFIG_CRYPTO_DEFLATE is not set |
1353 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1385 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1354 | # CONFIG_CRYPTO_CRC32C is not set | 1386 | # CONFIG_CRYPTO_CRC32C is not set |
1355 | # CONFIG_CRYPTO_CAMELLIA is not set | 1387 | # CONFIG_CRYPTO_CAMELLIA is not set |
1356 | # CONFIG_CRYPTO_TEST is not set | 1388 | # CONFIG_CRYPTO_TEST is not set |
1357 | # CONFIG_CRYPTO_AUTHENC is not set | 1389 | # CONFIG_CRYPTO_AUTHENC is not set |
1390 | # CONFIG_CRYPTO_LZO is not set | ||
1358 | CONFIG_CRYPTO_HW=y | 1391 | CONFIG_CRYPTO_HW=y |
1392 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1359 | # CONFIG_PPC_CLOCK is not set | 1393 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc8315_rdb_defconfig b/arch/powerpc/configs/mpc8315_rdb_defconfig index 9adf7f98f675..1f57456dd81e 100644 --- a/arch/powerpc/configs/mpc8315_rdb_defconfig +++ b/arch/powerpc/configs/mpc8315_rdb_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Wed Jan 23 20:02:25 2008 | 4 | # Mon Mar 24 08:48:15 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +91,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
92 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
93 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +105,12 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 105 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 106 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_HAVE_KRETPROBES=y | ||
113 | CONFIG_PROC_PAGE_MONITOR=y | ||
101 | CONFIG_SLABINFO=y | 114 | CONFIG_SLABINFO=y |
102 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
103 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
@@ -126,6 +139,7 @@ CONFIG_DEFAULT_AS=y | |||
126 | # CONFIG_DEFAULT_CFQ is not set | 139 | # CONFIG_DEFAULT_CFQ is not set |
127 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
128 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | ||
129 | 143 | ||
130 | # | 144 | # |
131 | # Platform support | 145 | # Platform support |
@@ -134,11 +148,12 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
134 | # CONFIG_PPC_82xx is not set | 148 | # CONFIG_PPC_82xx is not set |
135 | CONFIG_PPC_83xx=y | 149 | CONFIG_PPC_83xx=y |
136 | # CONFIG_PPC_86xx is not set | 150 | # CONFIG_PPC_86xx is not set |
137 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
138 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
139 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
140 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
141 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
156 | CONFIG_MPC83xx=y | ||
142 | CONFIG_MPC831x_RDB=y | 157 | CONFIG_MPC831x_RDB=y |
143 | # CONFIG_MPC832x_MDS is not set | 158 | # CONFIG_MPC832x_MDS is not set |
144 | # CONFIG_MPC832x_RDB is not set | 159 | # CONFIG_MPC832x_RDB is not set |
@@ -146,6 +161,8 @@ CONFIG_MPC831x_RDB=y | |||
146 | # CONFIG_MPC834x_ITX is not set | 161 | # CONFIG_MPC834x_ITX is not set |
147 | # CONFIG_MPC836x_MDS is not set | 162 | # CONFIG_MPC836x_MDS is not set |
148 | # CONFIG_MPC837x_MDS is not set | 163 | # CONFIG_MPC837x_MDS is not set |
164 | # CONFIG_MPC837x_RDB is not set | ||
165 | # CONFIG_SBC834x is not set | ||
149 | CONFIG_PPC_MPC831x=y | 166 | CONFIG_PPC_MPC831x=y |
150 | CONFIG_IPIC=y | 167 | CONFIG_IPIC=y |
151 | # CONFIG_MPIC is not set | 168 | # CONFIG_MPIC is not set |
@@ -158,7 +175,6 @@ CONFIG_IPIC=y | |||
158 | # CONFIG_PPC_INDIRECT_IO is not set | 175 | # CONFIG_PPC_INDIRECT_IO is not set |
159 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
160 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
161 | # CONFIG_CPM2 is not set | ||
162 | # CONFIG_FSL_ULI1575 is not set | 178 | # CONFIG_FSL_ULI1575 is not set |
163 | 179 | ||
164 | # | 180 | # |
@@ -174,12 +190,16 @@ CONFIG_HZ_250=y | |||
174 | # CONFIG_HZ_300 is not set | 190 | # CONFIG_HZ_300 is not set |
175 | # CONFIG_HZ_1000 is not set | 191 | # CONFIG_HZ_1000 is not set |
176 | CONFIG_HZ=250 | 192 | CONFIG_HZ=250 |
193 | # CONFIG_SCHED_HRTICK is not set | ||
177 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
178 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
179 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
180 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
181 | # CONFIG_BINFMT_MISC is not set | 198 | # CONFIG_BINFMT_MISC is not set |
199 | # CONFIG_IOMMU_HELPER is not set | ||
182 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
183 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
184 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
185 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -198,11 +218,7 @@ CONFIG_VIRT_TO_BUS=y | |||
198 | CONFIG_PROC_DEVICETREE=y | 218 | CONFIG_PROC_DEVICETREE=y |
199 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
200 | # CONFIG_PM is not set | 220 | # CONFIG_PM is not set |
201 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
202 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
203 | CONFIG_SECCOMP=y | 221 | CONFIG_SECCOMP=y |
204 | CONFIG_WANT_DEVICE_TREE=y | ||
205 | CONFIG_DEVICE_TREE="" | ||
206 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
207 | 223 | ||
208 | # | 224 | # |
@@ -252,6 +268,7 @@ CONFIG_XFRM=y | |||
252 | # CONFIG_XFRM_USER is not set | 268 | # CONFIG_XFRM_USER is not set |
253 | # CONFIG_XFRM_SUB_POLICY is not set | 269 | # CONFIG_XFRM_SUB_POLICY is not set |
254 | # CONFIG_XFRM_MIGRATE is not set | 270 | # CONFIG_XFRM_MIGRATE is not set |
271 | # CONFIG_XFRM_STATISTICS is not set | ||
255 | # CONFIG_NET_KEY is not set | 272 | # CONFIG_NET_KEY is not set |
256 | CONFIG_INET=y | 273 | CONFIG_INET=y |
257 | CONFIG_IP_MULTICAST=y | 274 | CONFIG_IP_MULTICAST=y |
@@ -307,6 +324,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
307 | # | 324 | # |
308 | # CONFIG_NET_PKTGEN is not set | 325 | # CONFIG_NET_PKTGEN is not set |
309 | # CONFIG_HAMRADIO is not set | 326 | # CONFIG_HAMRADIO is not set |
327 | # CONFIG_CAN is not set | ||
310 | # CONFIG_IRDA is not set | 328 | # CONFIG_IRDA is not set |
311 | # CONFIG_BT is not set | 329 | # CONFIG_BT is not set |
312 | # CONFIG_AF_RXRPC is not set | 330 | # CONFIG_AF_RXRPC is not set |
@@ -342,6 +360,7 @@ CONFIG_MTD=y | |||
342 | CONFIG_MTD_PARTITIONS=y | 360 | CONFIG_MTD_PARTITIONS=y |
343 | # CONFIG_MTD_REDBOOT_PARTS is not set | 361 | # CONFIG_MTD_REDBOOT_PARTS is not set |
344 | # CONFIG_MTD_CMDLINE_PARTS is not set | 362 | # CONFIG_MTD_CMDLINE_PARTS is not set |
363 | # CONFIG_MTD_OF_PARTS is not set | ||
345 | 364 | ||
346 | # | 365 | # |
347 | # User Modules And Translation Layers | 366 | # User Modules And Translation Layers |
@@ -417,6 +436,7 @@ CONFIG_MTD_NAND_IDS=y | |||
417 | # CONFIG_MTD_NAND_NANDSIM is not set | 436 | # CONFIG_MTD_NAND_NANDSIM is not set |
418 | # CONFIG_MTD_NAND_PLATFORM is not set | 437 | # CONFIG_MTD_NAND_PLATFORM is not set |
419 | # CONFIG_MTD_ALAUDA is not set | 438 | # CONFIG_MTD_ALAUDA is not set |
439 | # CONFIG_MTD_NAND_FSL_ELBC is not set | ||
420 | # CONFIG_MTD_ONENAND is not set | 440 | # CONFIG_MTD_ONENAND is not set |
421 | 441 | ||
422 | # | 442 | # |
@@ -440,7 +460,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
440 | CONFIG_BLK_DEV_RAM=y | 460 | CONFIG_BLK_DEV_RAM=y |
441 | CONFIG_BLK_DEV_RAM_COUNT=16 | 461 | CONFIG_BLK_DEV_RAM_COUNT=16 |
442 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 462 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
443 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 463 | # CONFIG_BLK_DEV_XIP is not set |
444 | # CONFIG_CDROM_PKTCDVD is not set | 464 | # CONFIG_CDROM_PKTCDVD is not set |
445 | # CONFIG_ATA_OVER_ETH is not set | 465 | # CONFIG_ATA_OVER_ETH is not set |
446 | CONFIG_MISC_DEVICES=y | 466 | CONFIG_MISC_DEVICES=y |
@@ -448,6 +468,8 @@ CONFIG_MISC_DEVICES=y | |||
448 | # CONFIG_EEPROM_93CX6 is not set | 468 | # CONFIG_EEPROM_93CX6 is not set |
449 | # CONFIG_SGI_IOC4 is not set | 469 | # CONFIG_SGI_IOC4 is not set |
450 | # CONFIG_TIFM_CORE is not set | 470 | # CONFIG_TIFM_CORE is not set |
471 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
472 | CONFIG_HAVE_IDE=y | ||
451 | # CONFIG_IDE is not set | 473 | # CONFIG_IDE is not set |
452 | 474 | ||
453 | # | 475 | # |
@@ -512,6 +534,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
512 | # CONFIG_SCSI_IPS is not set | 534 | # CONFIG_SCSI_IPS is not set |
513 | # CONFIG_SCSI_INITIO is not set | 535 | # CONFIG_SCSI_INITIO is not set |
514 | # CONFIG_SCSI_INIA100 is not set | 536 | # CONFIG_SCSI_INIA100 is not set |
537 | # CONFIG_SCSI_MVSAS is not set | ||
515 | # CONFIG_SCSI_STEX is not set | 538 | # CONFIG_SCSI_STEX is not set |
516 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 539 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
517 | # CONFIG_SCSI_IPR is not set | 540 | # CONFIG_SCSI_IPR is not set |
@@ -566,6 +589,7 @@ CONFIG_SATA_FSL=y | |||
566 | # CONFIG_PATA_MPIIX is not set | 589 | # CONFIG_PATA_MPIIX is not set |
567 | # CONFIG_PATA_OLDPIIX is not set | 590 | # CONFIG_PATA_OLDPIIX is not set |
568 | # CONFIG_PATA_NETCELL is not set | 591 | # CONFIG_PATA_NETCELL is not set |
592 | # CONFIG_PATA_NINJA32 is not set | ||
569 | # CONFIG_PATA_NS87410 is not set | 593 | # CONFIG_PATA_NS87410 is not set |
570 | # CONFIG_PATA_NS87415 is not set | 594 | # CONFIG_PATA_NS87415 is not set |
571 | # CONFIG_PATA_OPTI is not set | 595 | # CONFIG_PATA_OPTI is not set |
@@ -623,6 +647,7 @@ CONFIG_PHYLIB=y | |||
623 | # CONFIG_SMSC_PHY is not set | 647 | # CONFIG_SMSC_PHY is not set |
624 | # CONFIG_BROADCOM_PHY is not set | 648 | # CONFIG_BROADCOM_PHY is not set |
625 | # CONFIG_ICPLUS_PHY is not set | 649 | # CONFIG_ICPLUS_PHY is not set |
650 | # CONFIG_REALTEK_PHY is not set | ||
626 | # CONFIG_FIXED_PHY is not set | 651 | # CONFIG_FIXED_PHY is not set |
627 | # CONFIG_MDIO_BITBANG is not set | 652 | # CONFIG_MDIO_BITBANG is not set |
628 | CONFIG_NET_ETHERNET=y | 653 | CONFIG_NET_ETHERNET=y |
@@ -631,6 +656,7 @@ CONFIG_MII=y | |||
631 | # CONFIG_SUNGEM is not set | 656 | # CONFIG_SUNGEM is not set |
632 | # CONFIG_CASSINI is not set | 657 | # CONFIG_CASSINI is not set |
633 | # CONFIG_NET_VENDOR_3COM is not set | 658 | # CONFIG_NET_VENDOR_3COM is not set |
659 | # CONFIG_ENC28J60 is not set | ||
634 | # CONFIG_NET_TULIP is not set | 660 | # CONFIG_NET_TULIP is not set |
635 | # CONFIG_HP100 is not set | 661 | # CONFIG_HP100 is not set |
636 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 662 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -650,6 +676,7 @@ CONFIG_E100=y | |||
650 | # CONFIG_NE2K_PCI is not set | 676 | # CONFIG_NE2K_PCI is not set |
651 | # CONFIG_8139CP is not set | 677 | # CONFIG_8139CP is not set |
652 | # CONFIG_8139TOO is not set | 678 | # CONFIG_8139TOO is not set |
679 | # CONFIG_R6040 is not set | ||
653 | # CONFIG_SIS900 is not set | 680 | # CONFIG_SIS900 is not set |
654 | # CONFIG_EPIC100 is not set | 681 | # CONFIG_EPIC100 is not set |
655 | # CONFIG_SUNDANCE is not set | 682 | # CONFIG_SUNDANCE is not set |
@@ -661,7 +688,9 @@ CONFIG_NETDEV_1000=y | |||
661 | # CONFIG_DL2K is not set | 688 | # CONFIG_DL2K is not set |
662 | # CONFIG_E1000 is not set | 689 | # CONFIG_E1000 is not set |
663 | # CONFIG_E1000E is not set | 690 | # CONFIG_E1000E is not set |
691 | # CONFIG_E1000E_ENABLED is not set | ||
664 | # CONFIG_IP1000 is not set | 692 | # CONFIG_IP1000 is not set |
693 | # CONFIG_IGB is not set | ||
665 | # CONFIG_NS83820 is not set | 694 | # CONFIG_NS83820 is not set |
666 | # CONFIG_HAMACHI is not set | 695 | # CONFIG_HAMACHI is not set |
667 | # CONFIG_YELLOWFIN is not set | 696 | # CONFIG_YELLOWFIN is not set |
@@ -688,6 +717,7 @@ CONFIG_NETDEV_10000=y | |||
688 | # CONFIG_NIU is not set | 717 | # CONFIG_NIU is not set |
689 | # CONFIG_MLX4_CORE is not set | 718 | # CONFIG_MLX4_CORE is not set |
690 | # CONFIG_TEHUTI is not set | 719 | # CONFIG_TEHUTI is not set |
720 | # CONFIG_BNX2X is not set | ||
691 | # CONFIG_TR is not set | 721 | # CONFIG_TR is not set |
692 | 722 | ||
693 | # | 723 | # |
@@ -710,7 +740,6 @@ CONFIG_NETDEV_10000=y | |||
710 | # CONFIG_PPP is not set | 740 | # CONFIG_PPP is not set |
711 | # CONFIG_SLIP is not set | 741 | # CONFIG_SLIP is not set |
712 | # CONFIG_NET_FC is not set | 742 | # CONFIG_NET_FC is not set |
713 | # CONFIG_SHAPER is not set | ||
714 | # CONFIG_NETCONSOLE is not set | 743 | # CONFIG_NETCONSOLE is not set |
715 | # CONFIG_NETPOLL is not set | 744 | # CONFIG_NETPOLL is not set |
716 | # CONFIG_NET_POLL_CONTROLLER is not set | 745 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -753,6 +782,7 @@ CONFIG_INPUT=y | |||
753 | # | 782 | # |
754 | # CONFIG_VT is not set | 783 | # CONFIG_VT is not set |
755 | # CONFIG_SERIAL_NONSTANDARD is not set | 784 | # CONFIG_SERIAL_NONSTANDARD is not set |
785 | # CONFIG_NOZOMI is not set | ||
756 | 786 | ||
757 | # | 787 | # |
758 | # Serial drivers | 788 | # Serial drivers |
@@ -826,14 +856,12 @@ CONFIG_I2C_MPC=y | |||
826 | # | 856 | # |
827 | # Miscellaneous I2C Chip support | 857 | # Miscellaneous I2C Chip support |
828 | # | 858 | # |
829 | # CONFIG_SENSORS_DS1337 is not set | ||
830 | # CONFIG_SENSORS_DS1374 is not set | ||
831 | # CONFIG_DS1682 is not set | 859 | # CONFIG_DS1682 is not set |
832 | # CONFIG_SENSORS_EEPROM is not set | 860 | # CONFIG_SENSORS_EEPROM is not set |
833 | # CONFIG_SENSORS_PCF8574 is not set | 861 | # CONFIG_SENSORS_PCF8574 is not set |
834 | # CONFIG_SENSORS_PCA9539 is not set | 862 | # CONFIG_PCF8575 is not set |
835 | # CONFIG_SENSORS_PCF8591 is not set | 863 | # CONFIG_SENSORS_PCF8591 is not set |
836 | # CONFIG_SENSORS_M41T00 is not set | 864 | # CONFIG_TPS65010 is not set |
837 | # CONFIG_SENSORS_MAX6875 is not set | 865 | # CONFIG_SENSORS_MAX6875 is not set |
838 | # CONFIG_SENSORS_TSL2550 is not set | 866 | # CONFIG_SENSORS_TSL2550 is not set |
839 | # CONFIG_I2C_DEBUG_CORE is not set | 867 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -872,6 +900,7 @@ CONFIG_HWMON=y | |||
872 | # CONFIG_SENSORS_ADM1031 is not set | 900 | # CONFIG_SENSORS_ADM1031 is not set |
873 | # CONFIG_SENSORS_ADM9240 is not set | 901 | # CONFIG_SENSORS_ADM9240 is not set |
874 | # CONFIG_SENSORS_ADT7470 is not set | 902 | # CONFIG_SENSORS_ADT7470 is not set |
903 | # CONFIG_SENSORS_ADT7473 is not set | ||
875 | # CONFIG_SENSORS_ATXP1 is not set | 904 | # CONFIG_SENSORS_ATXP1 is not set |
876 | # CONFIG_SENSORS_DS1621 is not set | 905 | # CONFIG_SENSORS_DS1621 is not set |
877 | # CONFIG_SENSORS_I5K_AMB is not set | 906 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -902,6 +931,7 @@ CONFIG_HWMON=y | |||
902 | # CONFIG_SENSORS_SMSC47M1 is not set | 931 | # CONFIG_SENSORS_SMSC47M1 is not set |
903 | # CONFIG_SENSORS_SMSC47M192 is not set | 932 | # CONFIG_SENSORS_SMSC47M192 is not set |
904 | # CONFIG_SENSORS_SMSC47B397 is not set | 933 | # CONFIG_SENSORS_SMSC47B397 is not set |
934 | # CONFIG_SENSORS_ADS7828 is not set | ||
905 | # CONFIG_SENSORS_THMC50 is not set | 935 | # CONFIG_SENSORS_THMC50 is not set |
906 | # CONFIG_SENSORS_VIA686A is not set | 936 | # CONFIG_SENSORS_VIA686A is not set |
907 | # CONFIG_SENSORS_VT1211 is not set | 937 | # CONFIG_SENSORS_VT1211 is not set |
@@ -911,9 +941,11 @@ CONFIG_HWMON=y | |||
911 | # CONFIG_SENSORS_W83792D is not set | 941 | # CONFIG_SENSORS_W83792D is not set |
912 | # CONFIG_SENSORS_W83793 is not set | 942 | # CONFIG_SENSORS_W83793 is not set |
913 | # CONFIG_SENSORS_W83L785TS is not set | 943 | # CONFIG_SENSORS_W83L785TS is not set |
944 | # CONFIG_SENSORS_W83L786NG is not set | ||
914 | # CONFIG_SENSORS_W83627HF is not set | 945 | # CONFIG_SENSORS_W83627HF is not set |
915 | # CONFIG_SENSORS_W83627EHF is not set | 946 | # CONFIG_SENSORS_W83627EHF is not set |
916 | # CONFIG_HWMON_DEBUG_CHIP is not set | 947 | # CONFIG_HWMON_DEBUG_CHIP is not set |
948 | # CONFIG_THERMAL is not set | ||
917 | CONFIG_WATCHDOG=y | 949 | CONFIG_WATCHDOG=y |
918 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 950 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
919 | 951 | ||
@@ -993,6 +1025,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
993 | CONFIG_USB_ARCH_HAS_EHCI=y | 1025 | CONFIG_USB_ARCH_HAS_EHCI=y |
994 | CONFIG_USB=y | 1026 | CONFIG_USB=y |
995 | # CONFIG_USB_DEBUG is not set | 1027 | # CONFIG_USB_DEBUG is not set |
1028 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
996 | 1029 | ||
997 | # | 1030 | # |
998 | # Miscellaneous USB options | 1031 | # Miscellaneous USB options |
@@ -1006,10 +1039,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
1006 | # USB Host Controller Drivers | 1039 | # USB Host Controller Drivers |
1007 | # | 1040 | # |
1008 | CONFIG_USB_EHCI_HCD=y | 1041 | CONFIG_USB_EHCI_HCD=y |
1009 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
1010 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 1042 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
1011 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1043 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1012 | CONFIG_USB_EHCI_FSL=y | 1044 | CONFIG_USB_EHCI_FSL=y |
1045 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1013 | # CONFIG_USB_ISP116X_HCD is not set | 1046 | # CONFIG_USB_ISP116X_HCD is not set |
1014 | CONFIG_USB_OHCI_HCD=y | 1047 | CONFIG_USB_OHCI_HCD=y |
1015 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1048 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
@@ -1060,10 +1093,6 @@ CONFIG_USB_MON=y | |||
1060 | # | 1093 | # |
1061 | # USB port drivers | 1094 | # USB port drivers |
1062 | # | 1095 | # |
1063 | |||
1064 | # | ||
1065 | # USB Serial Converter support | ||
1066 | # | ||
1067 | # CONFIG_USB_SERIAL is not set | 1096 | # CONFIG_USB_SERIAL is not set |
1068 | 1097 | ||
1069 | # | 1098 | # |
@@ -1089,14 +1118,6 @@ CONFIG_USB_MON=y | |||
1089 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1118 | # CONFIG_USB_TRANCEVIBRATOR is not set |
1090 | # CONFIG_USB_IOWARRIOR is not set | 1119 | # CONFIG_USB_IOWARRIOR is not set |
1091 | # CONFIG_USB_TEST is not set | 1120 | # CONFIG_USB_TEST is not set |
1092 | |||
1093 | # | ||
1094 | # USB DSL modem support | ||
1095 | # | ||
1096 | |||
1097 | # | ||
1098 | # USB Gadget Support | ||
1099 | # | ||
1100 | CONFIG_USB_GADGET=y | 1121 | CONFIG_USB_GADGET=y |
1101 | # CONFIG_USB_GADGET_DEBUG is not set | 1122 | # CONFIG_USB_GADGET_DEBUG is not set |
1102 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | 1123 | # CONFIG_USB_GADGET_DEBUG_FILES is not set |
@@ -1122,7 +1143,9 @@ CONFIG_USB_ETH_RNDIS=y | |||
1122 | # CONFIG_USB_FILE_STORAGE is not set | 1143 | # CONFIG_USB_FILE_STORAGE is not set |
1123 | # CONFIG_USB_G_SERIAL is not set | 1144 | # CONFIG_USB_G_SERIAL is not set |
1124 | # CONFIG_USB_MIDI_GADGET is not set | 1145 | # CONFIG_USB_MIDI_GADGET is not set |
1146 | # CONFIG_USB_G_PRINTER is not set | ||
1125 | # CONFIG_MMC is not set | 1147 | # CONFIG_MMC is not set |
1148 | # CONFIG_MEMSTICK is not set | ||
1126 | # CONFIG_NEW_LEDS is not set | 1149 | # CONFIG_NEW_LEDS is not set |
1127 | # CONFIG_INFINIBAND is not set | 1150 | # CONFIG_INFINIBAND is not set |
1128 | # CONFIG_EDAC is not set | 1151 | # CONFIG_EDAC is not set |
@@ -1154,20 +1177,23 @@ CONFIG_RTC_DRV_DS1307=y | |||
1154 | # CONFIG_RTC_DRV_PCF8563 is not set | 1177 | # CONFIG_RTC_DRV_PCF8563 is not set |
1155 | # CONFIG_RTC_DRV_PCF8583 is not set | 1178 | # CONFIG_RTC_DRV_PCF8583 is not set |
1156 | # CONFIG_RTC_DRV_M41T80 is not set | 1179 | # CONFIG_RTC_DRV_M41T80 is not set |
1180 | # CONFIG_RTC_DRV_S35390A is not set | ||
1157 | 1181 | ||
1158 | # | 1182 | # |
1159 | # SPI RTC drivers | 1183 | # SPI RTC drivers |
1160 | # | 1184 | # |
1161 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1162 | # CONFIG_RTC_DRV_MAX6902 is not set | 1185 | # CONFIG_RTC_DRV_MAX6902 is not set |
1186 | # CONFIG_RTC_DRV_R9701 is not set | ||
1187 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1163 | 1188 | ||
1164 | # | 1189 | # |
1165 | # Platform RTC drivers | 1190 | # Platform RTC drivers |
1166 | # | 1191 | # |
1167 | # CONFIG_RTC_DRV_CMOS is not set | 1192 | # CONFIG_RTC_DRV_CMOS is not set |
1193 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1168 | # CONFIG_RTC_DRV_DS1553 is not set | 1194 | # CONFIG_RTC_DRV_DS1553 is not set |
1169 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1170 | # CONFIG_RTC_DRV_DS1742 is not set | 1195 | # CONFIG_RTC_DRV_DS1742 is not set |
1196 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1171 | # CONFIG_RTC_DRV_M48T86 is not set | 1197 | # CONFIG_RTC_DRV_M48T86 is not set |
1172 | # CONFIG_RTC_DRV_M48T59 is not set | 1198 | # CONFIG_RTC_DRV_M48T59 is not set |
1173 | # CONFIG_RTC_DRV_V3020 is not set | 1199 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1175,6 +1201,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
1175 | # | 1201 | # |
1176 | # on-CPU RTC drivers | 1202 | # on-CPU RTC drivers |
1177 | # | 1203 | # |
1204 | # CONFIG_DMADEVICES is not set | ||
1178 | 1205 | ||
1179 | # | 1206 | # |
1180 | # Userspace I/O | 1207 | # Userspace I/O |
@@ -1200,12 +1227,10 @@ CONFIG_FS_MBCACHE=y | |||
1200 | # CONFIG_XFS_FS is not set | 1227 | # CONFIG_XFS_FS is not set |
1201 | # CONFIG_GFS2_FS is not set | 1228 | # CONFIG_GFS2_FS is not set |
1202 | # CONFIG_OCFS2_FS is not set | 1229 | # CONFIG_OCFS2_FS is not set |
1203 | # CONFIG_MINIX_FS is not set | 1230 | CONFIG_DNOTIFY=y |
1204 | # CONFIG_ROMFS_FS is not set | ||
1205 | CONFIG_INOTIFY=y | 1231 | CONFIG_INOTIFY=y |
1206 | CONFIG_INOTIFY_USER=y | 1232 | CONFIG_INOTIFY_USER=y |
1207 | # CONFIG_QUOTA is not set | 1233 | # CONFIG_QUOTA is not set |
1208 | CONFIG_DNOTIFY=y | ||
1209 | # CONFIG_AUTOFS_FS is not set | 1234 | # CONFIG_AUTOFS_FS is not set |
1210 | # CONFIG_AUTOFS4_FS is not set | 1235 | # CONFIG_AUTOFS4_FS is not set |
1211 | # CONFIG_FUSE_FS is not set | 1236 | # CONFIG_FUSE_FS is not set |
@@ -1258,8 +1283,10 @@ CONFIG_JFFS2_RTIME=y | |||
1258 | # CONFIG_JFFS2_RUBIN is not set | 1283 | # CONFIG_JFFS2_RUBIN is not set |
1259 | # CONFIG_CRAMFS is not set | 1284 | # CONFIG_CRAMFS is not set |
1260 | # CONFIG_VXFS_FS is not set | 1285 | # CONFIG_VXFS_FS is not set |
1286 | # CONFIG_MINIX_FS is not set | ||
1261 | # CONFIG_HPFS_FS is not set | 1287 | # CONFIG_HPFS_FS is not set |
1262 | # CONFIG_QNX4FS_FS is not set | 1288 | # CONFIG_QNX4FS_FS is not set |
1289 | # CONFIG_ROMFS_FS is not set | ||
1263 | # CONFIG_SYSV_FS is not set | 1290 | # CONFIG_SYSV_FS is not set |
1264 | # CONFIG_UFS_FS is not set | 1291 | # CONFIG_UFS_FS is not set |
1265 | CONFIG_NETWORK_FILESYSTEMS=y | 1292 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1324,7 +1351,6 @@ CONFIG_PLIST=y | |||
1324 | CONFIG_HAS_IOMEM=y | 1351 | CONFIG_HAS_IOMEM=y |
1325 | CONFIG_HAS_IOPORT=y | 1352 | CONFIG_HAS_IOPORT=y |
1326 | CONFIG_HAS_DMA=y | 1353 | CONFIG_HAS_DMA=y |
1327 | # CONFIG_INSTRUMENTATION is not set | ||
1328 | 1354 | ||
1329 | # | 1355 | # |
1330 | # Kernel hacking | 1356 | # Kernel hacking |
@@ -1343,6 +1369,7 @@ CONFIG_SCHED_DEBUG=y | |||
1343 | # CONFIG_SCHEDSTATS is not set | 1369 | # CONFIG_SCHEDSTATS is not set |
1344 | # CONFIG_TIMER_STATS is not set | 1370 | # CONFIG_TIMER_STATS is not set |
1345 | # CONFIG_SLUB_DEBUG_ON is not set | 1371 | # CONFIG_SLUB_DEBUG_ON is not set |
1372 | # CONFIG_SLUB_STATS is not set | ||
1346 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1373 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1347 | # CONFIG_RT_MUTEX_TESTER is not set | 1374 | # CONFIG_RT_MUTEX_TESTER is not set |
1348 | # CONFIG_DEBUG_SPINLOCK is not set | 1375 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1355,9 +1382,9 @@ CONFIG_SCHED_DEBUG=y | |||
1355 | # CONFIG_DEBUG_VM is not set | 1382 | # CONFIG_DEBUG_VM is not set |
1356 | # CONFIG_DEBUG_LIST is not set | 1383 | # CONFIG_DEBUG_LIST is not set |
1357 | # CONFIG_DEBUG_SG is not set | 1384 | # CONFIG_DEBUG_SG is not set |
1358 | CONFIG_FORCED_INLINING=y | ||
1359 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1385 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1360 | # CONFIG_RCU_TORTURE_TEST is not set | 1386 | # CONFIG_RCU_TORTURE_TEST is not set |
1387 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1361 | # CONFIG_FAULT_INJECTION is not set | 1388 | # CONFIG_FAULT_INJECTION is not set |
1362 | # CONFIG_SAMPLES is not set | 1389 | # CONFIG_SAMPLES is not set |
1363 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1390 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1376,6 +1403,7 @@ CONFIG_FORCED_INLINING=y | |||
1376 | CONFIG_CRYPTO=y | 1403 | CONFIG_CRYPTO=y |
1377 | CONFIG_CRYPTO_ALGAPI=y | 1404 | CONFIG_CRYPTO_ALGAPI=y |
1378 | CONFIG_CRYPTO_BLKCIPHER=y | 1405 | CONFIG_CRYPTO_BLKCIPHER=y |
1406 | # CONFIG_CRYPTO_SEQIV is not set | ||
1379 | CONFIG_CRYPTO_MANAGER=y | 1407 | CONFIG_CRYPTO_MANAGER=y |
1380 | # CONFIG_CRYPTO_HMAC is not set | 1408 | # CONFIG_CRYPTO_HMAC is not set |
1381 | # CONFIG_CRYPTO_XCBC is not set | 1409 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1393,6 +1421,9 @@ CONFIG_CRYPTO_CBC=y | |||
1393 | CONFIG_CRYPTO_PCBC=m | 1421 | CONFIG_CRYPTO_PCBC=m |
1394 | # CONFIG_CRYPTO_LRW is not set | 1422 | # CONFIG_CRYPTO_LRW is not set |
1395 | # CONFIG_CRYPTO_XTS is not set | 1423 | # CONFIG_CRYPTO_XTS is not set |
1424 | # CONFIG_CRYPTO_CTR is not set | ||
1425 | # CONFIG_CRYPTO_GCM is not set | ||
1426 | # CONFIG_CRYPTO_CCM is not set | ||
1396 | # CONFIG_CRYPTO_CRYPTD is not set | 1427 | # CONFIG_CRYPTO_CRYPTD is not set |
1397 | CONFIG_CRYPTO_DES=y | 1428 | CONFIG_CRYPTO_DES=y |
1398 | # CONFIG_CRYPTO_FCRYPT is not set | 1429 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1407,11 +1438,14 @@ CONFIG_CRYPTO_DES=y | |||
1407 | # CONFIG_CRYPTO_KHAZAD is not set | 1438 | # CONFIG_CRYPTO_KHAZAD is not set |
1408 | # CONFIG_CRYPTO_ANUBIS is not set | 1439 | # CONFIG_CRYPTO_ANUBIS is not set |
1409 | # CONFIG_CRYPTO_SEED is not set | 1440 | # CONFIG_CRYPTO_SEED is not set |
1441 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1410 | # CONFIG_CRYPTO_DEFLATE is not set | 1442 | # CONFIG_CRYPTO_DEFLATE is not set |
1411 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1443 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1412 | # CONFIG_CRYPTO_CRC32C is not set | 1444 | # CONFIG_CRYPTO_CRC32C is not set |
1413 | # CONFIG_CRYPTO_CAMELLIA is not set | 1445 | # CONFIG_CRYPTO_CAMELLIA is not set |
1414 | # CONFIG_CRYPTO_TEST is not set | 1446 | # CONFIG_CRYPTO_TEST is not set |
1415 | # CONFIG_CRYPTO_AUTHENC is not set | 1447 | # CONFIG_CRYPTO_AUTHENC is not set |
1448 | # CONFIG_CRYPTO_LZO is not set | ||
1416 | CONFIG_CRYPTO_HW=y | 1449 | CONFIG_CRYPTO_HW=y |
1450 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1417 | # CONFIG_PPC_CLOCK is not set | 1451 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc832x_mds_defconfig b/arch/powerpc/configs/mpc832x_mds_defconfig index 2d8951b1096e..79d228f84c5a 100644 --- a/arch/powerpc/configs/mpc832x_mds_defconfig +++ b/arch/powerpc/configs/mpc832x_mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:33 2007 | 4 | # Mon Mar 24 08:48:16 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +91,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
92 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
93 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +105,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 105 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 106 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_HAVE_KRETPROBES=y | ||
113 | CONFIG_PROC_PAGE_MONITOR=y | ||
114 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 117 | CONFIG_BASE_SMALL=0 |
@@ -125,6 +139,7 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 139 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | ||
128 | 143 | ||
129 | # | 144 | # |
130 | # Platform support | 145 | # Platform support |
@@ -133,18 +148,23 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
133 | # CONFIG_PPC_82xx is not set | 148 | # CONFIG_PPC_82xx is not set |
134 | CONFIG_PPC_83xx=y | 149 | CONFIG_PPC_83xx=y |
135 | # CONFIG_PPC_86xx is not set | 150 | # CONFIG_PPC_86xx is not set |
136 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
137 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
138 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
139 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
140 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
141 | # CONFIG_MPC8313_RDB is not set | 156 | CONFIG_MPC83xx=y |
157 | # CONFIG_MPC831x_RDB is not set | ||
142 | CONFIG_MPC832x_MDS=y | 158 | CONFIG_MPC832x_MDS=y |
143 | # CONFIG_MPC832x_RDB is not set | 159 | # CONFIG_MPC832x_RDB is not set |
144 | # CONFIG_MPC834x_MDS is not set | 160 | # CONFIG_MPC834x_MDS is not set |
145 | # CONFIG_MPC834x_ITX is not set | 161 | # CONFIG_MPC834x_ITX is not set |
146 | # CONFIG_MPC836x_MDS is not set | 162 | # CONFIG_MPC836x_MDS is not set |
163 | # CONFIG_MPC837x_MDS is not set | ||
164 | # CONFIG_MPC837x_RDB is not set | ||
165 | # CONFIG_SBC834x is not set | ||
147 | CONFIG_PPC_MPC832x=y | 166 | CONFIG_PPC_MPC832x=y |
167 | CONFIG_IPIC=y | ||
148 | # CONFIG_MPIC is not set | 168 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 169 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 170 | # CONFIG_PPC_I8259 is not set |
@@ -156,7 +176,6 @@ CONFIG_PPC_MPC832x=y | |||
156 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
158 | CONFIG_QUICC_ENGINE=y | 178 | CONFIG_QUICC_ENGINE=y |
159 | # CONFIG_CPM2 is not set | ||
160 | # CONFIG_FSL_ULI1575 is not set | 179 | # CONFIG_FSL_ULI1575 is not set |
161 | 180 | ||
162 | # | 181 | # |
@@ -172,13 +191,17 @@ CONFIG_HZ_250=y | |||
172 | # CONFIG_HZ_300 is not set | 191 | # CONFIG_HZ_300 is not set |
173 | # CONFIG_HZ_1000 is not set | 192 | # CONFIG_HZ_1000 is not set |
174 | CONFIG_HZ=250 | 193 | CONFIG_HZ=250 |
194 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 195 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 196 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 197 | # CONFIG_PREEMPT is not set |
178 | CONFIG_BINFMT_ELF=y | 198 | CONFIG_BINFMT_ELF=y |
179 | # CONFIG_BINFMT_MISC is not set | 199 | # CONFIG_BINFMT_MISC is not set |
180 | CONFIG_MATH_EMULATION=y | 200 | CONFIG_MATH_EMULATION=y |
201 | # CONFIG_IOMMU_HELPER is not set | ||
181 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 202 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
203 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
204 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
182 | CONFIG_ARCH_FLATMEM_ENABLE=y | 205 | CONFIG_ARCH_FLATMEM_ENABLE=y |
183 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 206 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
184 | CONFIG_SELECT_MEMORY_MODEL=y | 207 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -197,11 +220,7 @@ CONFIG_VIRT_TO_BUS=y | |||
197 | CONFIG_PROC_DEVICETREE=y | 220 | CONFIG_PROC_DEVICETREE=y |
198 | # CONFIG_CMDLINE_BOOL is not set | 221 | # CONFIG_CMDLINE_BOOL is not set |
199 | # CONFIG_PM is not set | 222 | # CONFIG_PM is not set |
200 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
201 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
202 | CONFIG_SECCOMP=y | 223 | CONFIG_SECCOMP=y |
203 | CONFIG_WANT_DEVICE_TREE=y | ||
204 | CONFIG_DEVICE_TREE="" | ||
205 | CONFIG_ISA_DMA_API=y | 224 | CONFIG_ISA_DMA_API=y |
206 | 225 | ||
207 | # | 226 | # |
@@ -250,6 +269,7 @@ CONFIG_XFRM=y | |||
250 | # CONFIG_XFRM_USER is not set | 269 | # CONFIG_XFRM_USER is not set |
251 | # CONFIG_XFRM_SUB_POLICY is not set | 270 | # CONFIG_XFRM_SUB_POLICY is not set |
252 | # CONFIG_XFRM_MIGRATE is not set | 271 | # CONFIG_XFRM_MIGRATE is not set |
272 | # CONFIG_XFRM_STATISTICS is not set | ||
253 | # CONFIG_NET_KEY is not set | 273 | # CONFIG_NET_KEY is not set |
254 | CONFIG_INET=y | 274 | CONFIG_INET=y |
255 | CONFIG_IP_MULTICAST=y | 275 | CONFIG_IP_MULTICAST=y |
@@ -305,6 +325,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
305 | # | 325 | # |
306 | # CONFIG_NET_PKTGEN is not set | 326 | # CONFIG_NET_PKTGEN is not set |
307 | # CONFIG_HAMRADIO is not set | 327 | # CONFIG_HAMRADIO is not set |
328 | # CONFIG_CAN is not set | ||
308 | # CONFIG_IRDA is not set | 329 | # CONFIG_IRDA is not set |
309 | # CONFIG_BT is not set | 330 | # CONFIG_BT is not set |
310 | # CONFIG_AF_RXRPC is not set | 331 | # CONFIG_AF_RXRPC is not set |
@@ -349,7 +370,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
349 | CONFIG_BLK_DEV_RAM=y | 370 | CONFIG_BLK_DEV_RAM=y |
350 | CONFIG_BLK_DEV_RAM_COUNT=16 | 371 | CONFIG_BLK_DEV_RAM_COUNT=16 |
351 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 372 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
352 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 373 | # CONFIG_BLK_DEV_XIP is not set |
353 | # CONFIG_CDROM_PKTCDVD is not set | 374 | # CONFIG_CDROM_PKTCDVD is not set |
354 | # CONFIG_ATA_OVER_ETH is not set | 375 | # CONFIG_ATA_OVER_ETH is not set |
355 | CONFIG_MISC_DEVICES=y | 376 | CONFIG_MISC_DEVICES=y |
@@ -357,6 +378,8 @@ CONFIG_MISC_DEVICES=y | |||
357 | # CONFIG_EEPROM_93CX6 is not set | 378 | # CONFIG_EEPROM_93CX6 is not set |
358 | # CONFIG_SGI_IOC4 is not set | 379 | # CONFIG_SGI_IOC4 is not set |
359 | # CONFIG_TIFM_CORE is not set | 380 | # CONFIG_TIFM_CORE is not set |
381 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
382 | CONFIG_HAVE_IDE=y | ||
360 | # CONFIG_IDE is not set | 383 | # CONFIG_IDE is not set |
361 | 384 | ||
362 | # | 385 | # |
@@ -421,6 +444,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
421 | # CONFIG_SCSI_IPS is not set | 444 | # CONFIG_SCSI_IPS is not set |
422 | # CONFIG_SCSI_INITIO is not set | 445 | # CONFIG_SCSI_INITIO is not set |
423 | # CONFIG_SCSI_INIA100 is not set | 446 | # CONFIG_SCSI_INIA100 is not set |
447 | # CONFIG_SCSI_MVSAS is not set | ||
424 | # CONFIG_SCSI_STEX is not set | 448 | # CONFIG_SCSI_STEX is not set |
425 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 449 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
426 | # CONFIG_SCSI_QLOGIC_1280 is not set | 450 | # CONFIG_SCSI_QLOGIC_1280 is not set |
@@ -451,7 +475,6 @@ CONFIG_NETDEVICES=y | |||
451 | # CONFIG_EQUALIZER is not set | 475 | # CONFIG_EQUALIZER is not set |
452 | # CONFIG_TUN is not set | 476 | # CONFIG_TUN is not set |
453 | # CONFIG_VETH is not set | 477 | # CONFIG_VETH is not set |
454 | # CONFIG_IP1000 is not set | ||
455 | # CONFIG_ARCNET is not set | 478 | # CONFIG_ARCNET is not set |
456 | CONFIG_PHYLIB=y | 479 | CONFIG_PHYLIB=y |
457 | 480 | ||
@@ -467,6 +490,7 @@ CONFIG_DAVICOM_PHY=y | |||
467 | # CONFIG_SMSC_PHY is not set | 490 | # CONFIG_SMSC_PHY is not set |
468 | # CONFIG_BROADCOM_PHY is not set | 491 | # CONFIG_BROADCOM_PHY is not set |
469 | # CONFIG_ICPLUS_PHY is not set | 492 | # CONFIG_ICPLUS_PHY is not set |
493 | # CONFIG_REALTEK_PHY is not set | ||
470 | # CONFIG_FIXED_PHY is not set | 494 | # CONFIG_FIXED_PHY is not set |
471 | # CONFIG_MDIO_BITBANG is not set | 495 | # CONFIG_MDIO_BITBANG is not set |
472 | CONFIG_NET_ETHERNET=y | 496 | CONFIG_NET_ETHERNET=y |
@@ -488,6 +512,9 @@ CONFIG_NETDEV_1000=y | |||
488 | # CONFIG_DL2K is not set | 512 | # CONFIG_DL2K is not set |
489 | # CONFIG_E1000 is not set | 513 | # CONFIG_E1000 is not set |
490 | # CONFIG_E1000E is not set | 514 | # CONFIG_E1000E is not set |
515 | # CONFIG_E1000E_ENABLED is not set | ||
516 | # CONFIG_IP1000 is not set | ||
517 | # CONFIG_IGB is not set | ||
491 | # CONFIG_NS83820 is not set | 518 | # CONFIG_NS83820 is not set |
492 | # CONFIG_HAMACHI is not set | 519 | # CONFIG_HAMACHI is not set |
493 | # CONFIG_YELLOWFIN is not set | 520 | # CONFIG_YELLOWFIN is not set |
@@ -518,6 +545,7 @@ CONFIG_NETDEV_10000=y | |||
518 | # CONFIG_NIU is not set | 545 | # CONFIG_NIU is not set |
519 | # CONFIG_MLX4_CORE is not set | 546 | # CONFIG_MLX4_CORE is not set |
520 | # CONFIG_TEHUTI is not set | 547 | # CONFIG_TEHUTI is not set |
548 | # CONFIG_BNX2X is not set | ||
521 | # CONFIG_TR is not set | 549 | # CONFIG_TR is not set |
522 | 550 | ||
523 | # | 551 | # |
@@ -531,7 +559,6 @@ CONFIG_NETDEV_10000=y | |||
531 | # CONFIG_PPP is not set | 559 | # CONFIG_PPP is not set |
532 | # CONFIG_SLIP is not set | 560 | # CONFIG_SLIP is not set |
533 | # CONFIG_NET_FC is not set | 561 | # CONFIG_NET_FC is not set |
534 | # CONFIG_SHAPER is not set | ||
535 | # CONFIG_NETCONSOLE is not set | 562 | # CONFIG_NETCONSOLE is not set |
536 | # CONFIG_NETPOLL is not set | 563 | # CONFIG_NETPOLL is not set |
537 | # CONFIG_NET_POLL_CONTROLLER is not set | 564 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -574,6 +601,7 @@ CONFIG_INPUT=y | |||
574 | # | 601 | # |
575 | # CONFIG_VT is not set | 602 | # CONFIG_VT is not set |
576 | # CONFIG_SERIAL_NONSTANDARD is not set | 603 | # CONFIG_SERIAL_NONSTANDARD is not set |
604 | # CONFIG_NOZOMI is not set | ||
577 | 605 | ||
578 | # | 606 | # |
579 | # Serial drivers | 607 | # Serial drivers |
@@ -593,6 +621,7 @@ CONFIG_SERIAL_CORE=y | |||
593 | CONFIG_SERIAL_CORE_CONSOLE=y | 621 | CONFIG_SERIAL_CORE_CONSOLE=y |
594 | # CONFIG_SERIAL_JSM is not set | 622 | # CONFIG_SERIAL_JSM is not set |
595 | # CONFIG_SERIAL_OF_PLATFORM is not set | 623 | # CONFIG_SERIAL_OF_PLATFORM is not set |
624 | # CONFIG_SERIAL_QE is not set | ||
596 | CONFIG_UNIX98_PTYS=y | 625 | CONFIG_UNIX98_PTYS=y |
597 | CONFIG_LEGACY_PTYS=y | 626 | CONFIG_LEGACY_PTYS=y |
598 | CONFIG_LEGACY_PTY_COUNT=256 | 627 | CONFIG_LEGACY_PTY_COUNT=256 |
@@ -647,14 +676,12 @@ CONFIG_I2C_MPC=y | |||
647 | # | 676 | # |
648 | # Miscellaneous I2C Chip support | 677 | # Miscellaneous I2C Chip support |
649 | # | 678 | # |
650 | # CONFIG_SENSORS_DS1337 is not set | ||
651 | # CONFIG_SENSORS_DS1374 is not set | ||
652 | # CONFIG_DS1682 is not set | 679 | # CONFIG_DS1682 is not set |
653 | # CONFIG_SENSORS_EEPROM is not set | 680 | # CONFIG_SENSORS_EEPROM is not set |
654 | # CONFIG_SENSORS_PCF8574 is not set | 681 | # CONFIG_SENSORS_PCF8574 is not set |
655 | # CONFIG_SENSORS_PCA9539 is not set | 682 | # CONFIG_PCF8575 is not set |
656 | # CONFIG_SENSORS_PCF8591 is not set | 683 | # CONFIG_SENSORS_PCF8591 is not set |
657 | # CONFIG_SENSORS_M41T00 is not set | 684 | # CONFIG_TPS65010 is not set |
658 | # CONFIG_SENSORS_MAX6875 is not set | 685 | # CONFIG_SENSORS_MAX6875 is not set |
659 | # CONFIG_SENSORS_TSL2550 is not set | 686 | # CONFIG_SENSORS_TSL2550 is not set |
660 | # CONFIG_I2C_DEBUG_CORE is not set | 687 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -679,6 +706,7 @@ CONFIG_HWMON=y | |||
679 | # CONFIG_SENSORS_ADM1031 is not set | 706 | # CONFIG_SENSORS_ADM1031 is not set |
680 | # CONFIG_SENSORS_ADM9240 is not set | 707 | # CONFIG_SENSORS_ADM9240 is not set |
681 | # CONFIG_SENSORS_ADT7470 is not set | 708 | # CONFIG_SENSORS_ADT7470 is not set |
709 | # CONFIG_SENSORS_ADT7473 is not set | ||
682 | # CONFIG_SENSORS_ATXP1 is not set | 710 | # CONFIG_SENSORS_ATXP1 is not set |
683 | # CONFIG_SENSORS_DS1621 is not set | 711 | # CONFIG_SENSORS_DS1621 is not set |
684 | # CONFIG_SENSORS_I5K_AMB is not set | 712 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -708,6 +736,7 @@ CONFIG_HWMON=y | |||
708 | # CONFIG_SENSORS_SMSC47M1 is not set | 736 | # CONFIG_SENSORS_SMSC47M1 is not set |
709 | # CONFIG_SENSORS_SMSC47M192 is not set | 737 | # CONFIG_SENSORS_SMSC47M192 is not set |
710 | # CONFIG_SENSORS_SMSC47B397 is not set | 738 | # CONFIG_SENSORS_SMSC47B397 is not set |
739 | # CONFIG_SENSORS_ADS7828 is not set | ||
711 | # CONFIG_SENSORS_THMC50 is not set | 740 | # CONFIG_SENSORS_THMC50 is not set |
712 | # CONFIG_SENSORS_VIA686A is not set | 741 | # CONFIG_SENSORS_VIA686A is not set |
713 | # CONFIG_SENSORS_VT1211 is not set | 742 | # CONFIG_SENSORS_VT1211 is not set |
@@ -717,9 +746,11 @@ CONFIG_HWMON=y | |||
717 | # CONFIG_SENSORS_W83792D is not set | 746 | # CONFIG_SENSORS_W83792D is not set |
718 | # CONFIG_SENSORS_W83793 is not set | 747 | # CONFIG_SENSORS_W83793 is not set |
719 | # CONFIG_SENSORS_W83L785TS is not set | 748 | # CONFIG_SENSORS_W83L785TS is not set |
749 | # CONFIG_SENSORS_W83L786NG is not set | ||
720 | # CONFIG_SENSORS_W83627HF is not set | 750 | # CONFIG_SENSORS_W83627HF is not set |
721 | # CONFIG_SENSORS_W83627EHF is not set | 751 | # CONFIG_SENSORS_W83627EHF is not set |
722 | # CONFIG_HWMON_DEBUG_CHIP is not set | 752 | # CONFIG_HWMON_DEBUG_CHIP is not set |
753 | # CONFIG_THERMAL is not set | ||
723 | CONFIG_WATCHDOG=y | 754 | CONFIG_WATCHDOG=y |
724 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 755 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
725 | 756 | ||
@@ -785,17 +816,18 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
785 | # | 816 | # |
786 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 817 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
787 | # | 818 | # |
788 | |||
789 | # | ||
790 | # USB Gadget Support | ||
791 | # | ||
792 | # CONFIG_USB_GADGET is not set | 819 | # CONFIG_USB_GADGET is not set |
793 | # CONFIG_MMC is not set | 820 | # CONFIG_MMC is not set |
821 | # CONFIG_MEMSTICK is not set | ||
794 | # CONFIG_NEW_LEDS is not set | 822 | # CONFIG_NEW_LEDS is not set |
795 | # CONFIG_INFINIBAND is not set | 823 | # CONFIG_INFINIBAND is not set |
796 | # CONFIG_EDAC is not set | 824 | # CONFIG_EDAC is not set |
797 | CONFIG_RTC_LIB=y | 825 | CONFIG_RTC_LIB=y |
798 | CONFIG_RTC_CLASS=y | 826 | CONFIG_RTC_CLASS=y |
827 | |||
828 | # | ||
829 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
830 | # | ||
799 | CONFIG_RTC_HCTOSYS=y | 831 | CONFIG_RTC_HCTOSYS=y |
800 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 832 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
801 | # CONFIG_RTC_DEBUG is not set | 833 | # CONFIG_RTC_DEBUG is not set |
@@ -822,6 +854,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
822 | # CONFIG_RTC_DRV_PCF8563 is not set | 854 | # CONFIG_RTC_DRV_PCF8563 is not set |
823 | # CONFIG_RTC_DRV_PCF8583 is not set | 855 | # CONFIG_RTC_DRV_PCF8583 is not set |
824 | # CONFIG_RTC_DRV_M41T80 is not set | 856 | # CONFIG_RTC_DRV_M41T80 is not set |
857 | # CONFIG_RTC_DRV_S35390A is not set | ||
825 | 858 | ||
826 | # | 859 | # |
827 | # SPI RTC drivers | 860 | # SPI RTC drivers |
@@ -831,9 +864,10 @@ CONFIG_RTC_DRV_DS1374=y | |||
831 | # Platform RTC drivers | 864 | # Platform RTC drivers |
832 | # | 865 | # |
833 | # CONFIG_RTC_DRV_CMOS is not set | 866 | # CONFIG_RTC_DRV_CMOS is not set |
867 | # CONFIG_RTC_DRV_DS1511 is not set | ||
834 | # CONFIG_RTC_DRV_DS1553 is not set | 868 | # CONFIG_RTC_DRV_DS1553 is not set |
835 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
836 | # CONFIG_RTC_DRV_DS1742 is not set | 869 | # CONFIG_RTC_DRV_DS1742 is not set |
870 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
837 | # CONFIG_RTC_DRV_M48T86 is not set | 871 | # CONFIG_RTC_DRV_M48T86 is not set |
838 | # CONFIG_RTC_DRV_M48T59 is not set | 872 | # CONFIG_RTC_DRV_M48T59 is not set |
839 | # CONFIG_RTC_DRV_V3020 is not set | 873 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -841,6 +875,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
841 | # | 875 | # |
842 | # on-CPU RTC drivers | 876 | # on-CPU RTC drivers |
843 | # | 877 | # |
878 | # CONFIG_DMADEVICES is not set | ||
844 | 879 | ||
845 | # | 880 | # |
846 | # Userspace I/O | 881 | # Userspace I/O |
@@ -866,12 +901,10 @@ CONFIG_FS_MBCACHE=y | |||
866 | # CONFIG_XFS_FS is not set | 901 | # CONFIG_XFS_FS is not set |
867 | # CONFIG_GFS2_FS is not set | 902 | # CONFIG_GFS2_FS is not set |
868 | # CONFIG_OCFS2_FS is not set | 903 | # CONFIG_OCFS2_FS is not set |
869 | # CONFIG_MINIX_FS is not set | 904 | CONFIG_DNOTIFY=y |
870 | # CONFIG_ROMFS_FS is not set | ||
871 | CONFIG_INOTIFY=y | 905 | CONFIG_INOTIFY=y |
872 | CONFIG_INOTIFY_USER=y | 906 | CONFIG_INOTIFY_USER=y |
873 | # CONFIG_QUOTA is not set | 907 | # CONFIG_QUOTA is not set |
874 | CONFIG_DNOTIFY=y | ||
875 | # CONFIG_AUTOFS_FS is not set | 908 | # CONFIG_AUTOFS_FS is not set |
876 | # CONFIG_AUTOFS4_FS is not set | 909 | # CONFIG_AUTOFS4_FS is not set |
877 | # CONFIG_FUSE_FS is not set | 910 | # CONFIG_FUSE_FS is not set |
@@ -913,8 +946,10 @@ CONFIG_TMPFS=y | |||
913 | # CONFIG_EFS_FS is not set | 946 | # CONFIG_EFS_FS is not set |
914 | # CONFIG_CRAMFS is not set | 947 | # CONFIG_CRAMFS is not set |
915 | # CONFIG_VXFS_FS is not set | 948 | # CONFIG_VXFS_FS is not set |
949 | # CONFIG_MINIX_FS is not set | ||
916 | # CONFIG_HPFS_FS is not set | 950 | # CONFIG_HPFS_FS is not set |
917 | # CONFIG_QNX4FS_FS is not set | 951 | # CONFIG_QNX4FS_FS is not set |
952 | # CONFIG_ROMFS_FS is not set | ||
918 | # CONFIG_SYSV_FS is not set | 953 | # CONFIG_SYSV_FS is not set |
919 | # CONFIG_UFS_FS is not set | 954 | # CONFIG_UFS_FS is not set |
920 | CONFIG_NETWORK_FILESYSTEMS=y | 955 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -958,7 +993,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
958 | # CONFIG_SYSV68_PARTITION is not set | 993 | # CONFIG_SYSV68_PARTITION is not set |
959 | # CONFIG_NLS is not set | 994 | # CONFIG_NLS is not set |
960 | # CONFIG_DLM is not set | 995 | # CONFIG_DLM is not set |
961 | # CONFIG_UCC_SLOW is not set | ||
962 | CONFIG_UCC_FAST=y | 996 | CONFIG_UCC_FAST=y |
963 | CONFIG_UCC=y | 997 | CONFIG_UCC=y |
964 | 998 | ||
@@ -976,7 +1010,6 @@ CONFIG_PLIST=y | |||
976 | CONFIG_HAS_IOMEM=y | 1010 | CONFIG_HAS_IOMEM=y |
977 | CONFIG_HAS_IOPORT=y | 1011 | CONFIG_HAS_IOPORT=y |
978 | CONFIG_HAS_DMA=y | 1012 | CONFIG_HAS_DMA=y |
979 | # CONFIG_INSTRUMENTATION is not set | ||
980 | 1013 | ||
981 | # | 1014 | # |
982 | # Kernel hacking | 1015 | # Kernel hacking |
@@ -990,6 +1023,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
990 | # CONFIG_HEADERS_CHECK is not set | 1023 | # CONFIG_HEADERS_CHECK is not set |
991 | # CONFIG_DEBUG_KERNEL is not set | 1024 | # CONFIG_DEBUG_KERNEL is not set |
992 | # CONFIG_SLUB_DEBUG_ON is not set | 1025 | # CONFIG_SLUB_DEBUG_ON is not set |
1026 | # CONFIG_SLUB_STATS is not set | ||
993 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1027 | # CONFIG_DEBUG_BUGVERBOSE is not set |
994 | # CONFIG_SAMPLES is not set | 1028 | # CONFIG_SAMPLES is not set |
995 | # CONFIG_PPC_EARLY_DEBUG is not set | 1029 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1003,6 +1037,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1003 | CONFIG_CRYPTO=y | 1037 | CONFIG_CRYPTO=y |
1004 | CONFIG_CRYPTO_ALGAPI=y | 1038 | CONFIG_CRYPTO_ALGAPI=y |
1005 | CONFIG_CRYPTO_BLKCIPHER=y | 1039 | CONFIG_CRYPTO_BLKCIPHER=y |
1040 | # CONFIG_CRYPTO_SEQIV is not set | ||
1006 | CONFIG_CRYPTO_MANAGER=y | 1041 | CONFIG_CRYPTO_MANAGER=y |
1007 | # CONFIG_CRYPTO_HMAC is not set | 1042 | # CONFIG_CRYPTO_HMAC is not set |
1008 | # CONFIG_CRYPTO_XCBC is not set | 1043 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1020,6 +1055,9 @@ CONFIG_CRYPTO_CBC=y | |||
1020 | CONFIG_CRYPTO_PCBC=m | 1055 | CONFIG_CRYPTO_PCBC=m |
1021 | # CONFIG_CRYPTO_LRW is not set | 1056 | # CONFIG_CRYPTO_LRW is not set |
1022 | # CONFIG_CRYPTO_XTS is not set | 1057 | # CONFIG_CRYPTO_XTS is not set |
1058 | # CONFIG_CRYPTO_CTR is not set | ||
1059 | # CONFIG_CRYPTO_GCM is not set | ||
1060 | # CONFIG_CRYPTO_CCM is not set | ||
1023 | # CONFIG_CRYPTO_CRYPTD is not set | 1061 | # CONFIG_CRYPTO_CRYPTD is not set |
1024 | CONFIG_CRYPTO_DES=y | 1062 | CONFIG_CRYPTO_DES=y |
1025 | # CONFIG_CRYPTO_FCRYPT is not set | 1063 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1034,12 +1072,15 @@ CONFIG_CRYPTO_DES=y | |||
1034 | # CONFIG_CRYPTO_KHAZAD is not set | 1072 | # CONFIG_CRYPTO_KHAZAD is not set |
1035 | # CONFIG_CRYPTO_ANUBIS is not set | 1073 | # CONFIG_CRYPTO_ANUBIS is not set |
1036 | # CONFIG_CRYPTO_SEED is not set | 1074 | # CONFIG_CRYPTO_SEED is not set |
1075 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1037 | # CONFIG_CRYPTO_DEFLATE is not set | 1076 | # CONFIG_CRYPTO_DEFLATE is not set |
1038 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1077 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1039 | # CONFIG_CRYPTO_CRC32C is not set | 1078 | # CONFIG_CRYPTO_CRC32C is not set |
1040 | # CONFIG_CRYPTO_CAMELLIA is not set | 1079 | # CONFIG_CRYPTO_CAMELLIA is not set |
1041 | # CONFIG_CRYPTO_TEST is not set | 1080 | # CONFIG_CRYPTO_TEST is not set |
1042 | # CONFIG_CRYPTO_AUTHENC is not set | 1081 | # CONFIG_CRYPTO_AUTHENC is not set |
1082 | # CONFIG_CRYPTO_LZO is not set | ||
1043 | CONFIG_CRYPTO_HW=y | 1083 | CONFIG_CRYPTO_HW=y |
1084 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1044 | # CONFIG_PPC_CLOCK is not set | 1085 | # CONFIG_PPC_CLOCK is not set |
1045 | CONFIG_PPC_LIB_RHEAP=y | 1086 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc832x_rdb_defconfig b/arch/powerpc/configs/mpc832x_rdb_defconfig index 761718a63b7c..ac913025713e 100644 --- a/arch/powerpc/configs/mpc832x_rdb_defconfig +++ b/arch/powerpc/configs/mpc832x_rdb_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:35 2007 | 4 | # Mon Mar 24 08:48:16 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +91,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
92 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
93 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +105,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 105 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 106 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_HAVE_KRETPROBES=y | ||
113 | CONFIG_PROC_PAGE_MONITOR=y | ||
114 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 117 | CONFIG_BASE_SMALL=0 |
@@ -125,6 +139,7 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 139 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | ||
128 | 143 | ||
129 | # | 144 | # |
130 | # Platform support | 145 | # Platform support |
@@ -133,18 +148,23 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
133 | # CONFIG_PPC_82xx is not set | 148 | # CONFIG_PPC_82xx is not set |
134 | CONFIG_PPC_83xx=y | 149 | CONFIG_PPC_83xx=y |
135 | # CONFIG_PPC_86xx is not set | 150 | # CONFIG_PPC_86xx is not set |
136 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
137 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
138 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
139 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
140 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
141 | # CONFIG_MPC8313_RDB is not set | 156 | CONFIG_MPC83xx=y |
157 | # CONFIG_MPC831x_RDB is not set | ||
142 | # CONFIG_MPC832x_MDS is not set | 158 | # CONFIG_MPC832x_MDS is not set |
143 | CONFIG_MPC832x_RDB=y | 159 | CONFIG_MPC832x_RDB=y |
144 | # CONFIG_MPC834x_MDS is not set | 160 | # CONFIG_MPC834x_MDS is not set |
145 | # CONFIG_MPC834x_ITX is not set | 161 | # CONFIG_MPC834x_ITX is not set |
146 | # CONFIG_MPC836x_MDS is not set | 162 | # CONFIG_MPC836x_MDS is not set |
163 | # CONFIG_MPC837x_MDS is not set | ||
164 | # CONFIG_MPC837x_RDB is not set | ||
165 | # CONFIG_SBC834x is not set | ||
147 | CONFIG_PPC_MPC832x=y | 166 | CONFIG_PPC_MPC832x=y |
167 | CONFIG_IPIC=y | ||
148 | # CONFIG_MPIC is not set | 168 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 169 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 170 | # CONFIG_PPC_I8259 is not set |
@@ -156,7 +176,6 @@ CONFIG_PPC_MPC832x=y | |||
156 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
158 | CONFIG_QUICC_ENGINE=y | 178 | CONFIG_QUICC_ENGINE=y |
159 | # CONFIG_CPM2 is not set | ||
160 | # CONFIG_FSL_ULI1575 is not set | 179 | # CONFIG_FSL_ULI1575 is not set |
161 | 180 | ||
162 | # | 181 | # |
@@ -172,13 +191,17 @@ CONFIG_HZ_250=y | |||
172 | # CONFIG_HZ_300 is not set | 191 | # CONFIG_HZ_300 is not set |
173 | # CONFIG_HZ_1000 is not set | 192 | # CONFIG_HZ_1000 is not set |
174 | CONFIG_HZ=250 | 193 | CONFIG_HZ=250 |
194 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 195 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 196 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 197 | # CONFIG_PREEMPT is not set |
178 | CONFIG_BINFMT_ELF=y | 198 | CONFIG_BINFMT_ELF=y |
179 | # CONFIG_BINFMT_MISC is not set | 199 | # CONFIG_BINFMT_MISC is not set |
180 | CONFIG_MATH_EMULATION=y | 200 | CONFIG_MATH_EMULATION=y |
201 | # CONFIG_IOMMU_HELPER is not set | ||
181 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 202 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
203 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
204 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
182 | CONFIG_ARCH_FLATMEM_ENABLE=y | 205 | CONFIG_ARCH_FLATMEM_ENABLE=y |
183 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 206 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
184 | CONFIG_SELECT_MEMORY_MODEL=y | 207 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -197,11 +220,7 @@ CONFIG_VIRT_TO_BUS=y | |||
197 | CONFIG_PROC_DEVICETREE=y | 220 | CONFIG_PROC_DEVICETREE=y |
198 | # CONFIG_CMDLINE_BOOL is not set | 221 | # CONFIG_CMDLINE_BOOL is not set |
199 | # CONFIG_PM is not set | 222 | # CONFIG_PM is not set |
200 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
201 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
202 | CONFIG_SECCOMP=y | 223 | CONFIG_SECCOMP=y |
203 | CONFIG_WANT_DEVICE_TREE=y | ||
204 | CONFIG_DEVICE_TREE="" | ||
205 | CONFIG_ISA_DMA_API=y | 224 | CONFIG_ISA_DMA_API=y |
206 | 225 | ||
207 | # | 226 | # |
@@ -250,6 +269,7 @@ CONFIG_XFRM=y | |||
250 | # CONFIG_XFRM_USER is not set | 269 | # CONFIG_XFRM_USER is not set |
251 | # CONFIG_XFRM_SUB_POLICY is not set | 270 | # CONFIG_XFRM_SUB_POLICY is not set |
252 | # CONFIG_XFRM_MIGRATE is not set | 271 | # CONFIG_XFRM_MIGRATE is not set |
272 | # CONFIG_XFRM_STATISTICS is not set | ||
253 | # CONFIG_NET_KEY is not set | 273 | # CONFIG_NET_KEY is not set |
254 | CONFIG_INET=y | 274 | CONFIG_INET=y |
255 | CONFIG_IP_MULTICAST=y | 275 | CONFIG_IP_MULTICAST=y |
@@ -305,6 +325,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
305 | # | 325 | # |
306 | # CONFIG_NET_PKTGEN is not set | 326 | # CONFIG_NET_PKTGEN is not set |
307 | # CONFIG_HAMRADIO is not set | 327 | # CONFIG_HAMRADIO is not set |
328 | # CONFIG_CAN is not set | ||
308 | # CONFIG_IRDA is not set | 329 | # CONFIG_IRDA is not set |
309 | # CONFIG_BT is not set | 330 | # CONFIG_BT is not set |
310 | # CONFIG_AF_RXRPC is not set | 331 | # CONFIG_AF_RXRPC is not set |
@@ -350,7 +371,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
350 | CONFIG_BLK_DEV_RAM=y | 371 | CONFIG_BLK_DEV_RAM=y |
351 | CONFIG_BLK_DEV_RAM_COUNT=16 | 372 | CONFIG_BLK_DEV_RAM_COUNT=16 |
352 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 373 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
353 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 374 | # CONFIG_BLK_DEV_XIP is not set |
354 | # CONFIG_CDROM_PKTCDVD is not set | 375 | # CONFIG_CDROM_PKTCDVD is not set |
355 | # CONFIG_ATA_OVER_ETH is not set | 376 | # CONFIG_ATA_OVER_ETH is not set |
356 | CONFIG_MISC_DEVICES=y | 377 | CONFIG_MISC_DEVICES=y |
@@ -358,6 +379,8 @@ CONFIG_MISC_DEVICES=y | |||
358 | # CONFIG_EEPROM_93CX6 is not set | 379 | # CONFIG_EEPROM_93CX6 is not set |
359 | # CONFIG_SGI_IOC4 is not set | 380 | # CONFIG_SGI_IOC4 is not set |
360 | # CONFIG_TIFM_CORE is not set | 381 | # CONFIG_TIFM_CORE is not set |
382 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
383 | CONFIG_HAVE_IDE=y | ||
361 | # CONFIG_IDE is not set | 384 | # CONFIG_IDE is not set |
362 | 385 | ||
363 | # | 386 | # |
@@ -422,6 +445,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
422 | # CONFIG_SCSI_IPS is not set | 445 | # CONFIG_SCSI_IPS is not set |
423 | # CONFIG_SCSI_INITIO is not set | 446 | # CONFIG_SCSI_INITIO is not set |
424 | # CONFIG_SCSI_INIA100 is not set | 447 | # CONFIG_SCSI_INIA100 is not set |
448 | # CONFIG_SCSI_MVSAS is not set | ||
425 | # CONFIG_SCSI_STEX is not set | 449 | # CONFIG_SCSI_STEX is not set |
426 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 450 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
427 | # CONFIG_SCSI_QLOGIC_1280 is not set | 451 | # CONFIG_SCSI_QLOGIC_1280 is not set |
@@ -452,7 +476,6 @@ CONFIG_NETDEVICES=y | |||
452 | # CONFIG_EQUALIZER is not set | 476 | # CONFIG_EQUALIZER is not set |
453 | # CONFIG_TUN is not set | 477 | # CONFIG_TUN is not set |
454 | # CONFIG_VETH is not set | 478 | # CONFIG_VETH is not set |
455 | # CONFIG_IP1000 is not set | ||
456 | # CONFIG_ARCNET is not set | 479 | # CONFIG_ARCNET is not set |
457 | CONFIG_PHYLIB=y | 480 | CONFIG_PHYLIB=y |
458 | 481 | ||
@@ -468,6 +491,7 @@ CONFIG_PHYLIB=y | |||
468 | # CONFIG_SMSC_PHY is not set | 491 | # CONFIG_SMSC_PHY is not set |
469 | # CONFIG_BROADCOM_PHY is not set | 492 | # CONFIG_BROADCOM_PHY is not set |
470 | CONFIG_ICPLUS_PHY=y | 493 | CONFIG_ICPLUS_PHY=y |
494 | # CONFIG_REALTEK_PHY is not set | ||
471 | # CONFIG_FIXED_PHY is not set | 495 | # CONFIG_FIXED_PHY is not set |
472 | # CONFIG_MDIO_BITBANG is not set | 496 | # CONFIG_MDIO_BITBANG is not set |
473 | CONFIG_NET_ETHERNET=y | 497 | CONFIG_NET_ETHERNET=y |
@@ -476,6 +500,7 @@ CONFIG_MII=y | |||
476 | # CONFIG_SUNGEM is not set | 500 | # CONFIG_SUNGEM is not set |
477 | # CONFIG_CASSINI is not set | 501 | # CONFIG_CASSINI is not set |
478 | # CONFIG_NET_VENDOR_3COM is not set | 502 | # CONFIG_NET_VENDOR_3COM is not set |
503 | # CONFIG_ENC28J60 is not set | ||
479 | # CONFIG_NET_TULIP is not set | 504 | # CONFIG_NET_TULIP is not set |
480 | # CONFIG_HP100 is not set | 505 | # CONFIG_HP100 is not set |
481 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 506 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -491,6 +516,9 @@ CONFIG_E1000=y | |||
491 | # CONFIG_E1000_NAPI is not set | 516 | # CONFIG_E1000_NAPI is not set |
492 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 517 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
493 | # CONFIG_E1000E is not set | 518 | # CONFIG_E1000E is not set |
519 | # CONFIG_E1000E_ENABLED is not set | ||
520 | # CONFIG_IP1000 is not set | ||
521 | # CONFIG_IGB is not set | ||
494 | # CONFIG_NS83820 is not set | 522 | # CONFIG_NS83820 is not set |
495 | # CONFIG_HAMACHI is not set | 523 | # CONFIG_HAMACHI is not set |
496 | # CONFIG_YELLOWFIN is not set | 524 | # CONFIG_YELLOWFIN is not set |
@@ -521,6 +549,7 @@ CONFIG_NETDEV_10000=y | |||
521 | # CONFIG_NIU is not set | 549 | # CONFIG_NIU is not set |
522 | # CONFIG_MLX4_CORE is not set | 550 | # CONFIG_MLX4_CORE is not set |
523 | # CONFIG_TEHUTI is not set | 551 | # CONFIG_TEHUTI is not set |
552 | # CONFIG_BNX2X is not set | ||
524 | # CONFIG_TR is not set | 553 | # CONFIG_TR is not set |
525 | 554 | ||
526 | # | 555 | # |
@@ -543,7 +572,6 @@ CONFIG_NETDEV_10000=y | |||
543 | # CONFIG_PPP is not set | 572 | # CONFIG_PPP is not set |
544 | # CONFIG_SLIP is not set | 573 | # CONFIG_SLIP is not set |
545 | # CONFIG_NET_FC is not set | 574 | # CONFIG_NET_FC is not set |
546 | # CONFIG_SHAPER is not set | ||
547 | # CONFIG_NETCONSOLE is not set | 575 | # CONFIG_NETCONSOLE is not set |
548 | # CONFIG_NETPOLL is not set | 576 | # CONFIG_NETPOLL is not set |
549 | # CONFIG_NET_POLL_CONTROLLER is not set | 577 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -586,6 +614,7 @@ CONFIG_INPUT=y | |||
586 | # | 614 | # |
587 | # CONFIG_VT is not set | 615 | # CONFIG_VT is not set |
588 | # CONFIG_SERIAL_NONSTANDARD is not set | 616 | # CONFIG_SERIAL_NONSTANDARD is not set |
617 | # CONFIG_NOZOMI is not set | ||
589 | 618 | ||
590 | # | 619 | # |
591 | # Serial drivers | 620 | # Serial drivers |
@@ -605,6 +634,7 @@ CONFIG_SERIAL_CORE=y | |||
605 | CONFIG_SERIAL_CORE_CONSOLE=y | 634 | CONFIG_SERIAL_CORE_CONSOLE=y |
606 | # CONFIG_SERIAL_JSM is not set | 635 | # CONFIG_SERIAL_JSM is not set |
607 | # CONFIG_SERIAL_OF_PLATFORM is not set | 636 | # CONFIG_SERIAL_OF_PLATFORM is not set |
637 | # CONFIG_SERIAL_QE is not set | ||
608 | CONFIG_UNIX98_PTYS=y | 638 | CONFIG_UNIX98_PTYS=y |
609 | CONFIG_LEGACY_PTYS=y | 639 | CONFIG_LEGACY_PTYS=y |
610 | CONFIG_LEGACY_PTY_COUNT=256 | 640 | CONFIG_LEGACY_PTY_COUNT=256 |
@@ -660,14 +690,12 @@ CONFIG_I2C_MPC=y | |||
660 | # | 690 | # |
661 | # Miscellaneous I2C Chip support | 691 | # Miscellaneous I2C Chip support |
662 | # | 692 | # |
663 | # CONFIG_SENSORS_DS1337 is not set | ||
664 | # CONFIG_SENSORS_DS1374 is not set | ||
665 | # CONFIG_DS1682 is not set | 693 | # CONFIG_DS1682 is not set |
666 | # CONFIG_SENSORS_EEPROM is not set | 694 | # CONFIG_SENSORS_EEPROM is not set |
667 | # CONFIG_SENSORS_PCF8574 is not set | 695 | # CONFIG_SENSORS_PCF8574 is not set |
668 | # CONFIG_SENSORS_PCA9539 is not set | 696 | # CONFIG_PCF8575 is not set |
669 | # CONFIG_SENSORS_PCF8591 is not set | 697 | # CONFIG_SENSORS_PCF8591 is not set |
670 | # CONFIG_SENSORS_M41T00 is not set | 698 | # CONFIG_TPS65010 is not set |
671 | # CONFIG_SENSORS_MAX6875 is not set | 699 | # CONFIG_SENSORS_MAX6875 is not set |
672 | # CONFIG_SENSORS_TSL2550 is not set | 700 | # CONFIG_SENSORS_TSL2550 is not set |
673 | # CONFIG_I2C_DEBUG_CORE is not set | 701 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -705,6 +733,7 @@ CONFIG_HWMON=y | |||
705 | # CONFIG_SENSORS_ADM1031 is not set | 733 | # CONFIG_SENSORS_ADM1031 is not set |
706 | # CONFIG_SENSORS_ADM9240 is not set | 734 | # CONFIG_SENSORS_ADM9240 is not set |
707 | # CONFIG_SENSORS_ADT7470 is not set | 735 | # CONFIG_SENSORS_ADT7470 is not set |
736 | # CONFIG_SENSORS_ADT7473 is not set | ||
708 | # CONFIG_SENSORS_ATXP1 is not set | 737 | # CONFIG_SENSORS_ATXP1 is not set |
709 | # CONFIG_SENSORS_DS1621 is not set | 738 | # CONFIG_SENSORS_DS1621 is not set |
710 | # CONFIG_SENSORS_I5K_AMB is not set | 739 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -735,6 +764,7 @@ CONFIG_HWMON=y | |||
735 | # CONFIG_SENSORS_SMSC47M1 is not set | 764 | # CONFIG_SENSORS_SMSC47M1 is not set |
736 | # CONFIG_SENSORS_SMSC47M192 is not set | 765 | # CONFIG_SENSORS_SMSC47M192 is not set |
737 | # CONFIG_SENSORS_SMSC47B397 is not set | 766 | # CONFIG_SENSORS_SMSC47B397 is not set |
767 | # CONFIG_SENSORS_ADS7828 is not set | ||
738 | # CONFIG_SENSORS_THMC50 is not set | 768 | # CONFIG_SENSORS_THMC50 is not set |
739 | # CONFIG_SENSORS_VIA686A is not set | 769 | # CONFIG_SENSORS_VIA686A is not set |
740 | # CONFIG_SENSORS_VT1211 is not set | 770 | # CONFIG_SENSORS_VT1211 is not set |
@@ -744,9 +774,11 @@ CONFIG_HWMON=y | |||
744 | # CONFIG_SENSORS_W83792D is not set | 774 | # CONFIG_SENSORS_W83792D is not set |
745 | # CONFIG_SENSORS_W83793 is not set | 775 | # CONFIG_SENSORS_W83793 is not set |
746 | # CONFIG_SENSORS_W83L785TS is not set | 776 | # CONFIG_SENSORS_W83L785TS is not set |
777 | # CONFIG_SENSORS_W83L786NG is not set | ||
747 | # CONFIG_SENSORS_W83627HF is not set | 778 | # CONFIG_SENSORS_W83627HF is not set |
748 | # CONFIG_SENSORS_W83627EHF is not set | 779 | # CONFIG_SENSORS_W83627EHF is not set |
749 | # CONFIG_HWMON_DEBUG_CHIP is not set | 780 | # CONFIG_HWMON_DEBUG_CHIP is not set |
781 | # CONFIG_THERMAL is not set | ||
750 | CONFIG_WATCHDOG=y | 782 | CONFIG_WATCHDOG=y |
751 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 783 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
752 | 784 | ||
@@ -826,6 +858,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
826 | CONFIG_USB_ARCH_HAS_EHCI=y | 858 | CONFIG_USB_ARCH_HAS_EHCI=y |
827 | CONFIG_USB=y | 859 | CONFIG_USB=y |
828 | # CONFIG_USB_DEBUG is not set | 860 | # CONFIG_USB_DEBUG is not set |
861 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
829 | 862 | ||
830 | # | 863 | # |
831 | # Miscellaneous USB options | 864 | # Miscellaneous USB options |
@@ -839,9 +872,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
839 | # USB Host Controller Drivers | 872 | # USB Host Controller Drivers |
840 | # | 873 | # |
841 | CONFIG_USB_EHCI_HCD=y | 874 | CONFIG_USB_EHCI_HCD=y |
842 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
843 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 875 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
844 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 876 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
877 | # CONFIG_USB_EHCI_FSL is not set | ||
878 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
845 | # CONFIG_USB_ISP116X_HCD is not set | 879 | # CONFIG_USB_ISP116X_HCD is not set |
846 | CONFIG_USB_OHCI_HCD=y | 880 | CONFIG_USB_OHCI_HCD=y |
847 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 881 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
@@ -892,10 +926,6 @@ CONFIG_USB_MON=y | |||
892 | # | 926 | # |
893 | # USB port drivers | 927 | # USB port drivers |
894 | # | 928 | # |
895 | |||
896 | # | ||
897 | # USB Serial Converter support | ||
898 | # | ||
899 | # CONFIG_USB_SERIAL is not set | 929 | # CONFIG_USB_SERIAL is not set |
900 | 930 | ||
901 | # | 931 | # |
@@ -921,14 +951,6 @@ CONFIG_USB_MON=y | |||
921 | # CONFIG_USB_TRANCEVIBRATOR is not set | 951 | # CONFIG_USB_TRANCEVIBRATOR is not set |
922 | # CONFIG_USB_IOWARRIOR is not set | 952 | # CONFIG_USB_IOWARRIOR is not set |
923 | # CONFIG_USB_TEST is not set | 953 | # CONFIG_USB_TEST is not set |
924 | |||
925 | # | ||
926 | # USB DSL modem support | ||
927 | # | ||
928 | |||
929 | # | ||
930 | # USB Gadget Support | ||
931 | # | ||
932 | # CONFIG_USB_GADGET is not set | 954 | # CONFIG_USB_GADGET is not set |
933 | CONFIG_MMC=y | 955 | CONFIG_MMC=y |
934 | # CONFIG_MMC_DEBUG is not set | 956 | # CONFIG_MMC_DEBUG is not set |
@@ -948,10 +970,12 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
948 | # CONFIG_MMC_WBSD is not set | 970 | # CONFIG_MMC_WBSD is not set |
949 | # CONFIG_MMC_TIFM_SD is not set | 971 | # CONFIG_MMC_TIFM_SD is not set |
950 | CONFIG_MMC_SPI=y | 972 | CONFIG_MMC_SPI=y |
973 | # CONFIG_MEMSTICK is not set | ||
951 | # CONFIG_NEW_LEDS is not set | 974 | # CONFIG_NEW_LEDS is not set |
952 | # CONFIG_INFINIBAND is not set | 975 | # CONFIG_INFINIBAND is not set |
953 | # CONFIG_EDAC is not set | 976 | # CONFIG_EDAC is not set |
954 | # CONFIG_RTC_CLASS is not set | 977 | # CONFIG_RTC_CLASS is not set |
978 | # CONFIG_DMADEVICES is not set | ||
955 | 979 | ||
956 | # | 980 | # |
957 | # Userspace I/O | 981 | # Userspace I/O |
@@ -977,12 +1001,10 @@ CONFIG_FS_MBCACHE=y | |||
977 | # CONFIG_XFS_FS is not set | 1001 | # CONFIG_XFS_FS is not set |
978 | # CONFIG_GFS2_FS is not set | 1002 | # CONFIG_GFS2_FS is not set |
979 | # CONFIG_OCFS2_FS is not set | 1003 | # CONFIG_OCFS2_FS is not set |
980 | # CONFIG_MINIX_FS is not set | 1004 | CONFIG_DNOTIFY=y |
981 | # CONFIG_ROMFS_FS is not set | ||
982 | CONFIG_INOTIFY=y | 1005 | CONFIG_INOTIFY=y |
983 | CONFIG_INOTIFY_USER=y | 1006 | CONFIG_INOTIFY_USER=y |
984 | # CONFIG_QUOTA is not set | 1007 | # CONFIG_QUOTA is not set |
985 | CONFIG_DNOTIFY=y | ||
986 | # CONFIG_AUTOFS_FS is not set | 1008 | # CONFIG_AUTOFS_FS is not set |
987 | # CONFIG_AUTOFS4_FS is not set | 1009 | # CONFIG_AUTOFS4_FS is not set |
988 | # CONFIG_FUSE_FS is not set | 1010 | # CONFIG_FUSE_FS is not set |
@@ -1027,8 +1049,10 @@ CONFIG_TMPFS=y | |||
1027 | # CONFIG_EFS_FS is not set | 1049 | # CONFIG_EFS_FS is not set |
1028 | # CONFIG_CRAMFS is not set | 1050 | # CONFIG_CRAMFS is not set |
1029 | # CONFIG_VXFS_FS is not set | 1051 | # CONFIG_VXFS_FS is not set |
1052 | # CONFIG_MINIX_FS is not set | ||
1030 | # CONFIG_HPFS_FS is not set | 1053 | # CONFIG_HPFS_FS is not set |
1031 | # CONFIG_QNX4FS_FS is not set | 1054 | # CONFIG_QNX4FS_FS is not set |
1055 | # CONFIG_ROMFS_FS is not set | ||
1032 | # CONFIG_SYSV_FS is not set | 1056 | # CONFIG_SYSV_FS is not set |
1033 | # CONFIG_UFS_FS is not set | 1057 | # CONFIG_UFS_FS is not set |
1034 | CONFIG_NETWORK_FILESYSTEMS=y | 1058 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1116,7 +1140,6 @@ CONFIG_NLS_ISO8859_1=y | |||
1116 | # CONFIG_NLS_KOI8_U is not set | 1140 | # CONFIG_NLS_KOI8_U is not set |
1117 | # CONFIG_NLS_UTF8 is not set | 1141 | # CONFIG_NLS_UTF8 is not set |
1118 | # CONFIG_DLM is not set | 1142 | # CONFIG_DLM is not set |
1119 | # CONFIG_UCC_SLOW is not set | ||
1120 | CONFIG_UCC_FAST=y | 1143 | CONFIG_UCC_FAST=y |
1121 | CONFIG_UCC=y | 1144 | CONFIG_UCC=y |
1122 | 1145 | ||
@@ -1134,7 +1157,6 @@ CONFIG_PLIST=y | |||
1134 | CONFIG_HAS_IOMEM=y | 1157 | CONFIG_HAS_IOMEM=y |
1135 | CONFIG_HAS_IOPORT=y | 1158 | CONFIG_HAS_IOPORT=y |
1136 | CONFIG_HAS_DMA=y | 1159 | CONFIG_HAS_DMA=y |
1137 | # CONFIG_INSTRUMENTATION is not set | ||
1138 | 1160 | ||
1139 | # | 1161 | # |
1140 | # Kernel hacking | 1162 | # Kernel hacking |
@@ -1148,6 +1170,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1148 | # CONFIG_HEADERS_CHECK is not set | 1170 | # CONFIG_HEADERS_CHECK is not set |
1149 | # CONFIG_DEBUG_KERNEL is not set | 1171 | # CONFIG_DEBUG_KERNEL is not set |
1150 | # CONFIG_SLUB_DEBUG_ON is not set | 1172 | # CONFIG_SLUB_DEBUG_ON is not set |
1173 | # CONFIG_SLUB_STATS is not set | ||
1151 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1174 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1152 | # CONFIG_SAMPLES is not set | 1175 | # CONFIG_SAMPLES is not set |
1153 | # CONFIG_PPC_EARLY_DEBUG is not set | 1176 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1161,6 +1184,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1161 | CONFIG_CRYPTO=y | 1184 | CONFIG_CRYPTO=y |
1162 | CONFIG_CRYPTO_ALGAPI=y | 1185 | CONFIG_CRYPTO_ALGAPI=y |
1163 | CONFIG_CRYPTO_BLKCIPHER=y | 1186 | CONFIG_CRYPTO_BLKCIPHER=y |
1187 | # CONFIG_CRYPTO_SEQIV is not set | ||
1164 | CONFIG_CRYPTO_MANAGER=y | 1188 | CONFIG_CRYPTO_MANAGER=y |
1165 | # CONFIG_CRYPTO_HMAC is not set | 1189 | # CONFIG_CRYPTO_HMAC is not set |
1166 | # CONFIG_CRYPTO_XCBC is not set | 1190 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1178,6 +1202,9 @@ CONFIG_CRYPTO_CBC=y | |||
1178 | CONFIG_CRYPTO_PCBC=m | 1202 | CONFIG_CRYPTO_PCBC=m |
1179 | # CONFIG_CRYPTO_LRW is not set | 1203 | # CONFIG_CRYPTO_LRW is not set |
1180 | # CONFIG_CRYPTO_XTS is not set | 1204 | # CONFIG_CRYPTO_XTS is not set |
1205 | # CONFIG_CRYPTO_CTR is not set | ||
1206 | # CONFIG_CRYPTO_GCM is not set | ||
1207 | # CONFIG_CRYPTO_CCM is not set | ||
1181 | # CONFIG_CRYPTO_CRYPTD is not set | 1208 | # CONFIG_CRYPTO_CRYPTD is not set |
1182 | CONFIG_CRYPTO_DES=y | 1209 | CONFIG_CRYPTO_DES=y |
1183 | # CONFIG_CRYPTO_FCRYPT is not set | 1210 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1192,12 +1219,15 @@ CONFIG_CRYPTO_DES=y | |||
1192 | # CONFIG_CRYPTO_KHAZAD is not set | 1219 | # CONFIG_CRYPTO_KHAZAD is not set |
1193 | # CONFIG_CRYPTO_ANUBIS is not set | 1220 | # CONFIG_CRYPTO_ANUBIS is not set |
1194 | # CONFIG_CRYPTO_SEED is not set | 1221 | # CONFIG_CRYPTO_SEED is not set |
1222 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1195 | # CONFIG_CRYPTO_DEFLATE is not set | 1223 | # CONFIG_CRYPTO_DEFLATE is not set |
1196 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1224 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1197 | # CONFIG_CRYPTO_CRC32C is not set | 1225 | # CONFIG_CRYPTO_CRC32C is not set |
1198 | # CONFIG_CRYPTO_CAMELLIA is not set | 1226 | # CONFIG_CRYPTO_CAMELLIA is not set |
1199 | # CONFIG_CRYPTO_TEST is not set | 1227 | # CONFIG_CRYPTO_TEST is not set |
1200 | # CONFIG_CRYPTO_AUTHENC is not set | 1228 | # CONFIG_CRYPTO_AUTHENC is not set |
1229 | # CONFIG_CRYPTO_LZO is not set | ||
1201 | CONFIG_CRYPTO_HW=y | 1230 | CONFIG_CRYPTO_HW=y |
1231 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1202 | # CONFIG_PPC_CLOCK is not set | 1232 | # CONFIG_PPC_CLOCK is not set |
1203 | CONFIG_PPC_LIB_RHEAP=y | 1233 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc834x_itx_defconfig b/arch/powerpc/configs/mpc834x_itx_defconfig index 2fbe4e5344f7..e1de399a7bdd 100644 --- a/arch/powerpc/configs/mpc834x_itx_defconfig +++ b/arch/powerpc/configs/mpc834x_itx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:37 2007 | 4 | # Mon Mar 24 08:48:17 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +91,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
92 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
93 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +105,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 105 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 106 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_HAVE_KRETPROBES=y | ||
113 | CONFIG_PROC_PAGE_MONITOR=y | ||
114 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 117 | CONFIG_BASE_SMALL=0 |
@@ -125,6 +139,7 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 139 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | ||
128 | 143 | ||
129 | # | 144 | # |
130 | # Platform support | 145 | # Platform support |
@@ -133,18 +148,23 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
133 | # CONFIG_PPC_82xx is not set | 148 | # CONFIG_PPC_82xx is not set |
134 | CONFIG_PPC_83xx=y | 149 | CONFIG_PPC_83xx=y |
135 | # CONFIG_PPC_86xx is not set | 150 | # CONFIG_PPC_86xx is not set |
136 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
137 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
138 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
139 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
140 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
141 | # CONFIG_MPC8313_RDB is not set | 156 | CONFIG_MPC83xx=y |
157 | # CONFIG_MPC831x_RDB is not set | ||
142 | # CONFIG_MPC832x_MDS is not set | 158 | # CONFIG_MPC832x_MDS is not set |
143 | # CONFIG_MPC832x_RDB is not set | 159 | # CONFIG_MPC832x_RDB is not set |
144 | # CONFIG_MPC834x_MDS is not set | 160 | # CONFIG_MPC834x_MDS is not set |
145 | CONFIG_MPC834x_ITX=y | 161 | CONFIG_MPC834x_ITX=y |
146 | # CONFIG_MPC836x_MDS is not set | 162 | # CONFIG_MPC836x_MDS is not set |
147 | CONFIG_MPC834x=y | 163 | # CONFIG_MPC837x_MDS is not set |
164 | # CONFIG_MPC837x_RDB is not set | ||
165 | # CONFIG_SBC834x is not set | ||
166 | CONFIG_PPC_MPC834x=y | ||
167 | CONFIG_IPIC=y | ||
148 | # CONFIG_MPIC is not set | 168 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 169 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 170 | # CONFIG_PPC_I8259 is not set |
@@ -155,7 +175,6 @@ CONFIG_MPC834x=y | |||
155 | # CONFIG_PPC_INDIRECT_IO is not set | 175 | # CONFIG_PPC_INDIRECT_IO is not set |
156 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
158 | # CONFIG_CPM2 is not set | ||
159 | # CONFIG_FSL_ULI1575 is not set | 178 | # CONFIG_FSL_ULI1575 is not set |
160 | 179 | ||
161 | # | 180 | # |
@@ -171,12 +190,16 @@ CONFIG_HZ_250=y | |||
171 | # CONFIG_HZ_300 is not set | 190 | # CONFIG_HZ_300 is not set |
172 | # CONFIG_HZ_1000 is not set | 191 | # CONFIG_HZ_1000 is not set |
173 | CONFIG_HZ=250 | 192 | CONFIG_HZ=250 |
193 | # CONFIG_SCHED_HRTICK is not set | ||
174 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
175 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
176 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
177 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
178 | # CONFIG_BINFMT_MISC is not set | 198 | # CONFIG_BINFMT_MISC is not set |
199 | # CONFIG_IOMMU_HELPER is not set | ||
179 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
180 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
181 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
182 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -195,11 +218,7 @@ CONFIG_VIRT_TO_BUS=y | |||
195 | CONFIG_PROC_DEVICETREE=y | 218 | CONFIG_PROC_DEVICETREE=y |
196 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
197 | # CONFIG_PM is not set | 220 | # CONFIG_PM is not set |
198 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
199 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
200 | CONFIG_SECCOMP=y | 221 | CONFIG_SECCOMP=y |
201 | CONFIG_WANT_DEVICE_TREE=y | ||
202 | CONFIG_DEVICE_TREE="" | ||
203 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
204 | 223 | ||
205 | # | 224 | # |
@@ -248,6 +267,7 @@ CONFIG_XFRM=y | |||
248 | # CONFIG_XFRM_USER is not set | 267 | # CONFIG_XFRM_USER is not set |
249 | # CONFIG_XFRM_SUB_POLICY is not set | 268 | # CONFIG_XFRM_SUB_POLICY is not set |
250 | # CONFIG_XFRM_MIGRATE is not set | 269 | # CONFIG_XFRM_MIGRATE is not set |
270 | # CONFIG_XFRM_STATISTICS is not set | ||
251 | # CONFIG_NET_KEY is not set | 271 | # CONFIG_NET_KEY is not set |
252 | CONFIG_INET=y | 272 | CONFIG_INET=y |
253 | CONFIG_IP_MULTICAST=y | 273 | CONFIG_IP_MULTICAST=y |
@@ -303,6 +323,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
303 | # | 323 | # |
304 | # CONFIG_NET_PKTGEN is not set | 324 | # CONFIG_NET_PKTGEN is not set |
305 | # CONFIG_HAMRADIO is not set | 325 | # CONFIG_HAMRADIO is not set |
326 | # CONFIG_CAN is not set | ||
306 | # CONFIG_IRDA is not set | 327 | # CONFIG_IRDA is not set |
307 | # CONFIG_BT is not set | 328 | # CONFIG_BT is not set |
308 | # CONFIG_AF_RXRPC is not set | 329 | # CONFIG_AF_RXRPC is not set |
@@ -427,7 +448,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
427 | CONFIG_BLK_DEV_RAM=y | 448 | CONFIG_BLK_DEV_RAM=y |
428 | CONFIG_BLK_DEV_RAM_COUNT=16 | 449 | CONFIG_BLK_DEV_RAM_COUNT=16 |
429 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 450 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
430 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 451 | # CONFIG_BLK_DEV_XIP is not set |
431 | # CONFIG_CDROM_PKTCDVD is not set | 452 | # CONFIG_CDROM_PKTCDVD is not set |
432 | # CONFIG_ATA_OVER_ETH is not set | 453 | # CONFIG_ATA_OVER_ETH is not set |
433 | CONFIG_MISC_DEVICES=y | 454 | CONFIG_MISC_DEVICES=y |
@@ -435,6 +456,8 @@ CONFIG_MISC_DEVICES=y | |||
435 | # CONFIG_EEPROM_93CX6 is not set | 456 | # CONFIG_EEPROM_93CX6 is not set |
436 | # CONFIG_SGI_IOC4 is not set | 457 | # CONFIG_SGI_IOC4 is not set |
437 | # CONFIG_TIFM_CORE is not set | 458 | # CONFIG_TIFM_CORE is not set |
459 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
460 | CONFIG_HAVE_IDE=y | ||
438 | CONFIG_IDE=y | 461 | CONFIG_IDE=y |
439 | CONFIG_IDE_MAX_HWIFS=4 | 462 | CONFIG_IDE_MAX_HWIFS=4 |
440 | # CONFIG_BLK_DEV_IDE is not set | 463 | # CONFIG_BLK_DEV_IDE is not set |
@@ -503,6 +526,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
503 | # CONFIG_SCSI_IPS is not set | 526 | # CONFIG_SCSI_IPS is not set |
504 | # CONFIG_SCSI_INITIO is not set | 527 | # CONFIG_SCSI_INITIO is not set |
505 | # CONFIG_SCSI_INIA100 is not set | 528 | # CONFIG_SCSI_INIA100 is not set |
529 | # CONFIG_SCSI_MVSAS is not set | ||
506 | # CONFIG_SCSI_STEX is not set | 530 | # CONFIG_SCSI_STEX is not set |
507 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 531 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
508 | # CONFIG_SCSI_IPR is not set | 532 | # CONFIG_SCSI_IPR is not set |
@@ -533,6 +557,7 @@ CONFIG_SATA_SIL=y | |||
533 | # CONFIG_SATA_VIA is not set | 557 | # CONFIG_SATA_VIA is not set |
534 | # CONFIG_SATA_VITESSE is not set | 558 | # CONFIG_SATA_VITESSE is not set |
535 | # CONFIG_SATA_INIC162X is not set | 559 | # CONFIG_SATA_INIC162X is not set |
560 | # CONFIG_SATA_FSL is not set | ||
536 | # CONFIG_PATA_ALI is not set | 561 | # CONFIG_PATA_ALI is not set |
537 | # CONFIG_PATA_AMD is not set | 562 | # CONFIG_PATA_AMD is not set |
538 | # CONFIG_PATA_ARTOP is not set | 563 | # CONFIG_PATA_ARTOP is not set |
@@ -556,6 +581,7 @@ CONFIG_SATA_SIL=y | |||
556 | # CONFIG_PATA_MPIIX is not set | 581 | # CONFIG_PATA_MPIIX is not set |
557 | # CONFIG_PATA_OLDPIIX is not set | 582 | # CONFIG_PATA_OLDPIIX is not set |
558 | # CONFIG_PATA_NETCELL is not set | 583 | # CONFIG_PATA_NETCELL is not set |
584 | # CONFIG_PATA_NINJA32 is not set | ||
559 | # CONFIG_PATA_NS87410 is not set | 585 | # CONFIG_PATA_NS87410 is not set |
560 | # CONFIG_PATA_NS87415 is not set | 586 | # CONFIG_PATA_NS87415 is not set |
561 | # CONFIG_PATA_OPTI is not set | 587 | # CONFIG_PATA_OPTI is not set |
@@ -599,7 +625,6 @@ CONFIG_NETDEVICES=y | |||
599 | # CONFIG_EQUALIZER is not set | 625 | # CONFIG_EQUALIZER is not set |
600 | # CONFIG_TUN is not set | 626 | # CONFIG_TUN is not set |
601 | # CONFIG_VETH is not set | 627 | # CONFIG_VETH is not set |
602 | # CONFIG_IP1000 is not set | ||
603 | # CONFIG_ARCNET is not set | 628 | # CONFIG_ARCNET is not set |
604 | CONFIG_PHYLIB=y | 629 | CONFIG_PHYLIB=y |
605 | 630 | ||
@@ -615,6 +640,7 @@ CONFIG_CICADA_PHY=y | |||
615 | # CONFIG_SMSC_PHY is not set | 640 | # CONFIG_SMSC_PHY is not set |
616 | # CONFIG_BROADCOM_PHY is not set | 641 | # CONFIG_BROADCOM_PHY is not set |
617 | # CONFIG_ICPLUS_PHY is not set | 642 | # CONFIG_ICPLUS_PHY is not set |
643 | # CONFIG_REALTEK_PHY is not set | ||
618 | # CONFIG_FIXED_PHY is not set | 644 | # CONFIG_FIXED_PHY is not set |
619 | # CONFIG_MDIO_BITBANG is not set | 645 | # CONFIG_MDIO_BITBANG is not set |
620 | # CONFIG_NET_ETHERNET is not set | 646 | # CONFIG_NET_ETHERNET is not set |
@@ -623,6 +649,9 @@ CONFIG_NETDEV_1000=y | |||
623 | # CONFIG_DL2K is not set | 649 | # CONFIG_DL2K is not set |
624 | # CONFIG_E1000 is not set | 650 | # CONFIG_E1000 is not set |
625 | # CONFIG_E1000E is not set | 651 | # CONFIG_E1000E is not set |
652 | # CONFIG_E1000E_ENABLED is not set | ||
653 | # CONFIG_IP1000 is not set | ||
654 | # CONFIG_IGB is not set | ||
626 | # CONFIG_NS83820 is not set | 655 | # CONFIG_NS83820 is not set |
627 | # CONFIG_HAMACHI is not set | 656 | # CONFIG_HAMACHI is not set |
628 | # CONFIG_YELLOWFIN is not set | 657 | # CONFIG_YELLOWFIN is not set |
@@ -649,6 +678,7 @@ CONFIG_NETDEV_10000=y | |||
649 | # CONFIG_NIU is not set | 678 | # CONFIG_NIU is not set |
650 | # CONFIG_MLX4_CORE is not set | 679 | # CONFIG_MLX4_CORE is not set |
651 | # CONFIG_TEHUTI is not set | 680 | # CONFIG_TEHUTI is not set |
681 | # CONFIG_BNX2X is not set | ||
652 | # CONFIG_TR is not set | 682 | # CONFIG_TR is not set |
653 | 683 | ||
654 | # | 684 | # |
@@ -671,7 +701,6 @@ CONFIG_NETDEV_10000=y | |||
671 | # CONFIG_PPP is not set | 701 | # CONFIG_PPP is not set |
672 | # CONFIG_SLIP is not set | 702 | # CONFIG_SLIP is not set |
673 | # CONFIG_NET_FC is not set | 703 | # CONFIG_NET_FC is not set |
674 | # CONFIG_SHAPER is not set | ||
675 | # CONFIG_NETCONSOLE is not set | 704 | # CONFIG_NETCONSOLE is not set |
676 | # CONFIG_NETPOLL is not set | 705 | # CONFIG_NETPOLL is not set |
677 | # CONFIG_NET_POLL_CONTROLLER is not set | 706 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -694,6 +723,7 @@ CONFIG_NETDEV_10000=y | |||
694 | # | 723 | # |
695 | # CONFIG_VT is not set | 724 | # CONFIG_VT is not set |
696 | # CONFIG_SERIAL_NONSTANDARD is not set | 725 | # CONFIG_SERIAL_NONSTANDARD is not set |
726 | # CONFIG_NOZOMI is not set | ||
697 | 727 | ||
698 | # | 728 | # |
699 | # Serial drivers | 729 | # Serial drivers |
@@ -767,14 +797,12 @@ CONFIG_I2C_MPC=y | |||
767 | # | 797 | # |
768 | # Miscellaneous I2C Chip support | 798 | # Miscellaneous I2C Chip support |
769 | # | 799 | # |
770 | # CONFIG_SENSORS_DS1337 is not set | ||
771 | # CONFIG_SENSORS_DS1374 is not set | ||
772 | # CONFIG_DS1682 is not set | 800 | # CONFIG_DS1682 is not set |
773 | # CONFIG_SENSORS_EEPROM is not set | 801 | # CONFIG_SENSORS_EEPROM is not set |
774 | CONFIG_SENSORS_PCF8574=y | 802 | CONFIG_SENSORS_PCF8574=y |
775 | # CONFIG_SENSORS_PCA9539 is not set | 803 | # CONFIG_PCF8575 is not set |
776 | # CONFIG_SENSORS_PCF8591 is not set | 804 | # CONFIG_SENSORS_PCF8591 is not set |
777 | # CONFIG_SENSORS_M41T00 is not set | 805 | # CONFIG_TPS65010 is not set |
778 | # CONFIG_SENSORS_MAX6875 is not set | 806 | # CONFIG_SENSORS_MAX6875 is not set |
779 | # CONFIG_SENSORS_TSL2550 is not set | 807 | # CONFIG_SENSORS_TSL2550 is not set |
780 | # CONFIG_I2C_DEBUG_CORE is not set | 808 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -803,6 +831,7 @@ CONFIG_SPI_MPC83xx=y | |||
803 | # CONFIG_W1 is not set | 831 | # CONFIG_W1 is not set |
804 | # CONFIG_POWER_SUPPLY is not set | 832 | # CONFIG_POWER_SUPPLY is not set |
805 | # CONFIG_HWMON is not set | 833 | # CONFIG_HWMON is not set |
834 | # CONFIG_THERMAL is not set | ||
806 | CONFIG_WATCHDOG=y | 835 | CONFIG_WATCHDOG=y |
807 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 836 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
808 | 837 | ||
@@ -867,6 +896,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
867 | CONFIG_USB_ARCH_HAS_EHCI=y | 896 | CONFIG_USB_ARCH_HAS_EHCI=y |
868 | CONFIG_USB=y | 897 | CONFIG_USB=y |
869 | # CONFIG_USB_DEBUG is not set | 898 | # CONFIG_USB_DEBUG is not set |
899 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
870 | 900 | ||
871 | # | 901 | # |
872 | # Miscellaneous USB options | 902 | # Miscellaneous USB options |
@@ -880,10 +910,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
880 | # USB Host Controller Drivers | 910 | # USB Host Controller Drivers |
881 | # | 911 | # |
882 | CONFIG_USB_EHCI_HCD=y | 912 | CONFIG_USB_EHCI_HCD=y |
883 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
884 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 913 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
885 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 914 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
886 | CONFIG_USB_EHCI_FSL=y | 915 | CONFIG_USB_EHCI_FSL=y |
916 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
887 | # CONFIG_USB_ISP116X_HCD is not set | 917 | # CONFIG_USB_ISP116X_HCD is not set |
888 | # CONFIG_USB_OHCI_HCD is not set | 918 | # CONFIG_USB_OHCI_HCD is not set |
889 | CONFIG_USB_UHCI_HCD=y | 919 | CONFIG_USB_UHCI_HCD=y |
@@ -927,10 +957,6 @@ CONFIG_USB_MON=y | |||
927 | # | 957 | # |
928 | # USB port drivers | 958 | # USB port drivers |
929 | # | 959 | # |
930 | |||
931 | # | ||
932 | # USB Serial Converter support | ||
933 | # | ||
934 | # CONFIG_USB_SERIAL is not set | 960 | # CONFIG_USB_SERIAL is not set |
935 | 961 | ||
936 | # | 962 | # |
@@ -956,16 +982,9 @@ CONFIG_USB_MON=y | |||
956 | # CONFIG_USB_TRANCEVIBRATOR is not set | 982 | # CONFIG_USB_TRANCEVIBRATOR is not set |
957 | # CONFIG_USB_IOWARRIOR is not set | 983 | # CONFIG_USB_IOWARRIOR is not set |
958 | # CONFIG_USB_TEST is not set | 984 | # CONFIG_USB_TEST is not set |
959 | |||
960 | # | ||
961 | # USB DSL modem support | ||
962 | # | ||
963 | |||
964 | # | ||
965 | # USB Gadget Support | ||
966 | # | ||
967 | # CONFIG_USB_GADGET is not set | 985 | # CONFIG_USB_GADGET is not set |
968 | # CONFIG_MMC is not set | 986 | # CONFIG_MMC is not set |
987 | # CONFIG_MEMSTICK is not set | ||
969 | # CONFIG_NEW_LEDS is not set | 988 | # CONFIG_NEW_LEDS is not set |
970 | # CONFIG_INFINIBAND is not set | 989 | # CONFIG_INFINIBAND is not set |
971 | # CONFIG_EDAC is not set | 990 | # CONFIG_EDAC is not set |
@@ -997,20 +1016,23 @@ CONFIG_RTC_DRV_DS1307=y | |||
997 | # CONFIG_RTC_DRV_PCF8563 is not set | 1016 | # CONFIG_RTC_DRV_PCF8563 is not set |
998 | # CONFIG_RTC_DRV_PCF8583 is not set | 1017 | # CONFIG_RTC_DRV_PCF8583 is not set |
999 | # CONFIG_RTC_DRV_M41T80 is not set | 1018 | # CONFIG_RTC_DRV_M41T80 is not set |
1019 | # CONFIG_RTC_DRV_S35390A is not set | ||
1000 | 1020 | ||
1001 | # | 1021 | # |
1002 | # SPI RTC drivers | 1022 | # SPI RTC drivers |
1003 | # | 1023 | # |
1004 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1005 | # CONFIG_RTC_DRV_MAX6902 is not set | 1024 | # CONFIG_RTC_DRV_MAX6902 is not set |
1025 | # CONFIG_RTC_DRV_R9701 is not set | ||
1026 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1006 | 1027 | ||
1007 | # | 1028 | # |
1008 | # Platform RTC drivers | 1029 | # Platform RTC drivers |
1009 | # | 1030 | # |
1010 | # CONFIG_RTC_DRV_CMOS is not set | 1031 | # CONFIG_RTC_DRV_CMOS is not set |
1032 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1011 | # CONFIG_RTC_DRV_DS1553 is not set | 1033 | # CONFIG_RTC_DRV_DS1553 is not set |
1012 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1013 | # CONFIG_RTC_DRV_DS1742 is not set | 1034 | # CONFIG_RTC_DRV_DS1742 is not set |
1035 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1014 | # CONFIG_RTC_DRV_M48T86 is not set | 1036 | # CONFIG_RTC_DRV_M48T86 is not set |
1015 | # CONFIG_RTC_DRV_M48T59 is not set | 1037 | # CONFIG_RTC_DRV_M48T59 is not set |
1016 | # CONFIG_RTC_DRV_V3020 is not set | 1038 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1018,6 +1040,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
1018 | # | 1040 | # |
1019 | # on-CPU RTC drivers | 1041 | # on-CPU RTC drivers |
1020 | # | 1042 | # |
1043 | # CONFIG_DMADEVICES is not set | ||
1021 | 1044 | ||
1022 | # | 1045 | # |
1023 | # Userspace I/O | 1046 | # Userspace I/O |
@@ -1043,12 +1066,10 @@ CONFIG_FS_MBCACHE=y | |||
1043 | # CONFIG_XFS_FS is not set | 1066 | # CONFIG_XFS_FS is not set |
1044 | # CONFIG_GFS2_FS is not set | 1067 | # CONFIG_GFS2_FS is not set |
1045 | # CONFIG_OCFS2_FS is not set | 1068 | # CONFIG_OCFS2_FS is not set |
1046 | # CONFIG_MINIX_FS is not set | 1069 | CONFIG_DNOTIFY=y |
1047 | # CONFIG_ROMFS_FS is not set | ||
1048 | CONFIG_INOTIFY=y | 1070 | CONFIG_INOTIFY=y |
1049 | CONFIG_INOTIFY_USER=y | 1071 | CONFIG_INOTIFY_USER=y |
1050 | # CONFIG_QUOTA is not set | 1072 | # CONFIG_QUOTA is not set |
1051 | CONFIG_DNOTIFY=y | ||
1052 | # CONFIG_AUTOFS_FS is not set | 1073 | # CONFIG_AUTOFS_FS is not set |
1053 | # CONFIG_AUTOFS4_FS is not set | 1074 | # CONFIG_AUTOFS4_FS is not set |
1054 | # CONFIG_FUSE_FS is not set | 1075 | # CONFIG_FUSE_FS is not set |
@@ -1094,8 +1115,10 @@ CONFIG_TMPFS=y | |||
1094 | # CONFIG_JFFS2_FS is not set | 1115 | # CONFIG_JFFS2_FS is not set |
1095 | # CONFIG_CRAMFS is not set | 1116 | # CONFIG_CRAMFS is not set |
1096 | # CONFIG_VXFS_FS is not set | 1117 | # CONFIG_VXFS_FS is not set |
1118 | # CONFIG_MINIX_FS is not set | ||
1097 | # CONFIG_HPFS_FS is not set | 1119 | # CONFIG_HPFS_FS is not set |
1098 | # CONFIG_QNX4FS_FS is not set | 1120 | # CONFIG_QNX4FS_FS is not set |
1121 | # CONFIG_ROMFS_FS is not set | ||
1099 | # CONFIG_SYSV_FS is not set | 1122 | # CONFIG_SYSV_FS is not set |
1100 | # CONFIG_UFS_FS is not set | 1123 | # CONFIG_UFS_FS is not set |
1101 | CONFIG_NETWORK_FILESYSTEMS=y | 1124 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1182,7 +1205,6 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1182 | # CONFIG_NLS_KOI8_U is not set | 1205 | # CONFIG_NLS_KOI8_U is not set |
1183 | # CONFIG_NLS_UTF8 is not set | 1206 | # CONFIG_NLS_UTF8 is not set |
1184 | # CONFIG_DLM is not set | 1207 | # CONFIG_DLM is not set |
1185 | # CONFIG_UCC_SLOW is not set | ||
1186 | 1208 | ||
1187 | # | 1209 | # |
1188 | # Library routines | 1210 | # Library routines |
@@ -1198,7 +1220,6 @@ CONFIG_PLIST=y | |||
1198 | CONFIG_HAS_IOMEM=y | 1220 | CONFIG_HAS_IOMEM=y |
1199 | CONFIG_HAS_IOPORT=y | 1221 | CONFIG_HAS_IOPORT=y |
1200 | CONFIG_HAS_DMA=y | 1222 | CONFIG_HAS_DMA=y |
1201 | # CONFIG_INSTRUMENTATION is not set | ||
1202 | 1223 | ||
1203 | # | 1224 | # |
1204 | # Kernel hacking | 1225 | # Kernel hacking |
@@ -1212,6 +1233,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1212 | # CONFIG_HEADERS_CHECK is not set | 1233 | # CONFIG_HEADERS_CHECK is not set |
1213 | # CONFIG_DEBUG_KERNEL is not set | 1234 | # CONFIG_DEBUG_KERNEL is not set |
1214 | # CONFIG_SLUB_DEBUG_ON is not set | 1235 | # CONFIG_SLUB_DEBUG_ON is not set |
1236 | # CONFIG_SLUB_STATS is not set | ||
1215 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1237 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1216 | # CONFIG_SAMPLES is not set | 1238 | # CONFIG_SAMPLES is not set |
1217 | # CONFIG_PPC_EARLY_DEBUG is not set | 1239 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1225,6 +1247,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1225 | CONFIG_CRYPTO=y | 1247 | CONFIG_CRYPTO=y |
1226 | CONFIG_CRYPTO_ALGAPI=y | 1248 | CONFIG_CRYPTO_ALGAPI=y |
1227 | CONFIG_CRYPTO_BLKCIPHER=y | 1249 | CONFIG_CRYPTO_BLKCIPHER=y |
1250 | # CONFIG_CRYPTO_SEQIV is not set | ||
1228 | CONFIG_CRYPTO_MANAGER=y | 1251 | CONFIG_CRYPTO_MANAGER=y |
1229 | # CONFIG_CRYPTO_HMAC is not set | 1252 | # CONFIG_CRYPTO_HMAC is not set |
1230 | # CONFIG_CRYPTO_XCBC is not set | 1253 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1242,6 +1265,9 @@ CONFIG_CRYPTO_CBC=y | |||
1242 | CONFIG_CRYPTO_PCBC=m | 1265 | CONFIG_CRYPTO_PCBC=m |
1243 | # CONFIG_CRYPTO_LRW is not set | 1266 | # CONFIG_CRYPTO_LRW is not set |
1244 | # CONFIG_CRYPTO_XTS is not set | 1267 | # CONFIG_CRYPTO_XTS is not set |
1268 | # CONFIG_CRYPTO_CTR is not set | ||
1269 | # CONFIG_CRYPTO_GCM is not set | ||
1270 | # CONFIG_CRYPTO_CCM is not set | ||
1245 | # CONFIG_CRYPTO_CRYPTD is not set | 1271 | # CONFIG_CRYPTO_CRYPTD is not set |
1246 | CONFIG_CRYPTO_DES=y | 1272 | CONFIG_CRYPTO_DES=y |
1247 | # CONFIG_CRYPTO_FCRYPT is not set | 1273 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1256,11 +1282,14 @@ CONFIG_CRYPTO_DES=y | |||
1256 | # CONFIG_CRYPTO_KHAZAD is not set | 1282 | # CONFIG_CRYPTO_KHAZAD is not set |
1257 | # CONFIG_CRYPTO_ANUBIS is not set | 1283 | # CONFIG_CRYPTO_ANUBIS is not set |
1258 | # CONFIG_CRYPTO_SEED is not set | 1284 | # CONFIG_CRYPTO_SEED is not set |
1285 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1259 | # CONFIG_CRYPTO_DEFLATE is not set | 1286 | # CONFIG_CRYPTO_DEFLATE is not set |
1260 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1287 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1261 | # CONFIG_CRYPTO_CRC32C is not set | 1288 | # CONFIG_CRYPTO_CRC32C is not set |
1262 | # CONFIG_CRYPTO_CAMELLIA is not set | 1289 | # CONFIG_CRYPTO_CAMELLIA is not set |
1263 | # CONFIG_CRYPTO_TEST is not set | 1290 | # CONFIG_CRYPTO_TEST is not set |
1264 | # CONFIG_CRYPTO_AUTHENC is not set | 1291 | # CONFIG_CRYPTO_AUTHENC is not set |
1292 | # CONFIG_CRYPTO_LZO is not set | ||
1265 | CONFIG_CRYPTO_HW=y | 1293 | CONFIG_CRYPTO_HW=y |
1294 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1266 | # CONFIG_PPC_CLOCK is not set | 1295 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc834x_itxgp_defconfig b/arch/powerpc/configs/mpc834x_itxgp_defconfig index 67cb09cc3ace..b4e39cf82a8c 100644 --- a/arch/powerpc/configs/mpc834x_itxgp_defconfig +++ b/arch/powerpc/configs/mpc834x_itxgp_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:39 2007 | 4 | # Mon Mar 24 08:48:18 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +91,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
92 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
93 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +105,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 105 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 106 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_HAVE_KRETPROBES=y | ||
113 | CONFIG_PROC_PAGE_MONITOR=y | ||
114 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 117 | CONFIG_BASE_SMALL=0 |
@@ -125,6 +139,7 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 139 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | ||
128 | 143 | ||
129 | # | 144 | # |
130 | # Platform support | 145 | # Platform support |
@@ -133,18 +148,23 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
133 | # CONFIG_PPC_82xx is not set | 148 | # CONFIG_PPC_82xx is not set |
134 | CONFIG_PPC_83xx=y | 149 | CONFIG_PPC_83xx=y |
135 | # CONFIG_PPC_86xx is not set | 150 | # CONFIG_PPC_86xx is not set |
136 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
137 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
138 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
139 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
140 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
141 | # CONFIG_MPC8313_RDB is not set | 156 | CONFIG_MPC83xx=y |
157 | # CONFIG_MPC831x_RDB is not set | ||
142 | # CONFIG_MPC832x_MDS is not set | 158 | # CONFIG_MPC832x_MDS is not set |
143 | # CONFIG_MPC832x_RDB is not set | 159 | # CONFIG_MPC832x_RDB is not set |
144 | # CONFIG_MPC834x_MDS is not set | 160 | # CONFIG_MPC834x_MDS is not set |
145 | CONFIG_MPC834x_ITX=y | 161 | CONFIG_MPC834x_ITX=y |
146 | # CONFIG_MPC836x_MDS is not set | 162 | # CONFIG_MPC836x_MDS is not set |
147 | CONFIG_MPC834x=y | 163 | # CONFIG_MPC837x_MDS is not set |
164 | # CONFIG_MPC837x_RDB is not set | ||
165 | # CONFIG_SBC834x is not set | ||
166 | CONFIG_PPC_MPC834x=y | ||
167 | CONFIG_IPIC=y | ||
148 | # CONFIG_MPIC is not set | 168 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 169 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 170 | # CONFIG_PPC_I8259 is not set |
@@ -155,7 +175,6 @@ CONFIG_MPC834x=y | |||
155 | # CONFIG_PPC_INDIRECT_IO is not set | 175 | # CONFIG_PPC_INDIRECT_IO is not set |
156 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
158 | # CONFIG_CPM2 is not set | ||
159 | # CONFIG_FSL_ULI1575 is not set | 178 | # CONFIG_FSL_ULI1575 is not set |
160 | 179 | ||
161 | # | 180 | # |
@@ -171,12 +190,16 @@ CONFIG_HZ_250=y | |||
171 | # CONFIG_HZ_300 is not set | 190 | # CONFIG_HZ_300 is not set |
172 | # CONFIG_HZ_1000 is not set | 191 | # CONFIG_HZ_1000 is not set |
173 | CONFIG_HZ=250 | 192 | CONFIG_HZ=250 |
193 | # CONFIG_SCHED_HRTICK is not set | ||
174 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
175 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
176 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
177 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
178 | # CONFIG_BINFMT_MISC is not set | 198 | # CONFIG_BINFMT_MISC is not set |
199 | # CONFIG_IOMMU_HELPER is not set | ||
179 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
180 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
181 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
182 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -195,11 +218,7 @@ CONFIG_VIRT_TO_BUS=y | |||
195 | CONFIG_PROC_DEVICETREE=y | 218 | CONFIG_PROC_DEVICETREE=y |
196 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
197 | # CONFIG_PM is not set | 220 | # CONFIG_PM is not set |
198 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
199 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
200 | CONFIG_SECCOMP=y | 221 | CONFIG_SECCOMP=y |
201 | CONFIG_WANT_DEVICE_TREE=y | ||
202 | CONFIG_DEVICE_TREE="" | ||
203 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
204 | 223 | ||
205 | # | 224 | # |
@@ -248,6 +267,7 @@ CONFIG_XFRM=y | |||
248 | # CONFIG_XFRM_USER is not set | 267 | # CONFIG_XFRM_USER is not set |
249 | # CONFIG_XFRM_SUB_POLICY is not set | 268 | # CONFIG_XFRM_SUB_POLICY is not set |
250 | # CONFIG_XFRM_MIGRATE is not set | 269 | # CONFIG_XFRM_MIGRATE is not set |
270 | # CONFIG_XFRM_STATISTICS is not set | ||
251 | # CONFIG_NET_KEY is not set | 271 | # CONFIG_NET_KEY is not set |
252 | CONFIG_INET=y | 272 | CONFIG_INET=y |
253 | CONFIG_IP_MULTICAST=y | 273 | CONFIG_IP_MULTICAST=y |
@@ -303,6 +323,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
303 | # | 323 | # |
304 | # CONFIG_NET_PKTGEN is not set | 324 | # CONFIG_NET_PKTGEN is not set |
305 | # CONFIG_HAMRADIO is not set | 325 | # CONFIG_HAMRADIO is not set |
326 | # CONFIG_CAN is not set | ||
306 | # CONFIG_IRDA is not set | 327 | # CONFIG_IRDA is not set |
307 | # CONFIG_BT is not set | 328 | # CONFIG_BT is not set |
308 | # CONFIG_AF_RXRPC is not set | 329 | # CONFIG_AF_RXRPC is not set |
@@ -427,7 +448,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
427 | CONFIG_BLK_DEV_RAM=y | 448 | CONFIG_BLK_DEV_RAM=y |
428 | CONFIG_BLK_DEV_RAM_COUNT=16 | 449 | CONFIG_BLK_DEV_RAM_COUNT=16 |
429 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 450 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
430 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 451 | # CONFIG_BLK_DEV_XIP is not set |
431 | # CONFIG_CDROM_PKTCDVD is not set | 452 | # CONFIG_CDROM_PKTCDVD is not set |
432 | # CONFIG_ATA_OVER_ETH is not set | 453 | # CONFIG_ATA_OVER_ETH is not set |
433 | CONFIG_MISC_DEVICES=y | 454 | CONFIG_MISC_DEVICES=y |
@@ -435,6 +456,8 @@ CONFIG_MISC_DEVICES=y | |||
435 | # CONFIG_EEPROM_93CX6 is not set | 456 | # CONFIG_EEPROM_93CX6 is not set |
436 | # CONFIG_SGI_IOC4 is not set | 457 | # CONFIG_SGI_IOC4 is not set |
437 | # CONFIG_TIFM_CORE is not set | 458 | # CONFIG_TIFM_CORE is not set |
459 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
460 | CONFIG_HAVE_IDE=y | ||
438 | # CONFIG_IDE is not set | 461 | # CONFIG_IDE is not set |
439 | 462 | ||
440 | # | 463 | # |
@@ -499,6 +522,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
499 | # CONFIG_SCSI_IPS is not set | 522 | # CONFIG_SCSI_IPS is not set |
500 | # CONFIG_SCSI_INITIO is not set | 523 | # CONFIG_SCSI_INITIO is not set |
501 | # CONFIG_SCSI_INIA100 is not set | 524 | # CONFIG_SCSI_INIA100 is not set |
525 | # CONFIG_SCSI_MVSAS is not set | ||
502 | # CONFIG_SCSI_STEX is not set | 526 | # CONFIG_SCSI_STEX is not set |
503 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 527 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
504 | # CONFIG_SCSI_QLOGIC_1280 is not set | 528 | # CONFIG_SCSI_QLOGIC_1280 is not set |
@@ -529,7 +553,6 @@ CONFIG_NETDEVICES=y | |||
529 | # CONFIG_EQUALIZER is not set | 553 | # CONFIG_EQUALIZER is not set |
530 | # CONFIG_TUN is not set | 554 | # CONFIG_TUN is not set |
531 | # CONFIG_VETH is not set | 555 | # CONFIG_VETH is not set |
532 | # CONFIG_IP1000 is not set | ||
533 | # CONFIG_ARCNET is not set | 556 | # CONFIG_ARCNET is not set |
534 | CONFIG_PHYLIB=y | 557 | CONFIG_PHYLIB=y |
535 | 558 | ||
@@ -545,6 +568,7 @@ CONFIG_CICADA_PHY=y | |||
545 | # CONFIG_SMSC_PHY is not set | 568 | # CONFIG_SMSC_PHY is not set |
546 | # CONFIG_BROADCOM_PHY is not set | 569 | # CONFIG_BROADCOM_PHY is not set |
547 | # CONFIG_ICPLUS_PHY is not set | 570 | # CONFIG_ICPLUS_PHY is not set |
571 | # CONFIG_REALTEK_PHY is not set | ||
548 | # CONFIG_FIXED_PHY is not set | 572 | # CONFIG_FIXED_PHY is not set |
549 | # CONFIG_MDIO_BITBANG is not set | 573 | # CONFIG_MDIO_BITBANG is not set |
550 | # CONFIG_NET_ETHERNET is not set | 574 | # CONFIG_NET_ETHERNET is not set |
@@ -553,6 +577,9 @@ CONFIG_NETDEV_1000=y | |||
553 | # CONFIG_DL2K is not set | 577 | # CONFIG_DL2K is not set |
554 | # CONFIG_E1000 is not set | 578 | # CONFIG_E1000 is not set |
555 | # CONFIG_E1000E is not set | 579 | # CONFIG_E1000E is not set |
580 | # CONFIG_E1000E_ENABLED is not set | ||
581 | # CONFIG_IP1000 is not set | ||
582 | # CONFIG_IGB is not set | ||
556 | # CONFIG_NS83820 is not set | 583 | # CONFIG_NS83820 is not set |
557 | # CONFIG_HAMACHI is not set | 584 | # CONFIG_HAMACHI is not set |
558 | # CONFIG_YELLOWFIN is not set | 585 | # CONFIG_YELLOWFIN is not set |
@@ -579,6 +606,7 @@ CONFIG_NETDEV_10000=y | |||
579 | # CONFIG_NIU is not set | 606 | # CONFIG_NIU is not set |
580 | # CONFIG_MLX4_CORE is not set | 607 | # CONFIG_MLX4_CORE is not set |
581 | # CONFIG_TEHUTI is not set | 608 | # CONFIG_TEHUTI is not set |
609 | # CONFIG_BNX2X is not set | ||
582 | # CONFIG_TR is not set | 610 | # CONFIG_TR is not set |
583 | 611 | ||
584 | # | 612 | # |
@@ -601,7 +629,6 @@ CONFIG_NETDEV_10000=y | |||
601 | # CONFIG_PPP is not set | 629 | # CONFIG_PPP is not set |
602 | # CONFIG_SLIP is not set | 630 | # CONFIG_SLIP is not set |
603 | # CONFIG_NET_FC is not set | 631 | # CONFIG_NET_FC is not set |
604 | # CONFIG_SHAPER is not set | ||
605 | # CONFIG_NETCONSOLE is not set | 632 | # CONFIG_NETCONSOLE is not set |
606 | # CONFIG_NETPOLL is not set | 633 | # CONFIG_NETPOLL is not set |
607 | # CONFIG_NET_POLL_CONTROLLER is not set | 634 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -624,6 +651,7 @@ CONFIG_NETDEV_10000=y | |||
624 | # | 651 | # |
625 | # CONFIG_VT is not set | 652 | # CONFIG_VT is not set |
626 | # CONFIG_SERIAL_NONSTANDARD is not set | 653 | # CONFIG_SERIAL_NONSTANDARD is not set |
654 | # CONFIG_NOZOMI is not set | ||
627 | 655 | ||
628 | # | 656 | # |
629 | # Serial drivers | 657 | # Serial drivers |
@@ -697,14 +725,12 @@ CONFIG_I2C_MPC=y | |||
697 | # | 725 | # |
698 | # Miscellaneous I2C Chip support | 726 | # Miscellaneous I2C Chip support |
699 | # | 727 | # |
700 | # CONFIG_SENSORS_DS1337 is not set | ||
701 | # CONFIG_SENSORS_DS1374 is not set | ||
702 | # CONFIG_DS1682 is not set | 728 | # CONFIG_DS1682 is not set |
703 | # CONFIG_SENSORS_EEPROM is not set | 729 | # CONFIG_SENSORS_EEPROM is not set |
704 | CONFIG_SENSORS_PCF8574=y | 730 | CONFIG_SENSORS_PCF8574=y |
705 | # CONFIG_SENSORS_PCA9539 is not set | 731 | # CONFIG_PCF8575 is not set |
706 | # CONFIG_SENSORS_PCF8591 is not set | 732 | # CONFIG_SENSORS_PCF8591 is not set |
707 | # CONFIG_SENSORS_M41T00 is not set | 733 | # CONFIG_TPS65010 is not set |
708 | # CONFIG_SENSORS_MAX6875 is not set | 734 | # CONFIG_SENSORS_MAX6875 is not set |
709 | # CONFIG_SENSORS_TSL2550 is not set | 735 | # CONFIG_SENSORS_TSL2550 is not set |
710 | # CONFIG_I2C_DEBUG_CORE is not set | 736 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -733,6 +759,7 @@ CONFIG_SPI_MPC83xx=y | |||
733 | # CONFIG_W1 is not set | 759 | # CONFIG_W1 is not set |
734 | # CONFIG_POWER_SUPPLY is not set | 760 | # CONFIG_POWER_SUPPLY is not set |
735 | # CONFIG_HWMON is not set | 761 | # CONFIG_HWMON is not set |
762 | # CONFIG_THERMAL is not set | ||
736 | CONFIG_WATCHDOG=y | 763 | CONFIG_WATCHDOG=y |
737 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 764 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
738 | 765 | ||
@@ -797,6 +824,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
797 | CONFIG_USB_ARCH_HAS_EHCI=y | 824 | CONFIG_USB_ARCH_HAS_EHCI=y |
798 | CONFIG_USB=y | 825 | CONFIG_USB=y |
799 | # CONFIG_USB_DEBUG is not set | 826 | # CONFIG_USB_DEBUG is not set |
827 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
800 | 828 | ||
801 | # | 829 | # |
802 | # Miscellaneous USB options | 830 | # Miscellaneous USB options |
@@ -810,10 +838,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
810 | # USB Host Controller Drivers | 838 | # USB Host Controller Drivers |
811 | # | 839 | # |
812 | CONFIG_USB_EHCI_HCD=y | 840 | CONFIG_USB_EHCI_HCD=y |
813 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
814 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 841 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
815 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 842 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
816 | CONFIG_USB_EHCI_FSL=y | 843 | CONFIG_USB_EHCI_FSL=y |
844 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
817 | # CONFIG_USB_ISP116X_HCD is not set | 845 | # CONFIG_USB_ISP116X_HCD is not set |
818 | # CONFIG_USB_OHCI_HCD is not set | 846 | # CONFIG_USB_OHCI_HCD is not set |
819 | CONFIG_USB_UHCI_HCD=y | 847 | CONFIG_USB_UHCI_HCD=y |
@@ -857,10 +885,6 @@ CONFIG_USB_MON=y | |||
857 | # | 885 | # |
858 | # USB port drivers | 886 | # USB port drivers |
859 | # | 887 | # |
860 | |||
861 | # | ||
862 | # USB Serial Converter support | ||
863 | # | ||
864 | # CONFIG_USB_SERIAL is not set | 888 | # CONFIG_USB_SERIAL is not set |
865 | 889 | ||
866 | # | 890 | # |
@@ -885,16 +909,9 @@ CONFIG_USB_MON=y | |||
885 | # CONFIG_USB_LD is not set | 909 | # CONFIG_USB_LD is not set |
886 | # CONFIG_USB_TRANCEVIBRATOR is not set | 910 | # CONFIG_USB_TRANCEVIBRATOR is not set |
887 | # CONFIG_USB_IOWARRIOR is not set | 911 | # CONFIG_USB_IOWARRIOR is not set |
888 | |||
889 | # | ||
890 | # USB DSL modem support | ||
891 | # | ||
892 | |||
893 | # | ||
894 | # USB Gadget Support | ||
895 | # | ||
896 | # CONFIG_USB_GADGET is not set | 912 | # CONFIG_USB_GADGET is not set |
897 | # CONFIG_MMC is not set | 913 | # CONFIG_MMC is not set |
914 | # CONFIG_MEMSTICK is not set | ||
898 | # CONFIG_NEW_LEDS is not set | 915 | # CONFIG_NEW_LEDS is not set |
899 | # CONFIG_INFINIBAND is not set | 916 | # CONFIG_INFINIBAND is not set |
900 | # CONFIG_EDAC is not set | 917 | # CONFIG_EDAC is not set |
@@ -926,20 +943,23 @@ CONFIG_RTC_DRV_DS1307=y | |||
926 | # CONFIG_RTC_DRV_PCF8563 is not set | 943 | # CONFIG_RTC_DRV_PCF8563 is not set |
927 | # CONFIG_RTC_DRV_PCF8583 is not set | 944 | # CONFIG_RTC_DRV_PCF8583 is not set |
928 | # CONFIG_RTC_DRV_M41T80 is not set | 945 | # CONFIG_RTC_DRV_M41T80 is not set |
946 | # CONFIG_RTC_DRV_S35390A is not set | ||
929 | 947 | ||
930 | # | 948 | # |
931 | # SPI RTC drivers | 949 | # SPI RTC drivers |
932 | # | 950 | # |
933 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
934 | # CONFIG_RTC_DRV_MAX6902 is not set | 951 | # CONFIG_RTC_DRV_MAX6902 is not set |
952 | # CONFIG_RTC_DRV_R9701 is not set | ||
953 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
935 | 954 | ||
936 | # | 955 | # |
937 | # Platform RTC drivers | 956 | # Platform RTC drivers |
938 | # | 957 | # |
939 | # CONFIG_RTC_DRV_CMOS is not set | 958 | # CONFIG_RTC_DRV_CMOS is not set |
959 | # CONFIG_RTC_DRV_DS1511 is not set | ||
940 | # CONFIG_RTC_DRV_DS1553 is not set | 960 | # CONFIG_RTC_DRV_DS1553 is not set |
941 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
942 | # CONFIG_RTC_DRV_DS1742 is not set | 961 | # CONFIG_RTC_DRV_DS1742 is not set |
962 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
943 | # CONFIG_RTC_DRV_M48T86 is not set | 963 | # CONFIG_RTC_DRV_M48T86 is not set |
944 | # CONFIG_RTC_DRV_M48T59 is not set | 964 | # CONFIG_RTC_DRV_M48T59 is not set |
945 | # CONFIG_RTC_DRV_V3020 is not set | 965 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -947,6 +967,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
947 | # | 967 | # |
948 | # on-CPU RTC drivers | 968 | # on-CPU RTC drivers |
949 | # | 969 | # |
970 | # CONFIG_DMADEVICES is not set | ||
950 | 971 | ||
951 | # | 972 | # |
952 | # Userspace I/O | 973 | # Userspace I/O |
@@ -972,12 +993,10 @@ CONFIG_FS_MBCACHE=y | |||
972 | # CONFIG_XFS_FS is not set | 993 | # CONFIG_XFS_FS is not set |
973 | # CONFIG_GFS2_FS is not set | 994 | # CONFIG_GFS2_FS is not set |
974 | # CONFIG_OCFS2_FS is not set | 995 | # CONFIG_OCFS2_FS is not set |
975 | # CONFIG_MINIX_FS is not set | 996 | CONFIG_DNOTIFY=y |
976 | # CONFIG_ROMFS_FS is not set | ||
977 | CONFIG_INOTIFY=y | 997 | CONFIG_INOTIFY=y |
978 | CONFIG_INOTIFY_USER=y | 998 | CONFIG_INOTIFY_USER=y |
979 | # CONFIG_QUOTA is not set | 999 | # CONFIG_QUOTA is not set |
980 | CONFIG_DNOTIFY=y | ||
981 | # CONFIG_AUTOFS_FS is not set | 1000 | # CONFIG_AUTOFS_FS is not set |
982 | # CONFIG_AUTOFS4_FS is not set | 1001 | # CONFIG_AUTOFS4_FS is not set |
983 | # CONFIG_FUSE_FS is not set | 1002 | # CONFIG_FUSE_FS is not set |
@@ -1023,8 +1042,10 @@ CONFIG_TMPFS=y | |||
1023 | # CONFIG_JFFS2_FS is not set | 1042 | # CONFIG_JFFS2_FS is not set |
1024 | # CONFIG_CRAMFS is not set | 1043 | # CONFIG_CRAMFS is not set |
1025 | # CONFIG_VXFS_FS is not set | 1044 | # CONFIG_VXFS_FS is not set |
1045 | # CONFIG_MINIX_FS is not set | ||
1026 | # CONFIG_HPFS_FS is not set | 1046 | # CONFIG_HPFS_FS is not set |
1027 | # CONFIG_QNX4FS_FS is not set | 1047 | # CONFIG_QNX4FS_FS is not set |
1048 | # CONFIG_ROMFS_FS is not set | ||
1028 | # CONFIG_SYSV_FS is not set | 1049 | # CONFIG_SYSV_FS is not set |
1029 | # CONFIG_UFS_FS is not set | 1050 | # CONFIG_UFS_FS is not set |
1030 | CONFIG_NETWORK_FILESYSTEMS=y | 1051 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1111,7 +1132,6 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1111 | # CONFIG_NLS_KOI8_U is not set | 1132 | # CONFIG_NLS_KOI8_U is not set |
1112 | # CONFIG_NLS_UTF8 is not set | 1133 | # CONFIG_NLS_UTF8 is not set |
1113 | # CONFIG_DLM is not set | 1134 | # CONFIG_DLM is not set |
1114 | # CONFIG_UCC_SLOW is not set | ||
1115 | 1135 | ||
1116 | # | 1136 | # |
1117 | # Library routines | 1137 | # Library routines |
@@ -1127,7 +1147,6 @@ CONFIG_PLIST=y | |||
1127 | CONFIG_HAS_IOMEM=y | 1147 | CONFIG_HAS_IOMEM=y |
1128 | CONFIG_HAS_IOPORT=y | 1148 | CONFIG_HAS_IOPORT=y |
1129 | CONFIG_HAS_DMA=y | 1149 | CONFIG_HAS_DMA=y |
1130 | # CONFIG_INSTRUMENTATION is not set | ||
1131 | 1150 | ||
1132 | # | 1151 | # |
1133 | # Kernel hacking | 1152 | # Kernel hacking |
@@ -1141,6 +1160,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1141 | # CONFIG_HEADERS_CHECK is not set | 1160 | # CONFIG_HEADERS_CHECK is not set |
1142 | # CONFIG_DEBUG_KERNEL is not set | 1161 | # CONFIG_DEBUG_KERNEL is not set |
1143 | # CONFIG_SLUB_DEBUG_ON is not set | 1162 | # CONFIG_SLUB_DEBUG_ON is not set |
1163 | # CONFIG_SLUB_STATS is not set | ||
1144 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1164 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1145 | # CONFIG_SAMPLES is not set | 1165 | # CONFIG_SAMPLES is not set |
1146 | # CONFIG_PPC_EARLY_DEBUG is not set | 1166 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1154,6 +1174,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1154 | CONFIG_CRYPTO=y | 1174 | CONFIG_CRYPTO=y |
1155 | CONFIG_CRYPTO_ALGAPI=y | 1175 | CONFIG_CRYPTO_ALGAPI=y |
1156 | CONFIG_CRYPTO_BLKCIPHER=y | 1176 | CONFIG_CRYPTO_BLKCIPHER=y |
1177 | # CONFIG_CRYPTO_SEQIV is not set | ||
1157 | CONFIG_CRYPTO_MANAGER=y | 1178 | CONFIG_CRYPTO_MANAGER=y |
1158 | # CONFIG_CRYPTO_HMAC is not set | 1179 | # CONFIG_CRYPTO_HMAC is not set |
1159 | # CONFIG_CRYPTO_XCBC is not set | 1180 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1171,6 +1192,9 @@ CONFIG_CRYPTO_CBC=y | |||
1171 | CONFIG_CRYPTO_PCBC=m | 1192 | CONFIG_CRYPTO_PCBC=m |
1172 | # CONFIG_CRYPTO_LRW is not set | 1193 | # CONFIG_CRYPTO_LRW is not set |
1173 | # CONFIG_CRYPTO_XTS is not set | 1194 | # CONFIG_CRYPTO_XTS is not set |
1195 | # CONFIG_CRYPTO_CTR is not set | ||
1196 | # CONFIG_CRYPTO_GCM is not set | ||
1197 | # CONFIG_CRYPTO_CCM is not set | ||
1174 | # CONFIG_CRYPTO_CRYPTD is not set | 1198 | # CONFIG_CRYPTO_CRYPTD is not set |
1175 | CONFIG_CRYPTO_DES=y | 1199 | CONFIG_CRYPTO_DES=y |
1176 | # CONFIG_CRYPTO_FCRYPT is not set | 1200 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1185,11 +1209,14 @@ CONFIG_CRYPTO_DES=y | |||
1185 | # CONFIG_CRYPTO_KHAZAD is not set | 1209 | # CONFIG_CRYPTO_KHAZAD is not set |
1186 | # CONFIG_CRYPTO_ANUBIS is not set | 1210 | # CONFIG_CRYPTO_ANUBIS is not set |
1187 | # CONFIG_CRYPTO_SEED is not set | 1211 | # CONFIG_CRYPTO_SEED is not set |
1212 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1188 | # CONFIG_CRYPTO_DEFLATE is not set | 1213 | # CONFIG_CRYPTO_DEFLATE is not set |
1189 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1214 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1190 | # CONFIG_CRYPTO_CRC32C is not set | 1215 | # CONFIG_CRYPTO_CRC32C is not set |
1191 | # CONFIG_CRYPTO_CAMELLIA is not set | 1216 | # CONFIG_CRYPTO_CAMELLIA is not set |
1192 | # CONFIG_CRYPTO_TEST is not set | 1217 | # CONFIG_CRYPTO_TEST is not set |
1193 | # CONFIG_CRYPTO_AUTHENC is not set | 1218 | # CONFIG_CRYPTO_AUTHENC is not set |
1219 | # CONFIG_CRYPTO_LZO is not set | ||
1194 | CONFIG_CRYPTO_HW=y | 1220 | CONFIG_CRYPTO_HW=y |
1221 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1195 | # CONFIG_PPC_CLOCK is not set | 1222 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc834x_mds_defconfig b/arch/powerpc/configs/mpc834x_mds_defconfig index 217539f3ecef..9360144942f1 100644 --- a/arch/powerpc/configs/mpc834x_mds_defconfig +++ b/arch/powerpc/configs/mpc834x_mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:41 2007 | 4 | # Mon Mar 24 08:48:20 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +91,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
92 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
93 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +105,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 105 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 106 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_HAVE_KRETPROBES=y | ||
113 | CONFIG_PROC_PAGE_MONITOR=y | ||
114 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 117 | CONFIG_BASE_SMALL=0 |
@@ -125,6 +139,7 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 139 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | ||
128 | 143 | ||
129 | # | 144 | # |
130 | # Platform support | 145 | # Platform support |
@@ -133,18 +148,23 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
133 | # CONFIG_PPC_82xx is not set | 148 | # CONFIG_PPC_82xx is not set |
134 | CONFIG_PPC_83xx=y | 149 | CONFIG_PPC_83xx=y |
135 | # CONFIG_PPC_86xx is not set | 150 | # CONFIG_PPC_86xx is not set |
136 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
137 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
138 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
139 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
140 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
141 | # CONFIG_MPC8313_RDB is not set | 156 | CONFIG_MPC83xx=y |
157 | # CONFIG_MPC831x_RDB is not set | ||
142 | # CONFIG_MPC832x_MDS is not set | 158 | # CONFIG_MPC832x_MDS is not set |
143 | # CONFIG_MPC832x_RDB is not set | 159 | # CONFIG_MPC832x_RDB is not set |
144 | CONFIG_MPC834x_MDS=y | 160 | CONFIG_MPC834x_MDS=y |
145 | # CONFIG_MPC834x_ITX is not set | 161 | # CONFIG_MPC834x_ITX is not set |
146 | # CONFIG_MPC836x_MDS is not set | 162 | # CONFIG_MPC836x_MDS is not set |
147 | CONFIG_MPC834x=y | 163 | # CONFIG_MPC837x_MDS is not set |
164 | # CONFIG_MPC837x_RDB is not set | ||
165 | # CONFIG_SBC834x is not set | ||
166 | CONFIG_PPC_MPC834x=y | ||
167 | CONFIG_IPIC=y | ||
148 | # CONFIG_MPIC is not set | 168 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 169 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 170 | # CONFIG_PPC_I8259 is not set |
@@ -155,7 +175,6 @@ CONFIG_MPC834x=y | |||
155 | # CONFIG_PPC_INDIRECT_IO is not set | 175 | # CONFIG_PPC_INDIRECT_IO is not set |
156 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
158 | # CONFIG_CPM2 is not set | ||
159 | # CONFIG_FSL_ULI1575 is not set | 178 | # CONFIG_FSL_ULI1575 is not set |
160 | 179 | ||
161 | # | 180 | # |
@@ -171,12 +190,16 @@ CONFIG_HZ_250=y | |||
171 | # CONFIG_HZ_300 is not set | 190 | # CONFIG_HZ_300 is not set |
172 | # CONFIG_HZ_1000 is not set | 191 | # CONFIG_HZ_1000 is not set |
173 | CONFIG_HZ=250 | 192 | CONFIG_HZ=250 |
193 | # CONFIG_SCHED_HRTICK is not set | ||
174 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
175 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
176 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
177 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
178 | # CONFIG_BINFMT_MISC is not set | 198 | # CONFIG_BINFMT_MISC is not set |
199 | # CONFIG_IOMMU_HELPER is not set | ||
179 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
180 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
181 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
182 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -195,11 +218,7 @@ CONFIG_VIRT_TO_BUS=y | |||
195 | CONFIG_PROC_DEVICETREE=y | 218 | CONFIG_PROC_DEVICETREE=y |
196 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
197 | # CONFIG_PM is not set | 220 | # CONFIG_PM is not set |
198 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
199 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
200 | CONFIG_SECCOMP=y | 221 | CONFIG_SECCOMP=y |
201 | CONFIG_WANT_DEVICE_TREE=y | ||
202 | CONFIG_DEVICE_TREE="" | ||
203 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
204 | 223 | ||
205 | # | 224 | # |
@@ -248,6 +267,7 @@ CONFIG_XFRM=y | |||
248 | CONFIG_XFRM_USER=m | 267 | CONFIG_XFRM_USER=m |
249 | # CONFIG_XFRM_SUB_POLICY is not set | 268 | # CONFIG_XFRM_SUB_POLICY is not set |
250 | # CONFIG_XFRM_MIGRATE is not set | 269 | # CONFIG_XFRM_MIGRATE is not set |
270 | # CONFIG_XFRM_STATISTICS is not set | ||
251 | # CONFIG_NET_KEY is not set | 271 | # CONFIG_NET_KEY is not set |
252 | CONFIG_INET=y | 272 | CONFIG_INET=y |
253 | CONFIG_IP_MULTICAST=y | 273 | CONFIG_IP_MULTICAST=y |
@@ -303,6 +323,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
303 | # | 323 | # |
304 | # CONFIG_NET_PKTGEN is not set | 324 | # CONFIG_NET_PKTGEN is not set |
305 | # CONFIG_HAMRADIO is not set | 325 | # CONFIG_HAMRADIO is not set |
326 | # CONFIG_CAN is not set | ||
306 | # CONFIG_IRDA is not set | 327 | # CONFIG_IRDA is not set |
307 | # CONFIG_BT is not set | 328 | # CONFIG_BT is not set |
308 | # CONFIG_AF_RXRPC is not set | 329 | # CONFIG_AF_RXRPC is not set |
@@ -347,7 +368,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
347 | CONFIG_BLK_DEV_RAM=y | 368 | CONFIG_BLK_DEV_RAM=y |
348 | CONFIG_BLK_DEV_RAM_COUNT=16 | 369 | CONFIG_BLK_DEV_RAM_COUNT=16 |
349 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 370 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
350 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 371 | # CONFIG_BLK_DEV_XIP is not set |
351 | # CONFIG_CDROM_PKTCDVD is not set | 372 | # CONFIG_CDROM_PKTCDVD is not set |
352 | # CONFIG_ATA_OVER_ETH is not set | 373 | # CONFIG_ATA_OVER_ETH is not set |
353 | CONFIG_MISC_DEVICES=y | 374 | CONFIG_MISC_DEVICES=y |
@@ -355,6 +376,8 @@ CONFIG_MISC_DEVICES=y | |||
355 | # CONFIG_EEPROM_93CX6 is not set | 376 | # CONFIG_EEPROM_93CX6 is not set |
356 | # CONFIG_SGI_IOC4 is not set | 377 | # CONFIG_SGI_IOC4 is not set |
357 | # CONFIG_TIFM_CORE is not set | 378 | # CONFIG_TIFM_CORE is not set |
379 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
380 | CONFIG_HAVE_IDE=y | ||
358 | # CONFIG_IDE is not set | 381 | # CONFIG_IDE is not set |
359 | 382 | ||
360 | # | 383 | # |
@@ -383,7 +406,6 @@ CONFIG_NETDEVICES=y | |||
383 | # CONFIG_EQUALIZER is not set | 406 | # CONFIG_EQUALIZER is not set |
384 | # CONFIG_TUN is not set | 407 | # CONFIG_TUN is not set |
385 | # CONFIG_VETH is not set | 408 | # CONFIG_VETH is not set |
386 | # CONFIG_IP1000 is not set | ||
387 | # CONFIG_ARCNET is not set | 409 | # CONFIG_ARCNET is not set |
388 | CONFIG_PHYLIB=y | 410 | CONFIG_PHYLIB=y |
389 | 411 | ||
@@ -399,6 +421,7 @@ CONFIG_MARVELL_PHY=y | |||
399 | # CONFIG_SMSC_PHY is not set | 421 | # CONFIG_SMSC_PHY is not set |
400 | # CONFIG_BROADCOM_PHY is not set | 422 | # CONFIG_BROADCOM_PHY is not set |
401 | # CONFIG_ICPLUS_PHY is not set | 423 | # CONFIG_ICPLUS_PHY is not set |
424 | # CONFIG_REALTEK_PHY is not set | ||
402 | # CONFIG_FIXED_PHY is not set | 425 | # CONFIG_FIXED_PHY is not set |
403 | # CONFIG_MDIO_BITBANG is not set | 426 | # CONFIG_MDIO_BITBANG is not set |
404 | CONFIG_NET_ETHERNET=y | 427 | CONFIG_NET_ETHERNET=y |
@@ -426,6 +449,7 @@ CONFIG_E100=y | |||
426 | # CONFIG_NE2K_PCI is not set | 449 | # CONFIG_NE2K_PCI is not set |
427 | # CONFIG_8139CP is not set | 450 | # CONFIG_8139CP is not set |
428 | # CONFIG_8139TOO is not set | 451 | # CONFIG_8139TOO is not set |
452 | # CONFIG_R6040 is not set | ||
429 | # CONFIG_SIS900 is not set | 453 | # CONFIG_SIS900 is not set |
430 | # CONFIG_EPIC100 is not set | 454 | # CONFIG_EPIC100 is not set |
431 | # CONFIG_SUNDANCE is not set | 455 | # CONFIG_SUNDANCE is not set |
@@ -437,6 +461,9 @@ CONFIG_NETDEV_1000=y | |||
437 | # CONFIG_DL2K is not set | 461 | # CONFIG_DL2K is not set |
438 | # CONFIG_E1000 is not set | 462 | # CONFIG_E1000 is not set |
439 | # CONFIG_E1000E is not set | 463 | # CONFIG_E1000E is not set |
464 | # CONFIG_E1000E_ENABLED is not set | ||
465 | # CONFIG_IP1000 is not set | ||
466 | # CONFIG_IGB is not set | ||
440 | # CONFIG_NS83820 is not set | 467 | # CONFIG_NS83820 is not set |
441 | # CONFIG_HAMACHI is not set | 468 | # CONFIG_HAMACHI is not set |
442 | # CONFIG_YELLOWFIN is not set | 469 | # CONFIG_YELLOWFIN is not set |
@@ -463,6 +490,7 @@ CONFIG_NETDEV_10000=y | |||
463 | # CONFIG_NIU is not set | 490 | # CONFIG_NIU is not set |
464 | # CONFIG_MLX4_CORE is not set | 491 | # CONFIG_MLX4_CORE is not set |
465 | # CONFIG_TEHUTI is not set | 492 | # CONFIG_TEHUTI is not set |
493 | # CONFIG_BNX2X is not set | ||
466 | # CONFIG_TR is not set | 494 | # CONFIG_TR is not set |
467 | 495 | ||
468 | # | 496 | # |
@@ -475,7 +503,6 @@ CONFIG_NETDEV_10000=y | |||
475 | # CONFIG_HIPPI is not set | 503 | # CONFIG_HIPPI is not set |
476 | # CONFIG_PPP is not set | 504 | # CONFIG_PPP is not set |
477 | # CONFIG_SLIP is not set | 505 | # CONFIG_SLIP is not set |
478 | # CONFIG_SHAPER is not set | ||
479 | # CONFIG_NETCONSOLE is not set | 506 | # CONFIG_NETCONSOLE is not set |
480 | # CONFIG_NETPOLL is not set | 507 | # CONFIG_NETPOLL is not set |
481 | # CONFIG_NET_POLL_CONTROLLER is not set | 508 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -518,6 +545,7 @@ CONFIG_INPUT=y | |||
518 | # | 545 | # |
519 | # CONFIG_VT is not set | 546 | # CONFIG_VT is not set |
520 | # CONFIG_SERIAL_NONSTANDARD is not set | 547 | # CONFIG_SERIAL_NONSTANDARD is not set |
548 | # CONFIG_NOZOMI is not set | ||
521 | 549 | ||
522 | # | 550 | # |
523 | # Serial drivers | 551 | # Serial drivers |
@@ -591,14 +619,12 @@ CONFIG_I2C_MPC=y | |||
591 | # | 619 | # |
592 | # Miscellaneous I2C Chip support | 620 | # Miscellaneous I2C Chip support |
593 | # | 621 | # |
594 | # CONFIG_SENSORS_DS1337 is not set | ||
595 | # CONFIG_SENSORS_DS1374 is not set | ||
596 | # CONFIG_DS1682 is not set | 622 | # CONFIG_DS1682 is not set |
597 | # CONFIG_SENSORS_EEPROM is not set | 623 | # CONFIG_SENSORS_EEPROM is not set |
598 | # CONFIG_SENSORS_PCF8574 is not set | 624 | # CONFIG_SENSORS_PCF8574 is not set |
599 | # CONFIG_SENSORS_PCA9539 is not set | 625 | # CONFIG_PCF8575 is not set |
600 | # CONFIG_SENSORS_PCF8591 is not set | 626 | # CONFIG_SENSORS_PCF8591 is not set |
601 | # CONFIG_SENSORS_M41T00 is not set | 627 | # CONFIG_TPS65010 is not set |
602 | # CONFIG_SENSORS_MAX6875 is not set | 628 | # CONFIG_SENSORS_MAX6875 is not set |
603 | # CONFIG_SENSORS_TSL2550 is not set | 629 | # CONFIG_SENSORS_TSL2550 is not set |
604 | # CONFIG_I2C_DEBUG_CORE is not set | 630 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -623,6 +649,7 @@ CONFIG_HWMON=y | |||
623 | # CONFIG_SENSORS_ADM1031 is not set | 649 | # CONFIG_SENSORS_ADM1031 is not set |
624 | # CONFIG_SENSORS_ADM9240 is not set | 650 | # CONFIG_SENSORS_ADM9240 is not set |
625 | # CONFIG_SENSORS_ADT7470 is not set | 651 | # CONFIG_SENSORS_ADT7470 is not set |
652 | # CONFIG_SENSORS_ADT7473 is not set | ||
626 | # CONFIG_SENSORS_ATXP1 is not set | 653 | # CONFIG_SENSORS_ATXP1 is not set |
627 | # CONFIG_SENSORS_DS1621 is not set | 654 | # CONFIG_SENSORS_DS1621 is not set |
628 | # CONFIG_SENSORS_I5K_AMB is not set | 655 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -652,6 +679,7 @@ CONFIG_HWMON=y | |||
652 | # CONFIG_SENSORS_SMSC47M1 is not set | 679 | # CONFIG_SENSORS_SMSC47M1 is not set |
653 | # CONFIG_SENSORS_SMSC47M192 is not set | 680 | # CONFIG_SENSORS_SMSC47M192 is not set |
654 | # CONFIG_SENSORS_SMSC47B397 is not set | 681 | # CONFIG_SENSORS_SMSC47B397 is not set |
682 | # CONFIG_SENSORS_ADS7828 is not set | ||
655 | # CONFIG_SENSORS_THMC50 is not set | 683 | # CONFIG_SENSORS_THMC50 is not set |
656 | # CONFIG_SENSORS_VIA686A is not set | 684 | # CONFIG_SENSORS_VIA686A is not set |
657 | # CONFIG_SENSORS_VT1211 is not set | 685 | # CONFIG_SENSORS_VT1211 is not set |
@@ -661,9 +689,11 @@ CONFIG_HWMON=y | |||
661 | # CONFIG_SENSORS_W83792D is not set | 689 | # CONFIG_SENSORS_W83792D is not set |
662 | # CONFIG_SENSORS_W83793 is not set | 690 | # CONFIG_SENSORS_W83793 is not set |
663 | # CONFIG_SENSORS_W83L785TS is not set | 691 | # CONFIG_SENSORS_W83L785TS is not set |
692 | # CONFIG_SENSORS_W83L786NG is not set | ||
664 | # CONFIG_SENSORS_W83627HF is not set | 693 | # CONFIG_SENSORS_W83627HF is not set |
665 | # CONFIG_SENSORS_W83627EHF is not set | 694 | # CONFIG_SENSORS_W83627EHF is not set |
666 | # CONFIG_HWMON_DEBUG_CHIP is not set | 695 | # CONFIG_HWMON_DEBUG_CHIP is not set |
696 | # CONFIG_THERMAL is not set | ||
667 | CONFIG_WATCHDOG=y | 697 | CONFIG_WATCHDOG=y |
668 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 698 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
669 | 699 | ||
@@ -725,23 +755,22 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
725 | CONFIG_USB_ARCH_HAS_OHCI=y | 755 | CONFIG_USB_ARCH_HAS_OHCI=y |
726 | CONFIG_USB_ARCH_HAS_EHCI=y | 756 | CONFIG_USB_ARCH_HAS_EHCI=y |
727 | # CONFIG_USB is not set | 757 | # CONFIG_USB is not set |
728 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | ||
729 | CONFIG_USB_EHCI_FSL=y | ||
730 | 758 | ||
731 | # | 759 | # |
732 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 760 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
733 | # | 761 | # |
734 | |||
735 | # | ||
736 | # USB Gadget Support | ||
737 | # | ||
738 | # CONFIG_USB_GADGET is not set | 762 | # CONFIG_USB_GADGET is not set |
739 | # CONFIG_MMC is not set | 763 | # CONFIG_MMC is not set |
764 | # CONFIG_MEMSTICK is not set | ||
740 | # CONFIG_NEW_LEDS is not set | 765 | # CONFIG_NEW_LEDS is not set |
741 | # CONFIG_INFINIBAND is not set | 766 | # CONFIG_INFINIBAND is not set |
742 | # CONFIG_EDAC is not set | 767 | # CONFIG_EDAC is not set |
743 | CONFIG_RTC_LIB=y | 768 | CONFIG_RTC_LIB=y |
744 | CONFIG_RTC_CLASS=y | 769 | CONFIG_RTC_CLASS=y |
770 | |||
771 | # | ||
772 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
773 | # | ||
745 | CONFIG_RTC_HCTOSYS=y | 774 | CONFIG_RTC_HCTOSYS=y |
746 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 775 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
747 | # CONFIG_RTC_DEBUG is not set | 776 | # CONFIG_RTC_DEBUG is not set |
@@ -768,6 +797,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
768 | # CONFIG_RTC_DRV_PCF8563 is not set | 797 | # CONFIG_RTC_DRV_PCF8563 is not set |
769 | # CONFIG_RTC_DRV_PCF8583 is not set | 798 | # CONFIG_RTC_DRV_PCF8583 is not set |
770 | # CONFIG_RTC_DRV_M41T80 is not set | 799 | # CONFIG_RTC_DRV_M41T80 is not set |
800 | # CONFIG_RTC_DRV_S35390A is not set | ||
771 | 801 | ||
772 | # | 802 | # |
773 | # SPI RTC drivers | 803 | # SPI RTC drivers |
@@ -777,9 +807,10 @@ CONFIG_RTC_DRV_DS1374=y | |||
777 | # Platform RTC drivers | 807 | # Platform RTC drivers |
778 | # | 808 | # |
779 | # CONFIG_RTC_DRV_CMOS is not set | 809 | # CONFIG_RTC_DRV_CMOS is not set |
810 | # CONFIG_RTC_DRV_DS1511 is not set | ||
780 | # CONFIG_RTC_DRV_DS1553 is not set | 811 | # CONFIG_RTC_DRV_DS1553 is not set |
781 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
782 | # CONFIG_RTC_DRV_DS1742 is not set | 812 | # CONFIG_RTC_DRV_DS1742 is not set |
813 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
783 | # CONFIG_RTC_DRV_M48T86 is not set | 814 | # CONFIG_RTC_DRV_M48T86 is not set |
784 | # CONFIG_RTC_DRV_M48T59 is not set | 815 | # CONFIG_RTC_DRV_M48T59 is not set |
785 | # CONFIG_RTC_DRV_V3020 is not set | 816 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -787,6 +818,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
787 | # | 818 | # |
788 | # on-CPU RTC drivers | 819 | # on-CPU RTC drivers |
789 | # | 820 | # |
821 | # CONFIG_DMADEVICES is not set | ||
790 | 822 | ||
791 | # | 823 | # |
792 | # Userspace I/O | 824 | # Userspace I/O |
@@ -812,12 +844,10 @@ CONFIG_FS_MBCACHE=y | |||
812 | # CONFIG_XFS_FS is not set | 844 | # CONFIG_XFS_FS is not set |
813 | # CONFIG_GFS2_FS is not set | 845 | # CONFIG_GFS2_FS is not set |
814 | # CONFIG_OCFS2_FS is not set | 846 | # CONFIG_OCFS2_FS is not set |
815 | # CONFIG_MINIX_FS is not set | 847 | CONFIG_DNOTIFY=y |
816 | # CONFIG_ROMFS_FS is not set | ||
817 | CONFIG_INOTIFY=y | 848 | CONFIG_INOTIFY=y |
818 | CONFIG_INOTIFY_USER=y | 849 | CONFIG_INOTIFY_USER=y |
819 | # CONFIG_QUOTA is not set | 850 | # CONFIG_QUOTA is not set |
820 | CONFIG_DNOTIFY=y | ||
821 | # CONFIG_AUTOFS_FS is not set | 851 | # CONFIG_AUTOFS_FS is not set |
822 | # CONFIG_AUTOFS4_FS is not set | 852 | # CONFIG_AUTOFS4_FS is not set |
823 | # CONFIG_FUSE_FS is not set | 853 | # CONFIG_FUSE_FS is not set |
@@ -859,8 +889,10 @@ CONFIG_TMPFS=y | |||
859 | # CONFIG_EFS_FS is not set | 889 | # CONFIG_EFS_FS is not set |
860 | # CONFIG_CRAMFS is not set | 890 | # CONFIG_CRAMFS is not set |
861 | # CONFIG_VXFS_FS is not set | 891 | # CONFIG_VXFS_FS is not set |
892 | # CONFIG_MINIX_FS is not set | ||
862 | # CONFIG_HPFS_FS is not set | 893 | # CONFIG_HPFS_FS is not set |
863 | # CONFIG_QNX4FS_FS is not set | 894 | # CONFIG_QNX4FS_FS is not set |
895 | # CONFIG_ROMFS_FS is not set | ||
864 | # CONFIG_SYSV_FS is not set | 896 | # CONFIG_SYSV_FS is not set |
865 | # CONFIG_UFS_FS is not set | 897 | # CONFIG_UFS_FS is not set |
866 | CONFIG_NETWORK_FILESYSTEMS=y | 898 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -904,7 +936,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
904 | # CONFIG_SYSV68_PARTITION is not set | 936 | # CONFIG_SYSV68_PARTITION is not set |
905 | # CONFIG_NLS is not set | 937 | # CONFIG_NLS is not set |
906 | # CONFIG_DLM is not set | 938 | # CONFIG_DLM is not set |
907 | # CONFIG_UCC_SLOW is not set | ||
908 | 939 | ||
909 | # | 940 | # |
910 | # Library routines | 941 | # Library routines |
@@ -920,7 +951,6 @@ CONFIG_PLIST=y | |||
920 | CONFIG_HAS_IOMEM=y | 951 | CONFIG_HAS_IOMEM=y |
921 | CONFIG_HAS_IOPORT=y | 952 | CONFIG_HAS_IOPORT=y |
922 | CONFIG_HAS_DMA=y | 953 | CONFIG_HAS_DMA=y |
923 | # CONFIG_INSTRUMENTATION is not set | ||
924 | 954 | ||
925 | # | 955 | # |
926 | # Kernel hacking | 956 | # Kernel hacking |
@@ -934,6 +964,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
934 | # CONFIG_HEADERS_CHECK is not set | 964 | # CONFIG_HEADERS_CHECK is not set |
935 | # CONFIG_DEBUG_KERNEL is not set | 965 | # CONFIG_DEBUG_KERNEL is not set |
936 | # CONFIG_SLUB_DEBUG_ON is not set | 966 | # CONFIG_SLUB_DEBUG_ON is not set |
967 | # CONFIG_SLUB_STATS is not set | ||
937 | # CONFIG_DEBUG_BUGVERBOSE is not set | 968 | # CONFIG_DEBUG_BUGVERBOSE is not set |
938 | # CONFIG_SAMPLES is not set | 969 | # CONFIG_SAMPLES is not set |
939 | # CONFIG_PPC_EARLY_DEBUG is not set | 970 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -947,6 +978,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
947 | CONFIG_CRYPTO=y | 978 | CONFIG_CRYPTO=y |
948 | CONFIG_CRYPTO_ALGAPI=y | 979 | CONFIG_CRYPTO_ALGAPI=y |
949 | CONFIG_CRYPTO_BLKCIPHER=y | 980 | CONFIG_CRYPTO_BLKCIPHER=y |
981 | # CONFIG_CRYPTO_SEQIV is not set | ||
950 | CONFIG_CRYPTO_MANAGER=y | 982 | CONFIG_CRYPTO_MANAGER=y |
951 | # CONFIG_CRYPTO_HMAC is not set | 983 | # CONFIG_CRYPTO_HMAC is not set |
952 | # CONFIG_CRYPTO_XCBC is not set | 984 | # CONFIG_CRYPTO_XCBC is not set |
@@ -964,6 +996,9 @@ CONFIG_CRYPTO_CBC=y | |||
964 | CONFIG_CRYPTO_PCBC=m | 996 | CONFIG_CRYPTO_PCBC=m |
965 | # CONFIG_CRYPTO_LRW is not set | 997 | # CONFIG_CRYPTO_LRW is not set |
966 | # CONFIG_CRYPTO_XTS is not set | 998 | # CONFIG_CRYPTO_XTS is not set |
999 | # CONFIG_CRYPTO_CTR is not set | ||
1000 | # CONFIG_CRYPTO_GCM is not set | ||
1001 | # CONFIG_CRYPTO_CCM is not set | ||
967 | # CONFIG_CRYPTO_CRYPTD is not set | 1002 | # CONFIG_CRYPTO_CRYPTD is not set |
968 | CONFIG_CRYPTO_DES=y | 1003 | CONFIG_CRYPTO_DES=y |
969 | # CONFIG_CRYPTO_FCRYPT is not set | 1004 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -978,11 +1013,14 @@ CONFIG_CRYPTO_DES=y | |||
978 | # CONFIG_CRYPTO_KHAZAD is not set | 1013 | # CONFIG_CRYPTO_KHAZAD is not set |
979 | # CONFIG_CRYPTO_ANUBIS is not set | 1014 | # CONFIG_CRYPTO_ANUBIS is not set |
980 | # CONFIG_CRYPTO_SEED is not set | 1015 | # CONFIG_CRYPTO_SEED is not set |
1016 | # CONFIG_CRYPTO_SALSA20 is not set | ||
981 | # CONFIG_CRYPTO_DEFLATE is not set | 1017 | # CONFIG_CRYPTO_DEFLATE is not set |
982 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1018 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
983 | # CONFIG_CRYPTO_CRC32C is not set | 1019 | # CONFIG_CRYPTO_CRC32C is not set |
984 | # CONFIG_CRYPTO_CAMELLIA is not set | 1020 | # CONFIG_CRYPTO_CAMELLIA is not set |
985 | # CONFIG_CRYPTO_TEST is not set | 1021 | # CONFIG_CRYPTO_TEST is not set |
986 | # CONFIG_CRYPTO_AUTHENC is not set | 1022 | # CONFIG_CRYPTO_AUTHENC is not set |
1023 | # CONFIG_CRYPTO_LZO is not set | ||
987 | CONFIG_CRYPTO_HW=y | 1024 | CONFIG_CRYPTO_HW=y |
1025 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
988 | # CONFIG_PPC_CLOCK is not set | 1026 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc836x_mds_defconfig b/arch/powerpc/configs/mpc836x_mds_defconfig index c44fc56263e2..7c8b06046d5d 100644 --- a/arch/powerpc/configs/mpc836x_mds_defconfig +++ b/arch/powerpc/configs/mpc836x_mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:43 2007 | 4 | # Mon Mar 24 08:48:21 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,15 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -86,11 +91,13 @@ CONFIG_HOTPLUG=y | |||
86 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
87 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
88 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
89 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
90 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
91 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
92 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
93 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
94 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
95 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
96 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -98,6 +105,13 @@ CONFIG_SLUB_DEBUG=y | |||
98 | # CONFIG_SLAB is not set | 105 | # CONFIG_SLAB is not set |
99 | CONFIG_SLUB=y | 106 | CONFIG_SLUB=y |
100 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | CONFIG_HAVE_KPROBES=y | ||
112 | CONFIG_HAVE_KRETPROBES=y | ||
113 | CONFIG_PROC_PAGE_MONITOR=y | ||
114 | CONFIG_SLABINFO=y | ||
101 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
103 | CONFIG_BASE_SMALL=0 | 117 | CONFIG_BASE_SMALL=0 |
@@ -125,6 +139,7 @@ CONFIG_DEFAULT_AS=y | |||
125 | # CONFIG_DEFAULT_CFQ is not set | 139 | # CONFIG_DEFAULT_CFQ is not set |
126 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
127 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | ||
128 | 143 | ||
129 | # | 144 | # |
130 | # Platform support | 145 | # Platform support |
@@ -133,18 +148,22 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
133 | # CONFIG_PPC_82xx is not set | 148 | # CONFIG_PPC_82xx is not set |
134 | CONFIG_PPC_83xx=y | 149 | CONFIG_PPC_83xx=y |
135 | # CONFIG_PPC_86xx is not set | 150 | # CONFIG_PPC_86xx is not set |
136 | # CONFIG_PPC_MPC52xx is not set | 151 | # CONFIG_PPC_MPC512x is not set |
137 | # CONFIG_PPC_MPC5200 is not set | 152 | # CONFIG_PPC_MPC5121 is not set |
138 | # CONFIG_PPC_CELL is not set | 153 | # CONFIG_PPC_CELL is not set |
139 | # CONFIG_PPC_CELL_NATIVE is not set | 154 | # CONFIG_PPC_CELL_NATIVE is not set |
140 | # CONFIG_PQ2ADS is not set | 155 | # CONFIG_PQ2ADS is not set |
141 | # CONFIG_MPC8313_RDB is not set | 156 | CONFIG_MPC83xx=y |
157 | # CONFIG_MPC831x_RDB is not set | ||
142 | # CONFIG_MPC832x_MDS is not set | 158 | # CONFIG_MPC832x_MDS is not set |
143 | # CONFIG_MPC832x_RDB is not set | 159 | # CONFIG_MPC832x_RDB is not set |
144 | # CONFIG_MPC834x_MDS is not set | 160 | # CONFIG_MPC834x_MDS is not set |
145 | # CONFIG_MPC834x_ITX is not set | 161 | # CONFIG_MPC834x_ITX is not set |
146 | CONFIG_MPC836x_MDS=y | 162 | CONFIG_MPC836x_MDS=y |
147 | CONFIG_PPC_MPC836x=y | 163 | # CONFIG_MPC837x_MDS is not set |
164 | # CONFIG_MPC837x_RDB is not set | ||
165 | # CONFIG_SBC834x is not set | ||
166 | CONFIG_IPIC=y | ||
148 | # CONFIG_MPIC is not set | 167 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 168 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 169 | # CONFIG_PPC_I8259 is not set |
@@ -156,7 +175,6 @@ CONFIG_PPC_MPC836x=y | |||
156 | # CONFIG_GENERIC_IOMAP is not set | 175 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 176 | # CONFIG_CPU_FREQ is not set |
158 | CONFIG_QUICC_ENGINE=y | 177 | CONFIG_QUICC_ENGINE=y |
159 | # CONFIG_CPM2 is not set | ||
160 | # CONFIG_FSL_ULI1575 is not set | 178 | # CONFIG_FSL_ULI1575 is not set |
161 | 179 | ||
162 | # | 180 | # |
@@ -172,12 +190,16 @@ CONFIG_HZ_250=y | |||
172 | # CONFIG_HZ_300 is not set | 190 | # CONFIG_HZ_300 is not set |
173 | # CONFIG_HZ_1000 is not set | 191 | # CONFIG_HZ_1000 is not set |
174 | CONFIG_HZ=250 | 192 | CONFIG_HZ=250 |
193 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
178 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
179 | # CONFIG_BINFMT_MISC is not set | 198 | # CONFIG_BINFMT_MISC is not set |
199 | # CONFIG_IOMMU_HELPER is not set | ||
180 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
181 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
182 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
183 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -196,11 +218,7 @@ CONFIG_VIRT_TO_BUS=y | |||
196 | CONFIG_PROC_DEVICETREE=y | 218 | CONFIG_PROC_DEVICETREE=y |
197 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
198 | # CONFIG_PM is not set | 220 | # CONFIG_PM is not set |
199 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
200 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
201 | CONFIG_SECCOMP=y | 221 | CONFIG_SECCOMP=y |
202 | CONFIG_WANT_DEVICE_TREE=y | ||
203 | CONFIG_DEVICE_TREE="" | ||
204 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
205 | 223 | ||
206 | # | 224 | # |
@@ -249,6 +267,7 @@ CONFIG_XFRM=y | |||
249 | # CONFIG_XFRM_USER is not set | 267 | # CONFIG_XFRM_USER is not set |
250 | # CONFIG_XFRM_SUB_POLICY is not set | 268 | # CONFIG_XFRM_SUB_POLICY is not set |
251 | # CONFIG_XFRM_MIGRATE is not set | 269 | # CONFIG_XFRM_MIGRATE is not set |
270 | # CONFIG_XFRM_STATISTICS is not set | ||
252 | # CONFIG_NET_KEY is not set | 271 | # CONFIG_NET_KEY is not set |
253 | CONFIG_INET=y | 272 | CONFIG_INET=y |
254 | CONFIG_IP_MULTICAST=y | 273 | CONFIG_IP_MULTICAST=y |
@@ -304,6 +323,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
304 | # | 323 | # |
305 | # CONFIG_NET_PKTGEN is not set | 324 | # CONFIG_NET_PKTGEN is not set |
306 | # CONFIG_HAMRADIO is not set | 325 | # CONFIG_HAMRADIO is not set |
326 | # CONFIG_CAN is not set | ||
307 | # CONFIG_IRDA is not set | 327 | # CONFIG_IRDA is not set |
308 | # CONFIG_BT is not set | 328 | # CONFIG_BT is not set |
309 | # CONFIG_AF_RXRPC is not set | 329 | # CONFIG_AF_RXRPC is not set |
@@ -348,7 +368,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
348 | CONFIG_BLK_DEV_RAM=y | 368 | CONFIG_BLK_DEV_RAM=y |
349 | CONFIG_BLK_DEV_RAM_COUNT=16 | 369 | CONFIG_BLK_DEV_RAM_COUNT=16 |
350 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 370 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
351 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 371 | # CONFIG_BLK_DEV_XIP is not set |
352 | # CONFIG_CDROM_PKTCDVD is not set | 372 | # CONFIG_CDROM_PKTCDVD is not set |
353 | # CONFIG_ATA_OVER_ETH is not set | 373 | # CONFIG_ATA_OVER_ETH is not set |
354 | CONFIG_MISC_DEVICES=y | 374 | CONFIG_MISC_DEVICES=y |
@@ -356,6 +376,8 @@ CONFIG_MISC_DEVICES=y | |||
356 | # CONFIG_EEPROM_93CX6 is not set | 376 | # CONFIG_EEPROM_93CX6 is not set |
357 | # CONFIG_SGI_IOC4 is not set | 377 | # CONFIG_SGI_IOC4 is not set |
358 | # CONFIG_TIFM_CORE is not set | 378 | # CONFIG_TIFM_CORE is not set |
379 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
380 | CONFIG_HAVE_IDE=y | ||
359 | # CONFIG_IDE is not set | 381 | # CONFIG_IDE is not set |
360 | 382 | ||
361 | # | 383 | # |
@@ -420,6 +442,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
420 | # CONFIG_SCSI_IPS is not set | 442 | # CONFIG_SCSI_IPS is not set |
421 | # CONFIG_SCSI_INITIO is not set | 443 | # CONFIG_SCSI_INITIO is not set |
422 | # CONFIG_SCSI_INIA100 is not set | 444 | # CONFIG_SCSI_INIA100 is not set |
445 | # CONFIG_SCSI_MVSAS is not set | ||
423 | # CONFIG_SCSI_STEX is not set | 446 | # CONFIG_SCSI_STEX is not set |
424 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 447 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
425 | # CONFIG_SCSI_QLOGIC_1280 is not set | 448 | # CONFIG_SCSI_QLOGIC_1280 is not set |
@@ -450,7 +473,6 @@ CONFIG_NETDEVICES=y | |||
450 | # CONFIG_EQUALIZER is not set | 473 | # CONFIG_EQUALIZER is not set |
451 | # CONFIG_TUN is not set | 474 | # CONFIG_TUN is not set |
452 | # CONFIG_VETH is not set | 475 | # CONFIG_VETH is not set |
453 | # CONFIG_IP1000 is not set | ||
454 | # CONFIG_ARCNET is not set | 476 | # CONFIG_ARCNET is not set |
455 | CONFIG_PHYLIB=y | 477 | CONFIG_PHYLIB=y |
456 | 478 | ||
@@ -466,6 +488,7 @@ CONFIG_MARVELL_PHY=y | |||
466 | # CONFIG_SMSC_PHY is not set | 488 | # CONFIG_SMSC_PHY is not set |
467 | # CONFIG_BROADCOM_PHY is not set | 489 | # CONFIG_BROADCOM_PHY is not set |
468 | # CONFIG_ICPLUS_PHY is not set | 490 | # CONFIG_ICPLUS_PHY is not set |
491 | # CONFIG_REALTEK_PHY is not set | ||
469 | # CONFIG_FIXED_PHY is not set | 492 | # CONFIG_FIXED_PHY is not set |
470 | # CONFIG_MDIO_BITBANG is not set | 493 | # CONFIG_MDIO_BITBANG is not set |
471 | CONFIG_NET_ETHERNET=y | 494 | CONFIG_NET_ETHERNET=y |
@@ -487,6 +510,9 @@ CONFIG_NETDEV_1000=y | |||
487 | # CONFIG_DL2K is not set | 510 | # CONFIG_DL2K is not set |
488 | # CONFIG_E1000 is not set | 511 | # CONFIG_E1000 is not set |
489 | # CONFIG_E1000E is not set | 512 | # CONFIG_E1000E is not set |
513 | # CONFIG_E1000E_ENABLED is not set | ||
514 | # CONFIG_IP1000 is not set | ||
515 | # CONFIG_IGB is not set | ||
490 | # CONFIG_NS83820 is not set | 516 | # CONFIG_NS83820 is not set |
491 | # CONFIG_HAMACHI is not set | 517 | # CONFIG_HAMACHI is not set |
492 | # CONFIG_YELLOWFIN is not set | 518 | # CONFIG_YELLOWFIN is not set |
@@ -517,6 +543,7 @@ CONFIG_NETDEV_10000=y | |||
517 | # CONFIG_NIU is not set | 543 | # CONFIG_NIU is not set |
518 | # CONFIG_MLX4_CORE is not set | 544 | # CONFIG_MLX4_CORE is not set |
519 | # CONFIG_TEHUTI is not set | 545 | # CONFIG_TEHUTI is not set |
546 | # CONFIG_BNX2X is not set | ||
520 | # CONFIG_TR is not set | 547 | # CONFIG_TR is not set |
521 | 548 | ||
522 | # | 549 | # |
@@ -530,7 +557,6 @@ CONFIG_NETDEV_10000=y | |||
530 | # CONFIG_PPP is not set | 557 | # CONFIG_PPP is not set |
531 | # CONFIG_SLIP is not set | 558 | # CONFIG_SLIP is not set |
532 | # CONFIG_NET_FC is not set | 559 | # CONFIG_NET_FC is not set |
533 | # CONFIG_SHAPER is not set | ||
534 | # CONFIG_NETCONSOLE is not set | 560 | # CONFIG_NETCONSOLE is not set |
535 | # CONFIG_NETPOLL is not set | 561 | # CONFIG_NETPOLL is not set |
536 | # CONFIG_NET_POLL_CONTROLLER is not set | 562 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -573,6 +599,7 @@ CONFIG_INPUT=y | |||
573 | # | 599 | # |
574 | # CONFIG_VT is not set | 600 | # CONFIG_VT is not set |
575 | # CONFIG_SERIAL_NONSTANDARD is not set | 601 | # CONFIG_SERIAL_NONSTANDARD is not set |
602 | # CONFIG_NOZOMI is not set | ||
576 | 603 | ||
577 | # | 604 | # |
578 | # Serial drivers | 605 | # Serial drivers |
@@ -592,6 +619,7 @@ CONFIG_SERIAL_CORE=y | |||
592 | CONFIG_SERIAL_CORE_CONSOLE=y | 619 | CONFIG_SERIAL_CORE_CONSOLE=y |
593 | # CONFIG_SERIAL_JSM is not set | 620 | # CONFIG_SERIAL_JSM is not set |
594 | # CONFIG_SERIAL_OF_PLATFORM is not set | 621 | # CONFIG_SERIAL_OF_PLATFORM is not set |
622 | # CONFIG_SERIAL_QE is not set | ||
595 | CONFIG_UNIX98_PTYS=y | 623 | CONFIG_UNIX98_PTYS=y |
596 | CONFIG_LEGACY_PTYS=y | 624 | CONFIG_LEGACY_PTYS=y |
597 | CONFIG_LEGACY_PTY_COUNT=256 | 625 | CONFIG_LEGACY_PTY_COUNT=256 |
@@ -646,14 +674,12 @@ CONFIG_I2C_MPC=y | |||
646 | # | 674 | # |
647 | # Miscellaneous I2C Chip support | 675 | # Miscellaneous I2C Chip support |
648 | # | 676 | # |
649 | # CONFIG_SENSORS_DS1337 is not set | ||
650 | # CONFIG_SENSORS_DS1374 is not set | ||
651 | # CONFIG_DS1682 is not set | 677 | # CONFIG_DS1682 is not set |
652 | # CONFIG_SENSORS_EEPROM is not set | 678 | # CONFIG_SENSORS_EEPROM is not set |
653 | # CONFIG_SENSORS_PCF8574 is not set | 679 | # CONFIG_SENSORS_PCF8574 is not set |
654 | # CONFIG_SENSORS_PCA9539 is not set | 680 | # CONFIG_PCF8575 is not set |
655 | # CONFIG_SENSORS_PCF8591 is not set | 681 | # CONFIG_SENSORS_PCF8591 is not set |
656 | # CONFIG_SENSORS_M41T00 is not set | 682 | # CONFIG_TPS65010 is not set |
657 | # CONFIG_SENSORS_MAX6875 is not set | 683 | # CONFIG_SENSORS_MAX6875 is not set |
658 | # CONFIG_SENSORS_TSL2550 is not set | 684 | # CONFIG_SENSORS_TSL2550 is not set |
659 | # CONFIG_I2C_DEBUG_CORE is not set | 685 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -678,6 +704,7 @@ CONFIG_HWMON=y | |||
678 | # CONFIG_SENSORS_ADM1031 is not set | 704 | # CONFIG_SENSORS_ADM1031 is not set |
679 | # CONFIG_SENSORS_ADM9240 is not set | 705 | # CONFIG_SENSORS_ADM9240 is not set |
680 | # CONFIG_SENSORS_ADT7470 is not set | 706 | # CONFIG_SENSORS_ADT7470 is not set |
707 | # CONFIG_SENSORS_ADT7473 is not set | ||
681 | # CONFIG_SENSORS_ATXP1 is not set | 708 | # CONFIG_SENSORS_ATXP1 is not set |
682 | # CONFIG_SENSORS_DS1621 is not set | 709 | # CONFIG_SENSORS_DS1621 is not set |
683 | # CONFIG_SENSORS_I5K_AMB is not set | 710 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -707,6 +734,7 @@ CONFIG_HWMON=y | |||
707 | # CONFIG_SENSORS_SMSC47M1 is not set | 734 | # CONFIG_SENSORS_SMSC47M1 is not set |
708 | # CONFIG_SENSORS_SMSC47M192 is not set | 735 | # CONFIG_SENSORS_SMSC47M192 is not set |
709 | # CONFIG_SENSORS_SMSC47B397 is not set | 736 | # CONFIG_SENSORS_SMSC47B397 is not set |
737 | # CONFIG_SENSORS_ADS7828 is not set | ||
710 | # CONFIG_SENSORS_THMC50 is not set | 738 | # CONFIG_SENSORS_THMC50 is not set |
711 | # CONFIG_SENSORS_VIA686A is not set | 739 | # CONFIG_SENSORS_VIA686A is not set |
712 | # CONFIG_SENSORS_VT1211 is not set | 740 | # CONFIG_SENSORS_VT1211 is not set |
@@ -716,9 +744,11 @@ CONFIG_HWMON=y | |||
716 | # CONFIG_SENSORS_W83792D is not set | 744 | # CONFIG_SENSORS_W83792D is not set |
717 | # CONFIG_SENSORS_W83793 is not set | 745 | # CONFIG_SENSORS_W83793 is not set |
718 | # CONFIG_SENSORS_W83L785TS is not set | 746 | # CONFIG_SENSORS_W83L785TS is not set |
747 | # CONFIG_SENSORS_W83L786NG is not set | ||
719 | # CONFIG_SENSORS_W83627HF is not set | 748 | # CONFIG_SENSORS_W83627HF is not set |
720 | # CONFIG_SENSORS_W83627EHF is not set | 749 | # CONFIG_SENSORS_W83627EHF is not set |
721 | # CONFIG_HWMON_DEBUG_CHIP is not set | 750 | # CONFIG_HWMON_DEBUG_CHIP is not set |
751 | # CONFIG_THERMAL is not set | ||
722 | CONFIG_WATCHDOG=y | 752 | CONFIG_WATCHDOG=y |
723 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 753 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
724 | 754 | ||
@@ -784,17 +814,18 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
784 | # | 814 | # |
785 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 815 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
786 | # | 816 | # |
787 | |||
788 | # | ||
789 | # USB Gadget Support | ||
790 | # | ||
791 | # CONFIG_USB_GADGET is not set | 817 | # CONFIG_USB_GADGET is not set |
792 | # CONFIG_MMC is not set | 818 | # CONFIG_MMC is not set |
819 | # CONFIG_MEMSTICK is not set | ||
793 | # CONFIG_NEW_LEDS is not set | 820 | # CONFIG_NEW_LEDS is not set |
794 | # CONFIG_INFINIBAND is not set | 821 | # CONFIG_INFINIBAND is not set |
795 | # CONFIG_EDAC is not set | 822 | # CONFIG_EDAC is not set |
796 | CONFIG_RTC_LIB=y | 823 | CONFIG_RTC_LIB=y |
797 | CONFIG_RTC_CLASS=y | 824 | CONFIG_RTC_CLASS=y |
825 | |||
826 | # | ||
827 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
828 | # | ||
798 | CONFIG_RTC_HCTOSYS=y | 829 | CONFIG_RTC_HCTOSYS=y |
799 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 830 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
800 | # CONFIG_RTC_DEBUG is not set | 831 | # CONFIG_RTC_DEBUG is not set |
@@ -821,6 +852,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
821 | # CONFIG_RTC_DRV_PCF8563 is not set | 852 | # CONFIG_RTC_DRV_PCF8563 is not set |
822 | # CONFIG_RTC_DRV_PCF8583 is not set | 853 | # CONFIG_RTC_DRV_PCF8583 is not set |
823 | # CONFIG_RTC_DRV_M41T80 is not set | 854 | # CONFIG_RTC_DRV_M41T80 is not set |
855 | # CONFIG_RTC_DRV_S35390A is not set | ||
824 | 856 | ||
825 | # | 857 | # |
826 | # SPI RTC drivers | 858 | # SPI RTC drivers |
@@ -830,9 +862,10 @@ CONFIG_RTC_DRV_DS1374=y | |||
830 | # Platform RTC drivers | 862 | # Platform RTC drivers |
831 | # | 863 | # |
832 | # CONFIG_RTC_DRV_CMOS is not set | 864 | # CONFIG_RTC_DRV_CMOS is not set |
865 | # CONFIG_RTC_DRV_DS1511 is not set | ||
833 | # CONFIG_RTC_DRV_DS1553 is not set | 866 | # CONFIG_RTC_DRV_DS1553 is not set |
834 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
835 | # CONFIG_RTC_DRV_DS1742 is not set | 867 | # CONFIG_RTC_DRV_DS1742 is not set |
868 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
836 | # CONFIG_RTC_DRV_M48T86 is not set | 869 | # CONFIG_RTC_DRV_M48T86 is not set |
837 | # CONFIG_RTC_DRV_M48T59 is not set | 870 | # CONFIG_RTC_DRV_M48T59 is not set |
838 | # CONFIG_RTC_DRV_V3020 is not set | 871 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -840,6 +873,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
840 | # | 873 | # |
841 | # on-CPU RTC drivers | 874 | # on-CPU RTC drivers |
842 | # | 875 | # |
876 | # CONFIG_DMADEVICES is not set | ||
843 | 877 | ||
844 | # | 878 | # |
845 | # Userspace I/O | 879 | # Userspace I/O |
@@ -865,12 +899,10 @@ CONFIG_FS_MBCACHE=y | |||
865 | # CONFIG_XFS_FS is not set | 899 | # CONFIG_XFS_FS is not set |
866 | # CONFIG_GFS2_FS is not set | 900 | # CONFIG_GFS2_FS is not set |
867 | # CONFIG_OCFS2_FS is not set | 901 | # CONFIG_OCFS2_FS is not set |
868 | # CONFIG_MINIX_FS is not set | 902 | CONFIG_DNOTIFY=y |
869 | # CONFIG_ROMFS_FS is not set | ||
870 | CONFIG_INOTIFY=y | 903 | CONFIG_INOTIFY=y |
871 | CONFIG_INOTIFY_USER=y | 904 | CONFIG_INOTIFY_USER=y |
872 | # CONFIG_QUOTA is not set | 905 | # CONFIG_QUOTA is not set |
873 | CONFIG_DNOTIFY=y | ||
874 | # CONFIG_AUTOFS_FS is not set | 906 | # CONFIG_AUTOFS_FS is not set |
875 | # CONFIG_AUTOFS4_FS is not set | 907 | # CONFIG_AUTOFS4_FS is not set |
876 | # CONFIG_FUSE_FS is not set | 908 | # CONFIG_FUSE_FS is not set |
@@ -912,8 +944,10 @@ CONFIG_TMPFS=y | |||
912 | # CONFIG_EFS_FS is not set | 944 | # CONFIG_EFS_FS is not set |
913 | # CONFIG_CRAMFS is not set | 945 | # CONFIG_CRAMFS is not set |
914 | # CONFIG_VXFS_FS is not set | 946 | # CONFIG_VXFS_FS is not set |
947 | # CONFIG_MINIX_FS is not set | ||
915 | # CONFIG_HPFS_FS is not set | 948 | # CONFIG_HPFS_FS is not set |
916 | # CONFIG_QNX4FS_FS is not set | 949 | # CONFIG_QNX4FS_FS is not set |
950 | # CONFIG_ROMFS_FS is not set | ||
917 | # CONFIG_SYSV_FS is not set | 951 | # CONFIG_SYSV_FS is not set |
918 | # CONFIG_UFS_FS is not set | 952 | # CONFIG_UFS_FS is not set |
919 | CONFIG_NETWORK_FILESYSTEMS=y | 953 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -957,7 +991,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
957 | # CONFIG_SYSV68_PARTITION is not set | 991 | # CONFIG_SYSV68_PARTITION is not set |
958 | # CONFIG_NLS is not set | 992 | # CONFIG_NLS is not set |
959 | # CONFIG_DLM is not set | 993 | # CONFIG_DLM is not set |
960 | # CONFIG_UCC_SLOW is not set | ||
961 | CONFIG_UCC_FAST=y | 994 | CONFIG_UCC_FAST=y |
962 | CONFIG_UCC=y | 995 | CONFIG_UCC=y |
963 | 996 | ||
@@ -975,7 +1008,6 @@ CONFIG_PLIST=y | |||
975 | CONFIG_HAS_IOMEM=y | 1008 | CONFIG_HAS_IOMEM=y |
976 | CONFIG_HAS_IOPORT=y | 1009 | CONFIG_HAS_IOPORT=y |
977 | CONFIG_HAS_DMA=y | 1010 | CONFIG_HAS_DMA=y |
978 | # CONFIG_INSTRUMENTATION is not set | ||
979 | 1011 | ||
980 | # | 1012 | # |
981 | # Kernel hacking | 1013 | # Kernel hacking |
@@ -989,6 +1021,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
989 | # CONFIG_HEADERS_CHECK is not set | 1021 | # CONFIG_HEADERS_CHECK is not set |
990 | # CONFIG_DEBUG_KERNEL is not set | 1022 | # CONFIG_DEBUG_KERNEL is not set |
991 | # CONFIG_SLUB_DEBUG_ON is not set | 1023 | # CONFIG_SLUB_DEBUG_ON is not set |
1024 | # CONFIG_SLUB_STATS is not set | ||
992 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1025 | # CONFIG_DEBUG_BUGVERBOSE is not set |
993 | # CONFIG_SAMPLES is not set | 1026 | # CONFIG_SAMPLES is not set |
994 | # CONFIG_PPC_EARLY_DEBUG is not set | 1027 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1002,6 +1035,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1002 | CONFIG_CRYPTO=y | 1035 | CONFIG_CRYPTO=y |
1003 | CONFIG_CRYPTO_ALGAPI=y | 1036 | CONFIG_CRYPTO_ALGAPI=y |
1004 | CONFIG_CRYPTO_BLKCIPHER=y | 1037 | CONFIG_CRYPTO_BLKCIPHER=y |
1038 | # CONFIG_CRYPTO_SEQIV is not set | ||
1005 | CONFIG_CRYPTO_MANAGER=y | 1039 | CONFIG_CRYPTO_MANAGER=y |
1006 | # CONFIG_CRYPTO_HMAC is not set | 1040 | # CONFIG_CRYPTO_HMAC is not set |
1007 | # CONFIG_CRYPTO_XCBC is not set | 1041 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1019,6 +1053,9 @@ CONFIG_CRYPTO_CBC=y | |||
1019 | CONFIG_CRYPTO_PCBC=m | 1053 | CONFIG_CRYPTO_PCBC=m |
1020 | # CONFIG_CRYPTO_LRW is not set | 1054 | # CONFIG_CRYPTO_LRW is not set |
1021 | # CONFIG_CRYPTO_XTS is not set | 1055 | # CONFIG_CRYPTO_XTS is not set |
1056 | # CONFIG_CRYPTO_CTR is not set | ||
1057 | # CONFIG_CRYPTO_GCM is not set | ||
1058 | # CONFIG_CRYPTO_CCM is not set | ||
1022 | # CONFIG_CRYPTO_CRYPTD is not set | 1059 | # CONFIG_CRYPTO_CRYPTD is not set |
1023 | CONFIG_CRYPTO_DES=y | 1060 | CONFIG_CRYPTO_DES=y |
1024 | # CONFIG_CRYPTO_FCRYPT is not set | 1061 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1033,12 +1070,15 @@ CONFIG_CRYPTO_DES=y | |||
1033 | # CONFIG_CRYPTO_KHAZAD is not set | 1070 | # CONFIG_CRYPTO_KHAZAD is not set |
1034 | # CONFIG_CRYPTO_ANUBIS is not set | 1071 | # CONFIG_CRYPTO_ANUBIS is not set |
1035 | # CONFIG_CRYPTO_SEED is not set | 1072 | # CONFIG_CRYPTO_SEED is not set |
1073 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1036 | # CONFIG_CRYPTO_DEFLATE is not set | 1074 | # CONFIG_CRYPTO_DEFLATE is not set |
1037 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1075 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1038 | # CONFIG_CRYPTO_CRC32C is not set | 1076 | # CONFIG_CRYPTO_CRC32C is not set |
1039 | # CONFIG_CRYPTO_CAMELLIA is not set | 1077 | # CONFIG_CRYPTO_CAMELLIA is not set |
1040 | # CONFIG_CRYPTO_TEST is not set | 1078 | # CONFIG_CRYPTO_TEST is not set |
1041 | # CONFIG_CRYPTO_AUTHENC is not set | 1079 | # CONFIG_CRYPTO_AUTHENC is not set |
1080 | # CONFIG_CRYPTO_LZO is not set | ||
1042 | CONFIG_CRYPTO_HW=y | 1081 | CONFIG_CRYPTO_HW=y |
1082 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1043 | # CONFIG_PPC_CLOCK is not set | 1083 | # CONFIG_PPC_CLOCK is not set |
1044 | CONFIG_PPC_LIB_RHEAP=y | 1084 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc837x_mds_defconfig b/arch/powerpc/configs/mpc837x_mds_defconfig index 4f49aee5da66..f377cde785b0 100644 --- a/arch/powerpc/configs/mpc837x_mds_defconfig +++ b/arch/powerpc/configs/mpc837x_mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.23 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Wed Oct 10 16:31:39 2007 | 4 | # Mon Mar 24 08:48:23 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,16 +14,22 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
22 | # CONFIG_SMP is not set | 22 | # CONFIG_SMP is not set |
23 | CONFIG_PPC32=y | 23 | CONFIG_PPC32=y |
24 | CONFIG_WORD_SIZE=32 | ||
24 | CONFIG_PPC_MERGE=y | 25 | CONFIG_PPC_MERGE=y |
25 | CONFIG_MMU=y | 26 | CONFIG_MMU=y |
27 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
28 | CONFIG_GENERIC_TIME=y | ||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | ||
30 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
26 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
27 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
28 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
29 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -61,12 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
61 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
62 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
63 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
64 | # CONFIG_USER_NS is not set | ||
65 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
66 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
67 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
73 | # CONFIG_CGROUPS is not set | ||
74 | CONFIG_GROUP_SCHED=y | ||
75 | CONFIG_FAIR_GROUP_SCHED=y | ||
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
68 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
69 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
70 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
71 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
72 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -79,17 +92,27 @@ CONFIG_HOTPLUG=y | |||
79 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
80 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
81 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
82 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
83 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
84 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
85 | # CONFIG_EPOLL is not set | 99 | # CONFIG_EPOLL is not set |
86 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
87 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
88 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
89 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
90 | CONFIG_SLAB=y | 105 | CONFIG_SLAB=y |
91 | # CONFIG_SLUB is not set | 106 | # CONFIG_SLUB is not set |
92 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | # CONFIG_KPROBES is not set | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
115 | CONFIG_SLABINFO=y | ||
93 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
94 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
95 | CONFIG_BASE_SMALL=0 | 118 | CONFIG_BASE_SMALL=0 |
@@ -117,28 +140,32 @@ CONFIG_DEFAULT_AS=y | |||
117 | # CONFIG_DEFAULT_CFQ is not set | 140 | # CONFIG_DEFAULT_CFQ is not set |
118 | # CONFIG_DEFAULT_NOOP is not set | 141 | # CONFIG_DEFAULT_NOOP is not set |
119 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 142 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
143 | CONFIG_CLASSIC_RCU=y | ||
120 | 144 | ||
121 | # | 145 | # |
122 | # Platform support | 146 | # Platform support |
123 | # | 147 | # |
124 | # CONFIG_PPC_MULTIPLATFORM is not set | 148 | # CONFIG_PPC_MULTIPLATFORM is not set |
125 | # CONFIG_EMBEDDED6xx is not set | ||
126 | # CONFIG_PPC_82xx is not set | 149 | # CONFIG_PPC_82xx is not set |
127 | CONFIG_PPC_83xx=y | 150 | CONFIG_PPC_83xx=y |
128 | # CONFIG_PPC_86xx is not set | 151 | # CONFIG_PPC_86xx is not set |
129 | # CONFIG_PPC_MPC52xx is not set | 152 | # CONFIG_PPC_MPC512x is not set |
130 | # CONFIG_PPC_MPC5200 is not set | 153 | # CONFIG_PPC_MPC5121 is not set |
131 | # CONFIG_PPC_CELL is not set | 154 | # CONFIG_PPC_CELL is not set |
132 | # CONFIG_PPC_CELL_NATIVE is not set | 155 | # CONFIG_PPC_CELL_NATIVE is not set |
133 | # CONFIG_PQ2ADS is not set | 156 | # CONFIG_PQ2ADS is not set |
134 | # CONFIG_MPC8313_RDB is not set | 157 | CONFIG_MPC83xx=y |
158 | # CONFIG_MPC831x_RDB is not set | ||
135 | # CONFIG_MPC832x_MDS is not set | 159 | # CONFIG_MPC832x_MDS is not set |
136 | # CONFIG_MPC832x_RDB is not set | 160 | # CONFIG_MPC832x_RDB is not set |
137 | # CONFIG_MPC834x_MDS is not set | 161 | # CONFIG_MPC834x_MDS is not set |
138 | # CONFIG_MPC834x_ITX is not set | 162 | # CONFIG_MPC834x_ITX is not set |
139 | # CONFIG_MPC836x_MDS is not set | 163 | # CONFIG_MPC836x_MDS is not set |
140 | CONFIG_MPC837x_MDS=y | 164 | CONFIG_MPC837x_MDS=y |
165 | # CONFIG_MPC837x_RDB is not set | ||
166 | # CONFIG_SBC834x is not set | ||
141 | CONFIG_PPC_MPC837x=y | 167 | CONFIG_PPC_MPC837x=y |
168 | CONFIG_IPIC=y | ||
142 | # CONFIG_MPIC is not set | 169 | # CONFIG_MPIC is not set |
143 | # CONFIG_MPIC_WEIRD is not set | 170 | # CONFIG_MPIC_WEIRD is not set |
144 | # CONFIG_PPC_I8259 is not set | 171 | # CONFIG_PPC_I8259 is not set |
@@ -149,25 +176,31 @@ CONFIG_PPC_MPC837x=y | |||
149 | # CONFIG_PPC_INDIRECT_IO is not set | 176 | # CONFIG_PPC_INDIRECT_IO is not set |
150 | # CONFIG_GENERIC_IOMAP is not set | 177 | # CONFIG_GENERIC_IOMAP is not set |
151 | # CONFIG_CPU_FREQ is not set | 178 | # CONFIG_CPU_FREQ is not set |
152 | # CONFIG_CPM2 is not set | ||
153 | # CONFIG_FSL_ULI1575 is not set | 179 | # CONFIG_FSL_ULI1575 is not set |
154 | CONFIG_FSL_SERDES=y | ||
155 | 180 | ||
156 | # | 181 | # |
157 | # Kernel options | 182 | # Kernel options |
158 | # | 183 | # |
159 | # CONFIG_HIGHMEM is not set | 184 | # CONFIG_HIGHMEM is not set |
185 | # CONFIG_TICK_ONESHOT is not set | ||
186 | # CONFIG_NO_HZ is not set | ||
187 | # CONFIG_HIGH_RES_TIMERS is not set | ||
188 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
160 | # CONFIG_HZ_100 is not set | 189 | # CONFIG_HZ_100 is not set |
161 | CONFIG_HZ_250=y | 190 | CONFIG_HZ_250=y |
162 | # CONFIG_HZ_300 is not set | 191 | # CONFIG_HZ_300 is not set |
163 | # CONFIG_HZ_1000 is not set | 192 | # CONFIG_HZ_1000 is not set |
164 | CONFIG_HZ=250 | 193 | CONFIG_HZ=250 |
194 | # CONFIG_SCHED_HRTICK is not set | ||
165 | CONFIG_PREEMPT_NONE=y | 195 | CONFIG_PREEMPT_NONE=y |
166 | # CONFIG_PREEMPT_VOLUNTARY is not set | 196 | # CONFIG_PREEMPT_VOLUNTARY is not set |
167 | # CONFIG_PREEMPT is not set | 197 | # CONFIG_PREEMPT is not set |
168 | CONFIG_BINFMT_ELF=y | 198 | CONFIG_BINFMT_ELF=y |
169 | # CONFIG_BINFMT_MISC is not set | 199 | # CONFIG_BINFMT_MISC is not set |
200 | # CONFIG_IOMMU_HELPER is not set | ||
170 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 201 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
202 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
203 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
171 | CONFIG_ARCH_FLATMEM_ENABLE=y | 204 | CONFIG_ARCH_FLATMEM_ENABLE=y |
172 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 205 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
173 | CONFIG_SELECT_MEMORY_MODEL=y | 206 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -177,6 +210,7 @@ CONFIG_FLATMEM_MANUAL=y | |||
177 | CONFIG_FLATMEM=y | 210 | CONFIG_FLATMEM=y |
178 | CONFIG_FLAT_NODE_MEM_MAP=y | 211 | CONFIG_FLAT_NODE_MEM_MAP=y |
179 | # CONFIG_SPARSEMEM_STATIC is not set | 212 | # CONFIG_SPARSEMEM_STATIC is not set |
213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
180 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 214 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
181 | # CONFIG_RESOURCES_64BIT is not set | 215 | # CONFIG_RESOURCES_64BIT is not set |
182 | CONFIG_ZONE_DMA_FLAG=1 | 216 | CONFIG_ZONE_DMA_FLAG=1 |
@@ -185,11 +219,7 @@ CONFIG_VIRT_TO_BUS=y | |||
185 | CONFIG_PROC_DEVICETREE=y | 219 | CONFIG_PROC_DEVICETREE=y |
186 | # CONFIG_CMDLINE_BOOL is not set | 220 | # CONFIG_CMDLINE_BOOL is not set |
187 | # CONFIG_PM is not set | 221 | # CONFIG_PM is not set |
188 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
189 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
190 | CONFIG_SECCOMP=y | 222 | CONFIG_SECCOMP=y |
191 | CONFIG_WANT_DEVICE_TREE=y | ||
192 | CONFIG_DEVICE_TREE="" | ||
193 | CONFIG_ISA_DMA_API=y | 223 | CONFIG_ISA_DMA_API=y |
194 | 224 | ||
195 | # | 225 | # |
@@ -203,10 +233,6 @@ CONFIG_FSL_SOC=y | |||
203 | # CONFIG_PCI_DOMAINS is not set | 233 | # CONFIG_PCI_DOMAINS is not set |
204 | # CONFIG_PCI_SYSCALL is not set | 234 | # CONFIG_PCI_SYSCALL is not set |
205 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 235 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
206 | |||
207 | # | ||
208 | # PCCARD (PCMCIA/CardBus) support | ||
209 | # | ||
210 | # CONFIG_PCCARD is not set | 236 | # CONFIG_PCCARD is not set |
211 | 237 | ||
212 | # | 238 | # |
@@ -220,7 +246,7 @@ CONFIG_FSL_SOC=y | |||
220 | CONFIG_HIGHMEM_START=0xfe000000 | 246 | CONFIG_HIGHMEM_START=0xfe000000 |
221 | CONFIG_LOWMEM_SIZE=0x30000000 | 247 | CONFIG_LOWMEM_SIZE=0x30000000 |
222 | CONFIG_KERNEL_START=0xc0000000 | 248 | CONFIG_KERNEL_START=0xc0000000 |
223 | CONFIG_TASK_SIZE=0x80000000 | 249 | CONFIG_TASK_SIZE=0xc0000000 |
224 | CONFIG_BOOT_LOAD=0x00800000 | 250 | CONFIG_BOOT_LOAD=0x00800000 |
225 | 251 | ||
226 | # | 252 | # |
@@ -238,6 +264,7 @@ CONFIG_XFRM=y | |||
238 | CONFIG_XFRM_USER=m | 264 | CONFIG_XFRM_USER=m |
239 | # CONFIG_XFRM_SUB_POLICY is not set | 265 | # CONFIG_XFRM_SUB_POLICY is not set |
240 | # CONFIG_XFRM_MIGRATE is not set | 266 | # CONFIG_XFRM_MIGRATE is not set |
267 | # CONFIG_XFRM_STATISTICS is not set | ||
241 | # CONFIG_NET_KEY is not set | 268 | # CONFIG_NET_KEY is not set |
242 | CONFIG_INET=y | 269 | CONFIG_INET=y |
243 | CONFIG_IP_MULTICAST=y | 270 | CONFIG_IP_MULTICAST=y |
@@ -260,6 +287,7 @@ CONFIG_SYN_COOKIES=y | |||
260 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 287 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
261 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 288 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
262 | CONFIG_INET_XFRM_MODE_BEET=y | 289 | CONFIG_INET_XFRM_MODE_BEET=y |
290 | # CONFIG_INET_LRO is not set | ||
263 | CONFIG_INET_DIAG=y | 291 | CONFIG_INET_DIAG=y |
264 | CONFIG_INET_TCP_DIAG=y | 292 | CONFIG_INET_TCP_DIAG=y |
265 | # CONFIG_TCP_CONG_ADVANCED is not set | 293 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -285,10 +313,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
285 | # CONFIG_LAPB is not set | 313 | # CONFIG_LAPB is not set |
286 | # CONFIG_ECONET is not set | 314 | # CONFIG_ECONET is not set |
287 | # CONFIG_WAN_ROUTER is not set | 315 | # CONFIG_WAN_ROUTER is not set |
288 | |||
289 | # | ||
290 | # QoS and/or fair queueing | ||
291 | # | ||
292 | # CONFIG_NET_SCHED is not set | 316 | # CONFIG_NET_SCHED is not set |
293 | 317 | ||
294 | # | 318 | # |
@@ -296,6 +320,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
296 | # | 320 | # |
297 | # CONFIG_NET_PKTGEN is not set | 321 | # CONFIG_NET_PKTGEN is not set |
298 | # CONFIG_HAMRADIO is not set | 322 | # CONFIG_HAMRADIO is not set |
323 | # CONFIG_CAN is not set | ||
299 | # CONFIG_IRDA is not set | 324 | # CONFIG_IRDA is not set |
300 | # CONFIG_BT is not set | 325 | # CONFIG_BT is not set |
301 | # CONFIG_AF_RXRPC is not set | 326 | # CONFIG_AF_RXRPC is not set |
@@ -317,6 +342,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
317 | # | 342 | # |
318 | # Generic Driver Options | 343 | # Generic Driver Options |
319 | # | 344 | # |
345 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
320 | CONFIG_STANDALONE=y | 346 | CONFIG_STANDALONE=y |
321 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 347 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
322 | # CONFIG_FW_LOADER is not set | 348 | # CONFIG_FW_LOADER is not set |
@@ -334,11 +360,13 @@ CONFIG_BLK_DEV_LOOP=y | |||
334 | CONFIG_BLK_DEV_RAM=y | 360 | CONFIG_BLK_DEV_RAM=y |
335 | CONFIG_BLK_DEV_RAM_COUNT=16 | 361 | CONFIG_BLK_DEV_RAM_COUNT=16 |
336 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 362 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
337 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 363 | # CONFIG_BLK_DEV_XIP is not set |
338 | # CONFIG_CDROM_PKTCDVD is not set | 364 | # CONFIG_CDROM_PKTCDVD is not set |
339 | # CONFIG_ATA_OVER_ETH is not set | 365 | # CONFIG_ATA_OVER_ETH is not set |
340 | CONFIG_MISC_DEVICES=y | 366 | CONFIG_MISC_DEVICES=y |
341 | # CONFIG_EEPROM_93CX6 is not set | 367 | # CONFIG_EEPROM_93CX6 is not set |
368 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
369 | CONFIG_HAVE_IDE=y | ||
342 | # CONFIG_IDE is not set | 370 | # CONFIG_IDE is not set |
343 | 371 | ||
344 | # | 372 | # |
@@ -377,11 +405,13 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
377 | # CONFIG_SCSI_FC_ATTRS is not set | 405 | # CONFIG_SCSI_FC_ATTRS is not set |
378 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 406 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
379 | # CONFIG_SCSI_SAS_LIBSAS is not set | 407 | # CONFIG_SCSI_SAS_LIBSAS is not set |
408 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
380 | CONFIG_SCSI_LOWLEVEL=y | 409 | CONFIG_SCSI_LOWLEVEL=y |
381 | # CONFIG_ISCSI_TCP is not set | 410 | # CONFIG_ISCSI_TCP is not set |
382 | # CONFIG_SCSI_DEBUG is not set | 411 | # CONFIG_SCSI_DEBUG is not set |
383 | CONFIG_ATA=y | 412 | CONFIG_ATA=y |
384 | # CONFIG_ATA_NONSTANDARD is not set | 413 | # CONFIG_ATA_NONSTANDARD is not set |
414 | # CONFIG_SATA_MV is not set | ||
385 | CONFIG_SATA_FSL=y | 415 | CONFIG_SATA_FSL=y |
386 | # CONFIG_PATA_PLATFORM is not set | 416 | # CONFIG_PATA_PLATFORM is not set |
387 | # CONFIG_MD is not set | 417 | # CONFIG_MD is not set |
@@ -393,6 +423,7 @@ CONFIG_NETDEVICES=y | |||
393 | # CONFIG_MACVLAN is not set | 423 | # CONFIG_MACVLAN is not set |
394 | # CONFIG_EQUALIZER is not set | 424 | # CONFIG_EQUALIZER is not set |
395 | # CONFIG_TUN is not set | 425 | # CONFIG_TUN is not set |
426 | # CONFIG_VETH is not set | ||
396 | CONFIG_PHYLIB=y | 427 | CONFIG_PHYLIB=y |
397 | 428 | ||
398 | # | 429 | # |
@@ -407,10 +438,18 @@ CONFIG_MARVELL_PHY=y | |||
407 | # CONFIG_SMSC_PHY is not set | 438 | # CONFIG_SMSC_PHY is not set |
408 | # CONFIG_BROADCOM_PHY is not set | 439 | # CONFIG_BROADCOM_PHY is not set |
409 | # CONFIG_ICPLUS_PHY is not set | 440 | # CONFIG_ICPLUS_PHY is not set |
441 | # CONFIG_REALTEK_PHY is not set | ||
410 | # CONFIG_FIXED_PHY is not set | 442 | # CONFIG_FIXED_PHY is not set |
443 | # CONFIG_MDIO_BITBANG is not set | ||
411 | CONFIG_NET_ETHERNET=y | 444 | CONFIG_NET_ETHERNET=y |
412 | CONFIG_MII=y | 445 | CONFIG_MII=y |
446 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
447 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
448 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
449 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
450 | # CONFIG_B44 is not set | ||
413 | CONFIG_NETDEV_1000=y | 451 | CONFIG_NETDEV_1000=y |
452 | # CONFIG_E1000E_ENABLED is not set | ||
414 | CONFIG_GIANFAR=y | 453 | CONFIG_GIANFAR=y |
415 | # CONFIG_GFAR_NAPI is not set | 454 | # CONFIG_GFAR_NAPI is not set |
416 | CONFIG_NETDEV_10000=y | 455 | CONFIG_NETDEV_10000=y |
@@ -423,7 +462,6 @@ CONFIG_NETDEV_10000=y | |||
423 | # CONFIG_WAN is not set | 462 | # CONFIG_WAN is not set |
424 | # CONFIG_PPP is not set | 463 | # CONFIG_PPP is not set |
425 | # CONFIG_SLIP is not set | 464 | # CONFIG_SLIP is not set |
426 | # CONFIG_SHAPER is not set | ||
427 | # CONFIG_NETCONSOLE is not set | 465 | # CONFIG_NETCONSOLE is not set |
428 | # CONFIG_NETPOLL is not set | 466 | # CONFIG_NETPOLL is not set |
429 | # CONFIG_NET_POLL_CONTROLLER is not set | 467 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -442,7 +480,6 @@ CONFIG_INPUT=y | |||
442 | # | 480 | # |
443 | # CONFIG_INPUT_MOUSEDEV is not set | 481 | # CONFIG_INPUT_MOUSEDEV is not set |
444 | # CONFIG_INPUT_JOYDEV is not set | 482 | # CONFIG_INPUT_JOYDEV is not set |
445 | # CONFIG_INPUT_TSDEV is not set | ||
446 | # CONFIG_INPUT_EVDEV is not set | 483 | # CONFIG_INPUT_EVDEV is not set |
447 | # CONFIG_INPUT_EVBUG is not set | 484 | # CONFIG_INPUT_EVBUG is not set |
448 | 485 | ||
@@ -488,14 +525,6 @@ CONFIG_UNIX98_PTYS=y | |||
488 | CONFIG_LEGACY_PTYS=y | 525 | CONFIG_LEGACY_PTYS=y |
489 | CONFIG_LEGACY_PTY_COUNT=256 | 526 | CONFIG_LEGACY_PTY_COUNT=256 |
490 | # CONFIG_IPMI_HANDLER is not set | 527 | # CONFIG_IPMI_HANDLER is not set |
491 | CONFIG_WATCHDOG=y | ||
492 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
493 | |||
494 | # | ||
495 | # Watchdog Device Drivers | ||
496 | # | ||
497 | # CONFIG_SOFT_WATCHDOG is not set | ||
498 | CONFIG_83xx_WDT=y | ||
499 | # CONFIG_HW_RANDOM is not set | 528 | # CONFIG_HW_RANDOM is not set |
500 | # CONFIG_NVRAM is not set | 529 | # CONFIG_NVRAM is not set |
501 | CONFIG_GEN_RTC=y | 530 | CONFIG_GEN_RTC=y |
@@ -527,14 +556,12 @@ CONFIG_I2C_MPC=y | |||
527 | # | 556 | # |
528 | # Miscellaneous I2C Chip support | 557 | # Miscellaneous I2C Chip support |
529 | # | 558 | # |
530 | # CONFIG_SENSORS_DS1337 is not set | ||
531 | # CONFIG_SENSORS_DS1374 is not set | ||
532 | # CONFIG_DS1682 is not set | 559 | # CONFIG_DS1682 is not set |
533 | # CONFIG_SENSORS_EEPROM is not set | 560 | # CONFIG_SENSORS_EEPROM is not set |
534 | # CONFIG_SENSORS_PCF8574 is not set | 561 | # CONFIG_SENSORS_PCF8574 is not set |
535 | # CONFIG_SENSORS_PCA9539 is not set | 562 | # CONFIG_PCF8575 is not set |
536 | # CONFIG_SENSORS_PCF8591 is not set | 563 | # CONFIG_SENSORS_PCF8591 is not set |
537 | # CONFIG_SENSORS_M41T00 is not set | 564 | # CONFIG_TPS65010 is not set |
538 | # CONFIG_SENSORS_MAX6875 is not set | 565 | # CONFIG_SENSORS_MAX6875 is not set |
539 | # CONFIG_SENSORS_TSL2550 is not set | 566 | # CONFIG_SENSORS_TSL2550 is not set |
540 | # CONFIG_I2C_DEBUG_CORE is not set | 567 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -551,8 +578,6 @@ CONFIG_I2C_MPC=y | |||
551 | # CONFIG_POWER_SUPPLY is not set | 578 | # CONFIG_POWER_SUPPLY is not set |
552 | CONFIG_HWMON=y | 579 | CONFIG_HWMON=y |
553 | # CONFIG_HWMON_VID is not set | 580 | # CONFIG_HWMON_VID is not set |
554 | # CONFIG_SENSORS_ABITUGURU is not set | ||
555 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
556 | # CONFIG_SENSORS_AD7418 is not set | 581 | # CONFIG_SENSORS_AD7418 is not set |
557 | # CONFIG_SENSORS_ADM1021 is not set | 582 | # CONFIG_SENSORS_ADM1021 is not set |
558 | # CONFIG_SENSORS_ADM1025 is not set | 583 | # CONFIG_SENSORS_ADM1025 is not set |
@@ -560,12 +585,13 @@ CONFIG_HWMON=y | |||
560 | # CONFIG_SENSORS_ADM1029 is not set | 585 | # CONFIG_SENSORS_ADM1029 is not set |
561 | # CONFIG_SENSORS_ADM1031 is not set | 586 | # CONFIG_SENSORS_ADM1031 is not set |
562 | # CONFIG_SENSORS_ADM9240 is not set | 587 | # CONFIG_SENSORS_ADM9240 is not set |
563 | # CONFIG_SENSORS_ASB100 is not set | 588 | # CONFIG_SENSORS_ADT7470 is not set |
589 | # CONFIG_SENSORS_ADT7473 is not set | ||
564 | # CONFIG_SENSORS_ATXP1 is not set | 590 | # CONFIG_SENSORS_ATXP1 is not set |
565 | # CONFIG_SENSORS_DS1621 is not set | 591 | # CONFIG_SENSORS_DS1621 is not set |
566 | # CONFIG_SENSORS_F71805F is not set | 592 | # CONFIG_SENSORS_F71805F is not set |
567 | # CONFIG_SENSORS_FSCHER is not set | 593 | # CONFIG_SENSORS_F71882FG is not set |
568 | # CONFIG_SENSORS_FSCPOS is not set | 594 | # CONFIG_SENSORS_F75375S is not set |
569 | # CONFIG_SENSORS_GL518SM is not set | 595 | # CONFIG_SENSORS_GL518SM is not set |
570 | # CONFIG_SENSORS_GL520SM is not set | 596 | # CONFIG_SENSORS_GL520SM is not set |
571 | # CONFIG_SENSORS_IT87 is not set | 597 | # CONFIG_SENSORS_IT87 is not set |
@@ -588,6 +614,7 @@ CONFIG_HWMON=y | |||
588 | # CONFIG_SENSORS_SMSC47M1 is not set | 614 | # CONFIG_SENSORS_SMSC47M1 is not set |
589 | # CONFIG_SENSORS_SMSC47M192 is not set | 615 | # CONFIG_SENSORS_SMSC47M192 is not set |
590 | # CONFIG_SENSORS_SMSC47B397 is not set | 616 | # CONFIG_SENSORS_SMSC47B397 is not set |
617 | # CONFIG_SENSORS_ADS7828 is not set | ||
591 | # CONFIG_SENSORS_THMC50 is not set | 618 | # CONFIG_SENSORS_THMC50 is not set |
592 | # CONFIG_SENSORS_VT1211 is not set | 619 | # CONFIG_SENSORS_VT1211 is not set |
593 | # CONFIG_SENSORS_W83781D is not set | 620 | # CONFIG_SENSORS_W83781D is not set |
@@ -595,9 +622,25 @@ CONFIG_HWMON=y | |||
595 | # CONFIG_SENSORS_W83792D is not set | 622 | # CONFIG_SENSORS_W83792D is not set |
596 | # CONFIG_SENSORS_W83793 is not set | 623 | # CONFIG_SENSORS_W83793 is not set |
597 | # CONFIG_SENSORS_W83L785TS is not set | 624 | # CONFIG_SENSORS_W83L785TS is not set |
625 | # CONFIG_SENSORS_W83L786NG is not set | ||
598 | # CONFIG_SENSORS_W83627HF is not set | 626 | # CONFIG_SENSORS_W83627HF is not set |
599 | # CONFIG_SENSORS_W83627EHF is not set | 627 | # CONFIG_SENSORS_W83627EHF is not set |
600 | # CONFIG_HWMON_DEBUG_CHIP is not set | 628 | # CONFIG_HWMON_DEBUG_CHIP is not set |
629 | # CONFIG_THERMAL is not set | ||
630 | CONFIG_WATCHDOG=y | ||
631 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
632 | |||
633 | # | ||
634 | # Watchdog Device Drivers | ||
635 | # | ||
636 | # CONFIG_SOFT_WATCHDOG is not set | ||
637 | CONFIG_83xx_WDT=y | ||
638 | |||
639 | # | ||
640 | # Sonics Silicon Backplane | ||
641 | # | ||
642 | CONFIG_SSB_POSSIBLE=y | ||
643 | # CONFIG_SSB is not set | ||
601 | 644 | ||
602 | # | 645 | # |
603 | # Multifunction device drivers | 646 | # Multifunction device drivers |
@@ -614,16 +657,15 @@ CONFIG_DAB=y | |||
614 | # | 657 | # |
615 | # Graphics support | 658 | # Graphics support |
616 | # | 659 | # |
660 | # CONFIG_VGASTATE is not set | ||
661 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
662 | # CONFIG_FB is not set | ||
617 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 663 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
618 | 664 | ||
619 | # | 665 | # |
620 | # Display device support | 666 | # Display device support |
621 | # | 667 | # |
622 | # CONFIG_DISPLAY_SUPPORT is not set | 668 | # CONFIG_DISPLAY_SUPPORT is not set |
623 | # CONFIG_VGASTATE is not set | ||
624 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
625 | # CONFIG_FB is not set | ||
626 | # CONFIG_FB_IBM_GXT4500 is not set | ||
627 | 669 | ||
628 | # | 670 | # |
629 | # Sound | 671 | # Sound |
@@ -632,6 +674,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
632 | CONFIG_HID_SUPPORT=y | 674 | CONFIG_HID_SUPPORT=y |
633 | CONFIG_HID=y | 675 | CONFIG_HID=y |
634 | # CONFIG_HID_DEBUG is not set | 676 | # CONFIG_HID_DEBUG is not set |
677 | # CONFIG_HIDRAW is not set | ||
635 | CONFIG_USB_SUPPORT=y | 678 | CONFIG_USB_SUPPORT=y |
636 | CONFIG_USB_ARCH_HAS_HCD=y | 679 | CONFIG_USB_ARCH_HAS_HCD=y |
637 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 680 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
@@ -641,28 +684,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
641 | # | 684 | # |
642 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 685 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
643 | # | 686 | # |
644 | |||
645 | # | ||
646 | # USB Gadget Support | ||
647 | # | ||
648 | # CONFIG_USB_GADGET is not set | 687 | # CONFIG_USB_GADGET is not set |
649 | # CONFIG_MMC is not set | 688 | # CONFIG_MMC is not set |
689 | # CONFIG_MEMSTICK is not set | ||
650 | # CONFIG_NEW_LEDS is not set | 690 | # CONFIG_NEW_LEDS is not set |
651 | # CONFIG_EDAC is not set | 691 | # CONFIG_EDAC is not set |
652 | # CONFIG_RTC_CLASS is not set | 692 | # CONFIG_RTC_CLASS is not set |
653 | 693 | # CONFIG_DMADEVICES is not set | |
654 | # | ||
655 | # DMA Engine support | ||
656 | # | ||
657 | # CONFIG_DMA_ENGINE is not set | ||
658 | |||
659 | # | ||
660 | # DMA Clients | ||
661 | # | ||
662 | |||
663 | # | ||
664 | # DMA Devices | ||
665 | # | ||
666 | 694 | ||
667 | # | 695 | # |
668 | # Userspace I/O | 696 | # Userspace I/O |
@@ -681,7 +709,6 @@ CONFIG_EXT3_FS_XATTR=y | |||
681 | # CONFIG_EXT3_FS_SECURITY is not set | 709 | # CONFIG_EXT3_FS_SECURITY is not set |
682 | # CONFIG_EXT4DEV_FS is not set | 710 | # CONFIG_EXT4DEV_FS is not set |
683 | CONFIG_JBD=y | 711 | CONFIG_JBD=y |
684 | # CONFIG_JBD_DEBUG is not set | ||
685 | CONFIG_FS_MBCACHE=y | 712 | CONFIG_FS_MBCACHE=y |
686 | # CONFIG_REISERFS_FS is not set | 713 | # CONFIG_REISERFS_FS is not set |
687 | # CONFIG_JFS_FS is not set | 714 | # CONFIG_JFS_FS is not set |
@@ -689,12 +716,10 @@ CONFIG_FS_MBCACHE=y | |||
689 | # CONFIG_XFS_FS is not set | 716 | # CONFIG_XFS_FS is not set |
690 | # CONFIG_GFS2_FS is not set | 717 | # CONFIG_GFS2_FS is not set |
691 | # CONFIG_OCFS2_FS is not set | 718 | # CONFIG_OCFS2_FS is not set |
692 | # CONFIG_MINIX_FS is not set | 719 | CONFIG_DNOTIFY=y |
693 | # CONFIG_ROMFS_FS is not set | ||
694 | CONFIG_INOTIFY=y | 720 | CONFIG_INOTIFY=y |
695 | CONFIG_INOTIFY_USER=y | 721 | CONFIG_INOTIFY_USER=y |
696 | # CONFIG_QUOTA is not set | 722 | # CONFIG_QUOTA is not set |
697 | CONFIG_DNOTIFY=y | ||
698 | # CONFIG_AUTOFS_FS is not set | 723 | # CONFIG_AUTOFS_FS is not set |
699 | # CONFIG_AUTOFS4_FS is not set | 724 | # CONFIG_AUTOFS4_FS is not set |
700 | # CONFIG_FUSE_FS is not set | 725 | # CONFIG_FUSE_FS is not set |
@@ -722,7 +747,6 @@ CONFIG_SYSFS=y | |||
722 | CONFIG_TMPFS=y | 747 | CONFIG_TMPFS=y |
723 | # CONFIG_TMPFS_POSIX_ACL is not set | 748 | # CONFIG_TMPFS_POSIX_ACL is not set |
724 | # CONFIG_HUGETLB_PAGE is not set | 749 | # CONFIG_HUGETLB_PAGE is not set |
725 | CONFIG_RAMFS=y | ||
726 | # CONFIG_CONFIGFS_FS is not set | 750 | # CONFIG_CONFIGFS_FS is not set |
727 | 751 | ||
728 | # | 752 | # |
@@ -737,14 +761,13 @@ CONFIG_RAMFS=y | |||
737 | # CONFIG_EFS_FS is not set | 761 | # CONFIG_EFS_FS is not set |
738 | # CONFIG_CRAMFS is not set | 762 | # CONFIG_CRAMFS is not set |
739 | # CONFIG_VXFS_FS is not set | 763 | # CONFIG_VXFS_FS is not set |
764 | # CONFIG_MINIX_FS is not set | ||
740 | # CONFIG_HPFS_FS is not set | 765 | # CONFIG_HPFS_FS is not set |
741 | # CONFIG_QNX4FS_FS is not set | 766 | # CONFIG_QNX4FS_FS is not set |
767 | # CONFIG_ROMFS_FS is not set | ||
742 | # CONFIG_SYSV_FS is not set | 768 | # CONFIG_SYSV_FS is not set |
743 | # CONFIG_UFS_FS is not set | 769 | # CONFIG_UFS_FS is not set |
744 | 770 | CONFIG_NETWORK_FILESYSTEMS=y | |
745 | # | ||
746 | # Network File Systems | ||
747 | # | ||
748 | CONFIG_NFS_FS=y | 771 | CONFIG_NFS_FS=y |
749 | CONFIG_NFS_V3=y | 772 | CONFIG_NFS_V3=y |
750 | # CONFIG_NFS_V3_ACL is not set | 773 | # CONFIG_NFS_V3_ACL is not set |
@@ -787,17 +810,8 @@ CONFIG_MSDOS_PARTITION=y | |||
787 | # CONFIG_KARMA_PARTITION is not set | 810 | # CONFIG_KARMA_PARTITION is not set |
788 | # CONFIG_EFI_PARTITION is not set | 811 | # CONFIG_EFI_PARTITION is not set |
789 | # CONFIG_SYSV68_PARTITION is not set | 812 | # CONFIG_SYSV68_PARTITION is not set |
790 | |||
791 | # | ||
792 | # Native Language Support | ||
793 | # | ||
794 | # CONFIG_NLS is not set | 813 | # CONFIG_NLS is not set |
795 | |||
796 | # | ||
797 | # Distributed Lock Manager | ||
798 | # | ||
799 | # CONFIG_DLM is not set | 814 | # CONFIG_DLM is not set |
800 | # CONFIG_UCC_SLOW is not set | ||
801 | 815 | ||
802 | # | 816 | # |
803 | # Library routines | 817 | # Library routines |
@@ -815,15 +829,10 @@ CONFIG_HAS_IOPORT=y | |||
815 | CONFIG_HAS_DMA=y | 829 | CONFIG_HAS_DMA=y |
816 | 830 | ||
817 | # | 831 | # |
818 | # Instrumentation Support | ||
819 | # | ||
820 | # CONFIG_PROFILING is not set | ||
821 | # CONFIG_KPROBES is not set | ||
822 | |||
823 | # | ||
824 | # Kernel hacking | 832 | # Kernel hacking |
825 | # | 833 | # |
826 | # CONFIG_PRINTK_TIME is not set | 834 | # CONFIG_PRINTK_TIME is not set |
835 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
827 | CONFIG_ENABLE_MUST_CHECK=y | 836 | CONFIG_ENABLE_MUST_CHECK=y |
828 | # CONFIG_MAGIC_SYSRQ is not set | 837 | # CONFIG_MAGIC_SYSRQ is not set |
829 | # CONFIG_UNUSED_SYMBOLS is not set | 838 | # CONFIG_UNUSED_SYMBOLS is not set |
@@ -831,6 +840,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
831 | # CONFIG_HEADERS_CHECK is not set | 840 | # CONFIG_HEADERS_CHECK is not set |
832 | # CONFIG_DEBUG_KERNEL is not set | 841 | # CONFIG_DEBUG_KERNEL is not set |
833 | # CONFIG_DEBUG_BUGVERBOSE is not set | 842 | # CONFIG_DEBUG_BUGVERBOSE is not set |
843 | # CONFIG_SAMPLES is not set | ||
834 | # CONFIG_PPC_EARLY_DEBUG is not set | 844 | # CONFIG_PPC_EARLY_DEBUG is not set |
835 | 845 | ||
836 | # | 846 | # |
@@ -838,9 +848,11 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
838 | # | 848 | # |
839 | # CONFIG_KEYS is not set | 849 | # CONFIG_KEYS is not set |
840 | # CONFIG_SECURITY is not set | 850 | # CONFIG_SECURITY is not set |
851 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
841 | CONFIG_CRYPTO=y | 852 | CONFIG_CRYPTO=y |
842 | CONFIG_CRYPTO_ALGAPI=y | 853 | CONFIG_CRYPTO_ALGAPI=y |
843 | CONFIG_CRYPTO_BLKCIPHER=y | 854 | CONFIG_CRYPTO_BLKCIPHER=y |
855 | # CONFIG_CRYPTO_SEQIV is not set | ||
844 | CONFIG_CRYPTO_MANAGER=y | 856 | CONFIG_CRYPTO_MANAGER=y |
845 | # CONFIG_CRYPTO_HMAC is not set | 857 | # CONFIG_CRYPTO_HMAC is not set |
846 | # CONFIG_CRYPTO_XCBC is not set | 858 | # CONFIG_CRYPTO_XCBC is not set |
@@ -857,6 +869,10 @@ CONFIG_CRYPTO_ECB=m | |||
857 | CONFIG_CRYPTO_CBC=y | 869 | CONFIG_CRYPTO_CBC=y |
858 | CONFIG_CRYPTO_PCBC=m | 870 | CONFIG_CRYPTO_PCBC=m |
859 | # CONFIG_CRYPTO_LRW is not set | 871 | # CONFIG_CRYPTO_LRW is not set |
872 | # CONFIG_CRYPTO_XTS is not set | ||
873 | # CONFIG_CRYPTO_CTR is not set | ||
874 | # CONFIG_CRYPTO_GCM is not set | ||
875 | # CONFIG_CRYPTO_CCM is not set | ||
860 | # CONFIG_CRYPTO_CRYPTD is not set | 876 | # CONFIG_CRYPTO_CRYPTD is not set |
861 | CONFIG_CRYPTO_DES=y | 877 | CONFIG_CRYPTO_DES=y |
862 | # CONFIG_CRYPTO_FCRYPT is not set | 878 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -870,9 +886,14 @@ CONFIG_CRYPTO_DES=y | |||
870 | # CONFIG_CRYPTO_ARC4 is not set | 886 | # CONFIG_CRYPTO_ARC4 is not set |
871 | # CONFIG_CRYPTO_KHAZAD is not set | 887 | # CONFIG_CRYPTO_KHAZAD is not set |
872 | # CONFIG_CRYPTO_ANUBIS is not set | 888 | # CONFIG_CRYPTO_ANUBIS is not set |
889 | # CONFIG_CRYPTO_SEED is not set | ||
890 | # CONFIG_CRYPTO_SALSA20 is not set | ||
873 | # CONFIG_CRYPTO_DEFLATE is not set | 891 | # CONFIG_CRYPTO_DEFLATE is not set |
874 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 892 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
875 | # CONFIG_CRYPTO_CRC32C is not set | 893 | # CONFIG_CRYPTO_CRC32C is not set |
876 | # CONFIG_CRYPTO_CAMELLIA is not set | 894 | # CONFIG_CRYPTO_CAMELLIA is not set |
877 | # CONFIG_CRYPTO_TEST is not set | 895 | # CONFIG_CRYPTO_TEST is not set |
896 | # CONFIG_CRYPTO_AUTHENC is not set | ||
897 | # CONFIG_CRYPTO_LZO is not set | ||
878 | CONFIG_CRYPTO_HW=y | 898 | CONFIG_CRYPTO_HW=y |
899 | # CONFIG_PPC_CLOCK is not set | ||
diff --git a/arch/powerpc/configs/mpc837x_rdb_defconfig b/arch/powerpc/configs/mpc837x_rdb_defconfig index 91d291e3ee3a..44093a0eaf88 100644 --- a/arch/powerpc/configs/mpc837x_rdb_defconfig +++ b/arch/powerpc/configs/mpc837x_rdb_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Jan 24 20:04:39 2008 | 4 | # Mon Mar 24 08:48:24 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,17 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | CONFIG_FAIR_GROUP_SCHED=y | 75 | CONFIG_FAIR_GROUP_SCHED=y |
76 | CONFIG_FAIR_USER_SCHED=y | 76 | # CONFIG_RT_GROUP_SCHED is not set |
77 | # CONFIG_FAIR_CGROUP_SCHED is not set | 77 | CONFIG_USER_SCHED=y |
78 | # CONFIG_CGROUP_SCHED is not set | ||
78 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
79 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
80 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
81 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
82 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,17 +92,26 @@ CONFIG_HOTPLUG=y | |||
89 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
95 | # CONFIG_EPOLL is not set | 99 | # CONFIG_EPOLL is not set |
96 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
100 | CONFIG_SLAB=y | 105 | CONFIG_SLAB=y |
101 | # CONFIG_SLUB is not set | 106 | # CONFIG_SLUB is not set |
102 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | # CONFIG_KPROBES is not set | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
103 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
104 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
105 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
@@ -128,6 +140,7 @@ CONFIG_DEFAULT_AS=y | |||
128 | # CONFIG_DEFAULT_CFQ is not set | 140 | # CONFIG_DEFAULT_CFQ is not set |
129 | # CONFIG_DEFAULT_NOOP is not set | 141 | # CONFIG_DEFAULT_NOOP is not set |
130 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 142 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
143 | CONFIG_CLASSIC_RCU=y | ||
131 | 144 | ||
132 | # | 145 | # |
133 | # Platform support | 146 | # Platform support |
@@ -136,11 +149,12 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
136 | # CONFIG_PPC_82xx is not set | 149 | # CONFIG_PPC_82xx is not set |
137 | CONFIG_PPC_83xx=y | 150 | CONFIG_PPC_83xx=y |
138 | # CONFIG_PPC_86xx is not set | 151 | # CONFIG_PPC_86xx is not set |
139 | # CONFIG_PPC_MPC52xx is not set | 152 | # CONFIG_PPC_MPC512x is not set |
140 | # CONFIG_PPC_MPC5200 is not set | 153 | # CONFIG_PPC_MPC5121 is not set |
141 | # CONFIG_PPC_CELL is not set | 154 | # CONFIG_PPC_CELL is not set |
142 | # CONFIG_PPC_CELL_NATIVE is not set | 155 | # CONFIG_PPC_CELL_NATIVE is not set |
143 | # CONFIG_PQ2ADS is not set | 156 | # CONFIG_PQ2ADS is not set |
157 | CONFIG_MPC83xx=y | ||
144 | # CONFIG_MPC831x_RDB is not set | 158 | # CONFIG_MPC831x_RDB is not set |
145 | # CONFIG_MPC832x_MDS is not set | 159 | # CONFIG_MPC832x_MDS is not set |
146 | # CONFIG_MPC832x_RDB is not set | 160 | # CONFIG_MPC832x_RDB is not set |
@@ -149,6 +163,7 @@ CONFIG_PPC_83xx=y | |||
149 | # CONFIG_MPC836x_MDS is not set | 163 | # CONFIG_MPC836x_MDS is not set |
150 | # CONFIG_MPC837x_MDS is not set | 164 | # CONFIG_MPC837x_MDS is not set |
151 | CONFIG_MPC837x_RDB=y | 165 | CONFIG_MPC837x_RDB=y |
166 | # CONFIG_SBC834x is not set | ||
152 | CONFIG_PPC_MPC837x=y | 167 | CONFIG_PPC_MPC837x=y |
153 | CONFIG_IPIC=y | 168 | CONFIG_IPIC=y |
154 | # CONFIG_MPIC is not set | 169 | # CONFIG_MPIC is not set |
@@ -161,7 +176,6 @@ CONFIG_IPIC=y | |||
161 | # CONFIG_PPC_INDIRECT_IO is not set | 176 | # CONFIG_PPC_INDIRECT_IO is not set |
162 | # CONFIG_GENERIC_IOMAP is not set | 177 | # CONFIG_GENERIC_IOMAP is not set |
163 | # CONFIG_CPU_FREQ is not set | 178 | # CONFIG_CPU_FREQ is not set |
164 | # CONFIG_CPM2 is not set | ||
165 | # CONFIG_FSL_ULI1575 is not set | 179 | # CONFIG_FSL_ULI1575 is not set |
166 | 180 | ||
167 | # | 181 | # |
@@ -177,12 +191,16 @@ CONFIG_HZ_250=y | |||
177 | # CONFIG_HZ_300 is not set | 191 | # CONFIG_HZ_300 is not set |
178 | # CONFIG_HZ_1000 is not set | 192 | # CONFIG_HZ_1000 is not set |
179 | CONFIG_HZ=250 | 193 | CONFIG_HZ=250 |
194 | # CONFIG_SCHED_HRTICK is not set | ||
180 | CONFIG_PREEMPT_NONE=y | 195 | CONFIG_PREEMPT_NONE=y |
181 | # CONFIG_PREEMPT_VOLUNTARY is not set | 196 | # CONFIG_PREEMPT_VOLUNTARY is not set |
182 | # CONFIG_PREEMPT is not set | 197 | # CONFIG_PREEMPT is not set |
183 | CONFIG_BINFMT_ELF=y | 198 | CONFIG_BINFMT_ELF=y |
184 | # CONFIG_BINFMT_MISC is not set | 199 | # CONFIG_BINFMT_MISC is not set |
200 | # CONFIG_IOMMU_HELPER is not set | ||
185 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 201 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
202 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
203 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
186 | CONFIG_ARCH_FLATMEM_ENABLE=y | 204 | CONFIG_ARCH_FLATMEM_ENABLE=y |
187 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 205 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
188 | CONFIG_SELECT_MEMORY_MODEL=y | 206 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -201,11 +219,7 @@ CONFIG_VIRT_TO_BUS=y | |||
201 | CONFIG_PROC_DEVICETREE=y | 219 | CONFIG_PROC_DEVICETREE=y |
202 | # CONFIG_CMDLINE_BOOL is not set | 220 | # CONFIG_CMDLINE_BOOL is not set |
203 | # CONFIG_PM is not set | 221 | # CONFIG_PM is not set |
204 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
205 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
206 | CONFIG_SECCOMP=y | 222 | CONFIG_SECCOMP=y |
207 | CONFIG_WANT_DEVICE_TREE=y | ||
208 | CONFIG_DEVICE_TREE="" | ||
209 | CONFIG_ISA_DMA_API=y | 223 | CONFIG_ISA_DMA_API=y |
210 | 224 | ||
211 | # | 225 | # |
@@ -301,6 +315,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
301 | # | 315 | # |
302 | # CONFIG_NET_PKTGEN is not set | 316 | # CONFIG_NET_PKTGEN is not set |
303 | # CONFIG_HAMRADIO is not set | 317 | # CONFIG_HAMRADIO is not set |
318 | # CONFIG_CAN is not set | ||
304 | # CONFIG_IRDA is not set | 319 | # CONFIG_IRDA is not set |
305 | # CONFIG_BT is not set | 320 | # CONFIG_BT is not set |
306 | # CONFIG_AF_RXRPC is not set | 321 | # CONFIG_AF_RXRPC is not set |
@@ -340,11 +355,13 @@ CONFIG_BLK_DEV_LOOP=y | |||
340 | CONFIG_BLK_DEV_RAM=y | 355 | CONFIG_BLK_DEV_RAM=y |
341 | CONFIG_BLK_DEV_RAM_COUNT=16 | 356 | CONFIG_BLK_DEV_RAM_COUNT=16 |
342 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 357 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
343 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 358 | # CONFIG_BLK_DEV_XIP is not set |
344 | # CONFIG_CDROM_PKTCDVD is not set | 359 | # CONFIG_CDROM_PKTCDVD is not set |
345 | # CONFIG_ATA_OVER_ETH is not set | 360 | # CONFIG_ATA_OVER_ETH is not set |
346 | CONFIG_MISC_DEVICES=y | 361 | CONFIG_MISC_DEVICES=y |
347 | # CONFIG_EEPROM_93CX6 is not set | 362 | # CONFIG_EEPROM_93CX6 is not set |
363 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
364 | CONFIG_HAVE_IDE=y | ||
348 | # CONFIG_IDE is not set | 365 | # CONFIG_IDE is not set |
349 | 366 | ||
350 | # | 367 | # |
@@ -389,6 +406,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
389 | # CONFIG_SCSI_DEBUG is not set | 406 | # CONFIG_SCSI_DEBUG is not set |
390 | CONFIG_ATA=y | 407 | CONFIG_ATA=y |
391 | # CONFIG_ATA_NONSTANDARD is not set | 408 | # CONFIG_ATA_NONSTANDARD is not set |
409 | # CONFIG_SATA_MV is not set | ||
392 | CONFIG_SATA_FSL=y | 410 | CONFIG_SATA_FSL=y |
393 | # CONFIG_PATA_PLATFORM is not set | 411 | # CONFIG_PATA_PLATFORM is not set |
394 | CONFIG_MD=y | 412 | CONFIG_MD=y |
@@ -425,6 +443,7 @@ CONFIG_MARVELL_PHY=y | |||
425 | # CONFIG_SMSC_PHY is not set | 443 | # CONFIG_SMSC_PHY is not set |
426 | # CONFIG_BROADCOM_PHY is not set | 444 | # CONFIG_BROADCOM_PHY is not set |
427 | # CONFIG_ICPLUS_PHY is not set | 445 | # CONFIG_ICPLUS_PHY is not set |
446 | # CONFIG_REALTEK_PHY is not set | ||
428 | # CONFIG_FIXED_PHY is not set | 447 | # CONFIG_FIXED_PHY is not set |
429 | # CONFIG_MDIO_BITBANG is not set | 448 | # CONFIG_MDIO_BITBANG is not set |
430 | CONFIG_NET_ETHERNET=y | 449 | CONFIG_NET_ETHERNET=y |
@@ -435,6 +454,7 @@ CONFIG_MII=y | |||
435 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 454 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
436 | # CONFIG_B44 is not set | 455 | # CONFIG_B44 is not set |
437 | CONFIG_NETDEV_1000=y | 456 | CONFIG_NETDEV_1000=y |
457 | # CONFIG_E1000E_ENABLED is not set | ||
438 | CONFIG_GIANFAR=y | 458 | CONFIG_GIANFAR=y |
439 | CONFIG_GFAR_NAPI=y | 459 | CONFIG_GFAR_NAPI=y |
440 | # CONFIG_NETDEV_10000 is not set | 460 | # CONFIG_NETDEV_10000 is not set |
@@ -447,7 +467,6 @@ CONFIG_GFAR_NAPI=y | |||
447 | # CONFIG_WAN is not set | 467 | # CONFIG_WAN is not set |
448 | # CONFIG_PPP is not set | 468 | # CONFIG_PPP is not set |
449 | # CONFIG_SLIP is not set | 469 | # CONFIG_SLIP is not set |
450 | # CONFIG_SHAPER is not set | ||
451 | # CONFIG_NETCONSOLE is not set | 470 | # CONFIG_NETCONSOLE is not set |
452 | # CONFIG_NETPOLL is not set | 471 | # CONFIG_NETPOLL is not set |
453 | # CONFIG_NET_POLL_CONTROLLER is not set | 472 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -542,14 +561,12 @@ CONFIG_I2C_MPC=y | |||
542 | # | 561 | # |
543 | # Miscellaneous I2C Chip support | 562 | # Miscellaneous I2C Chip support |
544 | # | 563 | # |
545 | # CONFIG_SENSORS_DS1337 is not set | ||
546 | # CONFIG_SENSORS_DS1374 is not set | ||
547 | # CONFIG_DS1682 is not set | 564 | # CONFIG_DS1682 is not set |
548 | # CONFIG_SENSORS_EEPROM is not set | 565 | # CONFIG_SENSORS_EEPROM is not set |
549 | # CONFIG_SENSORS_PCF8574 is not set | 566 | # CONFIG_SENSORS_PCF8574 is not set |
550 | # CONFIG_SENSORS_PCA9539 is not set | 567 | # CONFIG_PCF8575 is not set |
551 | # CONFIG_SENSORS_PCF8591 is not set | 568 | # CONFIG_SENSORS_PCF8591 is not set |
552 | # CONFIG_SENSORS_M41T00 is not set | 569 | # CONFIG_TPS65010 is not set |
553 | # CONFIG_SENSORS_MAX6875 is not set | 570 | # CONFIG_SENSORS_MAX6875 is not set |
554 | # CONFIG_SENSORS_TSL2550 is not set | 571 | # CONFIG_SENSORS_TSL2550 is not set |
555 | # CONFIG_I2C_DEBUG_CORE is not set | 572 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -574,6 +591,7 @@ CONFIG_HWMON=y | |||
574 | # CONFIG_SENSORS_ADM1031 is not set | 591 | # CONFIG_SENSORS_ADM1031 is not set |
575 | # CONFIG_SENSORS_ADM9240 is not set | 592 | # CONFIG_SENSORS_ADM9240 is not set |
576 | # CONFIG_SENSORS_ADT7470 is not set | 593 | # CONFIG_SENSORS_ADT7470 is not set |
594 | # CONFIG_SENSORS_ADT7473 is not set | ||
577 | # CONFIG_SENSORS_ATXP1 is not set | 595 | # CONFIG_SENSORS_ATXP1 is not set |
578 | # CONFIG_SENSORS_DS1621 is not set | 596 | # CONFIG_SENSORS_DS1621 is not set |
579 | # CONFIG_SENSORS_F71805F is not set | 597 | # CONFIG_SENSORS_F71805F is not set |
@@ -601,6 +619,7 @@ CONFIG_HWMON=y | |||
601 | # CONFIG_SENSORS_SMSC47M1 is not set | 619 | # CONFIG_SENSORS_SMSC47M1 is not set |
602 | # CONFIG_SENSORS_SMSC47M192 is not set | 620 | # CONFIG_SENSORS_SMSC47M192 is not set |
603 | # CONFIG_SENSORS_SMSC47B397 is not set | 621 | # CONFIG_SENSORS_SMSC47B397 is not set |
622 | # CONFIG_SENSORS_ADS7828 is not set | ||
604 | # CONFIG_SENSORS_THMC50 is not set | 623 | # CONFIG_SENSORS_THMC50 is not set |
605 | # CONFIG_SENSORS_VT1211 is not set | 624 | # CONFIG_SENSORS_VT1211 is not set |
606 | # CONFIG_SENSORS_W83781D is not set | 625 | # CONFIG_SENSORS_W83781D is not set |
@@ -608,9 +627,11 @@ CONFIG_HWMON=y | |||
608 | # CONFIG_SENSORS_W83792D is not set | 627 | # CONFIG_SENSORS_W83792D is not set |
609 | # CONFIG_SENSORS_W83793 is not set | 628 | # CONFIG_SENSORS_W83793 is not set |
610 | # CONFIG_SENSORS_W83L785TS is not set | 629 | # CONFIG_SENSORS_W83L785TS is not set |
630 | # CONFIG_SENSORS_W83L786NG is not set | ||
611 | # CONFIG_SENSORS_W83627HF is not set | 631 | # CONFIG_SENSORS_W83627HF is not set |
612 | # CONFIG_SENSORS_W83627EHF is not set | 632 | # CONFIG_SENSORS_W83627EHF is not set |
613 | # CONFIG_HWMON_DEBUG_CHIP is not set | 633 | # CONFIG_HWMON_DEBUG_CHIP is not set |
634 | # CONFIG_THERMAL is not set | ||
614 | CONFIG_WATCHDOG=y | 635 | CONFIG_WATCHDOG=y |
615 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 636 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
616 | 637 | ||
@@ -668,15 +689,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
668 | # | 689 | # |
669 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 690 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
670 | # | 691 | # |
671 | |||
672 | # | ||
673 | # USB Gadget Support | ||
674 | # | ||
675 | # CONFIG_USB_GADGET is not set | 692 | # CONFIG_USB_GADGET is not set |
676 | # CONFIG_MMC is not set | 693 | # CONFIG_MMC is not set |
694 | # CONFIG_MEMSTICK is not set | ||
677 | # CONFIG_NEW_LEDS is not set | 695 | # CONFIG_NEW_LEDS is not set |
678 | # CONFIG_EDAC is not set | 696 | # CONFIG_EDAC is not set |
679 | # CONFIG_RTC_CLASS is not set | 697 | # CONFIG_RTC_CLASS is not set |
698 | # CONFIG_DMADEVICES is not set | ||
680 | 699 | ||
681 | # | 700 | # |
682 | # Userspace I/O | 701 | # Userspace I/O |
@@ -702,12 +721,10 @@ CONFIG_FS_MBCACHE=y | |||
702 | # CONFIG_XFS_FS is not set | 721 | # CONFIG_XFS_FS is not set |
703 | # CONFIG_GFS2_FS is not set | 722 | # CONFIG_GFS2_FS is not set |
704 | # CONFIG_OCFS2_FS is not set | 723 | # CONFIG_OCFS2_FS is not set |
705 | # CONFIG_MINIX_FS is not set | 724 | CONFIG_DNOTIFY=y |
706 | # CONFIG_ROMFS_FS is not set | ||
707 | CONFIG_INOTIFY=y | 725 | CONFIG_INOTIFY=y |
708 | CONFIG_INOTIFY_USER=y | 726 | CONFIG_INOTIFY_USER=y |
709 | # CONFIG_QUOTA is not set | 727 | # CONFIG_QUOTA is not set |
710 | CONFIG_DNOTIFY=y | ||
711 | # CONFIG_AUTOFS_FS is not set | 728 | # CONFIG_AUTOFS_FS is not set |
712 | # CONFIG_AUTOFS4_FS is not set | 729 | # CONFIG_AUTOFS4_FS is not set |
713 | # CONFIG_FUSE_FS is not set | 730 | # CONFIG_FUSE_FS is not set |
@@ -749,8 +766,10 @@ CONFIG_TMPFS=y | |||
749 | # CONFIG_EFS_FS is not set | 766 | # CONFIG_EFS_FS is not set |
750 | # CONFIG_CRAMFS is not set | 767 | # CONFIG_CRAMFS is not set |
751 | # CONFIG_VXFS_FS is not set | 768 | # CONFIG_VXFS_FS is not set |
769 | # CONFIG_MINIX_FS is not set | ||
752 | # CONFIG_HPFS_FS is not set | 770 | # CONFIG_HPFS_FS is not set |
753 | # CONFIG_QNX4FS_FS is not set | 771 | # CONFIG_QNX4FS_FS is not set |
772 | # CONFIG_ROMFS_FS is not set | ||
754 | # CONFIG_SYSV_FS is not set | 773 | # CONFIG_SYSV_FS is not set |
755 | # CONFIG_UFS_FS is not set | 774 | # CONFIG_UFS_FS is not set |
756 | CONFIG_NETWORK_FILESYSTEMS=y | 775 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -813,10 +832,6 @@ CONFIG_PLIST=y | |||
813 | CONFIG_HAS_IOMEM=y | 832 | CONFIG_HAS_IOMEM=y |
814 | CONFIG_HAS_IOPORT=y | 833 | CONFIG_HAS_IOPORT=y |
815 | CONFIG_HAS_DMA=y | 834 | CONFIG_HAS_DMA=y |
816 | CONFIG_INSTRUMENTATION=y | ||
817 | # CONFIG_PROFILING is not set | ||
818 | # CONFIG_KPROBES is not set | ||
819 | # CONFIG_MARKERS is not set | ||
820 | 835 | ||
821 | # | 836 | # |
822 | # Kernel hacking | 837 | # Kernel hacking |
@@ -846,6 +861,7 @@ CONFIG_ASYNC_XOR=y | |||
846 | CONFIG_CRYPTO=y | 861 | CONFIG_CRYPTO=y |
847 | CONFIG_CRYPTO_ALGAPI=y | 862 | CONFIG_CRYPTO_ALGAPI=y |
848 | CONFIG_CRYPTO_BLKCIPHER=y | 863 | CONFIG_CRYPTO_BLKCIPHER=y |
864 | # CONFIG_CRYPTO_SEQIV is not set | ||
849 | CONFIG_CRYPTO_MANAGER=y | 865 | CONFIG_CRYPTO_MANAGER=y |
850 | # CONFIG_CRYPTO_HMAC is not set | 866 | # CONFIG_CRYPTO_HMAC is not set |
851 | # CONFIG_CRYPTO_XCBC is not set | 867 | # CONFIG_CRYPTO_XCBC is not set |
@@ -863,6 +879,9 @@ CONFIG_CRYPTO_CBC=y | |||
863 | CONFIG_CRYPTO_PCBC=m | 879 | CONFIG_CRYPTO_PCBC=m |
864 | # CONFIG_CRYPTO_LRW is not set | 880 | # CONFIG_CRYPTO_LRW is not set |
865 | # CONFIG_CRYPTO_XTS is not set | 881 | # CONFIG_CRYPTO_XTS is not set |
882 | # CONFIG_CRYPTO_CTR is not set | ||
883 | # CONFIG_CRYPTO_GCM is not set | ||
884 | # CONFIG_CRYPTO_CCM is not set | ||
866 | # CONFIG_CRYPTO_CRYPTD is not set | 885 | # CONFIG_CRYPTO_CRYPTD is not set |
867 | CONFIG_CRYPTO_DES=y | 886 | CONFIG_CRYPTO_DES=y |
868 | # CONFIG_CRYPTO_FCRYPT is not set | 887 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -877,11 +896,13 @@ CONFIG_CRYPTO_DES=y | |||
877 | # CONFIG_CRYPTO_KHAZAD is not set | 896 | # CONFIG_CRYPTO_KHAZAD is not set |
878 | # CONFIG_CRYPTO_ANUBIS is not set | 897 | # CONFIG_CRYPTO_ANUBIS is not set |
879 | # CONFIG_CRYPTO_SEED is not set | 898 | # CONFIG_CRYPTO_SEED is not set |
899 | # CONFIG_CRYPTO_SALSA20 is not set | ||
880 | # CONFIG_CRYPTO_DEFLATE is not set | 900 | # CONFIG_CRYPTO_DEFLATE is not set |
881 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 901 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
882 | # CONFIG_CRYPTO_CRC32C is not set | 902 | # CONFIG_CRYPTO_CRC32C is not set |
883 | # CONFIG_CRYPTO_CAMELLIA is not set | 903 | # CONFIG_CRYPTO_CAMELLIA is not set |
884 | # CONFIG_CRYPTO_TEST is not set | 904 | # CONFIG_CRYPTO_TEST is not set |
885 | # CONFIG_CRYPTO_AUTHENC is not set | 905 | # CONFIG_CRYPTO_AUTHENC is not set |
906 | # CONFIG_CRYPTO_LZO is not set | ||
886 | CONFIG_CRYPTO_HW=y | 907 | CONFIG_CRYPTO_HW=y |
887 | # CONFIG_PPC_CLOCK is not set | 908 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc83xx_defconfig b/arch/powerpc/configs/mpc83xx_defconfig index a9807f083bc4..1f6cf68e89f8 100644 --- a/arch/powerpc/configs/mpc83xx_defconfig +++ b/arch/powerpc/configs/mpc83xx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Mon Jan 28 13:14:19 2008 | 4 | # Mon Mar 24 08:48:25 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_6xx=y | |||
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
18 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
19 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
20 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -28,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
28 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
29 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
30 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
31 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
32 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
33 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -65,17 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
65 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
66 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
67 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
68 | # CONFIG_USER_NS is not set | ||
69 | # CONFIG_PID_NS is not set | ||
70 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
71 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
72 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
73 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
74 | CONFIG_FAIR_GROUP_SCHED=y | 75 | CONFIG_FAIR_GROUP_SCHED=y |
75 | CONFIG_FAIR_USER_SCHED=y | 76 | # CONFIG_RT_GROUP_SCHED is not set |
76 | # CONFIG_FAIR_CGROUP_SCHED is not set | 77 | CONFIG_USER_SCHED=y |
78 | # CONFIG_CGROUP_SCHED is not set | ||
77 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
78 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
79 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
80 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
81 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -88,17 +92,26 @@ CONFIG_HOTPLUG=y | |||
88 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
89 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
90 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
91 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
92 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
93 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
94 | # CONFIG_EPOLL is not set | 99 | # CONFIG_EPOLL is not set |
95 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
96 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
97 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
98 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
99 | CONFIG_SLAB=y | 105 | CONFIG_SLAB=y |
100 | # CONFIG_SLUB is not set | 106 | # CONFIG_SLUB is not set |
101 | # CONFIG_SLOB is not set | 107 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | ||
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | ||
111 | # CONFIG_KPROBES is not set | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
102 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
103 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
104 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
@@ -127,6 +140,7 @@ CONFIG_DEFAULT_AS=y | |||
127 | # CONFIG_DEFAULT_CFQ is not set | 140 | # CONFIG_DEFAULT_CFQ is not set |
128 | # CONFIG_DEFAULT_NOOP is not set | 141 | # CONFIG_DEFAULT_NOOP is not set |
129 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 142 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
143 | CONFIG_CLASSIC_RCU=y | ||
130 | 144 | ||
131 | # | 145 | # |
132 | # Platform support | 146 | # Platform support |
@@ -135,8 +149,8 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
135 | # CONFIG_PPC_82xx is not set | 149 | # CONFIG_PPC_82xx is not set |
136 | CONFIG_PPC_83xx=y | 150 | CONFIG_PPC_83xx=y |
137 | # CONFIG_PPC_86xx is not set | 151 | # CONFIG_PPC_86xx is not set |
138 | # CONFIG_PPC_MPC52xx is not set | 152 | # CONFIG_PPC_MPC512x is not set |
139 | # CONFIG_PPC_MPC5200 is not set | 153 | # CONFIG_PPC_MPC5121 is not set |
140 | # CONFIG_PPC_CELL is not set | 154 | # CONFIG_PPC_CELL is not set |
141 | # CONFIG_PPC_CELL_NATIVE is not set | 155 | # CONFIG_PPC_CELL_NATIVE is not set |
142 | # CONFIG_PQ2ADS is not set | 156 | # CONFIG_PQ2ADS is not set |
@@ -181,13 +195,17 @@ CONFIG_HZ_250=y | |||
181 | # CONFIG_HZ_300 is not set | 195 | # CONFIG_HZ_300 is not set |
182 | # CONFIG_HZ_1000 is not set | 196 | # CONFIG_HZ_1000 is not set |
183 | CONFIG_HZ=250 | 197 | CONFIG_HZ=250 |
198 | # CONFIG_SCHED_HRTICK is not set | ||
184 | CONFIG_PREEMPT_NONE=y | 199 | CONFIG_PREEMPT_NONE=y |
185 | # CONFIG_PREEMPT_VOLUNTARY is not set | 200 | # CONFIG_PREEMPT_VOLUNTARY is not set |
186 | # CONFIG_PREEMPT is not set | 201 | # CONFIG_PREEMPT is not set |
187 | CONFIG_BINFMT_ELF=y | 202 | CONFIG_BINFMT_ELF=y |
188 | # CONFIG_BINFMT_MISC is not set | 203 | # CONFIG_BINFMT_MISC is not set |
189 | CONFIG_MATH_EMULATION=y | 204 | CONFIG_MATH_EMULATION=y |
205 | # CONFIG_IOMMU_HELPER is not set | ||
190 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 206 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
207 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
191 | CONFIG_ARCH_FLATMEM_ENABLE=y | 209 | CONFIG_ARCH_FLATMEM_ENABLE=y |
192 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 210 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
193 | CONFIG_SELECT_MEMORY_MODEL=y | 211 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -206,11 +224,7 @@ CONFIG_VIRT_TO_BUS=y | |||
206 | CONFIG_PROC_DEVICETREE=y | 224 | CONFIG_PROC_DEVICETREE=y |
207 | # CONFIG_CMDLINE_BOOL is not set | 225 | # CONFIG_CMDLINE_BOOL is not set |
208 | # CONFIG_PM is not set | 226 | # CONFIG_PM is not set |
209 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
210 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
211 | CONFIG_SECCOMP=y | 227 | CONFIG_SECCOMP=y |
212 | CONFIG_WANT_DEVICE_TREE=y | ||
213 | CONFIG_DEVICE_TREE="" | ||
214 | CONFIG_ISA_DMA_API=y | 228 | CONFIG_ISA_DMA_API=y |
215 | 229 | ||
216 | # | 230 | # |
@@ -255,6 +269,7 @@ CONFIG_XFRM=y | |||
255 | CONFIG_XFRM_USER=m | 269 | CONFIG_XFRM_USER=m |
256 | # CONFIG_XFRM_SUB_POLICY is not set | 270 | # CONFIG_XFRM_SUB_POLICY is not set |
257 | # CONFIG_XFRM_MIGRATE is not set | 271 | # CONFIG_XFRM_MIGRATE is not set |
272 | # CONFIG_XFRM_STATISTICS is not set | ||
258 | # CONFIG_NET_KEY is not set | 273 | # CONFIG_NET_KEY is not set |
259 | CONFIG_INET=y | 274 | CONFIG_INET=y |
260 | CONFIG_IP_MULTICAST=y | 275 | CONFIG_IP_MULTICAST=y |
@@ -310,6 +325,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
310 | # | 325 | # |
311 | # CONFIG_NET_PKTGEN is not set | 326 | # CONFIG_NET_PKTGEN is not set |
312 | # CONFIG_HAMRADIO is not set | 327 | # CONFIG_HAMRADIO is not set |
328 | # CONFIG_CAN is not set | ||
313 | # CONFIG_IRDA is not set | 329 | # CONFIG_IRDA is not set |
314 | # CONFIG_BT is not set | 330 | # CONFIG_BT is not set |
315 | # CONFIG_AF_RXRPC is not set | 331 | # CONFIG_AF_RXRPC is not set |
@@ -349,11 +365,13 @@ CONFIG_BLK_DEV_LOOP=y | |||
349 | CONFIG_BLK_DEV_RAM=y | 365 | CONFIG_BLK_DEV_RAM=y |
350 | CONFIG_BLK_DEV_RAM_COUNT=16 | 366 | CONFIG_BLK_DEV_RAM_COUNT=16 |
351 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 367 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
352 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 368 | # CONFIG_BLK_DEV_XIP is not set |
353 | # CONFIG_CDROM_PKTCDVD is not set | 369 | # CONFIG_CDROM_PKTCDVD is not set |
354 | # CONFIG_ATA_OVER_ETH is not set | 370 | # CONFIG_ATA_OVER_ETH is not set |
355 | CONFIG_MISC_DEVICES=y | 371 | CONFIG_MISC_DEVICES=y |
356 | # CONFIG_EEPROM_93CX6 is not set | 372 | # CONFIG_EEPROM_93CX6 is not set |
373 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
374 | CONFIG_HAVE_IDE=y | ||
357 | # CONFIG_IDE is not set | 375 | # CONFIG_IDE is not set |
358 | 376 | ||
359 | # | 377 | # |
@@ -398,6 +416,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
398 | # CONFIG_SCSI_DEBUG is not set | 416 | # CONFIG_SCSI_DEBUG is not set |
399 | CONFIG_ATA=y | 417 | CONFIG_ATA=y |
400 | # CONFIG_ATA_NONSTANDARD is not set | 418 | # CONFIG_ATA_NONSTANDARD is not set |
419 | # CONFIG_SATA_MV is not set | ||
401 | CONFIG_SATA_FSL=y | 420 | CONFIG_SATA_FSL=y |
402 | # CONFIG_PATA_PLATFORM is not set | 421 | # CONFIG_PATA_PLATFORM is not set |
403 | # CONFIG_MD is not set | 422 | # CONFIG_MD is not set |
@@ -424,6 +443,7 @@ CONFIG_VITESSE_PHY=y | |||
424 | # CONFIG_SMSC_PHY is not set | 443 | # CONFIG_SMSC_PHY is not set |
425 | # CONFIG_BROADCOM_PHY is not set | 444 | # CONFIG_BROADCOM_PHY is not set |
426 | CONFIG_ICPLUS_PHY=y | 445 | CONFIG_ICPLUS_PHY=y |
446 | # CONFIG_REALTEK_PHY is not set | ||
427 | # CONFIG_FIXED_PHY is not set | 447 | # CONFIG_FIXED_PHY is not set |
428 | # CONFIG_MDIO_BITBANG is not set | 448 | # CONFIG_MDIO_BITBANG is not set |
429 | CONFIG_NET_ETHERNET=y | 449 | CONFIG_NET_ETHERNET=y |
@@ -434,9 +454,14 @@ CONFIG_MII=y | |||
434 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 454 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
435 | # CONFIG_B44 is not set | 455 | # CONFIG_B44 is not set |
436 | CONFIG_NETDEV_1000=y | 456 | CONFIG_NETDEV_1000=y |
457 | # CONFIG_E1000E_ENABLED is not set | ||
437 | CONFIG_GIANFAR=y | 458 | CONFIG_GIANFAR=y |
438 | # CONFIG_GFAR_NAPI is not set | 459 | # CONFIG_GFAR_NAPI is not set |
439 | CONFIG_UCC_GETH=y | 460 | CONFIG_UCC_GETH=y |
461 | # CONFIG_UGETH_NAPI is not set | ||
462 | # CONFIG_UGETH_MAGIC_PACKET is not set | ||
463 | # CONFIG_UGETH_FILTERING is not set | ||
464 | # CONFIG_UGETH_TX_ON_DEMAND is not set | ||
440 | CONFIG_NETDEV_10000=y | 465 | CONFIG_NETDEV_10000=y |
441 | 466 | ||
442 | # | 467 | # |
@@ -447,7 +472,6 @@ CONFIG_NETDEV_10000=y | |||
447 | # CONFIG_WAN is not set | 472 | # CONFIG_WAN is not set |
448 | # CONFIG_PPP is not set | 473 | # CONFIG_PPP is not set |
449 | # CONFIG_SLIP is not set | 474 | # CONFIG_SLIP is not set |
450 | # CONFIG_SHAPER is not set | ||
451 | # CONFIG_NETCONSOLE is not set | 475 | # CONFIG_NETCONSOLE is not set |
452 | # CONFIG_NETPOLL is not set | 476 | # CONFIG_NETPOLL is not set |
453 | # CONFIG_NET_POLL_CONTROLLER is not set | 477 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -543,14 +567,12 @@ CONFIG_I2C_MPC=y | |||
543 | # | 567 | # |
544 | # Miscellaneous I2C Chip support | 568 | # Miscellaneous I2C Chip support |
545 | # | 569 | # |
546 | # CONFIG_SENSORS_DS1337 is not set | ||
547 | # CONFIG_SENSORS_DS1374 is not set | ||
548 | # CONFIG_DS1682 is not set | 570 | # CONFIG_DS1682 is not set |
549 | # CONFIG_SENSORS_EEPROM is not set | 571 | # CONFIG_SENSORS_EEPROM is not set |
550 | # CONFIG_SENSORS_PCF8574 is not set | 572 | # CONFIG_SENSORS_PCF8574 is not set |
551 | # CONFIG_SENSORS_PCA9539 is not set | 573 | # CONFIG_PCF8575 is not set |
552 | # CONFIG_SENSORS_PCF8591 is not set | 574 | # CONFIG_SENSORS_PCF8591 is not set |
553 | # CONFIG_SENSORS_M41T00 is not set | 575 | # CONFIG_TPS65010 is not set |
554 | # CONFIG_SENSORS_MAX6875 is not set | 576 | # CONFIG_SENSORS_MAX6875 is not set |
555 | # CONFIG_SENSORS_TSL2550 is not set | 577 | # CONFIG_SENSORS_TSL2550 is not set |
556 | # CONFIG_I2C_DEBUG_CORE is not set | 578 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -575,6 +597,7 @@ CONFIG_HWMON=y | |||
575 | # CONFIG_SENSORS_ADM1031 is not set | 597 | # CONFIG_SENSORS_ADM1031 is not set |
576 | # CONFIG_SENSORS_ADM9240 is not set | 598 | # CONFIG_SENSORS_ADM9240 is not set |
577 | # CONFIG_SENSORS_ADT7470 is not set | 599 | # CONFIG_SENSORS_ADT7470 is not set |
600 | # CONFIG_SENSORS_ADT7473 is not set | ||
578 | # CONFIG_SENSORS_ATXP1 is not set | 601 | # CONFIG_SENSORS_ATXP1 is not set |
579 | # CONFIG_SENSORS_DS1621 is not set | 602 | # CONFIG_SENSORS_DS1621 is not set |
580 | # CONFIG_SENSORS_F71805F is not set | 603 | # CONFIG_SENSORS_F71805F is not set |
@@ -602,6 +625,7 @@ CONFIG_HWMON=y | |||
602 | # CONFIG_SENSORS_SMSC47M1 is not set | 625 | # CONFIG_SENSORS_SMSC47M1 is not set |
603 | # CONFIG_SENSORS_SMSC47M192 is not set | 626 | # CONFIG_SENSORS_SMSC47M192 is not set |
604 | # CONFIG_SENSORS_SMSC47B397 is not set | 627 | # CONFIG_SENSORS_SMSC47B397 is not set |
628 | # CONFIG_SENSORS_ADS7828 is not set | ||
605 | # CONFIG_SENSORS_THMC50 is not set | 629 | # CONFIG_SENSORS_THMC50 is not set |
606 | # CONFIG_SENSORS_VT1211 is not set | 630 | # CONFIG_SENSORS_VT1211 is not set |
607 | # CONFIG_SENSORS_W83781D is not set | 631 | # CONFIG_SENSORS_W83781D is not set |
@@ -609,9 +633,11 @@ CONFIG_HWMON=y | |||
609 | # CONFIG_SENSORS_W83792D is not set | 633 | # CONFIG_SENSORS_W83792D is not set |
610 | # CONFIG_SENSORS_W83793 is not set | 634 | # CONFIG_SENSORS_W83793 is not set |
611 | # CONFIG_SENSORS_W83L785TS is not set | 635 | # CONFIG_SENSORS_W83L785TS is not set |
636 | # CONFIG_SENSORS_W83L786NG is not set | ||
612 | # CONFIG_SENSORS_W83627HF is not set | 637 | # CONFIG_SENSORS_W83627HF is not set |
613 | # CONFIG_SENSORS_W83627EHF is not set | 638 | # CONFIG_SENSORS_W83627EHF is not set |
614 | # CONFIG_HWMON_DEBUG_CHIP is not set | 639 | # CONFIG_HWMON_DEBUG_CHIP is not set |
640 | # CONFIG_THERMAL is not set | ||
615 | CONFIG_WATCHDOG=y | 641 | CONFIG_WATCHDOG=y |
616 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 642 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
617 | 643 | ||
@@ -665,21 +691,17 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
665 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 691 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
666 | CONFIG_USB_ARCH_HAS_EHCI=y | 692 | CONFIG_USB_ARCH_HAS_EHCI=y |
667 | # CONFIG_USB is not set | 693 | # CONFIG_USB is not set |
668 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | ||
669 | CONFIG_USB_EHCI_FSL=y | ||
670 | 694 | ||
671 | # | 695 | # |
672 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 696 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
673 | # | 697 | # |
674 | |||
675 | # | ||
676 | # USB Gadget Support | ||
677 | # | ||
678 | # CONFIG_USB_GADGET is not set | 698 | # CONFIG_USB_GADGET is not set |
679 | # CONFIG_MMC is not set | 699 | # CONFIG_MMC is not set |
700 | # CONFIG_MEMSTICK is not set | ||
680 | # CONFIG_NEW_LEDS is not set | 701 | # CONFIG_NEW_LEDS is not set |
681 | # CONFIG_EDAC is not set | 702 | # CONFIG_EDAC is not set |
682 | # CONFIG_RTC_CLASS is not set | 703 | # CONFIG_RTC_CLASS is not set |
704 | # CONFIG_DMADEVICES is not set | ||
683 | 705 | ||
684 | # | 706 | # |
685 | # Userspace I/O | 707 | # Userspace I/O |
@@ -705,12 +727,10 @@ CONFIG_FS_MBCACHE=y | |||
705 | # CONFIG_XFS_FS is not set | 727 | # CONFIG_XFS_FS is not set |
706 | # CONFIG_GFS2_FS is not set | 728 | # CONFIG_GFS2_FS is not set |
707 | # CONFIG_OCFS2_FS is not set | 729 | # CONFIG_OCFS2_FS is not set |
708 | # CONFIG_MINIX_FS is not set | 730 | CONFIG_DNOTIFY=y |
709 | # CONFIG_ROMFS_FS is not set | ||
710 | CONFIG_INOTIFY=y | 731 | CONFIG_INOTIFY=y |
711 | CONFIG_INOTIFY_USER=y | 732 | CONFIG_INOTIFY_USER=y |
712 | # CONFIG_QUOTA is not set | 733 | # CONFIG_QUOTA is not set |
713 | CONFIG_DNOTIFY=y | ||
714 | # CONFIG_AUTOFS_FS is not set | 734 | # CONFIG_AUTOFS_FS is not set |
715 | # CONFIG_AUTOFS4_FS is not set | 735 | # CONFIG_AUTOFS4_FS is not set |
716 | # CONFIG_FUSE_FS is not set | 736 | # CONFIG_FUSE_FS is not set |
@@ -752,8 +772,10 @@ CONFIG_TMPFS=y | |||
752 | # CONFIG_EFS_FS is not set | 772 | # CONFIG_EFS_FS is not set |
753 | # CONFIG_CRAMFS is not set | 773 | # CONFIG_CRAMFS is not set |
754 | # CONFIG_VXFS_FS is not set | 774 | # CONFIG_VXFS_FS is not set |
775 | # CONFIG_MINIX_FS is not set | ||
755 | # CONFIG_HPFS_FS is not set | 776 | # CONFIG_HPFS_FS is not set |
756 | # CONFIG_QNX4FS_FS is not set | 777 | # CONFIG_QNX4FS_FS is not set |
778 | # CONFIG_ROMFS_FS is not set | ||
757 | # CONFIG_SYSV_FS is not set | 779 | # CONFIG_SYSV_FS is not set |
758 | # CONFIG_UFS_FS is not set | 780 | # CONFIG_UFS_FS is not set |
759 | CONFIG_NETWORK_FILESYSTEMS=y | 781 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -801,6 +823,8 @@ CONFIG_MSDOS_PARTITION=y | |||
801 | # CONFIG_SYSV68_PARTITION is not set | 823 | # CONFIG_SYSV68_PARTITION is not set |
802 | # CONFIG_NLS is not set | 824 | # CONFIG_NLS is not set |
803 | # CONFIG_DLM is not set | 825 | # CONFIG_DLM is not set |
826 | CONFIG_UCC_FAST=y | ||
827 | CONFIG_UCC=y | ||
804 | 828 | ||
805 | # | 829 | # |
806 | # Library routines | 830 | # Library routines |
@@ -816,10 +840,6 @@ CONFIG_PLIST=y | |||
816 | CONFIG_HAS_IOMEM=y | 840 | CONFIG_HAS_IOMEM=y |
817 | CONFIG_HAS_IOPORT=y | 841 | CONFIG_HAS_IOPORT=y |
818 | CONFIG_HAS_DMA=y | 842 | CONFIG_HAS_DMA=y |
819 | CONFIG_INSTRUMENTATION=y | ||
820 | # CONFIG_PROFILING is not set | ||
821 | # CONFIG_KPROBES is not set | ||
822 | # CONFIG_MARKERS is not set | ||
823 | 843 | ||
824 | # | 844 | # |
825 | # Kernel hacking | 845 | # Kernel hacking |
@@ -845,6 +865,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
845 | CONFIG_CRYPTO=y | 865 | CONFIG_CRYPTO=y |
846 | CONFIG_CRYPTO_ALGAPI=y | 866 | CONFIG_CRYPTO_ALGAPI=y |
847 | CONFIG_CRYPTO_BLKCIPHER=y | 867 | CONFIG_CRYPTO_BLKCIPHER=y |
868 | # CONFIG_CRYPTO_SEQIV is not set | ||
848 | CONFIG_CRYPTO_MANAGER=y | 869 | CONFIG_CRYPTO_MANAGER=y |
849 | # CONFIG_CRYPTO_HMAC is not set | 870 | # CONFIG_CRYPTO_HMAC is not set |
850 | # CONFIG_CRYPTO_XCBC is not set | 871 | # CONFIG_CRYPTO_XCBC is not set |
@@ -862,6 +883,9 @@ CONFIG_CRYPTO_CBC=y | |||
862 | CONFIG_CRYPTO_PCBC=m | 883 | CONFIG_CRYPTO_PCBC=m |
863 | # CONFIG_CRYPTO_LRW is not set | 884 | # CONFIG_CRYPTO_LRW is not set |
864 | # CONFIG_CRYPTO_XTS is not set | 885 | # CONFIG_CRYPTO_XTS is not set |
886 | # CONFIG_CRYPTO_CTR is not set | ||
887 | # CONFIG_CRYPTO_GCM is not set | ||
888 | # CONFIG_CRYPTO_CCM is not set | ||
865 | # CONFIG_CRYPTO_CRYPTD is not set | 889 | # CONFIG_CRYPTO_CRYPTD is not set |
866 | CONFIG_CRYPTO_DES=y | 890 | CONFIG_CRYPTO_DES=y |
867 | # CONFIG_CRYPTO_FCRYPT is not set | 891 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -876,12 +900,14 @@ CONFIG_CRYPTO_DES=y | |||
876 | # CONFIG_CRYPTO_KHAZAD is not set | 900 | # CONFIG_CRYPTO_KHAZAD is not set |
877 | # CONFIG_CRYPTO_ANUBIS is not set | 901 | # CONFIG_CRYPTO_ANUBIS is not set |
878 | # CONFIG_CRYPTO_SEED is not set | 902 | # CONFIG_CRYPTO_SEED is not set |
903 | # CONFIG_CRYPTO_SALSA20 is not set | ||
879 | # CONFIG_CRYPTO_DEFLATE is not set | 904 | # CONFIG_CRYPTO_DEFLATE is not set |
880 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 905 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
881 | # CONFIG_CRYPTO_CRC32C is not set | 906 | # CONFIG_CRYPTO_CRC32C is not set |
882 | # CONFIG_CRYPTO_CAMELLIA is not set | 907 | # CONFIG_CRYPTO_CAMELLIA is not set |
883 | # CONFIG_CRYPTO_TEST is not set | 908 | # CONFIG_CRYPTO_TEST is not set |
884 | # CONFIG_CRYPTO_AUTHENC is not set | 909 | # CONFIG_CRYPTO_AUTHENC is not set |
910 | # CONFIG_CRYPTO_LZO is not set | ||
885 | CONFIG_CRYPTO_HW=y | 911 | CONFIG_CRYPTO_HW=y |
886 | # CONFIG_PPC_CLOCK is not set | 912 | # CONFIG_PPC_CLOCK is not set |
887 | CONFIG_PPC_LIB_RHEAP=y | 913 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc8540_ads_defconfig b/arch/powerpc/configs/mpc8540_ads_defconfig index 3791e29e7d06..b998539da86e 100644 --- a/arch/powerpc/configs/mpc8540_ads_defconfig +++ b/arch/powerpc/configs/mpc8540_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:44 2007 | 4 | # Mon Mar 24 08:48:25 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,15 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | # CONFIG_FAIR_GROUP_SCHED is not set | 76 | # CONFIG_FAIR_GROUP_SCHED is not set |
77 | # CONFIG_RT_GROUP_SCHED is not set | ||
78 | CONFIG_USER_SCHED=y | ||
79 | # CONFIG_CGROUP_SCHED is not set | ||
77 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
78 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
79 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
80 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
81 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +94,13 @@ CONFIG_HOTPLUG=y | |||
89 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
97 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 100 | CONFIG_ANON_INODES=y |
95 | CONFIG_EPOLL=y | 101 | CONFIG_EPOLL=y |
96 | CONFIG_SIGNALFD=y | 102 | CONFIG_SIGNALFD=y |
103 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 104 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +108,13 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 108 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | ||
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | ||
114 | CONFIG_HAVE_KPROBES=y | ||
115 | CONFIG_HAVE_KRETPROBES=y | ||
116 | CONFIG_PROC_PAGE_MONITOR=y | ||
117 | CONFIG_SLABINFO=y | ||
104 | CONFIG_RT_MUTEXES=y | 118 | CONFIG_RT_MUTEXES=y |
105 | # CONFIG_TINY_SHMEM is not set | 119 | # CONFIG_TINY_SHMEM is not set |
106 | CONFIG_BASE_SMALL=0 | 120 | CONFIG_BASE_SMALL=0 |
@@ -123,22 +137,30 @@ CONFIG_DEFAULT_AS=y | |||
123 | # CONFIG_DEFAULT_CFQ is not set | 137 | # CONFIG_DEFAULT_CFQ is not set |
124 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
125 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
140 | CONFIG_CLASSIC_RCU=y | ||
126 | 141 | ||
127 | # | 142 | # |
128 | # Platform support | 143 | # Platform support |
129 | # | 144 | # |
130 | # CONFIG_PPC_MPC52xx is not set | 145 | # CONFIG_PPC_MPC512x is not set |
131 | # CONFIG_PPC_MPC5200 is not set | 146 | # CONFIG_PPC_MPC5121 is not set |
132 | # CONFIG_PPC_CELL is not set | 147 | # CONFIG_PPC_CELL is not set |
133 | # CONFIG_PPC_CELL_NATIVE is not set | 148 | # CONFIG_PPC_CELL_NATIVE is not set |
134 | # CONFIG_PQ2ADS is not set | 149 | # CONFIG_PQ2ADS is not set |
150 | CONFIG_MPC85xx=y | ||
135 | CONFIG_MPC8540_ADS=y | 151 | CONFIG_MPC8540_ADS=y |
136 | # CONFIG_MPC8560_ADS is not set | 152 | # CONFIG_MPC8560_ADS is not set |
137 | # CONFIG_MPC85xx_CDS is not set | 153 | # CONFIG_MPC85xx_CDS is not set |
138 | # CONFIG_MPC85xx_MDS is not set | 154 | # CONFIG_MPC85xx_MDS is not set |
139 | # CONFIG_MPC85xx_DS is not set | 155 | # CONFIG_MPC85xx_DS is not set |
140 | CONFIG_MPC8540=y | 156 | # CONFIG_STX_GP3 is not set |
141 | CONFIG_MPC85xx=y | 157 | # CONFIG_TQM8540 is not set |
158 | # CONFIG_TQM8541 is not set | ||
159 | # CONFIG_TQM8555 is not set | ||
160 | # CONFIG_TQM8560 is not set | ||
161 | # CONFIG_SBC8548 is not set | ||
162 | # CONFIG_SBC8560 is not set | ||
163 | # CONFIG_IPIC is not set | ||
142 | CONFIG_MPIC=y | 164 | CONFIG_MPIC=y |
143 | # CONFIG_MPIC_WEIRD is not set | 165 | # CONFIG_MPIC_WEIRD is not set |
144 | # CONFIG_PPC_I8259 is not set | 166 | # CONFIG_PPC_I8259 is not set |
@@ -165,13 +187,17 @@ CONFIG_HZ_250=y | |||
165 | # CONFIG_HZ_300 is not set | 187 | # CONFIG_HZ_300 is not set |
166 | # CONFIG_HZ_1000 is not set | 188 | # CONFIG_HZ_1000 is not set |
167 | CONFIG_HZ=250 | 189 | CONFIG_HZ=250 |
190 | # CONFIG_SCHED_HRTICK is not set | ||
168 | CONFIG_PREEMPT_NONE=y | 191 | CONFIG_PREEMPT_NONE=y |
169 | # CONFIG_PREEMPT_VOLUNTARY is not set | 192 | # CONFIG_PREEMPT_VOLUNTARY is not set |
170 | # CONFIG_PREEMPT is not set | 193 | # CONFIG_PREEMPT is not set |
171 | CONFIG_BINFMT_ELF=y | 194 | CONFIG_BINFMT_ELF=y |
172 | CONFIG_BINFMT_MISC=y | 195 | CONFIG_BINFMT_MISC=y |
173 | CONFIG_MATH_EMULATION=y | 196 | CONFIG_MATH_EMULATION=y |
197 | # CONFIG_IOMMU_HELPER is not set | ||
174 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 198 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
199 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
200 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
175 | CONFIG_ARCH_FLATMEM_ENABLE=y | 201 | CONFIG_ARCH_FLATMEM_ENABLE=y |
176 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 202 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
177 | CONFIG_SELECT_MEMORY_MODEL=y | 203 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -190,18 +216,13 @@ CONFIG_VIRT_TO_BUS=y | |||
190 | CONFIG_PROC_DEVICETREE=y | 216 | CONFIG_PROC_DEVICETREE=y |
191 | # CONFIG_CMDLINE_BOOL is not set | 217 | # CONFIG_CMDLINE_BOOL is not set |
192 | # CONFIG_PM is not set | 218 | # CONFIG_PM is not set |
193 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
194 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
195 | # CONFIG_SECCOMP is not set | 219 | # CONFIG_SECCOMP is not set |
196 | CONFIG_WANT_DEVICE_TREE=y | ||
197 | CONFIG_DEVICE_TREE="" | ||
198 | CONFIG_ISA_DMA_API=y | 220 | CONFIG_ISA_DMA_API=y |
199 | 221 | ||
200 | # | 222 | # |
201 | # Bus options | 223 | # Bus options |
202 | # | 224 | # |
203 | CONFIG_ZONE_DMA=y | 225 | CONFIG_ZONE_DMA=y |
204 | CONFIG_PPC_INDIRECT_PCI=y | ||
205 | CONFIG_FSL_SOC=y | 226 | CONFIG_FSL_SOC=y |
206 | # CONFIG_PCI is not set | 227 | # CONFIG_PCI is not set |
207 | # CONFIG_PCI_DOMAINS is not set | 228 | # CONFIG_PCI_DOMAINS is not set |
@@ -238,6 +259,7 @@ CONFIG_XFRM=y | |||
238 | CONFIG_XFRM_USER=y | 259 | CONFIG_XFRM_USER=y |
239 | # CONFIG_XFRM_SUB_POLICY is not set | 260 | # CONFIG_XFRM_SUB_POLICY is not set |
240 | # CONFIG_XFRM_MIGRATE is not set | 261 | # CONFIG_XFRM_MIGRATE is not set |
262 | # CONFIG_XFRM_STATISTICS is not set | ||
241 | # CONFIG_NET_KEY is not set | 263 | # CONFIG_NET_KEY is not set |
242 | CONFIG_INET=y | 264 | CONFIG_INET=y |
243 | CONFIG_IP_MULTICAST=y | 265 | CONFIG_IP_MULTICAST=y |
@@ -293,6 +315,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
293 | # | 315 | # |
294 | # CONFIG_NET_PKTGEN is not set | 316 | # CONFIG_NET_PKTGEN is not set |
295 | # CONFIG_HAMRADIO is not set | 317 | # CONFIG_HAMRADIO is not set |
318 | # CONFIG_CAN is not set | ||
296 | # CONFIG_IRDA is not set | 319 | # CONFIG_IRDA is not set |
297 | # CONFIG_BT is not set | 320 | # CONFIG_BT is not set |
298 | # CONFIG_AF_RXRPC is not set | 321 | # CONFIG_AF_RXRPC is not set |
@@ -334,11 +357,13 @@ CONFIG_BLK_DEV_LOOP=y | |||
334 | CONFIG_BLK_DEV_RAM=y | 357 | CONFIG_BLK_DEV_RAM=y |
335 | CONFIG_BLK_DEV_RAM_COUNT=16 | 358 | CONFIG_BLK_DEV_RAM_COUNT=16 |
336 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 359 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
337 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 360 | # CONFIG_BLK_DEV_XIP is not set |
338 | # CONFIG_CDROM_PKTCDVD is not set | 361 | # CONFIG_CDROM_PKTCDVD is not set |
339 | # CONFIG_ATA_OVER_ETH is not set | 362 | # CONFIG_ATA_OVER_ETH is not set |
340 | CONFIG_MISC_DEVICES=y | 363 | CONFIG_MISC_DEVICES=y |
341 | # CONFIG_EEPROM_93CX6 is not set | 364 | # CONFIG_EEPROM_93CX6 is not set |
365 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
366 | CONFIG_HAVE_IDE=y | ||
342 | # CONFIG_IDE is not set | 367 | # CONFIG_IDE is not set |
343 | 368 | ||
344 | # | 369 | # |
@@ -373,6 +398,7 @@ CONFIG_PHYLIB=y | |||
373 | # CONFIG_SMSC_PHY is not set | 398 | # CONFIG_SMSC_PHY is not set |
374 | # CONFIG_BROADCOM_PHY is not set | 399 | # CONFIG_BROADCOM_PHY is not set |
375 | # CONFIG_ICPLUS_PHY is not set | 400 | # CONFIG_ICPLUS_PHY is not set |
401 | # CONFIG_REALTEK_PHY is not set | ||
376 | # CONFIG_FIXED_PHY is not set | 402 | # CONFIG_FIXED_PHY is not set |
377 | # CONFIG_MDIO_BITBANG is not set | 403 | # CONFIG_MDIO_BITBANG is not set |
378 | CONFIG_NET_ETHERNET=y | 404 | CONFIG_NET_ETHERNET=y |
@@ -383,6 +409,7 @@ CONFIG_MII=y | |||
383 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 409 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
384 | # CONFIG_B44 is not set | 410 | # CONFIG_B44 is not set |
385 | CONFIG_NETDEV_1000=y | 411 | CONFIG_NETDEV_1000=y |
412 | # CONFIG_E1000E_ENABLED is not set | ||
386 | CONFIG_GIANFAR=y | 413 | CONFIG_GIANFAR=y |
387 | CONFIG_GFAR_NAPI=y | 414 | CONFIG_GFAR_NAPI=y |
388 | CONFIG_NETDEV_10000=y | 415 | CONFIG_NETDEV_10000=y |
@@ -395,7 +422,6 @@ CONFIG_NETDEV_10000=y | |||
395 | # CONFIG_WAN is not set | 422 | # CONFIG_WAN is not set |
396 | # CONFIG_PPP is not set | 423 | # CONFIG_PPP is not set |
397 | # CONFIG_SLIP is not set | 424 | # CONFIG_SLIP is not set |
398 | # CONFIG_SHAPER is not set | ||
399 | # CONFIG_NETCONSOLE is not set | 425 | # CONFIG_NETCONSOLE is not set |
400 | # CONFIG_NETPOLL is not set | 426 | # CONFIG_NETPOLL is not set |
401 | # CONFIG_NET_POLL_CONTROLLER is not set | 427 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -489,6 +515,7 @@ CONFIG_HWMON=y | |||
489 | # CONFIG_SENSORS_W83627HF is not set | 515 | # CONFIG_SENSORS_W83627HF is not set |
490 | # CONFIG_SENSORS_W83627EHF is not set | 516 | # CONFIG_SENSORS_W83627EHF is not set |
491 | # CONFIG_HWMON_DEBUG_CHIP is not set | 517 | # CONFIG_HWMON_DEBUG_CHIP is not set |
518 | # CONFIG_THERMAL is not set | ||
492 | # CONFIG_WATCHDOG is not set | 519 | # CONFIG_WATCHDOG is not set |
493 | 520 | ||
494 | # | 521 | # |
@@ -538,15 +565,13 @@ CONFIG_USB_SUPPORT=y | |||
538 | # | 565 | # |
539 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 566 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
540 | # | 567 | # |
541 | |||
542 | # | ||
543 | # USB Gadget Support | ||
544 | # | ||
545 | # CONFIG_USB_GADGET is not set | 568 | # CONFIG_USB_GADGET is not set |
546 | # CONFIG_MMC is not set | 569 | # CONFIG_MMC is not set |
570 | # CONFIG_MEMSTICK is not set | ||
547 | # CONFIG_NEW_LEDS is not set | 571 | # CONFIG_NEW_LEDS is not set |
548 | # CONFIG_EDAC is not set | 572 | # CONFIG_EDAC is not set |
549 | # CONFIG_RTC_CLASS is not set | 573 | # CONFIG_RTC_CLASS is not set |
574 | # CONFIG_DMADEVICES is not set | ||
550 | 575 | ||
551 | # | 576 | # |
552 | # Userspace I/O | 577 | # Userspace I/O |
@@ -572,12 +597,10 @@ CONFIG_FS_MBCACHE=y | |||
572 | # CONFIG_XFS_FS is not set | 597 | # CONFIG_XFS_FS is not set |
573 | # CONFIG_GFS2_FS is not set | 598 | # CONFIG_GFS2_FS is not set |
574 | # CONFIG_OCFS2_FS is not set | 599 | # CONFIG_OCFS2_FS is not set |
575 | # CONFIG_MINIX_FS is not set | 600 | CONFIG_DNOTIFY=y |
576 | # CONFIG_ROMFS_FS is not set | ||
577 | CONFIG_INOTIFY=y | 601 | CONFIG_INOTIFY=y |
578 | CONFIG_INOTIFY_USER=y | 602 | CONFIG_INOTIFY_USER=y |
579 | # CONFIG_QUOTA is not set | 603 | # CONFIG_QUOTA is not set |
580 | CONFIG_DNOTIFY=y | ||
581 | # CONFIG_AUTOFS_FS is not set | 604 | # CONFIG_AUTOFS_FS is not set |
582 | # CONFIG_AUTOFS4_FS is not set | 605 | # CONFIG_AUTOFS4_FS is not set |
583 | # CONFIG_FUSE_FS is not set | 606 | # CONFIG_FUSE_FS is not set |
@@ -619,8 +642,10 @@ CONFIG_TMPFS=y | |||
619 | # CONFIG_EFS_FS is not set | 642 | # CONFIG_EFS_FS is not set |
620 | # CONFIG_CRAMFS is not set | 643 | # CONFIG_CRAMFS is not set |
621 | # CONFIG_VXFS_FS is not set | 644 | # CONFIG_VXFS_FS is not set |
645 | # CONFIG_MINIX_FS is not set | ||
622 | # CONFIG_HPFS_FS is not set | 646 | # CONFIG_HPFS_FS is not set |
623 | # CONFIG_QNX4FS_FS is not set | 647 | # CONFIG_QNX4FS_FS is not set |
648 | # CONFIG_ROMFS_FS is not set | ||
624 | # CONFIG_SYSV_FS is not set | 649 | # CONFIG_SYSV_FS is not set |
625 | # CONFIG_UFS_FS is not set | 650 | # CONFIG_UFS_FS is not set |
626 | CONFIG_NETWORK_FILESYSTEMS=y | 651 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -661,7 +686,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
661 | # CONFIG_SYSV68_PARTITION is not set | 686 | # CONFIG_SYSV68_PARTITION is not set |
662 | # CONFIG_NLS is not set | 687 | # CONFIG_NLS is not set |
663 | # CONFIG_DLM is not set | 688 | # CONFIG_DLM is not set |
664 | # CONFIG_UCC_SLOW is not set | ||
665 | 689 | ||
666 | # | 690 | # |
667 | # Library routines | 691 | # Library routines |
@@ -677,7 +701,6 @@ CONFIG_PLIST=y | |||
677 | CONFIG_HAS_IOMEM=y | 701 | CONFIG_HAS_IOMEM=y |
678 | CONFIG_HAS_IOPORT=y | 702 | CONFIG_HAS_IOPORT=y |
679 | CONFIG_HAS_DMA=y | 703 | CONFIG_HAS_DMA=y |
680 | # CONFIG_INSTRUMENTATION is not set | ||
681 | 704 | ||
682 | # | 705 | # |
683 | # Kernel hacking | 706 | # Kernel hacking |
@@ -696,6 +719,7 @@ CONFIG_SCHED_DEBUG=y | |||
696 | # CONFIG_SCHEDSTATS is not set | 719 | # CONFIG_SCHEDSTATS is not set |
697 | # CONFIG_TIMER_STATS is not set | 720 | # CONFIG_TIMER_STATS is not set |
698 | # CONFIG_SLUB_DEBUG_ON is not set | 721 | # CONFIG_SLUB_DEBUG_ON is not set |
722 | # CONFIG_SLUB_STATS is not set | ||
699 | # CONFIG_DEBUG_RT_MUTEXES is not set | 723 | # CONFIG_DEBUG_RT_MUTEXES is not set |
700 | # CONFIG_RT_MUTEX_TESTER is not set | 724 | # CONFIG_RT_MUTEX_TESTER is not set |
701 | # CONFIG_DEBUG_SPINLOCK is not set | 725 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -708,8 +732,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
708 | # CONFIG_DEBUG_VM is not set | 732 | # CONFIG_DEBUG_VM is not set |
709 | # CONFIG_DEBUG_LIST is not set | 733 | # CONFIG_DEBUG_LIST is not set |
710 | # CONFIG_DEBUG_SG is not set | 734 | # CONFIG_DEBUG_SG is not set |
711 | CONFIG_FORCED_INLINING=y | ||
712 | # CONFIG_BOOT_PRINTK_DELAY is not set | 735 | # CONFIG_BOOT_PRINTK_DELAY is not set |
736 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
713 | # CONFIG_FAULT_INJECTION is not set | 737 | # CONFIG_FAULT_INJECTION is not set |
714 | # CONFIG_SAMPLES is not set | 738 | # CONFIG_SAMPLES is not set |
715 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 739 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -725,5 +749,48 @@ CONFIG_FORCED_INLINING=y | |||
725 | # CONFIG_KEYS is not set | 749 | # CONFIG_KEYS is not set |
726 | # CONFIG_SECURITY is not set | 750 | # CONFIG_SECURITY is not set |
727 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 751 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
728 | # CONFIG_CRYPTO is not set | 752 | CONFIG_CRYPTO=y |
753 | # CONFIG_CRYPTO_SEQIV is not set | ||
754 | # CONFIG_CRYPTO_MANAGER is not set | ||
755 | # CONFIG_CRYPTO_HMAC is not set | ||
756 | # CONFIG_CRYPTO_XCBC is not set | ||
757 | # CONFIG_CRYPTO_NULL is not set | ||
758 | # CONFIG_CRYPTO_MD4 is not set | ||
759 | # CONFIG_CRYPTO_MD5 is not set | ||
760 | # CONFIG_CRYPTO_SHA1 is not set | ||
761 | # CONFIG_CRYPTO_SHA256 is not set | ||
762 | # CONFIG_CRYPTO_SHA512 is not set | ||
763 | # CONFIG_CRYPTO_WP512 is not set | ||
764 | # CONFIG_CRYPTO_TGR192 is not set | ||
765 | # CONFIG_CRYPTO_GF128MUL is not set | ||
766 | # CONFIG_CRYPTO_ECB is not set | ||
767 | # CONFIG_CRYPTO_CBC is not set | ||
768 | # CONFIG_CRYPTO_PCBC is not set | ||
769 | # CONFIG_CRYPTO_LRW is not set | ||
770 | # CONFIG_CRYPTO_XTS is not set | ||
771 | # CONFIG_CRYPTO_CTR is not set | ||
772 | # CONFIG_CRYPTO_GCM is not set | ||
773 | # CONFIG_CRYPTO_CCM is not set | ||
774 | # CONFIG_CRYPTO_CRYPTD is not set | ||
775 | # CONFIG_CRYPTO_DES is not set | ||
776 | # CONFIG_CRYPTO_FCRYPT is not set | ||
777 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
778 | # CONFIG_CRYPTO_TWOFISH is not set | ||
779 | # CONFIG_CRYPTO_SERPENT is not set | ||
780 | # CONFIG_CRYPTO_AES is not set | ||
781 | # CONFIG_CRYPTO_CAST5 is not set | ||
782 | # CONFIG_CRYPTO_CAST6 is not set | ||
783 | # CONFIG_CRYPTO_TEA is not set | ||
784 | # CONFIG_CRYPTO_ARC4 is not set | ||
785 | # CONFIG_CRYPTO_KHAZAD is not set | ||
786 | # CONFIG_CRYPTO_ANUBIS is not set | ||
787 | # CONFIG_CRYPTO_SEED is not set | ||
788 | # CONFIG_CRYPTO_SALSA20 is not set | ||
789 | # CONFIG_CRYPTO_DEFLATE is not set | ||
790 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
791 | # CONFIG_CRYPTO_CRC32C is not set | ||
792 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
793 | # CONFIG_CRYPTO_AUTHENC is not set | ||
794 | # CONFIG_CRYPTO_LZO is not set | ||
795 | CONFIG_CRYPTO_HW=y | ||
729 | # CONFIG_PPC_CLOCK is not set | 796 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc8544_ds_defconfig b/arch/powerpc/configs/mpc8544_ds_defconfig index 18623a8ee75c..c75b6aee76d1 100644 --- a/arch/powerpc/configs/mpc8544_ds_defconfig +++ b/arch/powerpc/configs/mpc8544_ds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:46 2007 | 4 | # Mon Mar 24 08:48:26 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -68,17 +69,21 @@ CONFIG_POSIX_MQUEUE=y | |||
68 | CONFIG_BSD_PROCESS_ACCT=y | 69 | CONFIG_BSD_PROCESS_ACCT=y |
69 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 70 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
71 | # CONFIG_USER_NS is not set | ||
72 | # CONFIG_PID_NS is not set | ||
73 | CONFIG_AUDIT=y | 72 | CONFIG_AUDIT=y |
74 | # CONFIG_AUDITSYSCALL is not set | 73 | # CONFIG_AUDITSYSCALL is not set |
75 | CONFIG_IKCONFIG=y | 74 | CONFIG_IKCONFIG=y |
76 | CONFIG_IKCONFIG_PROC=y | 75 | CONFIG_IKCONFIG_PROC=y |
77 | CONFIG_LOG_BUF_SHIFT=14 | 76 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | 77 | # CONFIG_CGROUPS is not set |
78 | CONFIG_GROUP_SCHED=y | ||
79 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
80 | # CONFIG_RT_GROUP_SCHED is not set | ||
81 | CONFIG_USER_SCHED=y | ||
82 | # CONFIG_CGROUP_SCHED is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
81 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
86 | # CONFIG_NAMESPACES is not set | ||
82 | CONFIG_BLK_DEV_INITRD=y | 87 | CONFIG_BLK_DEV_INITRD=y |
83 | CONFIG_INITRAMFS_SOURCE="" | 88 | CONFIG_INITRAMFS_SOURCE="" |
84 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 89 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -92,11 +97,13 @@ CONFIG_HOTPLUG=y | |||
92 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
93 | CONFIG_BUG=y | 98 | CONFIG_BUG=y |
94 | CONFIG_ELF_CORE=y | 99 | CONFIG_ELF_CORE=y |
100 | CONFIG_COMPAT_BRK=y | ||
95 | CONFIG_BASE_FULL=y | 101 | CONFIG_BASE_FULL=y |
96 | CONFIG_FUTEX=y | 102 | CONFIG_FUTEX=y |
97 | CONFIG_ANON_INODES=y | 103 | CONFIG_ANON_INODES=y |
98 | CONFIG_EPOLL=y | 104 | CONFIG_EPOLL=y |
99 | CONFIG_SIGNALFD=y | 105 | CONFIG_SIGNALFD=y |
106 | CONFIG_TIMERFD=y | ||
100 | CONFIG_EVENTFD=y | 107 | CONFIG_EVENTFD=y |
101 | CONFIG_SHMEM=y | 108 | CONFIG_SHMEM=y |
102 | CONFIG_VM_EVENT_COUNTERS=y | 109 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -104,6 +111,14 @@ CONFIG_SLUB_DEBUG=y | |||
104 | # CONFIG_SLAB is not set | 111 | # CONFIG_SLAB is not set |
105 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
106 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | ||
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | ||
117 | # CONFIG_KPROBES is not set | ||
118 | CONFIG_HAVE_KPROBES=y | ||
119 | CONFIG_HAVE_KRETPROBES=y | ||
120 | CONFIG_PROC_PAGE_MONITOR=y | ||
121 | CONFIG_SLABINFO=y | ||
107 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
108 | # CONFIG_TINY_SHMEM is not set | 123 | # CONFIG_TINY_SHMEM is not set |
109 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
@@ -131,21 +146,30 @@ CONFIG_IOSCHED_CFQ=y | |||
131 | CONFIG_DEFAULT_CFQ=y | 146 | CONFIG_DEFAULT_CFQ=y |
132 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
133 | CONFIG_DEFAULT_IOSCHED="cfq" | 148 | CONFIG_DEFAULT_IOSCHED="cfq" |
149 | CONFIG_CLASSIC_RCU=y | ||
134 | 150 | ||
135 | # | 151 | # |
136 | # Platform support | 152 | # Platform support |
137 | # | 153 | # |
138 | # CONFIG_PPC_MPC52xx is not set | 154 | # CONFIG_PPC_MPC512x is not set |
139 | # CONFIG_PPC_MPC5200 is not set | 155 | # CONFIG_PPC_MPC5121 is not set |
140 | # CONFIG_PPC_CELL is not set | 156 | # CONFIG_PPC_CELL is not set |
141 | # CONFIG_PPC_CELL_NATIVE is not set | 157 | # CONFIG_PPC_CELL_NATIVE is not set |
142 | # CONFIG_PQ2ADS is not set | 158 | # CONFIG_PQ2ADS is not set |
159 | CONFIG_MPC85xx=y | ||
143 | # CONFIG_MPC8540_ADS is not set | 160 | # CONFIG_MPC8540_ADS is not set |
144 | # CONFIG_MPC8560_ADS is not set | 161 | # CONFIG_MPC8560_ADS is not set |
145 | # CONFIG_MPC85xx_CDS is not set | 162 | # CONFIG_MPC85xx_CDS is not set |
146 | # CONFIG_MPC85xx_MDS is not set | 163 | # CONFIG_MPC85xx_MDS is not set |
147 | CONFIG_MPC85xx_DS=y | 164 | CONFIG_MPC85xx_DS=y |
148 | CONFIG_MPC85xx=y | 165 | # CONFIG_STX_GP3 is not set |
166 | # CONFIG_TQM8540 is not set | ||
167 | # CONFIG_TQM8541 is not set | ||
168 | # CONFIG_TQM8555 is not set | ||
169 | # CONFIG_TQM8560 is not set | ||
170 | # CONFIG_SBC8548 is not set | ||
171 | # CONFIG_SBC8560 is not set | ||
172 | # CONFIG_IPIC is not set | ||
149 | CONFIG_MPIC=y | 173 | CONFIG_MPIC=y |
150 | # CONFIG_MPIC_WEIRD is not set | 174 | # CONFIG_MPIC_WEIRD is not set |
151 | CONFIG_PPC_I8259=y | 175 | CONFIG_PPC_I8259=y |
@@ -172,13 +196,17 @@ CONFIG_HZ_250=y | |||
172 | # CONFIG_HZ_300 is not set | 196 | # CONFIG_HZ_300 is not set |
173 | # CONFIG_HZ_1000 is not set | 197 | # CONFIG_HZ_1000 is not set |
174 | CONFIG_HZ=250 | 198 | CONFIG_HZ=250 |
199 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 200 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 201 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 202 | # CONFIG_PREEMPT is not set |
178 | CONFIG_BINFMT_ELF=y | 203 | CONFIG_BINFMT_ELF=y |
179 | CONFIG_BINFMT_MISC=m | 204 | CONFIG_BINFMT_MISC=m |
180 | CONFIG_MATH_EMULATION=y | 205 | CONFIG_MATH_EMULATION=y |
206 | # CONFIG_IOMMU_HELPER is not set | ||
181 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
208 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
209 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
182 | CONFIG_ARCH_FLATMEM_ENABLE=y | 210 | CONFIG_ARCH_FLATMEM_ENABLE=y |
183 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 211 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
184 | CONFIG_SELECT_MEMORY_MODEL=y | 212 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -197,11 +225,7 @@ CONFIG_VIRT_TO_BUS=y | |||
197 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
198 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
199 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
200 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
201 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
202 | CONFIG_SECCOMP=y | 228 | CONFIG_SECCOMP=y |
203 | CONFIG_WANT_DEVICE_TREE=y | ||
204 | CONFIG_DEVICE_TREE="" | ||
205 | CONFIG_ISA_DMA_API=y | 229 | CONFIG_ISA_DMA_API=y |
206 | 230 | ||
207 | # | 231 | # |
@@ -252,6 +276,7 @@ CONFIG_XFRM=y | |||
252 | CONFIG_XFRM_USER=y | 276 | CONFIG_XFRM_USER=y |
253 | # CONFIG_XFRM_SUB_POLICY is not set | 277 | # CONFIG_XFRM_SUB_POLICY is not set |
254 | # CONFIG_XFRM_MIGRATE is not set | 278 | # CONFIG_XFRM_MIGRATE is not set |
279 | # CONFIG_XFRM_STATISTICS is not set | ||
255 | CONFIG_NET_KEY=m | 280 | CONFIG_NET_KEY=m |
256 | # CONFIG_NET_KEY_MIGRATE is not set | 281 | # CONFIG_NET_KEY_MIGRATE is not set |
257 | CONFIG_INET=y | 282 | CONFIG_INET=y |
@@ -335,6 +360,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
335 | # | 360 | # |
336 | # CONFIG_NET_PKTGEN is not set | 361 | # CONFIG_NET_PKTGEN is not set |
337 | # CONFIG_HAMRADIO is not set | 362 | # CONFIG_HAMRADIO is not set |
363 | # CONFIG_CAN is not set | ||
338 | # CONFIG_IRDA is not set | 364 | # CONFIG_IRDA is not set |
339 | # CONFIG_BT is not set | 365 | # CONFIG_BT is not set |
340 | # CONFIG_AF_RXRPC is not set | 366 | # CONFIG_AF_RXRPC is not set |
@@ -383,7 +409,7 @@ CONFIG_BLK_DEV_NBD=y | |||
383 | CONFIG_BLK_DEV_RAM=y | 409 | CONFIG_BLK_DEV_RAM=y |
384 | CONFIG_BLK_DEV_RAM_COUNT=16 | 410 | CONFIG_BLK_DEV_RAM_COUNT=16 |
385 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 411 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
386 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 412 | # CONFIG_BLK_DEV_XIP is not set |
387 | # CONFIG_CDROM_PKTCDVD is not set | 413 | # CONFIG_CDROM_PKTCDVD is not set |
388 | # CONFIG_ATA_OVER_ETH is not set | 414 | # CONFIG_ATA_OVER_ETH is not set |
389 | CONFIG_MISC_DEVICES=y | 415 | CONFIG_MISC_DEVICES=y |
@@ -391,6 +417,8 @@ CONFIG_MISC_DEVICES=y | |||
391 | # CONFIG_EEPROM_93CX6 is not set | 417 | # CONFIG_EEPROM_93CX6 is not set |
392 | # CONFIG_SGI_IOC4 is not set | 418 | # CONFIG_SGI_IOC4 is not set |
393 | # CONFIG_TIFM_CORE is not set | 419 | # CONFIG_TIFM_CORE is not set |
420 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
421 | CONFIG_HAVE_IDE=y | ||
394 | # CONFIG_IDE is not set | 422 | # CONFIG_IDE is not set |
395 | 423 | ||
396 | # | 424 | # |
@@ -456,6 +484,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
456 | # CONFIG_SCSI_IPS is not set | 484 | # CONFIG_SCSI_IPS is not set |
457 | # CONFIG_SCSI_INITIO is not set | 485 | # CONFIG_SCSI_INITIO is not set |
458 | # CONFIG_SCSI_INIA100 is not set | 486 | # CONFIG_SCSI_INIA100 is not set |
487 | # CONFIG_SCSI_MVSAS is not set | ||
459 | # CONFIG_SCSI_STEX is not set | 488 | # CONFIG_SCSI_STEX is not set |
460 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 489 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
461 | # CONFIG_SCSI_IPR is not set | 490 | # CONFIG_SCSI_IPR is not set |
@@ -486,6 +515,7 @@ CONFIG_SATA_AHCI=y | |||
486 | # CONFIG_SATA_VIA is not set | 515 | # CONFIG_SATA_VIA is not set |
487 | # CONFIG_SATA_VITESSE is not set | 516 | # CONFIG_SATA_VITESSE is not set |
488 | # CONFIG_SATA_INIC162X is not set | 517 | # CONFIG_SATA_INIC162X is not set |
518 | # CONFIG_SATA_FSL is not set | ||
489 | CONFIG_PATA_ALI=y | 519 | CONFIG_PATA_ALI=y |
490 | # CONFIG_PATA_AMD is not set | 520 | # CONFIG_PATA_AMD is not set |
491 | # CONFIG_PATA_ARTOP is not set | 521 | # CONFIG_PATA_ARTOP is not set |
@@ -509,6 +539,7 @@ CONFIG_PATA_ALI=y | |||
509 | # CONFIG_PATA_MPIIX is not set | 539 | # CONFIG_PATA_MPIIX is not set |
510 | # CONFIG_PATA_OLDPIIX is not set | 540 | # CONFIG_PATA_OLDPIIX is not set |
511 | # CONFIG_PATA_NETCELL is not set | 541 | # CONFIG_PATA_NETCELL is not set |
542 | # CONFIG_PATA_NINJA32 is not set | ||
512 | # CONFIG_PATA_NS87410 is not set | 543 | # CONFIG_PATA_NS87410 is not set |
513 | # CONFIG_PATA_NS87415 is not set | 544 | # CONFIG_PATA_NS87415 is not set |
514 | # CONFIG_PATA_OPTI is not set | 545 | # CONFIG_PATA_OPTI is not set |
@@ -542,7 +573,6 @@ CONFIG_DUMMY=y | |||
542 | # CONFIG_EQUALIZER is not set | 573 | # CONFIG_EQUALIZER is not set |
543 | # CONFIG_TUN is not set | 574 | # CONFIG_TUN is not set |
544 | # CONFIG_VETH is not set | 575 | # CONFIG_VETH is not set |
545 | # CONFIG_IP1000 is not set | ||
546 | # CONFIG_ARCNET is not set | 576 | # CONFIG_ARCNET is not set |
547 | CONFIG_PHYLIB=y | 577 | CONFIG_PHYLIB=y |
548 | 578 | ||
@@ -558,6 +588,7 @@ CONFIG_VITESSE_PHY=y | |||
558 | # CONFIG_SMSC_PHY is not set | 588 | # CONFIG_SMSC_PHY is not set |
559 | # CONFIG_BROADCOM_PHY is not set | 589 | # CONFIG_BROADCOM_PHY is not set |
560 | # CONFIG_ICPLUS_PHY is not set | 590 | # CONFIG_ICPLUS_PHY is not set |
591 | # CONFIG_REALTEK_PHY is not set | ||
561 | # CONFIG_FIXED_PHY is not set | 592 | # CONFIG_FIXED_PHY is not set |
562 | # CONFIG_MDIO_BITBANG is not set | 593 | # CONFIG_MDIO_BITBANG is not set |
563 | CONFIG_NET_ETHERNET=y | 594 | CONFIG_NET_ETHERNET=y |
@@ -579,6 +610,9 @@ CONFIG_NETDEV_1000=y | |||
579 | # CONFIG_DL2K is not set | 610 | # CONFIG_DL2K is not set |
580 | # CONFIG_E1000 is not set | 611 | # CONFIG_E1000 is not set |
581 | # CONFIG_E1000E is not set | 612 | # CONFIG_E1000E is not set |
613 | # CONFIG_E1000E_ENABLED is not set | ||
614 | # CONFIG_IP1000 is not set | ||
615 | # CONFIG_IGB is not set | ||
582 | # CONFIG_NS83820 is not set | 616 | # CONFIG_NS83820 is not set |
583 | # CONFIG_HAMACHI is not set | 617 | # CONFIG_HAMACHI is not set |
584 | # CONFIG_YELLOWFIN is not set | 618 | # CONFIG_YELLOWFIN is not set |
@@ -605,6 +639,7 @@ CONFIG_NETDEV_10000=y | |||
605 | # CONFIG_NIU is not set | 639 | # CONFIG_NIU is not set |
606 | # CONFIG_MLX4_CORE is not set | 640 | # CONFIG_MLX4_CORE is not set |
607 | # CONFIG_TEHUTI is not set | 641 | # CONFIG_TEHUTI is not set |
642 | # CONFIG_BNX2X is not set | ||
608 | # CONFIG_TR is not set | 643 | # CONFIG_TR is not set |
609 | 644 | ||
610 | # | 645 | # |
@@ -627,7 +662,6 @@ CONFIG_NETDEV_10000=y | |||
627 | # CONFIG_PPP is not set | 662 | # CONFIG_PPP is not set |
628 | # CONFIG_SLIP is not set | 663 | # CONFIG_SLIP is not set |
629 | # CONFIG_NET_FC is not set | 664 | # CONFIG_NET_FC is not set |
630 | # CONFIG_SHAPER is not set | ||
631 | # CONFIG_NETCONSOLE is not set | 665 | # CONFIG_NETCONSOLE is not set |
632 | # CONFIG_NETPOLL is not set | 666 | # CONFIG_NETPOLL is not set |
633 | # CONFIG_NET_POLL_CONTROLLER is not set | 667 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -678,6 +712,7 @@ CONFIG_VT_CONSOLE=y | |||
678 | CONFIG_HW_CONSOLE=y | 712 | CONFIG_HW_CONSOLE=y |
679 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 713 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
680 | # CONFIG_SERIAL_NONSTANDARD is not set | 714 | # CONFIG_SERIAL_NONSTANDARD is not set |
715 | # CONFIG_NOZOMI is not set | ||
681 | 716 | ||
682 | # | 717 | # |
683 | # Serial drivers | 718 | # Serial drivers |
@@ -756,14 +791,12 @@ CONFIG_I2C_MPC=y | |||
756 | # | 791 | # |
757 | # Miscellaneous I2C Chip support | 792 | # Miscellaneous I2C Chip support |
758 | # | 793 | # |
759 | # CONFIG_SENSORS_DS1337 is not set | ||
760 | # CONFIG_SENSORS_DS1374 is not set | ||
761 | # CONFIG_DS1682 is not set | 794 | # CONFIG_DS1682 is not set |
762 | CONFIG_SENSORS_EEPROM=y | 795 | CONFIG_SENSORS_EEPROM=y |
763 | # CONFIG_SENSORS_PCF8574 is not set | 796 | # CONFIG_SENSORS_PCF8574 is not set |
764 | # CONFIG_SENSORS_PCA9539 is not set | 797 | # CONFIG_PCF8575 is not set |
765 | # CONFIG_SENSORS_PCF8591 is not set | 798 | # CONFIG_SENSORS_PCF8591 is not set |
766 | # CONFIG_SENSORS_M41T00 is not set | 799 | # CONFIG_TPS65010 is not set |
767 | # CONFIG_SENSORS_MAX6875 is not set | 800 | # CONFIG_SENSORS_MAX6875 is not set |
768 | # CONFIG_SENSORS_TSL2550 is not set | 801 | # CONFIG_SENSORS_TSL2550 is not set |
769 | # CONFIG_I2C_DEBUG_CORE is not set | 802 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -779,6 +812,7 @@ CONFIG_SENSORS_EEPROM=y | |||
779 | # CONFIG_W1 is not set | 812 | # CONFIG_W1 is not set |
780 | # CONFIG_POWER_SUPPLY is not set | 813 | # CONFIG_POWER_SUPPLY is not set |
781 | # CONFIG_HWMON is not set | 814 | # CONFIG_HWMON is not set |
815 | # CONFIG_THERMAL is not set | ||
782 | # CONFIG_WATCHDOG is not set | 816 | # CONFIG_WATCHDOG is not set |
783 | 817 | ||
784 | # | 818 | # |
@@ -803,6 +837,8 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
803 | # | 837 | # |
804 | # Supported SAA7146 based PCI Adapters | 838 | # Supported SAA7146 based PCI Adapters |
805 | # | 839 | # |
840 | # CONFIG_TTPCI_EEPROM is not set | ||
841 | # CONFIG_DVB_BUDGET_CORE is not set | ||
806 | 842 | ||
807 | # | 843 | # |
808 | # Supported USB Adapters | 844 | # Supported USB Adapters |
@@ -888,11 +924,13 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
888 | # CONFIG_DVB_PLL is not set | 924 | # CONFIG_DVB_PLL is not set |
889 | # CONFIG_DVB_TDA826X is not set | 925 | # CONFIG_DVB_TDA826X is not set |
890 | # CONFIG_DVB_TDA827X is not set | 926 | # CONFIG_DVB_TDA827X is not set |
927 | # CONFIG_DVB_TDA18271 is not set | ||
891 | # CONFIG_DVB_TUNER_QT1010 is not set | 928 | # CONFIG_DVB_TUNER_QT1010 is not set |
892 | # CONFIG_DVB_TUNER_MT2060 is not set | 929 | # CONFIG_DVB_TUNER_MT2060 is not set |
893 | # CONFIG_DVB_TUNER_MT2266 is not set | 930 | # CONFIG_DVB_TUNER_MT2266 is not set |
894 | # CONFIG_DVB_TUNER_MT2131 is not set | 931 | # CONFIG_DVB_TUNER_MT2131 is not set |
895 | # CONFIG_DVB_TUNER_DIB0070 is not set | 932 | # CONFIG_DVB_TUNER_DIB0070 is not set |
933 | # CONFIG_DVB_TUNER_XC5000 is not set | ||
896 | 934 | ||
897 | # | 935 | # |
898 | # Miscellaneous devices | 936 | # Miscellaneous devices |
@@ -970,6 +1008,7 @@ CONFIG_SND_AC97_CODEC=y | |||
970 | # CONFIG_SND_BT87X is not set | 1008 | # CONFIG_SND_BT87X is not set |
971 | # CONFIG_SND_CA0106 is not set | 1009 | # CONFIG_SND_CA0106 is not set |
972 | # CONFIG_SND_CMIPCI is not set | 1010 | # CONFIG_SND_CMIPCI is not set |
1011 | # CONFIG_SND_OXYGEN is not set | ||
973 | # CONFIG_SND_CS4281 is not set | 1012 | # CONFIG_SND_CS4281 is not set |
974 | # CONFIG_SND_CS46XX is not set | 1013 | # CONFIG_SND_CS46XX is not set |
975 | # CONFIG_SND_CS5530 is not set | 1014 | # CONFIG_SND_CS5530 is not set |
@@ -995,6 +1034,7 @@ CONFIG_SND_AC97_CODEC=y | |||
995 | # CONFIG_SND_HDA_INTEL is not set | 1034 | # CONFIG_SND_HDA_INTEL is not set |
996 | # CONFIG_SND_HDSP is not set | 1035 | # CONFIG_SND_HDSP is not set |
997 | # CONFIG_SND_HDSPM is not set | 1036 | # CONFIG_SND_HDSPM is not set |
1037 | # CONFIG_SND_HIFIER is not set | ||
998 | # CONFIG_SND_ICE1712 is not set | 1038 | # CONFIG_SND_ICE1712 is not set |
999 | # CONFIG_SND_ICE1724 is not set | 1039 | # CONFIG_SND_ICE1724 is not set |
1000 | CONFIG_SND_INTEL8X0=y | 1040 | CONFIG_SND_INTEL8X0=y |
@@ -1012,6 +1052,7 @@ CONFIG_SND_INTEL8X0=y | |||
1012 | # CONFIG_SND_TRIDENT is not set | 1052 | # CONFIG_SND_TRIDENT is not set |
1013 | # CONFIG_SND_VIA82XX is not set | 1053 | # CONFIG_SND_VIA82XX is not set |
1014 | # CONFIG_SND_VIA82XX_MODEM is not set | 1054 | # CONFIG_SND_VIA82XX_MODEM is not set |
1055 | # CONFIG_SND_VIRTUOSO is not set | ||
1015 | # CONFIG_SND_VX222 is not set | 1056 | # CONFIG_SND_VX222 is not set |
1016 | # CONFIG_SND_YMFPCI is not set | 1057 | # CONFIG_SND_YMFPCI is not set |
1017 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1058 | # CONFIG_SND_AC97_POWER_SAVE is not set |
@@ -1041,6 +1082,10 @@ CONFIG_SND_INTEL8X0=y | |||
1041 | # | 1082 | # |
1042 | 1083 | ||
1043 | # | 1084 | # |
1085 | # ALSA SoC audio for Freescale SOCs | ||
1086 | # | ||
1087 | |||
1088 | # | ||
1044 | # Open Sound System | 1089 | # Open Sound System |
1045 | # | 1090 | # |
1046 | # CONFIG_SOUND_PRIME is not set | 1091 | # CONFIG_SOUND_PRIME is not set |
@@ -1063,6 +1108,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
1063 | CONFIG_USB_ARCH_HAS_EHCI=y | 1108 | CONFIG_USB_ARCH_HAS_EHCI=y |
1064 | CONFIG_USB=y | 1109 | CONFIG_USB=y |
1065 | # CONFIG_USB_DEBUG is not set | 1110 | # CONFIG_USB_DEBUG is not set |
1111 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1066 | 1112 | ||
1067 | # | 1113 | # |
1068 | # Miscellaneous USB options | 1114 | # Miscellaneous USB options |
@@ -1076,9 +1122,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
1076 | # USB Host Controller Drivers | 1122 | # USB Host Controller Drivers |
1077 | # | 1123 | # |
1078 | CONFIG_USB_EHCI_HCD=y | 1124 | CONFIG_USB_EHCI_HCD=y |
1079 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
1080 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1125 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1081 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1126 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1127 | # CONFIG_USB_EHCI_FSL is not set | ||
1128 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1082 | # CONFIG_USB_ISP116X_HCD is not set | 1129 | # CONFIG_USB_ISP116X_HCD is not set |
1083 | CONFIG_USB_OHCI_HCD=y | 1130 | CONFIG_USB_OHCI_HCD=y |
1084 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1131 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
@@ -1129,10 +1176,6 @@ CONFIG_USB_MON=y | |||
1129 | # | 1176 | # |
1130 | # USB port drivers | 1177 | # USB port drivers |
1131 | # | 1178 | # |
1132 | |||
1133 | # | ||
1134 | # USB Serial Converter support | ||
1135 | # | ||
1136 | # CONFIG_USB_SERIAL is not set | 1179 | # CONFIG_USB_SERIAL is not set |
1137 | 1180 | ||
1138 | # | 1181 | # |
@@ -1158,21 +1201,18 @@ CONFIG_USB_MON=y | |||
1158 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1201 | # CONFIG_USB_TRANCEVIBRATOR is not set |
1159 | # CONFIG_USB_IOWARRIOR is not set | 1202 | # CONFIG_USB_IOWARRIOR is not set |
1160 | # CONFIG_USB_TEST is not set | 1203 | # CONFIG_USB_TEST is not set |
1161 | |||
1162 | # | ||
1163 | # USB DSL modem support | ||
1164 | # | ||
1165 | |||
1166 | # | ||
1167 | # USB Gadget Support | ||
1168 | # | ||
1169 | # CONFIG_USB_GADGET is not set | 1204 | # CONFIG_USB_GADGET is not set |
1170 | # CONFIG_MMC is not set | 1205 | # CONFIG_MMC is not set |
1206 | # CONFIG_MEMSTICK is not set | ||
1171 | # CONFIG_NEW_LEDS is not set | 1207 | # CONFIG_NEW_LEDS is not set |
1172 | # CONFIG_INFINIBAND is not set | 1208 | # CONFIG_INFINIBAND is not set |
1173 | # CONFIG_EDAC is not set | 1209 | # CONFIG_EDAC is not set |
1174 | CONFIG_RTC_LIB=y | 1210 | CONFIG_RTC_LIB=y |
1175 | CONFIG_RTC_CLASS=y | 1211 | CONFIG_RTC_CLASS=y |
1212 | |||
1213 | # | ||
1214 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
1215 | # | ||
1176 | CONFIG_RTC_HCTOSYS=y | 1216 | CONFIG_RTC_HCTOSYS=y |
1177 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 1217 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
1178 | # CONFIG_RTC_DEBUG is not set | 1218 | # CONFIG_RTC_DEBUG is not set |
@@ -1199,6 +1239,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1199 | # CONFIG_RTC_DRV_PCF8563 is not set | 1239 | # CONFIG_RTC_DRV_PCF8563 is not set |
1200 | # CONFIG_RTC_DRV_PCF8583 is not set | 1240 | # CONFIG_RTC_DRV_PCF8583 is not set |
1201 | # CONFIG_RTC_DRV_M41T80 is not set | 1241 | # CONFIG_RTC_DRV_M41T80 is not set |
1242 | # CONFIG_RTC_DRV_S35390A is not set | ||
1202 | 1243 | ||
1203 | # | 1244 | # |
1204 | # SPI RTC drivers | 1245 | # SPI RTC drivers |
@@ -1208,9 +1249,10 @@ CONFIG_RTC_INTF_DEV=y | |||
1208 | # Platform RTC drivers | 1249 | # Platform RTC drivers |
1209 | # | 1250 | # |
1210 | CONFIG_RTC_DRV_CMOS=y | 1251 | CONFIG_RTC_DRV_CMOS=y |
1252 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1211 | # CONFIG_RTC_DRV_DS1553 is not set | 1253 | # CONFIG_RTC_DRV_DS1553 is not set |
1212 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1213 | # CONFIG_RTC_DRV_DS1742 is not set | 1254 | # CONFIG_RTC_DRV_DS1742 is not set |
1255 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1214 | # CONFIG_RTC_DRV_M48T86 is not set | 1256 | # CONFIG_RTC_DRV_M48T86 is not set |
1215 | # CONFIG_RTC_DRV_M48T59 is not set | 1257 | # CONFIG_RTC_DRV_M48T59 is not set |
1216 | # CONFIG_RTC_DRV_V3020 is not set | 1258 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1218,6 +1260,7 @@ CONFIG_RTC_DRV_CMOS=y | |||
1218 | # | 1260 | # |
1219 | # on-CPU RTC drivers | 1261 | # on-CPU RTC drivers |
1220 | # | 1262 | # |
1263 | # CONFIG_DMADEVICES is not set | ||
1221 | 1264 | ||
1222 | # | 1265 | # |
1223 | # Userspace I/O | 1266 | # Userspace I/O |
@@ -1243,12 +1286,10 @@ CONFIG_FS_MBCACHE=y | |||
1243 | # CONFIG_XFS_FS is not set | 1286 | # CONFIG_XFS_FS is not set |
1244 | # CONFIG_GFS2_FS is not set | 1287 | # CONFIG_GFS2_FS is not set |
1245 | # CONFIG_OCFS2_FS is not set | 1288 | # CONFIG_OCFS2_FS is not set |
1246 | # CONFIG_MINIX_FS is not set | 1289 | CONFIG_DNOTIFY=y |
1247 | # CONFIG_ROMFS_FS is not set | ||
1248 | CONFIG_INOTIFY=y | 1290 | CONFIG_INOTIFY=y |
1249 | CONFIG_INOTIFY_USER=y | 1291 | CONFIG_INOTIFY_USER=y |
1250 | # CONFIG_QUOTA is not set | 1292 | # CONFIG_QUOTA is not set |
1251 | CONFIG_DNOTIFY=y | ||
1252 | # CONFIG_AUTOFS_FS is not set | 1293 | # CONFIG_AUTOFS_FS is not set |
1253 | # CONFIG_AUTOFS4_FS is not set | 1294 | # CONFIG_AUTOFS4_FS is not set |
1254 | # CONFIG_FUSE_FS is not set | 1295 | # CONFIG_FUSE_FS is not set |
@@ -1300,8 +1341,10 @@ CONFIG_BFS_FS=m | |||
1300 | CONFIG_EFS_FS=m | 1341 | CONFIG_EFS_FS=m |
1301 | CONFIG_CRAMFS=y | 1342 | CONFIG_CRAMFS=y |
1302 | CONFIG_VXFS_FS=m | 1343 | CONFIG_VXFS_FS=m |
1344 | # CONFIG_MINIX_FS is not set | ||
1303 | CONFIG_HPFS_FS=m | 1345 | CONFIG_HPFS_FS=m |
1304 | CONFIG_QNX4FS_FS=m | 1346 | CONFIG_QNX4FS_FS=m |
1347 | # CONFIG_ROMFS_FS is not set | ||
1305 | CONFIG_SYSV_FS=m | 1348 | CONFIG_SYSV_FS=m |
1306 | CONFIG_UFS_FS=m | 1349 | CONFIG_UFS_FS=m |
1307 | # CONFIG_UFS_FS_WRITE is not set | 1350 | # CONFIG_UFS_FS_WRITE is not set |
@@ -1393,7 +1436,6 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1393 | # CONFIG_NLS_KOI8_U is not set | 1436 | # CONFIG_NLS_KOI8_U is not set |
1394 | CONFIG_NLS_UTF8=m | 1437 | CONFIG_NLS_UTF8=m |
1395 | # CONFIG_DLM is not set | 1438 | # CONFIG_DLM is not set |
1396 | # CONFIG_UCC_SLOW is not set | ||
1397 | 1439 | ||
1398 | # | 1440 | # |
1399 | # Library routines | 1441 | # Library routines |
@@ -1410,7 +1452,6 @@ CONFIG_PLIST=y | |||
1410 | CONFIG_HAS_IOMEM=y | 1452 | CONFIG_HAS_IOMEM=y |
1411 | CONFIG_HAS_IOPORT=y | 1453 | CONFIG_HAS_IOPORT=y |
1412 | CONFIG_HAS_DMA=y | 1454 | CONFIG_HAS_DMA=y |
1413 | # CONFIG_INSTRUMENTATION is not set | ||
1414 | 1455 | ||
1415 | # | 1456 | # |
1416 | # Kernel hacking | 1457 | # Kernel hacking |
@@ -1429,6 +1470,7 @@ CONFIG_SCHED_DEBUG=y | |||
1429 | # CONFIG_SCHEDSTATS is not set | 1470 | # CONFIG_SCHEDSTATS is not set |
1430 | # CONFIG_TIMER_STATS is not set | 1471 | # CONFIG_TIMER_STATS is not set |
1431 | # CONFIG_SLUB_DEBUG_ON is not set | 1472 | # CONFIG_SLUB_DEBUG_ON is not set |
1473 | # CONFIG_SLUB_STATS is not set | ||
1432 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1474 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1433 | # CONFIG_RT_MUTEX_TESTER is not set | 1475 | # CONFIG_RT_MUTEX_TESTER is not set |
1434 | # CONFIG_DEBUG_SPINLOCK is not set | 1476 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1442,9 +1484,9 @@ CONFIG_DEBUG_INFO=y | |||
1442 | # CONFIG_DEBUG_VM is not set | 1484 | # CONFIG_DEBUG_VM is not set |
1443 | # CONFIG_DEBUG_LIST is not set | 1485 | # CONFIG_DEBUG_LIST is not set |
1444 | # CONFIG_DEBUG_SG is not set | 1486 | # CONFIG_DEBUG_SG is not set |
1445 | CONFIG_FORCED_INLINING=y | ||
1446 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1487 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1447 | # CONFIG_RCU_TORTURE_TEST is not set | 1488 | # CONFIG_RCU_TORTURE_TEST is not set |
1489 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1448 | # CONFIG_FAULT_INJECTION is not set | 1490 | # CONFIG_FAULT_INJECTION is not set |
1449 | # CONFIG_SAMPLES is not set | 1491 | # CONFIG_SAMPLES is not set |
1450 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1492 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1463,6 +1505,7 @@ CONFIG_FORCED_INLINING=y | |||
1463 | CONFIG_CRYPTO=y | 1505 | CONFIG_CRYPTO=y |
1464 | CONFIG_CRYPTO_ALGAPI=y | 1506 | CONFIG_CRYPTO_ALGAPI=y |
1465 | CONFIG_CRYPTO_BLKCIPHER=y | 1507 | CONFIG_CRYPTO_BLKCIPHER=y |
1508 | # CONFIG_CRYPTO_SEQIV is not set | ||
1466 | CONFIG_CRYPTO_HASH=y | 1509 | CONFIG_CRYPTO_HASH=y |
1467 | CONFIG_CRYPTO_MANAGER=y | 1510 | CONFIG_CRYPTO_MANAGER=y |
1468 | CONFIG_CRYPTO_HMAC=y | 1511 | CONFIG_CRYPTO_HMAC=y |
@@ -1481,6 +1524,9 @@ CONFIG_CRYPTO_CBC=y | |||
1481 | CONFIG_CRYPTO_PCBC=m | 1524 | CONFIG_CRYPTO_PCBC=m |
1482 | # CONFIG_CRYPTO_LRW is not set | 1525 | # CONFIG_CRYPTO_LRW is not set |
1483 | # CONFIG_CRYPTO_XTS is not set | 1526 | # CONFIG_CRYPTO_XTS is not set |
1527 | # CONFIG_CRYPTO_CTR is not set | ||
1528 | # CONFIG_CRYPTO_GCM is not set | ||
1529 | # CONFIG_CRYPTO_CCM is not set | ||
1484 | # CONFIG_CRYPTO_CRYPTD is not set | 1530 | # CONFIG_CRYPTO_CRYPTD is not set |
1485 | CONFIG_CRYPTO_DES=y | 1531 | CONFIG_CRYPTO_DES=y |
1486 | # CONFIG_CRYPTO_FCRYPT is not set | 1532 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1495,11 +1541,14 @@ CONFIG_CRYPTO_DES=y | |||
1495 | # CONFIG_CRYPTO_KHAZAD is not set | 1541 | # CONFIG_CRYPTO_KHAZAD is not set |
1496 | # CONFIG_CRYPTO_ANUBIS is not set | 1542 | # CONFIG_CRYPTO_ANUBIS is not set |
1497 | # CONFIG_CRYPTO_SEED is not set | 1543 | # CONFIG_CRYPTO_SEED is not set |
1544 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1498 | # CONFIG_CRYPTO_DEFLATE is not set | 1545 | # CONFIG_CRYPTO_DEFLATE is not set |
1499 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1546 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1500 | # CONFIG_CRYPTO_CRC32C is not set | 1547 | # CONFIG_CRYPTO_CRC32C is not set |
1501 | # CONFIG_CRYPTO_CAMELLIA is not set | 1548 | # CONFIG_CRYPTO_CAMELLIA is not set |
1502 | # CONFIG_CRYPTO_TEST is not set | 1549 | # CONFIG_CRYPTO_TEST is not set |
1503 | # CONFIG_CRYPTO_AUTHENC is not set | 1550 | # CONFIG_CRYPTO_AUTHENC is not set |
1551 | # CONFIG_CRYPTO_LZO is not set | ||
1504 | CONFIG_CRYPTO_HW=y | 1552 | CONFIG_CRYPTO_HW=y |
1553 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1505 | # CONFIG_PPC_CLOCK is not set | 1554 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc8560_ads_defconfig b/arch/powerpc/configs/mpc8560_ads_defconfig index 51f9693bacd4..851ac9115617 100644 --- a/arch/powerpc/configs/mpc8560_ads_defconfig +++ b/arch/powerpc/configs/mpc8560_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:48 2007 | 4 | # Mon Mar 24 08:48:27 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,15 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | # CONFIG_FAIR_GROUP_SCHED is not set | 76 | # CONFIG_FAIR_GROUP_SCHED is not set |
77 | # CONFIG_RT_GROUP_SCHED is not set | ||
78 | CONFIG_USER_SCHED=y | ||
79 | # CONFIG_CGROUP_SCHED is not set | ||
77 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
78 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
79 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
80 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
81 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +94,13 @@ CONFIG_HOTPLUG=y | |||
89 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
97 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 100 | CONFIG_ANON_INODES=y |
95 | CONFIG_EPOLL=y | 101 | CONFIG_EPOLL=y |
96 | CONFIG_SIGNALFD=y | 102 | CONFIG_SIGNALFD=y |
103 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 104 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +108,13 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 108 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | ||
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | ||
114 | CONFIG_HAVE_KPROBES=y | ||
115 | CONFIG_HAVE_KRETPROBES=y | ||
116 | CONFIG_PROC_PAGE_MONITOR=y | ||
117 | CONFIG_SLABINFO=y | ||
104 | CONFIG_RT_MUTEXES=y | 118 | CONFIG_RT_MUTEXES=y |
105 | # CONFIG_TINY_SHMEM is not set | 119 | # CONFIG_TINY_SHMEM is not set |
106 | CONFIG_BASE_SMALL=0 | 120 | CONFIG_BASE_SMALL=0 |
@@ -123,22 +137,30 @@ CONFIG_DEFAULT_AS=y | |||
123 | # CONFIG_DEFAULT_CFQ is not set | 137 | # CONFIG_DEFAULT_CFQ is not set |
124 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
125 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
140 | CONFIG_CLASSIC_RCU=y | ||
126 | 141 | ||
127 | # | 142 | # |
128 | # Platform support | 143 | # Platform support |
129 | # | 144 | # |
130 | # CONFIG_PPC_MPC52xx is not set | 145 | # CONFIG_PPC_MPC512x is not set |
131 | # CONFIG_PPC_MPC5200 is not set | 146 | # CONFIG_PPC_MPC5121 is not set |
132 | # CONFIG_PPC_CELL is not set | 147 | # CONFIG_PPC_CELL is not set |
133 | # CONFIG_PPC_CELL_NATIVE is not set | 148 | # CONFIG_PPC_CELL_NATIVE is not set |
134 | # CONFIG_PQ2ADS is not set | 149 | # CONFIG_PQ2ADS is not set |
150 | CONFIG_MPC85xx=y | ||
135 | # CONFIG_MPC8540_ADS is not set | 151 | # CONFIG_MPC8540_ADS is not set |
136 | CONFIG_MPC8560_ADS=y | 152 | CONFIG_MPC8560_ADS=y |
137 | # CONFIG_MPC85xx_CDS is not set | 153 | # CONFIG_MPC85xx_CDS is not set |
138 | # CONFIG_MPC85xx_MDS is not set | 154 | # CONFIG_MPC85xx_MDS is not set |
139 | # CONFIG_MPC85xx_DS is not set | 155 | # CONFIG_MPC85xx_DS is not set |
140 | CONFIG_MPC8560=y | 156 | # CONFIG_STX_GP3 is not set |
141 | CONFIG_MPC85xx=y | 157 | # CONFIG_TQM8540 is not set |
158 | # CONFIG_TQM8541 is not set | ||
159 | # CONFIG_TQM8555 is not set | ||
160 | # CONFIG_TQM8560 is not set | ||
161 | # CONFIG_SBC8548 is not set | ||
162 | # CONFIG_SBC8560 is not set | ||
163 | # CONFIG_IPIC is not set | ||
142 | CONFIG_MPIC=y | 164 | CONFIG_MPIC=y |
143 | # CONFIG_MPIC_WEIRD is not set | 165 | # CONFIG_MPIC_WEIRD is not set |
144 | # CONFIG_PPC_I8259 is not set | 166 | # CONFIG_PPC_I8259 is not set |
@@ -167,13 +189,17 @@ CONFIG_HZ_250=y | |||
167 | # CONFIG_HZ_300 is not set | 189 | # CONFIG_HZ_300 is not set |
168 | # CONFIG_HZ_1000 is not set | 190 | # CONFIG_HZ_1000 is not set |
169 | CONFIG_HZ=250 | 191 | CONFIG_HZ=250 |
192 | # CONFIG_SCHED_HRTICK is not set | ||
170 | CONFIG_PREEMPT_NONE=y | 193 | CONFIG_PREEMPT_NONE=y |
171 | # CONFIG_PREEMPT_VOLUNTARY is not set | 194 | # CONFIG_PREEMPT_VOLUNTARY is not set |
172 | # CONFIG_PREEMPT is not set | 195 | # CONFIG_PREEMPT is not set |
173 | CONFIG_BINFMT_ELF=y | 196 | CONFIG_BINFMT_ELF=y |
174 | CONFIG_BINFMT_MISC=y | 197 | CONFIG_BINFMT_MISC=y |
175 | CONFIG_MATH_EMULATION=y | 198 | CONFIG_MATH_EMULATION=y |
199 | # CONFIG_IOMMU_HELPER is not set | ||
176 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
177 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
178 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
179 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -192,11 +218,7 @@ CONFIG_VIRT_TO_BUS=y | |||
192 | # CONFIG_PROC_DEVICETREE is not set | 218 | # CONFIG_PROC_DEVICETREE is not set |
193 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
194 | # CONFIG_PM is not set | 220 | # CONFIG_PM is not set |
195 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
196 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
197 | # CONFIG_SECCOMP is not set | 221 | # CONFIG_SECCOMP is not set |
198 | CONFIG_WANT_DEVICE_TREE=y | ||
199 | CONFIG_DEVICE_TREE="" | ||
200 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
201 | 223 | ||
202 | # | 224 | # |
@@ -246,6 +268,7 @@ CONFIG_XFRM=y | |||
246 | # CONFIG_XFRM_USER is not set | 268 | # CONFIG_XFRM_USER is not set |
247 | # CONFIG_XFRM_SUB_POLICY is not set | 269 | # CONFIG_XFRM_SUB_POLICY is not set |
248 | # CONFIG_XFRM_MIGRATE is not set | 270 | # CONFIG_XFRM_MIGRATE is not set |
271 | # CONFIG_XFRM_STATISTICS is not set | ||
249 | # CONFIG_NET_KEY is not set | 272 | # CONFIG_NET_KEY is not set |
250 | CONFIG_INET=y | 273 | CONFIG_INET=y |
251 | CONFIG_IP_MULTICAST=y | 274 | CONFIG_IP_MULTICAST=y |
@@ -301,6 +324,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
301 | # | 324 | # |
302 | # CONFIG_NET_PKTGEN is not set | 325 | # CONFIG_NET_PKTGEN is not set |
303 | # CONFIG_HAMRADIO is not set | 326 | # CONFIG_HAMRADIO is not set |
327 | # CONFIG_CAN is not set | ||
304 | # CONFIG_IRDA is not set | 328 | # CONFIG_IRDA is not set |
305 | # CONFIG_BT is not set | 329 | # CONFIG_BT is not set |
306 | # CONFIG_AF_RXRPC is not set | 330 | # CONFIG_AF_RXRPC is not set |
@@ -347,7 +371,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
347 | CONFIG_BLK_DEV_RAM=y | 371 | CONFIG_BLK_DEV_RAM=y |
348 | CONFIG_BLK_DEV_RAM_COUNT=16 | 372 | CONFIG_BLK_DEV_RAM_COUNT=16 |
349 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 373 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
350 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 374 | # CONFIG_BLK_DEV_XIP is not set |
351 | # CONFIG_CDROM_PKTCDVD is not set | 375 | # CONFIG_CDROM_PKTCDVD is not set |
352 | # CONFIG_ATA_OVER_ETH is not set | 376 | # CONFIG_ATA_OVER_ETH is not set |
353 | CONFIG_MISC_DEVICES=y | 377 | CONFIG_MISC_DEVICES=y |
@@ -355,6 +379,8 @@ CONFIG_MISC_DEVICES=y | |||
355 | # CONFIG_EEPROM_93CX6 is not set | 379 | # CONFIG_EEPROM_93CX6 is not set |
356 | # CONFIG_SGI_IOC4 is not set | 380 | # CONFIG_SGI_IOC4 is not set |
357 | # CONFIG_TIFM_CORE is not set | 381 | # CONFIG_TIFM_CORE is not set |
382 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
383 | CONFIG_HAVE_IDE=y | ||
358 | # CONFIG_IDE is not set | 384 | # CONFIG_IDE is not set |
359 | 385 | ||
360 | # | 386 | # |
@@ -383,7 +409,6 @@ CONFIG_NETDEVICES=y | |||
383 | # CONFIG_EQUALIZER is not set | 409 | # CONFIG_EQUALIZER is not set |
384 | # CONFIG_TUN is not set | 410 | # CONFIG_TUN is not set |
385 | # CONFIG_VETH is not set | 411 | # CONFIG_VETH is not set |
386 | # CONFIG_IP1000 is not set | ||
387 | # CONFIG_ARCNET is not set | 412 | # CONFIG_ARCNET is not set |
388 | CONFIG_PHYLIB=y | 413 | CONFIG_PHYLIB=y |
389 | 414 | ||
@@ -399,6 +424,7 @@ CONFIG_DAVICOM_PHY=y | |||
399 | # CONFIG_SMSC_PHY is not set | 424 | # CONFIG_SMSC_PHY is not set |
400 | # CONFIG_BROADCOM_PHY is not set | 425 | # CONFIG_BROADCOM_PHY is not set |
401 | # CONFIG_ICPLUS_PHY is not set | 426 | # CONFIG_ICPLUS_PHY is not set |
427 | # CONFIG_REALTEK_PHY is not set | ||
402 | # CONFIG_FIXED_PHY is not set | 428 | # CONFIG_FIXED_PHY is not set |
403 | # CONFIG_MDIO_BITBANG is not set | 429 | # CONFIG_MDIO_BITBANG is not set |
404 | CONFIG_NET_ETHERNET=y | 430 | CONFIG_NET_ETHERNET=y |
@@ -426,6 +452,9 @@ CONFIG_E1000=y | |||
426 | CONFIG_E1000_NAPI=y | 452 | CONFIG_E1000_NAPI=y |
427 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 453 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
428 | # CONFIG_E1000E is not set | 454 | # CONFIG_E1000E is not set |
455 | # CONFIG_E1000E_ENABLED is not set | ||
456 | # CONFIG_IP1000 is not set | ||
457 | # CONFIG_IGB is not set | ||
429 | # CONFIG_NS83820 is not set | 458 | # CONFIG_NS83820 is not set |
430 | # CONFIG_HAMACHI is not set | 459 | # CONFIG_HAMACHI is not set |
431 | # CONFIG_YELLOWFIN is not set | 460 | # CONFIG_YELLOWFIN is not set |
@@ -452,6 +481,7 @@ CONFIG_NETDEV_10000=y | |||
452 | # CONFIG_NIU is not set | 481 | # CONFIG_NIU is not set |
453 | # CONFIG_MLX4_CORE is not set | 482 | # CONFIG_MLX4_CORE is not set |
454 | # CONFIG_TEHUTI is not set | 483 | # CONFIG_TEHUTI is not set |
484 | # CONFIG_BNX2X is not set | ||
455 | # CONFIG_TR is not set | 485 | # CONFIG_TR is not set |
456 | 486 | ||
457 | # | 487 | # |
@@ -464,7 +494,6 @@ CONFIG_NETDEV_10000=y | |||
464 | # CONFIG_HIPPI is not set | 494 | # CONFIG_HIPPI is not set |
465 | # CONFIG_PPP is not set | 495 | # CONFIG_PPP is not set |
466 | # CONFIG_SLIP is not set | 496 | # CONFIG_SLIP is not set |
467 | # CONFIG_SHAPER is not set | ||
468 | # CONFIG_NETCONSOLE is not set | 497 | # CONFIG_NETCONSOLE is not set |
469 | # CONFIG_NETPOLL is not set | 498 | # CONFIG_NETPOLL is not set |
470 | # CONFIG_NET_POLL_CONTROLLER is not set | 499 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -507,6 +536,7 @@ CONFIG_INPUT=y | |||
507 | # | 536 | # |
508 | # CONFIG_VT is not set | 537 | # CONFIG_VT is not set |
509 | # CONFIG_SERIAL_NONSTANDARD is not set | 538 | # CONFIG_SERIAL_NONSTANDARD is not set |
539 | # CONFIG_NOZOMI is not set | ||
510 | 540 | ||
511 | # | 541 | # |
512 | # Serial drivers | 542 | # Serial drivers |
@@ -567,6 +597,7 @@ CONFIG_HWMON=y | |||
567 | # CONFIG_SENSORS_W83627HF is not set | 597 | # CONFIG_SENSORS_W83627HF is not set |
568 | # CONFIG_SENSORS_W83627EHF is not set | 598 | # CONFIG_SENSORS_W83627EHF is not set |
569 | # CONFIG_HWMON_DEBUG_CHIP is not set | 599 | # CONFIG_HWMON_DEBUG_CHIP is not set |
600 | # CONFIG_THERMAL is not set | ||
570 | # CONFIG_WATCHDOG is not set | 601 | # CONFIG_WATCHDOG is not set |
571 | 602 | ||
572 | # | 603 | # |
@@ -619,16 +650,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
619 | # | 650 | # |
620 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 651 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
621 | # | 652 | # |
622 | |||
623 | # | ||
624 | # USB Gadget Support | ||
625 | # | ||
626 | # CONFIG_USB_GADGET is not set | 653 | # CONFIG_USB_GADGET is not set |
627 | # CONFIG_MMC is not set | 654 | # CONFIG_MMC is not set |
655 | # CONFIG_MEMSTICK is not set | ||
628 | # CONFIG_NEW_LEDS is not set | 656 | # CONFIG_NEW_LEDS is not set |
629 | # CONFIG_INFINIBAND is not set | 657 | # CONFIG_INFINIBAND is not set |
630 | # CONFIG_EDAC is not set | 658 | # CONFIG_EDAC is not set |
631 | # CONFIG_RTC_CLASS is not set | 659 | # CONFIG_RTC_CLASS is not set |
660 | # CONFIG_DMADEVICES is not set | ||
632 | 661 | ||
633 | # | 662 | # |
634 | # Userspace I/O | 663 | # Userspace I/O |
@@ -654,12 +683,10 @@ CONFIG_FS_MBCACHE=y | |||
654 | # CONFIG_XFS_FS is not set | 683 | # CONFIG_XFS_FS is not set |
655 | # CONFIG_GFS2_FS is not set | 684 | # CONFIG_GFS2_FS is not set |
656 | # CONFIG_OCFS2_FS is not set | 685 | # CONFIG_OCFS2_FS is not set |
657 | # CONFIG_MINIX_FS is not set | 686 | CONFIG_DNOTIFY=y |
658 | # CONFIG_ROMFS_FS is not set | ||
659 | CONFIG_INOTIFY=y | 687 | CONFIG_INOTIFY=y |
660 | CONFIG_INOTIFY_USER=y | 688 | CONFIG_INOTIFY_USER=y |
661 | # CONFIG_QUOTA is not set | 689 | # CONFIG_QUOTA is not set |
662 | CONFIG_DNOTIFY=y | ||
663 | # CONFIG_AUTOFS_FS is not set | 690 | # CONFIG_AUTOFS_FS is not set |
664 | # CONFIG_AUTOFS4_FS is not set | 691 | # CONFIG_AUTOFS4_FS is not set |
665 | # CONFIG_FUSE_FS is not set | 692 | # CONFIG_FUSE_FS is not set |
@@ -701,8 +728,10 @@ CONFIG_TMPFS=y | |||
701 | # CONFIG_EFS_FS is not set | 728 | # CONFIG_EFS_FS is not set |
702 | # CONFIG_CRAMFS is not set | 729 | # CONFIG_CRAMFS is not set |
703 | # CONFIG_VXFS_FS is not set | 730 | # CONFIG_VXFS_FS is not set |
731 | # CONFIG_MINIX_FS is not set | ||
704 | # CONFIG_HPFS_FS is not set | 732 | # CONFIG_HPFS_FS is not set |
705 | # CONFIG_QNX4FS_FS is not set | 733 | # CONFIG_QNX4FS_FS is not set |
734 | # CONFIG_ROMFS_FS is not set | ||
706 | # CONFIG_SYSV_FS is not set | 735 | # CONFIG_SYSV_FS is not set |
707 | # CONFIG_UFS_FS is not set | 736 | # CONFIG_UFS_FS is not set |
708 | CONFIG_NETWORK_FILESYSTEMS=y | 737 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -743,7 +772,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
743 | # CONFIG_SYSV68_PARTITION is not set | 772 | # CONFIG_SYSV68_PARTITION is not set |
744 | # CONFIG_NLS is not set | 773 | # CONFIG_NLS is not set |
745 | # CONFIG_DLM is not set | 774 | # CONFIG_DLM is not set |
746 | # CONFIG_UCC_SLOW is not set | ||
747 | 775 | ||
748 | # | 776 | # |
749 | # Library routines | 777 | # Library routines |
@@ -759,7 +787,6 @@ CONFIG_PLIST=y | |||
759 | CONFIG_HAS_IOMEM=y | 787 | CONFIG_HAS_IOMEM=y |
760 | CONFIG_HAS_IOPORT=y | 788 | CONFIG_HAS_IOPORT=y |
761 | CONFIG_HAS_DMA=y | 789 | CONFIG_HAS_DMA=y |
762 | # CONFIG_INSTRUMENTATION is not set | ||
763 | 790 | ||
764 | # | 791 | # |
765 | # Kernel hacking | 792 | # Kernel hacking |
@@ -778,6 +805,7 @@ CONFIG_SCHED_DEBUG=y | |||
778 | # CONFIG_SCHEDSTATS is not set | 805 | # CONFIG_SCHEDSTATS is not set |
779 | # CONFIG_TIMER_STATS is not set | 806 | # CONFIG_TIMER_STATS is not set |
780 | # CONFIG_SLUB_DEBUG_ON is not set | 807 | # CONFIG_SLUB_DEBUG_ON is not set |
808 | # CONFIG_SLUB_STATS is not set | ||
781 | # CONFIG_DEBUG_RT_MUTEXES is not set | 809 | # CONFIG_DEBUG_RT_MUTEXES is not set |
782 | # CONFIG_RT_MUTEX_TESTER is not set | 810 | # CONFIG_RT_MUTEX_TESTER is not set |
783 | # CONFIG_DEBUG_SPINLOCK is not set | 811 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -790,8 +818,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
790 | # CONFIG_DEBUG_VM is not set | 818 | # CONFIG_DEBUG_VM is not set |
791 | # CONFIG_DEBUG_LIST is not set | 819 | # CONFIG_DEBUG_LIST is not set |
792 | # CONFIG_DEBUG_SG is not set | 820 | # CONFIG_DEBUG_SG is not set |
793 | CONFIG_FORCED_INLINING=y | ||
794 | # CONFIG_BOOT_PRINTK_DELAY is not set | 821 | # CONFIG_BOOT_PRINTK_DELAY is not set |
822 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
795 | # CONFIG_FAULT_INJECTION is not set | 823 | # CONFIG_FAULT_INJECTION is not set |
796 | # CONFIG_SAMPLES is not set | 824 | # CONFIG_SAMPLES is not set |
797 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 825 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -808,6 +836,50 @@ CONFIG_FORCED_INLINING=y | |||
808 | # CONFIG_KEYS is not set | 836 | # CONFIG_KEYS is not set |
809 | # CONFIG_SECURITY is not set | 837 | # CONFIG_SECURITY is not set |
810 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 838 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
811 | # CONFIG_CRYPTO is not set | 839 | CONFIG_CRYPTO=y |
840 | # CONFIG_CRYPTO_SEQIV is not set | ||
841 | # CONFIG_CRYPTO_MANAGER is not set | ||
842 | # CONFIG_CRYPTO_HMAC is not set | ||
843 | # CONFIG_CRYPTO_XCBC is not set | ||
844 | # CONFIG_CRYPTO_NULL is not set | ||
845 | # CONFIG_CRYPTO_MD4 is not set | ||
846 | # CONFIG_CRYPTO_MD5 is not set | ||
847 | # CONFIG_CRYPTO_SHA1 is not set | ||
848 | # CONFIG_CRYPTO_SHA256 is not set | ||
849 | # CONFIG_CRYPTO_SHA512 is not set | ||
850 | # CONFIG_CRYPTO_WP512 is not set | ||
851 | # CONFIG_CRYPTO_TGR192 is not set | ||
852 | # CONFIG_CRYPTO_GF128MUL is not set | ||
853 | # CONFIG_CRYPTO_ECB is not set | ||
854 | # CONFIG_CRYPTO_CBC is not set | ||
855 | # CONFIG_CRYPTO_PCBC is not set | ||
856 | # CONFIG_CRYPTO_LRW is not set | ||
857 | # CONFIG_CRYPTO_XTS is not set | ||
858 | # CONFIG_CRYPTO_CTR is not set | ||
859 | # CONFIG_CRYPTO_GCM is not set | ||
860 | # CONFIG_CRYPTO_CCM is not set | ||
861 | # CONFIG_CRYPTO_CRYPTD is not set | ||
862 | # CONFIG_CRYPTO_DES is not set | ||
863 | # CONFIG_CRYPTO_FCRYPT is not set | ||
864 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
865 | # CONFIG_CRYPTO_TWOFISH is not set | ||
866 | # CONFIG_CRYPTO_SERPENT is not set | ||
867 | # CONFIG_CRYPTO_AES is not set | ||
868 | # CONFIG_CRYPTO_CAST5 is not set | ||
869 | # CONFIG_CRYPTO_CAST6 is not set | ||
870 | # CONFIG_CRYPTO_TEA is not set | ||
871 | # CONFIG_CRYPTO_ARC4 is not set | ||
872 | # CONFIG_CRYPTO_KHAZAD is not set | ||
873 | # CONFIG_CRYPTO_ANUBIS is not set | ||
874 | # CONFIG_CRYPTO_SEED is not set | ||
875 | # CONFIG_CRYPTO_SALSA20 is not set | ||
876 | # CONFIG_CRYPTO_DEFLATE is not set | ||
877 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
878 | # CONFIG_CRYPTO_CRC32C is not set | ||
879 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
880 | # CONFIG_CRYPTO_AUTHENC is not set | ||
881 | # CONFIG_CRYPTO_LZO is not set | ||
882 | CONFIG_CRYPTO_HW=y | ||
883 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
812 | # CONFIG_PPC_CLOCK is not set | 884 | # CONFIG_PPC_CLOCK is not set |
813 | CONFIG_PPC_LIB_RHEAP=y | 885 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc8568mds_defconfig b/arch/powerpc/configs/mpc8568mds_defconfig index f51b58ae329a..e7da4b96cdeb 100644 --- a/arch/powerpc/configs/mpc8568mds_defconfig +++ b/arch/powerpc/configs/mpc8568mds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:50 2007 | 4 | # Mon Mar 24 08:48:28 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,15 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | # CONFIG_FAIR_GROUP_SCHED is not set | 76 | # CONFIG_FAIR_GROUP_SCHED is not set |
77 | # CONFIG_RT_GROUP_SCHED is not set | ||
78 | CONFIG_USER_SCHED=y | ||
79 | # CONFIG_CGROUP_SCHED is not set | ||
77 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
78 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
79 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
80 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
81 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -87,11 +92,13 @@ CONFIG_HOTPLUG=y | |||
87 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
88 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
89 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
90 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
91 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
92 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
93 | # CONFIG_EPOLL is not set | 99 | # CONFIG_EPOLL is not set |
94 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
95 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
96 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
97 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -99,6 +106,13 @@ CONFIG_SLUB_DEBUG=y | |||
99 | # CONFIG_SLAB is not set | 106 | # CONFIG_SLAB is not set |
100 | CONFIG_SLUB=y | 107 | CONFIG_SLUB=y |
101 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | ||
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
115 | CONFIG_SLABINFO=y | ||
102 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
103 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
104 | CONFIG_BASE_SMALL=0 | 118 | CONFIG_BASE_SMALL=0 |
@@ -126,21 +140,30 @@ CONFIG_DEFAULT_AS=y | |||
126 | # CONFIG_DEFAULT_CFQ is not set | 140 | # CONFIG_DEFAULT_CFQ is not set |
127 | # CONFIG_DEFAULT_NOOP is not set | 141 | # CONFIG_DEFAULT_NOOP is not set |
128 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 142 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
143 | CONFIG_CLASSIC_RCU=y | ||
129 | 144 | ||
130 | # | 145 | # |
131 | # Platform support | 146 | # Platform support |
132 | # | 147 | # |
133 | # CONFIG_PPC_MPC52xx is not set | 148 | # CONFIG_PPC_MPC512x is not set |
134 | # CONFIG_PPC_MPC5200 is not set | 149 | # CONFIG_PPC_MPC5121 is not set |
135 | # CONFIG_PPC_CELL is not set | 150 | # CONFIG_PPC_CELL is not set |
136 | # CONFIG_PPC_CELL_NATIVE is not set | 151 | # CONFIG_PPC_CELL_NATIVE is not set |
137 | # CONFIG_PQ2ADS is not set | 152 | # CONFIG_PQ2ADS is not set |
153 | CONFIG_MPC85xx=y | ||
138 | # CONFIG_MPC8540_ADS is not set | 154 | # CONFIG_MPC8540_ADS is not set |
139 | # CONFIG_MPC8560_ADS is not set | 155 | # CONFIG_MPC8560_ADS is not set |
140 | # CONFIG_MPC85xx_CDS is not set | 156 | # CONFIG_MPC85xx_CDS is not set |
141 | CONFIG_MPC85xx_MDS=y | 157 | CONFIG_MPC85xx_MDS=y |
142 | # CONFIG_MPC85xx_DS is not set | 158 | # CONFIG_MPC85xx_DS is not set |
143 | CONFIG_MPC85xx=y | 159 | # CONFIG_STX_GP3 is not set |
160 | # CONFIG_TQM8540 is not set | ||
161 | # CONFIG_TQM8541 is not set | ||
162 | # CONFIG_TQM8555 is not set | ||
163 | # CONFIG_TQM8560 is not set | ||
164 | # CONFIG_SBC8548 is not set | ||
165 | # CONFIG_SBC8560 is not set | ||
166 | # CONFIG_IPIC is not set | ||
144 | CONFIG_MPIC=y | 167 | CONFIG_MPIC=y |
145 | # CONFIG_MPIC_WEIRD is not set | 168 | # CONFIG_MPIC_WEIRD is not set |
146 | # CONFIG_PPC_I8259 is not set | 169 | # CONFIG_PPC_I8259 is not set |
@@ -168,13 +191,17 @@ CONFIG_HZ_250=y | |||
168 | # CONFIG_HZ_300 is not set | 191 | # CONFIG_HZ_300 is not set |
169 | # CONFIG_HZ_1000 is not set | 192 | # CONFIG_HZ_1000 is not set |
170 | CONFIG_HZ=250 | 193 | CONFIG_HZ=250 |
194 | # CONFIG_SCHED_HRTICK is not set | ||
171 | CONFIG_PREEMPT_NONE=y | 195 | CONFIG_PREEMPT_NONE=y |
172 | # CONFIG_PREEMPT_VOLUNTARY is not set | 196 | # CONFIG_PREEMPT_VOLUNTARY is not set |
173 | # CONFIG_PREEMPT is not set | 197 | # CONFIG_PREEMPT is not set |
174 | CONFIG_BINFMT_ELF=y | 198 | CONFIG_BINFMT_ELF=y |
175 | # CONFIG_BINFMT_MISC is not set | 199 | # CONFIG_BINFMT_MISC is not set |
176 | CONFIG_MATH_EMULATION=y | 200 | CONFIG_MATH_EMULATION=y |
201 | # CONFIG_IOMMU_HELPER is not set | ||
177 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 202 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
203 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
204 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
178 | CONFIG_ARCH_FLATMEM_ENABLE=y | 205 | CONFIG_ARCH_FLATMEM_ENABLE=y |
179 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 206 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
180 | CONFIG_SELECT_MEMORY_MODEL=y | 207 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -193,11 +220,7 @@ CONFIG_VIRT_TO_BUS=y | |||
193 | CONFIG_PROC_DEVICETREE=y | 220 | CONFIG_PROC_DEVICETREE=y |
194 | # CONFIG_CMDLINE_BOOL is not set | 221 | # CONFIG_CMDLINE_BOOL is not set |
195 | # CONFIG_PM is not set | 222 | # CONFIG_PM is not set |
196 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
197 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
198 | CONFIG_SECCOMP=y | 223 | CONFIG_SECCOMP=y |
199 | CONFIG_WANT_DEVICE_TREE=y | ||
200 | CONFIG_DEVICE_TREE="" | ||
201 | CONFIG_ISA_DMA_API=y | 224 | CONFIG_ISA_DMA_API=y |
202 | 225 | ||
203 | # | 226 | # |
@@ -247,6 +270,7 @@ CONFIG_XFRM=y | |||
247 | # CONFIG_XFRM_USER is not set | 270 | # CONFIG_XFRM_USER is not set |
248 | # CONFIG_XFRM_SUB_POLICY is not set | 271 | # CONFIG_XFRM_SUB_POLICY is not set |
249 | # CONFIG_XFRM_MIGRATE is not set | 272 | # CONFIG_XFRM_MIGRATE is not set |
273 | # CONFIG_XFRM_STATISTICS is not set | ||
250 | # CONFIG_NET_KEY is not set | 274 | # CONFIG_NET_KEY is not set |
251 | CONFIG_INET=y | 275 | CONFIG_INET=y |
252 | CONFIG_IP_MULTICAST=y | 276 | CONFIG_IP_MULTICAST=y |
@@ -302,6 +326,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
302 | # | 326 | # |
303 | # CONFIG_NET_PKTGEN is not set | 327 | # CONFIG_NET_PKTGEN is not set |
304 | # CONFIG_HAMRADIO is not set | 328 | # CONFIG_HAMRADIO is not set |
329 | # CONFIG_CAN is not set | ||
305 | # CONFIG_IRDA is not set | 330 | # CONFIG_IRDA is not set |
306 | # CONFIG_BT is not set | 331 | # CONFIG_BT is not set |
307 | # CONFIG_AF_RXRPC is not set | 332 | # CONFIG_AF_RXRPC is not set |
@@ -348,7 +373,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
348 | CONFIG_BLK_DEV_RAM=y | 373 | CONFIG_BLK_DEV_RAM=y |
349 | CONFIG_BLK_DEV_RAM_COUNT=16 | 374 | CONFIG_BLK_DEV_RAM_COUNT=16 |
350 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 375 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
351 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 376 | # CONFIG_BLK_DEV_XIP is not set |
352 | # CONFIG_CDROM_PKTCDVD is not set | 377 | # CONFIG_CDROM_PKTCDVD is not set |
353 | # CONFIG_ATA_OVER_ETH is not set | 378 | # CONFIG_ATA_OVER_ETH is not set |
354 | CONFIG_MISC_DEVICES=y | 379 | CONFIG_MISC_DEVICES=y |
@@ -356,6 +381,8 @@ CONFIG_MISC_DEVICES=y | |||
356 | # CONFIG_EEPROM_93CX6 is not set | 381 | # CONFIG_EEPROM_93CX6 is not set |
357 | # CONFIG_SGI_IOC4 is not set | 382 | # CONFIG_SGI_IOC4 is not set |
358 | # CONFIG_TIFM_CORE is not set | 383 | # CONFIG_TIFM_CORE is not set |
384 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
385 | CONFIG_HAVE_IDE=y | ||
359 | # CONFIG_IDE is not set | 386 | # CONFIG_IDE is not set |
360 | 387 | ||
361 | # | 388 | # |
@@ -420,6 +447,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
420 | # CONFIG_SCSI_IPS is not set | 447 | # CONFIG_SCSI_IPS is not set |
421 | # CONFIG_SCSI_INITIO is not set | 448 | # CONFIG_SCSI_INITIO is not set |
422 | # CONFIG_SCSI_INIA100 is not set | 449 | # CONFIG_SCSI_INIA100 is not set |
450 | # CONFIG_SCSI_MVSAS is not set | ||
423 | # CONFIG_SCSI_STEX is not set | 451 | # CONFIG_SCSI_STEX is not set |
424 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 452 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
425 | # CONFIG_SCSI_QLOGIC_1280 is not set | 453 | # CONFIG_SCSI_QLOGIC_1280 is not set |
@@ -450,7 +478,6 @@ CONFIG_NETDEVICES=y | |||
450 | # CONFIG_EQUALIZER is not set | 478 | # CONFIG_EQUALIZER is not set |
451 | # CONFIG_TUN is not set | 479 | # CONFIG_TUN is not set |
452 | # CONFIG_VETH is not set | 480 | # CONFIG_VETH is not set |
453 | # CONFIG_IP1000 is not set | ||
454 | # CONFIG_ARCNET is not set | 481 | # CONFIG_ARCNET is not set |
455 | CONFIG_PHYLIB=y | 482 | CONFIG_PHYLIB=y |
456 | 483 | ||
@@ -466,6 +493,7 @@ CONFIG_MARVELL_PHY=y | |||
466 | # CONFIG_SMSC_PHY is not set | 493 | # CONFIG_SMSC_PHY is not set |
467 | # CONFIG_BROADCOM_PHY is not set | 494 | # CONFIG_BROADCOM_PHY is not set |
468 | # CONFIG_ICPLUS_PHY is not set | 495 | # CONFIG_ICPLUS_PHY is not set |
496 | # CONFIG_REALTEK_PHY is not set | ||
469 | # CONFIG_FIXED_PHY is not set | 497 | # CONFIG_FIXED_PHY is not set |
470 | # CONFIG_MDIO_BITBANG is not set | 498 | # CONFIG_MDIO_BITBANG is not set |
471 | CONFIG_NET_ETHERNET=y | 499 | CONFIG_NET_ETHERNET=y |
@@ -487,6 +515,9 @@ CONFIG_NETDEV_1000=y | |||
487 | # CONFIG_DL2K is not set | 515 | # CONFIG_DL2K is not set |
488 | # CONFIG_E1000 is not set | 516 | # CONFIG_E1000 is not set |
489 | # CONFIG_E1000E is not set | 517 | # CONFIG_E1000E is not set |
518 | # CONFIG_E1000E_ENABLED is not set | ||
519 | # CONFIG_IP1000 is not set | ||
520 | # CONFIG_IGB is not set | ||
490 | # CONFIG_NS83820 is not set | 521 | # CONFIG_NS83820 is not set |
491 | # CONFIG_HAMACHI is not set | 522 | # CONFIG_HAMACHI is not set |
492 | # CONFIG_YELLOWFIN is not set | 523 | # CONFIG_YELLOWFIN is not set |
@@ -514,6 +545,7 @@ CONFIG_NETDEV_10000=y | |||
514 | # CONFIG_NIU is not set | 545 | # CONFIG_NIU is not set |
515 | # CONFIG_MLX4_CORE is not set | 546 | # CONFIG_MLX4_CORE is not set |
516 | # CONFIG_TEHUTI is not set | 547 | # CONFIG_TEHUTI is not set |
548 | # CONFIG_BNX2X is not set | ||
517 | # CONFIG_TR is not set | 549 | # CONFIG_TR is not set |
518 | 550 | ||
519 | # | 551 | # |
@@ -527,7 +559,6 @@ CONFIG_NETDEV_10000=y | |||
527 | # CONFIG_PPP is not set | 559 | # CONFIG_PPP is not set |
528 | # CONFIG_SLIP is not set | 560 | # CONFIG_SLIP is not set |
529 | # CONFIG_NET_FC is not set | 561 | # CONFIG_NET_FC is not set |
530 | # CONFIG_SHAPER is not set | ||
531 | # CONFIG_NETCONSOLE is not set | 562 | # CONFIG_NETCONSOLE is not set |
532 | # CONFIG_NETPOLL is not set | 563 | # CONFIG_NETPOLL is not set |
533 | # CONFIG_NET_POLL_CONTROLLER is not set | 564 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -570,6 +601,7 @@ CONFIG_INPUT=y | |||
570 | # | 601 | # |
571 | # CONFIG_VT is not set | 602 | # CONFIG_VT is not set |
572 | # CONFIG_SERIAL_NONSTANDARD is not set | 603 | # CONFIG_SERIAL_NONSTANDARD is not set |
604 | # CONFIG_NOZOMI is not set | ||
573 | 605 | ||
574 | # | 606 | # |
575 | # Serial drivers | 607 | # Serial drivers |
@@ -590,6 +622,7 @@ CONFIG_SERIAL_CORE=y | |||
590 | CONFIG_SERIAL_CORE_CONSOLE=y | 622 | CONFIG_SERIAL_CORE_CONSOLE=y |
591 | # CONFIG_SERIAL_JSM is not set | 623 | # CONFIG_SERIAL_JSM is not set |
592 | # CONFIG_SERIAL_OF_PLATFORM is not set | 624 | # CONFIG_SERIAL_OF_PLATFORM is not set |
625 | # CONFIG_SERIAL_QE is not set | ||
593 | CONFIG_UNIX98_PTYS=y | 626 | CONFIG_UNIX98_PTYS=y |
594 | CONFIG_LEGACY_PTYS=y | 627 | CONFIG_LEGACY_PTYS=y |
595 | CONFIG_LEGACY_PTY_COUNT=256 | 628 | CONFIG_LEGACY_PTY_COUNT=256 |
@@ -644,14 +677,12 @@ CONFIG_I2C_MPC=y | |||
644 | # | 677 | # |
645 | # Miscellaneous I2C Chip support | 678 | # Miscellaneous I2C Chip support |
646 | # | 679 | # |
647 | # CONFIG_SENSORS_DS1337 is not set | ||
648 | # CONFIG_SENSORS_DS1374 is not set | ||
649 | # CONFIG_DS1682 is not set | 680 | # CONFIG_DS1682 is not set |
650 | # CONFIG_SENSORS_EEPROM is not set | 681 | # CONFIG_SENSORS_EEPROM is not set |
651 | # CONFIG_SENSORS_PCF8574 is not set | 682 | # CONFIG_SENSORS_PCF8574 is not set |
652 | # CONFIG_SENSORS_PCA9539 is not set | 683 | # CONFIG_PCF8575 is not set |
653 | # CONFIG_SENSORS_PCF8591 is not set | 684 | # CONFIG_SENSORS_PCF8591 is not set |
654 | # CONFIG_SENSORS_M41T00 is not set | 685 | # CONFIG_TPS65010 is not set |
655 | # CONFIG_SENSORS_MAX6875 is not set | 686 | # CONFIG_SENSORS_MAX6875 is not set |
656 | # CONFIG_SENSORS_TSL2550 is not set | 687 | # CONFIG_SENSORS_TSL2550 is not set |
657 | # CONFIG_I2C_DEBUG_CORE is not set | 688 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -676,6 +707,7 @@ CONFIG_HWMON=y | |||
676 | # CONFIG_SENSORS_ADM1031 is not set | 707 | # CONFIG_SENSORS_ADM1031 is not set |
677 | # CONFIG_SENSORS_ADM9240 is not set | 708 | # CONFIG_SENSORS_ADM9240 is not set |
678 | # CONFIG_SENSORS_ADT7470 is not set | 709 | # CONFIG_SENSORS_ADT7470 is not set |
710 | # CONFIG_SENSORS_ADT7473 is not set | ||
679 | # CONFIG_SENSORS_ATXP1 is not set | 711 | # CONFIG_SENSORS_ATXP1 is not set |
680 | # CONFIG_SENSORS_DS1621 is not set | 712 | # CONFIG_SENSORS_DS1621 is not set |
681 | # CONFIG_SENSORS_I5K_AMB is not set | 713 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -705,6 +737,7 @@ CONFIG_HWMON=y | |||
705 | # CONFIG_SENSORS_SMSC47M1 is not set | 737 | # CONFIG_SENSORS_SMSC47M1 is not set |
706 | # CONFIG_SENSORS_SMSC47M192 is not set | 738 | # CONFIG_SENSORS_SMSC47M192 is not set |
707 | # CONFIG_SENSORS_SMSC47B397 is not set | 739 | # CONFIG_SENSORS_SMSC47B397 is not set |
740 | # CONFIG_SENSORS_ADS7828 is not set | ||
708 | # CONFIG_SENSORS_THMC50 is not set | 741 | # CONFIG_SENSORS_THMC50 is not set |
709 | # CONFIG_SENSORS_VIA686A is not set | 742 | # CONFIG_SENSORS_VIA686A is not set |
710 | # CONFIG_SENSORS_VT1211 is not set | 743 | # CONFIG_SENSORS_VT1211 is not set |
@@ -714,9 +747,11 @@ CONFIG_HWMON=y | |||
714 | # CONFIG_SENSORS_W83792D is not set | 747 | # CONFIG_SENSORS_W83792D is not set |
715 | # CONFIG_SENSORS_W83793 is not set | 748 | # CONFIG_SENSORS_W83793 is not set |
716 | # CONFIG_SENSORS_W83L785TS is not set | 749 | # CONFIG_SENSORS_W83L785TS is not set |
750 | # CONFIG_SENSORS_W83L786NG is not set | ||
717 | # CONFIG_SENSORS_W83627HF is not set | 751 | # CONFIG_SENSORS_W83627HF is not set |
718 | # CONFIG_SENSORS_W83627EHF is not set | 752 | # CONFIG_SENSORS_W83627EHF is not set |
719 | # CONFIG_HWMON_DEBUG_CHIP is not set | 753 | # CONFIG_HWMON_DEBUG_CHIP is not set |
754 | # CONFIG_THERMAL is not set | ||
720 | CONFIG_WATCHDOG=y | 755 | CONFIG_WATCHDOG=y |
721 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 756 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
722 | 757 | ||
@@ -782,17 +817,18 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
782 | # | 817 | # |
783 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 818 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
784 | # | 819 | # |
785 | |||
786 | # | ||
787 | # USB Gadget Support | ||
788 | # | ||
789 | # CONFIG_USB_GADGET is not set | 820 | # CONFIG_USB_GADGET is not set |
790 | # CONFIG_MMC is not set | 821 | # CONFIG_MMC is not set |
822 | # CONFIG_MEMSTICK is not set | ||
791 | # CONFIG_NEW_LEDS is not set | 823 | # CONFIG_NEW_LEDS is not set |
792 | # CONFIG_INFINIBAND is not set | 824 | # CONFIG_INFINIBAND is not set |
793 | # CONFIG_EDAC is not set | 825 | # CONFIG_EDAC is not set |
794 | CONFIG_RTC_LIB=y | 826 | CONFIG_RTC_LIB=y |
795 | CONFIG_RTC_CLASS=y | 827 | CONFIG_RTC_CLASS=y |
828 | |||
829 | # | ||
830 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
831 | # | ||
796 | CONFIG_RTC_HCTOSYS=y | 832 | CONFIG_RTC_HCTOSYS=y |
797 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 833 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
798 | # CONFIG_RTC_DEBUG is not set | 834 | # CONFIG_RTC_DEBUG is not set |
@@ -819,6 +855,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
819 | # CONFIG_RTC_DRV_PCF8563 is not set | 855 | # CONFIG_RTC_DRV_PCF8563 is not set |
820 | # CONFIG_RTC_DRV_PCF8583 is not set | 856 | # CONFIG_RTC_DRV_PCF8583 is not set |
821 | # CONFIG_RTC_DRV_M41T80 is not set | 857 | # CONFIG_RTC_DRV_M41T80 is not set |
858 | # CONFIG_RTC_DRV_S35390A is not set | ||
822 | 859 | ||
823 | # | 860 | # |
824 | # SPI RTC drivers | 861 | # SPI RTC drivers |
@@ -828,9 +865,10 @@ CONFIG_RTC_DRV_DS1374=y | |||
828 | # Platform RTC drivers | 865 | # Platform RTC drivers |
829 | # | 866 | # |
830 | # CONFIG_RTC_DRV_CMOS is not set | 867 | # CONFIG_RTC_DRV_CMOS is not set |
868 | # CONFIG_RTC_DRV_DS1511 is not set | ||
831 | # CONFIG_RTC_DRV_DS1553 is not set | 869 | # CONFIG_RTC_DRV_DS1553 is not set |
832 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
833 | # CONFIG_RTC_DRV_DS1742 is not set | 870 | # CONFIG_RTC_DRV_DS1742 is not set |
871 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
834 | # CONFIG_RTC_DRV_M48T86 is not set | 872 | # CONFIG_RTC_DRV_M48T86 is not set |
835 | # CONFIG_RTC_DRV_M48T59 is not set | 873 | # CONFIG_RTC_DRV_M48T59 is not set |
836 | # CONFIG_RTC_DRV_V3020 is not set | 874 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -838,6 +876,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
838 | # | 876 | # |
839 | # on-CPU RTC drivers | 877 | # on-CPU RTC drivers |
840 | # | 878 | # |
879 | # CONFIG_DMADEVICES is not set | ||
841 | 880 | ||
842 | # | 881 | # |
843 | # Userspace I/O | 882 | # Userspace I/O |
@@ -863,12 +902,10 @@ CONFIG_FS_MBCACHE=y | |||
863 | # CONFIG_XFS_FS is not set | 902 | # CONFIG_XFS_FS is not set |
864 | # CONFIG_GFS2_FS is not set | 903 | # CONFIG_GFS2_FS is not set |
865 | # CONFIG_OCFS2_FS is not set | 904 | # CONFIG_OCFS2_FS is not set |
866 | # CONFIG_MINIX_FS is not set | 905 | CONFIG_DNOTIFY=y |
867 | # CONFIG_ROMFS_FS is not set | ||
868 | CONFIG_INOTIFY=y | 906 | CONFIG_INOTIFY=y |
869 | CONFIG_INOTIFY_USER=y | 907 | CONFIG_INOTIFY_USER=y |
870 | # CONFIG_QUOTA is not set | 908 | # CONFIG_QUOTA is not set |
871 | CONFIG_DNOTIFY=y | ||
872 | # CONFIG_AUTOFS_FS is not set | 909 | # CONFIG_AUTOFS_FS is not set |
873 | # CONFIG_AUTOFS4_FS is not set | 910 | # CONFIG_AUTOFS4_FS is not set |
874 | # CONFIG_FUSE_FS is not set | 911 | # CONFIG_FUSE_FS is not set |
@@ -910,8 +947,10 @@ CONFIG_TMPFS=y | |||
910 | # CONFIG_EFS_FS is not set | 947 | # CONFIG_EFS_FS is not set |
911 | # CONFIG_CRAMFS is not set | 948 | # CONFIG_CRAMFS is not set |
912 | # CONFIG_VXFS_FS is not set | 949 | # CONFIG_VXFS_FS is not set |
950 | # CONFIG_MINIX_FS is not set | ||
913 | # CONFIG_HPFS_FS is not set | 951 | # CONFIG_HPFS_FS is not set |
914 | # CONFIG_QNX4FS_FS is not set | 952 | # CONFIG_QNX4FS_FS is not set |
953 | # CONFIG_ROMFS_FS is not set | ||
915 | # CONFIG_SYSV_FS is not set | 954 | # CONFIG_SYSV_FS is not set |
916 | # CONFIG_UFS_FS is not set | 955 | # CONFIG_UFS_FS is not set |
917 | CONFIG_NETWORK_FILESYSTEMS=y | 956 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -955,7 +994,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
955 | # CONFIG_SYSV68_PARTITION is not set | 994 | # CONFIG_SYSV68_PARTITION is not set |
956 | # CONFIG_NLS is not set | 995 | # CONFIG_NLS is not set |
957 | # CONFIG_DLM is not set | 996 | # CONFIG_DLM is not set |
958 | # CONFIG_UCC_SLOW is not set | ||
959 | 997 | ||
960 | # | 998 | # |
961 | # Library routines | 999 | # Library routines |
@@ -971,7 +1009,6 @@ CONFIG_PLIST=y | |||
971 | CONFIG_HAS_IOMEM=y | 1009 | CONFIG_HAS_IOMEM=y |
972 | CONFIG_HAS_IOPORT=y | 1010 | CONFIG_HAS_IOPORT=y |
973 | CONFIG_HAS_DMA=y | 1011 | CONFIG_HAS_DMA=y |
974 | # CONFIG_INSTRUMENTATION is not set | ||
975 | 1012 | ||
976 | # | 1013 | # |
977 | # Kernel hacking | 1014 | # Kernel hacking |
@@ -990,6 +1027,7 @@ CONFIG_SCHED_DEBUG=y | |||
990 | # CONFIG_SCHEDSTATS is not set | 1027 | # CONFIG_SCHEDSTATS is not set |
991 | # CONFIG_TIMER_STATS is not set | 1028 | # CONFIG_TIMER_STATS is not set |
992 | # CONFIG_SLUB_DEBUG_ON is not set | 1029 | # CONFIG_SLUB_DEBUG_ON is not set |
1030 | # CONFIG_SLUB_STATS is not set | ||
993 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1031 | # CONFIG_DEBUG_RT_MUTEXES is not set |
994 | # CONFIG_RT_MUTEX_TESTER is not set | 1032 | # CONFIG_RT_MUTEX_TESTER is not set |
995 | # CONFIG_DEBUG_SPINLOCK is not set | 1033 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1002,9 +1040,9 @@ CONFIG_SCHED_DEBUG=y | |||
1002 | # CONFIG_DEBUG_VM is not set | 1040 | # CONFIG_DEBUG_VM is not set |
1003 | # CONFIG_DEBUG_LIST is not set | 1041 | # CONFIG_DEBUG_LIST is not set |
1004 | # CONFIG_DEBUG_SG is not set | 1042 | # CONFIG_DEBUG_SG is not set |
1005 | CONFIG_FORCED_INLINING=y | ||
1006 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1043 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1007 | # CONFIG_RCU_TORTURE_TEST is not set | 1044 | # CONFIG_RCU_TORTURE_TEST is not set |
1045 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1008 | # CONFIG_FAULT_INJECTION is not set | 1046 | # CONFIG_FAULT_INJECTION is not set |
1009 | # CONFIG_SAMPLES is not set | 1047 | # CONFIG_SAMPLES is not set |
1010 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1048 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1023,6 +1061,7 @@ CONFIG_PPC_EARLY_DEBUG=y | |||
1023 | # CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set | 1061 | # CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set |
1024 | # CONFIG_PPC_EARLY_DEBUG_BEAT is not set | 1062 | # CONFIG_PPC_EARLY_DEBUG_BEAT is not set |
1025 | # CONFIG_PPC_EARLY_DEBUG_44x is not set | 1063 | # CONFIG_PPC_EARLY_DEBUG_44x is not set |
1064 | # CONFIG_PPC_EARLY_DEBUG_40x is not set | ||
1026 | # CONFIG_PPC_EARLY_DEBUG_CPM is not set | 1065 | # CONFIG_PPC_EARLY_DEBUG_CPM is not set |
1027 | 1066 | ||
1028 | # | 1067 | # |
@@ -1034,6 +1073,7 @@ CONFIG_PPC_EARLY_DEBUG=y | |||
1034 | CONFIG_CRYPTO=y | 1073 | CONFIG_CRYPTO=y |
1035 | CONFIG_CRYPTO_ALGAPI=y | 1074 | CONFIG_CRYPTO_ALGAPI=y |
1036 | CONFIG_CRYPTO_BLKCIPHER=y | 1075 | CONFIG_CRYPTO_BLKCIPHER=y |
1076 | # CONFIG_CRYPTO_SEQIV is not set | ||
1037 | CONFIG_CRYPTO_MANAGER=y | 1077 | CONFIG_CRYPTO_MANAGER=y |
1038 | # CONFIG_CRYPTO_HMAC is not set | 1078 | # CONFIG_CRYPTO_HMAC is not set |
1039 | # CONFIG_CRYPTO_XCBC is not set | 1079 | # CONFIG_CRYPTO_XCBC is not set |
@@ -1051,6 +1091,9 @@ CONFIG_CRYPTO_CBC=y | |||
1051 | CONFIG_CRYPTO_PCBC=m | 1091 | CONFIG_CRYPTO_PCBC=m |
1052 | # CONFIG_CRYPTO_LRW is not set | 1092 | # CONFIG_CRYPTO_LRW is not set |
1053 | # CONFIG_CRYPTO_XTS is not set | 1093 | # CONFIG_CRYPTO_XTS is not set |
1094 | # CONFIG_CRYPTO_CTR is not set | ||
1095 | # CONFIG_CRYPTO_GCM is not set | ||
1096 | # CONFIG_CRYPTO_CCM is not set | ||
1054 | # CONFIG_CRYPTO_CRYPTD is not set | 1097 | # CONFIG_CRYPTO_CRYPTD is not set |
1055 | CONFIG_CRYPTO_DES=y | 1098 | CONFIG_CRYPTO_DES=y |
1056 | # CONFIG_CRYPTO_FCRYPT is not set | 1099 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1065,12 +1108,15 @@ CONFIG_CRYPTO_DES=y | |||
1065 | # CONFIG_CRYPTO_KHAZAD is not set | 1108 | # CONFIG_CRYPTO_KHAZAD is not set |
1066 | # CONFIG_CRYPTO_ANUBIS is not set | 1109 | # CONFIG_CRYPTO_ANUBIS is not set |
1067 | # CONFIG_CRYPTO_SEED is not set | 1110 | # CONFIG_CRYPTO_SEED is not set |
1111 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1068 | # CONFIG_CRYPTO_DEFLATE is not set | 1112 | # CONFIG_CRYPTO_DEFLATE is not set |
1069 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1113 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1070 | # CONFIG_CRYPTO_CRC32C is not set | 1114 | # CONFIG_CRYPTO_CRC32C is not set |
1071 | # CONFIG_CRYPTO_CAMELLIA is not set | 1115 | # CONFIG_CRYPTO_CAMELLIA is not set |
1072 | # CONFIG_CRYPTO_TEST is not set | 1116 | # CONFIG_CRYPTO_TEST is not set |
1073 | # CONFIG_CRYPTO_AUTHENC is not set | 1117 | # CONFIG_CRYPTO_AUTHENC is not set |
1118 | # CONFIG_CRYPTO_LZO is not set | ||
1074 | CONFIG_CRYPTO_HW=y | 1119 | CONFIG_CRYPTO_HW=y |
1120 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1075 | # CONFIG_PPC_CLOCK is not set | 1121 | # CONFIG_PPC_CLOCK is not set |
1076 | CONFIG_PPC_LIB_RHEAP=y | 1122 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc8572_ds_defconfig b/arch/powerpc/configs/mpc8572_ds_defconfig index b40802d17e03..460afe99c653 100644 --- a/arch/powerpc/configs/mpc8572_ds_defconfig +++ b/arch/powerpc/configs/mpc8572_ds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:52 2007 | 4 | # Mon Mar 24 08:48:29 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -68,17 +69,21 @@ CONFIG_POSIX_MQUEUE=y | |||
68 | CONFIG_BSD_PROCESS_ACCT=y | 69 | CONFIG_BSD_PROCESS_ACCT=y |
69 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 70 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
71 | # CONFIG_USER_NS is not set | ||
72 | # CONFIG_PID_NS is not set | ||
73 | CONFIG_AUDIT=y | 72 | CONFIG_AUDIT=y |
74 | # CONFIG_AUDITSYSCALL is not set | 73 | # CONFIG_AUDITSYSCALL is not set |
75 | CONFIG_IKCONFIG=y | 74 | CONFIG_IKCONFIG=y |
76 | CONFIG_IKCONFIG_PROC=y | 75 | CONFIG_IKCONFIG_PROC=y |
77 | CONFIG_LOG_BUF_SHIFT=14 | 76 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | 77 | # CONFIG_CGROUPS is not set |
78 | CONFIG_GROUP_SCHED=y | ||
79 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
80 | # CONFIG_RT_GROUP_SCHED is not set | ||
81 | CONFIG_USER_SCHED=y | ||
82 | # CONFIG_CGROUP_SCHED is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
81 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
86 | # CONFIG_NAMESPACES is not set | ||
82 | CONFIG_BLK_DEV_INITRD=y | 87 | CONFIG_BLK_DEV_INITRD=y |
83 | CONFIG_INITRAMFS_SOURCE="" | 88 | CONFIG_INITRAMFS_SOURCE="" |
84 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 89 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -92,11 +97,13 @@ CONFIG_HOTPLUG=y | |||
92 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
93 | CONFIG_BUG=y | 98 | CONFIG_BUG=y |
94 | CONFIG_ELF_CORE=y | 99 | CONFIG_ELF_CORE=y |
100 | CONFIG_COMPAT_BRK=y | ||
95 | CONFIG_BASE_FULL=y | 101 | CONFIG_BASE_FULL=y |
96 | CONFIG_FUTEX=y | 102 | CONFIG_FUTEX=y |
97 | CONFIG_ANON_INODES=y | 103 | CONFIG_ANON_INODES=y |
98 | CONFIG_EPOLL=y | 104 | CONFIG_EPOLL=y |
99 | CONFIG_SIGNALFD=y | 105 | CONFIG_SIGNALFD=y |
106 | CONFIG_TIMERFD=y | ||
100 | CONFIG_EVENTFD=y | 107 | CONFIG_EVENTFD=y |
101 | CONFIG_SHMEM=y | 108 | CONFIG_SHMEM=y |
102 | CONFIG_VM_EVENT_COUNTERS=y | 109 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -104,6 +111,14 @@ CONFIG_SLUB_DEBUG=y | |||
104 | # CONFIG_SLAB is not set | 111 | # CONFIG_SLAB is not set |
105 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
106 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | ||
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | ||
117 | # CONFIG_KPROBES is not set | ||
118 | CONFIG_HAVE_KPROBES=y | ||
119 | CONFIG_HAVE_KRETPROBES=y | ||
120 | CONFIG_PROC_PAGE_MONITOR=y | ||
121 | CONFIG_SLABINFO=y | ||
107 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
108 | # CONFIG_TINY_SHMEM is not set | 123 | # CONFIG_TINY_SHMEM is not set |
109 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
@@ -131,21 +146,30 @@ CONFIG_IOSCHED_CFQ=y | |||
131 | CONFIG_DEFAULT_CFQ=y | 146 | CONFIG_DEFAULT_CFQ=y |
132 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
133 | CONFIG_DEFAULT_IOSCHED="cfq" | 148 | CONFIG_DEFAULT_IOSCHED="cfq" |
149 | CONFIG_CLASSIC_RCU=y | ||
134 | 150 | ||
135 | # | 151 | # |
136 | # Platform support | 152 | # Platform support |
137 | # | 153 | # |
138 | # CONFIG_PPC_MPC52xx is not set | 154 | # CONFIG_PPC_MPC512x is not set |
139 | # CONFIG_PPC_MPC5200 is not set | 155 | # CONFIG_PPC_MPC5121 is not set |
140 | # CONFIG_PPC_CELL is not set | 156 | # CONFIG_PPC_CELL is not set |
141 | # CONFIG_PPC_CELL_NATIVE is not set | 157 | # CONFIG_PPC_CELL_NATIVE is not set |
142 | # CONFIG_PQ2ADS is not set | 158 | # CONFIG_PQ2ADS is not set |
159 | CONFIG_MPC85xx=y | ||
143 | # CONFIG_MPC8540_ADS is not set | 160 | # CONFIG_MPC8540_ADS is not set |
144 | # CONFIG_MPC8560_ADS is not set | 161 | # CONFIG_MPC8560_ADS is not set |
145 | # CONFIG_MPC85xx_CDS is not set | 162 | # CONFIG_MPC85xx_CDS is not set |
146 | # CONFIG_MPC85xx_MDS is not set | 163 | # CONFIG_MPC85xx_MDS is not set |
147 | CONFIG_MPC85xx_DS=y | 164 | CONFIG_MPC85xx_DS=y |
148 | CONFIG_MPC85xx=y | 165 | # CONFIG_STX_GP3 is not set |
166 | # CONFIG_TQM8540 is not set | ||
167 | # CONFIG_TQM8541 is not set | ||
168 | # CONFIG_TQM8555 is not set | ||
169 | # CONFIG_TQM8560 is not set | ||
170 | # CONFIG_SBC8548 is not set | ||
171 | # CONFIG_SBC8560 is not set | ||
172 | # CONFIG_IPIC is not set | ||
149 | CONFIG_MPIC=y | 173 | CONFIG_MPIC=y |
150 | # CONFIG_MPIC_WEIRD is not set | 174 | # CONFIG_MPIC_WEIRD is not set |
151 | CONFIG_PPC_I8259=y | 175 | CONFIG_PPC_I8259=y |
@@ -172,13 +196,17 @@ CONFIG_HZ_250=y | |||
172 | # CONFIG_HZ_300 is not set | 196 | # CONFIG_HZ_300 is not set |
173 | # CONFIG_HZ_1000 is not set | 197 | # CONFIG_HZ_1000 is not set |
174 | CONFIG_HZ=250 | 198 | CONFIG_HZ=250 |
199 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 200 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 201 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 202 | # CONFIG_PREEMPT is not set |
178 | CONFIG_BINFMT_ELF=y | 203 | CONFIG_BINFMT_ELF=y |
179 | CONFIG_BINFMT_MISC=m | 204 | CONFIG_BINFMT_MISC=m |
180 | CONFIG_MATH_EMULATION=y | 205 | CONFIG_MATH_EMULATION=y |
206 | # CONFIG_IOMMU_HELPER is not set | ||
181 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
208 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
209 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
182 | CONFIG_ARCH_FLATMEM_ENABLE=y | 210 | CONFIG_ARCH_FLATMEM_ENABLE=y |
183 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 211 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
184 | CONFIG_SELECT_MEMORY_MODEL=y | 212 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -197,11 +225,7 @@ CONFIG_VIRT_TO_BUS=y | |||
197 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
198 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
199 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
200 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
201 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
202 | CONFIG_SECCOMP=y | 228 | CONFIG_SECCOMP=y |
203 | CONFIG_WANT_DEVICE_TREE=y | ||
204 | CONFIG_DEVICE_TREE="" | ||
205 | CONFIG_ISA_DMA_API=y | 229 | CONFIG_ISA_DMA_API=y |
206 | 230 | ||
207 | # | 231 | # |
@@ -252,6 +276,7 @@ CONFIG_XFRM=y | |||
252 | CONFIG_XFRM_USER=y | 276 | CONFIG_XFRM_USER=y |
253 | # CONFIG_XFRM_SUB_POLICY is not set | 277 | # CONFIG_XFRM_SUB_POLICY is not set |
254 | # CONFIG_XFRM_MIGRATE is not set | 278 | # CONFIG_XFRM_MIGRATE is not set |
279 | # CONFIG_XFRM_STATISTICS is not set | ||
255 | CONFIG_NET_KEY=m | 280 | CONFIG_NET_KEY=m |
256 | # CONFIG_NET_KEY_MIGRATE is not set | 281 | # CONFIG_NET_KEY_MIGRATE is not set |
257 | CONFIG_INET=y | 282 | CONFIG_INET=y |
@@ -335,6 +360,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
335 | # | 360 | # |
336 | # CONFIG_NET_PKTGEN is not set | 361 | # CONFIG_NET_PKTGEN is not set |
337 | # CONFIG_HAMRADIO is not set | 362 | # CONFIG_HAMRADIO is not set |
363 | # CONFIG_CAN is not set | ||
338 | # CONFIG_IRDA is not set | 364 | # CONFIG_IRDA is not set |
339 | # CONFIG_BT is not set | 365 | # CONFIG_BT is not set |
340 | # CONFIG_AF_RXRPC is not set | 366 | # CONFIG_AF_RXRPC is not set |
@@ -383,7 +409,7 @@ CONFIG_BLK_DEV_NBD=y | |||
383 | CONFIG_BLK_DEV_RAM=y | 409 | CONFIG_BLK_DEV_RAM=y |
384 | CONFIG_BLK_DEV_RAM_COUNT=16 | 410 | CONFIG_BLK_DEV_RAM_COUNT=16 |
385 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 411 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
386 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 412 | # CONFIG_BLK_DEV_XIP is not set |
387 | # CONFIG_CDROM_PKTCDVD is not set | 413 | # CONFIG_CDROM_PKTCDVD is not set |
388 | # CONFIG_ATA_OVER_ETH is not set | 414 | # CONFIG_ATA_OVER_ETH is not set |
389 | CONFIG_MISC_DEVICES=y | 415 | CONFIG_MISC_DEVICES=y |
@@ -391,6 +417,8 @@ CONFIG_MISC_DEVICES=y | |||
391 | # CONFIG_EEPROM_93CX6 is not set | 417 | # CONFIG_EEPROM_93CX6 is not set |
392 | # CONFIG_SGI_IOC4 is not set | 418 | # CONFIG_SGI_IOC4 is not set |
393 | # CONFIG_TIFM_CORE is not set | 419 | # CONFIG_TIFM_CORE is not set |
420 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
421 | CONFIG_HAVE_IDE=y | ||
394 | # CONFIG_IDE is not set | 422 | # CONFIG_IDE is not set |
395 | 423 | ||
396 | # | 424 | # |
@@ -456,6 +484,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
456 | # CONFIG_SCSI_IPS is not set | 484 | # CONFIG_SCSI_IPS is not set |
457 | # CONFIG_SCSI_INITIO is not set | 485 | # CONFIG_SCSI_INITIO is not set |
458 | # CONFIG_SCSI_INIA100 is not set | 486 | # CONFIG_SCSI_INIA100 is not set |
487 | # CONFIG_SCSI_MVSAS is not set | ||
459 | # CONFIG_SCSI_STEX is not set | 488 | # CONFIG_SCSI_STEX is not set |
460 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 489 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
461 | # CONFIG_SCSI_IPR is not set | 490 | # CONFIG_SCSI_IPR is not set |
@@ -486,6 +515,7 @@ CONFIG_SATA_AHCI=y | |||
486 | # CONFIG_SATA_VIA is not set | 515 | # CONFIG_SATA_VIA is not set |
487 | # CONFIG_SATA_VITESSE is not set | 516 | # CONFIG_SATA_VITESSE is not set |
488 | # CONFIG_SATA_INIC162X is not set | 517 | # CONFIG_SATA_INIC162X is not set |
518 | # CONFIG_SATA_FSL is not set | ||
489 | CONFIG_PATA_ALI=y | 519 | CONFIG_PATA_ALI=y |
490 | # CONFIG_PATA_AMD is not set | 520 | # CONFIG_PATA_AMD is not set |
491 | # CONFIG_PATA_ARTOP is not set | 521 | # CONFIG_PATA_ARTOP is not set |
@@ -509,6 +539,7 @@ CONFIG_PATA_ALI=y | |||
509 | # CONFIG_PATA_MPIIX is not set | 539 | # CONFIG_PATA_MPIIX is not set |
510 | # CONFIG_PATA_OLDPIIX is not set | 540 | # CONFIG_PATA_OLDPIIX is not set |
511 | # CONFIG_PATA_NETCELL is not set | 541 | # CONFIG_PATA_NETCELL is not set |
542 | # CONFIG_PATA_NINJA32 is not set | ||
512 | # CONFIG_PATA_NS87410 is not set | 543 | # CONFIG_PATA_NS87410 is not set |
513 | # CONFIG_PATA_NS87415 is not set | 544 | # CONFIG_PATA_NS87415 is not set |
514 | # CONFIG_PATA_OPTI is not set | 545 | # CONFIG_PATA_OPTI is not set |
@@ -542,7 +573,6 @@ CONFIG_DUMMY=y | |||
542 | # CONFIG_EQUALIZER is not set | 573 | # CONFIG_EQUALIZER is not set |
543 | # CONFIG_TUN is not set | 574 | # CONFIG_TUN is not set |
544 | # CONFIG_VETH is not set | 575 | # CONFIG_VETH is not set |
545 | # CONFIG_IP1000 is not set | ||
546 | # CONFIG_ARCNET is not set | 576 | # CONFIG_ARCNET is not set |
547 | CONFIG_PHYLIB=y | 577 | CONFIG_PHYLIB=y |
548 | 578 | ||
@@ -558,6 +588,7 @@ CONFIG_VITESSE_PHY=y | |||
558 | # CONFIG_SMSC_PHY is not set | 588 | # CONFIG_SMSC_PHY is not set |
559 | # CONFIG_BROADCOM_PHY is not set | 589 | # CONFIG_BROADCOM_PHY is not set |
560 | # CONFIG_ICPLUS_PHY is not set | 590 | # CONFIG_ICPLUS_PHY is not set |
591 | # CONFIG_REALTEK_PHY is not set | ||
561 | # CONFIG_FIXED_PHY is not set | 592 | # CONFIG_FIXED_PHY is not set |
562 | # CONFIG_MDIO_BITBANG is not set | 593 | # CONFIG_MDIO_BITBANG is not set |
563 | CONFIG_NET_ETHERNET=y | 594 | CONFIG_NET_ETHERNET=y |
@@ -579,6 +610,9 @@ CONFIG_NETDEV_1000=y | |||
579 | # CONFIG_DL2K is not set | 610 | # CONFIG_DL2K is not set |
580 | # CONFIG_E1000 is not set | 611 | # CONFIG_E1000 is not set |
581 | # CONFIG_E1000E is not set | 612 | # CONFIG_E1000E is not set |
613 | # CONFIG_E1000E_ENABLED is not set | ||
614 | # CONFIG_IP1000 is not set | ||
615 | # CONFIG_IGB is not set | ||
582 | # CONFIG_NS83820 is not set | 616 | # CONFIG_NS83820 is not set |
583 | # CONFIG_HAMACHI is not set | 617 | # CONFIG_HAMACHI is not set |
584 | # CONFIG_YELLOWFIN is not set | 618 | # CONFIG_YELLOWFIN is not set |
@@ -605,6 +639,7 @@ CONFIG_NETDEV_10000=y | |||
605 | # CONFIG_NIU is not set | 639 | # CONFIG_NIU is not set |
606 | # CONFIG_MLX4_CORE is not set | 640 | # CONFIG_MLX4_CORE is not set |
607 | # CONFIG_TEHUTI is not set | 641 | # CONFIG_TEHUTI is not set |
642 | # CONFIG_BNX2X is not set | ||
608 | # CONFIG_TR is not set | 643 | # CONFIG_TR is not set |
609 | 644 | ||
610 | # | 645 | # |
@@ -627,7 +662,6 @@ CONFIG_NETDEV_10000=y | |||
627 | # CONFIG_PPP is not set | 662 | # CONFIG_PPP is not set |
628 | # CONFIG_SLIP is not set | 663 | # CONFIG_SLIP is not set |
629 | # CONFIG_NET_FC is not set | 664 | # CONFIG_NET_FC is not set |
630 | # CONFIG_SHAPER is not set | ||
631 | # CONFIG_NETCONSOLE is not set | 665 | # CONFIG_NETCONSOLE is not set |
632 | # CONFIG_NETPOLL is not set | 666 | # CONFIG_NETPOLL is not set |
633 | # CONFIG_NET_POLL_CONTROLLER is not set | 667 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -678,6 +712,7 @@ CONFIG_VT_CONSOLE=y | |||
678 | CONFIG_HW_CONSOLE=y | 712 | CONFIG_HW_CONSOLE=y |
679 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 713 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
680 | # CONFIG_SERIAL_NONSTANDARD is not set | 714 | # CONFIG_SERIAL_NONSTANDARD is not set |
715 | # CONFIG_NOZOMI is not set | ||
681 | 716 | ||
682 | # | 717 | # |
683 | # Serial drivers | 718 | # Serial drivers |
@@ -756,14 +791,12 @@ CONFIG_I2C_MPC=y | |||
756 | # | 791 | # |
757 | # Miscellaneous I2C Chip support | 792 | # Miscellaneous I2C Chip support |
758 | # | 793 | # |
759 | # CONFIG_SENSORS_DS1337 is not set | ||
760 | # CONFIG_SENSORS_DS1374 is not set | ||
761 | # CONFIG_DS1682 is not set | 794 | # CONFIG_DS1682 is not set |
762 | CONFIG_SENSORS_EEPROM=y | 795 | CONFIG_SENSORS_EEPROM=y |
763 | # CONFIG_SENSORS_PCF8574 is not set | 796 | # CONFIG_SENSORS_PCF8574 is not set |
764 | # CONFIG_SENSORS_PCA9539 is not set | 797 | # CONFIG_PCF8575 is not set |
765 | # CONFIG_SENSORS_PCF8591 is not set | 798 | # CONFIG_SENSORS_PCF8591 is not set |
766 | # CONFIG_SENSORS_M41T00 is not set | 799 | # CONFIG_TPS65010 is not set |
767 | # CONFIG_SENSORS_MAX6875 is not set | 800 | # CONFIG_SENSORS_MAX6875 is not set |
768 | # CONFIG_SENSORS_TSL2550 is not set | 801 | # CONFIG_SENSORS_TSL2550 is not set |
769 | # CONFIG_I2C_DEBUG_CORE is not set | 802 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -779,6 +812,7 @@ CONFIG_SENSORS_EEPROM=y | |||
779 | # CONFIG_W1 is not set | 812 | # CONFIG_W1 is not set |
780 | # CONFIG_POWER_SUPPLY is not set | 813 | # CONFIG_POWER_SUPPLY is not set |
781 | # CONFIG_HWMON is not set | 814 | # CONFIG_HWMON is not set |
815 | # CONFIG_THERMAL is not set | ||
782 | # CONFIG_WATCHDOG is not set | 816 | # CONFIG_WATCHDOG is not set |
783 | 817 | ||
784 | # | 818 | # |
@@ -803,6 +837,8 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
803 | # | 837 | # |
804 | # Supported SAA7146 based PCI Adapters | 838 | # Supported SAA7146 based PCI Adapters |
805 | # | 839 | # |
840 | # CONFIG_TTPCI_EEPROM is not set | ||
841 | # CONFIG_DVB_BUDGET_CORE is not set | ||
806 | 842 | ||
807 | # | 843 | # |
808 | # Supported USB Adapters | 844 | # Supported USB Adapters |
@@ -888,11 +924,13 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
888 | # CONFIG_DVB_PLL is not set | 924 | # CONFIG_DVB_PLL is not set |
889 | # CONFIG_DVB_TDA826X is not set | 925 | # CONFIG_DVB_TDA826X is not set |
890 | # CONFIG_DVB_TDA827X is not set | 926 | # CONFIG_DVB_TDA827X is not set |
927 | # CONFIG_DVB_TDA18271 is not set | ||
891 | # CONFIG_DVB_TUNER_QT1010 is not set | 928 | # CONFIG_DVB_TUNER_QT1010 is not set |
892 | # CONFIG_DVB_TUNER_MT2060 is not set | 929 | # CONFIG_DVB_TUNER_MT2060 is not set |
893 | # CONFIG_DVB_TUNER_MT2266 is not set | 930 | # CONFIG_DVB_TUNER_MT2266 is not set |
894 | # CONFIG_DVB_TUNER_MT2131 is not set | 931 | # CONFIG_DVB_TUNER_MT2131 is not set |
895 | # CONFIG_DVB_TUNER_DIB0070 is not set | 932 | # CONFIG_DVB_TUNER_DIB0070 is not set |
933 | # CONFIG_DVB_TUNER_XC5000 is not set | ||
896 | 934 | ||
897 | # | 935 | # |
898 | # Miscellaneous devices | 936 | # Miscellaneous devices |
@@ -970,6 +1008,7 @@ CONFIG_SND_AC97_CODEC=y | |||
970 | # CONFIG_SND_BT87X is not set | 1008 | # CONFIG_SND_BT87X is not set |
971 | # CONFIG_SND_CA0106 is not set | 1009 | # CONFIG_SND_CA0106 is not set |
972 | # CONFIG_SND_CMIPCI is not set | 1010 | # CONFIG_SND_CMIPCI is not set |
1011 | # CONFIG_SND_OXYGEN is not set | ||
973 | # CONFIG_SND_CS4281 is not set | 1012 | # CONFIG_SND_CS4281 is not set |
974 | # CONFIG_SND_CS46XX is not set | 1013 | # CONFIG_SND_CS46XX is not set |
975 | # CONFIG_SND_CS5530 is not set | 1014 | # CONFIG_SND_CS5530 is not set |
@@ -995,6 +1034,7 @@ CONFIG_SND_AC97_CODEC=y | |||
995 | # CONFIG_SND_HDA_INTEL is not set | 1034 | # CONFIG_SND_HDA_INTEL is not set |
996 | # CONFIG_SND_HDSP is not set | 1035 | # CONFIG_SND_HDSP is not set |
997 | # CONFIG_SND_HDSPM is not set | 1036 | # CONFIG_SND_HDSPM is not set |
1037 | # CONFIG_SND_HIFIER is not set | ||
998 | # CONFIG_SND_ICE1712 is not set | 1038 | # CONFIG_SND_ICE1712 is not set |
999 | # CONFIG_SND_ICE1724 is not set | 1039 | # CONFIG_SND_ICE1724 is not set |
1000 | CONFIG_SND_INTEL8X0=y | 1040 | CONFIG_SND_INTEL8X0=y |
@@ -1012,6 +1052,7 @@ CONFIG_SND_INTEL8X0=y | |||
1012 | # CONFIG_SND_TRIDENT is not set | 1052 | # CONFIG_SND_TRIDENT is not set |
1013 | # CONFIG_SND_VIA82XX is not set | 1053 | # CONFIG_SND_VIA82XX is not set |
1014 | # CONFIG_SND_VIA82XX_MODEM is not set | 1054 | # CONFIG_SND_VIA82XX_MODEM is not set |
1055 | # CONFIG_SND_VIRTUOSO is not set | ||
1015 | # CONFIG_SND_VX222 is not set | 1056 | # CONFIG_SND_VX222 is not set |
1016 | # CONFIG_SND_YMFPCI is not set | 1057 | # CONFIG_SND_YMFPCI is not set |
1017 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1058 | # CONFIG_SND_AC97_POWER_SAVE is not set |
@@ -1041,6 +1082,10 @@ CONFIG_SND_INTEL8X0=y | |||
1041 | # | 1082 | # |
1042 | 1083 | ||
1043 | # | 1084 | # |
1085 | # ALSA SoC audio for Freescale SOCs | ||
1086 | # | ||
1087 | |||
1088 | # | ||
1044 | # Open Sound System | 1089 | # Open Sound System |
1045 | # | 1090 | # |
1046 | # CONFIG_SOUND_PRIME is not set | 1091 | # CONFIG_SOUND_PRIME is not set |
@@ -1063,6 +1108,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
1063 | CONFIG_USB_ARCH_HAS_EHCI=y | 1108 | CONFIG_USB_ARCH_HAS_EHCI=y |
1064 | CONFIG_USB=y | 1109 | CONFIG_USB=y |
1065 | # CONFIG_USB_DEBUG is not set | 1110 | # CONFIG_USB_DEBUG is not set |
1111 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1066 | 1112 | ||
1067 | # | 1113 | # |
1068 | # Miscellaneous USB options | 1114 | # Miscellaneous USB options |
@@ -1076,9 +1122,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
1076 | # USB Host Controller Drivers | 1122 | # USB Host Controller Drivers |
1077 | # | 1123 | # |
1078 | CONFIG_USB_EHCI_HCD=y | 1124 | CONFIG_USB_EHCI_HCD=y |
1079 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
1080 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1125 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1081 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1126 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1127 | # CONFIG_USB_EHCI_FSL is not set | ||
1128 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1082 | # CONFIG_USB_ISP116X_HCD is not set | 1129 | # CONFIG_USB_ISP116X_HCD is not set |
1083 | CONFIG_USB_OHCI_HCD=y | 1130 | CONFIG_USB_OHCI_HCD=y |
1084 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1131 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
@@ -1129,10 +1176,6 @@ CONFIG_USB_MON=y | |||
1129 | # | 1176 | # |
1130 | # USB port drivers | 1177 | # USB port drivers |
1131 | # | 1178 | # |
1132 | |||
1133 | # | ||
1134 | # USB Serial Converter support | ||
1135 | # | ||
1136 | # CONFIG_USB_SERIAL is not set | 1179 | # CONFIG_USB_SERIAL is not set |
1137 | 1180 | ||
1138 | # | 1181 | # |
@@ -1158,21 +1201,18 @@ CONFIG_USB_MON=y | |||
1158 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1201 | # CONFIG_USB_TRANCEVIBRATOR is not set |
1159 | # CONFIG_USB_IOWARRIOR is not set | 1202 | # CONFIG_USB_IOWARRIOR is not set |
1160 | # CONFIG_USB_TEST is not set | 1203 | # CONFIG_USB_TEST is not set |
1161 | |||
1162 | # | ||
1163 | # USB DSL modem support | ||
1164 | # | ||
1165 | |||
1166 | # | ||
1167 | # USB Gadget Support | ||
1168 | # | ||
1169 | # CONFIG_USB_GADGET is not set | 1204 | # CONFIG_USB_GADGET is not set |
1170 | # CONFIG_MMC is not set | 1205 | # CONFIG_MMC is not set |
1206 | # CONFIG_MEMSTICK is not set | ||
1171 | # CONFIG_NEW_LEDS is not set | 1207 | # CONFIG_NEW_LEDS is not set |
1172 | # CONFIG_INFINIBAND is not set | 1208 | # CONFIG_INFINIBAND is not set |
1173 | # CONFIG_EDAC is not set | 1209 | # CONFIG_EDAC is not set |
1174 | CONFIG_RTC_LIB=y | 1210 | CONFIG_RTC_LIB=y |
1175 | CONFIG_RTC_CLASS=y | 1211 | CONFIG_RTC_CLASS=y |
1212 | |||
1213 | # | ||
1214 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
1215 | # | ||
1176 | CONFIG_RTC_HCTOSYS=y | 1216 | CONFIG_RTC_HCTOSYS=y |
1177 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 1217 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
1178 | # CONFIG_RTC_DEBUG is not set | 1218 | # CONFIG_RTC_DEBUG is not set |
@@ -1199,6 +1239,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1199 | # CONFIG_RTC_DRV_PCF8563 is not set | 1239 | # CONFIG_RTC_DRV_PCF8563 is not set |
1200 | # CONFIG_RTC_DRV_PCF8583 is not set | 1240 | # CONFIG_RTC_DRV_PCF8583 is not set |
1201 | # CONFIG_RTC_DRV_M41T80 is not set | 1241 | # CONFIG_RTC_DRV_M41T80 is not set |
1242 | # CONFIG_RTC_DRV_S35390A is not set | ||
1202 | 1243 | ||
1203 | # | 1244 | # |
1204 | # SPI RTC drivers | 1245 | # SPI RTC drivers |
@@ -1208,9 +1249,10 @@ CONFIG_RTC_INTF_DEV=y | |||
1208 | # Platform RTC drivers | 1249 | # Platform RTC drivers |
1209 | # | 1250 | # |
1210 | CONFIG_RTC_DRV_CMOS=y | 1251 | CONFIG_RTC_DRV_CMOS=y |
1252 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1211 | # CONFIG_RTC_DRV_DS1553 is not set | 1253 | # CONFIG_RTC_DRV_DS1553 is not set |
1212 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1213 | # CONFIG_RTC_DRV_DS1742 is not set | 1254 | # CONFIG_RTC_DRV_DS1742 is not set |
1255 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1214 | # CONFIG_RTC_DRV_M48T86 is not set | 1256 | # CONFIG_RTC_DRV_M48T86 is not set |
1215 | # CONFIG_RTC_DRV_M48T59 is not set | 1257 | # CONFIG_RTC_DRV_M48T59 is not set |
1216 | # CONFIG_RTC_DRV_V3020 is not set | 1258 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1218,6 +1260,7 @@ CONFIG_RTC_DRV_CMOS=y | |||
1218 | # | 1260 | # |
1219 | # on-CPU RTC drivers | 1261 | # on-CPU RTC drivers |
1220 | # | 1262 | # |
1263 | # CONFIG_DMADEVICES is not set | ||
1221 | 1264 | ||
1222 | # | 1265 | # |
1223 | # Userspace I/O | 1266 | # Userspace I/O |
@@ -1243,12 +1286,10 @@ CONFIG_FS_MBCACHE=y | |||
1243 | # CONFIG_XFS_FS is not set | 1286 | # CONFIG_XFS_FS is not set |
1244 | # CONFIG_GFS2_FS is not set | 1287 | # CONFIG_GFS2_FS is not set |
1245 | # CONFIG_OCFS2_FS is not set | 1288 | # CONFIG_OCFS2_FS is not set |
1246 | # CONFIG_MINIX_FS is not set | 1289 | CONFIG_DNOTIFY=y |
1247 | # CONFIG_ROMFS_FS is not set | ||
1248 | CONFIG_INOTIFY=y | 1290 | CONFIG_INOTIFY=y |
1249 | CONFIG_INOTIFY_USER=y | 1291 | CONFIG_INOTIFY_USER=y |
1250 | # CONFIG_QUOTA is not set | 1292 | # CONFIG_QUOTA is not set |
1251 | CONFIG_DNOTIFY=y | ||
1252 | # CONFIG_AUTOFS_FS is not set | 1293 | # CONFIG_AUTOFS_FS is not set |
1253 | # CONFIG_AUTOFS4_FS is not set | 1294 | # CONFIG_AUTOFS4_FS is not set |
1254 | # CONFIG_FUSE_FS is not set | 1295 | # CONFIG_FUSE_FS is not set |
@@ -1300,8 +1341,10 @@ CONFIG_BFS_FS=m | |||
1300 | CONFIG_EFS_FS=m | 1341 | CONFIG_EFS_FS=m |
1301 | CONFIG_CRAMFS=y | 1342 | CONFIG_CRAMFS=y |
1302 | CONFIG_VXFS_FS=m | 1343 | CONFIG_VXFS_FS=m |
1344 | # CONFIG_MINIX_FS is not set | ||
1303 | CONFIG_HPFS_FS=m | 1345 | CONFIG_HPFS_FS=m |
1304 | CONFIG_QNX4FS_FS=m | 1346 | CONFIG_QNX4FS_FS=m |
1347 | # CONFIG_ROMFS_FS is not set | ||
1305 | CONFIG_SYSV_FS=m | 1348 | CONFIG_SYSV_FS=m |
1306 | CONFIG_UFS_FS=m | 1349 | CONFIG_UFS_FS=m |
1307 | # CONFIG_UFS_FS_WRITE is not set | 1350 | # CONFIG_UFS_FS_WRITE is not set |
@@ -1393,7 +1436,6 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1393 | # CONFIG_NLS_KOI8_U is not set | 1436 | # CONFIG_NLS_KOI8_U is not set |
1394 | CONFIG_NLS_UTF8=m | 1437 | CONFIG_NLS_UTF8=m |
1395 | # CONFIG_DLM is not set | 1438 | # CONFIG_DLM is not set |
1396 | # CONFIG_UCC_SLOW is not set | ||
1397 | 1439 | ||
1398 | # | 1440 | # |
1399 | # Library routines | 1441 | # Library routines |
@@ -1410,7 +1452,6 @@ CONFIG_PLIST=y | |||
1410 | CONFIG_HAS_IOMEM=y | 1452 | CONFIG_HAS_IOMEM=y |
1411 | CONFIG_HAS_IOPORT=y | 1453 | CONFIG_HAS_IOPORT=y |
1412 | CONFIG_HAS_DMA=y | 1454 | CONFIG_HAS_DMA=y |
1413 | # CONFIG_INSTRUMENTATION is not set | ||
1414 | 1455 | ||
1415 | # | 1456 | # |
1416 | # Kernel hacking | 1457 | # Kernel hacking |
@@ -1429,6 +1470,7 @@ CONFIG_SCHED_DEBUG=y | |||
1429 | # CONFIG_SCHEDSTATS is not set | 1470 | # CONFIG_SCHEDSTATS is not set |
1430 | # CONFIG_TIMER_STATS is not set | 1471 | # CONFIG_TIMER_STATS is not set |
1431 | # CONFIG_SLUB_DEBUG_ON is not set | 1472 | # CONFIG_SLUB_DEBUG_ON is not set |
1473 | # CONFIG_SLUB_STATS is not set | ||
1432 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1474 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1433 | # CONFIG_RT_MUTEX_TESTER is not set | 1475 | # CONFIG_RT_MUTEX_TESTER is not set |
1434 | # CONFIG_DEBUG_SPINLOCK is not set | 1476 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1442,9 +1484,9 @@ CONFIG_DEBUG_INFO=y | |||
1442 | # CONFIG_DEBUG_VM is not set | 1484 | # CONFIG_DEBUG_VM is not set |
1443 | # CONFIG_DEBUG_LIST is not set | 1485 | # CONFIG_DEBUG_LIST is not set |
1444 | # CONFIG_DEBUG_SG is not set | 1486 | # CONFIG_DEBUG_SG is not set |
1445 | CONFIG_FORCED_INLINING=y | ||
1446 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1487 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1447 | # CONFIG_RCU_TORTURE_TEST is not set | 1488 | # CONFIG_RCU_TORTURE_TEST is not set |
1489 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1448 | # CONFIG_FAULT_INJECTION is not set | 1490 | # CONFIG_FAULT_INJECTION is not set |
1449 | # CONFIG_SAMPLES is not set | 1491 | # CONFIG_SAMPLES is not set |
1450 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1492 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1463,6 +1505,7 @@ CONFIG_FORCED_INLINING=y | |||
1463 | CONFIG_CRYPTO=y | 1505 | CONFIG_CRYPTO=y |
1464 | CONFIG_CRYPTO_ALGAPI=y | 1506 | CONFIG_CRYPTO_ALGAPI=y |
1465 | CONFIG_CRYPTO_BLKCIPHER=y | 1507 | CONFIG_CRYPTO_BLKCIPHER=y |
1508 | # CONFIG_CRYPTO_SEQIV is not set | ||
1466 | CONFIG_CRYPTO_HASH=y | 1509 | CONFIG_CRYPTO_HASH=y |
1467 | CONFIG_CRYPTO_MANAGER=y | 1510 | CONFIG_CRYPTO_MANAGER=y |
1468 | CONFIG_CRYPTO_HMAC=y | 1511 | CONFIG_CRYPTO_HMAC=y |
@@ -1481,6 +1524,9 @@ CONFIG_CRYPTO_CBC=y | |||
1481 | CONFIG_CRYPTO_PCBC=m | 1524 | CONFIG_CRYPTO_PCBC=m |
1482 | # CONFIG_CRYPTO_LRW is not set | 1525 | # CONFIG_CRYPTO_LRW is not set |
1483 | # CONFIG_CRYPTO_XTS is not set | 1526 | # CONFIG_CRYPTO_XTS is not set |
1527 | # CONFIG_CRYPTO_CTR is not set | ||
1528 | # CONFIG_CRYPTO_GCM is not set | ||
1529 | # CONFIG_CRYPTO_CCM is not set | ||
1484 | # CONFIG_CRYPTO_CRYPTD is not set | 1530 | # CONFIG_CRYPTO_CRYPTD is not set |
1485 | CONFIG_CRYPTO_DES=y | 1531 | CONFIG_CRYPTO_DES=y |
1486 | # CONFIG_CRYPTO_FCRYPT is not set | 1532 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1495,11 +1541,14 @@ CONFIG_CRYPTO_DES=y | |||
1495 | # CONFIG_CRYPTO_KHAZAD is not set | 1541 | # CONFIG_CRYPTO_KHAZAD is not set |
1496 | # CONFIG_CRYPTO_ANUBIS is not set | 1542 | # CONFIG_CRYPTO_ANUBIS is not set |
1497 | # CONFIG_CRYPTO_SEED is not set | 1543 | # CONFIG_CRYPTO_SEED is not set |
1544 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1498 | # CONFIG_CRYPTO_DEFLATE is not set | 1545 | # CONFIG_CRYPTO_DEFLATE is not set |
1499 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1546 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1500 | # CONFIG_CRYPTO_CRC32C is not set | 1547 | # CONFIG_CRYPTO_CRC32C is not set |
1501 | # CONFIG_CRYPTO_CAMELLIA is not set | 1548 | # CONFIG_CRYPTO_CAMELLIA is not set |
1502 | # CONFIG_CRYPTO_TEST is not set | 1549 | # CONFIG_CRYPTO_TEST is not set |
1503 | # CONFIG_CRYPTO_AUTHENC is not set | 1550 | # CONFIG_CRYPTO_AUTHENC is not set |
1551 | # CONFIG_CRYPTO_LZO is not set | ||
1504 | CONFIG_CRYPTO_HW=y | 1552 | CONFIG_CRYPTO_HW=y |
1553 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1505 | # CONFIG_PPC_CLOCK is not set | 1554 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc85xx_cds_defconfig b/arch/powerpc/configs/mpc85xx_cds_defconfig index 2f9ad589b004..a469fe918816 100644 --- a/arch/powerpc/configs/mpc85xx_cds_defconfig +++ b/arch/powerpc/configs/mpc85xx_cds_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:54 2007 | 4 | # Mon Mar 24 08:48:30 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,15 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | # CONFIG_FAIR_GROUP_SCHED is not set | 76 | # CONFIG_FAIR_GROUP_SCHED is not set |
77 | # CONFIG_RT_GROUP_SCHED is not set | ||
78 | CONFIG_USER_SCHED=y | ||
79 | # CONFIG_CGROUP_SCHED is not set | ||
77 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
78 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
79 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
80 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
81 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +94,13 @@ CONFIG_HOTPLUG=y | |||
89 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
97 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 100 | CONFIG_ANON_INODES=y |
95 | CONFIG_EPOLL=y | 101 | CONFIG_EPOLL=y |
96 | CONFIG_SIGNALFD=y | 102 | CONFIG_SIGNALFD=y |
103 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 104 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +108,13 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 108 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | ||
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | ||
114 | CONFIG_HAVE_KPROBES=y | ||
115 | CONFIG_HAVE_KRETPROBES=y | ||
116 | CONFIG_PROC_PAGE_MONITOR=y | ||
117 | CONFIG_SLABINFO=y | ||
104 | CONFIG_RT_MUTEXES=y | 118 | CONFIG_RT_MUTEXES=y |
105 | # CONFIG_TINY_SHMEM is not set | 119 | # CONFIG_TINY_SHMEM is not set |
106 | CONFIG_BASE_SMALL=0 | 120 | CONFIG_BASE_SMALL=0 |
@@ -123,22 +137,30 @@ CONFIG_DEFAULT_AS=y | |||
123 | # CONFIG_DEFAULT_CFQ is not set | 137 | # CONFIG_DEFAULT_CFQ is not set |
124 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
125 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
140 | CONFIG_CLASSIC_RCU=y | ||
126 | 141 | ||
127 | # | 142 | # |
128 | # Platform support | 143 | # Platform support |
129 | # | 144 | # |
130 | # CONFIG_PPC_MPC52xx is not set | 145 | # CONFIG_PPC_MPC512x is not set |
131 | # CONFIG_PPC_MPC5200 is not set | 146 | # CONFIG_PPC_MPC5121 is not set |
132 | # CONFIG_PPC_CELL is not set | 147 | # CONFIG_PPC_CELL is not set |
133 | # CONFIG_PPC_CELL_NATIVE is not set | 148 | # CONFIG_PPC_CELL_NATIVE is not set |
134 | # CONFIG_PQ2ADS is not set | 149 | # CONFIG_PQ2ADS is not set |
150 | CONFIG_MPC85xx=y | ||
135 | # CONFIG_MPC8540_ADS is not set | 151 | # CONFIG_MPC8540_ADS is not set |
136 | # CONFIG_MPC8560_ADS is not set | 152 | # CONFIG_MPC8560_ADS is not set |
137 | CONFIG_MPC85xx_CDS=y | 153 | CONFIG_MPC85xx_CDS=y |
138 | # CONFIG_MPC85xx_MDS is not set | 154 | # CONFIG_MPC85xx_MDS is not set |
139 | # CONFIG_MPC85xx_DS is not set | 155 | # CONFIG_MPC85xx_DS is not set |
140 | CONFIG_MPC8540=y | 156 | # CONFIG_STX_GP3 is not set |
141 | CONFIG_MPC85xx=y | 157 | # CONFIG_TQM8540 is not set |
158 | # CONFIG_TQM8541 is not set | ||
159 | # CONFIG_TQM8555 is not set | ||
160 | # CONFIG_TQM8560 is not set | ||
161 | # CONFIG_SBC8548 is not set | ||
162 | # CONFIG_SBC8560 is not set | ||
163 | # CONFIG_IPIC is not set | ||
142 | CONFIG_MPIC=y | 164 | CONFIG_MPIC=y |
143 | # CONFIG_MPIC_WEIRD is not set | 165 | # CONFIG_MPIC_WEIRD is not set |
144 | CONFIG_PPC_I8259=y | 166 | CONFIG_PPC_I8259=y |
@@ -165,13 +187,17 @@ CONFIG_HZ_250=y | |||
165 | # CONFIG_HZ_300 is not set | 187 | # CONFIG_HZ_300 is not set |
166 | # CONFIG_HZ_1000 is not set | 188 | # CONFIG_HZ_1000 is not set |
167 | CONFIG_HZ=250 | 189 | CONFIG_HZ=250 |
190 | # CONFIG_SCHED_HRTICK is not set | ||
168 | CONFIG_PREEMPT_NONE=y | 191 | CONFIG_PREEMPT_NONE=y |
169 | # CONFIG_PREEMPT_VOLUNTARY is not set | 192 | # CONFIG_PREEMPT_VOLUNTARY is not set |
170 | # CONFIG_PREEMPT is not set | 193 | # CONFIG_PREEMPT is not set |
171 | CONFIG_BINFMT_ELF=y | 194 | CONFIG_BINFMT_ELF=y |
172 | CONFIG_BINFMT_MISC=y | 195 | CONFIG_BINFMT_MISC=y |
173 | CONFIG_MATH_EMULATION=y | 196 | CONFIG_MATH_EMULATION=y |
197 | # CONFIG_IOMMU_HELPER is not set | ||
174 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 198 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
199 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
200 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
175 | CONFIG_ARCH_FLATMEM_ENABLE=y | 201 | CONFIG_ARCH_FLATMEM_ENABLE=y |
176 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 202 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
177 | CONFIG_SELECT_MEMORY_MODEL=y | 203 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -190,11 +216,7 @@ CONFIG_VIRT_TO_BUS=y | |||
190 | CONFIG_PROC_DEVICETREE=y | 216 | CONFIG_PROC_DEVICETREE=y |
191 | # CONFIG_CMDLINE_BOOL is not set | 217 | # CONFIG_CMDLINE_BOOL is not set |
192 | # CONFIG_PM is not set | 218 | # CONFIG_PM is not set |
193 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
194 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
195 | # CONFIG_SECCOMP is not set | 219 | # CONFIG_SECCOMP is not set |
196 | CONFIG_WANT_DEVICE_TREE=y | ||
197 | CONFIG_DEVICE_TREE="" | ||
198 | CONFIG_ISA_DMA_API=y | 220 | CONFIG_ISA_DMA_API=y |
199 | 221 | ||
200 | # | 222 | # |
@@ -244,6 +266,7 @@ CONFIG_XFRM=y | |||
244 | CONFIG_XFRM_USER=y | 266 | CONFIG_XFRM_USER=y |
245 | # CONFIG_XFRM_SUB_POLICY is not set | 267 | # CONFIG_XFRM_SUB_POLICY is not set |
246 | # CONFIG_XFRM_MIGRATE is not set | 268 | # CONFIG_XFRM_MIGRATE is not set |
269 | # CONFIG_XFRM_STATISTICS is not set | ||
247 | # CONFIG_NET_KEY is not set | 270 | # CONFIG_NET_KEY is not set |
248 | CONFIG_INET=y | 271 | CONFIG_INET=y |
249 | CONFIG_IP_MULTICAST=y | 272 | CONFIG_IP_MULTICAST=y |
@@ -299,6 +322,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
299 | # | 322 | # |
300 | # CONFIG_NET_PKTGEN is not set | 323 | # CONFIG_NET_PKTGEN is not set |
301 | # CONFIG_HAMRADIO is not set | 324 | # CONFIG_HAMRADIO is not set |
325 | # CONFIG_CAN is not set | ||
302 | # CONFIG_IRDA is not set | 326 | # CONFIG_IRDA is not set |
303 | # CONFIG_BT is not set | 327 | # CONFIG_BT is not set |
304 | # CONFIG_AF_RXRPC is not set | 328 | # CONFIG_AF_RXRPC is not set |
@@ -345,7 +369,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
345 | CONFIG_BLK_DEV_RAM=y | 369 | CONFIG_BLK_DEV_RAM=y |
346 | CONFIG_BLK_DEV_RAM_COUNT=16 | 370 | CONFIG_BLK_DEV_RAM_COUNT=16 |
347 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 371 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
348 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 372 | # CONFIG_BLK_DEV_XIP is not set |
349 | # CONFIG_CDROM_PKTCDVD is not set | 373 | # CONFIG_CDROM_PKTCDVD is not set |
350 | # CONFIG_ATA_OVER_ETH is not set | 374 | # CONFIG_ATA_OVER_ETH is not set |
351 | CONFIG_MISC_DEVICES=y | 375 | CONFIG_MISC_DEVICES=y |
@@ -353,12 +377,14 @@ CONFIG_MISC_DEVICES=y | |||
353 | # CONFIG_EEPROM_93CX6 is not set | 377 | # CONFIG_EEPROM_93CX6 is not set |
354 | # CONFIG_SGI_IOC4 is not set | 378 | # CONFIG_SGI_IOC4 is not set |
355 | # CONFIG_TIFM_CORE is not set | 379 | # CONFIG_TIFM_CORE is not set |
380 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
381 | CONFIG_HAVE_IDE=y | ||
356 | CONFIG_IDE=y | 382 | CONFIG_IDE=y |
357 | CONFIG_IDE_MAX_HWIFS=4 | 383 | CONFIG_IDE_MAX_HWIFS=4 |
358 | CONFIG_BLK_DEV_IDE=y | 384 | CONFIG_BLK_DEV_IDE=y |
359 | 385 | ||
360 | # | 386 | # |
361 | # Please see Documentation/ide.txt for help/info on IDE drives | 387 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
362 | # | 388 | # |
363 | # CONFIG_BLK_DEV_IDE_SATA is not set | 389 | # CONFIG_BLK_DEV_IDE_SATA is not set |
364 | # CONFIG_BLK_DEV_IDEDISK is not set | 390 | # CONFIG_BLK_DEV_IDEDISK is not set |
@@ -374,12 +400,12 @@ CONFIG_IDE_PROC_FS=y | |||
374 | # | 400 | # |
375 | CONFIG_IDE_GENERIC=y | 401 | CONFIG_IDE_GENERIC=y |
376 | # CONFIG_BLK_DEV_PLATFORM is not set | 402 | # CONFIG_BLK_DEV_PLATFORM is not set |
403 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
377 | 404 | ||
378 | # | 405 | # |
379 | # PCI IDE chipsets support | 406 | # PCI IDE chipsets support |
380 | # | 407 | # |
381 | CONFIG_BLK_DEV_IDEPCI=y | 408 | CONFIG_BLK_DEV_IDEPCI=y |
382 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
383 | CONFIG_IDEPCI_PCIBUS_ORDER=y | 409 | CONFIG_IDEPCI_PCIBUS_ORDER=y |
384 | # CONFIG_BLK_DEV_OFFBOARD is not set | 410 | # CONFIG_BLK_DEV_OFFBOARD is not set |
385 | CONFIG_BLK_DEV_GENERIC=y | 411 | CONFIG_BLK_DEV_GENERIC=y |
@@ -410,7 +436,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
410 | # CONFIG_BLK_DEV_TRM290 is not set | 436 | # CONFIG_BLK_DEV_TRM290 is not set |
411 | CONFIG_BLK_DEV_VIA82CXXX=y | 437 | CONFIG_BLK_DEV_VIA82CXXX=y |
412 | # CONFIG_BLK_DEV_TC86C001 is not set | 438 | # CONFIG_BLK_DEV_TC86C001 is not set |
413 | # CONFIG_IDE_ARM is not set | ||
414 | CONFIG_BLK_DEV_IDEDMA=y | 439 | CONFIG_BLK_DEV_IDEDMA=y |
415 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 440 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
416 | # CONFIG_BLK_DEV_HD is not set | 441 | # CONFIG_BLK_DEV_HD is not set |
@@ -441,7 +466,6 @@ CONFIG_NETDEVICES=y | |||
441 | # CONFIG_EQUALIZER is not set | 466 | # CONFIG_EQUALIZER is not set |
442 | # CONFIG_TUN is not set | 467 | # CONFIG_TUN is not set |
443 | # CONFIG_VETH is not set | 468 | # CONFIG_VETH is not set |
444 | # CONFIG_IP1000 is not set | ||
445 | # CONFIG_ARCNET is not set | 469 | # CONFIG_ARCNET is not set |
446 | CONFIG_PHYLIB=y | 470 | CONFIG_PHYLIB=y |
447 | 471 | ||
@@ -457,6 +481,7 @@ CONFIG_PHYLIB=y | |||
457 | # CONFIG_SMSC_PHY is not set | 481 | # CONFIG_SMSC_PHY is not set |
458 | # CONFIG_BROADCOM_PHY is not set | 482 | # CONFIG_BROADCOM_PHY is not set |
459 | # CONFIG_ICPLUS_PHY is not set | 483 | # CONFIG_ICPLUS_PHY is not set |
484 | # CONFIG_REALTEK_PHY is not set | ||
460 | # CONFIG_FIXED_PHY is not set | 485 | # CONFIG_FIXED_PHY is not set |
461 | # CONFIG_MDIO_BITBANG is not set | 486 | # CONFIG_MDIO_BITBANG is not set |
462 | CONFIG_NET_ETHERNET=y | 487 | CONFIG_NET_ETHERNET=y |
@@ -480,6 +505,9 @@ CONFIG_E1000=y | |||
480 | CONFIG_E1000_NAPI=y | 505 | CONFIG_E1000_NAPI=y |
481 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 506 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
482 | # CONFIG_E1000E is not set | 507 | # CONFIG_E1000E is not set |
508 | # CONFIG_E1000E_ENABLED is not set | ||
509 | # CONFIG_IP1000 is not set | ||
510 | # CONFIG_IGB is not set | ||
483 | # CONFIG_NS83820 is not set | 511 | # CONFIG_NS83820 is not set |
484 | # CONFIG_HAMACHI is not set | 512 | # CONFIG_HAMACHI is not set |
485 | # CONFIG_YELLOWFIN is not set | 513 | # CONFIG_YELLOWFIN is not set |
@@ -506,6 +534,7 @@ CONFIG_NETDEV_10000=y | |||
506 | # CONFIG_NIU is not set | 534 | # CONFIG_NIU is not set |
507 | # CONFIG_MLX4_CORE is not set | 535 | # CONFIG_MLX4_CORE is not set |
508 | # CONFIG_TEHUTI is not set | 536 | # CONFIG_TEHUTI is not set |
537 | # CONFIG_BNX2X is not set | ||
509 | # CONFIG_TR is not set | 538 | # CONFIG_TR is not set |
510 | 539 | ||
511 | # | 540 | # |
@@ -518,7 +547,6 @@ CONFIG_NETDEV_10000=y | |||
518 | # CONFIG_HIPPI is not set | 547 | # CONFIG_HIPPI is not set |
519 | # CONFIG_PPP is not set | 548 | # CONFIG_PPP is not set |
520 | # CONFIG_SLIP is not set | 549 | # CONFIG_SLIP is not set |
521 | # CONFIG_SHAPER is not set | ||
522 | # CONFIG_NETCONSOLE is not set | 550 | # CONFIG_NETCONSOLE is not set |
523 | # CONFIG_NETPOLL is not set | 551 | # CONFIG_NETPOLL is not set |
524 | # CONFIG_NET_POLL_CONTROLLER is not set | 552 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -561,6 +589,7 @@ CONFIG_INPUT=y | |||
561 | # | 589 | # |
562 | # CONFIG_VT is not set | 590 | # CONFIG_VT is not set |
563 | # CONFIG_SERIAL_NONSTANDARD is not set | 591 | # CONFIG_SERIAL_NONSTANDARD is not set |
592 | # CONFIG_NOZOMI is not set | ||
564 | 593 | ||
565 | # | 594 | # |
566 | # Serial drivers | 595 | # Serial drivers |
@@ -620,6 +649,7 @@ CONFIG_HWMON=y | |||
620 | # CONFIG_SENSORS_W83627HF is not set | 649 | # CONFIG_SENSORS_W83627HF is not set |
621 | # CONFIG_SENSORS_W83627EHF is not set | 650 | # CONFIG_SENSORS_W83627EHF is not set |
622 | # CONFIG_HWMON_DEBUG_CHIP is not set | 651 | # CONFIG_HWMON_DEBUG_CHIP is not set |
652 | # CONFIG_THERMAL is not set | ||
623 | # CONFIG_WATCHDOG is not set | 653 | # CONFIG_WATCHDOG is not set |
624 | 654 | ||
625 | # | 655 | # |
@@ -672,16 +702,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
672 | # | 702 | # |
673 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 703 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
674 | # | 704 | # |
675 | |||
676 | # | ||
677 | # USB Gadget Support | ||
678 | # | ||
679 | # CONFIG_USB_GADGET is not set | 705 | # CONFIG_USB_GADGET is not set |
680 | # CONFIG_MMC is not set | 706 | # CONFIG_MMC is not set |
707 | # CONFIG_MEMSTICK is not set | ||
681 | # CONFIG_NEW_LEDS is not set | 708 | # CONFIG_NEW_LEDS is not set |
682 | # CONFIG_INFINIBAND is not set | 709 | # CONFIG_INFINIBAND is not set |
683 | # CONFIG_EDAC is not set | 710 | # CONFIG_EDAC is not set |
684 | # CONFIG_RTC_CLASS is not set | 711 | # CONFIG_RTC_CLASS is not set |
712 | # CONFIG_DMADEVICES is not set | ||
685 | 713 | ||
686 | # | 714 | # |
687 | # Userspace I/O | 715 | # Userspace I/O |
@@ -707,12 +735,10 @@ CONFIG_FS_MBCACHE=y | |||
707 | # CONFIG_XFS_FS is not set | 735 | # CONFIG_XFS_FS is not set |
708 | # CONFIG_GFS2_FS is not set | 736 | # CONFIG_GFS2_FS is not set |
709 | # CONFIG_OCFS2_FS is not set | 737 | # CONFIG_OCFS2_FS is not set |
710 | # CONFIG_MINIX_FS is not set | 738 | CONFIG_DNOTIFY=y |
711 | # CONFIG_ROMFS_FS is not set | ||
712 | CONFIG_INOTIFY=y | 739 | CONFIG_INOTIFY=y |
713 | CONFIG_INOTIFY_USER=y | 740 | CONFIG_INOTIFY_USER=y |
714 | # CONFIG_QUOTA is not set | 741 | # CONFIG_QUOTA is not set |
715 | CONFIG_DNOTIFY=y | ||
716 | # CONFIG_AUTOFS_FS is not set | 742 | # CONFIG_AUTOFS_FS is not set |
717 | # CONFIG_AUTOFS4_FS is not set | 743 | # CONFIG_AUTOFS4_FS is not set |
718 | # CONFIG_FUSE_FS is not set | 744 | # CONFIG_FUSE_FS is not set |
@@ -754,8 +780,10 @@ CONFIG_TMPFS=y | |||
754 | # CONFIG_EFS_FS is not set | 780 | # CONFIG_EFS_FS is not set |
755 | # CONFIG_CRAMFS is not set | 781 | # CONFIG_CRAMFS is not set |
756 | # CONFIG_VXFS_FS is not set | 782 | # CONFIG_VXFS_FS is not set |
783 | # CONFIG_MINIX_FS is not set | ||
757 | # CONFIG_HPFS_FS is not set | 784 | # CONFIG_HPFS_FS is not set |
758 | # CONFIG_QNX4FS_FS is not set | 785 | # CONFIG_QNX4FS_FS is not set |
786 | # CONFIG_ROMFS_FS is not set | ||
759 | # CONFIG_SYSV_FS is not set | 787 | # CONFIG_SYSV_FS is not set |
760 | # CONFIG_UFS_FS is not set | 788 | # CONFIG_UFS_FS is not set |
761 | CONFIG_NETWORK_FILESYSTEMS=y | 789 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -796,7 +824,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
796 | # CONFIG_SYSV68_PARTITION is not set | 824 | # CONFIG_SYSV68_PARTITION is not set |
797 | # CONFIG_NLS is not set | 825 | # CONFIG_NLS is not set |
798 | # CONFIG_DLM is not set | 826 | # CONFIG_DLM is not set |
799 | # CONFIG_UCC_SLOW is not set | ||
800 | 827 | ||
801 | # | 828 | # |
802 | # Library routines | 829 | # Library routines |
@@ -812,7 +839,6 @@ CONFIG_PLIST=y | |||
812 | CONFIG_HAS_IOMEM=y | 839 | CONFIG_HAS_IOMEM=y |
813 | CONFIG_HAS_IOPORT=y | 840 | CONFIG_HAS_IOPORT=y |
814 | CONFIG_HAS_DMA=y | 841 | CONFIG_HAS_DMA=y |
815 | # CONFIG_INSTRUMENTATION is not set | ||
816 | 842 | ||
817 | # | 843 | # |
818 | # Kernel hacking | 844 | # Kernel hacking |
@@ -831,6 +857,7 @@ CONFIG_SCHED_DEBUG=y | |||
831 | # CONFIG_SCHEDSTATS is not set | 857 | # CONFIG_SCHEDSTATS is not set |
832 | # CONFIG_TIMER_STATS is not set | 858 | # CONFIG_TIMER_STATS is not set |
833 | # CONFIG_SLUB_DEBUG_ON is not set | 859 | # CONFIG_SLUB_DEBUG_ON is not set |
860 | # CONFIG_SLUB_STATS is not set | ||
834 | # CONFIG_DEBUG_RT_MUTEXES is not set | 861 | # CONFIG_DEBUG_RT_MUTEXES is not set |
835 | # CONFIG_RT_MUTEX_TESTER is not set | 862 | # CONFIG_RT_MUTEX_TESTER is not set |
836 | # CONFIG_DEBUG_SPINLOCK is not set | 863 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -843,8 +870,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
843 | # CONFIG_DEBUG_VM is not set | 870 | # CONFIG_DEBUG_VM is not set |
844 | # CONFIG_DEBUG_LIST is not set | 871 | # CONFIG_DEBUG_LIST is not set |
845 | # CONFIG_DEBUG_SG is not set | 872 | # CONFIG_DEBUG_SG is not set |
846 | CONFIG_FORCED_INLINING=y | ||
847 | # CONFIG_BOOT_PRINTK_DELAY is not set | 873 | # CONFIG_BOOT_PRINTK_DELAY is not set |
874 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
848 | # CONFIG_FAULT_INJECTION is not set | 875 | # CONFIG_FAULT_INJECTION is not set |
849 | # CONFIG_SAMPLES is not set | 876 | # CONFIG_SAMPLES is not set |
850 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 877 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -860,5 +887,49 @@ CONFIG_FORCED_INLINING=y | |||
860 | # CONFIG_KEYS is not set | 887 | # CONFIG_KEYS is not set |
861 | # CONFIG_SECURITY is not set | 888 | # CONFIG_SECURITY is not set |
862 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 889 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
863 | # CONFIG_CRYPTO is not set | 890 | CONFIG_CRYPTO=y |
891 | # CONFIG_CRYPTO_SEQIV is not set | ||
892 | # CONFIG_CRYPTO_MANAGER is not set | ||
893 | # CONFIG_CRYPTO_HMAC is not set | ||
894 | # CONFIG_CRYPTO_XCBC is not set | ||
895 | # CONFIG_CRYPTO_NULL is not set | ||
896 | # CONFIG_CRYPTO_MD4 is not set | ||
897 | # CONFIG_CRYPTO_MD5 is not set | ||
898 | # CONFIG_CRYPTO_SHA1 is not set | ||
899 | # CONFIG_CRYPTO_SHA256 is not set | ||
900 | # CONFIG_CRYPTO_SHA512 is not set | ||
901 | # CONFIG_CRYPTO_WP512 is not set | ||
902 | # CONFIG_CRYPTO_TGR192 is not set | ||
903 | # CONFIG_CRYPTO_GF128MUL is not set | ||
904 | # CONFIG_CRYPTO_ECB is not set | ||
905 | # CONFIG_CRYPTO_CBC is not set | ||
906 | # CONFIG_CRYPTO_PCBC is not set | ||
907 | # CONFIG_CRYPTO_LRW is not set | ||
908 | # CONFIG_CRYPTO_XTS is not set | ||
909 | # CONFIG_CRYPTO_CTR is not set | ||
910 | # CONFIG_CRYPTO_GCM is not set | ||
911 | # CONFIG_CRYPTO_CCM is not set | ||
912 | # CONFIG_CRYPTO_CRYPTD is not set | ||
913 | # CONFIG_CRYPTO_DES is not set | ||
914 | # CONFIG_CRYPTO_FCRYPT is not set | ||
915 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
916 | # CONFIG_CRYPTO_TWOFISH is not set | ||
917 | # CONFIG_CRYPTO_SERPENT is not set | ||
918 | # CONFIG_CRYPTO_AES is not set | ||
919 | # CONFIG_CRYPTO_CAST5 is not set | ||
920 | # CONFIG_CRYPTO_CAST6 is not set | ||
921 | # CONFIG_CRYPTO_TEA is not set | ||
922 | # CONFIG_CRYPTO_ARC4 is not set | ||
923 | # CONFIG_CRYPTO_KHAZAD is not set | ||
924 | # CONFIG_CRYPTO_ANUBIS is not set | ||
925 | # CONFIG_CRYPTO_SEED is not set | ||
926 | # CONFIG_CRYPTO_SALSA20 is not set | ||
927 | # CONFIG_CRYPTO_DEFLATE is not set | ||
928 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
929 | # CONFIG_CRYPTO_CRC32C is not set | ||
930 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
931 | # CONFIG_CRYPTO_AUTHENC is not set | ||
932 | # CONFIG_CRYPTO_LZO is not set | ||
933 | CONFIG_CRYPTO_HW=y | ||
934 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
864 | # CONFIG_PPC_CLOCK is not set | 935 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index 90e38ba3832b..615e4c1bf735 100644 --- a/arch/powerpc/configs/mpc85xx_defconfig +++ b/arch/powerpc/configs/mpc85xx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Mon Jan 28 13:12:07 2008 | 4 | # Mon Mar 24 08:48:31 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -17,6 +17,7 @@ CONFIG_PPC_85xx=y | |||
17 | CONFIG_E500=y | 17 | CONFIG_E500=y |
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
20 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
21 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +69,21 @@ CONFIG_POSIX_MQUEUE=y | |||
67 | CONFIG_BSD_PROCESS_ACCT=y | 69 | CONFIG_BSD_PROCESS_ACCT=y |
68 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 70 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
69 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | CONFIG_AUDIT=y | 72 | CONFIG_AUDIT=y |
73 | # CONFIG_AUDITSYSCALL is not set | 73 | # CONFIG_AUDITSYSCALL is not set |
74 | CONFIG_IKCONFIG=y | 74 | CONFIG_IKCONFIG=y |
75 | CONFIG_IKCONFIG_PROC=y | 75 | CONFIG_IKCONFIG_PROC=y |
76 | CONFIG_LOG_BUF_SHIFT=14 | 76 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | 77 | # CONFIG_CGROUPS is not set |
78 | CONFIG_GROUP_SCHED=y | ||
78 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
80 | # CONFIG_RT_GROUP_SCHED is not set | ||
81 | CONFIG_USER_SCHED=y | ||
82 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
80 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
86 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 87 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 88 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 89 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -91,11 +97,13 @@ CONFIG_HOTPLUG=y | |||
91 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
92 | CONFIG_BUG=y | 98 | CONFIG_BUG=y |
93 | CONFIG_ELF_CORE=y | 99 | CONFIG_ELF_CORE=y |
100 | CONFIG_COMPAT_BRK=y | ||
94 | CONFIG_BASE_FULL=y | 101 | CONFIG_BASE_FULL=y |
95 | CONFIG_FUTEX=y | 102 | CONFIG_FUTEX=y |
96 | CONFIG_ANON_INODES=y | 103 | CONFIG_ANON_INODES=y |
97 | CONFIG_EPOLL=y | 104 | CONFIG_EPOLL=y |
98 | CONFIG_SIGNALFD=y | 105 | CONFIG_SIGNALFD=y |
106 | CONFIG_TIMERFD=y | ||
99 | CONFIG_EVENTFD=y | 107 | CONFIG_EVENTFD=y |
100 | CONFIG_SHMEM=y | 108 | CONFIG_SHMEM=y |
101 | CONFIG_VM_EVENT_COUNTERS=y | 109 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -103,6 +111,13 @@ CONFIG_SLUB_DEBUG=y | |||
103 | # CONFIG_SLAB is not set | 111 | # CONFIG_SLAB is not set |
104 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
105 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | ||
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | ||
117 | # CONFIG_KPROBES is not set | ||
118 | CONFIG_HAVE_KPROBES=y | ||
119 | CONFIG_HAVE_KRETPROBES=y | ||
120 | CONFIG_PROC_PAGE_MONITOR=y | ||
106 | CONFIG_SLABINFO=y | 121 | CONFIG_SLABINFO=y |
107 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
108 | # CONFIG_TINY_SHMEM is not set | 123 | # CONFIG_TINY_SHMEM is not set |
@@ -131,12 +146,13 @@ CONFIG_IOSCHED_CFQ=y | |||
131 | CONFIG_DEFAULT_CFQ=y | 146 | CONFIG_DEFAULT_CFQ=y |
132 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
133 | CONFIG_DEFAULT_IOSCHED="cfq" | 148 | CONFIG_DEFAULT_IOSCHED="cfq" |
149 | CONFIG_CLASSIC_RCU=y | ||
134 | 150 | ||
135 | # | 151 | # |
136 | # Platform support | 152 | # Platform support |
137 | # | 153 | # |
138 | # CONFIG_PPC_MPC52xx is not set | 154 | # CONFIG_PPC_MPC512x is not set |
139 | # CONFIG_PPC_MPC5200 is not set | 155 | # CONFIG_PPC_MPC5121 is not set |
140 | # CONFIG_PPC_CELL is not set | 156 | # CONFIG_PPC_CELL is not set |
141 | # CONFIG_PPC_CELL_NATIVE is not set | 157 | # CONFIG_PPC_CELL_NATIVE is not set |
142 | # CONFIG_PQ2ADS is not set | 158 | # CONFIG_PQ2ADS is not set |
@@ -184,13 +200,17 @@ CONFIG_HZ_250=y | |||
184 | # CONFIG_HZ_300 is not set | 200 | # CONFIG_HZ_300 is not set |
185 | # CONFIG_HZ_1000 is not set | 201 | # CONFIG_HZ_1000 is not set |
186 | CONFIG_HZ=250 | 202 | CONFIG_HZ=250 |
203 | # CONFIG_SCHED_HRTICK is not set | ||
187 | CONFIG_PREEMPT_NONE=y | 204 | CONFIG_PREEMPT_NONE=y |
188 | # CONFIG_PREEMPT_VOLUNTARY is not set | 205 | # CONFIG_PREEMPT_VOLUNTARY is not set |
189 | # CONFIG_PREEMPT is not set | 206 | # CONFIG_PREEMPT is not set |
190 | CONFIG_BINFMT_ELF=y | 207 | CONFIG_BINFMT_ELF=y |
191 | CONFIG_BINFMT_MISC=m | 208 | CONFIG_BINFMT_MISC=m |
192 | CONFIG_MATH_EMULATION=y | 209 | CONFIG_MATH_EMULATION=y |
210 | # CONFIG_IOMMU_HELPER is not set | ||
193 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 211 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
212 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
213 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
194 | CONFIG_ARCH_FLATMEM_ENABLE=y | 214 | CONFIG_ARCH_FLATMEM_ENABLE=y |
195 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 215 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
196 | CONFIG_SELECT_MEMORY_MODEL=y | 216 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -209,11 +229,7 @@ CONFIG_VIRT_TO_BUS=y | |||
209 | CONFIG_PROC_DEVICETREE=y | 229 | CONFIG_PROC_DEVICETREE=y |
210 | # CONFIG_CMDLINE_BOOL is not set | 230 | # CONFIG_CMDLINE_BOOL is not set |
211 | # CONFIG_PM is not set | 231 | # CONFIG_PM is not set |
212 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
213 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
214 | CONFIG_SECCOMP=y | 232 | CONFIG_SECCOMP=y |
215 | CONFIG_WANT_DEVICE_TREE=y | ||
216 | CONFIG_DEVICE_TREE="" | ||
217 | CONFIG_ISA_DMA_API=y | 233 | CONFIG_ISA_DMA_API=y |
218 | 234 | ||
219 | # | 235 | # |
@@ -264,6 +280,7 @@ CONFIG_XFRM=y | |||
264 | CONFIG_XFRM_USER=y | 280 | CONFIG_XFRM_USER=y |
265 | # CONFIG_XFRM_SUB_POLICY is not set | 281 | # CONFIG_XFRM_SUB_POLICY is not set |
266 | # CONFIG_XFRM_MIGRATE is not set | 282 | # CONFIG_XFRM_MIGRATE is not set |
283 | # CONFIG_XFRM_STATISTICS is not set | ||
267 | CONFIG_NET_KEY=m | 284 | CONFIG_NET_KEY=m |
268 | # CONFIG_NET_KEY_MIGRATE is not set | 285 | # CONFIG_NET_KEY_MIGRATE is not set |
269 | CONFIG_INET=y | 286 | CONFIG_INET=y |
@@ -347,6 +364,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
347 | # | 364 | # |
348 | # CONFIG_NET_PKTGEN is not set | 365 | # CONFIG_NET_PKTGEN is not set |
349 | # CONFIG_HAMRADIO is not set | 366 | # CONFIG_HAMRADIO is not set |
367 | # CONFIG_CAN is not set | ||
350 | # CONFIG_IRDA is not set | 368 | # CONFIG_IRDA is not set |
351 | # CONFIG_BT is not set | 369 | # CONFIG_BT is not set |
352 | # CONFIG_AF_RXRPC is not set | 370 | # CONFIG_AF_RXRPC is not set |
@@ -395,7 +413,7 @@ CONFIG_BLK_DEV_NBD=y | |||
395 | CONFIG_BLK_DEV_RAM=y | 413 | CONFIG_BLK_DEV_RAM=y |
396 | CONFIG_BLK_DEV_RAM_COUNT=16 | 414 | CONFIG_BLK_DEV_RAM_COUNT=16 |
397 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 415 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
398 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 416 | # CONFIG_BLK_DEV_XIP is not set |
399 | # CONFIG_CDROM_PKTCDVD is not set | 417 | # CONFIG_CDROM_PKTCDVD is not set |
400 | # CONFIG_ATA_OVER_ETH is not set | 418 | # CONFIG_ATA_OVER_ETH is not set |
401 | CONFIG_MISC_DEVICES=y | 419 | CONFIG_MISC_DEVICES=y |
@@ -403,6 +421,8 @@ CONFIG_MISC_DEVICES=y | |||
403 | # CONFIG_EEPROM_93CX6 is not set | 421 | # CONFIG_EEPROM_93CX6 is not set |
404 | # CONFIG_SGI_IOC4 is not set | 422 | # CONFIG_SGI_IOC4 is not set |
405 | # CONFIG_TIFM_CORE is not set | 423 | # CONFIG_TIFM_CORE is not set |
424 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
425 | CONFIG_HAVE_IDE=y | ||
406 | # CONFIG_IDE is not set | 426 | # CONFIG_IDE is not set |
407 | 427 | ||
408 | # | 428 | # |
@@ -468,6 +488,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
468 | # CONFIG_SCSI_IPS is not set | 488 | # CONFIG_SCSI_IPS is not set |
469 | # CONFIG_SCSI_INITIO is not set | 489 | # CONFIG_SCSI_INITIO is not set |
470 | # CONFIG_SCSI_INIA100 is not set | 490 | # CONFIG_SCSI_INIA100 is not set |
491 | # CONFIG_SCSI_MVSAS is not set | ||
471 | # CONFIG_SCSI_STEX is not set | 492 | # CONFIG_SCSI_STEX is not set |
472 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 493 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
473 | # CONFIG_SCSI_IPR is not set | 494 | # CONFIG_SCSI_IPR is not set |
@@ -522,6 +543,7 @@ CONFIG_PATA_ALI=y | |||
522 | # CONFIG_PATA_MPIIX is not set | 543 | # CONFIG_PATA_MPIIX is not set |
523 | # CONFIG_PATA_OLDPIIX is not set | 544 | # CONFIG_PATA_OLDPIIX is not set |
524 | # CONFIG_PATA_NETCELL is not set | 545 | # CONFIG_PATA_NETCELL is not set |
546 | # CONFIG_PATA_NINJA32 is not set | ||
525 | # CONFIG_PATA_NS87410 is not set | 547 | # CONFIG_PATA_NS87410 is not set |
526 | # CONFIG_PATA_NS87415 is not set | 548 | # CONFIG_PATA_NS87415 is not set |
527 | # CONFIG_PATA_OPTI is not set | 549 | # CONFIG_PATA_OPTI is not set |
@@ -570,6 +592,7 @@ CONFIG_VITESSE_PHY=y | |||
570 | # CONFIG_SMSC_PHY is not set | 592 | # CONFIG_SMSC_PHY is not set |
571 | # CONFIG_BROADCOM_PHY is not set | 593 | # CONFIG_BROADCOM_PHY is not set |
572 | # CONFIG_ICPLUS_PHY is not set | 594 | # CONFIG_ICPLUS_PHY is not set |
595 | # CONFIG_REALTEK_PHY is not set | ||
573 | # CONFIG_FIXED_PHY is not set | 596 | # CONFIG_FIXED_PHY is not set |
574 | # CONFIG_MDIO_BITBANG is not set | 597 | # CONFIG_MDIO_BITBANG is not set |
575 | CONFIG_NET_ETHERNET=y | 598 | CONFIG_NET_ETHERNET=y |
@@ -592,7 +615,9 @@ CONFIG_NETDEV_1000=y | |||
592 | # CONFIG_DL2K is not set | 615 | # CONFIG_DL2K is not set |
593 | # CONFIG_E1000 is not set | 616 | # CONFIG_E1000 is not set |
594 | # CONFIG_E1000E is not set | 617 | # CONFIG_E1000E is not set |
618 | # CONFIG_E1000E_ENABLED is not set | ||
595 | # CONFIG_IP1000 is not set | 619 | # CONFIG_IP1000 is not set |
620 | # CONFIG_IGB is not set | ||
596 | # CONFIG_NS83820 is not set | 621 | # CONFIG_NS83820 is not set |
597 | # CONFIG_HAMACHI is not set | 622 | # CONFIG_HAMACHI is not set |
598 | # CONFIG_YELLOWFIN is not set | 623 | # CONFIG_YELLOWFIN is not set |
@@ -620,6 +645,7 @@ CONFIG_NETDEV_10000=y | |||
620 | # CONFIG_NIU is not set | 645 | # CONFIG_NIU is not set |
621 | # CONFIG_MLX4_CORE is not set | 646 | # CONFIG_MLX4_CORE is not set |
622 | # CONFIG_TEHUTI is not set | 647 | # CONFIG_TEHUTI is not set |
648 | # CONFIG_BNX2X is not set | ||
623 | # CONFIG_TR is not set | 649 | # CONFIG_TR is not set |
624 | 650 | ||
625 | # | 651 | # |
@@ -642,7 +668,6 @@ CONFIG_NETDEV_10000=y | |||
642 | # CONFIG_PPP is not set | 668 | # CONFIG_PPP is not set |
643 | # CONFIG_SLIP is not set | 669 | # CONFIG_SLIP is not set |
644 | # CONFIG_NET_FC is not set | 670 | # CONFIG_NET_FC is not set |
645 | # CONFIG_SHAPER is not set | ||
646 | # CONFIG_NETCONSOLE is not set | 671 | # CONFIG_NETCONSOLE is not set |
647 | # CONFIG_NETPOLL is not set | 672 | # CONFIG_NETPOLL is not set |
648 | # CONFIG_NET_POLL_CONTROLLER is not set | 673 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -693,6 +718,7 @@ CONFIG_VT_CONSOLE=y | |||
693 | CONFIG_HW_CONSOLE=y | 718 | CONFIG_HW_CONSOLE=y |
694 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 719 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
695 | # CONFIG_SERIAL_NONSTANDARD is not set | 720 | # CONFIG_SERIAL_NONSTANDARD is not set |
721 | # CONFIG_NOZOMI is not set | ||
696 | 722 | ||
697 | # | 723 | # |
698 | # Serial drivers | 724 | # Serial drivers |
@@ -773,14 +799,12 @@ CONFIG_I2C_MPC=y | |||
773 | # | 799 | # |
774 | # Miscellaneous I2C Chip support | 800 | # Miscellaneous I2C Chip support |
775 | # | 801 | # |
776 | # CONFIG_SENSORS_DS1337 is not set | ||
777 | # CONFIG_SENSORS_DS1374 is not set | ||
778 | # CONFIG_DS1682 is not set | 802 | # CONFIG_DS1682 is not set |
779 | CONFIG_SENSORS_EEPROM=y | 803 | CONFIG_SENSORS_EEPROM=y |
780 | # CONFIG_SENSORS_PCF8574 is not set | 804 | # CONFIG_SENSORS_PCF8574 is not set |
781 | # CONFIG_SENSORS_PCA9539 is not set | 805 | # CONFIG_PCF8575 is not set |
782 | # CONFIG_SENSORS_PCF8591 is not set | 806 | # CONFIG_SENSORS_PCF8591 is not set |
783 | # CONFIG_SENSORS_M41T00 is not set | 807 | # CONFIG_TPS65010 is not set |
784 | # CONFIG_SENSORS_MAX6875 is not set | 808 | # CONFIG_SENSORS_MAX6875 is not set |
785 | # CONFIG_SENSORS_TSL2550 is not set | 809 | # CONFIG_SENSORS_TSL2550 is not set |
786 | # CONFIG_I2C_DEBUG_CORE is not set | 810 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -796,6 +820,7 @@ CONFIG_SENSORS_EEPROM=y | |||
796 | # CONFIG_W1 is not set | 820 | # CONFIG_W1 is not set |
797 | # CONFIG_POWER_SUPPLY is not set | 821 | # CONFIG_POWER_SUPPLY is not set |
798 | # CONFIG_HWMON is not set | 822 | # CONFIG_HWMON is not set |
823 | # CONFIG_THERMAL is not set | ||
799 | # CONFIG_WATCHDOG is not set | 824 | # CONFIG_WATCHDOG is not set |
800 | 825 | ||
801 | # | 826 | # |
@@ -820,6 +845,8 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
820 | # | 845 | # |
821 | # Supported SAA7146 based PCI Adapters | 846 | # Supported SAA7146 based PCI Adapters |
822 | # | 847 | # |
848 | # CONFIG_TTPCI_EEPROM is not set | ||
849 | # CONFIG_DVB_BUDGET_CORE is not set | ||
823 | 850 | ||
824 | # | 851 | # |
825 | # Supported USB Adapters | 852 | # Supported USB Adapters |
@@ -905,11 +932,13 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
905 | # CONFIG_DVB_PLL is not set | 932 | # CONFIG_DVB_PLL is not set |
906 | # CONFIG_DVB_TDA826X is not set | 933 | # CONFIG_DVB_TDA826X is not set |
907 | # CONFIG_DVB_TDA827X is not set | 934 | # CONFIG_DVB_TDA827X is not set |
935 | # CONFIG_DVB_TDA18271 is not set | ||
908 | # CONFIG_DVB_TUNER_QT1010 is not set | 936 | # CONFIG_DVB_TUNER_QT1010 is not set |
909 | # CONFIG_DVB_TUNER_MT2060 is not set | 937 | # CONFIG_DVB_TUNER_MT2060 is not set |
910 | # CONFIG_DVB_TUNER_MT2266 is not set | 938 | # CONFIG_DVB_TUNER_MT2266 is not set |
911 | # CONFIG_DVB_TUNER_MT2131 is not set | 939 | # CONFIG_DVB_TUNER_MT2131 is not set |
912 | # CONFIG_DVB_TUNER_DIB0070 is not set | 940 | # CONFIG_DVB_TUNER_DIB0070 is not set |
941 | # CONFIG_DVB_TUNER_XC5000 is not set | ||
913 | 942 | ||
914 | # | 943 | # |
915 | # Miscellaneous devices | 944 | # Miscellaneous devices |
@@ -987,6 +1016,7 @@ CONFIG_SND_AC97_CODEC=y | |||
987 | # CONFIG_SND_BT87X is not set | 1016 | # CONFIG_SND_BT87X is not set |
988 | # CONFIG_SND_CA0106 is not set | 1017 | # CONFIG_SND_CA0106 is not set |
989 | # CONFIG_SND_CMIPCI is not set | 1018 | # CONFIG_SND_CMIPCI is not set |
1019 | # CONFIG_SND_OXYGEN is not set | ||
990 | # CONFIG_SND_CS4281 is not set | 1020 | # CONFIG_SND_CS4281 is not set |
991 | # CONFIG_SND_CS46XX is not set | 1021 | # CONFIG_SND_CS46XX is not set |
992 | # CONFIG_SND_CS5530 is not set | 1022 | # CONFIG_SND_CS5530 is not set |
@@ -1012,6 +1042,7 @@ CONFIG_SND_AC97_CODEC=y | |||
1012 | # CONFIG_SND_HDA_INTEL is not set | 1042 | # CONFIG_SND_HDA_INTEL is not set |
1013 | # CONFIG_SND_HDSP is not set | 1043 | # CONFIG_SND_HDSP is not set |
1014 | # CONFIG_SND_HDSPM is not set | 1044 | # CONFIG_SND_HDSPM is not set |
1045 | # CONFIG_SND_HIFIER is not set | ||
1015 | # CONFIG_SND_ICE1712 is not set | 1046 | # CONFIG_SND_ICE1712 is not set |
1016 | # CONFIG_SND_ICE1724 is not set | 1047 | # CONFIG_SND_ICE1724 is not set |
1017 | CONFIG_SND_INTEL8X0=y | 1048 | CONFIG_SND_INTEL8X0=y |
@@ -1029,6 +1060,7 @@ CONFIG_SND_INTEL8X0=y | |||
1029 | # CONFIG_SND_TRIDENT is not set | 1060 | # CONFIG_SND_TRIDENT is not set |
1030 | # CONFIG_SND_VIA82XX is not set | 1061 | # CONFIG_SND_VIA82XX is not set |
1031 | # CONFIG_SND_VIA82XX_MODEM is not set | 1062 | # CONFIG_SND_VIA82XX_MODEM is not set |
1063 | # CONFIG_SND_VIRTUOSO is not set | ||
1032 | # CONFIG_SND_VX222 is not set | 1064 | # CONFIG_SND_VX222 is not set |
1033 | # CONFIG_SND_YMFPCI is not set | 1065 | # CONFIG_SND_YMFPCI is not set |
1034 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1066 | # CONFIG_SND_AC97_POWER_SAVE is not set |
@@ -1058,6 +1090,10 @@ CONFIG_SND_INTEL8X0=y | |||
1058 | # | 1090 | # |
1059 | 1091 | ||
1060 | # | 1092 | # |
1093 | # ALSA SoC audio for Freescale SOCs | ||
1094 | # | ||
1095 | |||
1096 | # | ||
1061 | # Open Sound System | 1097 | # Open Sound System |
1062 | # | 1098 | # |
1063 | # CONFIG_SOUND_PRIME is not set | 1099 | # CONFIG_SOUND_PRIME is not set |
@@ -1080,6 +1116,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
1080 | CONFIG_USB_ARCH_HAS_EHCI=y | 1116 | CONFIG_USB_ARCH_HAS_EHCI=y |
1081 | CONFIG_USB=y | 1117 | CONFIG_USB=y |
1082 | # CONFIG_USB_DEBUG is not set | 1118 | # CONFIG_USB_DEBUG is not set |
1119 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1083 | 1120 | ||
1084 | # | 1121 | # |
1085 | # Miscellaneous USB options | 1122 | # Miscellaneous USB options |
@@ -1093,9 +1130,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
1093 | # USB Host Controller Drivers | 1130 | # USB Host Controller Drivers |
1094 | # | 1131 | # |
1095 | CONFIG_USB_EHCI_HCD=y | 1132 | CONFIG_USB_EHCI_HCD=y |
1096 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
1097 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1133 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1098 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1134 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1135 | # CONFIG_USB_EHCI_FSL is not set | ||
1136 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1099 | # CONFIG_USB_ISP116X_HCD is not set | 1137 | # CONFIG_USB_ISP116X_HCD is not set |
1100 | CONFIG_USB_OHCI_HCD=y | 1138 | CONFIG_USB_OHCI_HCD=y |
1101 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1139 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
@@ -1146,10 +1184,6 @@ CONFIG_USB_MON=y | |||
1146 | # | 1184 | # |
1147 | # USB port drivers | 1185 | # USB port drivers |
1148 | # | 1186 | # |
1149 | |||
1150 | # | ||
1151 | # USB Serial Converter support | ||
1152 | # | ||
1153 | # CONFIG_USB_SERIAL is not set | 1187 | # CONFIG_USB_SERIAL is not set |
1154 | 1188 | ||
1155 | # | 1189 | # |
@@ -1175,21 +1209,18 @@ CONFIG_USB_MON=y | |||
1175 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1209 | # CONFIG_USB_TRANCEVIBRATOR is not set |
1176 | # CONFIG_USB_IOWARRIOR is not set | 1210 | # CONFIG_USB_IOWARRIOR is not set |
1177 | # CONFIG_USB_TEST is not set | 1211 | # CONFIG_USB_TEST is not set |
1178 | |||
1179 | # | ||
1180 | # USB DSL modem support | ||
1181 | # | ||
1182 | |||
1183 | # | ||
1184 | # USB Gadget Support | ||
1185 | # | ||
1186 | # CONFIG_USB_GADGET is not set | 1212 | # CONFIG_USB_GADGET is not set |
1187 | # CONFIG_MMC is not set | 1213 | # CONFIG_MMC is not set |
1214 | # CONFIG_MEMSTICK is not set | ||
1188 | # CONFIG_NEW_LEDS is not set | 1215 | # CONFIG_NEW_LEDS is not set |
1189 | # CONFIG_INFINIBAND is not set | 1216 | # CONFIG_INFINIBAND is not set |
1190 | # CONFIG_EDAC is not set | 1217 | # CONFIG_EDAC is not set |
1191 | CONFIG_RTC_LIB=y | 1218 | CONFIG_RTC_LIB=y |
1192 | CONFIG_RTC_CLASS=y | 1219 | CONFIG_RTC_CLASS=y |
1220 | |||
1221 | # | ||
1222 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
1223 | # | ||
1193 | CONFIG_RTC_HCTOSYS=y | 1224 | CONFIG_RTC_HCTOSYS=y |
1194 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 1225 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
1195 | # CONFIG_RTC_DEBUG is not set | 1226 | # CONFIG_RTC_DEBUG is not set |
@@ -1216,6 +1247,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1216 | # CONFIG_RTC_DRV_PCF8563 is not set | 1247 | # CONFIG_RTC_DRV_PCF8563 is not set |
1217 | # CONFIG_RTC_DRV_PCF8583 is not set | 1248 | # CONFIG_RTC_DRV_PCF8583 is not set |
1218 | # CONFIG_RTC_DRV_M41T80 is not set | 1249 | # CONFIG_RTC_DRV_M41T80 is not set |
1250 | # CONFIG_RTC_DRV_S35390A is not set | ||
1219 | 1251 | ||
1220 | # | 1252 | # |
1221 | # SPI RTC drivers | 1253 | # SPI RTC drivers |
@@ -1225,9 +1257,10 @@ CONFIG_RTC_INTF_DEV=y | |||
1225 | # Platform RTC drivers | 1257 | # Platform RTC drivers |
1226 | # | 1258 | # |
1227 | CONFIG_RTC_DRV_CMOS=y | 1259 | CONFIG_RTC_DRV_CMOS=y |
1260 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1228 | # CONFIG_RTC_DRV_DS1553 is not set | 1261 | # CONFIG_RTC_DRV_DS1553 is not set |
1229 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1230 | # CONFIG_RTC_DRV_DS1742 is not set | 1262 | # CONFIG_RTC_DRV_DS1742 is not set |
1263 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1231 | # CONFIG_RTC_DRV_M48T86 is not set | 1264 | # CONFIG_RTC_DRV_M48T86 is not set |
1232 | # CONFIG_RTC_DRV_M48T59 is not set | 1265 | # CONFIG_RTC_DRV_M48T59 is not set |
1233 | # CONFIG_RTC_DRV_V3020 is not set | 1266 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1235,6 +1268,7 @@ CONFIG_RTC_DRV_CMOS=y | |||
1235 | # | 1268 | # |
1236 | # on-CPU RTC drivers | 1269 | # on-CPU RTC drivers |
1237 | # | 1270 | # |
1271 | # CONFIG_DMADEVICES is not set | ||
1238 | 1272 | ||
1239 | # | 1273 | # |
1240 | # Userspace I/O | 1274 | # Userspace I/O |
@@ -1260,12 +1294,10 @@ CONFIG_FS_MBCACHE=y | |||
1260 | # CONFIG_XFS_FS is not set | 1294 | # CONFIG_XFS_FS is not set |
1261 | # CONFIG_GFS2_FS is not set | 1295 | # CONFIG_GFS2_FS is not set |
1262 | # CONFIG_OCFS2_FS is not set | 1296 | # CONFIG_OCFS2_FS is not set |
1263 | # CONFIG_MINIX_FS is not set | 1297 | CONFIG_DNOTIFY=y |
1264 | # CONFIG_ROMFS_FS is not set | ||
1265 | CONFIG_INOTIFY=y | 1298 | CONFIG_INOTIFY=y |
1266 | CONFIG_INOTIFY_USER=y | 1299 | CONFIG_INOTIFY_USER=y |
1267 | # CONFIG_QUOTA is not set | 1300 | # CONFIG_QUOTA is not set |
1268 | CONFIG_DNOTIFY=y | ||
1269 | # CONFIG_AUTOFS_FS is not set | 1301 | # CONFIG_AUTOFS_FS is not set |
1270 | # CONFIG_AUTOFS4_FS is not set | 1302 | # CONFIG_AUTOFS4_FS is not set |
1271 | # CONFIG_FUSE_FS is not set | 1303 | # CONFIG_FUSE_FS is not set |
@@ -1317,8 +1349,10 @@ CONFIG_BFS_FS=m | |||
1317 | CONFIG_EFS_FS=m | 1349 | CONFIG_EFS_FS=m |
1318 | CONFIG_CRAMFS=y | 1350 | CONFIG_CRAMFS=y |
1319 | CONFIG_VXFS_FS=m | 1351 | CONFIG_VXFS_FS=m |
1352 | # CONFIG_MINIX_FS is not set | ||
1320 | CONFIG_HPFS_FS=m | 1353 | CONFIG_HPFS_FS=m |
1321 | CONFIG_QNX4FS_FS=m | 1354 | CONFIG_QNX4FS_FS=m |
1355 | # CONFIG_ROMFS_FS is not set | ||
1322 | CONFIG_SYSV_FS=m | 1356 | CONFIG_SYSV_FS=m |
1323 | CONFIG_UFS_FS=m | 1357 | CONFIG_UFS_FS=m |
1324 | # CONFIG_UFS_FS_WRITE is not set | 1358 | # CONFIG_UFS_FS_WRITE is not set |
@@ -1426,7 +1460,6 @@ CONFIG_PLIST=y | |||
1426 | CONFIG_HAS_IOMEM=y | 1460 | CONFIG_HAS_IOMEM=y |
1427 | CONFIG_HAS_IOPORT=y | 1461 | CONFIG_HAS_IOPORT=y |
1428 | CONFIG_HAS_DMA=y | 1462 | CONFIG_HAS_DMA=y |
1429 | # CONFIG_INSTRUMENTATION is not set | ||
1430 | 1463 | ||
1431 | # | 1464 | # |
1432 | # Kernel hacking | 1465 | # Kernel hacking |
@@ -1445,6 +1478,7 @@ CONFIG_SCHED_DEBUG=y | |||
1445 | # CONFIG_SCHEDSTATS is not set | 1478 | # CONFIG_SCHEDSTATS is not set |
1446 | # CONFIG_TIMER_STATS is not set | 1479 | # CONFIG_TIMER_STATS is not set |
1447 | # CONFIG_SLUB_DEBUG_ON is not set | 1480 | # CONFIG_SLUB_DEBUG_ON is not set |
1481 | # CONFIG_SLUB_STATS is not set | ||
1448 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1482 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1449 | # CONFIG_RT_MUTEX_TESTER is not set | 1483 | # CONFIG_RT_MUTEX_TESTER is not set |
1450 | # CONFIG_DEBUG_SPINLOCK is not set | 1484 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1458,9 +1492,9 @@ CONFIG_DEBUG_INFO=y | |||
1458 | # CONFIG_DEBUG_VM is not set | 1492 | # CONFIG_DEBUG_VM is not set |
1459 | # CONFIG_DEBUG_LIST is not set | 1493 | # CONFIG_DEBUG_LIST is not set |
1460 | # CONFIG_DEBUG_SG is not set | 1494 | # CONFIG_DEBUG_SG is not set |
1461 | CONFIG_FORCED_INLINING=y | ||
1462 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1495 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1463 | # CONFIG_RCU_TORTURE_TEST is not set | 1496 | # CONFIG_RCU_TORTURE_TEST is not set |
1497 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1464 | # CONFIG_FAULT_INJECTION is not set | 1498 | # CONFIG_FAULT_INJECTION is not set |
1465 | # CONFIG_SAMPLES is not set | 1499 | # CONFIG_SAMPLES is not set |
1466 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1500 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1480,6 +1514,7 @@ CONFIG_FORCED_INLINING=y | |||
1480 | CONFIG_CRYPTO=y | 1514 | CONFIG_CRYPTO=y |
1481 | CONFIG_CRYPTO_ALGAPI=y | 1515 | CONFIG_CRYPTO_ALGAPI=y |
1482 | CONFIG_CRYPTO_BLKCIPHER=y | 1516 | CONFIG_CRYPTO_BLKCIPHER=y |
1517 | # CONFIG_CRYPTO_SEQIV is not set | ||
1483 | CONFIG_CRYPTO_HASH=y | 1518 | CONFIG_CRYPTO_HASH=y |
1484 | CONFIG_CRYPTO_MANAGER=y | 1519 | CONFIG_CRYPTO_MANAGER=y |
1485 | CONFIG_CRYPTO_HMAC=y | 1520 | CONFIG_CRYPTO_HMAC=y |
@@ -1498,6 +1533,9 @@ CONFIG_CRYPTO_CBC=y | |||
1498 | CONFIG_CRYPTO_PCBC=m | 1533 | CONFIG_CRYPTO_PCBC=m |
1499 | # CONFIG_CRYPTO_LRW is not set | 1534 | # CONFIG_CRYPTO_LRW is not set |
1500 | # CONFIG_CRYPTO_XTS is not set | 1535 | # CONFIG_CRYPTO_XTS is not set |
1536 | # CONFIG_CRYPTO_CTR is not set | ||
1537 | # CONFIG_CRYPTO_GCM is not set | ||
1538 | # CONFIG_CRYPTO_CCM is not set | ||
1501 | # CONFIG_CRYPTO_CRYPTD is not set | 1539 | # CONFIG_CRYPTO_CRYPTD is not set |
1502 | CONFIG_CRYPTO_DES=y | 1540 | CONFIG_CRYPTO_DES=y |
1503 | # CONFIG_CRYPTO_FCRYPT is not set | 1541 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1512,12 +1550,15 @@ CONFIG_CRYPTO_DES=y | |||
1512 | # CONFIG_CRYPTO_KHAZAD is not set | 1550 | # CONFIG_CRYPTO_KHAZAD is not set |
1513 | # CONFIG_CRYPTO_ANUBIS is not set | 1551 | # CONFIG_CRYPTO_ANUBIS is not set |
1514 | # CONFIG_CRYPTO_SEED is not set | 1552 | # CONFIG_CRYPTO_SEED is not set |
1553 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1515 | # CONFIG_CRYPTO_DEFLATE is not set | 1554 | # CONFIG_CRYPTO_DEFLATE is not set |
1516 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1555 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1517 | # CONFIG_CRYPTO_CRC32C is not set | 1556 | # CONFIG_CRYPTO_CRC32C is not set |
1518 | # CONFIG_CRYPTO_CAMELLIA is not set | 1557 | # CONFIG_CRYPTO_CAMELLIA is not set |
1519 | # CONFIG_CRYPTO_TEST is not set | 1558 | # CONFIG_CRYPTO_TEST is not set |
1520 | # CONFIG_CRYPTO_AUTHENC is not set | 1559 | # CONFIG_CRYPTO_AUTHENC is not set |
1560 | # CONFIG_CRYPTO_LZO is not set | ||
1521 | CONFIG_CRYPTO_HW=y | 1561 | CONFIG_CRYPTO_HW=y |
1562 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1522 | # CONFIG_PPC_CLOCK is not set | 1563 | # CONFIG_PPC_CLOCK is not set |
1523 | CONFIG_PPC_LIB_RHEAP=y | 1564 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc8610_hpcd_defconfig b/arch/powerpc/configs/mpc8610_hpcd_defconfig index 2500ef42959d..9270afe7594d 100644 --- a/arch/powerpc/configs/mpc8610_hpcd_defconfig +++ b/arch/powerpc/configs/mpc8610_hpcd_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:56 2007 | 4 | # Mon Mar 24 08:48:33 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -65,16 +66,20 @@ CONFIG_LOCALVERSION="" | |||
65 | # CONFIG_POSIX_MQUEUE is not set | 66 | # CONFIG_POSIX_MQUEUE is not set |
66 | # CONFIG_BSD_PROCESS_ACCT is not set | 67 | # CONFIG_BSD_PROCESS_ACCT is not set |
67 | # CONFIG_TASKSTATS is not set | 68 | # CONFIG_TASKSTATS is not set |
68 | # CONFIG_USER_NS is not set | ||
69 | # CONFIG_PID_NS is not set | ||
70 | # CONFIG_AUDIT is not set | 69 | # CONFIG_AUDIT is not set |
71 | CONFIG_IKCONFIG=y | 70 | CONFIG_IKCONFIG=y |
72 | CONFIG_IKCONFIG_PROC=y | 71 | CONFIG_IKCONFIG_PROC=y |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | # CONFIG_FAIR_GROUP_SCHED is not set | 75 | # CONFIG_FAIR_GROUP_SCHED is not set |
76 | # CONFIG_RT_GROUP_SCHED is not set | ||
77 | CONFIG_USER_SCHED=y | ||
78 | # CONFIG_CGROUP_SCHED is not set | ||
76 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
77 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
78 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -88,11 +93,13 @@ CONFIG_HOTPLUG=y | |||
88 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
89 | CONFIG_BUG=y | 94 | CONFIG_BUG=y |
90 | # CONFIG_ELF_CORE is not set | 95 | # CONFIG_ELF_CORE is not set |
96 | CONFIG_COMPAT_BRK=y | ||
91 | CONFIG_BASE_FULL=y | 97 | CONFIG_BASE_FULL=y |
92 | CONFIG_FUTEX=y | 98 | CONFIG_FUTEX=y |
93 | CONFIG_ANON_INODES=y | 99 | CONFIG_ANON_INODES=y |
94 | CONFIG_EPOLL=y | 100 | CONFIG_EPOLL=y |
95 | CONFIG_SIGNALFD=y | 101 | CONFIG_SIGNALFD=y |
102 | CONFIG_TIMERFD=y | ||
96 | CONFIG_EVENTFD=y | 103 | CONFIG_EVENTFD=y |
97 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
98 | CONFIG_VM_EVENT_COUNTERS=y | 105 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -100,6 +107,13 @@ CONFIG_SLUB_DEBUG=y | |||
100 | # CONFIG_SLAB is not set | 107 | # CONFIG_SLAB is not set |
101 | CONFIG_SLUB=y | 108 | CONFIG_SLUB=y |
102 | # CONFIG_SLOB is not set | 109 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | ||
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | ||
113 | CONFIG_HAVE_KPROBES=y | ||
114 | CONFIG_HAVE_KRETPROBES=y | ||
115 | CONFIG_PROC_PAGE_MONITOR=y | ||
116 | CONFIG_SLABINFO=y | ||
103 | CONFIG_RT_MUTEXES=y | 117 | CONFIG_RT_MUTEXES=y |
104 | # CONFIG_TINY_SHMEM is not set | 118 | # CONFIG_TINY_SHMEM is not set |
105 | CONFIG_BASE_SMALL=0 | 119 | CONFIG_BASE_SMALL=0 |
@@ -122,6 +136,7 @@ CONFIG_DEFAULT_DEADLINE=y | |||
122 | # CONFIG_DEFAULT_CFQ is not set | 136 | # CONFIG_DEFAULT_CFQ is not set |
123 | # CONFIG_DEFAULT_NOOP is not set | 137 | # CONFIG_DEFAULT_NOOP is not set |
124 | CONFIG_DEFAULT_IOSCHED="deadline" | 138 | CONFIG_DEFAULT_IOSCHED="deadline" |
139 | CONFIG_CLASSIC_RCU=y | ||
125 | 140 | ||
126 | # | 141 | # |
127 | # Platform support | 142 | # Platform support |
@@ -130,14 +145,15 @@ CONFIG_DEFAULT_IOSCHED="deadline" | |||
130 | # CONFIG_PPC_82xx is not set | 145 | # CONFIG_PPC_82xx is not set |
131 | # CONFIG_PPC_83xx is not set | 146 | # CONFIG_PPC_83xx is not set |
132 | CONFIG_PPC_86xx=y | 147 | CONFIG_PPC_86xx=y |
133 | # CONFIG_PPC_MPC52xx is not set | 148 | # CONFIG_PPC_MPC512x is not set |
134 | # CONFIG_PPC_MPC5200 is not set | 149 | # CONFIG_PPC_MPC5121 is not set |
135 | # CONFIG_PPC_CELL is not set | 150 | # CONFIG_PPC_CELL is not set |
136 | # CONFIG_PPC_CELL_NATIVE is not set | 151 | # CONFIG_PPC_CELL_NATIVE is not set |
137 | # CONFIG_PQ2ADS is not set | 152 | # CONFIG_PQ2ADS is not set |
138 | # CONFIG_MPC8641_HPCN is not set | 153 | # CONFIG_MPC8641_HPCN is not set |
139 | CONFIG_MPC8610_HPCD=y | 154 | CONFIG_MPC8610_HPCD=y |
140 | CONFIG_MPC8610=y | 155 | CONFIG_MPC8610=y |
156 | # CONFIG_IPIC is not set | ||
141 | CONFIG_MPIC=y | 157 | CONFIG_MPIC=y |
142 | # CONFIG_MPIC_WEIRD is not set | 158 | # CONFIG_MPIC_WEIRD is not set |
143 | # CONFIG_PPC_I8259 is not set | 159 | # CONFIG_PPC_I8259 is not set |
@@ -148,7 +164,6 @@ CONFIG_MPIC=y | |||
148 | # CONFIG_PPC_INDIRECT_IO is not set | 164 | # CONFIG_PPC_INDIRECT_IO is not set |
149 | # CONFIG_GENERIC_IOMAP is not set | 165 | # CONFIG_GENERIC_IOMAP is not set |
150 | # CONFIG_CPU_FREQ is not set | 166 | # CONFIG_CPU_FREQ is not set |
151 | # CONFIG_CPM2 is not set | ||
152 | # CONFIG_FSL_ULI1575 is not set | 167 | # CONFIG_FSL_ULI1575 is not set |
153 | 168 | ||
154 | # | 169 | # |
@@ -164,12 +179,16 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
164 | # CONFIG_HZ_300 is not set | 179 | # CONFIG_HZ_300 is not set |
165 | CONFIG_HZ_1000=y | 180 | CONFIG_HZ_1000=y |
166 | CONFIG_HZ=1000 | 181 | CONFIG_HZ=1000 |
182 | # CONFIG_SCHED_HRTICK is not set | ||
167 | CONFIG_PREEMPT_NONE=y | 183 | CONFIG_PREEMPT_NONE=y |
168 | # CONFIG_PREEMPT_VOLUNTARY is not set | 184 | # CONFIG_PREEMPT_VOLUNTARY is not set |
169 | # CONFIG_PREEMPT is not set | 185 | # CONFIG_PREEMPT is not set |
170 | CONFIG_BINFMT_ELF=y | 186 | CONFIG_BINFMT_ELF=y |
171 | # CONFIG_BINFMT_MISC is not set | 187 | # CONFIG_BINFMT_MISC is not set |
188 | # CONFIG_IOMMU_HELPER is not set | ||
172 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 189 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
190 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
191 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
173 | CONFIG_ARCH_FLATMEM_ENABLE=y | 192 | CONFIG_ARCH_FLATMEM_ENABLE=y |
174 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 193 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
175 | CONFIG_SELECT_MEMORY_MODEL=y | 194 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -188,10 +207,7 @@ CONFIG_VIRT_TO_BUS=y | |||
188 | CONFIG_PROC_DEVICETREE=y | 207 | CONFIG_PROC_DEVICETREE=y |
189 | # CONFIG_CMDLINE_BOOL is not set | 208 | # CONFIG_CMDLINE_BOOL is not set |
190 | # CONFIG_PM is not set | 209 | # CONFIG_PM is not set |
191 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
192 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
193 | # CONFIG_SECCOMP is not set | 210 | # CONFIG_SECCOMP is not set |
194 | # CONFIG_WANT_DEVICE_TREE is not set | ||
195 | CONFIG_ISA_DMA_API=y | 211 | CONFIG_ISA_DMA_API=y |
196 | 212 | ||
197 | # | 213 | # |
@@ -243,6 +259,7 @@ CONFIG_XFRM=y | |||
243 | CONFIG_XFRM_USER=y | 259 | CONFIG_XFRM_USER=y |
244 | # CONFIG_XFRM_SUB_POLICY is not set | 260 | # CONFIG_XFRM_SUB_POLICY is not set |
245 | # CONFIG_XFRM_MIGRATE is not set | 261 | # CONFIG_XFRM_MIGRATE is not set |
262 | # CONFIG_XFRM_STATISTICS is not set | ||
246 | # CONFIG_NET_KEY is not set | 263 | # CONFIG_NET_KEY is not set |
247 | CONFIG_INET=y | 264 | CONFIG_INET=y |
248 | # CONFIG_IP_MULTICAST is not set | 265 | # CONFIG_IP_MULTICAST is not set |
@@ -311,6 +328,7 @@ CONFIG_IPV6_SIT=y | |||
311 | # | 328 | # |
312 | # CONFIG_NET_PKTGEN is not set | 329 | # CONFIG_NET_PKTGEN is not set |
313 | # CONFIG_HAMRADIO is not set | 330 | # CONFIG_HAMRADIO is not set |
331 | # CONFIG_CAN is not set | ||
314 | # CONFIG_IRDA is not set | 332 | # CONFIG_IRDA is not set |
315 | # CONFIG_BT is not set | 333 | # CONFIG_BT is not set |
316 | # CONFIG_AF_RXRPC is not set | 334 | # CONFIG_AF_RXRPC is not set |
@@ -357,7 +375,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
357 | CONFIG_BLK_DEV_RAM=y | 375 | CONFIG_BLK_DEV_RAM=y |
358 | CONFIG_BLK_DEV_RAM_COUNT=16 | 376 | CONFIG_BLK_DEV_RAM_COUNT=16 |
359 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 377 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
360 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 378 | # CONFIG_BLK_DEV_XIP is not set |
361 | # CONFIG_CDROM_PKTCDVD is not set | 379 | # CONFIG_CDROM_PKTCDVD is not set |
362 | # CONFIG_ATA_OVER_ETH is not set | 380 | # CONFIG_ATA_OVER_ETH is not set |
363 | CONFIG_MISC_DEVICES=y | 381 | CONFIG_MISC_DEVICES=y |
@@ -365,6 +383,8 @@ CONFIG_MISC_DEVICES=y | |||
365 | # CONFIG_EEPROM_93CX6 is not set | 383 | # CONFIG_EEPROM_93CX6 is not set |
366 | # CONFIG_SGI_IOC4 is not set | 384 | # CONFIG_SGI_IOC4 is not set |
367 | # CONFIG_TIFM_CORE is not set | 385 | # CONFIG_TIFM_CORE is not set |
386 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
387 | CONFIG_HAVE_IDE=y | ||
368 | CONFIG_IDE=y | 388 | CONFIG_IDE=y |
369 | CONFIG_IDE_MAX_HWIFS=4 | 389 | CONFIG_IDE_MAX_HWIFS=4 |
370 | # CONFIG_BLK_DEV_IDE is not set | 390 | # CONFIG_BLK_DEV_IDE is not set |
@@ -432,6 +452,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
432 | # CONFIG_SCSI_IPS is not set | 452 | # CONFIG_SCSI_IPS is not set |
433 | # CONFIG_SCSI_INITIO is not set | 453 | # CONFIG_SCSI_INITIO is not set |
434 | # CONFIG_SCSI_INIA100 is not set | 454 | # CONFIG_SCSI_INIA100 is not set |
455 | # CONFIG_SCSI_MVSAS is not set | ||
435 | # CONFIG_SCSI_STEX is not set | 456 | # CONFIG_SCSI_STEX is not set |
436 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 457 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
437 | # CONFIG_SCSI_IPR is not set | 458 | # CONFIG_SCSI_IPR is not set |
@@ -462,6 +483,7 @@ CONFIG_SATA_AHCI=y | |||
462 | # CONFIG_SATA_VIA is not set | 483 | # CONFIG_SATA_VIA is not set |
463 | # CONFIG_SATA_VITESSE is not set | 484 | # CONFIG_SATA_VITESSE is not set |
464 | # CONFIG_SATA_INIC162X is not set | 485 | # CONFIG_SATA_INIC162X is not set |
486 | # CONFIG_SATA_FSL is not set | ||
465 | CONFIG_PATA_ALI=y | 487 | CONFIG_PATA_ALI=y |
466 | # CONFIG_PATA_AMD is not set | 488 | # CONFIG_PATA_AMD is not set |
467 | # CONFIG_PATA_ARTOP is not set | 489 | # CONFIG_PATA_ARTOP is not set |
@@ -485,6 +507,7 @@ CONFIG_PATA_ALI=y | |||
485 | # CONFIG_PATA_MPIIX is not set | 507 | # CONFIG_PATA_MPIIX is not set |
486 | # CONFIG_PATA_OLDPIIX is not set | 508 | # CONFIG_PATA_OLDPIIX is not set |
487 | # CONFIG_PATA_NETCELL is not set | 509 | # CONFIG_PATA_NETCELL is not set |
510 | # CONFIG_PATA_NINJA32 is not set | ||
488 | # CONFIG_PATA_NS87410 is not set | 511 | # CONFIG_PATA_NS87410 is not set |
489 | # CONFIG_PATA_NS87415 is not set | 512 | # CONFIG_PATA_NS87415 is not set |
490 | # CONFIG_PATA_OPTI is not set | 513 | # CONFIG_PATA_OPTI is not set |
@@ -518,7 +541,6 @@ CONFIG_DUMMY=y | |||
518 | # CONFIG_EQUALIZER is not set | 541 | # CONFIG_EQUALIZER is not set |
519 | # CONFIG_TUN is not set | 542 | # CONFIG_TUN is not set |
520 | # CONFIG_VETH is not set | 543 | # CONFIG_VETH is not set |
521 | # CONFIG_IP1000 is not set | ||
522 | # CONFIG_ARCNET is not set | 544 | # CONFIG_ARCNET is not set |
523 | CONFIG_PHYLIB=y | 545 | CONFIG_PHYLIB=y |
524 | 546 | ||
@@ -534,6 +556,7 @@ CONFIG_PHYLIB=y | |||
534 | # CONFIG_SMSC_PHY is not set | 556 | # CONFIG_SMSC_PHY is not set |
535 | # CONFIG_BROADCOM_PHY is not set | 557 | # CONFIG_BROADCOM_PHY is not set |
536 | # CONFIG_ICPLUS_PHY is not set | 558 | # CONFIG_ICPLUS_PHY is not set |
559 | # CONFIG_REALTEK_PHY is not set | ||
537 | # CONFIG_FIXED_PHY is not set | 560 | # CONFIG_FIXED_PHY is not set |
538 | # CONFIG_MDIO_BITBANG is not set | 561 | # CONFIG_MDIO_BITBANG is not set |
539 | CONFIG_NET_ETHERNET=y | 562 | CONFIG_NET_ETHERNET=y |
@@ -574,6 +597,7 @@ CONFIG_8139TOO_PIO=y | |||
574 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 597 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
575 | # CONFIG_8139TOO_8129 is not set | 598 | # CONFIG_8139TOO_8129 is not set |
576 | # CONFIG_8139_OLD_RX_RESET is not set | 599 | # CONFIG_8139_OLD_RX_RESET is not set |
600 | # CONFIG_R6040 is not set | ||
577 | # CONFIG_SIS900 is not set | 601 | # CONFIG_SIS900 is not set |
578 | # CONFIG_EPIC100 is not set | 602 | # CONFIG_EPIC100 is not set |
579 | # CONFIG_SUNDANCE is not set | 603 | # CONFIG_SUNDANCE is not set |
@@ -585,6 +609,9 @@ CONFIG_NETDEV_1000=y | |||
585 | # CONFIG_DL2K is not set | 609 | # CONFIG_DL2K is not set |
586 | # CONFIG_E1000 is not set | 610 | # CONFIG_E1000 is not set |
587 | # CONFIG_E1000E is not set | 611 | # CONFIG_E1000E is not set |
612 | # CONFIG_E1000E_ENABLED is not set | ||
613 | # CONFIG_IP1000 is not set | ||
614 | # CONFIG_IGB is not set | ||
588 | # CONFIG_NS83820 is not set | 615 | # CONFIG_NS83820 is not set |
589 | # CONFIG_HAMACHI is not set | 616 | # CONFIG_HAMACHI is not set |
590 | # CONFIG_YELLOWFIN is not set | 617 | # CONFIG_YELLOWFIN is not set |
@@ -610,6 +637,7 @@ CONFIG_NETDEV_10000=y | |||
610 | # CONFIG_NIU is not set | 637 | # CONFIG_NIU is not set |
611 | # CONFIG_MLX4_CORE is not set | 638 | # CONFIG_MLX4_CORE is not set |
612 | # CONFIG_TEHUTI is not set | 639 | # CONFIG_TEHUTI is not set |
640 | # CONFIG_BNX2X is not set | ||
613 | # CONFIG_TR is not set | 641 | # CONFIG_TR is not set |
614 | 642 | ||
615 | # | 643 | # |
@@ -623,7 +651,6 @@ CONFIG_NETDEV_10000=y | |||
623 | # CONFIG_PPP is not set | 651 | # CONFIG_PPP is not set |
624 | # CONFIG_SLIP is not set | 652 | # CONFIG_SLIP is not set |
625 | # CONFIG_NET_FC is not set | 653 | # CONFIG_NET_FC is not set |
626 | # CONFIG_SHAPER is not set | ||
627 | # CONFIG_NETCONSOLE is not set | 654 | # CONFIG_NETCONSOLE is not set |
628 | # CONFIG_NETPOLL is not set | 655 | # CONFIG_NETPOLL is not set |
629 | # CONFIG_NET_POLL_CONTROLLER is not set | 656 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -674,6 +701,7 @@ CONFIG_VT_CONSOLE=y | |||
674 | CONFIG_HW_CONSOLE=y | 701 | CONFIG_HW_CONSOLE=y |
675 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 702 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
676 | # CONFIG_SERIAL_NONSTANDARD is not set | 703 | # CONFIG_SERIAL_NONSTANDARD is not set |
704 | # CONFIG_NOZOMI is not set | ||
677 | 705 | ||
678 | # | 706 | # |
679 | # Serial drivers | 707 | # Serial drivers |
@@ -748,14 +776,12 @@ CONFIG_I2C_MPC=y | |||
748 | # | 776 | # |
749 | # Miscellaneous I2C Chip support | 777 | # Miscellaneous I2C Chip support |
750 | # | 778 | # |
751 | # CONFIG_SENSORS_DS1337 is not set | ||
752 | # CONFIG_SENSORS_DS1374 is not set | ||
753 | # CONFIG_DS1682 is not set | 779 | # CONFIG_DS1682 is not set |
754 | # CONFIG_SENSORS_EEPROM is not set | 780 | # CONFIG_SENSORS_EEPROM is not set |
755 | # CONFIG_SENSORS_PCF8574 is not set | 781 | # CONFIG_SENSORS_PCF8574 is not set |
756 | # CONFIG_SENSORS_PCA9539 is not set | 782 | # CONFIG_PCF8575 is not set |
757 | # CONFIG_SENSORS_PCF8591 is not set | 783 | # CONFIG_SENSORS_PCF8591 is not set |
758 | # CONFIG_SENSORS_M41T00 is not set | 784 | # CONFIG_TPS65010 is not set |
759 | # CONFIG_SENSORS_MAX6875 is not set | 785 | # CONFIG_SENSORS_MAX6875 is not set |
760 | # CONFIG_SENSORS_TSL2550 is not set | 786 | # CONFIG_SENSORS_TSL2550 is not set |
761 | # CONFIG_I2C_DEBUG_CORE is not set | 787 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -771,6 +797,7 @@ CONFIG_I2C_MPC=y | |||
771 | # CONFIG_W1 is not set | 797 | # CONFIG_W1 is not set |
772 | # CONFIG_POWER_SUPPLY is not set | 798 | # CONFIG_POWER_SUPPLY is not set |
773 | # CONFIG_HWMON is not set | 799 | # CONFIG_HWMON is not set |
800 | # CONFIG_THERMAL is not set | ||
774 | # CONFIG_WATCHDOG is not set | 801 | # CONFIG_WATCHDOG is not set |
775 | 802 | ||
776 | # | 803 | # |
@@ -859,6 +886,7 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
859 | # CONFIG_SND_BT87X is not set | 886 | # CONFIG_SND_BT87X is not set |
860 | # CONFIG_SND_CA0106 is not set | 887 | # CONFIG_SND_CA0106 is not set |
861 | # CONFIG_SND_CMIPCI is not set | 888 | # CONFIG_SND_CMIPCI is not set |
889 | # CONFIG_SND_OXYGEN is not set | ||
862 | # CONFIG_SND_CS4281 is not set | 890 | # CONFIG_SND_CS4281 is not set |
863 | # CONFIG_SND_CS46XX is not set | 891 | # CONFIG_SND_CS46XX is not set |
864 | # CONFIG_SND_CS5530 is not set | 892 | # CONFIG_SND_CS5530 is not set |
@@ -884,6 +912,7 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
884 | # CONFIG_SND_HDA_INTEL is not set | 912 | # CONFIG_SND_HDA_INTEL is not set |
885 | # CONFIG_SND_HDSP is not set | 913 | # CONFIG_SND_HDSP is not set |
886 | # CONFIG_SND_HDSPM is not set | 914 | # CONFIG_SND_HDSPM is not set |
915 | # CONFIG_SND_HIFIER is not set | ||
887 | # CONFIG_SND_ICE1712 is not set | 916 | # CONFIG_SND_ICE1712 is not set |
888 | # CONFIG_SND_ICE1724 is not set | 917 | # CONFIG_SND_ICE1724 is not set |
889 | # CONFIG_SND_INTEL8X0 is not set | 918 | # CONFIG_SND_INTEL8X0 is not set |
@@ -901,6 +930,7 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
901 | # CONFIG_SND_TRIDENT is not set | 930 | # CONFIG_SND_TRIDENT is not set |
902 | # CONFIG_SND_VIA82XX is not set | 931 | # CONFIG_SND_VIA82XX is not set |
903 | # CONFIG_SND_VIA82XX_MODEM is not set | 932 | # CONFIG_SND_VIA82XX_MODEM is not set |
933 | # CONFIG_SND_VIRTUOSO is not set | ||
904 | # CONFIG_SND_VX222 is not set | 934 | # CONFIG_SND_VX222 is not set |
905 | # CONFIG_SND_YMFPCI is not set | 935 | # CONFIG_SND_YMFPCI is not set |
906 | 936 | ||
@@ -929,6 +959,10 @@ CONFIG_SND_SOC_MPC8610_HPCD=y | |||
929 | CONFIG_SND_SOC_CS4270=y | 959 | CONFIG_SND_SOC_CS4270=y |
930 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y | 960 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y |
931 | 961 | ||
962 | # | ||
963 | # Open Sound System | ||
964 | # | ||
965 | # CONFIG_SOUND_PRIME is not set | ||
932 | CONFIG_HID_SUPPORT=y | 966 | CONFIG_HID_SUPPORT=y |
933 | CONFIG_HID=y | 967 | CONFIG_HID=y |
934 | # CONFIG_HID_DEBUG is not set | 968 | # CONFIG_HID_DEBUG is not set |
@@ -942,16 +976,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
942 | # | 976 | # |
943 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 977 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
944 | # | 978 | # |
945 | |||
946 | # | ||
947 | # USB Gadget Support | ||
948 | # | ||
949 | # CONFIG_USB_GADGET is not set | 979 | # CONFIG_USB_GADGET is not set |
950 | # CONFIG_MMC is not set | 980 | # CONFIG_MMC is not set |
981 | # CONFIG_MEMSTICK is not set | ||
951 | # CONFIG_NEW_LEDS is not set | 982 | # CONFIG_NEW_LEDS is not set |
952 | # CONFIG_INFINIBAND is not set | 983 | # CONFIG_INFINIBAND is not set |
953 | # CONFIG_EDAC is not set | 984 | # CONFIG_EDAC is not set |
954 | # CONFIG_RTC_CLASS is not set | 985 | # CONFIG_RTC_CLASS is not set |
986 | # CONFIG_DMADEVICES is not set | ||
955 | 987 | ||
956 | # | 988 | # |
957 | # Userspace I/O | 989 | # Userspace I/O |
@@ -977,11 +1009,9 @@ CONFIG_FS_MBCACHE=y | |||
977 | # CONFIG_XFS_FS is not set | 1009 | # CONFIG_XFS_FS is not set |
978 | # CONFIG_GFS2_FS is not set | 1010 | # CONFIG_GFS2_FS is not set |
979 | # CONFIG_OCFS2_FS is not set | 1011 | # CONFIG_OCFS2_FS is not set |
980 | # CONFIG_MINIX_FS is not set | 1012 | # CONFIG_DNOTIFY is not set |
981 | # CONFIG_ROMFS_FS is not set | ||
982 | # CONFIG_INOTIFY is not set | 1013 | # CONFIG_INOTIFY is not set |
983 | # CONFIG_QUOTA is not set | 1014 | # CONFIG_QUOTA is not set |
984 | # CONFIG_DNOTIFY is not set | ||
985 | # CONFIG_AUTOFS_FS is not set | 1015 | # CONFIG_AUTOFS_FS is not set |
986 | # CONFIG_AUTOFS4_FS is not set | 1016 | # CONFIG_AUTOFS4_FS is not set |
987 | # CONFIG_FUSE_FS is not set | 1017 | # CONFIG_FUSE_FS is not set |
@@ -1023,8 +1053,10 @@ CONFIG_TMPFS=y | |||
1023 | # CONFIG_EFS_FS is not set | 1053 | # CONFIG_EFS_FS is not set |
1024 | # CONFIG_CRAMFS is not set | 1054 | # CONFIG_CRAMFS is not set |
1025 | # CONFIG_VXFS_FS is not set | 1055 | # CONFIG_VXFS_FS is not set |
1056 | # CONFIG_MINIX_FS is not set | ||
1026 | # CONFIG_HPFS_FS is not set | 1057 | # CONFIG_HPFS_FS is not set |
1027 | # CONFIG_QNX4FS_FS is not set | 1058 | # CONFIG_QNX4FS_FS is not set |
1059 | # CONFIG_ROMFS_FS is not set | ||
1028 | # CONFIG_SYSV_FS is not set | 1060 | # CONFIG_SYSV_FS is not set |
1029 | # CONFIG_UFS_FS is not set | 1061 | # CONFIG_UFS_FS is not set |
1030 | CONFIG_NETWORK_FILESYSTEMS=y | 1062 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1114,7 +1146,6 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1114 | # CONFIG_NLS_KOI8_U is not set | 1146 | # CONFIG_NLS_KOI8_U is not set |
1115 | # CONFIG_NLS_UTF8 is not set | 1147 | # CONFIG_NLS_UTF8 is not set |
1116 | # CONFIG_DLM is not set | 1148 | # CONFIG_DLM is not set |
1117 | # CONFIG_UCC_SLOW is not set | ||
1118 | 1149 | ||
1119 | # | 1150 | # |
1120 | # Library routines | 1151 | # Library routines |
@@ -1130,7 +1161,6 @@ CONFIG_PLIST=y | |||
1130 | CONFIG_HAS_IOMEM=y | 1161 | CONFIG_HAS_IOMEM=y |
1131 | CONFIG_HAS_IOPORT=y | 1162 | CONFIG_HAS_IOPORT=y |
1132 | CONFIG_HAS_DMA=y | 1163 | CONFIG_HAS_DMA=y |
1133 | # CONFIG_INSTRUMENTATION is not set | ||
1134 | 1164 | ||
1135 | # | 1165 | # |
1136 | # Kernel hacking | 1166 | # Kernel hacking |
@@ -1149,6 +1179,7 @@ CONFIG_SCHED_DEBUG=y | |||
1149 | # CONFIG_SCHEDSTATS is not set | 1179 | # CONFIG_SCHEDSTATS is not set |
1150 | # CONFIG_TIMER_STATS is not set | 1180 | # CONFIG_TIMER_STATS is not set |
1151 | # CONFIG_SLUB_DEBUG_ON is not set | 1181 | # CONFIG_SLUB_DEBUG_ON is not set |
1182 | # CONFIG_SLUB_STATS is not set | ||
1152 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1183 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1153 | # CONFIG_RT_MUTEX_TESTER is not set | 1184 | # CONFIG_RT_MUTEX_TESTER is not set |
1154 | # CONFIG_DEBUG_SPINLOCK is not set | 1185 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1162,8 +1193,8 @@ CONFIG_DEBUG_INFO=y | |||
1162 | # CONFIG_DEBUG_VM is not set | 1193 | # CONFIG_DEBUG_VM is not set |
1163 | # CONFIG_DEBUG_LIST is not set | 1194 | # CONFIG_DEBUG_LIST is not set |
1164 | # CONFIG_DEBUG_SG is not set | 1195 | # CONFIG_DEBUG_SG is not set |
1165 | CONFIG_FORCED_INLINING=y | ||
1166 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1196 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1197 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1167 | # CONFIG_FAULT_INJECTION is not set | 1198 | # CONFIG_FAULT_INJECTION is not set |
1168 | # CONFIG_SAMPLES is not set | 1199 | # CONFIG_SAMPLES is not set |
1169 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1200 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1179,5 +1210,49 @@ CONFIG_FORCED_INLINING=y | |||
1179 | # CONFIG_KEYS is not set | 1210 | # CONFIG_KEYS is not set |
1180 | # CONFIG_SECURITY is not set | 1211 | # CONFIG_SECURITY is not set |
1181 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1212 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1182 | # CONFIG_CRYPTO is not set | 1213 | CONFIG_CRYPTO=y |
1214 | # CONFIG_CRYPTO_SEQIV is not set | ||
1215 | # CONFIG_CRYPTO_MANAGER is not set | ||
1216 | # CONFIG_CRYPTO_HMAC is not set | ||
1217 | # CONFIG_CRYPTO_XCBC is not set | ||
1218 | # CONFIG_CRYPTO_NULL is not set | ||
1219 | # CONFIG_CRYPTO_MD4 is not set | ||
1220 | # CONFIG_CRYPTO_MD5 is not set | ||
1221 | # CONFIG_CRYPTO_SHA1 is not set | ||
1222 | # CONFIG_CRYPTO_SHA256 is not set | ||
1223 | # CONFIG_CRYPTO_SHA512 is not set | ||
1224 | # CONFIG_CRYPTO_WP512 is not set | ||
1225 | # CONFIG_CRYPTO_TGR192 is not set | ||
1226 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1227 | # CONFIG_CRYPTO_ECB is not set | ||
1228 | # CONFIG_CRYPTO_CBC is not set | ||
1229 | # CONFIG_CRYPTO_PCBC is not set | ||
1230 | # CONFIG_CRYPTO_LRW is not set | ||
1231 | # CONFIG_CRYPTO_XTS is not set | ||
1232 | # CONFIG_CRYPTO_CTR is not set | ||
1233 | # CONFIG_CRYPTO_GCM is not set | ||
1234 | # CONFIG_CRYPTO_CCM is not set | ||
1235 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1236 | # CONFIG_CRYPTO_DES is not set | ||
1237 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1238 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1239 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1240 | # CONFIG_CRYPTO_SERPENT is not set | ||
1241 | # CONFIG_CRYPTO_AES is not set | ||
1242 | # CONFIG_CRYPTO_CAST5 is not set | ||
1243 | # CONFIG_CRYPTO_CAST6 is not set | ||
1244 | # CONFIG_CRYPTO_TEA is not set | ||
1245 | # CONFIG_CRYPTO_ARC4 is not set | ||
1246 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1247 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1248 | # CONFIG_CRYPTO_SEED is not set | ||
1249 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1250 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1251 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1252 | # CONFIG_CRYPTO_CRC32C is not set | ||
1253 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1254 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1255 | # CONFIG_CRYPTO_LZO is not set | ||
1256 | CONFIG_CRYPTO_HW=y | ||
1257 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1183 | # CONFIG_PPC_CLOCK is not set | 1258 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc8641_hpcn_defconfig b/arch/powerpc/configs/mpc8641_hpcn_defconfig index ff092fc4c6be..994e76817967 100644 --- a/arch/powerpc/configs/mpc8641_hpcn_defconfig +++ b/arch/powerpc/configs/mpc8641_hpcn_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:58 2007 | 4 | # Mon Mar 24 08:48:34 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -68,17 +69,21 @@ CONFIG_POSIX_MQUEUE=y | |||
68 | CONFIG_BSD_PROCESS_ACCT=y | 69 | CONFIG_BSD_PROCESS_ACCT=y |
69 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 70 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
71 | # CONFIG_USER_NS is not set | ||
72 | # CONFIG_PID_NS is not set | ||
73 | CONFIG_AUDIT=y | 72 | CONFIG_AUDIT=y |
74 | # CONFIG_AUDITSYSCALL is not set | 73 | # CONFIG_AUDITSYSCALL is not set |
75 | CONFIG_IKCONFIG=y | 74 | CONFIG_IKCONFIG=y |
76 | CONFIG_IKCONFIG_PROC=y | 75 | CONFIG_IKCONFIG_PROC=y |
77 | CONFIG_LOG_BUF_SHIFT=14 | 76 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | 77 | # CONFIG_CGROUPS is not set |
78 | CONFIG_GROUP_SCHED=y | ||
79 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
80 | # CONFIG_RT_GROUP_SCHED is not set | ||
81 | CONFIG_USER_SCHED=y | ||
82 | # CONFIG_CGROUP_SCHED is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
81 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
86 | # CONFIG_NAMESPACES is not set | ||
82 | CONFIG_BLK_DEV_INITRD=y | 87 | CONFIG_BLK_DEV_INITRD=y |
83 | CONFIG_INITRAMFS_SOURCE="" | 88 | CONFIG_INITRAMFS_SOURCE="" |
84 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 89 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -92,11 +97,13 @@ CONFIG_HOTPLUG=y | |||
92 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
93 | CONFIG_BUG=y | 98 | CONFIG_BUG=y |
94 | CONFIG_ELF_CORE=y | 99 | CONFIG_ELF_CORE=y |
100 | CONFIG_COMPAT_BRK=y | ||
95 | CONFIG_BASE_FULL=y | 101 | CONFIG_BASE_FULL=y |
96 | CONFIG_FUTEX=y | 102 | CONFIG_FUTEX=y |
97 | CONFIG_ANON_INODES=y | 103 | CONFIG_ANON_INODES=y |
98 | CONFIG_EPOLL=y | 104 | CONFIG_EPOLL=y |
99 | CONFIG_SIGNALFD=y | 105 | CONFIG_SIGNALFD=y |
106 | CONFIG_TIMERFD=y | ||
100 | CONFIG_EVENTFD=y | 107 | CONFIG_EVENTFD=y |
101 | CONFIG_SHMEM=y | 108 | CONFIG_SHMEM=y |
102 | CONFIG_VM_EVENT_COUNTERS=y | 109 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -104,6 +111,14 @@ CONFIG_SLUB_DEBUG=y | |||
104 | # CONFIG_SLAB is not set | 111 | # CONFIG_SLAB is not set |
105 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
106 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | ||
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | ||
117 | # CONFIG_KPROBES is not set | ||
118 | CONFIG_HAVE_KPROBES=y | ||
119 | CONFIG_HAVE_KRETPROBES=y | ||
120 | CONFIG_PROC_PAGE_MONITOR=y | ||
121 | CONFIG_SLABINFO=y | ||
107 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
108 | # CONFIG_TINY_SHMEM is not set | 123 | # CONFIG_TINY_SHMEM is not set |
109 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
@@ -132,6 +147,7 @@ CONFIG_IOSCHED_CFQ=y | |||
132 | CONFIG_DEFAULT_CFQ=y | 147 | CONFIG_DEFAULT_CFQ=y |
133 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
134 | CONFIG_DEFAULT_IOSCHED="cfq" | 149 | CONFIG_DEFAULT_IOSCHED="cfq" |
150 | CONFIG_CLASSIC_RCU=y | ||
135 | 151 | ||
136 | # | 152 | # |
137 | # Platform support | 153 | # Platform support |
@@ -140,14 +156,15 @@ CONFIG_DEFAULT_IOSCHED="cfq" | |||
140 | # CONFIG_PPC_82xx is not set | 156 | # CONFIG_PPC_82xx is not set |
141 | # CONFIG_PPC_83xx is not set | 157 | # CONFIG_PPC_83xx is not set |
142 | CONFIG_PPC_86xx=y | 158 | CONFIG_PPC_86xx=y |
143 | # CONFIG_PPC_MPC52xx is not set | 159 | # CONFIG_PPC_MPC512x is not set |
144 | # CONFIG_PPC_MPC5200 is not set | 160 | # CONFIG_PPC_MPC5121 is not set |
145 | # CONFIG_PPC_CELL is not set | 161 | # CONFIG_PPC_CELL is not set |
146 | # CONFIG_PPC_CELL_NATIVE is not set | 162 | # CONFIG_PPC_CELL_NATIVE is not set |
147 | # CONFIG_PQ2ADS is not set | 163 | # CONFIG_PQ2ADS is not set |
148 | CONFIG_MPC8641_HPCN=y | 164 | CONFIG_MPC8641_HPCN=y |
149 | # CONFIG_MPC8610_HPCD is not set | 165 | # CONFIG_MPC8610_HPCD is not set |
150 | CONFIG_MPC8641=y | 166 | CONFIG_MPC8641=y |
167 | # CONFIG_IPIC is not set | ||
151 | CONFIG_MPIC=y | 168 | CONFIG_MPIC=y |
152 | # CONFIG_MPIC_WEIRD is not set | 169 | # CONFIG_MPIC_WEIRD is not set |
153 | CONFIG_PPC_I8259=y | 170 | CONFIG_PPC_I8259=y |
@@ -158,7 +175,6 @@ CONFIG_PPC_I8259=y | |||
158 | # CONFIG_PPC_INDIRECT_IO is not set | 175 | # CONFIG_PPC_INDIRECT_IO is not set |
159 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
160 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
161 | # CONFIG_CPM2 is not set | ||
162 | CONFIG_FSL_ULI1575=y | 178 | CONFIG_FSL_ULI1575=y |
163 | 179 | ||
164 | # | 180 | # |
@@ -174,13 +190,16 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
174 | # CONFIG_HZ_300 is not set | 190 | # CONFIG_HZ_300 is not set |
175 | CONFIG_HZ_1000=y | 191 | CONFIG_HZ_1000=y |
176 | CONFIG_HZ=1000 | 192 | CONFIG_HZ=1000 |
193 | # CONFIG_SCHED_HRTICK is not set | ||
177 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
178 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
179 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
180 | CONFIG_PREEMPT_BKL=y | ||
181 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
182 | CONFIG_BINFMT_MISC=m | 198 | CONFIG_BINFMT_MISC=m |
199 | # CONFIG_IOMMU_HELPER is not set | ||
183 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
184 | # CONFIG_IRQ_ALL_CPUS is not set | 203 | # CONFIG_IRQ_ALL_CPUS is not set |
185 | CONFIG_ARCH_FLATMEM_ENABLE=y | 204 | CONFIG_ARCH_FLATMEM_ENABLE=y |
186 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 205 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -201,7 +220,6 @@ CONFIG_PROC_DEVICETREE=y | |||
201 | # CONFIG_CMDLINE_BOOL is not set | 220 | # CONFIG_CMDLINE_BOOL is not set |
202 | # CONFIG_PM is not set | 221 | # CONFIG_PM is not set |
203 | CONFIG_SECCOMP=y | 222 | CONFIG_SECCOMP=y |
204 | # CONFIG_WANT_DEVICE_TREE is not set | ||
205 | CONFIG_ISA_DMA_API=y | 223 | CONFIG_ISA_DMA_API=y |
206 | 224 | ||
207 | # | 225 | # |
@@ -252,6 +270,7 @@ CONFIG_XFRM=y | |||
252 | CONFIG_XFRM_USER=y | 270 | CONFIG_XFRM_USER=y |
253 | # CONFIG_XFRM_SUB_POLICY is not set | 271 | # CONFIG_XFRM_SUB_POLICY is not set |
254 | # CONFIG_XFRM_MIGRATE is not set | 272 | # CONFIG_XFRM_MIGRATE is not set |
273 | # CONFIG_XFRM_STATISTICS is not set | ||
255 | CONFIG_NET_KEY=m | 274 | CONFIG_NET_KEY=m |
256 | # CONFIG_NET_KEY_MIGRATE is not set | 275 | # CONFIG_NET_KEY_MIGRATE is not set |
257 | CONFIG_INET=y | 276 | CONFIG_INET=y |
@@ -335,6 +354,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
335 | # | 354 | # |
336 | # CONFIG_NET_PKTGEN is not set | 355 | # CONFIG_NET_PKTGEN is not set |
337 | # CONFIG_HAMRADIO is not set | 356 | # CONFIG_HAMRADIO is not set |
357 | # CONFIG_CAN is not set | ||
338 | # CONFIG_IRDA is not set | 358 | # CONFIG_IRDA is not set |
339 | # CONFIG_BT is not set | 359 | # CONFIG_BT is not set |
340 | # CONFIG_AF_RXRPC is not set | 360 | # CONFIG_AF_RXRPC is not set |
@@ -383,7 +403,7 @@ CONFIG_BLK_DEV_NBD=y | |||
383 | CONFIG_BLK_DEV_RAM=y | 403 | CONFIG_BLK_DEV_RAM=y |
384 | CONFIG_BLK_DEV_RAM_COUNT=16 | 404 | CONFIG_BLK_DEV_RAM_COUNT=16 |
385 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 405 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
386 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 406 | # CONFIG_BLK_DEV_XIP is not set |
387 | # CONFIG_CDROM_PKTCDVD is not set | 407 | # CONFIG_CDROM_PKTCDVD is not set |
388 | # CONFIG_ATA_OVER_ETH is not set | 408 | # CONFIG_ATA_OVER_ETH is not set |
389 | CONFIG_MISC_DEVICES=y | 409 | CONFIG_MISC_DEVICES=y |
@@ -391,6 +411,8 @@ CONFIG_MISC_DEVICES=y | |||
391 | # CONFIG_EEPROM_93CX6 is not set | 411 | # CONFIG_EEPROM_93CX6 is not set |
392 | # CONFIG_SGI_IOC4 is not set | 412 | # CONFIG_SGI_IOC4 is not set |
393 | # CONFIG_TIFM_CORE is not set | 413 | # CONFIG_TIFM_CORE is not set |
414 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
415 | CONFIG_HAVE_IDE=y | ||
394 | # CONFIG_IDE is not set | 416 | # CONFIG_IDE is not set |
395 | 417 | ||
396 | # | 418 | # |
@@ -456,6 +478,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
456 | # CONFIG_SCSI_IPS is not set | 478 | # CONFIG_SCSI_IPS is not set |
457 | # CONFIG_SCSI_INITIO is not set | 479 | # CONFIG_SCSI_INITIO is not set |
458 | # CONFIG_SCSI_INIA100 is not set | 480 | # CONFIG_SCSI_INIA100 is not set |
481 | # CONFIG_SCSI_MVSAS is not set | ||
459 | # CONFIG_SCSI_STEX is not set | 482 | # CONFIG_SCSI_STEX is not set |
460 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 483 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
461 | # CONFIG_SCSI_IPR is not set | 484 | # CONFIG_SCSI_IPR is not set |
@@ -486,6 +509,7 @@ CONFIG_SATA_AHCI=y | |||
486 | # CONFIG_SATA_VIA is not set | 509 | # CONFIG_SATA_VIA is not set |
487 | # CONFIG_SATA_VITESSE is not set | 510 | # CONFIG_SATA_VITESSE is not set |
488 | # CONFIG_SATA_INIC162X is not set | 511 | # CONFIG_SATA_INIC162X is not set |
512 | # CONFIG_SATA_FSL is not set | ||
489 | CONFIG_PATA_ALI=y | 513 | CONFIG_PATA_ALI=y |
490 | # CONFIG_PATA_AMD is not set | 514 | # CONFIG_PATA_AMD is not set |
491 | # CONFIG_PATA_ARTOP is not set | 515 | # CONFIG_PATA_ARTOP is not set |
@@ -509,6 +533,7 @@ CONFIG_PATA_ALI=y | |||
509 | # CONFIG_PATA_MPIIX is not set | 533 | # CONFIG_PATA_MPIIX is not set |
510 | # CONFIG_PATA_OLDPIIX is not set | 534 | # CONFIG_PATA_OLDPIIX is not set |
511 | # CONFIG_PATA_NETCELL is not set | 535 | # CONFIG_PATA_NETCELL is not set |
536 | # CONFIG_PATA_NINJA32 is not set | ||
512 | # CONFIG_PATA_NS87410 is not set | 537 | # CONFIG_PATA_NS87410 is not set |
513 | # CONFIG_PATA_NS87415 is not set | 538 | # CONFIG_PATA_NS87415 is not set |
514 | # CONFIG_PATA_OPTI is not set | 539 | # CONFIG_PATA_OPTI is not set |
@@ -542,7 +567,6 @@ CONFIG_DUMMY=y | |||
542 | # CONFIG_EQUALIZER is not set | 567 | # CONFIG_EQUALIZER is not set |
543 | # CONFIG_TUN is not set | 568 | # CONFIG_TUN is not set |
544 | # CONFIG_VETH is not set | 569 | # CONFIG_VETH is not set |
545 | # CONFIG_IP1000 is not set | ||
546 | # CONFIG_ARCNET is not set | 570 | # CONFIG_ARCNET is not set |
547 | CONFIG_PHYLIB=y | 571 | CONFIG_PHYLIB=y |
548 | 572 | ||
@@ -558,6 +582,7 @@ CONFIG_VITESSE_PHY=y | |||
558 | # CONFIG_SMSC_PHY is not set | 582 | # CONFIG_SMSC_PHY is not set |
559 | # CONFIG_BROADCOM_PHY is not set | 583 | # CONFIG_BROADCOM_PHY is not set |
560 | # CONFIG_ICPLUS_PHY is not set | 584 | # CONFIG_ICPLUS_PHY is not set |
585 | # CONFIG_REALTEK_PHY is not set | ||
561 | # CONFIG_FIXED_PHY is not set | 586 | # CONFIG_FIXED_PHY is not set |
562 | # CONFIG_MDIO_BITBANG is not set | 587 | # CONFIG_MDIO_BITBANG is not set |
563 | CONFIG_NET_ETHERNET=y | 588 | CONFIG_NET_ETHERNET=y |
@@ -579,6 +604,9 @@ CONFIG_NETDEV_1000=y | |||
579 | # CONFIG_DL2K is not set | 604 | # CONFIG_DL2K is not set |
580 | # CONFIG_E1000 is not set | 605 | # CONFIG_E1000 is not set |
581 | # CONFIG_E1000E is not set | 606 | # CONFIG_E1000E is not set |
607 | # CONFIG_E1000E_ENABLED is not set | ||
608 | # CONFIG_IP1000 is not set | ||
609 | # CONFIG_IGB is not set | ||
582 | # CONFIG_NS83820 is not set | 610 | # CONFIG_NS83820 is not set |
583 | # CONFIG_HAMACHI is not set | 611 | # CONFIG_HAMACHI is not set |
584 | # CONFIG_YELLOWFIN is not set | 612 | # CONFIG_YELLOWFIN is not set |
@@ -605,6 +633,7 @@ CONFIG_NETDEV_10000=y | |||
605 | # CONFIG_NIU is not set | 633 | # CONFIG_NIU is not set |
606 | # CONFIG_MLX4_CORE is not set | 634 | # CONFIG_MLX4_CORE is not set |
607 | # CONFIG_TEHUTI is not set | 635 | # CONFIG_TEHUTI is not set |
636 | # CONFIG_BNX2X is not set | ||
608 | # CONFIG_TR is not set | 637 | # CONFIG_TR is not set |
609 | 638 | ||
610 | # | 639 | # |
@@ -627,7 +656,6 @@ CONFIG_NETDEV_10000=y | |||
627 | # CONFIG_PPP is not set | 656 | # CONFIG_PPP is not set |
628 | # CONFIG_SLIP is not set | 657 | # CONFIG_SLIP is not set |
629 | # CONFIG_NET_FC is not set | 658 | # CONFIG_NET_FC is not set |
630 | # CONFIG_SHAPER is not set | ||
631 | # CONFIG_NETCONSOLE is not set | 659 | # CONFIG_NETCONSOLE is not set |
632 | # CONFIG_NETPOLL is not set | 660 | # CONFIG_NETPOLL is not set |
633 | # CONFIG_NET_POLL_CONTROLLER is not set | 661 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -678,6 +706,7 @@ CONFIG_VT_CONSOLE=y | |||
678 | CONFIG_HW_CONSOLE=y | 706 | CONFIG_HW_CONSOLE=y |
679 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 707 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
680 | # CONFIG_SERIAL_NONSTANDARD is not set | 708 | # CONFIG_SERIAL_NONSTANDARD is not set |
709 | # CONFIG_NOZOMI is not set | ||
681 | 710 | ||
682 | # | 711 | # |
683 | # Serial drivers | 712 | # Serial drivers |
@@ -756,14 +785,12 @@ CONFIG_I2C_MPC=y | |||
756 | # | 785 | # |
757 | # Miscellaneous I2C Chip support | 786 | # Miscellaneous I2C Chip support |
758 | # | 787 | # |
759 | # CONFIG_SENSORS_DS1337 is not set | ||
760 | # CONFIG_SENSORS_DS1374 is not set | ||
761 | # CONFIG_DS1682 is not set | 788 | # CONFIG_DS1682 is not set |
762 | CONFIG_SENSORS_EEPROM=y | 789 | CONFIG_SENSORS_EEPROM=y |
763 | # CONFIG_SENSORS_PCF8574 is not set | 790 | # CONFIG_SENSORS_PCF8574 is not set |
764 | # CONFIG_SENSORS_PCA9539 is not set | 791 | # CONFIG_PCF8575 is not set |
765 | # CONFIG_SENSORS_PCF8591 is not set | 792 | # CONFIG_SENSORS_PCF8591 is not set |
766 | # CONFIG_SENSORS_M41T00 is not set | 793 | # CONFIG_TPS65010 is not set |
767 | # CONFIG_SENSORS_MAX6875 is not set | 794 | # CONFIG_SENSORS_MAX6875 is not set |
768 | # CONFIG_SENSORS_TSL2550 is not set | 795 | # CONFIG_SENSORS_TSL2550 is not set |
769 | # CONFIG_I2C_DEBUG_CORE is not set | 796 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -779,6 +806,7 @@ CONFIG_SENSORS_EEPROM=y | |||
779 | # CONFIG_W1 is not set | 806 | # CONFIG_W1 is not set |
780 | # CONFIG_POWER_SUPPLY is not set | 807 | # CONFIG_POWER_SUPPLY is not set |
781 | # CONFIG_HWMON is not set | 808 | # CONFIG_HWMON is not set |
809 | # CONFIG_THERMAL is not set | ||
782 | # CONFIG_WATCHDOG is not set | 810 | # CONFIG_WATCHDOG is not set |
783 | 811 | ||
784 | # | 812 | # |
@@ -803,6 +831,8 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
803 | # | 831 | # |
804 | # Supported SAA7146 based PCI Adapters | 832 | # Supported SAA7146 based PCI Adapters |
805 | # | 833 | # |
834 | # CONFIG_TTPCI_EEPROM is not set | ||
835 | # CONFIG_DVB_BUDGET_CORE is not set | ||
806 | 836 | ||
807 | # | 837 | # |
808 | # Supported USB Adapters | 838 | # Supported USB Adapters |
@@ -888,11 +918,13 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
888 | # CONFIG_DVB_PLL is not set | 918 | # CONFIG_DVB_PLL is not set |
889 | # CONFIG_DVB_TDA826X is not set | 919 | # CONFIG_DVB_TDA826X is not set |
890 | # CONFIG_DVB_TDA827X is not set | 920 | # CONFIG_DVB_TDA827X is not set |
921 | # CONFIG_DVB_TDA18271 is not set | ||
891 | # CONFIG_DVB_TUNER_QT1010 is not set | 922 | # CONFIG_DVB_TUNER_QT1010 is not set |
892 | # CONFIG_DVB_TUNER_MT2060 is not set | 923 | # CONFIG_DVB_TUNER_MT2060 is not set |
893 | # CONFIG_DVB_TUNER_MT2266 is not set | 924 | # CONFIG_DVB_TUNER_MT2266 is not set |
894 | # CONFIG_DVB_TUNER_MT2131 is not set | 925 | # CONFIG_DVB_TUNER_MT2131 is not set |
895 | # CONFIG_DVB_TUNER_DIB0070 is not set | 926 | # CONFIG_DVB_TUNER_DIB0070 is not set |
927 | # CONFIG_DVB_TUNER_XC5000 is not set | ||
896 | 928 | ||
897 | # | 929 | # |
898 | # Miscellaneous devices | 930 | # Miscellaneous devices |
@@ -970,6 +1002,7 @@ CONFIG_SND_AC97_CODEC=y | |||
970 | # CONFIG_SND_BT87X is not set | 1002 | # CONFIG_SND_BT87X is not set |
971 | # CONFIG_SND_CA0106 is not set | 1003 | # CONFIG_SND_CA0106 is not set |
972 | # CONFIG_SND_CMIPCI is not set | 1004 | # CONFIG_SND_CMIPCI is not set |
1005 | # CONFIG_SND_OXYGEN is not set | ||
973 | # CONFIG_SND_CS4281 is not set | 1006 | # CONFIG_SND_CS4281 is not set |
974 | # CONFIG_SND_CS46XX is not set | 1007 | # CONFIG_SND_CS46XX is not set |
975 | # CONFIG_SND_CS5530 is not set | 1008 | # CONFIG_SND_CS5530 is not set |
@@ -995,6 +1028,7 @@ CONFIG_SND_AC97_CODEC=y | |||
995 | # CONFIG_SND_HDA_INTEL is not set | 1028 | # CONFIG_SND_HDA_INTEL is not set |
996 | # CONFIG_SND_HDSP is not set | 1029 | # CONFIG_SND_HDSP is not set |
997 | # CONFIG_SND_HDSPM is not set | 1030 | # CONFIG_SND_HDSPM is not set |
1031 | # CONFIG_SND_HIFIER is not set | ||
998 | # CONFIG_SND_ICE1712 is not set | 1032 | # CONFIG_SND_ICE1712 is not set |
999 | # CONFIG_SND_ICE1724 is not set | 1033 | # CONFIG_SND_ICE1724 is not set |
1000 | CONFIG_SND_INTEL8X0=y | 1034 | CONFIG_SND_INTEL8X0=y |
@@ -1012,6 +1046,7 @@ CONFIG_SND_INTEL8X0=y | |||
1012 | # CONFIG_SND_TRIDENT is not set | 1046 | # CONFIG_SND_TRIDENT is not set |
1013 | # CONFIG_SND_VIA82XX is not set | 1047 | # CONFIG_SND_VIA82XX is not set |
1014 | # CONFIG_SND_VIA82XX_MODEM is not set | 1048 | # CONFIG_SND_VIA82XX_MODEM is not set |
1049 | # CONFIG_SND_VIRTUOSO is not set | ||
1015 | # CONFIG_SND_VX222 is not set | 1050 | # CONFIG_SND_VX222 is not set |
1016 | # CONFIG_SND_YMFPCI is not set | 1051 | # CONFIG_SND_YMFPCI is not set |
1017 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1052 | # CONFIG_SND_AC97_POWER_SAVE is not set |
@@ -1041,6 +1076,10 @@ CONFIG_SND_INTEL8X0=y | |||
1041 | # | 1076 | # |
1042 | 1077 | ||
1043 | # | 1078 | # |
1079 | # ALSA SoC audio for Freescale SOCs | ||
1080 | # | ||
1081 | |||
1082 | # | ||
1044 | # Open Sound System | 1083 | # Open Sound System |
1045 | # | 1084 | # |
1046 | # CONFIG_SOUND_PRIME is not set | 1085 | # CONFIG_SOUND_PRIME is not set |
@@ -1063,6 +1102,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
1063 | CONFIG_USB_ARCH_HAS_EHCI=y | 1102 | CONFIG_USB_ARCH_HAS_EHCI=y |
1064 | CONFIG_USB=y | 1103 | CONFIG_USB=y |
1065 | # CONFIG_USB_DEBUG is not set | 1104 | # CONFIG_USB_DEBUG is not set |
1105 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1066 | 1106 | ||
1067 | # | 1107 | # |
1068 | # Miscellaneous USB options | 1108 | # Miscellaneous USB options |
@@ -1076,9 +1116,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
1076 | # USB Host Controller Drivers | 1116 | # USB Host Controller Drivers |
1077 | # | 1117 | # |
1078 | CONFIG_USB_EHCI_HCD=y | 1118 | CONFIG_USB_EHCI_HCD=y |
1079 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
1080 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1119 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1081 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1120 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1121 | # CONFIG_USB_EHCI_FSL is not set | ||
1122 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1082 | # CONFIG_USB_ISP116X_HCD is not set | 1123 | # CONFIG_USB_ISP116X_HCD is not set |
1083 | CONFIG_USB_OHCI_HCD=y | 1124 | CONFIG_USB_OHCI_HCD=y |
1084 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1125 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
@@ -1129,10 +1170,6 @@ CONFIG_USB_MON=y | |||
1129 | # | 1170 | # |
1130 | # USB port drivers | 1171 | # USB port drivers |
1131 | # | 1172 | # |
1132 | |||
1133 | # | ||
1134 | # USB Serial Converter support | ||
1135 | # | ||
1136 | # CONFIG_USB_SERIAL is not set | 1173 | # CONFIG_USB_SERIAL is not set |
1137 | 1174 | ||
1138 | # | 1175 | # |
@@ -1158,21 +1195,18 @@ CONFIG_USB_MON=y | |||
1158 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1195 | # CONFIG_USB_TRANCEVIBRATOR is not set |
1159 | # CONFIG_USB_IOWARRIOR is not set | 1196 | # CONFIG_USB_IOWARRIOR is not set |
1160 | # CONFIG_USB_TEST is not set | 1197 | # CONFIG_USB_TEST is not set |
1161 | |||
1162 | # | ||
1163 | # USB DSL modem support | ||
1164 | # | ||
1165 | |||
1166 | # | ||
1167 | # USB Gadget Support | ||
1168 | # | ||
1169 | # CONFIG_USB_GADGET is not set | 1198 | # CONFIG_USB_GADGET is not set |
1170 | # CONFIG_MMC is not set | 1199 | # CONFIG_MMC is not set |
1200 | # CONFIG_MEMSTICK is not set | ||
1171 | # CONFIG_NEW_LEDS is not set | 1201 | # CONFIG_NEW_LEDS is not set |
1172 | # CONFIG_INFINIBAND is not set | 1202 | # CONFIG_INFINIBAND is not set |
1173 | # CONFIG_EDAC is not set | 1203 | # CONFIG_EDAC is not set |
1174 | CONFIG_RTC_LIB=y | 1204 | CONFIG_RTC_LIB=y |
1175 | CONFIG_RTC_CLASS=y | 1205 | CONFIG_RTC_CLASS=y |
1206 | |||
1207 | # | ||
1208 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
1209 | # | ||
1176 | CONFIG_RTC_HCTOSYS=y | 1210 | CONFIG_RTC_HCTOSYS=y |
1177 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 1211 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
1178 | # CONFIG_RTC_DEBUG is not set | 1212 | # CONFIG_RTC_DEBUG is not set |
@@ -1199,6 +1233,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1199 | # CONFIG_RTC_DRV_PCF8563 is not set | 1233 | # CONFIG_RTC_DRV_PCF8563 is not set |
1200 | # CONFIG_RTC_DRV_PCF8583 is not set | 1234 | # CONFIG_RTC_DRV_PCF8583 is not set |
1201 | # CONFIG_RTC_DRV_M41T80 is not set | 1235 | # CONFIG_RTC_DRV_M41T80 is not set |
1236 | # CONFIG_RTC_DRV_S35390A is not set | ||
1202 | 1237 | ||
1203 | # | 1238 | # |
1204 | # SPI RTC drivers | 1239 | # SPI RTC drivers |
@@ -1208,9 +1243,10 @@ CONFIG_RTC_INTF_DEV=y | |||
1208 | # Platform RTC drivers | 1243 | # Platform RTC drivers |
1209 | # | 1244 | # |
1210 | CONFIG_RTC_DRV_CMOS=y | 1245 | CONFIG_RTC_DRV_CMOS=y |
1246 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1211 | # CONFIG_RTC_DRV_DS1553 is not set | 1247 | # CONFIG_RTC_DRV_DS1553 is not set |
1212 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1213 | # CONFIG_RTC_DRV_DS1742 is not set | 1248 | # CONFIG_RTC_DRV_DS1742 is not set |
1249 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1214 | # CONFIG_RTC_DRV_M48T86 is not set | 1250 | # CONFIG_RTC_DRV_M48T86 is not set |
1215 | # CONFIG_RTC_DRV_M48T59 is not set | 1251 | # CONFIG_RTC_DRV_M48T59 is not set |
1216 | # CONFIG_RTC_DRV_V3020 is not set | 1252 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1218,6 +1254,7 @@ CONFIG_RTC_DRV_CMOS=y | |||
1218 | # | 1254 | # |
1219 | # on-CPU RTC drivers | 1255 | # on-CPU RTC drivers |
1220 | # | 1256 | # |
1257 | # CONFIG_DMADEVICES is not set | ||
1221 | 1258 | ||
1222 | # | 1259 | # |
1223 | # Userspace I/O | 1260 | # Userspace I/O |
@@ -1243,12 +1280,10 @@ CONFIG_FS_MBCACHE=y | |||
1243 | # CONFIG_XFS_FS is not set | 1280 | # CONFIG_XFS_FS is not set |
1244 | # CONFIG_GFS2_FS is not set | 1281 | # CONFIG_GFS2_FS is not set |
1245 | # CONFIG_OCFS2_FS is not set | 1282 | # CONFIG_OCFS2_FS is not set |
1246 | # CONFIG_MINIX_FS is not set | 1283 | CONFIG_DNOTIFY=y |
1247 | # CONFIG_ROMFS_FS is not set | ||
1248 | CONFIG_INOTIFY=y | 1284 | CONFIG_INOTIFY=y |
1249 | CONFIG_INOTIFY_USER=y | 1285 | CONFIG_INOTIFY_USER=y |
1250 | # CONFIG_QUOTA is not set | 1286 | # CONFIG_QUOTA is not set |
1251 | CONFIG_DNOTIFY=y | ||
1252 | # CONFIG_AUTOFS_FS is not set | 1287 | # CONFIG_AUTOFS_FS is not set |
1253 | # CONFIG_AUTOFS4_FS is not set | 1288 | # CONFIG_AUTOFS4_FS is not set |
1254 | # CONFIG_FUSE_FS is not set | 1289 | # CONFIG_FUSE_FS is not set |
@@ -1300,8 +1335,10 @@ CONFIG_BFS_FS=m | |||
1300 | CONFIG_EFS_FS=m | 1335 | CONFIG_EFS_FS=m |
1301 | CONFIG_CRAMFS=y | 1336 | CONFIG_CRAMFS=y |
1302 | CONFIG_VXFS_FS=m | 1337 | CONFIG_VXFS_FS=m |
1338 | # CONFIG_MINIX_FS is not set | ||
1303 | CONFIG_HPFS_FS=m | 1339 | CONFIG_HPFS_FS=m |
1304 | CONFIG_QNX4FS_FS=m | 1340 | CONFIG_QNX4FS_FS=m |
1341 | # CONFIG_ROMFS_FS is not set | ||
1305 | CONFIG_SYSV_FS=m | 1342 | CONFIG_SYSV_FS=m |
1306 | CONFIG_UFS_FS=m | 1343 | CONFIG_UFS_FS=m |
1307 | # CONFIG_UFS_FS_WRITE is not set | 1344 | # CONFIG_UFS_FS_WRITE is not set |
@@ -1393,7 +1430,6 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1393 | # CONFIG_NLS_KOI8_U is not set | 1430 | # CONFIG_NLS_KOI8_U is not set |
1394 | CONFIG_NLS_UTF8=m | 1431 | CONFIG_NLS_UTF8=m |
1395 | # CONFIG_DLM is not set | 1432 | # CONFIG_DLM is not set |
1396 | # CONFIG_UCC_SLOW is not set | ||
1397 | 1433 | ||
1398 | # | 1434 | # |
1399 | # Library routines | 1435 | # Library routines |
@@ -1410,7 +1446,6 @@ CONFIG_PLIST=y | |||
1410 | CONFIG_HAS_IOMEM=y | 1446 | CONFIG_HAS_IOMEM=y |
1411 | CONFIG_HAS_IOPORT=y | 1447 | CONFIG_HAS_IOPORT=y |
1412 | CONFIG_HAS_DMA=y | 1448 | CONFIG_HAS_DMA=y |
1413 | # CONFIG_INSTRUMENTATION is not set | ||
1414 | 1449 | ||
1415 | # | 1450 | # |
1416 | # Kernel hacking | 1451 | # Kernel hacking |
@@ -1429,6 +1464,7 @@ CONFIG_SCHED_DEBUG=y | |||
1429 | # CONFIG_SCHEDSTATS is not set | 1464 | # CONFIG_SCHEDSTATS is not set |
1430 | # CONFIG_TIMER_STATS is not set | 1465 | # CONFIG_TIMER_STATS is not set |
1431 | # CONFIG_SLUB_DEBUG_ON is not set | 1466 | # CONFIG_SLUB_DEBUG_ON is not set |
1467 | # CONFIG_SLUB_STATS is not set | ||
1432 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1468 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1433 | # CONFIG_RT_MUTEX_TESTER is not set | 1469 | # CONFIG_RT_MUTEX_TESTER is not set |
1434 | # CONFIG_DEBUG_SPINLOCK is not set | 1470 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1442,9 +1478,9 @@ CONFIG_DEBUG_INFO=y | |||
1442 | # CONFIG_DEBUG_VM is not set | 1478 | # CONFIG_DEBUG_VM is not set |
1443 | # CONFIG_DEBUG_LIST is not set | 1479 | # CONFIG_DEBUG_LIST is not set |
1444 | # CONFIG_DEBUG_SG is not set | 1480 | # CONFIG_DEBUG_SG is not set |
1445 | CONFIG_FORCED_INLINING=y | ||
1446 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1481 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1447 | # CONFIG_RCU_TORTURE_TEST is not set | 1482 | # CONFIG_RCU_TORTURE_TEST is not set |
1483 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1448 | # CONFIG_FAULT_INJECTION is not set | 1484 | # CONFIG_FAULT_INJECTION is not set |
1449 | # CONFIG_SAMPLES is not set | 1485 | # CONFIG_SAMPLES is not set |
1450 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1486 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1463,6 +1499,7 @@ CONFIG_FORCED_INLINING=y | |||
1463 | CONFIG_CRYPTO=y | 1499 | CONFIG_CRYPTO=y |
1464 | CONFIG_CRYPTO_ALGAPI=y | 1500 | CONFIG_CRYPTO_ALGAPI=y |
1465 | CONFIG_CRYPTO_BLKCIPHER=y | 1501 | CONFIG_CRYPTO_BLKCIPHER=y |
1502 | # CONFIG_CRYPTO_SEQIV is not set | ||
1466 | CONFIG_CRYPTO_HASH=y | 1503 | CONFIG_CRYPTO_HASH=y |
1467 | CONFIG_CRYPTO_MANAGER=y | 1504 | CONFIG_CRYPTO_MANAGER=y |
1468 | CONFIG_CRYPTO_HMAC=y | 1505 | CONFIG_CRYPTO_HMAC=y |
@@ -1481,6 +1518,9 @@ CONFIG_CRYPTO_CBC=y | |||
1481 | CONFIG_CRYPTO_PCBC=m | 1518 | CONFIG_CRYPTO_PCBC=m |
1482 | # CONFIG_CRYPTO_LRW is not set | 1519 | # CONFIG_CRYPTO_LRW is not set |
1483 | # CONFIG_CRYPTO_XTS is not set | 1520 | # CONFIG_CRYPTO_XTS is not set |
1521 | # CONFIG_CRYPTO_CTR is not set | ||
1522 | # CONFIG_CRYPTO_GCM is not set | ||
1523 | # CONFIG_CRYPTO_CCM is not set | ||
1484 | # CONFIG_CRYPTO_CRYPTD is not set | 1524 | # CONFIG_CRYPTO_CRYPTD is not set |
1485 | CONFIG_CRYPTO_DES=y | 1525 | CONFIG_CRYPTO_DES=y |
1486 | # CONFIG_CRYPTO_FCRYPT is not set | 1526 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1495,11 +1535,14 @@ CONFIG_CRYPTO_DES=y | |||
1495 | # CONFIG_CRYPTO_KHAZAD is not set | 1535 | # CONFIG_CRYPTO_KHAZAD is not set |
1496 | # CONFIG_CRYPTO_ANUBIS is not set | 1536 | # CONFIG_CRYPTO_ANUBIS is not set |
1497 | # CONFIG_CRYPTO_SEED is not set | 1537 | # CONFIG_CRYPTO_SEED is not set |
1538 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1498 | # CONFIG_CRYPTO_DEFLATE is not set | 1539 | # CONFIG_CRYPTO_DEFLATE is not set |
1499 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1540 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
1500 | # CONFIG_CRYPTO_CRC32C is not set | 1541 | # CONFIG_CRYPTO_CRC32C is not set |
1501 | # CONFIG_CRYPTO_CAMELLIA is not set | 1542 | # CONFIG_CRYPTO_CAMELLIA is not set |
1502 | # CONFIG_CRYPTO_TEST is not set | 1543 | # CONFIG_CRYPTO_TEST is not set |
1503 | # CONFIG_CRYPTO_AUTHENC is not set | 1544 | # CONFIG_CRYPTO_AUTHENC is not set |
1545 | # CONFIG_CRYPTO_LZO is not set | ||
1504 | CONFIG_CRYPTO_HW=y | 1546 | CONFIG_CRYPTO_HW=y |
1547 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1505 | # CONFIG_PPC_CLOCK is not set | 1548 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/mpc866_ads_defconfig b/arch/powerpc/configs/mpc866_ads_defconfig index a7ef231f2ab2..2d831db9ae5b 100644 --- a/arch/powerpc/configs/mpc866_ads_defconfig +++ b/arch/powerpc/configs/mpc866_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:48:59 2007 | 4 | # Mon Mar 24 08:48:35 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -26,6 +26,7 @@ CONFIG_GENERIC_TIME=y | |||
26 | CONFIG_GENERIC_TIME_VSYSCALL=y | 26 | CONFIG_GENERIC_TIME_VSYSCALL=y |
27 | CONFIG_GENERIC_CLOCKEVENTS=y | 27 | CONFIG_GENERIC_CLOCKEVENTS=y |
28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
29 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
30 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
31 | CONFIG_ARCH_HAS_ILOG2_U32=y | 32 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -62,15 +63,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
62 | # CONFIG_POSIX_MQUEUE is not set | 63 | # CONFIG_POSIX_MQUEUE is not set |
63 | # CONFIG_BSD_PROCESS_ACCT is not set | 64 | # CONFIG_BSD_PROCESS_ACCT is not set |
64 | # CONFIG_TASKSTATS is not set | 65 | # CONFIG_TASKSTATS is not set |
65 | # CONFIG_USER_NS is not set | ||
66 | # CONFIG_PID_NS is not set | ||
67 | # CONFIG_AUDIT is not set | 66 | # CONFIG_AUDIT is not set |
68 | # CONFIG_IKCONFIG is not set | 67 | # CONFIG_IKCONFIG is not set |
69 | CONFIG_LOG_BUF_SHIFT=14 | 68 | CONFIG_LOG_BUF_SHIFT=14 |
70 | # CONFIG_CGROUPS is not set | 69 | # CONFIG_CGROUPS is not set |
70 | CONFIG_GROUP_SCHED=y | ||
71 | # CONFIG_FAIR_GROUP_SCHED is not set | 71 | # CONFIG_FAIR_GROUP_SCHED is not set |
72 | # CONFIG_RT_GROUP_SCHED is not set | ||
73 | CONFIG_USER_SCHED=y | ||
74 | # CONFIG_CGROUP_SCHED is not set | ||
72 | CONFIG_SYSFS_DEPRECATED=y | 75 | CONFIG_SYSFS_DEPRECATED=y |
76 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
73 | # CONFIG_RELAY is not set | 77 | # CONFIG_RELAY is not set |
78 | # CONFIG_NAMESPACES is not set | ||
74 | # CONFIG_BLK_DEV_INITRD is not set | 79 | # CONFIG_BLK_DEV_INITRD is not set |
75 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
76 | CONFIG_SYSCTL=y | 81 | CONFIG_SYSCTL=y |
@@ -82,11 +87,13 @@ CONFIG_KALLSYMS=y | |||
82 | CONFIG_PRINTK=y | 87 | CONFIG_PRINTK=y |
83 | # CONFIG_BUG is not set | 88 | # CONFIG_BUG is not set |
84 | CONFIG_ELF_CORE=y | 89 | CONFIG_ELF_CORE=y |
90 | CONFIG_COMPAT_BRK=y | ||
85 | # CONFIG_BASE_FULL is not set | 91 | # CONFIG_BASE_FULL is not set |
86 | CONFIG_FUTEX=y | 92 | CONFIG_FUTEX=y |
87 | CONFIG_ANON_INODES=y | 93 | CONFIG_ANON_INODES=y |
88 | # CONFIG_EPOLL is not set | 94 | # CONFIG_EPOLL is not set |
89 | CONFIG_SIGNALFD=y | 95 | CONFIG_SIGNALFD=y |
96 | CONFIG_TIMERFD=y | ||
90 | CONFIG_EVENTFD=y | 97 | CONFIG_EVENTFD=y |
91 | CONFIG_SHMEM=y | 98 | CONFIG_SHMEM=y |
92 | # CONFIG_VM_EVENT_COUNTERS is not set | 99 | # CONFIG_VM_EVENT_COUNTERS is not set |
@@ -94,6 +101,13 @@ CONFIG_SLUB_DEBUG=y | |||
94 | # CONFIG_SLAB is not set | 101 | # CONFIG_SLAB is not set |
95 | CONFIG_SLUB=y | 102 | CONFIG_SLUB=y |
96 | # CONFIG_SLOB is not set | 103 | # CONFIG_SLOB is not set |
104 | # CONFIG_PROFILING is not set | ||
105 | # CONFIG_MARKERS is not set | ||
106 | CONFIG_HAVE_OPROFILE=y | ||
107 | CONFIG_HAVE_KPROBES=y | ||
108 | CONFIG_HAVE_KRETPROBES=y | ||
109 | CONFIG_PROC_PAGE_MONITOR=y | ||
110 | CONFIG_SLABINFO=y | ||
97 | CONFIG_RT_MUTEXES=y | 111 | CONFIG_RT_MUTEXES=y |
98 | # CONFIG_TINY_SHMEM is not set | 112 | # CONFIG_TINY_SHMEM is not set |
99 | CONFIG_BASE_SMALL=1 | 113 | CONFIG_BASE_SMALL=1 |
@@ -116,12 +130,13 @@ CONFIG_DEFAULT_AS=y | |||
116 | # CONFIG_DEFAULT_CFQ is not set | 130 | # CONFIG_DEFAULT_CFQ is not set |
117 | # CONFIG_DEFAULT_NOOP is not set | 131 | # CONFIG_DEFAULT_NOOP is not set |
118 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 132 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
133 | CONFIG_CLASSIC_RCU=y | ||
119 | 134 | ||
120 | # | 135 | # |
121 | # Platform support | 136 | # Platform support |
122 | # | 137 | # |
123 | # CONFIG_PPC_MPC52xx is not set | 138 | # CONFIG_PPC_MPC512x is not set |
124 | # CONFIG_PPC_MPC5200 is not set | 139 | # CONFIG_PPC_MPC5121 is not set |
125 | # CONFIG_PPC_CELL is not set | 140 | # CONFIG_PPC_CELL is not set |
126 | # CONFIG_PPC_CELL_NATIVE is not set | 141 | # CONFIG_PPC_CELL_NATIVE is not set |
127 | CONFIG_CPM1=y | 142 | CONFIG_CPM1=y |
@@ -129,6 +144,7 @@ CONFIG_CPM1=y | |||
129 | CONFIG_MPC86XADS=y | 144 | CONFIG_MPC86XADS=y |
130 | # CONFIG_MPC885ADS is not set | 145 | # CONFIG_MPC885ADS is not set |
131 | # CONFIG_PPC_EP88XC is not set | 146 | # CONFIG_PPC_EP88XC is not set |
147 | # CONFIG_PPC_ADDER875 is not set | ||
132 | 148 | ||
133 | # | 149 | # |
134 | # MPC8xx CPM Options | 150 | # MPC8xx CPM Options |
@@ -145,6 +161,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
145 | # CONFIG_I2C_SPI_UCODE_PATCH is not set | 161 | # CONFIG_I2C_SPI_UCODE_PATCH is not set |
146 | # CONFIG_I2C_SPI_SMC1_UCODE_PATCH is not set | 162 | # CONFIG_I2C_SPI_SMC1_UCODE_PATCH is not set |
147 | # CONFIG_PQ2ADS is not set | 163 | # CONFIG_PQ2ADS is not set |
164 | # CONFIG_IPIC is not set | ||
148 | # CONFIG_MPIC is not set | 165 | # CONFIG_MPIC is not set |
149 | # CONFIG_MPIC_WEIRD is not set | 166 | # CONFIG_MPIC_WEIRD is not set |
150 | # CONFIG_PPC_I8259 is not set | 167 | # CONFIG_PPC_I8259 is not set |
@@ -155,7 +172,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
155 | # CONFIG_PPC_INDIRECT_IO is not set | 172 | # CONFIG_PPC_INDIRECT_IO is not set |
156 | # CONFIG_GENERIC_IOMAP is not set | 173 | # CONFIG_GENERIC_IOMAP is not set |
157 | # CONFIG_CPU_FREQ is not set | 174 | # CONFIG_CPU_FREQ is not set |
158 | # CONFIG_CPM2 is not set | 175 | CONFIG_PPC_CPM_NEW_BINDING=y |
159 | # CONFIG_FSL_ULI1575 is not set | 176 | # CONFIG_FSL_ULI1575 is not set |
160 | CONFIG_CPM=y | 177 | CONFIG_CPM=y |
161 | 178 | ||
@@ -172,13 +189,17 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
172 | # CONFIG_HZ_300 is not set | 189 | # CONFIG_HZ_300 is not set |
173 | CONFIG_HZ_1000=y | 190 | CONFIG_HZ_1000=y |
174 | CONFIG_HZ=1000 | 191 | CONFIG_HZ=1000 |
192 | # CONFIG_SCHED_HRTICK is not set | ||
175 | CONFIG_PREEMPT_NONE=y | 193 | CONFIG_PREEMPT_NONE=y |
176 | # CONFIG_PREEMPT_VOLUNTARY is not set | 194 | # CONFIG_PREEMPT_VOLUNTARY is not set |
177 | # CONFIG_PREEMPT is not set | 195 | # CONFIG_PREEMPT is not set |
178 | CONFIG_BINFMT_ELF=y | 196 | CONFIG_BINFMT_ELF=y |
179 | # CONFIG_BINFMT_MISC is not set | 197 | # CONFIG_BINFMT_MISC is not set |
180 | CONFIG_MATH_EMULATION=y | 198 | CONFIG_MATH_EMULATION=y |
199 | # CONFIG_IOMMU_HELPER is not set | ||
181 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 200 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
201 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
202 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
182 | CONFIG_ARCH_FLATMEM_ENABLE=y | 203 | CONFIG_ARCH_FLATMEM_ENABLE=y |
183 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 204 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
184 | CONFIG_SELECT_MEMORY_MODEL=y | 205 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -197,11 +218,7 @@ CONFIG_VIRT_TO_BUS=y | |||
197 | # CONFIG_PROC_DEVICETREE is not set | 218 | # CONFIG_PROC_DEVICETREE is not set |
198 | # CONFIG_CMDLINE_BOOL is not set | 219 | # CONFIG_CMDLINE_BOOL is not set |
199 | # CONFIG_PM is not set | 220 | # CONFIG_PM is not set |
200 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
201 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
202 | # CONFIG_SECCOMP is not set | 221 | # CONFIG_SECCOMP is not set |
203 | CONFIG_WANT_DEVICE_TREE=y | ||
204 | CONFIG_DEVICE_TREE="" | ||
205 | CONFIG_ISA_DMA_API=y | 222 | CONFIG_ISA_DMA_API=y |
206 | 223 | ||
207 | # | 224 | # |
@@ -246,6 +263,7 @@ CONFIG_XFRM=y | |||
246 | # CONFIG_XFRM_USER is not set | 263 | # CONFIG_XFRM_USER is not set |
247 | # CONFIG_XFRM_SUB_POLICY is not set | 264 | # CONFIG_XFRM_SUB_POLICY is not set |
248 | # CONFIG_XFRM_MIGRATE is not set | 265 | # CONFIG_XFRM_MIGRATE is not set |
266 | # CONFIG_XFRM_STATISTICS is not set | ||
249 | # CONFIG_NET_KEY is not set | 267 | # CONFIG_NET_KEY is not set |
250 | CONFIG_INET=y | 268 | CONFIG_INET=y |
251 | CONFIG_IP_MULTICAST=y | 269 | CONFIG_IP_MULTICAST=y |
@@ -301,6 +319,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
301 | # | 319 | # |
302 | # CONFIG_NET_PKTGEN is not set | 320 | # CONFIG_NET_PKTGEN is not set |
303 | # CONFIG_HAMRADIO is not set | 321 | # CONFIG_HAMRADIO is not set |
322 | # CONFIG_CAN is not set | ||
304 | # CONFIG_IRDA is not set | 323 | # CONFIG_IRDA is not set |
305 | # CONFIG_BT is not set | 324 | # CONFIG_BT is not set |
306 | # CONFIG_AF_RXRPC is not set | 325 | # CONFIG_AF_RXRPC is not set |
@@ -340,6 +359,8 @@ CONFIG_BLK_DEV_LOOP=y | |||
340 | # CONFIG_ATA_OVER_ETH is not set | 359 | # CONFIG_ATA_OVER_ETH is not set |
341 | CONFIG_MISC_DEVICES=y | 360 | CONFIG_MISC_DEVICES=y |
342 | # CONFIG_EEPROM_93CX6 is not set | 361 | # CONFIG_EEPROM_93CX6 is not set |
362 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
363 | CONFIG_HAVE_IDE=y | ||
343 | # CONFIG_IDE is not set | 364 | # CONFIG_IDE is not set |
344 | 365 | ||
345 | # | 366 | # |
@@ -374,11 +395,8 @@ CONFIG_PHYLIB=y | |||
374 | # CONFIG_SMSC_PHY is not set | 395 | # CONFIG_SMSC_PHY is not set |
375 | # CONFIG_BROADCOM_PHY is not set | 396 | # CONFIG_BROADCOM_PHY is not set |
376 | # CONFIG_ICPLUS_PHY is not set | 397 | # CONFIG_ICPLUS_PHY is not set |
398 | # CONFIG_REALTEK_PHY is not set | ||
377 | CONFIG_FIXED_PHY=y | 399 | CONFIG_FIXED_PHY=y |
378 | CONFIG_FIXED_MII_10_FDX=y | ||
379 | CONFIG_FIXED_MII_100_FDX=y | ||
380 | # CONFIG_FIXED_MII_1000_FDX is not set | ||
381 | CONFIG_FIXED_MII_AMNT=1 | ||
382 | # CONFIG_MDIO_BITBANG is not set | 400 | # CONFIG_MDIO_BITBANG is not set |
383 | CONFIG_NET_ETHERNET=y | 401 | CONFIG_NET_ETHERNET=y |
384 | CONFIG_MII=y | 402 | CONFIG_MII=y |
@@ -392,6 +410,8 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
392 | CONFIG_FS_ENET_HAS_FEC=y | 410 | CONFIG_FS_ENET_HAS_FEC=y |
393 | CONFIG_FS_ENET_MDIO_FEC=y | 411 | CONFIG_FS_ENET_MDIO_FEC=y |
394 | CONFIG_NETDEV_1000=y | 412 | CONFIG_NETDEV_1000=y |
413 | # CONFIG_E1000E_ENABLED is not set | ||
414 | # CONFIG_GIANFAR is not set | ||
395 | CONFIG_NETDEV_10000=y | 415 | CONFIG_NETDEV_10000=y |
396 | 416 | ||
397 | # | 417 | # |
@@ -402,7 +422,6 @@ CONFIG_NETDEV_10000=y | |||
402 | # CONFIG_WAN is not set | 422 | # CONFIG_WAN is not set |
403 | # CONFIG_PPP is not set | 423 | # CONFIG_PPP is not set |
404 | # CONFIG_SLIP is not set | 424 | # CONFIG_SLIP is not set |
405 | # CONFIG_SHAPER is not set | ||
406 | # CONFIG_NETCONSOLE is not set | 425 | # CONFIG_NETCONSOLE is not set |
407 | # CONFIG_NETPOLL is not set | 426 | # CONFIG_NETPOLL is not set |
408 | # CONFIG_NET_POLL_CONTROLLER is not set | 427 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -519,6 +538,7 @@ CONFIG_HWMON=y | |||
519 | # CONFIG_SENSORS_W83627HF is not set | 538 | # CONFIG_SENSORS_W83627HF is not set |
520 | # CONFIG_SENSORS_W83627EHF is not set | 539 | # CONFIG_SENSORS_W83627EHF is not set |
521 | # CONFIG_HWMON_DEBUG_CHIP is not set | 540 | # CONFIG_HWMON_DEBUG_CHIP is not set |
541 | # CONFIG_THERMAL is not set | ||
522 | # CONFIG_WATCHDOG is not set | 542 | # CONFIG_WATCHDOG is not set |
523 | 543 | ||
524 | # | 544 | # |
@@ -568,15 +588,13 @@ CONFIG_USB_SUPPORT=y | |||
568 | # | 588 | # |
569 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 589 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
570 | # | 590 | # |
571 | |||
572 | # | ||
573 | # USB Gadget Support | ||
574 | # | ||
575 | # CONFIG_USB_GADGET is not set | 591 | # CONFIG_USB_GADGET is not set |
576 | # CONFIG_MMC is not set | 592 | # CONFIG_MMC is not set |
593 | # CONFIG_MEMSTICK is not set | ||
577 | # CONFIG_NEW_LEDS is not set | 594 | # CONFIG_NEW_LEDS is not set |
578 | # CONFIG_EDAC is not set | 595 | # CONFIG_EDAC is not set |
579 | # CONFIG_RTC_CLASS is not set | 596 | # CONFIG_RTC_CLASS is not set |
597 | # CONFIG_DMADEVICES is not set | ||
580 | 598 | ||
581 | # | 599 | # |
582 | # Userspace I/O | 600 | # Userspace I/O |
@@ -604,12 +622,10 @@ CONFIG_FS_MBCACHE=y | |||
604 | # CONFIG_XFS_FS is not set | 622 | # CONFIG_XFS_FS is not set |
605 | # CONFIG_GFS2_FS is not set | 623 | # CONFIG_GFS2_FS is not set |
606 | # CONFIG_OCFS2_FS is not set | 624 | # CONFIG_OCFS2_FS is not set |
607 | # CONFIG_MINIX_FS is not set | 625 | CONFIG_DNOTIFY=y |
608 | # CONFIG_ROMFS_FS is not set | ||
609 | CONFIG_INOTIFY=y | 626 | CONFIG_INOTIFY=y |
610 | CONFIG_INOTIFY_USER=y | 627 | CONFIG_INOTIFY_USER=y |
611 | # CONFIG_QUOTA is not set | 628 | # CONFIG_QUOTA is not set |
612 | CONFIG_DNOTIFY=y | ||
613 | # CONFIG_AUTOFS_FS is not set | 629 | # CONFIG_AUTOFS_FS is not set |
614 | # CONFIG_AUTOFS4_FS is not set | 630 | # CONFIG_AUTOFS4_FS is not set |
615 | # CONFIG_FUSE_FS is not set | 631 | # CONFIG_FUSE_FS is not set |
@@ -651,8 +667,10 @@ CONFIG_TMPFS=y | |||
651 | # CONFIG_EFS_FS is not set | 667 | # CONFIG_EFS_FS is not set |
652 | CONFIG_CRAMFS=y | 668 | CONFIG_CRAMFS=y |
653 | # CONFIG_VXFS_FS is not set | 669 | # CONFIG_VXFS_FS is not set |
670 | # CONFIG_MINIX_FS is not set | ||
654 | # CONFIG_HPFS_FS is not set | 671 | # CONFIG_HPFS_FS is not set |
655 | # CONFIG_QNX4FS_FS is not set | 672 | # CONFIG_QNX4FS_FS is not set |
673 | # CONFIG_ROMFS_FS is not set | ||
656 | # CONFIG_SYSV_FS is not set | 674 | # CONFIG_SYSV_FS is not set |
657 | # CONFIG_UFS_FS is not set | 675 | # CONFIG_UFS_FS is not set |
658 | CONFIG_NETWORK_FILESYSTEMS=y | 676 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -699,7 +717,6 @@ CONFIG_MSDOS_PARTITION=y | |||
699 | # CONFIG_SYSV68_PARTITION is not set | 717 | # CONFIG_SYSV68_PARTITION is not set |
700 | # CONFIG_NLS is not set | 718 | # CONFIG_NLS is not set |
701 | # CONFIG_DLM is not set | 719 | # CONFIG_DLM is not set |
702 | # CONFIG_UCC_SLOW is not set | ||
703 | 720 | ||
704 | # | 721 | # |
705 | # Library routines | 722 | # Library routines |
@@ -716,7 +733,6 @@ CONFIG_PLIST=y | |||
716 | CONFIG_HAS_IOMEM=y | 733 | CONFIG_HAS_IOMEM=y |
717 | CONFIG_HAS_IOPORT=y | 734 | CONFIG_HAS_IOPORT=y |
718 | CONFIG_HAS_DMA=y | 735 | CONFIG_HAS_DMA=y |
719 | # CONFIG_INSTRUMENTATION is not set | ||
720 | 736 | ||
721 | # | 737 | # |
722 | # Kernel hacking | 738 | # Kernel hacking |
@@ -730,6 +746,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
730 | # CONFIG_HEADERS_CHECK is not set | 746 | # CONFIG_HEADERS_CHECK is not set |
731 | # CONFIG_DEBUG_KERNEL is not set | 747 | # CONFIG_DEBUG_KERNEL is not set |
732 | # CONFIG_SLUB_DEBUG_ON is not set | 748 | # CONFIG_SLUB_DEBUG_ON is not set |
749 | # CONFIG_SLUB_STATS is not set | ||
733 | # CONFIG_SAMPLES is not set | 750 | # CONFIG_SAMPLES is not set |
734 | # CONFIG_PPC_EARLY_DEBUG is not set | 751 | # CONFIG_PPC_EARLY_DEBUG is not set |
735 | 752 | ||
@@ -739,6 +756,49 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
739 | # CONFIG_KEYS is not set | 756 | # CONFIG_KEYS is not set |
740 | # CONFIG_SECURITY is not set | 757 | # CONFIG_SECURITY is not set |
741 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 758 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
742 | # CONFIG_CRYPTO is not set | 759 | CONFIG_CRYPTO=y |
760 | # CONFIG_CRYPTO_SEQIV is not set | ||
761 | # CONFIG_CRYPTO_MANAGER is not set | ||
762 | # CONFIG_CRYPTO_HMAC is not set | ||
763 | # CONFIG_CRYPTO_XCBC is not set | ||
764 | # CONFIG_CRYPTO_NULL is not set | ||
765 | # CONFIG_CRYPTO_MD4 is not set | ||
766 | # CONFIG_CRYPTO_MD5 is not set | ||
767 | # CONFIG_CRYPTO_SHA1 is not set | ||
768 | # CONFIG_CRYPTO_SHA256 is not set | ||
769 | # CONFIG_CRYPTO_SHA512 is not set | ||
770 | # CONFIG_CRYPTO_WP512 is not set | ||
771 | # CONFIG_CRYPTO_TGR192 is not set | ||
772 | # CONFIG_CRYPTO_GF128MUL is not set | ||
773 | # CONFIG_CRYPTO_ECB is not set | ||
774 | # CONFIG_CRYPTO_CBC is not set | ||
775 | # CONFIG_CRYPTO_PCBC is not set | ||
776 | # CONFIG_CRYPTO_LRW is not set | ||
777 | # CONFIG_CRYPTO_XTS is not set | ||
778 | # CONFIG_CRYPTO_CTR is not set | ||
779 | # CONFIG_CRYPTO_GCM is not set | ||
780 | # CONFIG_CRYPTO_CCM is not set | ||
781 | # CONFIG_CRYPTO_CRYPTD is not set | ||
782 | # CONFIG_CRYPTO_DES is not set | ||
783 | # CONFIG_CRYPTO_FCRYPT is not set | ||
784 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
785 | # CONFIG_CRYPTO_TWOFISH is not set | ||
786 | # CONFIG_CRYPTO_SERPENT is not set | ||
787 | # CONFIG_CRYPTO_AES is not set | ||
788 | # CONFIG_CRYPTO_CAST5 is not set | ||
789 | # CONFIG_CRYPTO_CAST6 is not set | ||
790 | # CONFIG_CRYPTO_TEA is not set | ||
791 | # CONFIG_CRYPTO_ARC4 is not set | ||
792 | # CONFIG_CRYPTO_KHAZAD is not set | ||
793 | # CONFIG_CRYPTO_ANUBIS is not set | ||
794 | # CONFIG_CRYPTO_SEED is not set | ||
795 | # CONFIG_CRYPTO_SALSA20 is not set | ||
796 | # CONFIG_CRYPTO_DEFLATE is not set | ||
797 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
798 | # CONFIG_CRYPTO_CRC32C is not set | ||
799 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
800 | # CONFIG_CRYPTO_AUTHENC is not set | ||
801 | # CONFIG_CRYPTO_LZO is not set | ||
802 | CONFIG_CRYPTO_HW=y | ||
743 | # CONFIG_PPC_CLOCK is not set | 803 | # CONFIG_PPC_CLOCK is not set |
744 | CONFIG_PPC_LIB_RHEAP=y | 804 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/mpc885_ads_defconfig b/arch/powerpc/configs/mpc885_ads_defconfig index 22f8171d6d45..82151b9bba26 100644 --- a/arch/powerpc/configs/mpc885_ads_defconfig +++ b/arch/powerpc/configs/mpc885_ads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:49:01 2007 | 4 | # Mon Mar 24 08:48:35 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -26,6 +26,7 @@ CONFIG_GENERIC_TIME=y | |||
26 | CONFIG_GENERIC_TIME_VSYSCALL=y | 26 | CONFIG_GENERIC_TIME_VSYSCALL=y |
27 | CONFIG_GENERIC_CLOCKEVENTS=y | 27 | CONFIG_GENERIC_CLOCKEVENTS=y |
28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
29 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
30 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
31 | CONFIG_ARCH_HAS_ILOG2_U32=y | 32 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -63,15 +64,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
63 | # CONFIG_POSIX_MQUEUE is not set | 64 | # CONFIG_POSIX_MQUEUE is not set |
64 | # CONFIG_BSD_PROCESS_ACCT is not set | 65 | # CONFIG_BSD_PROCESS_ACCT is not set |
65 | # CONFIG_TASKSTATS is not set | 66 | # CONFIG_TASKSTATS is not set |
66 | # CONFIG_USER_NS is not set | ||
67 | # CONFIG_PID_NS is not set | ||
68 | # CONFIG_AUDIT is not set | 67 | # CONFIG_AUDIT is not set |
69 | # CONFIG_IKCONFIG is not set | 68 | # CONFIG_IKCONFIG is not set |
70 | CONFIG_LOG_BUF_SHIFT=14 | 69 | CONFIG_LOG_BUF_SHIFT=14 |
71 | # CONFIG_CGROUPS is not set | 70 | # CONFIG_CGROUPS is not set |
71 | CONFIG_GROUP_SCHED=y | ||
72 | # CONFIG_FAIR_GROUP_SCHED is not set | 72 | # CONFIG_FAIR_GROUP_SCHED is not set |
73 | # CONFIG_RT_GROUP_SCHED is not set | ||
74 | CONFIG_USER_SCHED=y | ||
75 | # CONFIG_CGROUP_SCHED is not set | ||
73 | CONFIG_SYSFS_DEPRECATED=y | 76 | CONFIG_SYSFS_DEPRECATED=y |
77 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
74 | # CONFIG_RELAY is not set | 78 | # CONFIG_RELAY is not set |
79 | # CONFIG_NAMESPACES is not set | ||
75 | # CONFIG_BLK_DEV_INITRD is not set | 80 | # CONFIG_BLK_DEV_INITRD is not set |
76 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 81 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
77 | CONFIG_SYSCTL=y | 82 | CONFIG_SYSCTL=y |
@@ -84,11 +89,13 @@ CONFIG_HOTPLUG=y | |||
84 | CONFIG_PRINTK=y | 89 | CONFIG_PRINTK=y |
85 | CONFIG_BUG=y | 90 | CONFIG_BUG=y |
86 | # CONFIG_ELF_CORE is not set | 91 | # CONFIG_ELF_CORE is not set |
92 | CONFIG_COMPAT_BRK=y | ||
87 | # CONFIG_BASE_FULL is not set | 93 | # CONFIG_BASE_FULL is not set |
88 | # CONFIG_FUTEX is not set | 94 | # CONFIG_FUTEX is not set |
89 | CONFIG_ANON_INODES=y | 95 | CONFIG_ANON_INODES=y |
90 | CONFIG_EPOLL=y | 96 | CONFIG_EPOLL=y |
91 | CONFIG_SIGNALFD=y | 97 | CONFIG_SIGNALFD=y |
98 | CONFIG_TIMERFD=y | ||
92 | CONFIG_EVENTFD=y | 99 | CONFIG_EVENTFD=y |
93 | CONFIG_SHMEM=y | 100 | CONFIG_SHMEM=y |
94 | # CONFIG_VM_EVENT_COUNTERS is not set | 101 | # CONFIG_VM_EVENT_COUNTERS is not set |
@@ -96,6 +103,13 @@ CONFIG_SLUB_DEBUG=y | |||
96 | # CONFIG_SLAB is not set | 103 | # CONFIG_SLAB is not set |
97 | CONFIG_SLUB=y | 104 | CONFIG_SLUB=y |
98 | # CONFIG_SLOB is not set | 105 | # CONFIG_SLOB is not set |
106 | # CONFIG_PROFILING is not set | ||
107 | # CONFIG_MARKERS is not set | ||
108 | CONFIG_HAVE_OPROFILE=y | ||
109 | CONFIG_HAVE_KPROBES=y | ||
110 | CONFIG_HAVE_KRETPROBES=y | ||
111 | CONFIG_PROC_PAGE_MONITOR=y | ||
112 | CONFIG_SLABINFO=y | ||
99 | # CONFIG_TINY_SHMEM is not set | 113 | # CONFIG_TINY_SHMEM is not set |
100 | CONFIG_BASE_SMALL=1 | 114 | CONFIG_BASE_SMALL=1 |
101 | # CONFIG_MODULES is not set | 115 | # CONFIG_MODULES is not set |
@@ -117,12 +131,13 @@ CONFIG_DEFAULT_DEADLINE=y | |||
117 | # CONFIG_DEFAULT_CFQ is not set | 131 | # CONFIG_DEFAULT_CFQ is not set |
118 | # CONFIG_DEFAULT_NOOP is not set | 132 | # CONFIG_DEFAULT_NOOP is not set |
119 | CONFIG_DEFAULT_IOSCHED="deadline" | 133 | CONFIG_DEFAULT_IOSCHED="deadline" |
134 | CONFIG_CLASSIC_RCU=y | ||
120 | 135 | ||
121 | # | 136 | # |
122 | # Platform support | 137 | # Platform support |
123 | # | 138 | # |
124 | # CONFIG_PPC_MPC52xx is not set | 139 | # CONFIG_PPC_MPC512x is not set |
125 | # CONFIG_PPC_MPC5200 is not set | 140 | # CONFIG_PPC_MPC5121 is not set |
126 | # CONFIG_PPC_CELL is not set | 141 | # CONFIG_PPC_CELL is not set |
127 | # CONFIG_PPC_CELL_NATIVE is not set | 142 | # CONFIG_PPC_CELL_NATIVE is not set |
128 | CONFIG_CPM1=y | 143 | CONFIG_CPM1=y |
@@ -130,6 +145,7 @@ CONFIG_CPM1=y | |||
130 | # CONFIG_MPC86XADS is not set | 145 | # CONFIG_MPC86XADS is not set |
131 | CONFIG_MPC885ADS=y | 146 | CONFIG_MPC885ADS=y |
132 | # CONFIG_PPC_EP88XC is not set | 147 | # CONFIG_PPC_EP88XC is not set |
148 | # CONFIG_PPC_ADDER875 is not set | ||
133 | 149 | ||
134 | # | 150 | # |
135 | # Freescale Ethernet driver platform-specific options | 151 | # Freescale Ethernet driver platform-specific options |
@@ -153,6 +169,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
153 | # CONFIG_I2C_SPI_UCODE_PATCH is not set | 169 | # CONFIG_I2C_SPI_UCODE_PATCH is not set |
154 | # CONFIG_I2C_SPI_SMC1_UCODE_PATCH is not set | 170 | # CONFIG_I2C_SPI_SMC1_UCODE_PATCH is not set |
155 | # CONFIG_PQ2ADS is not set | 171 | # CONFIG_PQ2ADS is not set |
172 | # CONFIG_IPIC is not set | ||
156 | # CONFIG_MPIC is not set | 173 | # CONFIG_MPIC is not set |
157 | # CONFIG_MPIC_WEIRD is not set | 174 | # CONFIG_MPIC_WEIRD is not set |
158 | # CONFIG_PPC_I8259 is not set | 175 | # CONFIG_PPC_I8259 is not set |
@@ -163,7 +180,6 @@ CONFIG_NO_UCODE_PATCH=y | |||
163 | # CONFIG_PPC_INDIRECT_IO is not set | 180 | # CONFIG_PPC_INDIRECT_IO is not set |
164 | # CONFIG_GENERIC_IOMAP is not set | 181 | # CONFIG_GENERIC_IOMAP is not set |
165 | # CONFIG_CPU_FREQ is not set | 182 | # CONFIG_CPU_FREQ is not set |
166 | # CONFIG_CPM2 is not set | ||
167 | CONFIG_PPC_CPM_NEW_BINDING=y | 183 | CONFIG_PPC_CPM_NEW_BINDING=y |
168 | # CONFIG_FSL_ULI1575 is not set | 184 | # CONFIG_FSL_ULI1575 is not set |
169 | CONFIG_CPM=y | 185 | CONFIG_CPM=y |
@@ -181,6 +197,7 @@ CONFIG_HZ_100=y | |||
181 | # CONFIG_HZ_300 is not set | 197 | # CONFIG_HZ_300 is not set |
182 | # CONFIG_HZ_1000 is not set | 198 | # CONFIG_HZ_1000 is not set |
183 | CONFIG_HZ=100 | 199 | CONFIG_HZ=100 |
200 | # CONFIG_SCHED_HRTICK is not set | ||
184 | CONFIG_PREEMPT_NONE=y | 201 | CONFIG_PREEMPT_NONE=y |
185 | # CONFIG_PREEMPT_VOLUNTARY is not set | 202 | # CONFIG_PREEMPT_VOLUNTARY is not set |
186 | # CONFIG_PREEMPT is not set | 203 | # CONFIG_PREEMPT is not set |
@@ -188,7 +205,10 @@ CONFIG_BINFMT_ELF=y | |||
188 | # CONFIG_BINFMT_MISC is not set | 205 | # CONFIG_BINFMT_MISC is not set |
189 | # CONFIG_MATH_EMULATION is not set | 206 | # CONFIG_MATH_EMULATION is not set |
190 | CONFIG_8XX_MINIMAL_FPEMU=y | 207 | CONFIG_8XX_MINIMAL_FPEMU=y |
208 | # CONFIG_IOMMU_HELPER is not set | ||
191 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 209 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
210 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
211 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
192 | CONFIG_ARCH_FLATMEM_ENABLE=y | 212 | CONFIG_ARCH_FLATMEM_ENABLE=y |
193 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 213 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
194 | CONFIG_SELECT_MEMORY_MODEL=y | 214 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -207,11 +227,7 @@ CONFIG_VIRT_TO_BUS=y | |||
207 | CONFIG_PROC_DEVICETREE=y | 227 | CONFIG_PROC_DEVICETREE=y |
208 | # CONFIG_CMDLINE_BOOL is not set | 228 | # CONFIG_CMDLINE_BOOL is not set |
209 | # CONFIG_PM is not set | 229 | # CONFIG_PM is not set |
210 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
211 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
212 | # CONFIG_SECCOMP is not set | 230 | # CONFIG_SECCOMP is not set |
213 | CONFIG_WANT_DEVICE_TREE=y | ||
214 | CONFIG_DEVICE_TREE="mpc885ads.dts" | ||
215 | CONFIG_ISA_DMA_API=y | 231 | CONFIG_ISA_DMA_API=y |
216 | 232 | ||
217 | # | 233 | # |
@@ -308,6 +324,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
308 | # | 324 | # |
309 | # CONFIG_NET_PKTGEN is not set | 325 | # CONFIG_NET_PKTGEN is not set |
310 | # CONFIG_HAMRADIO is not set | 326 | # CONFIG_HAMRADIO is not set |
327 | # CONFIG_CAN is not set | ||
311 | # CONFIG_IRDA is not set | 328 | # CONFIG_IRDA is not set |
312 | # CONFIG_BT is not set | 329 | # CONFIG_BT is not set |
313 | # CONFIG_AF_RXRPC is not set | 330 | # CONFIG_AF_RXRPC is not set |
@@ -418,6 +435,7 @@ CONFIG_OF_DEVICE=y | |||
418 | # CONFIG_PARPORT is not set | 435 | # CONFIG_PARPORT is not set |
419 | # CONFIG_BLK_DEV is not set | 436 | # CONFIG_BLK_DEV is not set |
420 | # CONFIG_MISC_DEVICES is not set | 437 | # CONFIG_MISC_DEVICES is not set |
438 | CONFIG_HAVE_IDE=y | ||
421 | # CONFIG_IDE is not set | 439 | # CONFIG_IDE is not set |
422 | 440 | ||
423 | # | 441 | # |
@@ -452,6 +470,7 @@ CONFIG_DAVICOM_PHY=y | |||
452 | # CONFIG_SMSC_PHY is not set | 470 | # CONFIG_SMSC_PHY is not set |
453 | # CONFIG_BROADCOM_PHY is not set | 471 | # CONFIG_BROADCOM_PHY is not set |
454 | # CONFIG_ICPLUS_PHY is not set | 472 | # CONFIG_ICPLUS_PHY is not set |
473 | # CONFIG_REALTEK_PHY is not set | ||
455 | # CONFIG_FIXED_PHY is not set | 474 | # CONFIG_FIXED_PHY is not set |
456 | # CONFIG_MDIO_BITBANG is not set | 475 | # CONFIG_MDIO_BITBANG is not set |
457 | CONFIG_NET_ETHERNET=y | 476 | CONFIG_NET_ETHERNET=y |
@@ -476,7 +495,6 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
476 | # CONFIG_WAN is not set | 495 | # CONFIG_WAN is not set |
477 | # CONFIG_PPP is not set | 496 | # CONFIG_PPP is not set |
478 | # CONFIG_SLIP is not set | 497 | # CONFIG_SLIP is not set |
479 | # CONFIG_SHAPER is not set | ||
480 | # CONFIG_NETCONSOLE is not set | 498 | # CONFIG_NETCONSOLE is not set |
481 | # CONFIG_NETPOLL is not set | 499 | # CONFIG_NETPOLL is not set |
482 | # CONFIG_NET_POLL_CONTROLLER is not set | 500 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -539,6 +557,7 @@ CONFIG_GEN_RTC=y | |||
539 | # CONFIG_W1 is not set | 557 | # CONFIG_W1 is not set |
540 | # CONFIG_POWER_SUPPLY is not set | 558 | # CONFIG_POWER_SUPPLY is not set |
541 | # CONFIG_HWMON is not set | 559 | # CONFIG_HWMON is not set |
560 | # CONFIG_THERMAL is not set | ||
542 | # CONFIG_WATCHDOG is not set | 561 | # CONFIG_WATCHDOG is not set |
543 | 562 | ||
544 | # | 563 | # |
@@ -578,9 +597,11 @@ CONFIG_DAB=y | |||
578 | # CONFIG_SOUND is not set | 597 | # CONFIG_SOUND is not set |
579 | # CONFIG_USB_SUPPORT is not set | 598 | # CONFIG_USB_SUPPORT is not set |
580 | # CONFIG_MMC is not set | 599 | # CONFIG_MMC is not set |
600 | # CONFIG_MEMSTICK is not set | ||
581 | # CONFIG_NEW_LEDS is not set | 601 | # CONFIG_NEW_LEDS is not set |
582 | # CONFIG_EDAC is not set | 602 | # CONFIG_EDAC is not set |
583 | # CONFIG_RTC_CLASS is not set | 603 | # CONFIG_RTC_CLASS is not set |
604 | # CONFIG_DMADEVICES is not set | ||
584 | 605 | ||
585 | # | 606 | # |
586 | # Userspace I/O | 607 | # Userspace I/O |
@@ -599,11 +620,9 @@ CONFIG_DAB=y | |||
599 | # CONFIG_XFS_FS is not set | 620 | # CONFIG_XFS_FS is not set |
600 | # CONFIG_GFS2_FS is not set | 621 | # CONFIG_GFS2_FS is not set |
601 | # CONFIG_OCFS2_FS is not set | 622 | # CONFIG_OCFS2_FS is not set |
602 | # CONFIG_MINIX_FS is not set | 623 | # CONFIG_DNOTIFY is not set |
603 | # CONFIG_ROMFS_FS is not set | ||
604 | # CONFIG_INOTIFY is not set | 624 | # CONFIG_INOTIFY is not set |
605 | # CONFIG_QUOTA is not set | 625 | # CONFIG_QUOTA is not set |
606 | # CONFIG_DNOTIFY is not set | ||
607 | # CONFIG_AUTOFS_FS is not set | 626 | # CONFIG_AUTOFS_FS is not set |
608 | # CONFIG_AUTOFS4_FS is not set | 627 | # CONFIG_AUTOFS4_FS is not set |
609 | # CONFIG_FUSE_FS is not set | 628 | # CONFIG_FUSE_FS is not set |
@@ -646,8 +665,10 @@ CONFIG_TMPFS=y | |||
646 | # CONFIG_JFFS2_FS is not set | 665 | # CONFIG_JFFS2_FS is not set |
647 | CONFIG_CRAMFS=y | 666 | CONFIG_CRAMFS=y |
648 | # CONFIG_VXFS_FS is not set | 667 | # CONFIG_VXFS_FS is not set |
668 | # CONFIG_MINIX_FS is not set | ||
649 | # CONFIG_HPFS_FS is not set | 669 | # CONFIG_HPFS_FS is not set |
650 | # CONFIG_QNX4FS_FS is not set | 670 | # CONFIG_QNX4FS_FS is not set |
671 | # CONFIG_ROMFS_FS is not set | ||
651 | # CONFIG_SYSV_FS is not set | 672 | # CONFIG_SYSV_FS is not set |
652 | # CONFIG_UFS_FS is not set | 673 | # CONFIG_UFS_FS is not set |
653 | CONFIG_NETWORK_FILESYSTEMS=y | 674 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -694,7 +715,6 @@ CONFIG_MSDOS_PARTITION=y | |||
694 | # CONFIG_SYSV68_PARTITION is not set | 715 | # CONFIG_SYSV68_PARTITION is not set |
695 | # CONFIG_NLS is not set | 716 | # CONFIG_NLS is not set |
696 | # CONFIG_DLM is not set | 717 | # CONFIG_DLM is not set |
697 | # CONFIG_UCC_SLOW is not set | ||
698 | 718 | ||
699 | # | 719 | # |
700 | # Library routines | 720 | # Library routines |
@@ -709,7 +729,6 @@ CONFIG_ZLIB_INFLATE=y | |||
709 | CONFIG_HAS_IOMEM=y | 729 | CONFIG_HAS_IOMEM=y |
710 | CONFIG_HAS_IOPORT=y | 730 | CONFIG_HAS_IOPORT=y |
711 | CONFIG_HAS_DMA=y | 731 | CONFIG_HAS_DMA=y |
712 | # CONFIG_INSTRUMENTATION is not set | ||
713 | 732 | ||
714 | # | 733 | # |
715 | # Kernel hacking | 734 | # Kernel hacking |
@@ -728,6 +747,7 @@ CONFIG_SCHED_DEBUG=y | |||
728 | # CONFIG_SCHEDSTATS is not set | 747 | # CONFIG_SCHEDSTATS is not set |
729 | # CONFIG_TIMER_STATS is not set | 748 | # CONFIG_TIMER_STATS is not set |
730 | # CONFIG_SLUB_DEBUG_ON is not set | 749 | # CONFIG_SLUB_DEBUG_ON is not set |
750 | # CONFIG_SLUB_STATS is not set | ||
731 | # CONFIG_DEBUG_SPINLOCK is not set | 751 | # CONFIG_DEBUG_SPINLOCK is not set |
732 | # CONFIG_DEBUG_MUTEXES is not set | 752 | # CONFIG_DEBUG_MUTEXES is not set |
733 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 753 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
@@ -738,8 +758,8 @@ CONFIG_DEBUG_INFO=y | |||
738 | # CONFIG_DEBUG_VM is not set | 758 | # CONFIG_DEBUG_VM is not set |
739 | # CONFIG_DEBUG_LIST is not set | 759 | # CONFIG_DEBUG_LIST is not set |
740 | # CONFIG_DEBUG_SG is not set | 760 | # CONFIG_DEBUG_SG is not set |
741 | CONFIG_FORCED_INLINING=y | ||
742 | # CONFIG_BOOT_PRINTK_DELAY is not set | 761 | # CONFIG_BOOT_PRINTK_DELAY is not set |
762 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
743 | # CONFIG_FAULT_INJECTION is not set | 763 | # CONFIG_FAULT_INJECTION is not set |
744 | # CONFIG_SAMPLES is not set | 764 | # CONFIG_SAMPLES is not set |
745 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 765 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
diff --git a/arch/powerpc/configs/pq2fads_defconfig b/arch/powerpc/configs/pq2fads_defconfig index a3bfbb65a933..1383eb696a20 100644 --- a/arch/powerpc/configs/pq2fads_defconfig +++ b/arch/powerpc/configs/pq2fads_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc5 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 13 22:39:18 2007 | 4 | # Mon Mar 24 08:48:36 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -28,6 +28,7 @@ CONFIG_GENERIC_TIME=y | |||
28 | CONFIG_GENERIC_TIME_VSYSCALL=y | 28 | CONFIG_GENERIC_TIME_VSYSCALL=y |
29 | CONFIG_GENERIC_CLOCKEVENTS=y | 29 | CONFIG_GENERIC_CLOCKEVENTS=y |
30 | CONFIG_GENERIC_HARDIRQS=y | 30 | CONFIG_GENERIC_HARDIRQS=y |
31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
31 | CONFIG_IRQ_PER_CPU=y | 32 | CONFIG_IRQ_PER_CPU=y |
32 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
33 | CONFIG_ARCH_HAS_ILOG2_U32=y | 34 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -69,9 +70,14 @@ CONFIG_IKCONFIG=y | |||
69 | CONFIG_IKCONFIG_PROC=y | 70 | CONFIG_IKCONFIG_PROC=y |
70 | CONFIG_LOG_BUF_SHIFT=14 | 71 | CONFIG_LOG_BUF_SHIFT=14 |
71 | # CONFIG_CGROUPS is not set | 72 | # CONFIG_CGROUPS is not set |
73 | CONFIG_GROUP_SCHED=y | ||
72 | # CONFIG_FAIR_GROUP_SCHED is not set | 74 | # CONFIG_FAIR_GROUP_SCHED is not set |
73 | # CONFIG_SYSFS_DEPRECATED is not set | 75 | CONFIG_USER_SCHED=y |
76 | # CONFIG_CGROUP_SCHED is not set | ||
77 | CONFIG_SYSFS_DEPRECATED=y | ||
78 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
74 | # CONFIG_RELAY is not set | 79 | # CONFIG_RELAY is not set |
80 | # CONFIG_NAMESPACES is not set | ||
75 | CONFIG_BLK_DEV_INITRD=y | 81 | CONFIG_BLK_DEV_INITRD=y |
76 | CONFIG_INITRAMFS_SOURCE="" | 82 | CONFIG_INITRAMFS_SOURCE="" |
77 | CONFIG_SYSCTL=y | 83 | CONFIG_SYSCTL=y |
@@ -84,11 +90,13 @@ CONFIG_HOTPLUG=y | |||
84 | CONFIG_PRINTK=y | 90 | CONFIG_PRINTK=y |
85 | CONFIG_BUG=y | 91 | CONFIG_BUG=y |
86 | CONFIG_ELF_CORE=y | 92 | CONFIG_ELF_CORE=y |
93 | CONFIG_COMPAT_BRK=y | ||
87 | CONFIG_BASE_FULL=y | 94 | CONFIG_BASE_FULL=y |
88 | CONFIG_FUTEX=y | 95 | CONFIG_FUTEX=y |
89 | CONFIG_ANON_INODES=y | 96 | CONFIG_ANON_INODES=y |
90 | CONFIG_EPOLL=y | 97 | CONFIG_EPOLL=y |
91 | CONFIG_SIGNALFD=y | 98 | CONFIG_SIGNALFD=y |
99 | CONFIG_TIMERFD=y | ||
92 | CONFIG_EVENTFD=y | 100 | CONFIG_EVENTFD=y |
93 | CONFIG_SHMEM=y | 101 | CONFIG_SHMEM=y |
94 | CONFIG_VM_EVENT_COUNTERS=y | 102 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -96,6 +104,13 @@ CONFIG_SLUB_DEBUG=y | |||
96 | # CONFIG_SLAB is not set | 104 | # CONFIG_SLAB is not set |
97 | CONFIG_SLUB=y | 105 | CONFIG_SLUB=y |
98 | # CONFIG_SLOB is not set | 106 | # CONFIG_SLOB is not set |
107 | # CONFIG_PROFILING is not set | ||
108 | # CONFIG_MARKERS is not set | ||
109 | CONFIG_HAVE_OPROFILE=y | ||
110 | CONFIG_HAVE_KPROBES=y | ||
111 | CONFIG_HAVE_KRETPROBES=y | ||
112 | CONFIG_PROC_PAGE_MONITOR=y | ||
113 | CONFIG_SLABINFO=y | ||
99 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
100 | # CONFIG_TINY_SHMEM is not set | 115 | # CONFIG_TINY_SHMEM is not set |
101 | CONFIG_BASE_SMALL=0 | 116 | CONFIG_BASE_SMALL=0 |
@@ -117,6 +132,7 @@ CONFIG_DEFAULT_AS=y | |||
117 | # CONFIG_DEFAULT_CFQ is not set | 132 | # CONFIG_DEFAULT_CFQ is not set |
118 | # CONFIG_DEFAULT_NOOP is not set | 133 | # CONFIG_DEFAULT_NOOP is not set |
119 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 134 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
135 | CONFIG_CLASSIC_RCU=y | ||
120 | 136 | ||
121 | # | 137 | # |
122 | # Platform support | 138 | # Platform support |
@@ -125,15 +141,17 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
125 | CONFIG_PPC_82xx=y | 141 | CONFIG_PPC_82xx=y |
126 | # CONFIG_PPC_83xx is not set | 142 | # CONFIG_PPC_83xx is not set |
127 | # CONFIG_PPC_86xx is not set | 143 | # CONFIG_PPC_86xx is not set |
128 | # CONFIG_PPC_MPC52xx is not set | 144 | # CONFIG_PPC_MPC512x is not set |
129 | # CONFIG_PPC_MPC5200 is not set | 145 | # CONFIG_PPC_MPC5121 is not set |
130 | # CONFIG_PPC_CELL is not set | 146 | # CONFIG_PPC_CELL is not set |
131 | # CONFIG_PPC_CELL_NATIVE is not set | 147 | # CONFIG_PPC_CELL_NATIVE is not set |
132 | # CONFIG_MPC8272_ADS is not set | 148 | # CONFIG_MPC8272_ADS is not set |
133 | CONFIG_PQ2FADS=y | 149 | CONFIG_PQ2FADS=y |
150 | # CONFIG_EP8248E is not set | ||
134 | CONFIG_PQ2ADS=y | 151 | CONFIG_PQ2ADS=y |
135 | CONFIG_8260=y | 152 | CONFIG_8260=y |
136 | CONFIG_PQ2_ADS_PCI_PIC=y | 153 | CONFIG_PQ2_ADS_PCI_PIC=y |
154 | # CONFIG_IPIC is not set | ||
137 | # CONFIG_MPIC is not set | 155 | # CONFIG_MPIC is not set |
138 | # CONFIG_MPIC_WEIRD is not set | 156 | # CONFIG_MPIC_WEIRD is not set |
139 | # CONFIG_PPC_I8259 is not set | 157 | # CONFIG_PPC_I8259 is not set |
@@ -162,12 +180,16 @@ CONFIG_HZ_250=y | |||
162 | # CONFIG_HZ_300 is not set | 180 | # CONFIG_HZ_300 is not set |
163 | # CONFIG_HZ_1000 is not set | 181 | # CONFIG_HZ_1000 is not set |
164 | CONFIG_HZ=250 | 182 | CONFIG_HZ=250 |
183 | # CONFIG_SCHED_HRTICK is not set | ||
165 | CONFIG_PREEMPT_NONE=y | 184 | CONFIG_PREEMPT_NONE=y |
166 | # CONFIG_PREEMPT_VOLUNTARY is not set | 185 | # CONFIG_PREEMPT_VOLUNTARY is not set |
167 | # CONFIG_PREEMPT is not set | 186 | # CONFIG_PREEMPT is not set |
168 | CONFIG_BINFMT_ELF=y | 187 | CONFIG_BINFMT_ELF=y |
169 | CONFIG_BINFMT_MISC=y | 188 | CONFIG_BINFMT_MISC=y |
189 | # CONFIG_IOMMU_HELPER is not set | ||
170 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 190 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
191 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
192 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
171 | CONFIG_ARCH_FLATMEM_ENABLE=y | 193 | CONFIG_ARCH_FLATMEM_ENABLE=y |
172 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 194 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
173 | CONFIG_FLATMEM=y | 195 | CONFIG_FLATMEM=y |
@@ -182,11 +204,7 @@ CONFIG_VIRT_TO_BUS=y | |||
182 | CONFIG_PROC_DEVICETREE=y | 204 | CONFIG_PROC_DEVICETREE=y |
183 | # CONFIG_CMDLINE_BOOL is not set | 205 | # CONFIG_CMDLINE_BOOL is not set |
184 | # CONFIG_PM is not set | 206 | # CONFIG_PM is not set |
185 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
186 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
187 | CONFIG_SECCOMP=y | 207 | CONFIG_SECCOMP=y |
188 | CONFIG_WANT_DEVICE_TREE=y | ||
189 | CONFIG_DEVICE_TREE="pq2fads.dts" | ||
190 | CONFIG_ISA_DMA_API=y | 208 | CONFIG_ISA_DMA_API=y |
191 | 209 | ||
192 | # | 210 | # |
@@ -206,6 +224,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
206 | CONFIG_PCI_LEGACY=y | 224 | CONFIG_PCI_LEGACY=y |
207 | # CONFIG_PCI_DEBUG is not set | 225 | # CONFIG_PCI_DEBUG is not set |
208 | # CONFIG_PCCARD is not set | 226 | # CONFIG_PCCARD is not set |
227 | # CONFIG_HOTPLUG_PCI is not set | ||
209 | 228 | ||
210 | # | 229 | # |
211 | # Advanced setup | 230 | # Advanced setup |
@@ -278,12 +297,13 @@ CONFIG_IPV6_SIT=y | |||
278 | # CONFIG_NETWORK_SECMARK is not set | 297 | # CONFIG_NETWORK_SECMARK is not set |
279 | CONFIG_NETFILTER=y | 298 | CONFIG_NETFILTER=y |
280 | # CONFIG_NETFILTER_DEBUG is not set | 299 | # CONFIG_NETFILTER_DEBUG is not set |
300 | CONFIG_NETFILTER_ADVANCED=y | ||
281 | 301 | ||
282 | # | 302 | # |
283 | # Core Netfilter Configuration | 303 | # Core Netfilter Configuration |
284 | # | 304 | # |
285 | # CONFIG_NETFILTER_NETLINK is not set | 305 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
286 | # CONFIG_NF_CONNTRACK_ENABLED is not set | 306 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
287 | # CONFIG_NF_CONNTRACK is not set | 307 | # CONFIG_NF_CONNTRACK is not set |
288 | # CONFIG_NETFILTER_XTABLES is not set | 308 | # CONFIG_NETFILTER_XTABLES is not set |
289 | 309 | ||
@@ -293,6 +313,13 @@ CONFIG_NETFILTER=y | |||
293 | # CONFIG_IP_NF_QUEUE is not set | 313 | # CONFIG_IP_NF_QUEUE is not set |
294 | # CONFIG_IP_NF_IPTABLES is not set | 314 | # CONFIG_IP_NF_IPTABLES is not set |
295 | # CONFIG_IP_NF_ARPTABLES is not set | 315 | # CONFIG_IP_NF_ARPTABLES is not set |
316 | |||
317 | # | ||
318 | # IPv6: Netfilter Configuration | ||
319 | # | ||
320 | # CONFIG_IP6_NF_QUEUE is not set | ||
321 | # CONFIG_IP6_NF_IPTABLES is not set | ||
322 | # CONFIG_ATM is not set | ||
296 | # CONFIG_BRIDGE is not set | 323 | # CONFIG_BRIDGE is not set |
297 | # CONFIG_VLAN_8021Q is not set | 324 | # CONFIG_VLAN_8021Q is not set |
298 | # CONFIG_DECNET is not set | 325 | # CONFIG_DECNET is not set |
@@ -306,6 +333,7 @@ CONFIG_NETFILTER=y | |||
306 | # | 333 | # |
307 | # CONFIG_NET_PKTGEN is not set | 334 | # CONFIG_NET_PKTGEN is not set |
308 | # CONFIG_HAMRADIO is not set | 335 | # CONFIG_HAMRADIO is not set |
336 | # CONFIG_CAN is not set | ||
309 | # CONFIG_IRDA is not set | 337 | # CONFIG_IRDA is not set |
310 | # CONFIG_BT is not set | 338 | # CONFIG_BT is not set |
311 | 339 | ||
@@ -314,6 +342,7 @@ CONFIG_NETFILTER=y | |||
314 | # | 342 | # |
315 | # CONFIG_CFG80211 is not set | 343 | # CONFIG_CFG80211 is not set |
316 | # CONFIG_WIRELESS_EXT is not set | 344 | # CONFIG_WIRELESS_EXT is not set |
345 | # CONFIG_MAC80211 is not set | ||
317 | # CONFIG_IEEE80211 is not set | 346 | # CONFIG_IEEE80211 is not set |
318 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
319 | 348 | ||
@@ -431,17 +460,20 @@ CONFIG_MISC_DEVICES=y | |||
431 | # CONFIG_PHANTOM is not set | 460 | # CONFIG_PHANTOM is not set |
432 | # CONFIG_EEPROM_93CX6 is not set | 461 | # CONFIG_EEPROM_93CX6 is not set |
433 | # CONFIG_SGI_IOC4 is not set | 462 | # CONFIG_SGI_IOC4 is not set |
463 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
464 | CONFIG_HAVE_IDE=y | ||
434 | CONFIG_IDE=y | 465 | CONFIG_IDE=y |
435 | CONFIG_IDE_MAX_HWIFS=4 | 466 | CONFIG_IDE_MAX_HWIFS=4 |
436 | CONFIG_BLK_DEV_IDE=y | 467 | CONFIG_BLK_DEV_IDE=y |
437 | 468 | ||
438 | # | 469 | # |
439 | # Please see Documentation/ide.txt for help/info on IDE drives | 470 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
440 | # | 471 | # |
441 | # CONFIG_BLK_DEV_IDE_SATA is not set | 472 | # CONFIG_BLK_DEV_IDE_SATA is not set |
442 | CONFIG_BLK_DEV_IDEDISK=y | 473 | CONFIG_BLK_DEV_IDEDISK=y |
443 | # CONFIG_IDEDISK_MULTI_MODE is not set | 474 | # CONFIG_IDEDISK_MULTI_MODE is not set |
444 | # CONFIG_BLK_DEV_IDECD is not set | 475 | # CONFIG_BLK_DEV_IDECD is not set |
476 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
445 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | 477 | # CONFIG_BLK_DEV_IDEFLOPPY is not set |
446 | # CONFIG_IDE_TASK_IOCTL is not set | 478 | # CONFIG_IDE_TASK_IOCTL is not set |
447 | CONFIG_IDE_PROC_FS=y | 479 | CONFIG_IDE_PROC_FS=y |
@@ -455,7 +487,6 @@ CONFIG_IDE_PROC_FS=y | |||
455 | # | 487 | # |
456 | # PCI IDE chipsets support | 488 | # PCI IDE chipsets support |
457 | # | 489 | # |
458 | # CONFIG_IDEPCI_PCIBUS_ORDER is not set | ||
459 | # CONFIG_BLK_DEV_GENERIC is not set | 490 | # CONFIG_BLK_DEV_GENERIC is not set |
460 | # CONFIG_BLK_DEV_AEC62XX is not set | 491 | # CONFIG_BLK_DEV_AEC62XX is not set |
461 | # CONFIG_BLK_DEV_ALI15X3 is not set | 492 | # CONFIG_BLK_DEV_ALI15X3 is not set |
@@ -481,7 +512,6 @@ CONFIG_IDE_PROC_FS=y | |||
481 | # CONFIG_BLK_DEV_TRM290 is not set | 512 | # CONFIG_BLK_DEV_TRM290 is not set |
482 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 513 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
483 | # CONFIG_BLK_DEV_TC86C001 is not set | 514 | # CONFIG_BLK_DEV_TC86C001 is not set |
484 | # CONFIG_IDE_ARM is not set | ||
485 | # CONFIG_BLK_DEV_IDEDMA is not set | 515 | # CONFIG_BLK_DEV_IDEDMA is not set |
486 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 516 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
487 | # CONFIG_BLK_DEV_HD is not set | 517 | # CONFIG_BLK_DEV_HD is not set |
@@ -529,6 +559,7 @@ CONFIG_DAVICOM_PHY=y | |||
529 | # CONFIG_SMSC_PHY is not set | 559 | # CONFIG_SMSC_PHY is not set |
530 | # CONFIG_BROADCOM_PHY is not set | 560 | # CONFIG_BROADCOM_PHY is not set |
531 | # CONFIG_ICPLUS_PHY is not set | 561 | # CONFIG_ICPLUS_PHY is not set |
562 | # CONFIG_REALTEK_PHY is not set | ||
532 | # CONFIG_FIXED_PHY is not set | 563 | # CONFIG_FIXED_PHY is not set |
533 | CONFIG_MDIO_BITBANG=y | 564 | CONFIG_MDIO_BITBANG=y |
534 | CONFIG_NET_ETHERNET=y | 565 | CONFIG_NET_ETHERNET=y |
@@ -554,6 +585,8 @@ CONFIG_NETDEV_1000=y | |||
554 | # CONFIG_DL2K is not set | 585 | # CONFIG_DL2K is not set |
555 | # CONFIG_E1000 is not set | 586 | # CONFIG_E1000 is not set |
556 | # CONFIG_E1000E is not set | 587 | # CONFIG_E1000E is not set |
588 | # CONFIG_E1000E_ENABLED is not set | ||
589 | # CONFIG_IGB is not set | ||
557 | # CONFIG_NS83820 is not set | 590 | # CONFIG_NS83820 is not set |
558 | # CONFIG_HAMACHI is not set | 591 | # CONFIG_HAMACHI is not set |
559 | # CONFIG_R8169 is not set | 592 | # CONFIG_R8169 is not set |
@@ -564,6 +597,7 @@ CONFIG_NETDEV_1000=y | |||
564 | # CONFIG_VIA_VELOCITY is not set | 597 | # CONFIG_VIA_VELOCITY is not set |
565 | # CONFIG_TIGON3 is not set | 598 | # CONFIG_TIGON3 is not set |
566 | # CONFIG_BNX2 is not set | 599 | # CONFIG_BNX2 is not set |
600 | # CONFIG_GIANFAR is not set | ||
567 | # CONFIG_QLA3XXX is not set | 601 | # CONFIG_QLA3XXX is not set |
568 | CONFIG_NETDEV_10000=y | 602 | CONFIG_NETDEV_10000=y |
569 | # CONFIG_CHELSIO_T1 is not set | 603 | # CONFIG_CHELSIO_T1 is not set |
@@ -576,6 +610,7 @@ CONFIG_NETDEV_10000=y | |||
576 | # CONFIG_NIU is not set | 610 | # CONFIG_NIU is not set |
577 | # CONFIG_MLX4_CORE is not set | 611 | # CONFIG_MLX4_CORE is not set |
578 | # CONFIG_TEHUTI is not set | 612 | # CONFIG_TEHUTI is not set |
613 | # CONFIG_BNX2X is not set | ||
579 | # CONFIG_TR is not set | 614 | # CONFIG_TR is not set |
580 | 615 | ||
581 | # | 616 | # |
@@ -700,6 +735,7 @@ CONFIG_DEVPORT=y | |||
700 | # CONFIG_W1 is not set | 735 | # CONFIG_W1 is not set |
701 | # CONFIG_POWER_SUPPLY is not set | 736 | # CONFIG_POWER_SUPPLY is not set |
702 | # CONFIG_HWMON is not set | 737 | # CONFIG_HWMON is not set |
738 | # CONFIG_THERMAL is not set | ||
703 | # CONFIG_WATCHDOG is not set | 739 | # CONFIG_WATCHDOG is not set |
704 | 740 | ||
705 | # | 741 | # |
@@ -749,10 +785,6 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
749 | # | 785 | # |
750 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 786 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
751 | # | 787 | # |
752 | |||
753 | # | ||
754 | # USB Gadget Support | ||
755 | # | ||
756 | CONFIG_USB_GADGET=y | 788 | CONFIG_USB_GADGET=y |
757 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | 789 | # CONFIG_USB_GADGET_DEBUG_FILES is not set |
758 | CONFIG_USB_GADGET_SELECTED=y | 790 | CONFIG_USB_GADGET_SELECTED=y |
@@ -776,10 +808,13 @@ CONFIG_USB_ETH=y | |||
776 | # CONFIG_USB_FILE_STORAGE is not set | 808 | # CONFIG_USB_FILE_STORAGE is not set |
777 | # CONFIG_USB_G_SERIAL is not set | 809 | # CONFIG_USB_G_SERIAL is not set |
778 | # CONFIG_USB_MIDI_GADGET is not set | 810 | # CONFIG_USB_MIDI_GADGET is not set |
811 | # CONFIG_USB_G_PRINTER is not set | ||
779 | # CONFIG_MMC is not set | 812 | # CONFIG_MMC is not set |
813 | # CONFIG_MEMSTICK is not set | ||
780 | # CONFIG_NEW_LEDS is not set | 814 | # CONFIG_NEW_LEDS is not set |
781 | # CONFIG_INFINIBAND is not set | 815 | # CONFIG_INFINIBAND is not set |
782 | # CONFIG_RTC_CLASS is not set | 816 | # CONFIG_RTC_CLASS is not set |
817 | # CONFIG_DMADEVICES is not set | ||
783 | 818 | ||
784 | # | 819 | # |
785 | # Userspace I/O | 820 | # Userspace I/O |
@@ -803,12 +838,10 @@ CONFIG_FS_MBCACHE=y | |||
803 | CONFIG_FS_POSIX_ACL=y | 838 | CONFIG_FS_POSIX_ACL=y |
804 | # CONFIG_XFS_FS is not set | 839 | # CONFIG_XFS_FS is not set |
805 | # CONFIG_OCFS2_FS is not set | 840 | # CONFIG_OCFS2_FS is not set |
806 | # CONFIG_MINIX_FS is not set | 841 | CONFIG_DNOTIFY=y |
807 | # CONFIG_ROMFS_FS is not set | ||
808 | CONFIG_INOTIFY=y | 842 | CONFIG_INOTIFY=y |
809 | CONFIG_INOTIFY_USER=y | 843 | CONFIG_INOTIFY_USER=y |
810 | # CONFIG_QUOTA is not set | 844 | # CONFIG_QUOTA is not set |
811 | CONFIG_DNOTIFY=y | ||
812 | # CONFIG_AUTOFS_FS is not set | 845 | # CONFIG_AUTOFS_FS is not set |
813 | CONFIG_AUTOFS4_FS=y | 846 | CONFIG_AUTOFS4_FS=y |
814 | # CONFIG_FUSE_FS is not set | 847 | # CONFIG_FUSE_FS is not set |
@@ -836,6 +869,7 @@ CONFIG_SYSFS=y | |||
836 | CONFIG_TMPFS=y | 869 | CONFIG_TMPFS=y |
837 | # CONFIG_TMPFS_POSIX_ACL is not set | 870 | # CONFIG_TMPFS_POSIX_ACL is not set |
838 | # CONFIG_HUGETLB_PAGE is not set | 871 | # CONFIG_HUGETLB_PAGE is not set |
872 | # CONFIG_CONFIGFS_FS is not set | ||
839 | 873 | ||
840 | # | 874 | # |
841 | # Miscellaneous filesystems | 875 | # Miscellaneous filesystems |
@@ -844,8 +878,10 @@ CONFIG_TMPFS=y | |||
844 | # CONFIG_JFFS2_FS is not set | 878 | # CONFIG_JFFS2_FS is not set |
845 | CONFIG_CRAMFS=y | 879 | CONFIG_CRAMFS=y |
846 | # CONFIG_VXFS_FS is not set | 880 | # CONFIG_VXFS_FS is not set |
881 | # CONFIG_MINIX_FS is not set | ||
847 | # CONFIG_HPFS_FS is not set | 882 | # CONFIG_HPFS_FS is not set |
848 | # CONFIG_QNX4FS_FS is not set | 883 | # CONFIG_QNX4FS_FS is not set |
884 | # CONFIG_ROMFS_FS is not set | ||
849 | # CONFIG_SYSV_FS is not set | 885 | # CONFIG_SYSV_FS is not set |
850 | # CONFIG_UFS_FS is not set | 886 | # CONFIG_UFS_FS is not set |
851 | CONFIG_NETWORK_FILESYSTEMS=y | 887 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -926,7 +962,6 @@ CONFIG_NLS_ISO8859_1=y | |||
926 | # CONFIG_NLS_KOI8_R is not set | 962 | # CONFIG_NLS_KOI8_R is not set |
927 | # CONFIG_NLS_KOI8_U is not set | 963 | # CONFIG_NLS_KOI8_U is not set |
928 | CONFIG_NLS_UTF8=y | 964 | CONFIG_NLS_UTF8=y |
929 | # CONFIG_UCC_SLOW is not set | ||
930 | 965 | ||
931 | # | 966 | # |
932 | # Library routines | 967 | # Library routines |
@@ -944,7 +979,6 @@ CONFIG_PLIST=y | |||
944 | CONFIG_HAS_IOMEM=y | 979 | CONFIG_HAS_IOMEM=y |
945 | CONFIG_HAS_IOPORT=y | 980 | CONFIG_HAS_IOPORT=y |
946 | CONFIG_HAS_DMA=y | 981 | CONFIG_HAS_DMA=y |
947 | # CONFIG_INSTRUMENTATION is not set | ||
948 | 982 | ||
949 | # | 983 | # |
950 | # Kernel hacking | 984 | # Kernel hacking |
@@ -963,6 +997,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
963 | # CONFIG_SCHEDSTATS is not set | 997 | # CONFIG_SCHEDSTATS is not set |
964 | # CONFIG_TIMER_STATS is not set | 998 | # CONFIG_TIMER_STATS is not set |
965 | # CONFIG_SLUB_DEBUG_ON is not set | 999 | # CONFIG_SLUB_DEBUG_ON is not set |
1000 | # CONFIG_SLUB_STATS is not set | ||
966 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1001 | # CONFIG_DEBUG_RT_MUTEXES is not set |
967 | # CONFIG_RT_MUTEX_TESTER is not set | 1002 | # CONFIG_RT_MUTEX_TESTER is not set |
968 | # CONFIG_DEBUG_SPINLOCK is not set | 1003 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -975,8 +1010,8 @@ CONFIG_DEBUG_INFO=y | |||
975 | # CONFIG_DEBUG_VM is not set | 1010 | # CONFIG_DEBUG_VM is not set |
976 | # CONFIG_DEBUG_LIST is not set | 1011 | # CONFIG_DEBUG_LIST is not set |
977 | # CONFIG_DEBUG_SG is not set | 1012 | # CONFIG_DEBUG_SG is not set |
978 | CONFIG_FORCED_INLINING=y | ||
979 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1013 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1014 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
980 | # CONFIG_FAULT_INJECTION is not set | 1015 | # CONFIG_FAULT_INJECTION is not set |
981 | # CONFIG_SAMPLES is not set | 1016 | # CONFIG_SAMPLES is not set |
982 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1017 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -995,6 +1030,7 @@ CONFIG_BDI_SWITCH=y | |||
995 | CONFIG_CRYPTO=y | 1030 | CONFIG_CRYPTO=y |
996 | CONFIG_CRYPTO_ALGAPI=y | 1031 | CONFIG_CRYPTO_ALGAPI=y |
997 | CONFIG_CRYPTO_BLKCIPHER=y | 1032 | CONFIG_CRYPTO_BLKCIPHER=y |
1033 | # CONFIG_CRYPTO_SEQIV is not set | ||
998 | CONFIG_CRYPTO_MANAGER=y | 1034 | CONFIG_CRYPTO_MANAGER=y |
999 | # CONFIG_CRYPTO_HMAC is not set | 1035 | # CONFIG_CRYPTO_HMAC is not set |
1000 | # CONFIG_CRYPTO_NULL is not set | 1036 | # CONFIG_CRYPTO_NULL is not set |
@@ -1008,6 +1044,9 @@ CONFIG_CRYPTO_MD5=y | |||
1008 | CONFIG_CRYPTO_ECB=y | 1044 | CONFIG_CRYPTO_ECB=y |
1009 | CONFIG_CRYPTO_CBC=y | 1045 | CONFIG_CRYPTO_CBC=y |
1010 | CONFIG_CRYPTO_PCBC=y | 1046 | CONFIG_CRYPTO_PCBC=y |
1047 | # CONFIG_CRYPTO_CTR is not set | ||
1048 | # CONFIG_CRYPTO_GCM is not set | ||
1049 | # CONFIG_CRYPTO_CCM is not set | ||
1011 | # CONFIG_CRYPTO_CRYPTD is not set | 1050 | # CONFIG_CRYPTO_CRYPTD is not set |
1012 | CONFIG_CRYPTO_DES=y | 1051 | CONFIG_CRYPTO_DES=y |
1013 | # CONFIG_CRYPTO_FCRYPT is not set | 1052 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -1027,6 +1066,8 @@ CONFIG_CRYPTO_DES=y | |||
1027 | # CONFIG_CRYPTO_CRC32C is not set | 1066 | # CONFIG_CRYPTO_CRC32C is not set |
1028 | # CONFIG_CRYPTO_CAMELLIA is not set | 1067 | # CONFIG_CRYPTO_CAMELLIA is not set |
1029 | # CONFIG_CRYPTO_AUTHENC is not set | 1068 | # CONFIG_CRYPTO_AUTHENC is not set |
1069 | # CONFIG_CRYPTO_LZO is not set | ||
1030 | CONFIG_CRYPTO_HW=y | 1070 | CONFIG_CRYPTO_HW=y |
1071 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1031 | # CONFIG_PPC_CLOCK is not set | 1072 | # CONFIG_PPC_CLOCK is not set |
1032 | CONFIG_PPC_LIB_RHEAP=y | 1073 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/prpmc2800_defconfig b/arch/powerpc/configs/prpmc2800_defconfig index 46b2579d38b1..f53d55bbdd7c 100644 --- a/arch/powerpc/configs/prpmc2800_defconfig +++ b/arch/powerpc/configs/prpmc2800_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Dec 6 16:49:11 2007 | 4 | # Mon Mar 24 08:48:37 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -31,6 +31,7 @@ CONFIG_GENERIC_TIME=y | |||
31 | CONFIG_GENERIC_TIME_VSYSCALL=y | 31 | CONFIG_GENERIC_TIME_VSYSCALL=y |
32 | CONFIG_GENERIC_CLOCKEVENTS=y | 32 | CONFIG_GENERIC_CLOCKEVENTS=y |
33 | CONFIG_GENERIC_HARDIRQS=y | 33 | CONFIG_GENERIC_HARDIRQS=y |
34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
36 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -68,15 +69,23 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
68 | CONFIG_POSIX_MQUEUE=y | 69 | CONFIG_POSIX_MQUEUE=y |
69 | # CONFIG_BSD_PROCESS_ACCT is not set | 70 | # CONFIG_BSD_PROCESS_ACCT is not set |
70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
71 | # CONFIG_USER_NS is not set | ||
72 | # CONFIG_PID_NS is not set | ||
73 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
74 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
75 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
76 | # CONFIG_CGROUPS is not set | 75 | # CONFIG_CGROUPS is not set |
76 | CONFIG_GROUP_SCHED=y | ||
77 | # CONFIG_FAIR_GROUP_SCHED is not set | 77 | # CONFIG_FAIR_GROUP_SCHED is not set |
78 | # CONFIG_SYSFS_DEPRECATED is not set | 78 | # CONFIG_RT_GROUP_SCHED is not set |
79 | CONFIG_USER_SCHED=y | ||
80 | # CONFIG_CGROUP_SCHED is not set | ||
81 | CONFIG_SYSFS_DEPRECATED=y | ||
82 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
79 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
84 | CONFIG_NAMESPACES=y | ||
85 | # CONFIG_UTS_NS is not set | ||
86 | # CONFIG_IPC_NS is not set | ||
87 | # CONFIG_USER_NS is not set | ||
88 | # CONFIG_PID_NS is not set | ||
80 | CONFIG_BLK_DEV_INITRD=y | 89 | CONFIG_BLK_DEV_INITRD=y |
81 | CONFIG_INITRAMFS_SOURCE="" | 90 | CONFIG_INITRAMFS_SOURCE="" |
82 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 91 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +98,13 @@ CONFIG_HOTPLUG=y | |||
89 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
101 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 102 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 103 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 104 | CONFIG_ANON_INODES=y |
95 | CONFIG_EPOLL=y | 105 | CONFIG_EPOLL=y |
96 | CONFIG_SIGNALFD=y | 106 | CONFIG_SIGNALFD=y |
107 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 108 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 109 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 110 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +112,13 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 112 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | ||
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | ||
118 | CONFIG_HAVE_KPROBES=y | ||
119 | CONFIG_HAVE_KRETPROBES=y | ||
120 | CONFIG_PROC_PAGE_MONITOR=y | ||
121 | CONFIG_SLABINFO=y | ||
104 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
105 | # CONFIG_TINY_SHMEM is not set | 123 | # CONFIG_TINY_SHMEM is not set |
106 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
@@ -123,6 +141,7 @@ CONFIG_DEFAULT_AS=y | |||
123 | # CONFIG_DEFAULT_CFQ is not set | 141 | # CONFIG_DEFAULT_CFQ is not set |
124 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
125 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 143 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
144 | CONFIG_CLASSIC_RCU=y | ||
126 | 145 | ||
127 | # | 146 | # |
128 | # Platform support | 147 | # Platform support |
@@ -133,20 +152,22 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
133 | # CONFIG_PPC_86xx is not set | 152 | # CONFIG_PPC_86xx is not set |
134 | CONFIG_CLASSIC32=y | 153 | CONFIG_CLASSIC32=y |
135 | # CONFIG_PPC_CHRP is not set | 154 | # CONFIG_PPC_CHRP is not set |
155 | # CONFIG_PPC_MPC512x is not set | ||
156 | # CONFIG_PPC_MPC5121 is not set | ||
157 | # CONFIG_MPC5121_ADS is not set | ||
136 | # CONFIG_PPC_MPC52xx is not set | 158 | # CONFIG_PPC_MPC52xx is not set |
137 | # CONFIG_PPC_MPC5200 is not set | ||
138 | # CONFIG_PPC_EFIKA is not set | ||
139 | # CONFIG_PPC_LITE5200 is not set | ||
140 | # CONFIG_PPC_PMAC is not set | 159 | # CONFIG_PPC_PMAC is not set |
141 | # CONFIG_PPC_CELL is not set | 160 | # CONFIG_PPC_CELL is not set |
142 | # CONFIG_PPC_CELL_NATIVE is not set | 161 | # CONFIG_PPC_CELL_NATIVE is not set |
143 | # CONFIG_PQ2ADS is not set | 162 | # CONFIG_PQ2ADS is not set |
144 | CONFIG_EMBEDDED6xx=y | 163 | CONFIG_EMBEDDED6xx=y |
145 | # CONFIG_LINKSTATION is not set | 164 | # CONFIG_LINKSTATION is not set |
165 | # CONFIG_STORCENTER is not set | ||
146 | # CONFIG_MPC7448HPC2 is not set | 166 | # CONFIG_MPC7448HPC2 is not set |
147 | # CONFIG_PPC_HOLLY is not set | 167 | # CONFIG_PPC_HOLLY is not set |
148 | CONFIG_PPC_PRPMC2800=y | 168 | CONFIG_PPC_PRPMC2800=y |
149 | CONFIG_MV64X60=y | 169 | CONFIG_MV64X60=y |
170 | # CONFIG_IPIC is not set | ||
150 | # CONFIG_MPIC is not set | 171 | # CONFIG_MPIC is not set |
151 | # CONFIG_MPIC_WEIRD is not set | 172 | # CONFIG_MPIC_WEIRD is not set |
152 | # CONFIG_PPC_I8259 is not set | 173 | # CONFIG_PPC_I8259 is not set |
@@ -158,7 +179,6 @@ CONFIG_MV64X60=y | |||
158 | # CONFIG_GENERIC_IOMAP is not set | 179 | # CONFIG_GENERIC_IOMAP is not set |
159 | # CONFIG_CPU_FREQ is not set | 180 | # CONFIG_CPU_FREQ is not set |
160 | # CONFIG_TAU is not set | 181 | # CONFIG_TAU is not set |
161 | # CONFIG_CPM2 is not set | ||
162 | # CONFIG_FSL_ULI1575 is not set | 182 | # CONFIG_FSL_ULI1575 is not set |
163 | 183 | ||
164 | # | 184 | # |
@@ -174,12 +194,16 @@ CONFIG_HZ_250=y | |||
174 | # CONFIG_HZ_300 is not set | 194 | # CONFIG_HZ_300 is not set |
175 | # CONFIG_HZ_1000 is not set | 195 | # CONFIG_HZ_1000 is not set |
176 | CONFIG_HZ=250 | 196 | CONFIG_HZ=250 |
197 | # CONFIG_SCHED_HRTICK is not set | ||
177 | CONFIG_PREEMPT_NONE=y | 198 | CONFIG_PREEMPT_NONE=y |
178 | # CONFIG_PREEMPT_VOLUNTARY is not set | 199 | # CONFIG_PREEMPT_VOLUNTARY is not set |
179 | # CONFIG_PREEMPT is not set | 200 | # CONFIG_PREEMPT is not set |
180 | CONFIG_BINFMT_ELF=y | 201 | CONFIG_BINFMT_ELF=y |
181 | CONFIG_BINFMT_MISC=y | 202 | CONFIG_BINFMT_MISC=y |
203 | # CONFIG_IOMMU_HELPER is not set | ||
182 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 204 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
205 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
206 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
183 | # CONFIG_KEXEC is not set | 207 | # CONFIG_KEXEC is not set |
184 | CONFIG_ARCH_FLATMEM_ENABLE=y | 208 | CONFIG_ARCH_FLATMEM_ENABLE=y |
185 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 209 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -199,11 +223,7 @@ CONFIG_VIRT_TO_BUS=y | |||
199 | CONFIG_PROC_DEVICETREE=y | 223 | CONFIG_PROC_DEVICETREE=y |
200 | # CONFIG_CMDLINE_BOOL is not set | 224 | # CONFIG_CMDLINE_BOOL is not set |
201 | # CONFIG_PM is not set | 225 | # CONFIG_PM is not set |
202 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
203 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
204 | # CONFIG_SECCOMP is not set | 226 | # CONFIG_SECCOMP is not set |
205 | CONFIG_WANT_DEVICE_TREE=y | ||
206 | CONFIG_DEVICE_TREE="prpmc2800.dts" | ||
207 | CONFIG_ISA_DMA_API=y | 227 | CONFIG_ISA_DMA_API=y |
208 | 228 | ||
209 | # | 229 | # |
@@ -253,6 +273,7 @@ CONFIG_XFRM=y | |||
253 | CONFIG_XFRM_USER=y | 273 | CONFIG_XFRM_USER=y |
254 | # CONFIG_XFRM_SUB_POLICY is not set | 274 | # CONFIG_XFRM_SUB_POLICY is not set |
255 | # CONFIG_XFRM_MIGRATE is not set | 275 | # CONFIG_XFRM_MIGRATE is not set |
276 | # CONFIG_XFRM_STATISTICS is not set | ||
256 | # CONFIG_NET_KEY is not set | 277 | # CONFIG_NET_KEY is not set |
257 | CONFIG_INET=y | 278 | CONFIG_INET=y |
258 | CONFIG_IP_MULTICAST=y | 279 | CONFIG_IP_MULTICAST=y |
@@ -308,6 +329,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
308 | # | 329 | # |
309 | # CONFIG_NET_PKTGEN is not set | 330 | # CONFIG_NET_PKTGEN is not set |
310 | # CONFIG_HAMRADIO is not set | 331 | # CONFIG_HAMRADIO is not set |
332 | # CONFIG_CAN is not set | ||
311 | # CONFIG_IRDA is not set | 333 | # CONFIG_IRDA is not set |
312 | # CONFIG_BT is not set | 334 | # CONFIG_BT is not set |
313 | # CONFIG_AF_RXRPC is not set | 335 | # CONFIG_AF_RXRPC is not set |
@@ -341,6 +363,7 @@ CONFIG_MTD_CONCAT=y | |||
341 | CONFIG_MTD_PARTITIONS=y | 363 | CONFIG_MTD_PARTITIONS=y |
342 | # CONFIG_MTD_REDBOOT_PARTS is not set | 364 | # CONFIG_MTD_REDBOOT_PARTS is not set |
343 | # CONFIG_MTD_CMDLINE_PARTS is not set | 365 | # CONFIG_MTD_CMDLINE_PARTS is not set |
366 | # CONFIG_MTD_OF_PARTS is not set | ||
344 | 367 | ||
345 | # | 368 | # |
346 | # User Modules And Translation Layers | 369 | # User Modules And Translation Layers |
@@ -428,7 +451,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
428 | CONFIG_BLK_DEV_RAM=y | 451 | CONFIG_BLK_DEV_RAM=y |
429 | CONFIG_BLK_DEV_RAM_COUNT=16 | 452 | CONFIG_BLK_DEV_RAM_COUNT=16 |
430 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 453 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
431 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 454 | # CONFIG_BLK_DEV_XIP is not set |
432 | # CONFIG_CDROM_PKTCDVD is not set | 455 | # CONFIG_CDROM_PKTCDVD is not set |
433 | # CONFIG_ATA_OVER_ETH is not set | 456 | # CONFIG_ATA_OVER_ETH is not set |
434 | CONFIG_MISC_DEVICES=y | 457 | CONFIG_MISC_DEVICES=y |
@@ -436,11 +459,13 @@ CONFIG_MISC_DEVICES=y | |||
436 | # CONFIG_EEPROM_93CX6 is not set | 459 | # CONFIG_EEPROM_93CX6 is not set |
437 | # CONFIG_SGI_IOC4 is not set | 460 | # CONFIG_SGI_IOC4 is not set |
438 | # CONFIG_TIFM_CORE is not set | 461 | # CONFIG_TIFM_CORE is not set |
462 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
463 | CONFIG_HAVE_IDE=y | ||
439 | CONFIG_IDE=y | 464 | CONFIG_IDE=y |
440 | CONFIG_BLK_DEV_IDE=y | 465 | CONFIG_BLK_DEV_IDE=y |
441 | 466 | ||
442 | # | 467 | # |
443 | # Please see Documentation/ide.txt for help/info on IDE drives | 468 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
444 | # | 469 | # |
445 | # CONFIG_BLK_DEV_IDE_SATA is not set | 470 | # CONFIG_BLK_DEV_IDE_SATA is not set |
446 | CONFIG_BLK_DEV_IDEDISK=y | 471 | CONFIG_BLK_DEV_IDEDISK=y |
@@ -457,12 +482,12 @@ CONFIG_IDE_PROC_FS=y | |||
457 | # | 482 | # |
458 | CONFIG_IDE_GENERIC=y | 483 | CONFIG_IDE_GENERIC=y |
459 | # CONFIG_BLK_DEV_PLATFORM is not set | 484 | # CONFIG_BLK_DEV_PLATFORM is not set |
485 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
460 | 486 | ||
461 | # | 487 | # |
462 | # PCI IDE chipsets support | 488 | # PCI IDE chipsets support |
463 | # | 489 | # |
464 | CONFIG_BLK_DEV_IDEPCI=y | 490 | CONFIG_BLK_DEV_IDEPCI=y |
465 | # CONFIG_IDEPCI_SHARE_IRQ is not set | ||
466 | CONFIG_IDEPCI_PCIBUS_ORDER=y | 491 | CONFIG_IDEPCI_PCIBUS_ORDER=y |
467 | # CONFIG_BLK_DEV_OFFBOARD is not set | 492 | # CONFIG_BLK_DEV_OFFBOARD is not set |
468 | CONFIG_BLK_DEV_GENERIC=y | 493 | CONFIG_BLK_DEV_GENERIC=y |
@@ -493,7 +518,6 @@ CONFIG_BLK_DEV_PDC202XX_NEW=y | |||
493 | # CONFIG_BLK_DEV_TRM290 is not set | 518 | # CONFIG_BLK_DEV_TRM290 is not set |
494 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 519 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
495 | # CONFIG_BLK_DEV_TC86C001 is not set | 520 | # CONFIG_BLK_DEV_TC86C001 is not set |
496 | # CONFIG_IDE_ARM is not set | ||
497 | CONFIG_BLK_DEV_IDEDMA=y | 521 | CONFIG_BLK_DEV_IDEDMA=y |
498 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 522 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
499 | # CONFIG_BLK_DEV_HD is not set | 523 | # CONFIG_BLK_DEV_HD is not set |
@@ -559,6 +583,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
559 | # CONFIG_SCSI_IPS is not set | 583 | # CONFIG_SCSI_IPS is not set |
560 | # CONFIG_SCSI_INITIO is not set | 584 | # CONFIG_SCSI_INITIO is not set |
561 | # CONFIG_SCSI_INIA100 is not set | 585 | # CONFIG_SCSI_INIA100 is not set |
586 | # CONFIG_SCSI_MVSAS is not set | ||
562 | # CONFIG_SCSI_STEX is not set | 587 | # CONFIG_SCSI_STEX is not set |
563 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 588 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
564 | # CONFIG_SCSI_IPR is not set | 589 | # CONFIG_SCSI_IPR is not set |
@@ -612,6 +637,7 @@ CONFIG_SATA_MV=y | |||
612 | # CONFIG_PATA_MPIIX is not set | 637 | # CONFIG_PATA_MPIIX is not set |
613 | # CONFIG_PATA_OLDPIIX is not set | 638 | # CONFIG_PATA_OLDPIIX is not set |
614 | # CONFIG_PATA_NETCELL is not set | 639 | # CONFIG_PATA_NETCELL is not set |
640 | # CONFIG_PATA_NINJA32 is not set | ||
615 | # CONFIG_PATA_NS87410 is not set | 641 | # CONFIG_PATA_NS87410 is not set |
616 | # CONFIG_PATA_NS87415 is not set | 642 | # CONFIG_PATA_NS87415 is not set |
617 | # CONFIG_PATA_OPTI is not set | 643 | # CONFIG_PATA_OPTI is not set |
@@ -626,6 +652,7 @@ CONFIG_SATA_MV=y | |||
626 | # CONFIG_PATA_SIS is not set | 652 | # CONFIG_PATA_SIS is not set |
627 | # CONFIG_PATA_VIA is not set | 653 | # CONFIG_PATA_VIA is not set |
628 | # CONFIG_PATA_WINBOND is not set | 654 | # CONFIG_PATA_WINBOND is not set |
655 | # CONFIG_PATA_PLATFORM is not set | ||
629 | # CONFIG_MD is not set | 656 | # CONFIG_MD is not set |
630 | # CONFIG_FUSION is not set | 657 | # CONFIG_FUSION is not set |
631 | 658 | ||
@@ -646,7 +673,6 @@ CONFIG_NETDEVICES=y | |||
646 | # CONFIG_EQUALIZER is not set | 673 | # CONFIG_EQUALIZER is not set |
647 | # CONFIG_TUN is not set | 674 | # CONFIG_TUN is not set |
648 | # CONFIG_VETH is not set | 675 | # CONFIG_VETH is not set |
649 | # CONFIG_IP1000 is not set | ||
650 | # CONFIG_ARCNET is not set | 676 | # CONFIG_ARCNET is not set |
651 | CONFIG_PHYLIB=y | 677 | CONFIG_PHYLIB=y |
652 | 678 | ||
@@ -662,6 +688,7 @@ CONFIG_PHYLIB=y | |||
662 | # CONFIG_SMSC_PHY is not set | 688 | # CONFIG_SMSC_PHY is not set |
663 | # CONFIG_BROADCOM_PHY is not set | 689 | # CONFIG_BROADCOM_PHY is not set |
664 | # CONFIG_ICPLUS_PHY is not set | 690 | # CONFIG_ICPLUS_PHY is not set |
691 | # CONFIG_REALTEK_PHY is not set | ||
665 | # CONFIG_FIXED_PHY is not set | 692 | # CONFIG_FIXED_PHY is not set |
666 | # CONFIG_MDIO_BITBANG is not set | 693 | # CONFIG_MDIO_BITBANG is not set |
667 | CONFIG_NET_ETHERNET=y | 694 | CONFIG_NET_ETHERNET=y |
@@ -693,6 +720,7 @@ CONFIG_8139TOO=y | |||
693 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 720 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
694 | # CONFIG_8139TOO_8129 is not set | 721 | # CONFIG_8139TOO_8129 is not set |
695 | # CONFIG_8139_OLD_RX_RESET is not set | 722 | # CONFIG_8139_OLD_RX_RESET is not set |
723 | # CONFIG_R6040 is not set | ||
696 | # CONFIG_SIS900 is not set | 724 | # CONFIG_SIS900 is not set |
697 | # CONFIG_EPIC100 is not set | 725 | # CONFIG_EPIC100 is not set |
698 | # CONFIG_SUNDANCE is not set | 726 | # CONFIG_SUNDANCE is not set |
@@ -706,6 +734,9 @@ CONFIG_E1000=y | |||
706 | # CONFIG_E1000_NAPI is not set | 734 | # CONFIG_E1000_NAPI is not set |
707 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 735 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
708 | # CONFIG_E1000E is not set | 736 | # CONFIG_E1000E is not set |
737 | # CONFIG_E1000E_ENABLED is not set | ||
738 | # CONFIG_IP1000 is not set | ||
739 | # CONFIG_IGB is not set | ||
709 | # CONFIG_NS83820 is not set | 740 | # CONFIG_NS83820 is not set |
710 | # CONFIG_HAMACHI is not set | 741 | # CONFIG_HAMACHI is not set |
711 | # CONFIG_YELLOWFIN is not set | 742 | # CONFIG_YELLOWFIN is not set |
@@ -731,6 +762,7 @@ CONFIG_NETDEV_10000=y | |||
731 | # CONFIG_NIU is not set | 762 | # CONFIG_NIU is not set |
732 | # CONFIG_MLX4_CORE is not set | 763 | # CONFIG_MLX4_CORE is not set |
733 | # CONFIG_TEHUTI is not set | 764 | # CONFIG_TEHUTI is not set |
765 | # CONFIG_BNX2X is not set | ||
734 | # CONFIG_TR is not set | 766 | # CONFIG_TR is not set |
735 | 767 | ||
736 | # | 768 | # |
@@ -753,7 +785,6 @@ CONFIG_NETDEV_10000=y | |||
753 | # CONFIG_PPP is not set | 785 | # CONFIG_PPP is not set |
754 | # CONFIG_SLIP is not set | 786 | # CONFIG_SLIP is not set |
755 | # CONFIG_NET_FC is not set | 787 | # CONFIG_NET_FC is not set |
756 | # CONFIG_SHAPER is not set | ||
757 | # CONFIG_NETCONSOLE is not set | 788 | # CONFIG_NETCONSOLE is not set |
758 | # CONFIG_NETPOLL is not set | 789 | # CONFIG_NETPOLL is not set |
759 | # CONFIG_NET_POLL_CONTROLLER is not set | 790 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -802,6 +833,7 @@ CONFIG_VT_CONSOLE=y | |||
802 | CONFIG_HW_CONSOLE=y | 833 | CONFIG_HW_CONSOLE=y |
803 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 834 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
804 | # CONFIG_SERIAL_NONSTANDARD is not set | 835 | # CONFIG_SERIAL_NONSTANDARD is not set |
836 | # CONFIG_NOZOMI is not set | ||
805 | 837 | ||
806 | # | 838 | # |
807 | # Serial drivers | 839 | # Serial drivers |
@@ -872,14 +904,12 @@ CONFIG_I2C_MV64XXX=y | |||
872 | # | 904 | # |
873 | # Miscellaneous I2C Chip support | 905 | # Miscellaneous I2C Chip support |
874 | # | 906 | # |
875 | # CONFIG_SENSORS_DS1337 is not set | ||
876 | # CONFIG_SENSORS_DS1374 is not set | ||
877 | # CONFIG_DS1682 is not set | 907 | # CONFIG_DS1682 is not set |
878 | # CONFIG_SENSORS_EEPROM is not set | 908 | # CONFIG_SENSORS_EEPROM is not set |
879 | # CONFIG_SENSORS_PCF8574 is not set | 909 | # CONFIG_SENSORS_PCF8574 is not set |
880 | # CONFIG_SENSORS_PCA9539 is not set | 910 | # CONFIG_PCF8575 is not set |
881 | # CONFIG_SENSORS_PCF8591 is not set | 911 | # CONFIG_SENSORS_PCF8591 is not set |
882 | # CONFIG_SENSORS_M41T00 is not set | 912 | # CONFIG_TPS65010 is not set |
883 | # CONFIG_SENSORS_MAX6875 is not set | 913 | # CONFIG_SENSORS_MAX6875 is not set |
884 | # CONFIG_SENSORS_TSL2550 is not set | 914 | # CONFIG_SENSORS_TSL2550 is not set |
885 | # CONFIG_I2C_DEBUG_CORE is not set | 915 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -904,6 +934,7 @@ CONFIG_HWMON=y | |||
904 | # CONFIG_SENSORS_ADM1031 is not set | 934 | # CONFIG_SENSORS_ADM1031 is not set |
905 | # CONFIG_SENSORS_ADM9240 is not set | 935 | # CONFIG_SENSORS_ADM9240 is not set |
906 | # CONFIG_SENSORS_ADT7470 is not set | 936 | # CONFIG_SENSORS_ADT7470 is not set |
937 | # CONFIG_SENSORS_ADT7473 is not set | ||
907 | # CONFIG_SENSORS_ATXP1 is not set | 938 | # CONFIG_SENSORS_ATXP1 is not set |
908 | # CONFIG_SENSORS_DS1621 is not set | 939 | # CONFIG_SENSORS_DS1621 is not set |
909 | # CONFIG_SENSORS_I5K_AMB is not set | 940 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -933,6 +964,7 @@ CONFIG_HWMON=y | |||
933 | # CONFIG_SENSORS_SMSC47M1 is not set | 964 | # CONFIG_SENSORS_SMSC47M1 is not set |
934 | # CONFIG_SENSORS_SMSC47M192 is not set | 965 | # CONFIG_SENSORS_SMSC47M192 is not set |
935 | # CONFIG_SENSORS_SMSC47B397 is not set | 966 | # CONFIG_SENSORS_SMSC47B397 is not set |
967 | # CONFIG_SENSORS_ADS7828 is not set | ||
936 | # CONFIG_SENSORS_THMC50 is not set | 968 | # CONFIG_SENSORS_THMC50 is not set |
937 | # CONFIG_SENSORS_VIA686A is not set | 969 | # CONFIG_SENSORS_VIA686A is not set |
938 | # CONFIG_SENSORS_VT1211 is not set | 970 | # CONFIG_SENSORS_VT1211 is not set |
@@ -942,9 +974,11 @@ CONFIG_HWMON=y | |||
942 | # CONFIG_SENSORS_W83792D is not set | 974 | # CONFIG_SENSORS_W83792D is not set |
943 | # CONFIG_SENSORS_W83793 is not set | 975 | # CONFIG_SENSORS_W83793 is not set |
944 | # CONFIG_SENSORS_W83L785TS is not set | 976 | # CONFIG_SENSORS_W83L785TS is not set |
977 | # CONFIG_SENSORS_W83L786NG is not set | ||
945 | # CONFIG_SENSORS_W83627HF is not set | 978 | # CONFIG_SENSORS_W83627HF is not set |
946 | # CONFIG_SENSORS_W83627EHF is not set | 979 | # CONFIG_SENSORS_W83627EHF is not set |
947 | # CONFIG_HWMON_DEBUG_CHIP is not set | 980 | # CONFIG_HWMON_DEBUG_CHIP is not set |
981 | # CONFIG_THERMAL is not set | ||
948 | # CONFIG_WATCHDOG is not set | 982 | # CONFIG_WATCHDOG is not set |
949 | 983 | ||
950 | # | 984 | # |
@@ -1009,6 +1043,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
1009 | CONFIG_USB_ARCH_HAS_EHCI=y | 1043 | CONFIG_USB_ARCH_HAS_EHCI=y |
1010 | CONFIG_USB=y | 1044 | CONFIG_USB=y |
1011 | # CONFIG_USB_DEBUG is not set | 1045 | # CONFIG_USB_DEBUG is not set |
1046 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1012 | 1047 | ||
1013 | # | 1048 | # |
1014 | # Miscellaneous USB options | 1049 | # Miscellaneous USB options |
@@ -1022,9 +1057,9 @@ CONFIG_USB_DEVICEFS=y | |||
1022 | # USB Host Controller Drivers | 1057 | # USB Host Controller Drivers |
1023 | # | 1058 | # |
1024 | CONFIG_USB_EHCI_HCD=y | 1059 | CONFIG_USB_EHCI_HCD=y |
1025 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
1026 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1060 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1027 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1061 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1062 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1028 | # CONFIG_USB_ISP116X_HCD is not set | 1063 | # CONFIG_USB_ISP116X_HCD is not set |
1029 | CONFIG_USB_OHCI_HCD=y | 1064 | CONFIG_USB_OHCI_HCD=y |
1030 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set | 1065 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set |
@@ -1061,10 +1096,6 @@ CONFIG_USB_MON=y | |||
1061 | # | 1096 | # |
1062 | # USB port drivers | 1097 | # USB port drivers |
1063 | # | 1098 | # |
1064 | |||
1065 | # | ||
1066 | # USB Serial Converter support | ||
1067 | # | ||
1068 | # CONFIG_USB_SERIAL is not set | 1099 | # CONFIG_USB_SERIAL is not set |
1069 | 1100 | ||
1070 | # | 1101 | # |
@@ -1090,21 +1121,18 @@ CONFIG_USB_MON=y | |||
1090 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1121 | # CONFIG_USB_TRANCEVIBRATOR is not set |
1091 | # CONFIG_USB_IOWARRIOR is not set | 1122 | # CONFIG_USB_IOWARRIOR is not set |
1092 | # CONFIG_USB_TEST is not set | 1123 | # CONFIG_USB_TEST is not set |
1093 | |||
1094 | # | ||
1095 | # USB DSL modem support | ||
1096 | # | ||
1097 | |||
1098 | # | ||
1099 | # USB Gadget Support | ||
1100 | # | ||
1101 | # CONFIG_USB_GADGET is not set | 1124 | # CONFIG_USB_GADGET is not set |
1102 | # CONFIG_MMC is not set | 1125 | # CONFIG_MMC is not set |
1126 | # CONFIG_MEMSTICK is not set | ||
1103 | # CONFIG_NEW_LEDS is not set | 1127 | # CONFIG_NEW_LEDS is not set |
1104 | # CONFIG_INFINIBAND is not set | 1128 | # CONFIG_INFINIBAND is not set |
1105 | # CONFIG_EDAC is not set | 1129 | # CONFIG_EDAC is not set |
1106 | CONFIG_RTC_LIB=y | 1130 | CONFIG_RTC_LIB=y |
1107 | CONFIG_RTC_CLASS=y | 1131 | CONFIG_RTC_CLASS=y |
1132 | |||
1133 | # | ||
1134 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
1135 | # | ||
1108 | CONFIG_RTC_HCTOSYS=y | 1136 | CONFIG_RTC_HCTOSYS=y |
1109 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 1137 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
1110 | # CONFIG_RTC_DEBUG is not set | 1138 | # CONFIG_RTC_DEBUG is not set |
@@ -1131,6 +1159,7 @@ CONFIG_RTC_DRV_MAX6900=y | |||
1131 | # CONFIG_RTC_DRV_PCF8563 is not set | 1159 | # CONFIG_RTC_DRV_PCF8563 is not set |
1132 | # CONFIG_RTC_DRV_PCF8583 is not set | 1160 | # CONFIG_RTC_DRV_PCF8583 is not set |
1133 | # CONFIG_RTC_DRV_M41T80 is not set | 1161 | # CONFIG_RTC_DRV_M41T80 is not set |
1162 | # CONFIG_RTC_DRV_S35390A is not set | ||
1134 | 1163 | ||
1135 | # | 1164 | # |
1136 | # SPI RTC drivers | 1165 | # SPI RTC drivers |
@@ -1140,9 +1169,10 @@ CONFIG_RTC_DRV_MAX6900=y | |||
1140 | # Platform RTC drivers | 1169 | # Platform RTC drivers |
1141 | # | 1170 | # |
1142 | # CONFIG_RTC_DRV_CMOS is not set | 1171 | # CONFIG_RTC_DRV_CMOS is not set |
1172 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1143 | # CONFIG_RTC_DRV_DS1553 is not set | 1173 | # CONFIG_RTC_DRV_DS1553 is not set |
1144 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1145 | # CONFIG_RTC_DRV_DS1742 is not set | 1174 | # CONFIG_RTC_DRV_DS1742 is not set |
1175 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1146 | # CONFIG_RTC_DRV_M48T86 is not set | 1176 | # CONFIG_RTC_DRV_M48T86 is not set |
1147 | # CONFIG_RTC_DRV_M48T59 is not set | 1177 | # CONFIG_RTC_DRV_M48T59 is not set |
1148 | # CONFIG_RTC_DRV_V3020 is not set | 1178 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -1150,6 +1180,7 @@ CONFIG_RTC_DRV_MAX6900=y | |||
1150 | # | 1180 | # |
1151 | # on-CPU RTC drivers | 1181 | # on-CPU RTC drivers |
1152 | # | 1182 | # |
1183 | # CONFIG_DMADEVICES is not set | ||
1153 | 1184 | ||
1154 | # | 1185 | # |
1155 | # Userspace I/O | 1186 | # Userspace I/O |
@@ -1175,12 +1206,10 @@ CONFIG_FS_MBCACHE=y | |||
1175 | # CONFIG_XFS_FS is not set | 1206 | # CONFIG_XFS_FS is not set |
1176 | # CONFIG_GFS2_FS is not set | 1207 | # CONFIG_GFS2_FS is not set |
1177 | # CONFIG_OCFS2_FS is not set | 1208 | # CONFIG_OCFS2_FS is not set |
1178 | # CONFIG_MINIX_FS is not set | 1209 | CONFIG_DNOTIFY=y |
1179 | # CONFIG_ROMFS_FS is not set | ||
1180 | CONFIG_INOTIFY=y | 1210 | CONFIG_INOTIFY=y |
1181 | CONFIG_INOTIFY_USER=y | 1211 | CONFIG_INOTIFY_USER=y |
1182 | # CONFIG_QUOTA is not set | 1212 | # CONFIG_QUOTA is not set |
1183 | CONFIG_DNOTIFY=y | ||
1184 | # CONFIG_AUTOFS_FS is not set | 1213 | # CONFIG_AUTOFS_FS is not set |
1185 | # CONFIG_AUTOFS4_FS is not set | 1214 | # CONFIG_AUTOFS4_FS is not set |
1186 | # CONFIG_FUSE_FS is not set | 1215 | # CONFIG_FUSE_FS is not set |
@@ -1223,8 +1252,10 @@ CONFIG_TMPFS=y | |||
1223 | # CONFIG_JFFS2_FS is not set | 1252 | # CONFIG_JFFS2_FS is not set |
1224 | # CONFIG_CRAMFS is not set | 1253 | # CONFIG_CRAMFS is not set |
1225 | # CONFIG_VXFS_FS is not set | 1254 | # CONFIG_VXFS_FS is not set |
1255 | # CONFIG_MINIX_FS is not set | ||
1226 | # CONFIG_HPFS_FS is not set | 1256 | # CONFIG_HPFS_FS is not set |
1227 | # CONFIG_QNX4FS_FS is not set | 1257 | # CONFIG_QNX4FS_FS is not set |
1258 | # CONFIG_ROMFS_FS is not set | ||
1228 | # CONFIG_SYSV_FS is not set | 1259 | # CONFIG_SYSV_FS is not set |
1229 | # CONFIG_UFS_FS is not set | 1260 | # CONFIG_UFS_FS is not set |
1230 | CONFIG_NETWORK_FILESYSTEMS=y | 1261 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1269,7 +1300,6 @@ CONFIG_MSDOS_PARTITION=y | |||
1269 | # CONFIG_SYSV68_PARTITION is not set | 1300 | # CONFIG_SYSV68_PARTITION is not set |
1270 | # CONFIG_NLS is not set | 1301 | # CONFIG_NLS is not set |
1271 | # CONFIG_DLM is not set | 1302 | # CONFIG_DLM is not set |
1272 | # CONFIG_UCC_SLOW is not set | ||
1273 | 1303 | ||
1274 | # | 1304 | # |
1275 | # Library routines | 1305 | # Library routines |
@@ -1285,7 +1315,6 @@ CONFIG_PLIST=y | |||
1285 | CONFIG_HAS_IOMEM=y | 1315 | CONFIG_HAS_IOMEM=y |
1286 | CONFIG_HAS_IOPORT=y | 1316 | CONFIG_HAS_IOPORT=y |
1287 | CONFIG_HAS_DMA=y | 1317 | CONFIG_HAS_DMA=y |
1288 | # CONFIG_INSTRUMENTATION is not set | ||
1289 | 1318 | ||
1290 | # | 1319 | # |
1291 | # Kernel hacking | 1320 | # Kernel hacking |
@@ -1299,6 +1328,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1299 | # CONFIG_HEADERS_CHECK is not set | 1328 | # CONFIG_HEADERS_CHECK is not set |
1300 | # CONFIG_DEBUG_KERNEL is not set | 1329 | # CONFIG_DEBUG_KERNEL is not set |
1301 | # CONFIG_SLUB_DEBUG_ON is not set | 1330 | # CONFIG_SLUB_DEBUG_ON is not set |
1331 | # CONFIG_SLUB_STATS is not set | ||
1302 | CONFIG_DEBUG_BUGVERBOSE=y | 1332 | CONFIG_DEBUG_BUGVERBOSE=y |
1303 | # CONFIG_SAMPLES is not set | 1333 | # CONFIG_SAMPLES is not set |
1304 | # CONFIG_BOOTX_TEXT is not set | 1334 | # CONFIG_BOOTX_TEXT is not set |
@@ -1310,5 +1340,49 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1310 | # CONFIG_KEYS is not set | 1340 | # CONFIG_KEYS is not set |
1311 | # CONFIG_SECURITY is not set | 1341 | # CONFIG_SECURITY is not set |
1312 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1342 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1313 | # CONFIG_CRYPTO is not set | 1343 | CONFIG_CRYPTO=y |
1344 | # CONFIG_CRYPTO_SEQIV is not set | ||
1345 | # CONFIG_CRYPTO_MANAGER is not set | ||
1346 | # CONFIG_CRYPTO_HMAC is not set | ||
1347 | # CONFIG_CRYPTO_XCBC is not set | ||
1348 | # CONFIG_CRYPTO_NULL is not set | ||
1349 | # CONFIG_CRYPTO_MD4 is not set | ||
1350 | # CONFIG_CRYPTO_MD5 is not set | ||
1351 | # CONFIG_CRYPTO_SHA1 is not set | ||
1352 | # CONFIG_CRYPTO_SHA256 is not set | ||
1353 | # CONFIG_CRYPTO_SHA512 is not set | ||
1354 | # CONFIG_CRYPTO_WP512 is not set | ||
1355 | # CONFIG_CRYPTO_TGR192 is not set | ||
1356 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1357 | # CONFIG_CRYPTO_ECB is not set | ||
1358 | # CONFIG_CRYPTO_CBC is not set | ||
1359 | # CONFIG_CRYPTO_PCBC is not set | ||
1360 | # CONFIG_CRYPTO_LRW is not set | ||
1361 | # CONFIG_CRYPTO_XTS is not set | ||
1362 | # CONFIG_CRYPTO_CTR is not set | ||
1363 | # CONFIG_CRYPTO_GCM is not set | ||
1364 | # CONFIG_CRYPTO_CCM is not set | ||
1365 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1366 | # CONFIG_CRYPTO_DES is not set | ||
1367 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1368 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1369 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1370 | # CONFIG_CRYPTO_SERPENT is not set | ||
1371 | # CONFIG_CRYPTO_AES is not set | ||
1372 | # CONFIG_CRYPTO_CAST5 is not set | ||
1373 | # CONFIG_CRYPTO_CAST6 is not set | ||
1374 | # CONFIG_CRYPTO_TEA is not set | ||
1375 | # CONFIG_CRYPTO_ARC4 is not set | ||
1376 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1377 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1378 | # CONFIG_CRYPTO_SEED is not set | ||
1379 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1380 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1381 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1382 | # CONFIG_CRYPTO_CRC32C is not set | ||
1383 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1384 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1385 | # CONFIG_CRYPTO_LZO is not set | ||
1386 | CONFIG_CRYPTO_HW=y | ||
1387 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1314 | # CONFIG_PPC_CLOCK is not set | 1388 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/sbc834x_defconfig b/arch/powerpc/configs/sbc834x_defconfig index 9245bcc24724..1f1518229f6d 100644 --- a/arch/powerpc/configs/sbc834x_defconfig +++ b/arch/powerpc/configs/sbc834x_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Jan 24 15:54:27 2008 | 4 | # Mon Mar 24 08:48:38 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,8 +14,8 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_83xx=y | ||
18 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
18 | # CONFIG_FSL_EMB_PERFMON is not set | ||
19 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
20 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
21 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,17 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | CONFIG_FAIR_GROUP_SCHED=y | 75 | CONFIG_FAIR_GROUP_SCHED=y |
76 | CONFIG_FAIR_USER_SCHED=y | 76 | # CONFIG_RT_GROUP_SCHED is not set |
77 | # CONFIG_FAIR_CGROUP_SCHED is not set | 77 | CONFIG_USER_SCHED=y |
78 | # CONFIG_CGROUP_SCHED is not set | ||
78 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
79 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
80 | CONFIG_BLK_DEV_INITRD=y | 83 | CONFIG_BLK_DEV_INITRD=y |
81 | CONFIG_INITRAMFS_SOURCE="" | 84 | CONFIG_INITRAMFS_SOURCE="" |
82 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -88,17 +91,25 @@ CONFIG_HOTPLUG=y | |||
88 | CONFIG_PRINTK=y | 91 | CONFIG_PRINTK=y |
89 | CONFIG_BUG=y | 92 | CONFIG_BUG=y |
90 | CONFIG_ELF_CORE=y | 93 | CONFIG_ELF_CORE=y |
94 | CONFIG_COMPAT_BRK=y | ||
91 | CONFIG_BASE_FULL=y | 95 | CONFIG_BASE_FULL=y |
92 | CONFIG_FUTEX=y | 96 | CONFIG_FUTEX=y |
93 | CONFIG_ANON_INODES=y | 97 | CONFIG_ANON_INODES=y |
94 | # CONFIG_EPOLL is not set | 98 | # CONFIG_EPOLL is not set |
95 | CONFIG_SIGNALFD=y | 99 | CONFIG_SIGNALFD=y |
100 | CONFIG_TIMERFD=y | ||
96 | CONFIG_EVENTFD=y | 101 | CONFIG_EVENTFD=y |
97 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
98 | CONFIG_VM_EVENT_COUNTERS=y | 103 | CONFIG_VM_EVENT_COUNTERS=y |
99 | CONFIG_SLAB=y | 104 | CONFIG_SLAB=y |
100 | # CONFIG_SLUB is not set | 105 | # CONFIG_SLUB is not set |
101 | # CONFIG_SLOB is not set | 106 | # CONFIG_SLOB is not set |
107 | # CONFIG_PROFILING is not set | ||
108 | # CONFIG_MARKERS is not set | ||
109 | CONFIG_HAVE_OPROFILE=y | ||
110 | CONFIG_HAVE_KPROBES=y | ||
111 | CONFIG_HAVE_KRETPROBES=y | ||
112 | CONFIG_PROC_PAGE_MONITOR=y | ||
102 | CONFIG_SLABINFO=y | 113 | CONFIG_SLABINFO=y |
103 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
104 | # CONFIG_TINY_SHMEM is not set | 115 | # CONFIG_TINY_SHMEM is not set |
@@ -127,6 +138,7 @@ CONFIG_DEFAULT_AS=y | |||
127 | # CONFIG_DEFAULT_CFQ is not set | 138 | # CONFIG_DEFAULT_CFQ is not set |
128 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
129 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 140 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
141 | CONFIG_CLASSIC_RCU=y | ||
130 | 142 | ||
131 | # | 143 | # |
132 | # Platform support | 144 | # Platform support |
@@ -135,20 +147,22 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
135 | # CONFIG_PPC_82xx is not set | 147 | # CONFIG_PPC_82xx is not set |
136 | CONFIG_PPC_83xx=y | 148 | CONFIG_PPC_83xx=y |
137 | # CONFIG_PPC_86xx is not set | 149 | # CONFIG_PPC_86xx is not set |
138 | # CONFIG_PPC_MPC52xx is not set | 150 | # CONFIG_PPC_MPC512x is not set |
139 | # CONFIG_PPC_MPC5200 is not set | 151 | # CONFIG_PPC_MPC5121 is not set |
140 | # CONFIG_PPC_CELL is not set | 152 | # CONFIG_PPC_CELL is not set |
141 | # CONFIG_PPC_CELL_NATIVE is not set | 153 | # CONFIG_PPC_CELL_NATIVE is not set |
142 | # CONFIG_PQ2ADS is not set | 154 | # CONFIG_PQ2ADS is not set |
143 | # CONFIG_MPC8313_RDB is not set | 155 | CONFIG_MPC83xx=y |
156 | # CONFIG_MPC831x_RDB is not set | ||
144 | # CONFIG_MPC832x_MDS is not set | 157 | # CONFIG_MPC832x_MDS is not set |
145 | # CONFIG_MPC832x_RDB is not set | 158 | # CONFIG_MPC832x_RDB is not set |
146 | # CONFIG_MPC834x_MDS is not set | 159 | # CONFIG_MPC834x_MDS is not set |
147 | # CONFIG_MPC834x_ITX is not set | 160 | # CONFIG_MPC834x_ITX is not set |
148 | # CONFIG_MPC836x_MDS is not set | 161 | # CONFIG_MPC836x_MDS is not set |
149 | # CONFIG_MPC837x_MDS is not set | 162 | # CONFIG_MPC837x_MDS is not set |
163 | # CONFIG_MPC837x_RDB is not set | ||
150 | CONFIG_SBC834x=y | 164 | CONFIG_SBC834x=y |
151 | CONFIG_MPC834x=y | 165 | CONFIG_PPC_MPC834x=y |
152 | CONFIG_IPIC=y | 166 | CONFIG_IPIC=y |
153 | # CONFIG_MPIC is not set | 167 | # CONFIG_MPIC is not set |
154 | # CONFIG_MPIC_WEIRD is not set | 168 | # CONFIG_MPIC_WEIRD is not set |
@@ -175,12 +189,16 @@ CONFIG_HZ_250=y | |||
175 | # CONFIG_HZ_300 is not set | 189 | # CONFIG_HZ_300 is not set |
176 | # CONFIG_HZ_1000 is not set | 190 | # CONFIG_HZ_1000 is not set |
177 | CONFIG_HZ=250 | 191 | CONFIG_HZ=250 |
192 | # CONFIG_SCHED_HRTICK is not set | ||
178 | CONFIG_PREEMPT_NONE=y | 193 | CONFIG_PREEMPT_NONE=y |
179 | # CONFIG_PREEMPT_VOLUNTARY is not set | 194 | # CONFIG_PREEMPT_VOLUNTARY is not set |
180 | # CONFIG_PREEMPT is not set | 195 | # CONFIG_PREEMPT is not set |
181 | CONFIG_BINFMT_ELF=y | 196 | CONFIG_BINFMT_ELF=y |
182 | # CONFIG_BINFMT_MISC is not set | 197 | # CONFIG_BINFMT_MISC is not set |
198 | # CONFIG_IOMMU_HELPER is not set | ||
183 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 199 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
200 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
201 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
184 | CONFIG_ARCH_FLATMEM_ENABLE=y | 202 | CONFIG_ARCH_FLATMEM_ENABLE=y |
185 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 203 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
186 | CONFIG_SELECT_MEMORY_MODEL=y | 204 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -199,11 +217,7 @@ CONFIG_VIRT_TO_BUS=y | |||
199 | CONFIG_PROC_DEVICETREE=y | 217 | CONFIG_PROC_DEVICETREE=y |
200 | # CONFIG_CMDLINE_BOOL is not set | 218 | # CONFIG_CMDLINE_BOOL is not set |
201 | # CONFIG_PM is not set | 219 | # CONFIG_PM is not set |
202 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
203 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
204 | CONFIG_SECCOMP=y | 220 | CONFIG_SECCOMP=y |
205 | CONFIG_WANT_DEVICE_TREE=y | ||
206 | CONFIG_DEVICE_TREE="" | ||
207 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
208 | 222 | ||
209 | # | 223 | # |
@@ -248,6 +262,7 @@ CONFIG_XFRM=y | |||
248 | CONFIG_XFRM_USER=m | 262 | CONFIG_XFRM_USER=m |
249 | # CONFIG_XFRM_SUB_POLICY is not set | 263 | # CONFIG_XFRM_SUB_POLICY is not set |
250 | # CONFIG_XFRM_MIGRATE is not set | 264 | # CONFIG_XFRM_MIGRATE is not set |
265 | # CONFIG_XFRM_STATISTICS is not set | ||
251 | # CONFIG_NET_KEY is not set | 266 | # CONFIG_NET_KEY is not set |
252 | CONFIG_INET=y | 267 | CONFIG_INET=y |
253 | CONFIG_IP_MULTICAST=y | 268 | CONFIG_IP_MULTICAST=y |
@@ -303,6 +318,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
303 | # | 318 | # |
304 | # CONFIG_NET_PKTGEN is not set | 319 | # CONFIG_NET_PKTGEN is not set |
305 | # CONFIG_HAMRADIO is not set | 320 | # CONFIG_HAMRADIO is not set |
321 | # CONFIG_CAN is not set | ||
306 | # CONFIG_IRDA is not set | 322 | # CONFIG_IRDA is not set |
307 | # CONFIG_BT is not set | 323 | # CONFIG_BT is not set |
308 | # CONFIG_AF_RXRPC is not set | 324 | # CONFIG_AF_RXRPC is not set |
@@ -342,11 +358,13 @@ CONFIG_BLK_DEV_LOOP=y | |||
342 | CONFIG_BLK_DEV_RAM=y | 358 | CONFIG_BLK_DEV_RAM=y |
343 | CONFIG_BLK_DEV_RAM_COUNT=16 | 359 | CONFIG_BLK_DEV_RAM_COUNT=16 |
344 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 360 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
345 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 361 | # CONFIG_BLK_DEV_XIP is not set |
346 | # CONFIG_CDROM_PKTCDVD is not set | 362 | # CONFIG_CDROM_PKTCDVD is not set |
347 | # CONFIG_ATA_OVER_ETH is not set | 363 | # CONFIG_ATA_OVER_ETH is not set |
348 | CONFIG_MISC_DEVICES=y | 364 | CONFIG_MISC_DEVICES=y |
349 | # CONFIG_EEPROM_93CX6 is not set | 365 | # CONFIG_EEPROM_93CX6 is not set |
366 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
367 | CONFIG_HAVE_IDE=y | ||
350 | # CONFIG_IDE is not set | 368 | # CONFIG_IDE is not set |
351 | 369 | ||
352 | # | 370 | # |
@@ -381,6 +399,7 @@ CONFIG_PHYLIB=y | |||
381 | # CONFIG_SMSC_PHY is not set | 399 | # CONFIG_SMSC_PHY is not set |
382 | CONFIG_BROADCOM_PHY=y | 400 | CONFIG_BROADCOM_PHY=y |
383 | # CONFIG_ICPLUS_PHY is not set | 401 | # CONFIG_ICPLUS_PHY is not set |
402 | # CONFIG_REALTEK_PHY is not set | ||
384 | # CONFIG_FIXED_PHY is not set | 403 | # CONFIG_FIXED_PHY is not set |
385 | # CONFIG_MDIO_BITBANG is not set | 404 | # CONFIG_MDIO_BITBANG is not set |
386 | CONFIG_NET_ETHERNET=y | 405 | CONFIG_NET_ETHERNET=y |
@@ -391,6 +410,7 @@ CONFIG_MII=y | |||
391 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 410 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
392 | # CONFIG_B44 is not set | 411 | # CONFIG_B44 is not set |
393 | CONFIG_NETDEV_1000=y | 412 | CONFIG_NETDEV_1000=y |
413 | # CONFIG_E1000E_ENABLED is not set | ||
394 | CONFIG_GIANFAR=y | 414 | CONFIG_GIANFAR=y |
395 | # CONFIG_GFAR_NAPI is not set | 415 | # CONFIG_GFAR_NAPI is not set |
396 | # CONFIG_NETDEV_10000 is not set | 416 | # CONFIG_NETDEV_10000 is not set |
@@ -403,7 +423,6 @@ CONFIG_GIANFAR=y | |||
403 | # CONFIG_WAN is not set | 423 | # CONFIG_WAN is not set |
404 | # CONFIG_PPP is not set | 424 | # CONFIG_PPP is not set |
405 | # CONFIG_SLIP is not set | 425 | # CONFIG_SLIP is not set |
406 | # CONFIG_SHAPER is not set | ||
407 | # CONFIG_NETCONSOLE is not set | 426 | # CONFIG_NETCONSOLE is not set |
408 | # CONFIG_NETPOLL is not set | 427 | # CONFIG_NETPOLL is not set |
409 | # CONFIG_NET_POLL_CONTROLLER is not set | 428 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -498,14 +517,12 @@ CONFIG_I2C_MPC=y | |||
498 | # | 517 | # |
499 | # Miscellaneous I2C Chip support | 518 | # Miscellaneous I2C Chip support |
500 | # | 519 | # |
501 | # CONFIG_SENSORS_DS1337 is not set | ||
502 | # CONFIG_SENSORS_DS1374 is not set | ||
503 | # CONFIG_DS1682 is not set | 520 | # CONFIG_DS1682 is not set |
504 | # CONFIG_SENSORS_EEPROM is not set | 521 | # CONFIG_SENSORS_EEPROM is not set |
505 | # CONFIG_SENSORS_PCF8574 is not set | 522 | # CONFIG_SENSORS_PCF8574 is not set |
506 | # CONFIG_SENSORS_PCA9539 is not set | 523 | # CONFIG_PCF8575 is not set |
507 | # CONFIG_SENSORS_PCF8591 is not set | 524 | # CONFIG_SENSORS_PCF8591 is not set |
508 | # CONFIG_SENSORS_M41T00 is not set | 525 | # CONFIG_TPS65010 is not set |
509 | # CONFIG_SENSORS_MAX6875 is not set | 526 | # CONFIG_SENSORS_MAX6875 is not set |
510 | # CONFIG_SENSORS_TSL2550 is not set | 527 | # CONFIG_SENSORS_TSL2550 is not set |
511 | # CONFIG_I2C_DEBUG_CORE is not set | 528 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -530,6 +547,7 @@ CONFIG_HWMON=y | |||
530 | # CONFIG_SENSORS_ADM1031 is not set | 547 | # CONFIG_SENSORS_ADM1031 is not set |
531 | # CONFIG_SENSORS_ADM9240 is not set | 548 | # CONFIG_SENSORS_ADM9240 is not set |
532 | # CONFIG_SENSORS_ADT7470 is not set | 549 | # CONFIG_SENSORS_ADT7470 is not set |
550 | # CONFIG_SENSORS_ADT7473 is not set | ||
533 | # CONFIG_SENSORS_ATXP1 is not set | 551 | # CONFIG_SENSORS_ATXP1 is not set |
534 | # CONFIG_SENSORS_DS1621 is not set | 552 | # CONFIG_SENSORS_DS1621 is not set |
535 | # CONFIG_SENSORS_F71805F is not set | 553 | # CONFIG_SENSORS_F71805F is not set |
@@ -557,6 +575,7 @@ CONFIG_HWMON=y | |||
557 | # CONFIG_SENSORS_SMSC47M1 is not set | 575 | # CONFIG_SENSORS_SMSC47M1 is not set |
558 | # CONFIG_SENSORS_SMSC47M192 is not set | 576 | # CONFIG_SENSORS_SMSC47M192 is not set |
559 | # CONFIG_SENSORS_SMSC47B397 is not set | 577 | # CONFIG_SENSORS_SMSC47B397 is not set |
578 | # CONFIG_SENSORS_ADS7828 is not set | ||
560 | # CONFIG_SENSORS_THMC50 is not set | 579 | # CONFIG_SENSORS_THMC50 is not set |
561 | # CONFIG_SENSORS_VT1211 is not set | 580 | # CONFIG_SENSORS_VT1211 is not set |
562 | # CONFIG_SENSORS_W83781D is not set | 581 | # CONFIG_SENSORS_W83781D is not set |
@@ -564,9 +583,11 @@ CONFIG_HWMON=y | |||
564 | # CONFIG_SENSORS_W83792D is not set | 583 | # CONFIG_SENSORS_W83792D is not set |
565 | # CONFIG_SENSORS_W83793 is not set | 584 | # CONFIG_SENSORS_W83793 is not set |
566 | # CONFIG_SENSORS_W83L785TS is not set | 585 | # CONFIG_SENSORS_W83L785TS is not set |
586 | # CONFIG_SENSORS_W83L786NG is not set | ||
567 | # CONFIG_SENSORS_W83627HF is not set | 587 | # CONFIG_SENSORS_W83627HF is not set |
568 | # CONFIG_SENSORS_W83627EHF is not set | 588 | # CONFIG_SENSORS_W83627EHF is not set |
569 | # CONFIG_HWMON_DEBUG_CHIP is not set | 589 | # CONFIG_HWMON_DEBUG_CHIP is not set |
590 | # CONFIG_THERMAL is not set | ||
570 | CONFIG_WATCHDOG=y | 591 | CONFIG_WATCHDOG=y |
571 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 592 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
572 | 593 | ||
@@ -617,9 +638,11 @@ CONFIG_HID=y | |||
617 | # CONFIG_HIDRAW is not set | 638 | # CONFIG_HIDRAW is not set |
618 | # CONFIG_USB_SUPPORT is not set | 639 | # CONFIG_USB_SUPPORT is not set |
619 | # CONFIG_MMC is not set | 640 | # CONFIG_MMC is not set |
641 | # CONFIG_MEMSTICK is not set | ||
620 | # CONFIG_NEW_LEDS is not set | 642 | # CONFIG_NEW_LEDS is not set |
621 | # CONFIG_EDAC is not set | 643 | # CONFIG_EDAC is not set |
622 | # CONFIG_RTC_CLASS is not set | 644 | # CONFIG_RTC_CLASS is not set |
645 | # CONFIG_DMADEVICES is not set | ||
623 | 646 | ||
624 | # | 647 | # |
625 | # Userspace I/O | 648 | # Userspace I/O |
@@ -638,12 +661,10 @@ CONFIG_HID=y | |||
638 | # CONFIG_XFS_FS is not set | 661 | # CONFIG_XFS_FS is not set |
639 | # CONFIG_GFS2_FS is not set | 662 | # CONFIG_GFS2_FS is not set |
640 | # CONFIG_OCFS2_FS is not set | 663 | # CONFIG_OCFS2_FS is not set |
641 | # CONFIG_MINIX_FS is not set | 664 | CONFIG_DNOTIFY=y |
642 | # CONFIG_ROMFS_FS is not set | ||
643 | CONFIG_INOTIFY=y | 665 | CONFIG_INOTIFY=y |
644 | CONFIG_INOTIFY_USER=y | 666 | CONFIG_INOTIFY_USER=y |
645 | # CONFIG_QUOTA is not set | 667 | # CONFIG_QUOTA is not set |
646 | CONFIG_DNOTIFY=y | ||
647 | # CONFIG_AUTOFS_FS is not set | 668 | # CONFIG_AUTOFS_FS is not set |
648 | # CONFIG_AUTOFS4_FS is not set | 669 | # CONFIG_AUTOFS4_FS is not set |
649 | # CONFIG_FUSE_FS is not set | 670 | # CONFIG_FUSE_FS is not set |
@@ -685,8 +706,10 @@ CONFIG_TMPFS=y | |||
685 | # CONFIG_EFS_FS is not set | 706 | # CONFIG_EFS_FS is not set |
686 | # CONFIG_CRAMFS is not set | 707 | # CONFIG_CRAMFS is not set |
687 | # CONFIG_VXFS_FS is not set | 708 | # CONFIG_VXFS_FS is not set |
709 | # CONFIG_MINIX_FS is not set | ||
688 | # CONFIG_HPFS_FS is not set | 710 | # CONFIG_HPFS_FS is not set |
689 | # CONFIG_QNX4FS_FS is not set | 711 | # CONFIG_QNX4FS_FS is not set |
712 | # CONFIG_ROMFS_FS is not set | ||
690 | # CONFIG_SYSV_FS is not set | 713 | # CONFIG_SYSV_FS is not set |
691 | # CONFIG_UFS_FS is not set | 714 | # CONFIG_UFS_FS is not set |
692 | CONFIG_NETWORK_FILESYSTEMS=y | 715 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -733,7 +756,6 @@ CONFIG_PLIST=y | |||
733 | CONFIG_HAS_IOMEM=y | 756 | CONFIG_HAS_IOMEM=y |
734 | CONFIG_HAS_IOPORT=y | 757 | CONFIG_HAS_IOPORT=y |
735 | CONFIG_HAS_DMA=y | 758 | CONFIG_HAS_DMA=y |
736 | # CONFIG_INSTRUMENTATION is not set | ||
737 | 759 | ||
738 | # | 760 | # |
739 | # Kernel hacking | 761 | # Kernel hacking |
@@ -759,6 +781,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
759 | CONFIG_CRYPTO=y | 781 | CONFIG_CRYPTO=y |
760 | CONFIG_CRYPTO_ALGAPI=y | 782 | CONFIG_CRYPTO_ALGAPI=y |
761 | CONFIG_CRYPTO_BLKCIPHER=y | 783 | CONFIG_CRYPTO_BLKCIPHER=y |
784 | # CONFIG_CRYPTO_SEQIV is not set | ||
762 | CONFIG_CRYPTO_MANAGER=y | 785 | CONFIG_CRYPTO_MANAGER=y |
763 | # CONFIG_CRYPTO_HMAC is not set | 786 | # CONFIG_CRYPTO_HMAC is not set |
764 | # CONFIG_CRYPTO_XCBC is not set | 787 | # CONFIG_CRYPTO_XCBC is not set |
@@ -776,6 +799,9 @@ CONFIG_CRYPTO_CBC=y | |||
776 | CONFIG_CRYPTO_PCBC=m | 799 | CONFIG_CRYPTO_PCBC=m |
777 | # CONFIG_CRYPTO_LRW is not set | 800 | # CONFIG_CRYPTO_LRW is not set |
778 | # CONFIG_CRYPTO_XTS is not set | 801 | # CONFIG_CRYPTO_XTS is not set |
802 | # CONFIG_CRYPTO_CTR is not set | ||
803 | # CONFIG_CRYPTO_GCM is not set | ||
804 | # CONFIG_CRYPTO_CCM is not set | ||
779 | # CONFIG_CRYPTO_CRYPTD is not set | 805 | # CONFIG_CRYPTO_CRYPTD is not set |
780 | CONFIG_CRYPTO_DES=y | 806 | CONFIG_CRYPTO_DES=y |
781 | # CONFIG_CRYPTO_FCRYPT is not set | 807 | # CONFIG_CRYPTO_FCRYPT is not set |
@@ -790,11 +816,13 @@ CONFIG_CRYPTO_DES=y | |||
790 | # CONFIG_CRYPTO_KHAZAD is not set | 816 | # CONFIG_CRYPTO_KHAZAD is not set |
791 | # CONFIG_CRYPTO_ANUBIS is not set | 817 | # CONFIG_CRYPTO_ANUBIS is not set |
792 | # CONFIG_CRYPTO_SEED is not set | 818 | # CONFIG_CRYPTO_SEED is not set |
819 | # CONFIG_CRYPTO_SALSA20 is not set | ||
793 | # CONFIG_CRYPTO_DEFLATE is not set | 820 | # CONFIG_CRYPTO_DEFLATE is not set |
794 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 821 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
795 | # CONFIG_CRYPTO_CRC32C is not set | 822 | # CONFIG_CRYPTO_CRC32C is not set |
796 | # CONFIG_CRYPTO_CAMELLIA is not set | 823 | # CONFIG_CRYPTO_CAMELLIA is not set |
797 | # CONFIG_CRYPTO_TEST is not set | 824 | # CONFIG_CRYPTO_TEST is not set |
798 | # CONFIG_CRYPTO_AUTHENC is not set | 825 | # CONFIG_CRYPTO_AUTHENC is not set |
826 | # CONFIG_CRYPTO_LZO is not set | ||
799 | # CONFIG_CRYPTO_HW is not set | 827 | # CONFIG_CRYPTO_HW is not set |
800 | # CONFIG_PPC_CLOCK is not set | 828 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/sbc8548_defconfig b/arch/powerpc/configs/sbc8548_defconfig index 3b7fa53a2475..67f67978c742 100644 --- a/arch/powerpc/configs/sbc8548_defconfig +++ b/arch/powerpc/configs/sbc8548_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Jan 24 15:19:12 2008 | 4 | # Mon Mar 24 08:48:39 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
80 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -90,17 +93,25 @@ CONFIG_HOTPLUG=y | |||
90 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
91 | CONFIG_BUG=y | 94 | CONFIG_BUG=y |
92 | CONFIG_ELF_CORE=y | 95 | CONFIG_ELF_CORE=y |
96 | CONFIG_COMPAT_BRK=y | ||
93 | CONFIG_BASE_FULL=y | 97 | CONFIG_BASE_FULL=y |
94 | CONFIG_FUTEX=y | 98 | CONFIG_FUTEX=y |
95 | CONFIG_ANON_INODES=y | 99 | CONFIG_ANON_INODES=y |
96 | CONFIG_EPOLL=y | 100 | CONFIG_EPOLL=y |
97 | CONFIG_SIGNALFD=y | 101 | CONFIG_SIGNALFD=y |
102 | CONFIG_TIMERFD=y | ||
98 | CONFIG_EVENTFD=y | 103 | CONFIG_EVENTFD=y |
99 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
100 | CONFIG_VM_EVENT_COUNTERS=y | 105 | CONFIG_VM_EVENT_COUNTERS=y |
101 | CONFIG_SLAB=y | 106 | CONFIG_SLAB=y |
102 | # CONFIG_SLUB is not set | 107 | # CONFIG_SLUB is not set |
103 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | ||
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
104 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
105 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
106 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
@@ -124,24 +135,29 @@ CONFIG_DEFAULT_AS=y | |||
124 | # CONFIG_DEFAULT_CFQ is not set | 135 | # CONFIG_DEFAULT_CFQ is not set |
125 | # CONFIG_DEFAULT_NOOP is not set | 136 | # CONFIG_DEFAULT_NOOP is not set |
126 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 137 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
138 | CONFIG_CLASSIC_RCU=y | ||
127 | 139 | ||
128 | # | 140 | # |
129 | # Platform support | 141 | # Platform support |
130 | # | 142 | # |
131 | # CONFIG_PPC_MPC52xx is not set | 143 | # CONFIG_PPC_MPC512x is not set |
132 | # CONFIG_PPC_MPC5200 is not set | 144 | # CONFIG_PPC_MPC5121 is not set |
133 | # CONFIG_PPC_CELL is not set | 145 | # CONFIG_PPC_CELL is not set |
134 | # CONFIG_PPC_CELL_NATIVE is not set | 146 | # CONFIG_PPC_CELL_NATIVE is not set |
135 | # CONFIG_PQ2ADS is not set | 147 | # CONFIG_PQ2ADS is not set |
148 | CONFIG_MPC85xx=y | ||
136 | # CONFIG_MPC8540_ADS is not set | 149 | # CONFIG_MPC8540_ADS is not set |
137 | # CONFIG_MPC8560_ADS is not set | 150 | # CONFIG_MPC8560_ADS is not set |
138 | # CONFIG_MPC85xx_CDS is not set | 151 | # CONFIG_MPC85xx_CDS is not set |
139 | # CONFIG_MPC85xx_MDS is not set | 152 | # CONFIG_MPC85xx_MDS is not set |
140 | # CONFIG_MPC85xx_DS is not set | 153 | # CONFIG_MPC85xx_DS is not set |
154 | # CONFIG_STX_GP3 is not set | ||
155 | # CONFIG_TQM8540 is not set | ||
156 | # CONFIG_TQM8541 is not set | ||
157 | # CONFIG_TQM8555 is not set | ||
158 | # CONFIG_TQM8560 is not set | ||
141 | CONFIG_SBC8548=y | 159 | CONFIG_SBC8548=y |
142 | # CONFIG_SBC8560 is not set | 160 | # CONFIG_SBC8560 is not set |
143 | CONFIG_MPC8540=y | ||
144 | CONFIG_MPC85xx=y | ||
145 | # CONFIG_IPIC is not set | 161 | # CONFIG_IPIC is not set |
146 | CONFIG_MPIC=y | 162 | CONFIG_MPIC=y |
147 | # CONFIG_MPIC_WEIRD is not set | 163 | # CONFIG_MPIC_WEIRD is not set |
@@ -153,6 +169,7 @@ CONFIG_MPIC=y | |||
153 | # CONFIG_PPC_INDIRECT_IO is not set | 169 | # CONFIG_PPC_INDIRECT_IO is not set |
154 | # CONFIG_GENERIC_IOMAP is not set | 170 | # CONFIG_GENERIC_IOMAP is not set |
155 | # CONFIG_CPU_FREQ is not set | 171 | # CONFIG_CPU_FREQ is not set |
172 | # CONFIG_CPM2 is not set | ||
156 | # CONFIG_FSL_ULI1575 is not set | 173 | # CONFIG_FSL_ULI1575 is not set |
157 | 174 | ||
158 | # | 175 | # |
@@ -168,13 +185,17 @@ CONFIG_HZ_250=y | |||
168 | # CONFIG_HZ_300 is not set | 185 | # CONFIG_HZ_300 is not set |
169 | # CONFIG_HZ_1000 is not set | 186 | # CONFIG_HZ_1000 is not set |
170 | CONFIG_HZ=250 | 187 | CONFIG_HZ=250 |
188 | # CONFIG_SCHED_HRTICK is not set | ||
171 | CONFIG_PREEMPT_NONE=y | 189 | CONFIG_PREEMPT_NONE=y |
172 | # CONFIG_PREEMPT_VOLUNTARY is not set | 190 | # CONFIG_PREEMPT_VOLUNTARY is not set |
173 | # CONFIG_PREEMPT is not set | 191 | # CONFIG_PREEMPT is not set |
174 | CONFIG_BINFMT_ELF=y | 192 | CONFIG_BINFMT_ELF=y |
175 | CONFIG_BINFMT_MISC=y | 193 | CONFIG_BINFMT_MISC=y |
176 | CONFIG_MATH_EMULATION=y | 194 | CONFIG_MATH_EMULATION=y |
195 | # CONFIG_IOMMU_HELPER is not set | ||
177 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 196 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
197 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
198 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
178 | CONFIG_ARCH_FLATMEM_ENABLE=y | 199 | CONFIG_ARCH_FLATMEM_ENABLE=y |
179 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 200 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
180 | CONFIG_SELECT_MEMORY_MODEL=y | 201 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -193,11 +214,7 @@ CONFIG_VIRT_TO_BUS=y | |||
193 | CONFIG_PROC_DEVICETREE=y | 214 | CONFIG_PROC_DEVICETREE=y |
194 | # CONFIG_CMDLINE_BOOL is not set | 215 | # CONFIG_CMDLINE_BOOL is not set |
195 | # CONFIG_PM is not set | 216 | # CONFIG_PM is not set |
196 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
197 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
198 | # CONFIG_SECCOMP is not set | 217 | # CONFIG_SECCOMP is not set |
199 | CONFIG_WANT_DEVICE_TREE=y | ||
200 | CONFIG_DEVICE_TREE="" | ||
201 | CONFIG_ISA_DMA_API=y | 218 | CONFIG_ISA_DMA_API=y |
202 | 219 | ||
203 | # | 220 | # |
@@ -246,6 +263,7 @@ CONFIG_XFRM=y | |||
246 | CONFIG_XFRM_USER=y | 263 | CONFIG_XFRM_USER=y |
247 | # CONFIG_XFRM_SUB_POLICY is not set | 264 | # CONFIG_XFRM_SUB_POLICY is not set |
248 | # CONFIG_XFRM_MIGRATE is not set | 265 | # CONFIG_XFRM_MIGRATE is not set |
266 | # CONFIG_XFRM_STATISTICS is not set | ||
249 | # CONFIG_NET_KEY is not set | 267 | # CONFIG_NET_KEY is not set |
250 | CONFIG_INET=y | 268 | CONFIG_INET=y |
251 | CONFIG_IP_MULTICAST=y | 269 | CONFIG_IP_MULTICAST=y |
@@ -301,6 +319,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
301 | # | 319 | # |
302 | # CONFIG_NET_PKTGEN is not set | 320 | # CONFIG_NET_PKTGEN is not set |
303 | # CONFIG_HAMRADIO is not set | 321 | # CONFIG_HAMRADIO is not set |
322 | # CONFIG_CAN is not set | ||
304 | # CONFIG_IRDA is not set | 323 | # CONFIG_IRDA is not set |
305 | # CONFIG_BT is not set | 324 | # CONFIG_BT is not set |
306 | # CONFIG_AF_RXRPC is not set | 325 | # CONFIG_AF_RXRPC is not set |
@@ -345,7 +364,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
345 | CONFIG_BLK_DEV_RAM=y | 364 | CONFIG_BLK_DEV_RAM=y |
346 | CONFIG_BLK_DEV_RAM_COUNT=16 | 365 | CONFIG_BLK_DEV_RAM_COUNT=16 |
347 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 366 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
348 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 367 | # CONFIG_BLK_DEV_XIP is not set |
349 | # CONFIG_CDROM_PKTCDVD is not set | 368 | # CONFIG_CDROM_PKTCDVD is not set |
350 | # CONFIG_ATA_OVER_ETH is not set | 369 | # CONFIG_ATA_OVER_ETH is not set |
351 | CONFIG_MISC_DEVICES=y | 370 | CONFIG_MISC_DEVICES=y |
@@ -353,6 +372,8 @@ CONFIG_MISC_DEVICES=y | |||
353 | # CONFIG_EEPROM_93CX6 is not set | 372 | # CONFIG_EEPROM_93CX6 is not set |
354 | # CONFIG_SGI_IOC4 is not set | 373 | # CONFIG_SGI_IOC4 is not set |
355 | # CONFIG_TIFM_CORE is not set | 374 | # CONFIG_TIFM_CORE is not set |
375 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
376 | CONFIG_HAVE_IDE=y | ||
356 | # CONFIG_IDE is not set | 377 | # CONFIG_IDE is not set |
357 | 378 | ||
358 | # | 379 | # |
@@ -396,6 +417,7 @@ CONFIG_PHYLIB=y | |||
396 | # CONFIG_SMSC_PHY is not set | 417 | # CONFIG_SMSC_PHY is not set |
397 | CONFIG_BROADCOM_PHY=y | 418 | CONFIG_BROADCOM_PHY=y |
398 | # CONFIG_ICPLUS_PHY is not set | 419 | # CONFIG_ICPLUS_PHY is not set |
420 | # CONFIG_REALTEK_PHY is not set | ||
399 | # CONFIG_FIXED_PHY is not set | 421 | # CONFIG_FIXED_PHY is not set |
400 | # CONFIG_MDIO_BITBANG is not set | 422 | # CONFIG_MDIO_BITBANG is not set |
401 | CONFIG_NET_ETHERNET=y | 423 | CONFIG_NET_ETHERNET=y |
@@ -417,7 +439,9 @@ CONFIG_NETDEV_1000=y | |||
417 | # CONFIG_DL2K is not set | 439 | # CONFIG_DL2K is not set |
418 | # CONFIG_E1000 is not set | 440 | # CONFIG_E1000 is not set |
419 | # CONFIG_E1000E is not set | 441 | # CONFIG_E1000E is not set |
442 | # CONFIG_E1000E_ENABLED is not set | ||
420 | # CONFIG_IP1000 is not set | 443 | # CONFIG_IP1000 is not set |
444 | # CONFIG_IGB is not set | ||
421 | # CONFIG_NS83820 is not set | 445 | # CONFIG_NS83820 is not set |
422 | # CONFIG_HAMACHI is not set | 446 | # CONFIG_HAMACHI is not set |
423 | # CONFIG_YELLOWFIN is not set | 447 | # CONFIG_YELLOWFIN is not set |
@@ -444,6 +468,7 @@ CONFIG_NETDEV_10000=y | |||
444 | # CONFIG_NIU is not set | 468 | # CONFIG_NIU is not set |
445 | # CONFIG_MLX4_CORE is not set | 469 | # CONFIG_MLX4_CORE is not set |
446 | # CONFIG_TEHUTI is not set | 470 | # CONFIG_TEHUTI is not set |
471 | # CONFIG_BNX2X is not set | ||
447 | # CONFIG_TR is not set | 472 | # CONFIG_TR is not set |
448 | 473 | ||
449 | # | 474 | # |
@@ -456,7 +481,6 @@ CONFIG_NETDEV_10000=y | |||
456 | # CONFIG_HIPPI is not set | 481 | # CONFIG_HIPPI is not set |
457 | # CONFIG_PPP is not set | 482 | # CONFIG_PPP is not set |
458 | # CONFIG_SLIP is not set | 483 | # CONFIG_SLIP is not set |
459 | # CONFIG_SHAPER is not set | ||
460 | # CONFIG_NETCONSOLE is not set | 484 | # CONFIG_NETCONSOLE is not set |
461 | # CONFIG_NETPOLL is not set | 485 | # CONFIG_NETPOLL is not set |
462 | # CONFIG_NET_POLL_CONTROLLER is not set | 486 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -499,6 +523,7 @@ CONFIG_INPUT=y | |||
499 | # | 523 | # |
500 | # CONFIG_VT is not set | 524 | # CONFIG_VT is not set |
501 | # CONFIG_SERIAL_NONSTANDARD is not set | 525 | # CONFIG_SERIAL_NONSTANDARD is not set |
526 | # CONFIG_NOZOMI is not set | ||
502 | 527 | ||
503 | # | 528 | # |
504 | # Serial drivers | 529 | # Serial drivers |
@@ -558,6 +583,7 @@ CONFIG_HWMON=y | |||
558 | # CONFIG_SENSORS_W83627HF is not set | 583 | # CONFIG_SENSORS_W83627HF is not set |
559 | # CONFIG_SENSORS_W83627EHF is not set | 584 | # CONFIG_SENSORS_W83627EHF is not set |
560 | # CONFIG_HWMON_DEBUG_CHIP is not set | 585 | # CONFIG_HWMON_DEBUG_CHIP is not set |
586 | # CONFIG_THERMAL is not set | ||
561 | # CONFIG_WATCHDOG is not set | 587 | # CONFIG_WATCHDOG is not set |
562 | 588 | ||
563 | # | 589 | # |
@@ -600,10 +626,12 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
600 | # CONFIG_HID_SUPPORT is not set | 626 | # CONFIG_HID_SUPPORT is not set |
601 | # CONFIG_USB_SUPPORT is not set | 627 | # CONFIG_USB_SUPPORT is not set |
602 | # CONFIG_MMC is not set | 628 | # CONFIG_MMC is not set |
629 | # CONFIG_MEMSTICK is not set | ||
603 | # CONFIG_NEW_LEDS is not set | 630 | # CONFIG_NEW_LEDS is not set |
604 | # CONFIG_INFINIBAND is not set | 631 | # CONFIG_INFINIBAND is not set |
605 | # CONFIG_EDAC is not set | 632 | # CONFIG_EDAC is not set |
606 | # CONFIG_RTC_CLASS is not set | 633 | # CONFIG_RTC_CLASS is not set |
634 | # CONFIG_DMADEVICES is not set | ||
607 | 635 | ||
608 | # | 636 | # |
609 | # Userspace I/O | 637 | # Userspace I/O |
@@ -622,12 +650,10 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
622 | # CONFIG_XFS_FS is not set | 650 | # CONFIG_XFS_FS is not set |
623 | # CONFIG_GFS2_FS is not set | 651 | # CONFIG_GFS2_FS is not set |
624 | # CONFIG_OCFS2_FS is not set | 652 | # CONFIG_OCFS2_FS is not set |
625 | # CONFIG_MINIX_FS is not set | 653 | CONFIG_DNOTIFY=y |
626 | # CONFIG_ROMFS_FS is not set | ||
627 | CONFIG_INOTIFY=y | 654 | CONFIG_INOTIFY=y |
628 | CONFIG_INOTIFY_USER=y | 655 | CONFIG_INOTIFY_USER=y |
629 | # CONFIG_QUOTA is not set | 656 | # CONFIG_QUOTA is not set |
630 | CONFIG_DNOTIFY=y | ||
631 | # CONFIG_AUTOFS_FS is not set | 657 | # CONFIG_AUTOFS_FS is not set |
632 | # CONFIG_AUTOFS4_FS is not set | 658 | # CONFIG_AUTOFS4_FS is not set |
633 | # CONFIG_FUSE_FS is not set | 659 | # CONFIG_FUSE_FS is not set |
@@ -669,8 +695,10 @@ CONFIG_TMPFS=y | |||
669 | # CONFIG_EFS_FS is not set | 695 | # CONFIG_EFS_FS is not set |
670 | # CONFIG_CRAMFS is not set | 696 | # CONFIG_CRAMFS is not set |
671 | # CONFIG_VXFS_FS is not set | 697 | # CONFIG_VXFS_FS is not set |
698 | # CONFIG_MINIX_FS is not set | ||
672 | # CONFIG_HPFS_FS is not set | 699 | # CONFIG_HPFS_FS is not set |
673 | # CONFIG_QNX4FS_FS is not set | 700 | # CONFIG_QNX4FS_FS is not set |
701 | # CONFIG_ROMFS_FS is not set | ||
674 | # CONFIG_SYSV_FS is not set | 702 | # CONFIG_SYSV_FS is not set |
675 | # CONFIG_UFS_FS is not set | 703 | # CONFIG_UFS_FS is not set |
676 | CONFIG_NETWORK_FILESYSTEMS=y | 704 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -714,7 +742,6 @@ CONFIG_PLIST=y | |||
714 | CONFIG_HAS_IOMEM=y | 742 | CONFIG_HAS_IOMEM=y |
715 | CONFIG_HAS_IOPORT=y | 743 | CONFIG_HAS_IOPORT=y |
716 | CONFIG_HAS_DMA=y | 744 | CONFIG_HAS_DMA=y |
717 | # CONFIG_INSTRUMENTATION is not set | ||
718 | 745 | ||
719 | # | 746 | # |
720 | # Kernel hacking | 747 | # Kernel hacking |
@@ -737,5 +764,49 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
737 | # CONFIG_KEYS is not set | 764 | # CONFIG_KEYS is not set |
738 | # CONFIG_SECURITY is not set | 765 | # CONFIG_SECURITY is not set |
739 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 766 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
740 | # CONFIG_CRYPTO is not set | 767 | CONFIG_CRYPTO=y |
768 | # CONFIG_CRYPTO_SEQIV is not set | ||
769 | # CONFIG_CRYPTO_MANAGER is not set | ||
770 | # CONFIG_CRYPTO_HMAC is not set | ||
771 | # CONFIG_CRYPTO_XCBC is not set | ||
772 | # CONFIG_CRYPTO_NULL is not set | ||
773 | # CONFIG_CRYPTO_MD4 is not set | ||
774 | # CONFIG_CRYPTO_MD5 is not set | ||
775 | # CONFIG_CRYPTO_SHA1 is not set | ||
776 | # CONFIG_CRYPTO_SHA256 is not set | ||
777 | # CONFIG_CRYPTO_SHA512 is not set | ||
778 | # CONFIG_CRYPTO_WP512 is not set | ||
779 | # CONFIG_CRYPTO_TGR192 is not set | ||
780 | # CONFIG_CRYPTO_GF128MUL is not set | ||
781 | # CONFIG_CRYPTO_ECB is not set | ||
782 | # CONFIG_CRYPTO_CBC is not set | ||
783 | # CONFIG_CRYPTO_PCBC is not set | ||
784 | # CONFIG_CRYPTO_LRW is not set | ||
785 | # CONFIG_CRYPTO_XTS is not set | ||
786 | # CONFIG_CRYPTO_CTR is not set | ||
787 | # CONFIG_CRYPTO_GCM is not set | ||
788 | # CONFIG_CRYPTO_CCM is not set | ||
789 | # CONFIG_CRYPTO_CRYPTD is not set | ||
790 | # CONFIG_CRYPTO_DES is not set | ||
791 | # CONFIG_CRYPTO_FCRYPT is not set | ||
792 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
793 | # CONFIG_CRYPTO_TWOFISH is not set | ||
794 | # CONFIG_CRYPTO_SERPENT is not set | ||
795 | # CONFIG_CRYPTO_AES is not set | ||
796 | # CONFIG_CRYPTO_CAST5 is not set | ||
797 | # CONFIG_CRYPTO_CAST6 is not set | ||
798 | # CONFIG_CRYPTO_TEA is not set | ||
799 | # CONFIG_CRYPTO_ARC4 is not set | ||
800 | # CONFIG_CRYPTO_KHAZAD is not set | ||
801 | # CONFIG_CRYPTO_ANUBIS is not set | ||
802 | # CONFIG_CRYPTO_SEED is not set | ||
803 | # CONFIG_CRYPTO_SALSA20 is not set | ||
804 | # CONFIG_CRYPTO_DEFLATE is not set | ||
805 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
806 | # CONFIG_CRYPTO_CRC32C is not set | ||
807 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
808 | # CONFIG_CRYPTO_AUTHENC is not set | ||
809 | # CONFIG_CRYPTO_LZO is not set | ||
810 | CONFIG_CRYPTO_HW=y | ||
811 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
741 | # CONFIG_PPC_CLOCK is not set | 812 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/sbc8560_defconfig b/arch/powerpc/configs/sbc8560_defconfig index d89fce0d3ba1..fef605579e29 100644 --- a/arch/powerpc/configs/sbc8560_defconfig +++ b/arch/powerpc/configs/sbc8560_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Wed Jan 23 14:59:20 2008 | 4 | # Mon Mar 24 08:48:39 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
80 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -91,17 +94,26 @@ CONFIG_HOTPLUG=y | |||
91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
92 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
93 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
97 | CONFIG_COMPAT_BRK=y | ||
94 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
95 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
96 | CONFIG_ANON_INODES=y | 100 | CONFIG_ANON_INODES=y |
97 | CONFIG_EPOLL=y | 101 | CONFIG_EPOLL=y |
98 | CONFIG_SIGNALFD=y | 102 | CONFIG_SIGNALFD=y |
103 | CONFIG_TIMERFD=y | ||
99 | CONFIG_EVENTFD=y | 104 | CONFIG_EVENTFD=y |
100 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
101 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
102 | CONFIG_SLAB=y | 107 | CONFIG_SLAB=y |
103 | # CONFIG_SLUB is not set | 108 | # CONFIG_SLUB is not set |
104 | # CONFIG_SLOB is not set | 109 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | ||
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | ||
113 | CONFIG_HAVE_KPROBES=y | ||
114 | CONFIG_HAVE_KRETPROBES=y | ||
115 | CONFIG_PROC_PAGE_MONITOR=y | ||
116 | CONFIG_SLABINFO=y | ||
105 | CONFIG_RT_MUTEXES=y | 117 | CONFIG_RT_MUTEXES=y |
106 | # CONFIG_TINY_SHMEM is not set | 118 | # CONFIG_TINY_SHMEM is not set |
107 | CONFIG_BASE_SMALL=0 | 119 | CONFIG_BASE_SMALL=0 |
@@ -124,23 +136,30 @@ CONFIG_DEFAULT_AS=y | |||
124 | # CONFIG_DEFAULT_CFQ is not set | 136 | # CONFIG_DEFAULT_CFQ is not set |
125 | # CONFIG_DEFAULT_NOOP is not set | 137 | # CONFIG_DEFAULT_NOOP is not set |
126 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 138 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
139 | CONFIG_CLASSIC_RCU=y | ||
127 | 140 | ||
128 | # | 141 | # |
129 | # Platform support | 142 | # Platform support |
130 | # | 143 | # |
131 | # CONFIG_PPC_MPC52xx is not set | 144 | # CONFIG_PPC_MPC512x is not set |
132 | # CONFIG_PPC_MPC5200 is not set | 145 | # CONFIG_PPC_MPC5121 is not set |
133 | # CONFIG_PPC_CELL is not set | 146 | # CONFIG_PPC_CELL is not set |
134 | # CONFIG_PPC_CELL_NATIVE is not set | 147 | # CONFIG_PPC_CELL_NATIVE is not set |
135 | # CONFIG_PQ2ADS is not set | 148 | # CONFIG_PQ2ADS is not set |
149 | CONFIG_MPC85xx=y | ||
136 | # CONFIG_MPC8540_ADS is not set | 150 | # CONFIG_MPC8540_ADS is not set |
137 | # CONFIG_MPC8560_ADS is not set | 151 | # CONFIG_MPC8560_ADS is not set |
138 | # CONFIG_MPC85xx_CDS is not set | 152 | # CONFIG_MPC85xx_CDS is not set |
139 | # CONFIG_MPC85xx_MDS is not set | 153 | # CONFIG_MPC85xx_MDS is not set |
140 | # CONFIG_MPC85xx_DS is not set | 154 | # CONFIG_MPC85xx_DS is not set |
155 | # CONFIG_STX_GP3 is not set | ||
156 | # CONFIG_TQM8540 is not set | ||
157 | # CONFIG_TQM8541 is not set | ||
158 | # CONFIG_TQM8555 is not set | ||
159 | # CONFIG_TQM8560 is not set | ||
160 | # CONFIG_SBC8548 is not set | ||
141 | CONFIG_SBC8560=y | 161 | CONFIG_SBC8560=y |
142 | CONFIG_MPC8560=y | 162 | # CONFIG_IPIC is not set |
143 | CONFIG_MPC85xx=y | ||
144 | CONFIG_MPIC=y | 163 | CONFIG_MPIC=y |
145 | # CONFIG_MPIC_WEIRD is not set | 164 | # CONFIG_MPIC_WEIRD is not set |
146 | # CONFIG_PPC_I8259 is not set | 165 | # CONFIG_PPC_I8259 is not set |
@@ -167,13 +186,17 @@ CONFIG_HZ_250=y | |||
167 | # CONFIG_HZ_300 is not set | 186 | # CONFIG_HZ_300 is not set |
168 | # CONFIG_HZ_1000 is not set | 187 | # CONFIG_HZ_1000 is not set |
169 | CONFIG_HZ=250 | 188 | CONFIG_HZ=250 |
189 | # CONFIG_SCHED_HRTICK is not set | ||
170 | CONFIG_PREEMPT_NONE=y | 190 | CONFIG_PREEMPT_NONE=y |
171 | # CONFIG_PREEMPT_VOLUNTARY is not set | 191 | # CONFIG_PREEMPT_VOLUNTARY is not set |
172 | # CONFIG_PREEMPT is not set | 192 | # CONFIG_PREEMPT is not set |
173 | CONFIG_BINFMT_ELF=y | 193 | CONFIG_BINFMT_ELF=y |
174 | CONFIG_BINFMT_MISC=y | 194 | CONFIG_BINFMT_MISC=y |
175 | # CONFIG_MATH_EMULATION is not set | 195 | # CONFIG_MATH_EMULATION is not set |
196 | # CONFIG_IOMMU_HELPER is not set | ||
176 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 197 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
198 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
199 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
177 | CONFIG_ARCH_FLATMEM_ENABLE=y | 200 | CONFIG_ARCH_FLATMEM_ENABLE=y |
178 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 201 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
179 | CONFIG_SELECT_MEMORY_MODEL=y | 202 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -192,11 +215,7 @@ CONFIG_VIRT_TO_BUS=y | |||
192 | CONFIG_PROC_DEVICETREE=y | 215 | CONFIG_PROC_DEVICETREE=y |
193 | # CONFIG_CMDLINE_BOOL is not set | 216 | # CONFIG_CMDLINE_BOOL is not set |
194 | # CONFIG_PM is not set | 217 | # CONFIG_PM is not set |
195 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
196 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
197 | # CONFIG_SECCOMP is not set | 218 | # CONFIG_SECCOMP is not set |
198 | CONFIG_WANT_DEVICE_TREE=y | ||
199 | CONFIG_DEVICE_TREE="" | ||
200 | CONFIG_ISA_DMA_API=y | 219 | CONFIG_ISA_DMA_API=y |
201 | 220 | ||
202 | # | 221 | # |
@@ -239,6 +258,7 @@ CONFIG_XFRM=y | |||
239 | CONFIG_XFRM_USER=y | 258 | CONFIG_XFRM_USER=y |
240 | # CONFIG_XFRM_SUB_POLICY is not set | 259 | # CONFIG_XFRM_SUB_POLICY is not set |
241 | # CONFIG_XFRM_MIGRATE is not set | 260 | # CONFIG_XFRM_MIGRATE is not set |
261 | # CONFIG_XFRM_STATISTICS is not set | ||
242 | # CONFIG_NET_KEY is not set | 262 | # CONFIG_NET_KEY is not set |
243 | CONFIG_INET=y | 263 | CONFIG_INET=y |
244 | CONFIG_IP_MULTICAST=y | 264 | CONFIG_IP_MULTICAST=y |
@@ -294,6 +314,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
294 | # | 314 | # |
295 | # CONFIG_NET_PKTGEN is not set | 315 | # CONFIG_NET_PKTGEN is not set |
296 | # CONFIG_HAMRADIO is not set | 316 | # CONFIG_HAMRADIO is not set |
317 | # CONFIG_CAN is not set | ||
297 | # CONFIG_IRDA is not set | 318 | # CONFIG_IRDA is not set |
298 | # CONFIG_BT is not set | 319 | # CONFIG_BT is not set |
299 | # CONFIG_AF_RXRPC is not set | 320 | # CONFIG_AF_RXRPC is not set |
@@ -335,11 +356,13 @@ CONFIG_BLK_DEV_LOOP=y | |||
335 | CONFIG_BLK_DEV_RAM=y | 356 | CONFIG_BLK_DEV_RAM=y |
336 | CONFIG_BLK_DEV_RAM_COUNT=16 | 357 | CONFIG_BLK_DEV_RAM_COUNT=16 |
337 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 358 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
338 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 359 | # CONFIG_BLK_DEV_XIP is not set |
339 | # CONFIG_CDROM_PKTCDVD is not set | 360 | # CONFIG_CDROM_PKTCDVD is not set |
340 | # CONFIG_ATA_OVER_ETH is not set | 361 | # CONFIG_ATA_OVER_ETH is not set |
341 | CONFIG_MISC_DEVICES=y | 362 | CONFIG_MISC_DEVICES=y |
342 | # CONFIG_EEPROM_93CX6 is not set | 363 | # CONFIG_EEPROM_93CX6 is not set |
364 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
365 | CONFIG_HAVE_IDE=y | ||
343 | # CONFIG_IDE is not set | 366 | # CONFIG_IDE is not set |
344 | 367 | ||
345 | # | 368 | # |
@@ -374,6 +397,7 @@ CONFIG_PHYLIB=y | |||
374 | # CONFIG_SMSC_PHY is not set | 397 | # CONFIG_SMSC_PHY is not set |
375 | CONFIG_BROADCOM_PHY=y | 398 | CONFIG_BROADCOM_PHY=y |
376 | # CONFIG_ICPLUS_PHY is not set | 399 | # CONFIG_ICPLUS_PHY is not set |
400 | # CONFIG_REALTEK_PHY is not set | ||
377 | # CONFIG_FIXED_PHY is not set | 401 | # CONFIG_FIXED_PHY is not set |
378 | # CONFIG_MDIO_BITBANG is not set | 402 | # CONFIG_MDIO_BITBANG is not set |
379 | CONFIG_NET_ETHERNET=y | 403 | CONFIG_NET_ETHERNET=y |
@@ -384,6 +408,7 @@ CONFIG_MII=y | |||
384 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 408 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
385 | # CONFIG_B44 is not set | 409 | # CONFIG_B44 is not set |
386 | CONFIG_NETDEV_1000=y | 410 | CONFIG_NETDEV_1000=y |
411 | # CONFIG_E1000E_ENABLED is not set | ||
387 | CONFIG_GIANFAR=y | 412 | CONFIG_GIANFAR=y |
388 | CONFIG_GFAR_NAPI=y | 413 | CONFIG_GFAR_NAPI=y |
389 | CONFIG_NETDEV_10000=y | 414 | CONFIG_NETDEV_10000=y |
@@ -396,7 +421,6 @@ CONFIG_NETDEV_10000=y | |||
396 | # CONFIG_WAN is not set | 421 | # CONFIG_WAN is not set |
397 | # CONFIG_PPP is not set | 422 | # CONFIG_PPP is not set |
398 | # CONFIG_SLIP is not set | 423 | # CONFIG_SLIP is not set |
399 | # CONFIG_SHAPER is not set | ||
400 | # CONFIG_NETCONSOLE is not set | 424 | # CONFIG_NETCONSOLE is not set |
401 | # CONFIG_NETPOLL is not set | 425 | # CONFIG_NETPOLL is not set |
402 | # CONFIG_NET_POLL_CONTROLLER is not set | 426 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -489,6 +513,7 @@ CONFIG_HWMON=y | |||
489 | # CONFIG_SENSORS_W83627HF is not set | 513 | # CONFIG_SENSORS_W83627HF is not set |
490 | # CONFIG_SENSORS_W83627EHF is not set | 514 | # CONFIG_SENSORS_W83627EHF is not set |
491 | # CONFIG_HWMON_DEBUG_CHIP is not set | 515 | # CONFIG_HWMON_DEBUG_CHIP is not set |
516 | # CONFIG_THERMAL is not set | ||
492 | # CONFIG_WATCHDOG is not set | 517 | # CONFIG_WATCHDOG is not set |
493 | 518 | ||
494 | # | 519 | # |
@@ -538,12 +563,9 @@ CONFIG_USB_SUPPORT=y | |||
538 | # | 563 | # |
539 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 564 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
540 | # | 565 | # |
541 | |||
542 | # | ||
543 | # USB Gadget Support | ||
544 | # | ||
545 | # CONFIG_USB_GADGET is not set | 566 | # CONFIG_USB_GADGET is not set |
546 | # CONFIG_MMC is not set | 567 | # CONFIG_MMC is not set |
568 | # CONFIG_MEMSTICK is not set | ||
547 | # CONFIG_NEW_LEDS is not set | 569 | # CONFIG_NEW_LEDS is not set |
548 | # CONFIG_EDAC is not set | 570 | # CONFIG_EDAC is not set |
549 | CONFIG_RTC_LIB=y | 571 | CONFIG_RTC_LIB=y |
@@ -569,9 +591,10 @@ CONFIG_RTC_INTF_DEV=y | |||
569 | # Platform RTC drivers | 591 | # Platform RTC drivers |
570 | # | 592 | # |
571 | # CONFIG_RTC_DRV_CMOS is not set | 593 | # CONFIG_RTC_DRV_CMOS is not set |
594 | # CONFIG_RTC_DRV_DS1511 is not set | ||
572 | # CONFIG_RTC_DRV_DS1553 is not set | 595 | # CONFIG_RTC_DRV_DS1553 is not set |
573 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
574 | # CONFIG_RTC_DRV_DS1742 is not set | 596 | # CONFIG_RTC_DRV_DS1742 is not set |
597 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
575 | # CONFIG_RTC_DRV_M48T86 is not set | 598 | # CONFIG_RTC_DRV_M48T86 is not set |
576 | CONFIG_RTC_DRV_M48T59=y | 599 | CONFIG_RTC_DRV_M48T59=y |
577 | # CONFIG_RTC_DRV_V3020 is not set | 600 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -579,6 +602,7 @@ CONFIG_RTC_DRV_M48T59=y | |||
579 | # | 602 | # |
580 | # on-CPU RTC drivers | 603 | # on-CPU RTC drivers |
581 | # | 604 | # |
605 | # CONFIG_DMADEVICES is not set | ||
582 | 606 | ||
583 | # | 607 | # |
584 | # Userspace I/O | 608 | # Userspace I/O |
@@ -597,12 +621,10 @@ CONFIG_RTC_DRV_M48T59=y | |||
597 | # CONFIG_XFS_FS is not set | 621 | # CONFIG_XFS_FS is not set |
598 | # CONFIG_GFS2_FS is not set | 622 | # CONFIG_GFS2_FS is not set |
599 | # CONFIG_OCFS2_FS is not set | 623 | # CONFIG_OCFS2_FS is not set |
600 | # CONFIG_MINIX_FS is not set | 624 | CONFIG_DNOTIFY=y |
601 | # CONFIG_ROMFS_FS is not set | ||
602 | CONFIG_INOTIFY=y | 625 | CONFIG_INOTIFY=y |
603 | CONFIG_INOTIFY_USER=y | 626 | CONFIG_INOTIFY_USER=y |
604 | # CONFIG_QUOTA is not set | 627 | # CONFIG_QUOTA is not set |
605 | CONFIG_DNOTIFY=y | ||
606 | # CONFIG_AUTOFS_FS is not set | 628 | # CONFIG_AUTOFS_FS is not set |
607 | # CONFIG_AUTOFS4_FS is not set | 629 | # CONFIG_AUTOFS4_FS is not set |
608 | # CONFIG_FUSE_FS is not set | 630 | # CONFIG_FUSE_FS is not set |
@@ -644,8 +666,10 @@ CONFIG_TMPFS=y | |||
644 | # CONFIG_EFS_FS is not set | 666 | # CONFIG_EFS_FS is not set |
645 | # CONFIG_CRAMFS is not set | 667 | # CONFIG_CRAMFS is not set |
646 | # CONFIG_VXFS_FS is not set | 668 | # CONFIG_VXFS_FS is not set |
669 | # CONFIG_MINIX_FS is not set | ||
647 | # CONFIG_HPFS_FS is not set | 670 | # CONFIG_HPFS_FS is not set |
648 | # CONFIG_QNX4FS_FS is not set | 671 | # CONFIG_QNX4FS_FS is not set |
672 | # CONFIG_ROMFS_FS is not set | ||
649 | # CONFIG_SYSV_FS is not set | 673 | # CONFIG_SYSV_FS is not set |
650 | # CONFIG_UFS_FS is not set | 674 | # CONFIG_UFS_FS is not set |
651 | CONFIG_NETWORK_FILESYSTEMS=y | 675 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -686,7 +710,6 @@ CONFIG_PARTITION_ADVANCED=y | |||
686 | # CONFIG_SYSV68_PARTITION is not set | 710 | # CONFIG_SYSV68_PARTITION is not set |
687 | # CONFIG_NLS is not set | 711 | # CONFIG_NLS is not set |
688 | # CONFIG_DLM is not set | 712 | # CONFIG_DLM is not set |
689 | # CONFIG_UCC_SLOW is not set | ||
690 | 713 | ||
691 | # | 714 | # |
692 | # Library routines | 715 | # Library routines |
@@ -702,7 +725,6 @@ CONFIG_PLIST=y | |||
702 | CONFIG_HAS_IOMEM=y | 725 | CONFIG_HAS_IOMEM=y |
703 | CONFIG_HAS_IOPORT=y | 726 | CONFIG_HAS_IOPORT=y |
704 | CONFIG_HAS_DMA=y | 727 | CONFIG_HAS_DMA=y |
705 | # CONFIG_INSTRUMENTATION is not set | ||
706 | 728 | ||
707 | # | 729 | # |
708 | # Kernel hacking | 730 | # Kernel hacking |
@@ -733,8 +755,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
733 | # CONFIG_DEBUG_VM is not set | 755 | # CONFIG_DEBUG_VM is not set |
734 | # CONFIG_DEBUG_LIST is not set | 756 | # CONFIG_DEBUG_LIST is not set |
735 | # CONFIG_DEBUG_SG is not set | 757 | # CONFIG_DEBUG_SG is not set |
736 | CONFIG_FORCED_INLINING=y | ||
737 | # CONFIG_BOOT_PRINTK_DELAY is not set | 758 | # CONFIG_BOOT_PRINTK_DELAY is not set |
759 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
738 | # CONFIG_FAULT_INJECTION is not set | 760 | # CONFIG_FAULT_INJECTION is not set |
739 | # CONFIG_SAMPLES is not set | 761 | # CONFIG_SAMPLES is not set |
740 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 762 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -752,6 +774,7 @@ CONFIG_PPC_EARLY_DEBUG=y | |||
752 | # CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set | 774 | # CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set |
753 | # CONFIG_PPC_EARLY_DEBUG_BEAT is not set | 775 | # CONFIG_PPC_EARLY_DEBUG_BEAT is not set |
754 | # CONFIG_PPC_EARLY_DEBUG_44x is not set | 776 | # CONFIG_PPC_EARLY_DEBUG_44x is not set |
777 | # CONFIG_PPC_EARLY_DEBUG_40x is not set | ||
755 | # CONFIG_PPC_EARLY_DEBUG_CPM is not set | 778 | # CONFIG_PPC_EARLY_DEBUG_CPM is not set |
756 | 779 | ||
757 | # | 780 | # |
@@ -760,5 +783,48 @@ CONFIG_PPC_EARLY_DEBUG=y | |||
760 | # CONFIG_KEYS is not set | 783 | # CONFIG_KEYS is not set |
761 | # CONFIG_SECURITY is not set | 784 | # CONFIG_SECURITY is not set |
762 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 785 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
763 | # CONFIG_CRYPTO is not set | 786 | CONFIG_CRYPTO=y |
787 | # CONFIG_CRYPTO_SEQIV is not set | ||
788 | # CONFIG_CRYPTO_MANAGER is not set | ||
789 | # CONFIG_CRYPTO_HMAC is not set | ||
790 | # CONFIG_CRYPTO_XCBC is not set | ||
791 | # CONFIG_CRYPTO_NULL is not set | ||
792 | # CONFIG_CRYPTO_MD4 is not set | ||
793 | # CONFIG_CRYPTO_MD5 is not set | ||
794 | # CONFIG_CRYPTO_SHA1 is not set | ||
795 | # CONFIG_CRYPTO_SHA256 is not set | ||
796 | # CONFIG_CRYPTO_SHA512 is not set | ||
797 | # CONFIG_CRYPTO_WP512 is not set | ||
798 | # CONFIG_CRYPTO_TGR192 is not set | ||
799 | # CONFIG_CRYPTO_GF128MUL is not set | ||
800 | # CONFIG_CRYPTO_ECB is not set | ||
801 | # CONFIG_CRYPTO_CBC is not set | ||
802 | # CONFIG_CRYPTO_PCBC is not set | ||
803 | # CONFIG_CRYPTO_LRW is not set | ||
804 | # CONFIG_CRYPTO_XTS is not set | ||
805 | # CONFIG_CRYPTO_CTR is not set | ||
806 | # CONFIG_CRYPTO_GCM is not set | ||
807 | # CONFIG_CRYPTO_CCM is not set | ||
808 | # CONFIG_CRYPTO_CRYPTD is not set | ||
809 | # CONFIG_CRYPTO_DES is not set | ||
810 | # CONFIG_CRYPTO_FCRYPT is not set | ||
811 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
812 | # CONFIG_CRYPTO_TWOFISH is not set | ||
813 | # CONFIG_CRYPTO_SERPENT is not set | ||
814 | # CONFIG_CRYPTO_AES is not set | ||
815 | # CONFIG_CRYPTO_CAST5 is not set | ||
816 | # CONFIG_CRYPTO_CAST6 is not set | ||
817 | # CONFIG_CRYPTO_TEA is not set | ||
818 | # CONFIG_CRYPTO_ARC4 is not set | ||
819 | # CONFIG_CRYPTO_KHAZAD is not set | ||
820 | # CONFIG_CRYPTO_ANUBIS is not set | ||
821 | # CONFIG_CRYPTO_SEED is not set | ||
822 | # CONFIG_CRYPTO_SALSA20 is not set | ||
823 | # CONFIG_CRYPTO_DEFLATE is not set | ||
824 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
825 | # CONFIG_CRYPTO_CRC32C is not set | ||
826 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
827 | # CONFIG_CRYPTO_AUTHENC is not set | ||
828 | # CONFIG_CRYPTO_LZO is not set | ||
829 | CONFIG_CRYPTO_HW=y | ||
764 | # CONFIG_PPC_CLOCK is not set | 830 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/storcenter_defconfig b/arch/powerpc/configs/storcenter_defconfig index a034a5e452ef..8fc85747a0a7 100644 --- a/arch/powerpc/configs/storcenter_defconfig +++ b/arch/powerpc/configs/storcenter_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc6 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Tue Jan 8 09:33:54 2008 | 4 | # Mon Mar 24 08:48:41 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -29,6 +29,7 @@ CONFIG_GENERIC_TIME=y | |||
29 | CONFIG_GENERIC_TIME_VSYSCALL=y | 29 | CONFIG_GENERIC_TIME_VSYSCALL=y |
30 | CONFIG_GENERIC_CLOCKEVENTS=y | 30 | CONFIG_GENERIC_CLOCKEVENTS=y |
31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -66,17 +67,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
66 | # CONFIG_POSIX_MQUEUE is not set | 67 | # CONFIG_POSIX_MQUEUE is not set |
67 | # CONFIG_BSD_PROCESS_ACCT is not set | 68 | # CONFIG_BSD_PROCESS_ACCT is not set |
68 | # CONFIG_TASKSTATS is not set | 69 | # CONFIG_TASKSTATS is not set |
69 | # CONFIG_USER_NS is not set | ||
70 | # CONFIG_PID_NS is not set | ||
71 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | 73 | # CONFIG_CGROUPS is not set |
74 | CONFIG_GROUP_SCHED=y | ||
75 | CONFIG_FAIR_GROUP_SCHED=y | 75 | CONFIG_FAIR_GROUP_SCHED=y |
76 | CONFIG_FAIR_USER_SCHED=y | 76 | # CONFIG_RT_GROUP_SCHED is not set |
77 | # CONFIG_FAIR_CGROUP_SCHED is not set | 77 | CONFIG_USER_SCHED=y |
78 | # CONFIG_CGROUP_SCHED is not set | ||
78 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
79 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
82 | # CONFIG_NAMESPACES is not set | ||
80 | # CONFIG_BLK_DEV_INITRD is not set | 83 | # CONFIG_BLK_DEV_INITRD is not set |
81 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 84 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
82 | CONFIG_SYSCTL=y | 85 | CONFIG_SYSCTL=y |
@@ -87,11 +90,13 @@ CONFIG_HOTPLUG=y | |||
87 | CONFIG_PRINTK=y | 90 | CONFIG_PRINTK=y |
88 | CONFIG_BUG=y | 91 | CONFIG_BUG=y |
89 | CONFIG_ELF_CORE=y | 92 | CONFIG_ELF_CORE=y |
93 | CONFIG_COMPAT_BRK=y | ||
90 | CONFIG_BASE_FULL=y | 94 | CONFIG_BASE_FULL=y |
91 | CONFIG_FUTEX=y | 95 | CONFIG_FUTEX=y |
92 | CONFIG_ANON_INODES=y | 96 | CONFIG_ANON_INODES=y |
93 | CONFIG_EPOLL=y | 97 | CONFIG_EPOLL=y |
94 | CONFIG_SIGNALFD=y | 98 | CONFIG_SIGNALFD=y |
99 | CONFIG_TIMERFD=y | ||
95 | CONFIG_EVENTFD=y | 100 | CONFIG_EVENTFD=y |
96 | CONFIG_SHMEM=y | 101 | CONFIG_SHMEM=y |
97 | CONFIG_VM_EVENT_COUNTERS=y | 102 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -99,6 +104,13 @@ CONFIG_SLUB_DEBUG=y | |||
99 | # CONFIG_SLAB is not set | 104 | # CONFIG_SLAB is not set |
100 | CONFIG_SLUB=y | 105 | CONFIG_SLUB=y |
101 | # CONFIG_SLOB is not set | 106 | # CONFIG_SLOB is not set |
107 | # CONFIG_PROFILING is not set | ||
108 | # CONFIG_MARKERS is not set | ||
109 | CONFIG_HAVE_OPROFILE=y | ||
110 | CONFIG_HAVE_KPROBES=y | ||
111 | CONFIG_HAVE_KRETPROBES=y | ||
112 | CONFIG_PROC_PAGE_MONITOR=y | ||
113 | CONFIG_SLABINFO=y | ||
102 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
103 | # CONFIG_TINY_SHMEM is not set | 115 | # CONFIG_TINY_SHMEM is not set |
104 | CONFIG_BASE_SMALL=0 | 116 | CONFIG_BASE_SMALL=0 |
@@ -126,6 +138,7 @@ CONFIG_IOSCHED_CFQ=y | |||
126 | CONFIG_DEFAULT_CFQ=y | 138 | CONFIG_DEFAULT_CFQ=y |
127 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
128 | CONFIG_DEFAULT_IOSCHED="cfq" | 140 | CONFIG_DEFAULT_IOSCHED="cfq" |
141 | CONFIG_CLASSIC_RCU=y | ||
129 | 142 | ||
130 | # | 143 | # |
131 | # Platform support | 144 | # Platform support |
@@ -136,10 +149,10 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
136 | # CONFIG_PPC_86xx is not set | 149 | # CONFIG_PPC_86xx is not set |
137 | CONFIG_CLASSIC32=y | 150 | CONFIG_CLASSIC32=y |
138 | # CONFIG_PPC_CHRP is not set | 151 | # CONFIG_PPC_CHRP is not set |
152 | # CONFIG_PPC_MPC512x is not set | ||
153 | # CONFIG_PPC_MPC5121 is not set | ||
154 | # CONFIG_MPC5121_ADS is not set | ||
139 | # CONFIG_PPC_MPC52xx is not set | 155 | # CONFIG_PPC_MPC52xx is not set |
140 | # CONFIG_PPC_MPC5200 is not set | ||
141 | # CONFIG_PPC_EFIKA is not set | ||
142 | # CONFIG_PPC_LITE5200 is not set | ||
143 | # CONFIG_PPC_PMAC is not set | 156 | # CONFIG_PPC_PMAC is not set |
144 | # CONFIG_PPC_CELL is not set | 157 | # CONFIG_PPC_CELL is not set |
145 | # CONFIG_PPC_CELL_NATIVE is not set | 158 | # CONFIG_PPC_CELL_NATIVE is not set |
@@ -153,6 +166,7 @@ CONFIG_STORCENTER=y | |||
153 | CONFIG_MPC10X_BRIDGE=y | 166 | CONFIG_MPC10X_BRIDGE=y |
154 | CONFIG_MPC10X_OPENPIC=y | 167 | CONFIG_MPC10X_OPENPIC=y |
155 | # CONFIG_MPC10X_STORE_GATHERING is not set | 168 | # CONFIG_MPC10X_STORE_GATHERING is not set |
169 | # CONFIG_IPIC is not set | ||
156 | CONFIG_MPIC=y | 170 | CONFIG_MPIC=y |
157 | # CONFIG_MPIC_WEIRD is not set | 171 | # CONFIG_MPIC_WEIRD is not set |
158 | # CONFIG_PPC_I8259 is not set | 172 | # CONFIG_PPC_I8259 is not set |
@@ -164,7 +178,6 @@ CONFIG_MPIC=y | |||
164 | # CONFIG_GENERIC_IOMAP is not set | 178 | # CONFIG_GENERIC_IOMAP is not set |
165 | # CONFIG_CPU_FREQ is not set | 179 | # CONFIG_CPU_FREQ is not set |
166 | # CONFIG_TAU is not set | 180 | # CONFIG_TAU is not set |
167 | # CONFIG_CPM2 is not set | ||
168 | # CONFIG_FSL_ULI1575 is not set | 181 | # CONFIG_FSL_ULI1575 is not set |
169 | 182 | ||
170 | # | 183 | # |
@@ -180,12 +193,16 @@ CONFIG_HZ_100=y | |||
180 | # CONFIG_HZ_300 is not set | 193 | # CONFIG_HZ_300 is not set |
181 | # CONFIG_HZ_1000 is not set | 194 | # CONFIG_HZ_1000 is not set |
182 | CONFIG_HZ=100 | 195 | CONFIG_HZ=100 |
196 | # CONFIG_SCHED_HRTICK is not set | ||
183 | CONFIG_PREEMPT_NONE=y | 197 | CONFIG_PREEMPT_NONE=y |
184 | # CONFIG_PREEMPT_VOLUNTARY is not set | 198 | # CONFIG_PREEMPT_VOLUNTARY is not set |
185 | # CONFIG_PREEMPT is not set | 199 | # CONFIG_PREEMPT is not set |
186 | CONFIG_BINFMT_ELF=y | 200 | CONFIG_BINFMT_ELF=y |
187 | CONFIG_BINFMT_MISC=y | 201 | CONFIG_BINFMT_MISC=y |
202 | # CONFIG_IOMMU_HELPER is not set | ||
188 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 203 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
204 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
205 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
189 | # CONFIG_KEXEC is not set | 206 | # CONFIG_KEXEC is not set |
190 | CONFIG_ARCH_FLATMEM_ENABLE=y | 207 | CONFIG_ARCH_FLATMEM_ENABLE=y |
191 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 208 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -206,11 +223,7 @@ CONFIG_PROC_DEVICETREE=y | |||
206 | CONFIG_CMDLINE_BOOL=y | 223 | CONFIG_CMDLINE_BOOL=y |
207 | CONFIG_CMDLINE="console=ttyS0,115200" | 224 | CONFIG_CMDLINE="console=ttyS0,115200" |
208 | # CONFIG_PM is not set | 225 | # CONFIG_PM is not set |
209 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
210 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
211 | # CONFIG_SECCOMP is not set | 226 | # CONFIG_SECCOMP is not set |
212 | CONFIG_WANT_DEVICE_TREE=y | ||
213 | CONFIG_DEVICE_TREE="storcenter.dts" | ||
214 | CONFIG_ISA_DMA_API=y | 227 | CONFIG_ISA_DMA_API=y |
215 | 228 | ||
216 | # | 229 | # |
@@ -310,6 +323,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
310 | # | 323 | # |
311 | # CONFIG_NET_PKTGEN is not set | 324 | # CONFIG_NET_PKTGEN is not set |
312 | # CONFIG_HAMRADIO is not set | 325 | # CONFIG_HAMRADIO is not set |
326 | # CONFIG_CAN is not set | ||
313 | # CONFIG_IRDA is not set | 327 | # CONFIG_IRDA is not set |
314 | # CONFIG_BT is not set | 328 | # CONFIG_BT is not set |
315 | # CONFIG_AF_RXRPC is not set | 329 | # CONFIG_AF_RXRPC is not set |
@@ -343,6 +357,7 @@ CONFIG_MTD=y | |||
343 | CONFIG_MTD_PARTITIONS=y | 357 | CONFIG_MTD_PARTITIONS=y |
344 | # CONFIG_MTD_REDBOOT_PARTS is not set | 358 | # CONFIG_MTD_REDBOOT_PARTS is not set |
345 | # CONFIG_MTD_CMDLINE_PARTS is not set | 359 | # CONFIG_MTD_CMDLINE_PARTS is not set |
360 | # CONFIG_MTD_OF_PARTS is not set | ||
346 | 361 | ||
347 | # | 362 | # |
348 | # User Modules And Translation Layers | 363 | # User Modules And Translation Layers |
@@ -438,12 +453,14 @@ CONFIG_MISC_DEVICES=y | |||
438 | # CONFIG_EEPROM_93CX6 is not set | 453 | # CONFIG_EEPROM_93CX6 is not set |
439 | # CONFIG_SGI_IOC4 is not set | 454 | # CONFIG_SGI_IOC4 is not set |
440 | # CONFIG_TIFM_CORE is not set | 455 | # CONFIG_TIFM_CORE is not set |
456 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
457 | CONFIG_HAVE_IDE=y | ||
441 | CONFIG_IDE=y | 458 | CONFIG_IDE=y |
442 | CONFIG_IDE_MAX_HWIFS=4 | 459 | CONFIG_IDE_MAX_HWIFS=4 |
443 | CONFIG_BLK_DEV_IDE=y | 460 | CONFIG_BLK_DEV_IDE=y |
444 | 461 | ||
445 | # | 462 | # |
446 | # Please see Documentation/ide.txt for help/info on IDE drives | 463 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
447 | # | 464 | # |
448 | # CONFIG_BLK_DEV_IDE_SATA is not set | 465 | # CONFIG_BLK_DEV_IDE_SATA is not set |
449 | CONFIG_BLK_DEV_IDEDISK=y | 466 | CONFIG_BLK_DEV_IDEDISK=y |
@@ -460,12 +477,12 @@ CONFIG_IDE_PROC_FS=y | |||
460 | # | 477 | # |
461 | CONFIG_IDE_GENERIC=y | 478 | CONFIG_IDE_GENERIC=y |
462 | # CONFIG_BLK_DEV_PLATFORM is not set | 479 | # CONFIG_BLK_DEV_PLATFORM is not set |
480 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
463 | 481 | ||
464 | # | 482 | # |
465 | # PCI IDE chipsets support | 483 | # PCI IDE chipsets support |
466 | # | 484 | # |
467 | CONFIG_BLK_DEV_IDEPCI=y | 485 | CONFIG_BLK_DEV_IDEPCI=y |
468 | # CONFIG_IDEPCI_SHARE_IRQ is not set | ||
469 | CONFIG_IDEPCI_PCIBUS_ORDER=y | 486 | CONFIG_IDEPCI_PCIBUS_ORDER=y |
470 | # CONFIG_BLK_DEV_GENERIC is not set | 487 | # CONFIG_BLK_DEV_GENERIC is not set |
471 | # CONFIG_BLK_DEV_OPTI621 is not set | 488 | # CONFIG_BLK_DEV_OPTI621 is not set |
@@ -495,7 +512,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
495 | # CONFIG_BLK_DEV_TRM290 is not set | 512 | # CONFIG_BLK_DEV_TRM290 is not set |
496 | CONFIG_BLK_DEV_VIA82CXXX=y | 513 | CONFIG_BLK_DEV_VIA82CXXX=y |
497 | # CONFIG_BLK_DEV_TC86C001 is not set | 514 | # CONFIG_BLK_DEV_TC86C001 is not set |
498 | # CONFIG_IDE_ARM is not set | ||
499 | CONFIG_BLK_DEV_IDEDMA=y | 515 | CONFIG_BLK_DEV_IDEDMA=y |
500 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 516 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
501 | # CONFIG_BLK_DEV_HD is not set | 517 | # CONFIG_BLK_DEV_HD is not set |
@@ -563,6 +579,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
563 | # CONFIG_SCSI_IPS is not set | 579 | # CONFIG_SCSI_IPS is not set |
564 | # CONFIG_SCSI_INITIO is not set | 580 | # CONFIG_SCSI_INITIO is not set |
565 | # CONFIG_SCSI_INIA100 is not set | 581 | # CONFIG_SCSI_INIA100 is not set |
582 | # CONFIG_SCSI_MVSAS is not set | ||
566 | # CONFIG_SCSI_STEX is not set | 583 | # CONFIG_SCSI_STEX is not set |
567 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 584 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
568 | # CONFIG_SCSI_QLOGIC_1280 is not set | 585 | # CONFIG_SCSI_QLOGIC_1280 is not set |
@@ -603,7 +620,6 @@ CONFIG_DUMMY=m | |||
603 | # CONFIG_EQUALIZER is not set | 620 | # CONFIG_EQUALIZER is not set |
604 | # CONFIG_TUN is not set | 621 | # CONFIG_TUN is not set |
605 | # CONFIG_VETH is not set | 622 | # CONFIG_VETH is not set |
606 | # CONFIG_IP1000 is not set | ||
607 | # CONFIG_ARCNET is not set | 623 | # CONFIG_ARCNET is not set |
608 | # CONFIG_NET_ETHERNET is not set | 624 | # CONFIG_NET_ETHERNET is not set |
609 | CONFIG_NETDEV_1000=y | 625 | CONFIG_NETDEV_1000=y |
@@ -611,6 +627,9 @@ CONFIG_NETDEV_1000=y | |||
611 | # CONFIG_DL2K is not set | 627 | # CONFIG_DL2K is not set |
612 | # CONFIG_E1000 is not set | 628 | # CONFIG_E1000 is not set |
613 | # CONFIG_E1000E is not set | 629 | # CONFIG_E1000E is not set |
630 | # CONFIG_E1000E_ENABLED is not set | ||
631 | # CONFIG_IP1000 is not set | ||
632 | # CONFIG_IGB is not set | ||
614 | # CONFIG_NS83820 is not set | 633 | # CONFIG_NS83820 is not set |
615 | # CONFIG_HAMACHI is not set | 634 | # CONFIG_HAMACHI is not set |
616 | # CONFIG_YELLOWFIN is not set | 635 | # CONFIG_YELLOWFIN is not set |
@@ -623,6 +642,7 @@ CONFIG_R8169=y | |||
623 | # CONFIG_VIA_VELOCITY is not set | 642 | # CONFIG_VIA_VELOCITY is not set |
624 | # CONFIG_TIGON3 is not set | 643 | # CONFIG_TIGON3 is not set |
625 | # CONFIG_BNX2 is not set | 644 | # CONFIG_BNX2 is not set |
645 | # CONFIG_GIANFAR is not set | ||
626 | # CONFIG_MV643XX_ETH is not set | 646 | # CONFIG_MV643XX_ETH is not set |
627 | # CONFIG_QLA3XXX is not set | 647 | # CONFIG_QLA3XXX is not set |
628 | # CONFIG_ATL1 is not set | 648 | # CONFIG_ATL1 is not set |
@@ -649,7 +669,6 @@ CONFIG_R8169=y | |||
649 | # CONFIG_PPP is not set | 669 | # CONFIG_PPP is not set |
650 | # CONFIG_SLIP is not set | 670 | # CONFIG_SLIP is not set |
651 | # CONFIG_NET_FC is not set | 671 | # CONFIG_NET_FC is not set |
652 | # CONFIG_SHAPER is not set | ||
653 | # CONFIG_NETCONSOLE is not set | 672 | # CONFIG_NETCONSOLE is not set |
654 | # CONFIG_NETPOLL is not set | 673 | # CONFIG_NETPOLL is not set |
655 | # CONFIG_NET_POLL_CONTROLLER is not set | 674 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -672,6 +691,7 @@ CONFIG_R8169=y | |||
672 | # | 691 | # |
673 | # CONFIG_VT is not set | 692 | # CONFIG_VT is not set |
674 | # CONFIG_SERIAL_NONSTANDARD is not set | 693 | # CONFIG_SERIAL_NONSTANDARD is not set |
694 | # CONFIG_NOZOMI is not set | ||
675 | 695 | ||
676 | # | 696 | # |
677 | # Serial drivers | 697 | # Serial drivers |
@@ -746,14 +766,12 @@ CONFIG_I2C_MPC=y | |||
746 | # | 766 | # |
747 | # Miscellaneous I2C Chip support | 767 | # Miscellaneous I2C Chip support |
748 | # | 768 | # |
749 | # CONFIG_SENSORS_DS1337 is not set | ||
750 | # CONFIG_SENSORS_DS1374 is not set | ||
751 | # CONFIG_DS1682 is not set | 769 | # CONFIG_DS1682 is not set |
752 | # CONFIG_SENSORS_EEPROM is not set | 770 | # CONFIG_SENSORS_EEPROM is not set |
753 | # CONFIG_SENSORS_PCF8574 is not set | 771 | # CONFIG_SENSORS_PCF8574 is not set |
754 | # CONFIG_SENSORS_PCA9539 is not set | 772 | # CONFIG_PCF8575 is not set |
755 | # CONFIG_SENSORS_PCF8591 is not set | 773 | # CONFIG_SENSORS_PCF8591 is not set |
756 | # CONFIG_SENSORS_M41T00 is not set | 774 | # CONFIG_TPS65010 is not set |
757 | # CONFIG_SENSORS_MAX6875 is not set | 775 | # CONFIG_SENSORS_MAX6875 is not set |
758 | # CONFIG_SENSORS_TSL2550 is not set | 776 | # CONFIG_SENSORS_TSL2550 is not set |
759 | # CONFIG_I2C_DEBUG_CORE is not set | 777 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -769,6 +787,7 @@ CONFIG_I2C_MPC=y | |||
769 | # CONFIG_W1 is not set | 787 | # CONFIG_W1 is not set |
770 | # CONFIG_POWER_SUPPLY is not set | 788 | # CONFIG_POWER_SUPPLY is not set |
771 | # CONFIG_HWMON is not set | 789 | # CONFIG_HWMON is not set |
790 | # CONFIG_THERMAL is not set | ||
772 | # CONFIG_WATCHDOG is not set | 791 | # CONFIG_WATCHDOG is not set |
773 | 792 | ||
774 | # | 793 | # |
@@ -814,6 +833,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
814 | CONFIG_USB_ARCH_HAS_EHCI=y | 833 | CONFIG_USB_ARCH_HAS_EHCI=y |
815 | CONFIG_USB=y | 834 | CONFIG_USB=y |
816 | # CONFIG_USB_DEBUG is not set | 835 | # CONFIG_USB_DEBUG is not set |
836 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
817 | 837 | ||
818 | # | 838 | # |
819 | # Miscellaneous USB options | 839 | # Miscellaneous USB options |
@@ -827,9 +847,10 @@ CONFIG_USB_DEVICE_CLASS=y | |||
827 | # USB Host Controller Drivers | 847 | # USB Host Controller Drivers |
828 | # | 848 | # |
829 | CONFIG_USB_EHCI_HCD=y | 849 | CONFIG_USB_EHCI_HCD=y |
830 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
831 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 850 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
832 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 851 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
852 | # CONFIG_USB_EHCI_FSL is not set | ||
853 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
833 | # CONFIG_USB_ISP116X_HCD is not set | 854 | # CONFIG_USB_ISP116X_HCD is not set |
834 | CONFIG_USB_OHCI_HCD=y | 855 | CONFIG_USB_OHCI_HCD=y |
835 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set | 856 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set |
@@ -877,10 +898,6 @@ CONFIG_USB_STORAGE=y | |||
877 | # | 898 | # |
878 | # USB port drivers | 899 | # USB port drivers |
879 | # | 900 | # |
880 | |||
881 | # | ||
882 | # USB Serial Converter support | ||
883 | # | ||
884 | # CONFIG_USB_SERIAL is not set | 901 | # CONFIG_USB_SERIAL is not set |
885 | 902 | ||
886 | # | 903 | # |
@@ -906,21 +923,18 @@ CONFIG_USB_STORAGE=y | |||
906 | # CONFIG_USB_TRANCEVIBRATOR is not set | 923 | # CONFIG_USB_TRANCEVIBRATOR is not set |
907 | # CONFIG_USB_IOWARRIOR is not set | 924 | # CONFIG_USB_IOWARRIOR is not set |
908 | # CONFIG_USB_TEST is not set | 925 | # CONFIG_USB_TEST is not set |
909 | |||
910 | # | ||
911 | # USB DSL modem support | ||
912 | # | ||
913 | |||
914 | # | ||
915 | # USB Gadget Support | ||
916 | # | ||
917 | # CONFIG_USB_GADGET is not set | 926 | # CONFIG_USB_GADGET is not set |
918 | # CONFIG_MMC is not set | 927 | # CONFIG_MMC is not set |
928 | # CONFIG_MEMSTICK is not set | ||
919 | # CONFIG_NEW_LEDS is not set | 929 | # CONFIG_NEW_LEDS is not set |
920 | # CONFIG_INFINIBAND is not set | 930 | # CONFIG_INFINIBAND is not set |
921 | # CONFIG_EDAC is not set | 931 | # CONFIG_EDAC is not set |
922 | CONFIG_RTC_LIB=y | 932 | CONFIG_RTC_LIB=y |
923 | CONFIG_RTC_CLASS=y | 933 | CONFIG_RTC_CLASS=y |
934 | |||
935 | # | ||
936 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
937 | # | ||
924 | CONFIG_RTC_HCTOSYS=y | 938 | CONFIG_RTC_HCTOSYS=y |
925 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 939 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
926 | # CONFIG_RTC_DEBUG is not set | 940 | # CONFIG_RTC_DEBUG is not set |
@@ -947,6 +961,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
947 | # CONFIG_RTC_DRV_PCF8563 is not set | 961 | # CONFIG_RTC_DRV_PCF8563 is not set |
948 | # CONFIG_RTC_DRV_PCF8583 is not set | 962 | # CONFIG_RTC_DRV_PCF8583 is not set |
949 | # CONFIG_RTC_DRV_M41T80 is not set | 963 | # CONFIG_RTC_DRV_M41T80 is not set |
964 | # CONFIG_RTC_DRV_S35390A is not set | ||
950 | 965 | ||
951 | # | 966 | # |
952 | # SPI RTC drivers | 967 | # SPI RTC drivers |
@@ -956,9 +971,10 @@ CONFIG_RTC_DRV_DS1307=y | |||
956 | # Platform RTC drivers | 971 | # Platform RTC drivers |
957 | # | 972 | # |
958 | # CONFIG_RTC_DRV_CMOS is not set | 973 | # CONFIG_RTC_DRV_CMOS is not set |
974 | # CONFIG_RTC_DRV_DS1511 is not set | ||
959 | # CONFIG_RTC_DRV_DS1553 is not set | 975 | # CONFIG_RTC_DRV_DS1553 is not set |
960 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
961 | # CONFIG_RTC_DRV_DS1742 is not set | 976 | # CONFIG_RTC_DRV_DS1742 is not set |
977 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
962 | # CONFIG_RTC_DRV_M48T86 is not set | 978 | # CONFIG_RTC_DRV_M48T86 is not set |
963 | # CONFIG_RTC_DRV_M48T59 is not set | 979 | # CONFIG_RTC_DRV_M48T59 is not set |
964 | # CONFIG_RTC_DRV_V3020 is not set | 980 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -966,6 +982,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
966 | # | 982 | # |
967 | # on-CPU RTC drivers | 983 | # on-CPU RTC drivers |
968 | # | 984 | # |
985 | # CONFIG_DMADEVICES is not set | ||
969 | 986 | ||
970 | # | 987 | # |
971 | # Userspace I/O | 988 | # Userspace I/O |
@@ -995,12 +1012,10 @@ CONFIG_XFS_FS=m | |||
995 | # CONFIG_XFS_RT is not set | 1012 | # CONFIG_XFS_RT is not set |
996 | # CONFIG_GFS2_FS is not set | 1013 | # CONFIG_GFS2_FS is not set |
997 | # CONFIG_OCFS2_FS is not set | 1014 | # CONFIG_OCFS2_FS is not set |
998 | # CONFIG_MINIX_FS is not set | 1015 | CONFIG_DNOTIFY=y |
999 | # CONFIG_ROMFS_FS is not set | ||
1000 | CONFIG_INOTIFY=y | 1016 | CONFIG_INOTIFY=y |
1001 | CONFIG_INOTIFY_USER=y | 1017 | CONFIG_INOTIFY_USER=y |
1002 | # CONFIG_QUOTA is not set | 1018 | # CONFIG_QUOTA is not set |
1003 | CONFIG_DNOTIFY=y | ||
1004 | # CONFIG_AUTOFS_FS is not set | 1019 | # CONFIG_AUTOFS_FS is not set |
1005 | # CONFIG_AUTOFS4_FS is not set | 1020 | # CONFIG_AUTOFS4_FS is not set |
1006 | # CONFIG_FUSE_FS is not set | 1021 | # CONFIG_FUSE_FS is not set |
@@ -1053,8 +1068,10 @@ CONFIG_JFFS2_RTIME=y | |||
1053 | # CONFIG_JFFS2_RUBIN is not set | 1068 | # CONFIG_JFFS2_RUBIN is not set |
1054 | # CONFIG_CRAMFS is not set | 1069 | # CONFIG_CRAMFS is not set |
1055 | # CONFIG_VXFS_FS is not set | 1070 | # CONFIG_VXFS_FS is not set |
1071 | # CONFIG_MINIX_FS is not set | ||
1056 | # CONFIG_HPFS_FS is not set | 1072 | # CONFIG_HPFS_FS is not set |
1057 | # CONFIG_QNX4FS_FS is not set | 1073 | # CONFIG_QNX4FS_FS is not set |
1074 | # CONFIG_ROMFS_FS is not set | ||
1058 | # CONFIG_SYSV_FS is not set | 1075 | # CONFIG_SYSV_FS is not set |
1059 | # CONFIG_UFS_FS is not set | 1076 | # CONFIG_UFS_FS is not set |
1060 | # CONFIG_NETWORK_FILESYSTEMS is not set | 1077 | # CONFIG_NETWORK_FILESYSTEMS is not set |
@@ -1121,7 +1138,6 @@ CONFIG_NLS_ISO8859_1=y | |||
1121 | # CONFIG_NLS_KOI8_U is not set | 1138 | # CONFIG_NLS_KOI8_U is not set |
1122 | CONFIG_NLS_UTF8=y | 1139 | CONFIG_NLS_UTF8=y |
1123 | # CONFIG_DLM is not set | 1140 | # CONFIG_DLM is not set |
1124 | # CONFIG_UCC_SLOW is not set | ||
1125 | 1141 | ||
1126 | # | 1142 | # |
1127 | # Library routines | 1143 | # Library routines |
@@ -1139,9 +1155,6 @@ CONFIG_PLIST=y | |||
1139 | CONFIG_HAS_IOMEM=y | 1155 | CONFIG_HAS_IOMEM=y |
1140 | CONFIG_HAS_IOPORT=y | 1156 | CONFIG_HAS_IOPORT=y |
1141 | CONFIG_HAS_DMA=y | 1157 | CONFIG_HAS_DMA=y |
1142 | CONFIG_INSTRUMENTATION=y | ||
1143 | # CONFIG_PROFILING is not set | ||
1144 | # CONFIG_MARKERS is not set | ||
1145 | 1158 | ||
1146 | # | 1159 | # |
1147 | # Kernel hacking | 1160 | # Kernel hacking |
@@ -1155,6 +1168,7 @@ CONFIG_INSTRUMENTATION=y | |||
1155 | # CONFIG_HEADERS_CHECK is not set | 1168 | # CONFIG_HEADERS_CHECK is not set |
1156 | # CONFIG_DEBUG_KERNEL is not set | 1169 | # CONFIG_DEBUG_KERNEL is not set |
1157 | # CONFIG_SLUB_DEBUG_ON is not set | 1170 | # CONFIG_SLUB_DEBUG_ON is not set |
1171 | # CONFIG_SLUB_STATS is not set | ||
1158 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1172 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1159 | # CONFIG_SAMPLES is not set | 1173 | # CONFIG_SAMPLES is not set |
1160 | # CONFIG_BOOTX_TEXT is not set | 1174 | # CONFIG_BOOTX_TEXT is not set |
diff --git a/arch/powerpc/configs/stx_gp3_defconfig b/arch/powerpc/configs/stx_gp3_defconfig index e8137a839bd4..1d303c49bb0c 100644 --- a/arch/powerpc/configs/stx_gp3_defconfig +++ b/arch/powerpc/configs/stx_gp3_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Jan 24 02:02:30 2008 | 4 | # Mon Mar 24 08:48:42 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
80 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -91,11 +94,13 @@ CONFIG_HOTPLUG=y | |||
91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
92 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
93 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
97 | CONFIG_COMPAT_BRK=y | ||
94 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
95 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
96 | CONFIG_ANON_INODES=y | 100 | CONFIG_ANON_INODES=y |
97 | CONFIG_EPOLL=y | 101 | CONFIG_EPOLL=y |
98 | CONFIG_SIGNALFD=y | 102 | CONFIG_SIGNALFD=y |
103 | CONFIG_TIMERFD=y | ||
99 | CONFIG_EVENTFD=y | 104 | CONFIG_EVENTFD=y |
100 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
101 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -103,6 +108,13 @@ CONFIG_SLUB_DEBUG=y | |||
103 | # CONFIG_SLAB is not set | 108 | # CONFIG_SLAB is not set |
104 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
105 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | ||
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | ||
114 | # CONFIG_KPROBES is not set | ||
115 | CONFIG_HAVE_KPROBES=y | ||
116 | CONFIG_HAVE_KRETPROBES=y | ||
117 | CONFIG_PROC_PAGE_MONITOR=y | ||
106 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
107 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
108 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
@@ -130,23 +142,29 @@ CONFIG_IOSCHED_CFQ=y | |||
130 | CONFIG_DEFAULT_CFQ=y | 142 | CONFIG_DEFAULT_CFQ=y |
131 | # CONFIG_DEFAULT_NOOP is not set | 143 | # CONFIG_DEFAULT_NOOP is not set |
132 | CONFIG_DEFAULT_IOSCHED="cfq" | 144 | CONFIG_DEFAULT_IOSCHED="cfq" |
145 | CONFIG_CLASSIC_RCU=y | ||
133 | 146 | ||
134 | # | 147 | # |
135 | # Platform support | 148 | # Platform support |
136 | # | 149 | # |
137 | # CONFIG_PPC_MPC52xx is not set | 150 | # CONFIG_PPC_MPC512x is not set |
138 | # CONFIG_PPC_MPC5200 is not set | 151 | # CONFIG_PPC_MPC5121 is not set |
139 | # CONFIG_PPC_CELL is not set | 152 | # CONFIG_PPC_CELL is not set |
140 | # CONFIG_PPC_CELL_NATIVE is not set | 153 | # CONFIG_PPC_CELL_NATIVE is not set |
141 | # CONFIG_PQ2ADS is not set | 154 | # CONFIG_PQ2ADS is not set |
155 | CONFIG_MPC85xx=y | ||
142 | # CONFIG_MPC8540_ADS is not set | 156 | # CONFIG_MPC8540_ADS is not set |
143 | # CONFIG_MPC8560_ADS is not set | 157 | # CONFIG_MPC8560_ADS is not set |
144 | # CONFIG_MPC85xx_CDS is not set | 158 | # CONFIG_MPC85xx_CDS is not set |
145 | # CONFIG_MPC85xx_MDS is not set | 159 | # CONFIG_MPC85xx_MDS is not set |
146 | # CONFIG_MPC85xx_DS is not set | 160 | # CONFIG_MPC85xx_DS is not set |
147 | CONFIG_STX_GP3=y | 161 | CONFIG_STX_GP3=y |
148 | CONFIG_MPC8560=y | 162 | # CONFIG_TQM8540 is not set |
149 | CONFIG_MPC85xx=y | 163 | # CONFIG_TQM8541 is not set |
164 | # CONFIG_TQM8555 is not set | ||
165 | # CONFIG_TQM8560 is not set | ||
166 | # CONFIG_SBC8548 is not set | ||
167 | # CONFIG_SBC8560 is not set | ||
150 | # CONFIG_IPIC is not set | 168 | # CONFIG_IPIC is not set |
151 | CONFIG_MPIC=y | 169 | CONFIG_MPIC=y |
152 | # CONFIG_MPIC_WEIRD is not set | 170 | # CONFIG_MPIC_WEIRD is not set |
@@ -176,13 +194,17 @@ CONFIG_HZ_250=y | |||
176 | # CONFIG_HZ_300 is not set | 194 | # CONFIG_HZ_300 is not set |
177 | # CONFIG_HZ_1000 is not set | 195 | # CONFIG_HZ_1000 is not set |
178 | CONFIG_HZ=250 | 196 | CONFIG_HZ=250 |
197 | # CONFIG_SCHED_HRTICK is not set | ||
179 | CONFIG_PREEMPT_NONE=y | 198 | CONFIG_PREEMPT_NONE=y |
180 | # CONFIG_PREEMPT_VOLUNTARY is not set | 199 | # CONFIG_PREEMPT_VOLUNTARY is not set |
181 | # CONFIG_PREEMPT is not set | 200 | # CONFIG_PREEMPT is not set |
182 | CONFIG_BINFMT_ELF=y | 201 | CONFIG_BINFMT_ELF=y |
183 | CONFIG_BINFMT_MISC=m | 202 | CONFIG_BINFMT_MISC=m |
184 | CONFIG_MATH_EMULATION=y | 203 | CONFIG_MATH_EMULATION=y |
204 | # CONFIG_IOMMU_HELPER is not set | ||
185 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 205 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
206 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
207 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
186 | CONFIG_ARCH_FLATMEM_ENABLE=y | 208 | CONFIG_ARCH_FLATMEM_ENABLE=y |
187 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 209 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
188 | CONFIG_SELECT_MEMORY_MODEL=y | 210 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -201,11 +223,7 @@ CONFIG_VIRT_TO_BUS=y | |||
201 | CONFIG_PROC_DEVICETREE=y | 223 | CONFIG_PROC_DEVICETREE=y |
202 | # CONFIG_CMDLINE_BOOL is not set | 224 | # CONFIG_CMDLINE_BOOL is not set |
203 | # CONFIG_PM is not set | 225 | # CONFIG_PM is not set |
204 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
205 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
206 | CONFIG_SECCOMP=y | 226 | CONFIG_SECCOMP=y |
207 | CONFIG_WANT_DEVICE_TREE=y | ||
208 | CONFIG_DEVICE_TREE="stx_gp3_8560.dts" | ||
209 | CONFIG_ISA_DMA_API=y | 227 | CONFIG_ISA_DMA_API=y |
210 | 228 | ||
211 | # | 229 | # |
@@ -255,6 +273,7 @@ CONFIG_XFRM=y | |||
255 | # CONFIG_XFRM_USER is not set | 273 | # CONFIG_XFRM_USER is not set |
256 | # CONFIG_XFRM_SUB_POLICY is not set | 274 | # CONFIG_XFRM_SUB_POLICY is not set |
257 | # CONFIG_XFRM_MIGRATE is not set | 275 | # CONFIG_XFRM_MIGRATE is not set |
276 | # CONFIG_XFRM_STATISTICS is not set | ||
258 | # CONFIG_NET_KEY is not set | 277 | # CONFIG_NET_KEY is not set |
259 | CONFIG_INET=y | 278 | CONFIG_INET=y |
260 | # CONFIG_IP_MULTICAST is not set | 279 | # CONFIG_IP_MULTICAST is not set |
@@ -290,31 +309,36 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
290 | # CONFIG_NETWORK_SECMARK is not set | 309 | # CONFIG_NETWORK_SECMARK is not set |
291 | CONFIG_NETFILTER=y | 310 | CONFIG_NETFILTER=y |
292 | # CONFIG_NETFILTER_DEBUG is not set | 311 | # CONFIG_NETFILTER_DEBUG is not set |
312 | CONFIG_NETFILTER_ADVANCED=y | ||
293 | 313 | ||
294 | # | 314 | # |
295 | # Core Netfilter Configuration | 315 | # Core Netfilter Configuration |
296 | # | 316 | # |
297 | # CONFIG_NETFILTER_NETLINK is not set | 317 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
298 | # CONFIG_NF_CONNTRACK_ENABLED is not set | 318 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
299 | # CONFIG_NF_CONNTRACK is not set | 319 | # CONFIG_NF_CONNTRACK is not set |
300 | CONFIG_NETFILTER_XTABLES=m | 320 | CONFIG_NETFILTER_XTABLES=m |
301 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | 321 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set |
302 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set | 322 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set |
303 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | 323 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set |
304 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | 324 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set |
325 | # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set | ||
305 | # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set | 326 | # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set |
306 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set | 327 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set |
307 | # CONFIG_NETFILTER_XT_MATCH_DCCP is not set | 328 | # CONFIG_NETFILTER_XT_MATCH_DCCP is not set |
308 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | 329 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set |
309 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | 330 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set |
331 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | ||
310 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | 332 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set |
311 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | 333 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set |
312 | # CONFIG_NETFILTER_XT_MATCH_MAC is not set | 334 | # CONFIG_NETFILTER_XT_MATCH_MAC is not set |
313 | # CONFIG_NETFILTER_XT_MATCH_MARK is not set | 335 | # CONFIG_NETFILTER_XT_MATCH_MARK is not set |
336 | # CONFIG_NETFILTER_XT_MATCH_OWNER is not set | ||
314 | # CONFIG_NETFILTER_XT_MATCH_POLICY is not set | 337 | # CONFIG_NETFILTER_XT_MATCH_POLICY is not set |
315 | # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set | 338 | # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set |
316 | # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set | 339 | # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set |
317 | # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set | 340 | # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set |
341 | # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set | ||
318 | # CONFIG_NETFILTER_XT_MATCH_REALM is not set | 342 | # CONFIG_NETFILTER_XT_MATCH_REALM is not set |
319 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set | 343 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set |
320 | # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set | 344 | # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set |
@@ -329,13 +353,10 @@ CONFIG_NETFILTER_XTABLES=m | |||
329 | # | 353 | # |
330 | # CONFIG_IP_NF_QUEUE is not set | 354 | # CONFIG_IP_NF_QUEUE is not set |
331 | CONFIG_IP_NF_IPTABLES=m | 355 | CONFIG_IP_NF_IPTABLES=m |
332 | # CONFIG_IP_NF_MATCH_IPRANGE is not set | ||
333 | # CONFIG_IP_NF_MATCH_TOS is not set | ||
334 | # CONFIG_IP_NF_MATCH_RECENT is not set | 356 | # CONFIG_IP_NF_MATCH_RECENT is not set |
335 | # CONFIG_IP_NF_MATCH_ECN is not set | 357 | # CONFIG_IP_NF_MATCH_ECN is not set |
336 | # CONFIG_IP_NF_MATCH_AH is not set | 358 | # CONFIG_IP_NF_MATCH_AH is not set |
337 | # CONFIG_IP_NF_MATCH_TTL is not set | 359 | # CONFIG_IP_NF_MATCH_TTL is not set |
338 | # CONFIG_IP_NF_MATCH_OWNER is not set | ||
339 | # CONFIG_IP_NF_MATCH_ADDRTYPE is not set | 360 | # CONFIG_IP_NF_MATCH_ADDRTYPE is not set |
340 | CONFIG_IP_NF_FILTER=m | 361 | CONFIG_IP_NF_FILTER=m |
341 | # CONFIG_IP_NF_TARGET_REJECT is not set | 362 | # CONFIG_IP_NF_TARGET_REJECT is not set |
@@ -365,6 +386,7 @@ CONFIG_IP_NF_FILTER=m | |||
365 | # | 386 | # |
366 | CONFIG_NET_PKTGEN=y | 387 | CONFIG_NET_PKTGEN=y |
367 | # CONFIG_HAMRADIO is not set | 388 | # CONFIG_HAMRADIO is not set |
389 | # CONFIG_CAN is not set | ||
368 | # CONFIG_IRDA is not set | 390 | # CONFIG_IRDA is not set |
369 | # CONFIG_BT is not set | 391 | # CONFIG_BT is not set |
370 | # CONFIG_AF_RXRPC is not set | 392 | # CONFIG_AF_RXRPC is not set |
@@ -418,7 +440,7 @@ CONFIG_BLK_DEV_NBD=m | |||
418 | CONFIG_BLK_DEV_RAM=y | 440 | CONFIG_BLK_DEV_RAM=y |
419 | CONFIG_BLK_DEV_RAM_COUNT=16 | 441 | CONFIG_BLK_DEV_RAM_COUNT=16 |
420 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 442 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
421 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 443 | # CONFIG_BLK_DEV_XIP is not set |
422 | # CONFIG_CDROM_PKTCDVD is not set | 444 | # CONFIG_CDROM_PKTCDVD is not set |
423 | # CONFIG_ATA_OVER_ETH is not set | 445 | # CONFIG_ATA_OVER_ETH is not set |
424 | CONFIG_MISC_DEVICES=y | 446 | CONFIG_MISC_DEVICES=y |
@@ -426,17 +448,20 @@ CONFIG_MISC_DEVICES=y | |||
426 | # CONFIG_EEPROM_93CX6 is not set | 448 | # CONFIG_EEPROM_93CX6 is not set |
427 | # CONFIG_SGI_IOC4 is not set | 449 | # CONFIG_SGI_IOC4 is not set |
428 | # CONFIG_TIFM_CORE is not set | 450 | # CONFIG_TIFM_CORE is not set |
451 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
452 | CONFIG_HAVE_IDE=y | ||
429 | CONFIG_IDE=y | 453 | CONFIG_IDE=y |
430 | CONFIG_IDE_MAX_HWIFS=4 | 454 | CONFIG_IDE_MAX_HWIFS=4 |
431 | CONFIG_BLK_DEV_IDE=y | 455 | CONFIG_BLK_DEV_IDE=y |
432 | 456 | ||
433 | # | 457 | # |
434 | # Please see Documentation/ide.txt for help/info on IDE drives | 458 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
435 | # | 459 | # |
436 | # CONFIG_BLK_DEV_IDE_SATA is not set | 460 | # CONFIG_BLK_DEV_IDE_SATA is not set |
437 | CONFIG_BLK_DEV_IDEDISK=y | 461 | CONFIG_BLK_DEV_IDEDISK=y |
438 | # CONFIG_IDEDISK_MULTI_MODE is not set | 462 | # CONFIG_IDEDISK_MULTI_MODE is not set |
439 | CONFIG_BLK_DEV_IDECD=m | 463 | CONFIG_BLK_DEV_IDECD=m |
464 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | ||
440 | # CONFIG_BLK_DEV_IDETAPE is not set | 465 | # CONFIG_BLK_DEV_IDETAPE is not set |
441 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | 466 | # CONFIG_BLK_DEV_IDEFLOPPY is not set |
442 | # CONFIG_BLK_DEV_IDESCSI is not set | 467 | # CONFIG_BLK_DEV_IDESCSI is not set |
@@ -452,7 +477,6 @@ CONFIG_IDE_GENERIC=y | |||
452 | # | 477 | # |
453 | # PCI IDE chipsets support | 478 | # PCI IDE chipsets support |
454 | # | 479 | # |
455 | # CONFIG_IDEPCI_PCIBUS_ORDER is not set | ||
456 | # CONFIG_BLK_DEV_GENERIC is not set | 480 | # CONFIG_BLK_DEV_GENERIC is not set |
457 | # CONFIG_BLK_DEV_OPTI621 is not set | 481 | # CONFIG_BLK_DEV_OPTI621 is not set |
458 | # CONFIG_BLK_DEV_AEC62XX is not set | 482 | # CONFIG_BLK_DEV_AEC62XX is not set |
@@ -480,7 +504,6 @@ CONFIG_IDE_GENERIC=y | |||
480 | # CONFIG_BLK_DEV_TRM290 is not set | 504 | # CONFIG_BLK_DEV_TRM290 is not set |
481 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 505 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
482 | # CONFIG_BLK_DEV_TC86C001 is not set | 506 | # CONFIG_BLK_DEV_TC86C001 is not set |
483 | # CONFIG_IDE_ARM is not set | ||
484 | # CONFIG_BLK_DEV_IDEDMA is not set | 507 | # CONFIG_BLK_DEV_IDEDMA is not set |
485 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 508 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
486 | # CONFIG_BLK_DEV_HD is not set | 509 | # CONFIG_BLK_DEV_HD is not set |
@@ -550,6 +573,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
550 | # CONFIG_SCSI_INIA100 is not set | 573 | # CONFIG_SCSI_INIA100 is not set |
551 | # CONFIG_SCSI_PPA is not set | 574 | # CONFIG_SCSI_PPA is not set |
552 | # CONFIG_SCSI_IMM is not set | 575 | # CONFIG_SCSI_IMM is not set |
576 | # CONFIG_SCSI_MVSAS is not set | ||
553 | # CONFIG_SCSI_STEX is not set | 577 | # CONFIG_SCSI_STEX is not set |
554 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 578 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
555 | # CONFIG_SCSI_QLOGIC_1280 is not set | 579 | # CONFIG_SCSI_QLOGIC_1280 is not set |
@@ -595,6 +619,7 @@ CONFIG_MARVELL_PHY=y | |||
595 | # CONFIG_SMSC_PHY is not set | 619 | # CONFIG_SMSC_PHY is not set |
596 | # CONFIG_BROADCOM_PHY is not set | 620 | # CONFIG_BROADCOM_PHY is not set |
597 | # CONFIG_ICPLUS_PHY is not set | 621 | # CONFIG_ICPLUS_PHY is not set |
622 | # CONFIG_REALTEK_PHY is not set | ||
598 | # CONFIG_FIXED_PHY is not set | 623 | # CONFIG_FIXED_PHY is not set |
599 | # CONFIG_MDIO_BITBANG is not set | 624 | # CONFIG_MDIO_BITBANG is not set |
600 | CONFIG_NET_ETHERNET=y | 625 | CONFIG_NET_ETHERNET=y |
@@ -618,7 +643,9 @@ CONFIG_NETDEV_1000=y | |||
618 | # CONFIG_DL2K is not set | 643 | # CONFIG_DL2K is not set |
619 | # CONFIG_E1000 is not set | 644 | # CONFIG_E1000 is not set |
620 | # CONFIG_E1000E is not set | 645 | # CONFIG_E1000E is not set |
646 | # CONFIG_E1000E_ENABLED is not set | ||
621 | # CONFIG_IP1000 is not set | 647 | # CONFIG_IP1000 is not set |
648 | # CONFIG_IGB is not set | ||
622 | # CONFIG_NS83820 is not set | 649 | # CONFIG_NS83820 is not set |
623 | # CONFIG_HAMACHI is not set | 650 | # CONFIG_HAMACHI is not set |
624 | # CONFIG_YELLOWFIN is not set | 651 | # CONFIG_YELLOWFIN is not set |
@@ -645,6 +672,7 @@ CONFIG_NETDEV_10000=y | |||
645 | # CONFIG_NIU is not set | 672 | # CONFIG_NIU is not set |
646 | # CONFIG_MLX4_CORE is not set | 673 | # CONFIG_MLX4_CORE is not set |
647 | # CONFIG_TEHUTI is not set | 674 | # CONFIG_TEHUTI is not set |
675 | # CONFIG_BNX2X is not set | ||
648 | # CONFIG_TR is not set | 676 | # CONFIG_TR is not set |
649 | 677 | ||
650 | # | 678 | # |
@@ -659,7 +687,6 @@ CONFIG_NETDEV_10000=y | |||
659 | # CONFIG_PPP is not set | 687 | # CONFIG_PPP is not set |
660 | # CONFIG_SLIP is not set | 688 | # CONFIG_SLIP is not set |
661 | # CONFIG_NET_FC is not set | 689 | # CONFIG_NET_FC is not set |
662 | # CONFIG_SHAPER is not set | ||
663 | # CONFIG_NETCONSOLE is not set | 690 | # CONFIG_NETCONSOLE is not set |
664 | # CONFIG_NETPOLL is not set | 691 | # CONFIG_NETPOLL is not set |
665 | # CONFIG_NET_POLL_CONTROLLER is not set | 692 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -727,6 +754,7 @@ CONFIG_SERIO_LIBPS2=y | |||
727 | # | 754 | # |
728 | # CONFIG_VT is not set | 755 | # CONFIG_VT is not set |
729 | # CONFIG_SERIAL_NONSTANDARD is not set | 756 | # CONFIG_SERIAL_NONSTANDARD is not set |
757 | # CONFIG_NOZOMI is not set | ||
730 | 758 | ||
731 | # | 759 | # |
732 | # Serial drivers | 760 | # Serial drivers |
@@ -805,14 +833,12 @@ CONFIG_I2C_ALGOBIT=m | |||
805 | # | 833 | # |
806 | # Miscellaneous I2C Chip support | 834 | # Miscellaneous I2C Chip support |
807 | # | 835 | # |
808 | # CONFIG_SENSORS_DS1337 is not set | ||
809 | # CONFIG_SENSORS_DS1374 is not set | ||
810 | # CONFIG_DS1682 is not set | 836 | # CONFIG_DS1682 is not set |
811 | # CONFIG_SENSORS_EEPROM is not set | 837 | # CONFIG_SENSORS_EEPROM is not set |
812 | # CONFIG_SENSORS_PCF8574 is not set | 838 | # CONFIG_SENSORS_PCF8574 is not set |
813 | # CONFIG_SENSORS_PCA9539 is not set | 839 | # CONFIG_PCF8575 is not set |
814 | # CONFIG_SENSORS_PCF8591 is not set | 840 | # CONFIG_SENSORS_PCF8591 is not set |
815 | # CONFIG_SENSORS_M41T00 is not set | 841 | # CONFIG_TPS65010 is not set |
816 | # CONFIG_SENSORS_MAX6875 is not set | 842 | # CONFIG_SENSORS_MAX6875 is not set |
817 | # CONFIG_SENSORS_TSL2550 is not set | 843 | # CONFIG_SENSORS_TSL2550 is not set |
818 | # CONFIG_I2C_DEBUG_CORE is not set | 844 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -837,6 +863,7 @@ CONFIG_HWMON=y | |||
837 | # CONFIG_SENSORS_ADM1031 is not set | 863 | # CONFIG_SENSORS_ADM1031 is not set |
838 | # CONFIG_SENSORS_ADM9240 is not set | 864 | # CONFIG_SENSORS_ADM9240 is not set |
839 | # CONFIG_SENSORS_ADT7470 is not set | 865 | # CONFIG_SENSORS_ADT7470 is not set |
866 | # CONFIG_SENSORS_ADT7473 is not set | ||
840 | # CONFIG_SENSORS_ATXP1 is not set | 867 | # CONFIG_SENSORS_ATXP1 is not set |
841 | # CONFIG_SENSORS_DS1621 is not set | 868 | # CONFIG_SENSORS_DS1621 is not set |
842 | # CONFIG_SENSORS_I5K_AMB is not set | 869 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -866,6 +893,7 @@ CONFIG_HWMON=y | |||
866 | # CONFIG_SENSORS_SMSC47M1 is not set | 893 | # CONFIG_SENSORS_SMSC47M1 is not set |
867 | # CONFIG_SENSORS_SMSC47M192 is not set | 894 | # CONFIG_SENSORS_SMSC47M192 is not set |
868 | # CONFIG_SENSORS_SMSC47B397 is not set | 895 | # CONFIG_SENSORS_SMSC47B397 is not set |
896 | # CONFIG_SENSORS_ADS7828 is not set | ||
869 | # CONFIG_SENSORS_THMC50 is not set | 897 | # CONFIG_SENSORS_THMC50 is not set |
870 | # CONFIG_SENSORS_VIA686A is not set | 898 | # CONFIG_SENSORS_VIA686A is not set |
871 | # CONFIG_SENSORS_VT1211 is not set | 899 | # CONFIG_SENSORS_VT1211 is not set |
@@ -875,9 +903,11 @@ CONFIG_HWMON=y | |||
875 | # CONFIG_SENSORS_W83792D is not set | 903 | # CONFIG_SENSORS_W83792D is not set |
876 | # CONFIG_SENSORS_W83793 is not set | 904 | # CONFIG_SENSORS_W83793 is not set |
877 | # CONFIG_SENSORS_W83L785TS is not set | 905 | # CONFIG_SENSORS_W83L785TS is not set |
906 | # CONFIG_SENSORS_W83L786NG is not set | ||
878 | # CONFIG_SENSORS_W83627HF is not set | 907 | # CONFIG_SENSORS_W83627HF is not set |
879 | # CONFIG_SENSORS_W83627EHF is not set | 908 | # CONFIG_SENSORS_W83627EHF is not set |
880 | # CONFIG_HWMON_DEBUG_CHIP is not set | 909 | # CONFIG_HWMON_DEBUG_CHIP is not set |
910 | # CONFIG_THERMAL is not set | ||
881 | # CONFIG_WATCHDOG is not set | 911 | # CONFIG_WATCHDOG is not set |
882 | 912 | ||
883 | # | 913 | # |
@@ -947,16 +977,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
947 | # | 977 | # |
948 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 978 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
949 | # | 979 | # |
950 | |||
951 | # | ||
952 | # USB Gadget Support | ||
953 | # | ||
954 | # CONFIG_USB_GADGET is not set | 980 | # CONFIG_USB_GADGET is not set |
955 | # CONFIG_MMC is not set | 981 | # CONFIG_MMC is not set |
982 | # CONFIG_MEMSTICK is not set | ||
956 | # CONFIG_NEW_LEDS is not set | 983 | # CONFIG_NEW_LEDS is not set |
957 | # CONFIG_INFINIBAND is not set | 984 | # CONFIG_INFINIBAND is not set |
958 | # CONFIG_EDAC is not set | 985 | # CONFIG_EDAC is not set |
959 | # CONFIG_RTC_CLASS is not set | 986 | # CONFIG_RTC_CLASS is not set |
987 | # CONFIG_DMADEVICES is not set | ||
960 | # CONFIG_AUXDISPLAY is not set | 988 | # CONFIG_AUXDISPLAY is not set |
961 | 989 | ||
962 | # | 990 | # |
@@ -983,12 +1011,10 @@ CONFIG_FS_MBCACHE=y | |||
983 | # CONFIG_XFS_FS is not set | 1011 | # CONFIG_XFS_FS is not set |
984 | # CONFIG_GFS2_FS is not set | 1012 | # CONFIG_GFS2_FS is not set |
985 | # CONFIG_OCFS2_FS is not set | 1013 | # CONFIG_OCFS2_FS is not set |
986 | # CONFIG_MINIX_FS is not set | 1014 | CONFIG_DNOTIFY=y |
987 | # CONFIG_ROMFS_FS is not set | ||
988 | CONFIG_INOTIFY=y | 1015 | CONFIG_INOTIFY=y |
989 | CONFIG_INOTIFY_USER=y | 1016 | CONFIG_INOTIFY_USER=y |
990 | # CONFIG_QUOTA is not set | 1017 | # CONFIG_QUOTA is not set |
991 | CONFIG_DNOTIFY=y | ||
992 | CONFIG_AUTOFS_FS=m | 1018 | CONFIG_AUTOFS_FS=m |
993 | CONFIG_AUTOFS4_FS=y | 1019 | CONFIG_AUTOFS4_FS=y |
994 | # CONFIG_FUSE_FS is not set | 1020 | # CONFIG_FUSE_FS is not set |
@@ -1036,8 +1062,10 @@ CONFIG_TMPFS=y | |||
1036 | # CONFIG_EFS_FS is not set | 1062 | # CONFIG_EFS_FS is not set |
1037 | CONFIG_CRAMFS=m | 1063 | CONFIG_CRAMFS=m |
1038 | # CONFIG_VXFS_FS is not set | 1064 | # CONFIG_VXFS_FS is not set |
1065 | # CONFIG_MINIX_FS is not set | ||
1039 | # CONFIG_HPFS_FS is not set | 1066 | # CONFIG_HPFS_FS is not set |
1040 | # CONFIG_QNX4FS_FS is not set | 1067 | # CONFIG_QNX4FS_FS is not set |
1068 | # CONFIG_ROMFS_FS is not set | ||
1041 | # CONFIG_SYSV_FS is not set | 1069 | # CONFIG_SYSV_FS is not set |
1042 | # CONFIG_UFS_FS is not set | 1070 | # CONFIG_UFS_FS is not set |
1043 | CONFIG_NETWORK_FILESYSTEMS=y | 1071 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1124,10 +1152,6 @@ CONFIG_PLIST=y | |||
1124 | CONFIG_HAS_IOMEM=y | 1152 | CONFIG_HAS_IOMEM=y |
1125 | CONFIG_HAS_IOPORT=y | 1153 | CONFIG_HAS_IOPORT=y |
1126 | CONFIG_HAS_DMA=y | 1154 | CONFIG_HAS_DMA=y |
1127 | CONFIG_INSTRUMENTATION=y | ||
1128 | # CONFIG_PROFILING is not set | ||
1129 | # CONFIG_KPROBES is not set | ||
1130 | # CONFIG_MARKERS is not set | ||
1131 | 1155 | ||
1132 | # | 1156 | # |
1133 | # Kernel hacking | 1157 | # Kernel hacking |
@@ -1146,6 +1170,7 @@ CONFIG_SCHED_DEBUG=y | |||
1146 | # CONFIG_SCHEDSTATS is not set | 1170 | # CONFIG_SCHEDSTATS is not set |
1147 | # CONFIG_TIMER_STATS is not set | 1171 | # CONFIG_TIMER_STATS is not set |
1148 | # CONFIG_SLUB_DEBUG_ON is not set | 1172 | # CONFIG_SLUB_DEBUG_ON is not set |
1173 | # CONFIG_SLUB_STATS is not set | ||
1149 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1174 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1150 | # CONFIG_RT_MUTEX_TESTER is not set | 1175 | # CONFIG_RT_MUTEX_TESTER is not set |
1151 | # CONFIG_DEBUG_SPINLOCK is not set | 1176 | # CONFIG_DEBUG_SPINLOCK is not set |
@@ -1159,9 +1184,9 @@ CONFIG_SCHED_DEBUG=y | |||
1159 | # CONFIG_DEBUG_VM is not set | 1184 | # CONFIG_DEBUG_VM is not set |
1160 | # CONFIG_DEBUG_LIST is not set | 1185 | # CONFIG_DEBUG_LIST is not set |
1161 | # CONFIG_DEBUG_SG is not set | 1186 | # CONFIG_DEBUG_SG is not set |
1162 | CONFIG_FORCED_INLINING=y | ||
1163 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1187 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1164 | # CONFIG_RCU_TORTURE_TEST is not set | 1188 | # CONFIG_RCU_TORTURE_TEST is not set |
1189 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1165 | # CONFIG_FAULT_INJECTION is not set | 1190 | # CONFIG_FAULT_INJECTION is not set |
1166 | # CONFIG_SAMPLES is not set | 1191 | # CONFIG_SAMPLES is not set |
1167 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1192 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
@@ -1178,6 +1203,51 @@ CONFIG_BDI_SWITCH=y | |||
1178 | # CONFIG_KEYS is not set | 1203 | # CONFIG_KEYS is not set |
1179 | # CONFIG_SECURITY is not set | 1204 | # CONFIG_SECURITY is not set |
1180 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1205 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1181 | # CONFIG_CRYPTO is not set | 1206 | CONFIG_CRYPTO=y |
1207 | # CONFIG_CRYPTO_SEQIV is not set | ||
1208 | # CONFIG_CRYPTO_MANAGER is not set | ||
1209 | # CONFIG_CRYPTO_HMAC is not set | ||
1210 | # CONFIG_CRYPTO_XCBC is not set | ||
1211 | # CONFIG_CRYPTO_NULL is not set | ||
1212 | # CONFIG_CRYPTO_MD4 is not set | ||
1213 | # CONFIG_CRYPTO_MD5 is not set | ||
1214 | # CONFIG_CRYPTO_SHA1 is not set | ||
1215 | # CONFIG_CRYPTO_SHA256 is not set | ||
1216 | # CONFIG_CRYPTO_SHA512 is not set | ||
1217 | # CONFIG_CRYPTO_WP512 is not set | ||
1218 | # CONFIG_CRYPTO_TGR192 is not set | ||
1219 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1220 | # CONFIG_CRYPTO_ECB is not set | ||
1221 | # CONFIG_CRYPTO_CBC is not set | ||
1222 | # CONFIG_CRYPTO_PCBC is not set | ||
1223 | # CONFIG_CRYPTO_LRW is not set | ||
1224 | # CONFIG_CRYPTO_XTS is not set | ||
1225 | # CONFIG_CRYPTO_CTR is not set | ||
1226 | # CONFIG_CRYPTO_GCM is not set | ||
1227 | # CONFIG_CRYPTO_CCM is not set | ||
1228 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1229 | # CONFIG_CRYPTO_DES is not set | ||
1230 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1231 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1232 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1233 | # CONFIG_CRYPTO_SERPENT is not set | ||
1234 | # CONFIG_CRYPTO_AES is not set | ||
1235 | # CONFIG_CRYPTO_CAST5 is not set | ||
1236 | # CONFIG_CRYPTO_CAST6 is not set | ||
1237 | # CONFIG_CRYPTO_TEA is not set | ||
1238 | # CONFIG_CRYPTO_ARC4 is not set | ||
1239 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1240 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1241 | # CONFIG_CRYPTO_SEED is not set | ||
1242 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1243 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1244 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1245 | # CONFIG_CRYPTO_CRC32C is not set | ||
1246 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1247 | # CONFIG_CRYPTO_TEST is not set | ||
1248 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1249 | # CONFIG_CRYPTO_LZO is not set | ||
1250 | CONFIG_CRYPTO_HW=y | ||
1251 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1182 | # CONFIG_PPC_CLOCK is not set | 1252 | # CONFIG_PPC_CLOCK is not set |
1183 | CONFIG_PPC_LIB_RHEAP=y | 1253 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/tqm8540_defconfig b/arch/powerpc/configs/tqm8540_defconfig index 732de34cfc27..d39ee3b35bfc 100644 --- a/arch/powerpc/configs/tqm8540_defconfig +++ b/arch/powerpc/configs/tqm8540_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Fri Jan 25 01:32:05 2008 | 4 | # Mon Mar 24 08:48:43 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
80 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +92,13 @@ CONFIG_SYSCTL_SYSCALL=y | |||
89 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
95 | # CONFIG_EPOLL is not set | 99 | # CONFIG_EPOLL is not set |
96 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +106,12 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 106 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 107 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | ||
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
104 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
105 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
106 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
@@ -124,15 +135,17 @@ CONFIG_DEFAULT_AS=y | |||
124 | # CONFIG_DEFAULT_CFQ is not set | 135 | # CONFIG_DEFAULT_CFQ is not set |
125 | # CONFIG_DEFAULT_NOOP is not set | 136 | # CONFIG_DEFAULT_NOOP is not set |
126 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 137 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
138 | CONFIG_CLASSIC_RCU=y | ||
127 | 139 | ||
128 | # | 140 | # |
129 | # Platform support | 141 | # Platform support |
130 | # | 142 | # |
131 | # CONFIG_PPC_MPC52xx is not set | 143 | # CONFIG_PPC_MPC512x is not set |
132 | # CONFIG_PPC_MPC5200 is not set | 144 | # CONFIG_PPC_MPC5121 is not set |
133 | # CONFIG_PPC_CELL is not set | 145 | # CONFIG_PPC_CELL is not set |
134 | # CONFIG_PPC_CELL_NATIVE is not set | 146 | # CONFIG_PPC_CELL_NATIVE is not set |
135 | # CONFIG_PQ2ADS is not set | 147 | # CONFIG_PQ2ADS is not set |
148 | CONFIG_MPC85xx=y | ||
136 | # CONFIG_MPC8540_ADS is not set | 149 | # CONFIG_MPC8540_ADS is not set |
137 | # CONFIG_MPC8560_ADS is not set | 150 | # CONFIG_MPC8560_ADS is not set |
138 | # CONFIG_MPC85xx_CDS is not set | 151 | # CONFIG_MPC85xx_CDS is not set |
@@ -143,8 +156,9 @@ CONFIG_TQM8540=y | |||
143 | # CONFIG_TQM8541 is not set | 156 | # CONFIG_TQM8541 is not set |
144 | # CONFIG_TQM8555 is not set | 157 | # CONFIG_TQM8555 is not set |
145 | # CONFIG_TQM8560 is not set | 158 | # CONFIG_TQM8560 is not set |
159 | # CONFIG_SBC8548 is not set | ||
160 | # CONFIG_SBC8560 is not set | ||
146 | CONFIG_TQM85xx=y | 161 | CONFIG_TQM85xx=y |
147 | CONFIG_MPC85xx=y | ||
148 | # CONFIG_IPIC is not set | 162 | # CONFIG_IPIC is not set |
149 | CONFIG_MPIC=y | 163 | CONFIG_MPIC=y |
150 | # CONFIG_MPIC_WEIRD is not set | 164 | # CONFIG_MPIC_WEIRD is not set |
@@ -173,13 +187,17 @@ CONFIG_HZ_250=y | |||
173 | # CONFIG_HZ_300 is not set | 187 | # CONFIG_HZ_300 is not set |
174 | # CONFIG_HZ_1000 is not set | 188 | # CONFIG_HZ_1000 is not set |
175 | CONFIG_HZ=250 | 189 | CONFIG_HZ=250 |
190 | # CONFIG_SCHED_HRTICK is not set | ||
176 | CONFIG_PREEMPT_NONE=y | 191 | CONFIG_PREEMPT_NONE=y |
177 | # CONFIG_PREEMPT_VOLUNTARY is not set | 192 | # CONFIG_PREEMPT_VOLUNTARY is not set |
178 | # CONFIG_PREEMPT is not set | 193 | # CONFIG_PREEMPT is not set |
179 | CONFIG_BINFMT_ELF=y | 194 | CONFIG_BINFMT_ELF=y |
180 | # CONFIG_BINFMT_MISC is not set | 195 | # CONFIG_BINFMT_MISC is not set |
181 | CONFIG_MATH_EMULATION=y | 196 | CONFIG_MATH_EMULATION=y |
197 | # CONFIG_IOMMU_HELPER is not set | ||
182 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 198 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
199 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
200 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
183 | CONFIG_ARCH_FLATMEM_ENABLE=y | 201 | CONFIG_ARCH_FLATMEM_ENABLE=y |
184 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 202 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
185 | CONFIG_SELECT_MEMORY_MODEL=y | 203 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -198,11 +216,7 @@ CONFIG_VIRT_TO_BUS=y | |||
198 | # CONFIG_PROC_DEVICETREE is not set | 216 | # CONFIG_PROC_DEVICETREE is not set |
199 | # CONFIG_CMDLINE_BOOL is not set | 217 | # CONFIG_CMDLINE_BOOL is not set |
200 | # CONFIG_PM is not set | 218 | # CONFIG_PM is not set |
201 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
202 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
203 | CONFIG_SECCOMP=y | 219 | CONFIG_SECCOMP=y |
204 | CONFIG_WANT_DEVICE_TREE=y | ||
205 | CONFIG_DEVICE_TREE="tqm8540.dts" | ||
206 | CONFIG_ISA_DMA_API=y | 220 | CONFIG_ISA_DMA_API=y |
207 | 221 | ||
208 | # | 222 | # |
@@ -249,6 +263,7 @@ CONFIG_XFRM=y | |||
249 | # CONFIG_XFRM_USER is not set | 263 | # CONFIG_XFRM_USER is not set |
250 | # CONFIG_XFRM_SUB_POLICY is not set | 264 | # CONFIG_XFRM_SUB_POLICY is not set |
251 | # CONFIG_XFRM_MIGRATE is not set | 265 | # CONFIG_XFRM_MIGRATE is not set |
266 | # CONFIG_XFRM_STATISTICS is not set | ||
252 | # CONFIG_NET_KEY is not set | 267 | # CONFIG_NET_KEY is not set |
253 | CONFIG_INET=y | 268 | CONFIG_INET=y |
254 | CONFIG_IP_MULTICAST=y | 269 | CONFIG_IP_MULTICAST=y |
@@ -304,6 +319,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
304 | # | 319 | # |
305 | # CONFIG_NET_PKTGEN is not set | 320 | # CONFIG_NET_PKTGEN is not set |
306 | # CONFIG_HAMRADIO is not set | 321 | # CONFIG_HAMRADIO is not set |
322 | # CONFIG_CAN is not set | ||
307 | # CONFIG_IRDA is not set | 323 | # CONFIG_IRDA is not set |
308 | # CONFIG_BT is not set | 324 | # CONFIG_BT is not set |
309 | # CONFIG_AF_RXRPC is not set | 325 | # CONFIG_AF_RXRPC is not set |
@@ -335,6 +351,7 @@ CONFIG_MTD_CONCAT=y | |||
335 | CONFIG_MTD_PARTITIONS=y | 351 | CONFIG_MTD_PARTITIONS=y |
336 | # CONFIG_MTD_REDBOOT_PARTS is not set | 352 | # CONFIG_MTD_REDBOOT_PARTS is not set |
337 | CONFIG_MTD_CMDLINE_PARTS=y | 353 | CONFIG_MTD_CMDLINE_PARTS=y |
354 | # CONFIG_MTD_OF_PARTS is not set | ||
338 | 355 | ||
339 | # | 356 | # |
340 | # User Modules And Translation Layers | 357 | # User Modules And Translation Layers |
@@ -421,7 +438,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
421 | CONFIG_BLK_DEV_RAM=y | 438 | CONFIG_BLK_DEV_RAM=y |
422 | CONFIG_BLK_DEV_RAM_COUNT=16 | 439 | CONFIG_BLK_DEV_RAM_COUNT=16 |
423 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 440 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
424 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 441 | # CONFIG_BLK_DEV_XIP is not set |
425 | # CONFIG_CDROM_PKTCDVD is not set | 442 | # CONFIG_CDROM_PKTCDVD is not set |
426 | # CONFIG_ATA_OVER_ETH is not set | 443 | # CONFIG_ATA_OVER_ETH is not set |
427 | CONFIG_MISC_DEVICES=y | 444 | CONFIG_MISC_DEVICES=y |
@@ -429,12 +446,14 @@ CONFIG_MISC_DEVICES=y | |||
429 | # CONFIG_EEPROM_93CX6 is not set | 446 | # CONFIG_EEPROM_93CX6 is not set |
430 | # CONFIG_SGI_IOC4 is not set | 447 | # CONFIG_SGI_IOC4 is not set |
431 | # CONFIG_TIFM_CORE is not set | 448 | # CONFIG_TIFM_CORE is not set |
449 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
450 | CONFIG_HAVE_IDE=y | ||
432 | CONFIG_IDE=y | 451 | CONFIG_IDE=y |
433 | CONFIG_IDE_MAX_HWIFS=4 | 452 | CONFIG_IDE_MAX_HWIFS=4 |
434 | CONFIG_BLK_DEV_IDE=y | 453 | CONFIG_BLK_DEV_IDE=y |
435 | 454 | ||
436 | # | 455 | # |
437 | # Please see Documentation/ide.txt for help/info on IDE drives | 456 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
438 | # | 457 | # |
439 | # CONFIG_BLK_DEV_IDE_SATA is not set | 458 | # CONFIG_BLK_DEV_IDE_SATA is not set |
440 | CONFIG_BLK_DEV_IDEDISK=y | 459 | CONFIG_BLK_DEV_IDEDISK=y |
@@ -450,12 +469,12 @@ CONFIG_IDE_PROC_FS=y | |||
450 | # | 469 | # |
451 | CONFIG_IDE_GENERIC=y | 470 | CONFIG_IDE_GENERIC=y |
452 | # CONFIG_BLK_DEV_PLATFORM is not set | 471 | # CONFIG_BLK_DEV_PLATFORM is not set |
472 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
453 | 473 | ||
454 | # | 474 | # |
455 | # PCI IDE chipsets support | 475 | # PCI IDE chipsets support |
456 | # | 476 | # |
457 | CONFIG_BLK_DEV_IDEPCI=y | 477 | CONFIG_BLK_DEV_IDEPCI=y |
458 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
459 | CONFIG_IDEPCI_PCIBUS_ORDER=y | 478 | CONFIG_IDEPCI_PCIBUS_ORDER=y |
460 | # CONFIG_BLK_DEV_OFFBOARD is not set | 479 | # CONFIG_BLK_DEV_OFFBOARD is not set |
461 | CONFIG_BLK_DEV_GENERIC=y | 480 | CONFIG_BLK_DEV_GENERIC=y |
@@ -486,7 +505,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
486 | # CONFIG_BLK_DEV_TRM290 is not set | 505 | # CONFIG_BLK_DEV_TRM290 is not set |
487 | CONFIG_BLK_DEV_VIA82CXXX=y | 506 | CONFIG_BLK_DEV_VIA82CXXX=y |
488 | # CONFIG_BLK_DEV_TC86C001 is not set | 507 | # CONFIG_BLK_DEV_TC86C001 is not set |
489 | # CONFIG_IDE_ARM is not set | ||
490 | CONFIG_BLK_DEV_IDEDMA=y | 508 | CONFIG_BLK_DEV_IDEDMA=y |
491 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 509 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
492 | # CONFIG_BLK_DEV_HD is not set | 510 | # CONFIG_BLK_DEV_HD is not set |
@@ -532,6 +550,7 @@ CONFIG_PHYLIB=y | |||
532 | # CONFIG_SMSC_PHY is not set | 550 | # CONFIG_SMSC_PHY is not set |
533 | # CONFIG_BROADCOM_PHY is not set | 551 | # CONFIG_BROADCOM_PHY is not set |
534 | # CONFIG_ICPLUS_PHY is not set | 552 | # CONFIG_ICPLUS_PHY is not set |
553 | # CONFIG_REALTEK_PHY is not set | ||
535 | # CONFIG_FIXED_PHY is not set | 554 | # CONFIG_FIXED_PHY is not set |
536 | # CONFIG_MDIO_BITBANG is not set | 555 | # CONFIG_MDIO_BITBANG is not set |
537 | CONFIG_NET_ETHERNET=y | 556 | CONFIG_NET_ETHERNET=y |
@@ -559,6 +578,7 @@ CONFIG_E100=y | |||
559 | # CONFIG_NE2K_PCI is not set | 578 | # CONFIG_NE2K_PCI is not set |
560 | # CONFIG_8139CP is not set | 579 | # CONFIG_8139CP is not set |
561 | # CONFIG_8139TOO is not set | 580 | # CONFIG_8139TOO is not set |
581 | # CONFIG_R6040 is not set | ||
562 | # CONFIG_SIS900 is not set | 582 | # CONFIG_SIS900 is not set |
563 | # CONFIG_EPIC100 is not set | 583 | # CONFIG_EPIC100 is not set |
564 | # CONFIG_SUNDANCE is not set | 584 | # CONFIG_SUNDANCE is not set |
@@ -570,7 +590,9 @@ CONFIG_NETDEV_1000=y | |||
570 | # CONFIG_DL2K is not set | 590 | # CONFIG_DL2K is not set |
571 | # CONFIG_E1000 is not set | 591 | # CONFIG_E1000 is not set |
572 | # CONFIG_E1000E is not set | 592 | # CONFIG_E1000E is not set |
593 | # CONFIG_E1000E_ENABLED is not set | ||
573 | # CONFIG_IP1000 is not set | 594 | # CONFIG_IP1000 is not set |
595 | # CONFIG_IGB is not set | ||
574 | # CONFIG_NS83820 is not set | 596 | # CONFIG_NS83820 is not set |
575 | # CONFIG_HAMACHI is not set | 597 | # CONFIG_HAMACHI is not set |
576 | # CONFIG_YELLOWFIN is not set | 598 | # CONFIG_YELLOWFIN is not set |
@@ -597,6 +619,7 @@ CONFIG_NETDEV_10000=y | |||
597 | # CONFIG_NIU is not set | 619 | # CONFIG_NIU is not set |
598 | # CONFIG_MLX4_CORE is not set | 620 | # CONFIG_MLX4_CORE is not set |
599 | # CONFIG_TEHUTI is not set | 621 | # CONFIG_TEHUTI is not set |
622 | # CONFIG_BNX2X is not set | ||
600 | # CONFIG_TR is not set | 623 | # CONFIG_TR is not set |
601 | 624 | ||
602 | # | 625 | # |
@@ -609,7 +632,6 @@ CONFIG_NETDEV_10000=y | |||
609 | # CONFIG_HIPPI is not set | 632 | # CONFIG_HIPPI is not set |
610 | # CONFIG_PPP is not set | 633 | # CONFIG_PPP is not set |
611 | # CONFIG_SLIP is not set | 634 | # CONFIG_SLIP is not set |
612 | # CONFIG_SHAPER is not set | ||
613 | # CONFIG_NETCONSOLE is not set | 635 | # CONFIG_NETCONSOLE is not set |
614 | # CONFIG_NETPOLL is not set | 636 | # CONFIG_NETPOLL is not set |
615 | # CONFIG_NET_POLL_CONTROLLER is not set | 637 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -652,6 +674,7 @@ CONFIG_INPUT=y | |||
652 | # | 674 | # |
653 | # CONFIG_VT is not set | 675 | # CONFIG_VT is not set |
654 | # CONFIG_SERIAL_NONSTANDARD is not set | 676 | # CONFIG_SERIAL_NONSTANDARD is not set |
677 | # CONFIG_NOZOMI is not set | ||
655 | 678 | ||
656 | # | 679 | # |
657 | # Serial drivers | 680 | # Serial drivers |
@@ -725,14 +748,12 @@ CONFIG_I2C_MPC=y | |||
725 | # | 748 | # |
726 | # Miscellaneous I2C Chip support | 749 | # Miscellaneous I2C Chip support |
727 | # | 750 | # |
728 | CONFIG_SENSORS_DS1337=y | ||
729 | # CONFIG_SENSORS_DS1374 is not set | ||
730 | # CONFIG_DS1682 is not set | 751 | # CONFIG_DS1682 is not set |
731 | # CONFIG_SENSORS_EEPROM is not set | 752 | # CONFIG_SENSORS_EEPROM is not set |
732 | # CONFIG_SENSORS_PCF8574 is not set | 753 | # CONFIG_SENSORS_PCF8574 is not set |
733 | # CONFIG_SENSORS_PCA9539 is not set | 754 | # CONFIG_PCF8575 is not set |
734 | # CONFIG_SENSORS_PCF8591 is not set | 755 | # CONFIG_SENSORS_PCF8591 is not set |
735 | # CONFIG_SENSORS_M41T00 is not set | 756 | # CONFIG_TPS65010 is not set |
736 | # CONFIG_SENSORS_MAX6875 is not set | 757 | # CONFIG_SENSORS_MAX6875 is not set |
737 | # CONFIG_SENSORS_TSL2550 is not set | 758 | # CONFIG_SENSORS_TSL2550 is not set |
738 | # CONFIG_I2C_DEBUG_CORE is not set | 759 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -757,6 +778,7 @@ CONFIG_HWMON=y | |||
757 | # CONFIG_SENSORS_ADM1031 is not set | 778 | # CONFIG_SENSORS_ADM1031 is not set |
758 | # CONFIG_SENSORS_ADM9240 is not set | 779 | # CONFIG_SENSORS_ADM9240 is not set |
759 | # CONFIG_SENSORS_ADT7470 is not set | 780 | # CONFIG_SENSORS_ADT7470 is not set |
781 | # CONFIG_SENSORS_ADT7473 is not set | ||
760 | # CONFIG_SENSORS_ATXP1 is not set | 782 | # CONFIG_SENSORS_ATXP1 is not set |
761 | # CONFIG_SENSORS_DS1621 is not set | 783 | # CONFIG_SENSORS_DS1621 is not set |
762 | # CONFIG_SENSORS_I5K_AMB is not set | 784 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -786,6 +808,7 @@ CONFIG_SENSORS_LM75=y | |||
786 | # CONFIG_SENSORS_SMSC47M1 is not set | 808 | # CONFIG_SENSORS_SMSC47M1 is not set |
787 | # CONFIG_SENSORS_SMSC47M192 is not set | 809 | # CONFIG_SENSORS_SMSC47M192 is not set |
788 | # CONFIG_SENSORS_SMSC47B397 is not set | 810 | # CONFIG_SENSORS_SMSC47B397 is not set |
811 | # CONFIG_SENSORS_ADS7828 is not set | ||
789 | # CONFIG_SENSORS_THMC50 is not set | 812 | # CONFIG_SENSORS_THMC50 is not set |
790 | # CONFIG_SENSORS_VIA686A is not set | 813 | # CONFIG_SENSORS_VIA686A is not set |
791 | # CONFIG_SENSORS_VT1211 is not set | 814 | # CONFIG_SENSORS_VT1211 is not set |
@@ -795,9 +818,11 @@ CONFIG_SENSORS_LM75=y | |||
795 | # CONFIG_SENSORS_W83792D is not set | 818 | # CONFIG_SENSORS_W83792D is not set |
796 | # CONFIG_SENSORS_W83793 is not set | 819 | # CONFIG_SENSORS_W83793 is not set |
797 | # CONFIG_SENSORS_W83L785TS is not set | 820 | # CONFIG_SENSORS_W83L785TS is not set |
821 | # CONFIG_SENSORS_W83L786NG is not set | ||
798 | # CONFIG_SENSORS_W83627HF is not set | 822 | # CONFIG_SENSORS_W83627HF is not set |
799 | # CONFIG_SENSORS_W83627EHF is not set | 823 | # CONFIG_SENSORS_W83627EHF is not set |
800 | CONFIG_HWMON_DEBUG_CHIP=y | 824 | CONFIG_HWMON_DEBUG_CHIP=y |
825 | # CONFIG_THERMAL is not set | ||
801 | # CONFIG_WATCHDOG is not set | 826 | # CONFIG_WATCHDOG is not set |
802 | 827 | ||
803 | # | 828 | # |
@@ -850,16 +875,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
850 | # | 875 | # |
851 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 876 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
852 | # | 877 | # |
853 | |||
854 | # | ||
855 | # USB Gadget Support | ||
856 | # | ||
857 | # CONFIG_USB_GADGET is not set | 878 | # CONFIG_USB_GADGET is not set |
858 | # CONFIG_MMC is not set | 879 | # CONFIG_MMC is not set |
880 | # CONFIG_MEMSTICK is not set | ||
859 | # CONFIG_NEW_LEDS is not set | 881 | # CONFIG_NEW_LEDS is not set |
860 | # CONFIG_INFINIBAND is not set | 882 | # CONFIG_INFINIBAND is not set |
861 | # CONFIG_EDAC is not set | 883 | # CONFIG_EDAC is not set |
862 | # CONFIG_RTC_CLASS is not set | 884 | # CONFIG_RTC_CLASS is not set |
885 | # CONFIG_DMADEVICES is not set | ||
863 | 886 | ||
864 | # | 887 | # |
865 | # Userspace I/O | 888 | # Userspace I/O |
@@ -885,12 +908,10 @@ CONFIG_FS_MBCACHE=y | |||
885 | # CONFIG_XFS_FS is not set | 908 | # CONFIG_XFS_FS is not set |
886 | # CONFIG_GFS2_FS is not set | 909 | # CONFIG_GFS2_FS is not set |
887 | # CONFIG_OCFS2_FS is not set | 910 | # CONFIG_OCFS2_FS is not set |
888 | # CONFIG_MINIX_FS is not set | 911 | CONFIG_DNOTIFY=y |
889 | # CONFIG_ROMFS_FS is not set | ||
890 | CONFIG_INOTIFY=y | 912 | CONFIG_INOTIFY=y |
891 | CONFIG_INOTIFY_USER=y | 913 | CONFIG_INOTIFY_USER=y |
892 | # CONFIG_QUOTA is not set | 914 | # CONFIG_QUOTA is not set |
893 | CONFIG_DNOTIFY=y | ||
894 | # CONFIG_AUTOFS_FS is not set | 915 | # CONFIG_AUTOFS_FS is not set |
895 | # CONFIG_AUTOFS4_FS is not set | 916 | # CONFIG_AUTOFS4_FS is not set |
896 | # CONFIG_FUSE_FS is not set | 917 | # CONFIG_FUSE_FS is not set |
@@ -943,8 +964,10 @@ CONFIG_JFFS2_RTIME=y | |||
943 | # CONFIG_JFFS2_RUBIN is not set | 964 | # CONFIG_JFFS2_RUBIN is not set |
944 | CONFIG_CRAMFS=y | 965 | CONFIG_CRAMFS=y |
945 | # CONFIG_VXFS_FS is not set | 966 | # CONFIG_VXFS_FS is not set |
967 | # CONFIG_MINIX_FS is not set | ||
946 | # CONFIG_HPFS_FS is not set | 968 | # CONFIG_HPFS_FS is not set |
947 | # CONFIG_QNX4FS_FS is not set | 969 | # CONFIG_QNX4FS_FS is not set |
970 | # CONFIG_ROMFS_FS is not set | ||
948 | # CONFIG_SYSV_FS is not set | 971 | # CONFIG_SYSV_FS is not set |
949 | # CONFIG_UFS_FS is not set | 972 | # CONFIG_UFS_FS is not set |
950 | CONFIG_NETWORK_FILESYSTEMS=y | 973 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1002,9 +1025,6 @@ CONFIG_PLIST=y | |||
1002 | CONFIG_HAS_IOMEM=y | 1025 | CONFIG_HAS_IOMEM=y |
1003 | CONFIG_HAS_IOPORT=y | 1026 | CONFIG_HAS_IOPORT=y |
1004 | CONFIG_HAS_DMA=y | 1027 | CONFIG_HAS_DMA=y |
1005 | CONFIG_INSTRUMENTATION=y | ||
1006 | # CONFIG_PROFILING is not set | ||
1007 | # CONFIG_MARKERS is not set | ||
1008 | 1028 | ||
1009 | # | 1029 | # |
1010 | # Kernel hacking | 1030 | # Kernel hacking |
@@ -1018,6 +1038,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1018 | # CONFIG_HEADERS_CHECK is not set | 1038 | # CONFIG_HEADERS_CHECK is not set |
1019 | # CONFIG_DEBUG_KERNEL is not set | 1039 | # CONFIG_DEBUG_KERNEL is not set |
1020 | # CONFIG_SLUB_DEBUG_ON is not set | 1040 | # CONFIG_SLUB_DEBUG_ON is not set |
1041 | # CONFIG_SLUB_STATS is not set | ||
1021 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1042 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1022 | # CONFIG_SAMPLES is not set | 1043 | # CONFIG_SAMPLES is not set |
1023 | # CONFIG_PPC_EARLY_DEBUG is not set | 1044 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1028,5 +1049,49 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1028 | # CONFIG_KEYS is not set | 1049 | # CONFIG_KEYS is not set |
1029 | # CONFIG_SECURITY is not set | 1050 | # CONFIG_SECURITY is not set |
1030 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1051 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1031 | # CONFIG_CRYPTO is not set | 1052 | CONFIG_CRYPTO=y |
1053 | # CONFIG_CRYPTO_SEQIV is not set | ||
1054 | # CONFIG_CRYPTO_MANAGER is not set | ||
1055 | # CONFIG_CRYPTO_HMAC is not set | ||
1056 | # CONFIG_CRYPTO_XCBC is not set | ||
1057 | # CONFIG_CRYPTO_NULL is not set | ||
1058 | # CONFIG_CRYPTO_MD4 is not set | ||
1059 | # CONFIG_CRYPTO_MD5 is not set | ||
1060 | # CONFIG_CRYPTO_SHA1 is not set | ||
1061 | # CONFIG_CRYPTO_SHA256 is not set | ||
1062 | # CONFIG_CRYPTO_SHA512 is not set | ||
1063 | # CONFIG_CRYPTO_WP512 is not set | ||
1064 | # CONFIG_CRYPTO_TGR192 is not set | ||
1065 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1066 | # CONFIG_CRYPTO_ECB is not set | ||
1067 | # CONFIG_CRYPTO_CBC is not set | ||
1068 | # CONFIG_CRYPTO_PCBC is not set | ||
1069 | # CONFIG_CRYPTO_LRW is not set | ||
1070 | # CONFIG_CRYPTO_XTS is not set | ||
1071 | # CONFIG_CRYPTO_CTR is not set | ||
1072 | # CONFIG_CRYPTO_GCM is not set | ||
1073 | # CONFIG_CRYPTO_CCM is not set | ||
1074 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1075 | # CONFIG_CRYPTO_DES is not set | ||
1076 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1077 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1078 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1079 | # CONFIG_CRYPTO_SERPENT is not set | ||
1080 | # CONFIG_CRYPTO_AES is not set | ||
1081 | # CONFIG_CRYPTO_CAST5 is not set | ||
1082 | # CONFIG_CRYPTO_CAST6 is not set | ||
1083 | # CONFIG_CRYPTO_TEA is not set | ||
1084 | # CONFIG_CRYPTO_ARC4 is not set | ||
1085 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1086 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1087 | # CONFIG_CRYPTO_SEED is not set | ||
1088 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1089 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1090 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1091 | # CONFIG_CRYPTO_CRC32C is not set | ||
1092 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1093 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1094 | # CONFIG_CRYPTO_LZO is not set | ||
1095 | CONFIG_CRYPTO_HW=y | ||
1096 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1032 | # CONFIG_PPC_CLOCK is not set | 1097 | # CONFIG_PPC_CLOCK is not set |
diff --git a/arch/powerpc/configs/tqm8541_defconfig b/arch/powerpc/configs/tqm8541_defconfig index 1aff35f0c53a..cbf6ad2d71da 100644 --- a/arch/powerpc/configs/tqm8541_defconfig +++ b/arch/powerpc/configs/tqm8541_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Fri Jan 25 01:31:28 2008 | 4 | # Mon Mar 24 08:48:44 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
80 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +92,13 @@ CONFIG_SYSCTL_SYSCALL=y | |||
89 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
95 | # CONFIG_EPOLL is not set | 99 | # CONFIG_EPOLL is not set |
96 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +106,12 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 106 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 107 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | ||
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
104 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
105 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
106 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
@@ -124,15 +135,17 @@ CONFIG_DEFAULT_AS=y | |||
124 | # CONFIG_DEFAULT_CFQ is not set | 135 | # CONFIG_DEFAULT_CFQ is not set |
125 | # CONFIG_DEFAULT_NOOP is not set | 136 | # CONFIG_DEFAULT_NOOP is not set |
126 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 137 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
138 | CONFIG_CLASSIC_RCU=y | ||
127 | 139 | ||
128 | # | 140 | # |
129 | # Platform support | 141 | # Platform support |
130 | # | 142 | # |
131 | # CONFIG_PPC_MPC52xx is not set | 143 | # CONFIG_PPC_MPC512x is not set |
132 | # CONFIG_PPC_MPC5200 is not set | 144 | # CONFIG_PPC_MPC5121 is not set |
133 | # CONFIG_PPC_CELL is not set | 145 | # CONFIG_PPC_CELL is not set |
134 | # CONFIG_PPC_CELL_NATIVE is not set | 146 | # CONFIG_PPC_CELL_NATIVE is not set |
135 | # CONFIG_PQ2ADS is not set | 147 | # CONFIG_PQ2ADS is not set |
148 | CONFIG_MPC85xx=y | ||
136 | # CONFIG_MPC8540_ADS is not set | 149 | # CONFIG_MPC8540_ADS is not set |
137 | # CONFIG_MPC8560_ADS is not set | 150 | # CONFIG_MPC8560_ADS is not set |
138 | # CONFIG_MPC85xx_CDS is not set | 151 | # CONFIG_MPC85xx_CDS is not set |
@@ -143,8 +156,9 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
143 | CONFIG_TQM8541=y | 156 | CONFIG_TQM8541=y |
144 | # CONFIG_TQM8555 is not set | 157 | # CONFIG_TQM8555 is not set |
145 | # CONFIG_TQM8560 is not set | 158 | # CONFIG_TQM8560 is not set |
159 | # CONFIG_SBC8548 is not set | ||
160 | # CONFIG_SBC8560 is not set | ||
146 | CONFIG_TQM85xx=y | 161 | CONFIG_TQM85xx=y |
147 | CONFIG_MPC85xx=y | ||
148 | # CONFIG_IPIC is not set | 162 | # CONFIG_IPIC is not set |
149 | CONFIG_MPIC=y | 163 | CONFIG_MPIC=y |
150 | # CONFIG_MPIC_WEIRD is not set | 164 | # CONFIG_MPIC_WEIRD is not set |
@@ -174,13 +188,17 @@ CONFIG_HZ_250=y | |||
174 | # CONFIG_HZ_300 is not set | 188 | # CONFIG_HZ_300 is not set |
175 | # CONFIG_HZ_1000 is not set | 189 | # CONFIG_HZ_1000 is not set |
176 | CONFIG_HZ=250 | 190 | CONFIG_HZ=250 |
191 | # CONFIG_SCHED_HRTICK is not set | ||
177 | CONFIG_PREEMPT_NONE=y | 192 | CONFIG_PREEMPT_NONE=y |
178 | # CONFIG_PREEMPT_VOLUNTARY is not set | 193 | # CONFIG_PREEMPT_VOLUNTARY is not set |
179 | # CONFIG_PREEMPT is not set | 194 | # CONFIG_PREEMPT is not set |
180 | CONFIG_BINFMT_ELF=y | 195 | CONFIG_BINFMT_ELF=y |
181 | # CONFIG_BINFMT_MISC is not set | 196 | # CONFIG_BINFMT_MISC is not set |
182 | CONFIG_MATH_EMULATION=y | 197 | CONFIG_MATH_EMULATION=y |
198 | # CONFIG_IOMMU_HELPER is not set | ||
183 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 199 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
200 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
201 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
184 | CONFIG_ARCH_FLATMEM_ENABLE=y | 202 | CONFIG_ARCH_FLATMEM_ENABLE=y |
185 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 203 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
186 | CONFIG_SELECT_MEMORY_MODEL=y | 204 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -199,11 +217,7 @@ CONFIG_VIRT_TO_BUS=y | |||
199 | # CONFIG_PROC_DEVICETREE is not set | 217 | # CONFIG_PROC_DEVICETREE is not set |
200 | # CONFIG_CMDLINE_BOOL is not set | 218 | # CONFIG_CMDLINE_BOOL is not set |
201 | # CONFIG_PM is not set | 219 | # CONFIG_PM is not set |
202 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
203 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
204 | CONFIG_SECCOMP=y | 220 | CONFIG_SECCOMP=y |
205 | CONFIG_WANT_DEVICE_TREE=y | ||
206 | CONFIG_DEVICE_TREE="tqm8541.dts" | ||
207 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
208 | 222 | ||
209 | # | 223 | # |
@@ -250,6 +264,7 @@ CONFIG_XFRM=y | |||
250 | # CONFIG_XFRM_USER is not set | 264 | # CONFIG_XFRM_USER is not set |
251 | # CONFIG_XFRM_SUB_POLICY is not set | 265 | # CONFIG_XFRM_SUB_POLICY is not set |
252 | # CONFIG_XFRM_MIGRATE is not set | 266 | # CONFIG_XFRM_MIGRATE is not set |
267 | # CONFIG_XFRM_STATISTICS is not set | ||
253 | # CONFIG_NET_KEY is not set | 268 | # CONFIG_NET_KEY is not set |
254 | CONFIG_INET=y | 269 | CONFIG_INET=y |
255 | CONFIG_IP_MULTICAST=y | 270 | CONFIG_IP_MULTICAST=y |
@@ -305,6 +320,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
305 | # | 320 | # |
306 | # CONFIG_NET_PKTGEN is not set | 321 | # CONFIG_NET_PKTGEN is not set |
307 | # CONFIG_HAMRADIO is not set | 322 | # CONFIG_HAMRADIO is not set |
323 | # CONFIG_CAN is not set | ||
308 | # CONFIG_IRDA is not set | 324 | # CONFIG_IRDA is not set |
309 | # CONFIG_BT is not set | 325 | # CONFIG_BT is not set |
310 | # CONFIG_AF_RXRPC is not set | 326 | # CONFIG_AF_RXRPC is not set |
@@ -336,6 +352,7 @@ CONFIG_MTD_CONCAT=y | |||
336 | CONFIG_MTD_PARTITIONS=y | 352 | CONFIG_MTD_PARTITIONS=y |
337 | # CONFIG_MTD_REDBOOT_PARTS is not set | 353 | # CONFIG_MTD_REDBOOT_PARTS is not set |
338 | CONFIG_MTD_CMDLINE_PARTS=y | 354 | CONFIG_MTD_CMDLINE_PARTS=y |
355 | # CONFIG_MTD_OF_PARTS is not set | ||
339 | 356 | ||
340 | # | 357 | # |
341 | # User Modules And Translation Layers | 358 | # User Modules And Translation Layers |
@@ -422,7 +439,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
422 | CONFIG_BLK_DEV_RAM=y | 439 | CONFIG_BLK_DEV_RAM=y |
423 | CONFIG_BLK_DEV_RAM_COUNT=16 | 440 | CONFIG_BLK_DEV_RAM_COUNT=16 |
424 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 441 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
425 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 442 | # CONFIG_BLK_DEV_XIP is not set |
426 | # CONFIG_CDROM_PKTCDVD is not set | 443 | # CONFIG_CDROM_PKTCDVD is not set |
427 | # CONFIG_ATA_OVER_ETH is not set | 444 | # CONFIG_ATA_OVER_ETH is not set |
428 | CONFIG_MISC_DEVICES=y | 445 | CONFIG_MISC_DEVICES=y |
@@ -430,12 +447,14 @@ CONFIG_MISC_DEVICES=y | |||
430 | # CONFIG_EEPROM_93CX6 is not set | 447 | # CONFIG_EEPROM_93CX6 is not set |
431 | # CONFIG_SGI_IOC4 is not set | 448 | # CONFIG_SGI_IOC4 is not set |
432 | # CONFIG_TIFM_CORE is not set | 449 | # CONFIG_TIFM_CORE is not set |
450 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
451 | CONFIG_HAVE_IDE=y | ||
433 | CONFIG_IDE=y | 452 | CONFIG_IDE=y |
434 | CONFIG_IDE_MAX_HWIFS=4 | 453 | CONFIG_IDE_MAX_HWIFS=4 |
435 | CONFIG_BLK_DEV_IDE=y | 454 | CONFIG_BLK_DEV_IDE=y |
436 | 455 | ||
437 | # | 456 | # |
438 | # Please see Documentation/ide.txt for help/info on IDE drives | 457 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
439 | # | 458 | # |
440 | # CONFIG_BLK_DEV_IDE_SATA is not set | 459 | # CONFIG_BLK_DEV_IDE_SATA is not set |
441 | CONFIG_BLK_DEV_IDEDISK=y | 460 | CONFIG_BLK_DEV_IDEDISK=y |
@@ -451,12 +470,12 @@ CONFIG_IDE_PROC_FS=y | |||
451 | # | 470 | # |
452 | CONFIG_IDE_GENERIC=y | 471 | CONFIG_IDE_GENERIC=y |
453 | # CONFIG_BLK_DEV_PLATFORM is not set | 472 | # CONFIG_BLK_DEV_PLATFORM is not set |
473 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
454 | 474 | ||
455 | # | 475 | # |
456 | # PCI IDE chipsets support | 476 | # PCI IDE chipsets support |
457 | # | 477 | # |
458 | CONFIG_BLK_DEV_IDEPCI=y | 478 | CONFIG_BLK_DEV_IDEPCI=y |
459 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
460 | CONFIG_IDEPCI_PCIBUS_ORDER=y | 479 | CONFIG_IDEPCI_PCIBUS_ORDER=y |
461 | # CONFIG_BLK_DEV_OFFBOARD is not set | 480 | # CONFIG_BLK_DEV_OFFBOARD is not set |
462 | CONFIG_BLK_DEV_GENERIC=y | 481 | CONFIG_BLK_DEV_GENERIC=y |
@@ -487,7 +506,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
487 | # CONFIG_BLK_DEV_TRM290 is not set | 506 | # CONFIG_BLK_DEV_TRM290 is not set |
488 | CONFIG_BLK_DEV_VIA82CXXX=y | 507 | CONFIG_BLK_DEV_VIA82CXXX=y |
489 | # CONFIG_BLK_DEV_TC86C001 is not set | 508 | # CONFIG_BLK_DEV_TC86C001 is not set |
490 | # CONFIG_IDE_ARM is not set | ||
491 | CONFIG_BLK_DEV_IDEDMA=y | 509 | CONFIG_BLK_DEV_IDEDMA=y |
492 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 510 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
493 | # CONFIG_BLK_DEV_HD is not set | 511 | # CONFIG_BLK_DEV_HD is not set |
@@ -533,6 +551,7 @@ CONFIG_PHYLIB=y | |||
533 | # CONFIG_SMSC_PHY is not set | 551 | # CONFIG_SMSC_PHY is not set |
534 | # CONFIG_BROADCOM_PHY is not set | 552 | # CONFIG_BROADCOM_PHY is not set |
535 | # CONFIG_ICPLUS_PHY is not set | 553 | # CONFIG_ICPLUS_PHY is not set |
554 | # CONFIG_REALTEK_PHY is not set | ||
536 | # CONFIG_FIXED_PHY is not set | 555 | # CONFIG_FIXED_PHY is not set |
537 | # CONFIG_MDIO_BITBANG is not set | 556 | # CONFIG_MDIO_BITBANG is not set |
538 | CONFIG_NET_ETHERNET=y | 557 | CONFIG_NET_ETHERNET=y |
@@ -560,6 +579,7 @@ CONFIG_E100=y | |||
560 | # CONFIG_NE2K_PCI is not set | 579 | # CONFIG_NE2K_PCI is not set |
561 | # CONFIG_8139CP is not set | 580 | # CONFIG_8139CP is not set |
562 | # CONFIG_8139TOO is not set | 581 | # CONFIG_8139TOO is not set |
582 | # CONFIG_R6040 is not set | ||
563 | # CONFIG_SIS900 is not set | 583 | # CONFIG_SIS900 is not set |
564 | # CONFIG_EPIC100 is not set | 584 | # CONFIG_EPIC100 is not set |
565 | # CONFIG_SUNDANCE is not set | 585 | # CONFIG_SUNDANCE is not set |
@@ -572,7 +592,9 @@ CONFIG_NETDEV_1000=y | |||
572 | # CONFIG_DL2K is not set | 592 | # CONFIG_DL2K is not set |
573 | # CONFIG_E1000 is not set | 593 | # CONFIG_E1000 is not set |
574 | # CONFIG_E1000E is not set | 594 | # CONFIG_E1000E is not set |
595 | # CONFIG_E1000E_ENABLED is not set | ||
575 | # CONFIG_IP1000 is not set | 596 | # CONFIG_IP1000 is not set |
597 | # CONFIG_IGB is not set | ||
576 | # CONFIG_NS83820 is not set | 598 | # CONFIG_NS83820 is not set |
577 | # CONFIG_HAMACHI is not set | 599 | # CONFIG_HAMACHI is not set |
578 | # CONFIG_YELLOWFIN is not set | 600 | # CONFIG_YELLOWFIN is not set |
@@ -599,6 +621,7 @@ CONFIG_NETDEV_10000=y | |||
599 | # CONFIG_NIU is not set | 621 | # CONFIG_NIU is not set |
600 | # CONFIG_MLX4_CORE is not set | 622 | # CONFIG_MLX4_CORE is not set |
601 | # CONFIG_TEHUTI is not set | 623 | # CONFIG_TEHUTI is not set |
624 | # CONFIG_BNX2X is not set | ||
602 | # CONFIG_TR is not set | 625 | # CONFIG_TR is not set |
603 | 626 | ||
604 | # | 627 | # |
@@ -611,7 +634,6 @@ CONFIG_NETDEV_10000=y | |||
611 | # CONFIG_HIPPI is not set | 634 | # CONFIG_HIPPI is not set |
612 | # CONFIG_PPP is not set | 635 | # CONFIG_PPP is not set |
613 | # CONFIG_SLIP is not set | 636 | # CONFIG_SLIP is not set |
614 | # CONFIG_SHAPER is not set | ||
615 | # CONFIG_NETCONSOLE is not set | 637 | # CONFIG_NETCONSOLE is not set |
616 | # CONFIG_NETPOLL is not set | 638 | # CONFIG_NETPOLL is not set |
617 | # CONFIG_NET_POLL_CONTROLLER is not set | 639 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -654,6 +676,7 @@ CONFIG_INPUT=y | |||
654 | # | 676 | # |
655 | # CONFIG_VT is not set | 677 | # CONFIG_VT is not set |
656 | # CONFIG_SERIAL_NONSTANDARD is not set | 678 | # CONFIG_SERIAL_NONSTANDARD is not set |
679 | # CONFIG_NOZOMI is not set | ||
657 | 680 | ||
658 | # | 681 | # |
659 | # Serial drivers | 682 | # Serial drivers |
@@ -735,14 +758,12 @@ CONFIG_I2C_MPC=y | |||
735 | # | 758 | # |
736 | # Miscellaneous I2C Chip support | 759 | # Miscellaneous I2C Chip support |
737 | # | 760 | # |
738 | CONFIG_SENSORS_DS1337=y | ||
739 | # CONFIG_SENSORS_DS1374 is not set | ||
740 | # CONFIG_DS1682 is not set | 761 | # CONFIG_DS1682 is not set |
741 | # CONFIG_SENSORS_EEPROM is not set | 762 | # CONFIG_SENSORS_EEPROM is not set |
742 | # CONFIG_SENSORS_PCF8574 is not set | 763 | # CONFIG_SENSORS_PCF8574 is not set |
743 | # CONFIG_SENSORS_PCA9539 is not set | 764 | # CONFIG_PCF8575 is not set |
744 | # CONFIG_SENSORS_PCF8591 is not set | 765 | # CONFIG_SENSORS_PCF8591 is not set |
745 | # CONFIG_SENSORS_M41T00 is not set | 766 | # CONFIG_TPS65010 is not set |
746 | # CONFIG_SENSORS_MAX6875 is not set | 767 | # CONFIG_SENSORS_MAX6875 is not set |
747 | # CONFIG_SENSORS_TSL2550 is not set | 768 | # CONFIG_SENSORS_TSL2550 is not set |
748 | # CONFIG_I2C_DEBUG_CORE is not set | 769 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -767,6 +788,7 @@ CONFIG_HWMON=y | |||
767 | # CONFIG_SENSORS_ADM1031 is not set | 788 | # CONFIG_SENSORS_ADM1031 is not set |
768 | # CONFIG_SENSORS_ADM9240 is not set | 789 | # CONFIG_SENSORS_ADM9240 is not set |
769 | # CONFIG_SENSORS_ADT7470 is not set | 790 | # CONFIG_SENSORS_ADT7470 is not set |
791 | # CONFIG_SENSORS_ADT7473 is not set | ||
770 | # CONFIG_SENSORS_ATXP1 is not set | 792 | # CONFIG_SENSORS_ATXP1 is not set |
771 | # CONFIG_SENSORS_DS1621 is not set | 793 | # CONFIG_SENSORS_DS1621 is not set |
772 | # CONFIG_SENSORS_I5K_AMB is not set | 794 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -796,6 +818,7 @@ CONFIG_SENSORS_LM75=y | |||
796 | # CONFIG_SENSORS_SMSC47M1 is not set | 818 | # CONFIG_SENSORS_SMSC47M1 is not set |
797 | # CONFIG_SENSORS_SMSC47M192 is not set | 819 | # CONFIG_SENSORS_SMSC47M192 is not set |
798 | # CONFIG_SENSORS_SMSC47B397 is not set | 820 | # CONFIG_SENSORS_SMSC47B397 is not set |
821 | # CONFIG_SENSORS_ADS7828 is not set | ||
799 | # CONFIG_SENSORS_THMC50 is not set | 822 | # CONFIG_SENSORS_THMC50 is not set |
800 | # CONFIG_SENSORS_VIA686A is not set | 823 | # CONFIG_SENSORS_VIA686A is not set |
801 | # CONFIG_SENSORS_VT1211 is not set | 824 | # CONFIG_SENSORS_VT1211 is not set |
@@ -805,9 +828,11 @@ CONFIG_SENSORS_LM75=y | |||
805 | # CONFIG_SENSORS_W83792D is not set | 828 | # CONFIG_SENSORS_W83792D is not set |
806 | # CONFIG_SENSORS_W83793 is not set | 829 | # CONFIG_SENSORS_W83793 is not set |
807 | # CONFIG_SENSORS_W83L785TS is not set | 830 | # CONFIG_SENSORS_W83L785TS is not set |
831 | # CONFIG_SENSORS_W83L786NG is not set | ||
808 | # CONFIG_SENSORS_W83627HF is not set | 832 | # CONFIG_SENSORS_W83627HF is not set |
809 | # CONFIG_SENSORS_W83627EHF is not set | 833 | # CONFIG_SENSORS_W83627EHF is not set |
810 | CONFIG_HWMON_DEBUG_CHIP=y | 834 | CONFIG_HWMON_DEBUG_CHIP=y |
835 | # CONFIG_THERMAL is not set | ||
811 | # CONFIG_WATCHDOG is not set | 836 | # CONFIG_WATCHDOG is not set |
812 | 837 | ||
813 | # | 838 | # |
@@ -860,16 +885,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
860 | # | 885 | # |
861 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
862 | # | 887 | # |
863 | |||
864 | # | ||
865 | # USB Gadget Support | ||
866 | # | ||
867 | # CONFIG_USB_GADGET is not set | 888 | # CONFIG_USB_GADGET is not set |
868 | # CONFIG_MMC is not set | 889 | # CONFIG_MMC is not set |
890 | # CONFIG_MEMSTICK is not set | ||
869 | # CONFIG_NEW_LEDS is not set | 891 | # CONFIG_NEW_LEDS is not set |
870 | # CONFIG_INFINIBAND is not set | 892 | # CONFIG_INFINIBAND is not set |
871 | # CONFIG_EDAC is not set | 893 | # CONFIG_EDAC is not set |
872 | # CONFIG_RTC_CLASS is not set | 894 | # CONFIG_RTC_CLASS is not set |
895 | # CONFIG_DMADEVICES is not set | ||
873 | 896 | ||
874 | # | 897 | # |
875 | # Userspace I/O | 898 | # Userspace I/O |
@@ -895,12 +918,10 @@ CONFIG_FS_MBCACHE=y | |||
895 | # CONFIG_XFS_FS is not set | 918 | # CONFIG_XFS_FS is not set |
896 | # CONFIG_GFS2_FS is not set | 919 | # CONFIG_GFS2_FS is not set |
897 | # CONFIG_OCFS2_FS is not set | 920 | # CONFIG_OCFS2_FS is not set |
898 | # CONFIG_MINIX_FS is not set | 921 | CONFIG_DNOTIFY=y |
899 | # CONFIG_ROMFS_FS is not set | ||
900 | CONFIG_INOTIFY=y | 922 | CONFIG_INOTIFY=y |
901 | CONFIG_INOTIFY_USER=y | 923 | CONFIG_INOTIFY_USER=y |
902 | # CONFIG_QUOTA is not set | 924 | # CONFIG_QUOTA is not set |
903 | CONFIG_DNOTIFY=y | ||
904 | # CONFIG_AUTOFS_FS is not set | 925 | # CONFIG_AUTOFS_FS is not set |
905 | # CONFIG_AUTOFS4_FS is not set | 926 | # CONFIG_AUTOFS4_FS is not set |
906 | # CONFIG_FUSE_FS is not set | 927 | # CONFIG_FUSE_FS is not set |
@@ -953,8 +974,10 @@ CONFIG_JFFS2_RTIME=y | |||
953 | # CONFIG_JFFS2_RUBIN is not set | 974 | # CONFIG_JFFS2_RUBIN is not set |
954 | CONFIG_CRAMFS=y | 975 | CONFIG_CRAMFS=y |
955 | # CONFIG_VXFS_FS is not set | 976 | # CONFIG_VXFS_FS is not set |
977 | # CONFIG_MINIX_FS is not set | ||
956 | # CONFIG_HPFS_FS is not set | 978 | # CONFIG_HPFS_FS is not set |
957 | # CONFIG_QNX4FS_FS is not set | 979 | # CONFIG_QNX4FS_FS is not set |
980 | # CONFIG_ROMFS_FS is not set | ||
958 | # CONFIG_SYSV_FS is not set | 981 | # CONFIG_SYSV_FS is not set |
959 | # CONFIG_UFS_FS is not set | 982 | # CONFIG_UFS_FS is not set |
960 | CONFIG_NETWORK_FILESYSTEMS=y | 983 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1012,9 +1035,6 @@ CONFIG_PLIST=y | |||
1012 | CONFIG_HAS_IOMEM=y | 1035 | CONFIG_HAS_IOMEM=y |
1013 | CONFIG_HAS_IOPORT=y | 1036 | CONFIG_HAS_IOPORT=y |
1014 | CONFIG_HAS_DMA=y | 1037 | CONFIG_HAS_DMA=y |
1015 | CONFIG_INSTRUMENTATION=y | ||
1016 | # CONFIG_PROFILING is not set | ||
1017 | # CONFIG_MARKERS is not set | ||
1018 | 1038 | ||
1019 | # | 1039 | # |
1020 | # Kernel hacking | 1040 | # Kernel hacking |
@@ -1028,6 +1048,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1028 | # CONFIG_HEADERS_CHECK is not set | 1048 | # CONFIG_HEADERS_CHECK is not set |
1029 | # CONFIG_DEBUG_KERNEL is not set | 1049 | # CONFIG_DEBUG_KERNEL is not set |
1030 | # CONFIG_SLUB_DEBUG_ON is not set | 1050 | # CONFIG_SLUB_DEBUG_ON is not set |
1051 | # CONFIG_SLUB_STATS is not set | ||
1031 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1052 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1032 | # CONFIG_SAMPLES is not set | 1053 | # CONFIG_SAMPLES is not set |
1033 | # CONFIG_KGDB_CONSOLE is not set | 1054 | # CONFIG_KGDB_CONSOLE is not set |
@@ -1039,6 +1060,50 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1039 | # CONFIG_KEYS is not set | 1060 | # CONFIG_KEYS is not set |
1040 | # CONFIG_SECURITY is not set | 1061 | # CONFIG_SECURITY is not set |
1041 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1062 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1042 | # CONFIG_CRYPTO is not set | 1063 | CONFIG_CRYPTO=y |
1064 | # CONFIG_CRYPTO_SEQIV is not set | ||
1065 | # CONFIG_CRYPTO_MANAGER is not set | ||
1066 | # CONFIG_CRYPTO_HMAC is not set | ||
1067 | # CONFIG_CRYPTO_XCBC is not set | ||
1068 | # CONFIG_CRYPTO_NULL is not set | ||
1069 | # CONFIG_CRYPTO_MD4 is not set | ||
1070 | # CONFIG_CRYPTO_MD5 is not set | ||
1071 | # CONFIG_CRYPTO_SHA1 is not set | ||
1072 | # CONFIG_CRYPTO_SHA256 is not set | ||
1073 | # CONFIG_CRYPTO_SHA512 is not set | ||
1074 | # CONFIG_CRYPTO_WP512 is not set | ||
1075 | # CONFIG_CRYPTO_TGR192 is not set | ||
1076 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1077 | # CONFIG_CRYPTO_ECB is not set | ||
1078 | # CONFIG_CRYPTO_CBC is not set | ||
1079 | # CONFIG_CRYPTO_PCBC is not set | ||
1080 | # CONFIG_CRYPTO_LRW is not set | ||
1081 | # CONFIG_CRYPTO_XTS is not set | ||
1082 | # CONFIG_CRYPTO_CTR is not set | ||
1083 | # CONFIG_CRYPTO_GCM is not set | ||
1084 | # CONFIG_CRYPTO_CCM is not set | ||
1085 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1086 | # CONFIG_CRYPTO_DES is not set | ||
1087 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1088 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1089 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1090 | # CONFIG_CRYPTO_SERPENT is not set | ||
1091 | # CONFIG_CRYPTO_AES is not set | ||
1092 | # CONFIG_CRYPTO_CAST5 is not set | ||
1093 | # CONFIG_CRYPTO_CAST6 is not set | ||
1094 | # CONFIG_CRYPTO_TEA is not set | ||
1095 | # CONFIG_CRYPTO_ARC4 is not set | ||
1096 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1097 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1098 | # CONFIG_CRYPTO_SEED is not set | ||
1099 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1100 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1101 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1102 | # CONFIG_CRYPTO_CRC32C is not set | ||
1103 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1104 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1105 | # CONFIG_CRYPTO_LZO is not set | ||
1106 | CONFIG_CRYPTO_HW=y | ||
1107 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1043 | # CONFIG_PPC_CLOCK is not set | 1108 | # CONFIG_PPC_CLOCK is not set |
1044 | CONFIG_PPC_LIB_RHEAP=y | 1109 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/tqm8555_defconfig b/arch/powerpc/configs/tqm8555_defconfig index a3af2262128b..bbff962c8472 100644 --- a/arch/powerpc/configs/tqm8555_defconfig +++ b/arch/powerpc/configs/tqm8555_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Fri Jan 25 01:15:24 2008 | 4 | # Mon Mar 24 08:48:44 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
80 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +92,13 @@ CONFIG_SYSCTL_SYSCALL=y | |||
89 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
95 | # CONFIG_EPOLL is not set | 99 | # CONFIG_EPOLL is not set |
96 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +106,12 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 106 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 107 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | ||
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
104 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
105 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
106 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
@@ -124,15 +135,17 @@ CONFIG_DEFAULT_AS=y | |||
124 | # CONFIG_DEFAULT_CFQ is not set | 135 | # CONFIG_DEFAULT_CFQ is not set |
125 | # CONFIG_DEFAULT_NOOP is not set | 136 | # CONFIG_DEFAULT_NOOP is not set |
126 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 137 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
138 | CONFIG_CLASSIC_RCU=y | ||
127 | 139 | ||
128 | # | 140 | # |
129 | # Platform support | 141 | # Platform support |
130 | # | 142 | # |
131 | # CONFIG_PPC_MPC52xx is not set | 143 | # CONFIG_PPC_MPC512x is not set |
132 | # CONFIG_PPC_MPC5200 is not set | 144 | # CONFIG_PPC_MPC5121 is not set |
133 | # CONFIG_PPC_CELL is not set | 145 | # CONFIG_PPC_CELL is not set |
134 | # CONFIG_PPC_CELL_NATIVE is not set | 146 | # CONFIG_PPC_CELL_NATIVE is not set |
135 | # CONFIG_PQ2ADS is not set | 147 | # CONFIG_PQ2ADS is not set |
148 | CONFIG_MPC85xx=y | ||
136 | # CONFIG_MPC8540_ADS is not set | 149 | # CONFIG_MPC8540_ADS is not set |
137 | # CONFIG_MPC8560_ADS is not set | 150 | # CONFIG_MPC8560_ADS is not set |
138 | # CONFIG_MPC85xx_CDS is not set | 151 | # CONFIG_MPC85xx_CDS is not set |
@@ -143,8 +156,9 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
143 | # CONFIG_TQM8541 is not set | 156 | # CONFIG_TQM8541 is not set |
144 | CONFIG_TQM8555=y | 157 | CONFIG_TQM8555=y |
145 | # CONFIG_TQM8560 is not set | 158 | # CONFIG_TQM8560 is not set |
159 | # CONFIG_SBC8548 is not set | ||
160 | # CONFIG_SBC8560 is not set | ||
146 | CONFIG_TQM85xx=y | 161 | CONFIG_TQM85xx=y |
147 | CONFIG_MPC85xx=y | ||
148 | # CONFIG_IPIC is not set | 162 | # CONFIG_IPIC is not set |
149 | CONFIG_MPIC=y | 163 | CONFIG_MPIC=y |
150 | # CONFIG_MPIC_WEIRD is not set | 164 | # CONFIG_MPIC_WEIRD is not set |
@@ -174,13 +188,17 @@ CONFIG_HZ_250=y | |||
174 | # CONFIG_HZ_300 is not set | 188 | # CONFIG_HZ_300 is not set |
175 | # CONFIG_HZ_1000 is not set | 189 | # CONFIG_HZ_1000 is not set |
176 | CONFIG_HZ=250 | 190 | CONFIG_HZ=250 |
191 | # CONFIG_SCHED_HRTICK is not set | ||
177 | CONFIG_PREEMPT_NONE=y | 192 | CONFIG_PREEMPT_NONE=y |
178 | # CONFIG_PREEMPT_VOLUNTARY is not set | 193 | # CONFIG_PREEMPT_VOLUNTARY is not set |
179 | # CONFIG_PREEMPT is not set | 194 | # CONFIG_PREEMPT is not set |
180 | CONFIG_BINFMT_ELF=y | 195 | CONFIG_BINFMT_ELF=y |
181 | # CONFIG_BINFMT_MISC is not set | 196 | # CONFIG_BINFMT_MISC is not set |
182 | CONFIG_MATH_EMULATION=y | 197 | CONFIG_MATH_EMULATION=y |
198 | # CONFIG_IOMMU_HELPER is not set | ||
183 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 199 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
200 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
201 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
184 | CONFIG_ARCH_FLATMEM_ENABLE=y | 202 | CONFIG_ARCH_FLATMEM_ENABLE=y |
185 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 203 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
186 | CONFIG_SELECT_MEMORY_MODEL=y | 204 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -199,11 +217,7 @@ CONFIG_VIRT_TO_BUS=y | |||
199 | # CONFIG_PROC_DEVICETREE is not set | 217 | # CONFIG_PROC_DEVICETREE is not set |
200 | # CONFIG_CMDLINE_BOOL is not set | 218 | # CONFIG_CMDLINE_BOOL is not set |
201 | # CONFIG_PM is not set | 219 | # CONFIG_PM is not set |
202 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
203 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
204 | CONFIG_SECCOMP=y | 220 | CONFIG_SECCOMP=y |
205 | CONFIG_WANT_DEVICE_TREE=y | ||
206 | CONFIG_DEVICE_TREE="tqm8555.dts" | ||
207 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
208 | 222 | ||
209 | # | 223 | # |
@@ -250,6 +264,7 @@ CONFIG_XFRM=y | |||
250 | # CONFIG_XFRM_USER is not set | 264 | # CONFIG_XFRM_USER is not set |
251 | # CONFIG_XFRM_SUB_POLICY is not set | 265 | # CONFIG_XFRM_SUB_POLICY is not set |
252 | # CONFIG_XFRM_MIGRATE is not set | 266 | # CONFIG_XFRM_MIGRATE is not set |
267 | # CONFIG_XFRM_STATISTICS is not set | ||
253 | # CONFIG_NET_KEY is not set | 268 | # CONFIG_NET_KEY is not set |
254 | CONFIG_INET=y | 269 | CONFIG_INET=y |
255 | CONFIG_IP_MULTICAST=y | 270 | CONFIG_IP_MULTICAST=y |
@@ -305,6 +320,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
305 | # | 320 | # |
306 | # CONFIG_NET_PKTGEN is not set | 321 | # CONFIG_NET_PKTGEN is not set |
307 | # CONFIG_HAMRADIO is not set | 322 | # CONFIG_HAMRADIO is not set |
323 | # CONFIG_CAN is not set | ||
308 | # CONFIG_IRDA is not set | 324 | # CONFIG_IRDA is not set |
309 | # CONFIG_BT is not set | 325 | # CONFIG_BT is not set |
310 | # CONFIG_AF_RXRPC is not set | 326 | # CONFIG_AF_RXRPC is not set |
@@ -336,6 +352,7 @@ CONFIG_MTD_CONCAT=y | |||
336 | CONFIG_MTD_PARTITIONS=y | 352 | CONFIG_MTD_PARTITIONS=y |
337 | # CONFIG_MTD_REDBOOT_PARTS is not set | 353 | # CONFIG_MTD_REDBOOT_PARTS is not set |
338 | CONFIG_MTD_CMDLINE_PARTS=y | 354 | CONFIG_MTD_CMDLINE_PARTS=y |
355 | # CONFIG_MTD_OF_PARTS is not set | ||
339 | 356 | ||
340 | # | 357 | # |
341 | # User Modules And Translation Layers | 358 | # User Modules And Translation Layers |
@@ -422,7 +439,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
422 | CONFIG_BLK_DEV_RAM=y | 439 | CONFIG_BLK_DEV_RAM=y |
423 | CONFIG_BLK_DEV_RAM_COUNT=16 | 440 | CONFIG_BLK_DEV_RAM_COUNT=16 |
424 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 441 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
425 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 442 | # CONFIG_BLK_DEV_XIP is not set |
426 | # CONFIG_CDROM_PKTCDVD is not set | 443 | # CONFIG_CDROM_PKTCDVD is not set |
427 | # CONFIG_ATA_OVER_ETH is not set | 444 | # CONFIG_ATA_OVER_ETH is not set |
428 | CONFIG_MISC_DEVICES=y | 445 | CONFIG_MISC_DEVICES=y |
@@ -430,12 +447,14 @@ CONFIG_MISC_DEVICES=y | |||
430 | # CONFIG_EEPROM_93CX6 is not set | 447 | # CONFIG_EEPROM_93CX6 is not set |
431 | # CONFIG_SGI_IOC4 is not set | 448 | # CONFIG_SGI_IOC4 is not set |
432 | # CONFIG_TIFM_CORE is not set | 449 | # CONFIG_TIFM_CORE is not set |
450 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
451 | CONFIG_HAVE_IDE=y | ||
433 | CONFIG_IDE=y | 452 | CONFIG_IDE=y |
434 | CONFIG_IDE_MAX_HWIFS=4 | 453 | CONFIG_IDE_MAX_HWIFS=4 |
435 | CONFIG_BLK_DEV_IDE=y | 454 | CONFIG_BLK_DEV_IDE=y |
436 | 455 | ||
437 | # | 456 | # |
438 | # Please see Documentation/ide.txt for help/info on IDE drives | 457 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
439 | # | 458 | # |
440 | # CONFIG_BLK_DEV_IDE_SATA is not set | 459 | # CONFIG_BLK_DEV_IDE_SATA is not set |
441 | CONFIG_BLK_DEV_IDEDISK=y | 460 | CONFIG_BLK_DEV_IDEDISK=y |
@@ -451,12 +470,12 @@ CONFIG_IDE_PROC_FS=y | |||
451 | # | 470 | # |
452 | CONFIG_IDE_GENERIC=y | 471 | CONFIG_IDE_GENERIC=y |
453 | # CONFIG_BLK_DEV_PLATFORM is not set | 472 | # CONFIG_BLK_DEV_PLATFORM is not set |
473 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
454 | 474 | ||
455 | # | 475 | # |
456 | # PCI IDE chipsets support | 476 | # PCI IDE chipsets support |
457 | # | 477 | # |
458 | CONFIG_BLK_DEV_IDEPCI=y | 478 | CONFIG_BLK_DEV_IDEPCI=y |
459 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
460 | CONFIG_IDEPCI_PCIBUS_ORDER=y | 479 | CONFIG_IDEPCI_PCIBUS_ORDER=y |
461 | # CONFIG_BLK_DEV_OFFBOARD is not set | 480 | # CONFIG_BLK_DEV_OFFBOARD is not set |
462 | CONFIG_BLK_DEV_GENERIC=y | 481 | CONFIG_BLK_DEV_GENERIC=y |
@@ -487,7 +506,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
487 | # CONFIG_BLK_DEV_TRM290 is not set | 506 | # CONFIG_BLK_DEV_TRM290 is not set |
488 | CONFIG_BLK_DEV_VIA82CXXX=y | 507 | CONFIG_BLK_DEV_VIA82CXXX=y |
489 | # CONFIG_BLK_DEV_TC86C001 is not set | 508 | # CONFIG_BLK_DEV_TC86C001 is not set |
490 | # CONFIG_IDE_ARM is not set | ||
491 | CONFIG_BLK_DEV_IDEDMA=y | 509 | CONFIG_BLK_DEV_IDEDMA=y |
492 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 510 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
493 | # CONFIG_BLK_DEV_HD is not set | 511 | # CONFIG_BLK_DEV_HD is not set |
@@ -533,6 +551,7 @@ CONFIG_PHYLIB=y | |||
533 | # CONFIG_SMSC_PHY is not set | 551 | # CONFIG_SMSC_PHY is not set |
534 | # CONFIG_BROADCOM_PHY is not set | 552 | # CONFIG_BROADCOM_PHY is not set |
535 | # CONFIG_ICPLUS_PHY is not set | 553 | # CONFIG_ICPLUS_PHY is not set |
554 | # CONFIG_REALTEK_PHY is not set | ||
536 | # CONFIG_FIXED_PHY is not set | 555 | # CONFIG_FIXED_PHY is not set |
537 | # CONFIG_MDIO_BITBANG is not set | 556 | # CONFIG_MDIO_BITBANG is not set |
538 | CONFIG_NET_ETHERNET=y | 557 | CONFIG_NET_ETHERNET=y |
@@ -560,6 +579,7 @@ CONFIG_E100=y | |||
560 | # CONFIG_NE2K_PCI is not set | 579 | # CONFIG_NE2K_PCI is not set |
561 | # CONFIG_8139CP is not set | 580 | # CONFIG_8139CP is not set |
562 | # CONFIG_8139TOO is not set | 581 | # CONFIG_8139TOO is not set |
582 | # CONFIG_R6040 is not set | ||
563 | # CONFIG_SIS900 is not set | 583 | # CONFIG_SIS900 is not set |
564 | # CONFIG_EPIC100 is not set | 584 | # CONFIG_EPIC100 is not set |
565 | # CONFIG_SUNDANCE is not set | 585 | # CONFIG_SUNDANCE is not set |
@@ -572,7 +592,9 @@ CONFIG_NETDEV_1000=y | |||
572 | # CONFIG_DL2K is not set | 592 | # CONFIG_DL2K is not set |
573 | # CONFIG_E1000 is not set | 593 | # CONFIG_E1000 is not set |
574 | # CONFIG_E1000E is not set | 594 | # CONFIG_E1000E is not set |
595 | # CONFIG_E1000E_ENABLED is not set | ||
575 | # CONFIG_IP1000 is not set | 596 | # CONFIG_IP1000 is not set |
597 | # CONFIG_IGB is not set | ||
576 | # CONFIG_NS83820 is not set | 598 | # CONFIG_NS83820 is not set |
577 | # CONFIG_HAMACHI is not set | 599 | # CONFIG_HAMACHI is not set |
578 | # CONFIG_YELLOWFIN is not set | 600 | # CONFIG_YELLOWFIN is not set |
@@ -599,6 +621,7 @@ CONFIG_NETDEV_10000=y | |||
599 | # CONFIG_NIU is not set | 621 | # CONFIG_NIU is not set |
600 | # CONFIG_MLX4_CORE is not set | 622 | # CONFIG_MLX4_CORE is not set |
601 | # CONFIG_TEHUTI is not set | 623 | # CONFIG_TEHUTI is not set |
624 | # CONFIG_BNX2X is not set | ||
602 | # CONFIG_TR is not set | 625 | # CONFIG_TR is not set |
603 | 626 | ||
604 | # | 627 | # |
@@ -611,7 +634,6 @@ CONFIG_NETDEV_10000=y | |||
611 | # CONFIG_HIPPI is not set | 634 | # CONFIG_HIPPI is not set |
612 | # CONFIG_PPP is not set | 635 | # CONFIG_PPP is not set |
613 | # CONFIG_SLIP is not set | 636 | # CONFIG_SLIP is not set |
614 | # CONFIG_SHAPER is not set | ||
615 | # CONFIG_NETCONSOLE is not set | 637 | # CONFIG_NETCONSOLE is not set |
616 | # CONFIG_NETPOLL is not set | 638 | # CONFIG_NETPOLL is not set |
617 | # CONFIG_NET_POLL_CONTROLLER is not set | 639 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -654,6 +676,7 @@ CONFIG_INPUT=y | |||
654 | # | 676 | # |
655 | # CONFIG_VT is not set | 677 | # CONFIG_VT is not set |
656 | # CONFIG_SERIAL_NONSTANDARD is not set | 678 | # CONFIG_SERIAL_NONSTANDARD is not set |
679 | # CONFIG_NOZOMI is not set | ||
657 | 680 | ||
658 | # | 681 | # |
659 | # Serial drivers | 682 | # Serial drivers |
@@ -735,14 +758,12 @@ CONFIG_I2C_MPC=y | |||
735 | # | 758 | # |
736 | # Miscellaneous I2C Chip support | 759 | # Miscellaneous I2C Chip support |
737 | # | 760 | # |
738 | CONFIG_SENSORS_DS1337=y | ||
739 | # CONFIG_SENSORS_DS1374 is not set | ||
740 | # CONFIG_DS1682 is not set | 761 | # CONFIG_DS1682 is not set |
741 | # CONFIG_SENSORS_EEPROM is not set | 762 | # CONFIG_SENSORS_EEPROM is not set |
742 | # CONFIG_SENSORS_PCF8574 is not set | 763 | # CONFIG_SENSORS_PCF8574 is not set |
743 | # CONFIG_SENSORS_PCA9539 is not set | 764 | # CONFIG_PCF8575 is not set |
744 | # CONFIG_SENSORS_PCF8591 is not set | 765 | # CONFIG_SENSORS_PCF8591 is not set |
745 | # CONFIG_SENSORS_M41T00 is not set | 766 | # CONFIG_TPS65010 is not set |
746 | # CONFIG_SENSORS_MAX6875 is not set | 767 | # CONFIG_SENSORS_MAX6875 is not set |
747 | # CONFIG_SENSORS_TSL2550 is not set | 768 | # CONFIG_SENSORS_TSL2550 is not set |
748 | # CONFIG_I2C_DEBUG_CORE is not set | 769 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -767,6 +788,7 @@ CONFIG_HWMON=y | |||
767 | # CONFIG_SENSORS_ADM1031 is not set | 788 | # CONFIG_SENSORS_ADM1031 is not set |
768 | # CONFIG_SENSORS_ADM9240 is not set | 789 | # CONFIG_SENSORS_ADM9240 is not set |
769 | # CONFIG_SENSORS_ADT7470 is not set | 790 | # CONFIG_SENSORS_ADT7470 is not set |
791 | # CONFIG_SENSORS_ADT7473 is not set | ||
770 | # CONFIG_SENSORS_ATXP1 is not set | 792 | # CONFIG_SENSORS_ATXP1 is not set |
771 | # CONFIG_SENSORS_DS1621 is not set | 793 | # CONFIG_SENSORS_DS1621 is not set |
772 | # CONFIG_SENSORS_I5K_AMB is not set | 794 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -796,6 +818,7 @@ CONFIG_SENSORS_LM75=y | |||
796 | # CONFIG_SENSORS_SMSC47M1 is not set | 818 | # CONFIG_SENSORS_SMSC47M1 is not set |
797 | # CONFIG_SENSORS_SMSC47M192 is not set | 819 | # CONFIG_SENSORS_SMSC47M192 is not set |
798 | # CONFIG_SENSORS_SMSC47B397 is not set | 820 | # CONFIG_SENSORS_SMSC47B397 is not set |
821 | # CONFIG_SENSORS_ADS7828 is not set | ||
799 | # CONFIG_SENSORS_THMC50 is not set | 822 | # CONFIG_SENSORS_THMC50 is not set |
800 | # CONFIG_SENSORS_VIA686A is not set | 823 | # CONFIG_SENSORS_VIA686A is not set |
801 | # CONFIG_SENSORS_VT1211 is not set | 824 | # CONFIG_SENSORS_VT1211 is not set |
@@ -805,9 +828,11 @@ CONFIG_SENSORS_LM75=y | |||
805 | # CONFIG_SENSORS_W83792D is not set | 828 | # CONFIG_SENSORS_W83792D is not set |
806 | # CONFIG_SENSORS_W83793 is not set | 829 | # CONFIG_SENSORS_W83793 is not set |
807 | # CONFIG_SENSORS_W83L785TS is not set | 830 | # CONFIG_SENSORS_W83L785TS is not set |
831 | # CONFIG_SENSORS_W83L786NG is not set | ||
808 | # CONFIG_SENSORS_W83627HF is not set | 832 | # CONFIG_SENSORS_W83627HF is not set |
809 | # CONFIG_SENSORS_W83627EHF is not set | 833 | # CONFIG_SENSORS_W83627EHF is not set |
810 | CONFIG_HWMON_DEBUG_CHIP=y | 834 | CONFIG_HWMON_DEBUG_CHIP=y |
835 | # CONFIG_THERMAL is not set | ||
811 | # CONFIG_WATCHDOG is not set | 836 | # CONFIG_WATCHDOG is not set |
812 | 837 | ||
813 | # | 838 | # |
@@ -860,16 +885,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
860 | # | 885 | # |
861 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
862 | # | 887 | # |
863 | |||
864 | # | ||
865 | # USB Gadget Support | ||
866 | # | ||
867 | # CONFIG_USB_GADGET is not set | 888 | # CONFIG_USB_GADGET is not set |
868 | # CONFIG_MMC is not set | 889 | # CONFIG_MMC is not set |
890 | # CONFIG_MEMSTICK is not set | ||
869 | # CONFIG_NEW_LEDS is not set | 891 | # CONFIG_NEW_LEDS is not set |
870 | # CONFIG_INFINIBAND is not set | 892 | # CONFIG_INFINIBAND is not set |
871 | # CONFIG_EDAC is not set | 893 | # CONFIG_EDAC is not set |
872 | # CONFIG_RTC_CLASS is not set | 894 | # CONFIG_RTC_CLASS is not set |
895 | # CONFIG_DMADEVICES is not set | ||
873 | 896 | ||
874 | # | 897 | # |
875 | # Userspace I/O | 898 | # Userspace I/O |
@@ -895,12 +918,10 @@ CONFIG_FS_MBCACHE=y | |||
895 | # CONFIG_XFS_FS is not set | 918 | # CONFIG_XFS_FS is not set |
896 | # CONFIG_GFS2_FS is not set | 919 | # CONFIG_GFS2_FS is not set |
897 | # CONFIG_OCFS2_FS is not set | 920 | # CONFIG_OCFS2_FS is not set |
898 | # CONFIG_MINIX_FS is not set | 921 | CONFIG_DNOTIFY=y |
899 | # CONFIG_ROMFS_FS is not set | ||
900 | CONFIG_INOTIFY=y | 922 | CONFIG_INOTIFY=y |
901 | CONFIG_INOTIFY_USER=y | 923 | CONFIG_INOTIFY_USER=y |
902 | # CONFIG_QUOTA is not set | 924 | # CONFIG_QUOTA is not set |
903 | CONFIG_DNOTIFY=y | ||
904 | # CONFIG_AUTOFS_FS is not set | 925 | # CONFIG_AUTOFS_FS is not set |
905 | # CONFIG_AUTOFS4_FS is not set | 926 | # CONFIG_AUTOFS4_FS is not set |
906 | # CONFIG_FUSE_FS is not set | 927 | # CONFIG_FUSE_FS is not set |
@@ -953,8 +974,10 @@ CONFIG_JFFS2_RTIME=y | |||
953 | # CONFIG_JFFS2_RUBIN is not set | 974 | # CONFIG_JFFS2_RUBIN is not set |
954 | CONFIG_CRAMFS=y | 975 | CONFIG_CRAMFS=y |
955 | # CONFIG_VXFS_FS is not set | 976 | # CONFIG_VXFS_FS is not set |
977 | # CONFIG_MINIX_FS is not set | ||
956 | # CONFIG_HPFS_FS is not set | 978 | # CONFIG_HPFS_FS is not set |
957 | # CONFIG_QNX4FS_FS is not set | 979 | # CONFIG_QNX4FS_FS is not set |
980 | # CONFIG_ROMFS_FS is not set | ||
958 | # CONFIG_SYSV_FS is not set | 981 | # CONFIG_SYSV_FS is not set |
959 | # CONFIG_UFS_FS is not set | 982 | # CONFIG_UFS_FS is not set |
960 | CONFIG_NETWORK_FILESYSTEMS=y | 983 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1012,9 +1035,6 @@ CONFIG_PLIST=y | |||
1012 | CONFIG_HAS_IOMEM=y | 1035 | CONFIG_HAS_IOMEM=y |
1013 | CONFIG_HAS_IOPORT=y | 1036 | CONFIG_HAS_IOPORT=y |
1014 | CONFIG_HAS_DMA=y | 1037 | CONFIG_HAS_DMA=y |
1015 | CONFIG_INSTRUMENTATION=y | ||
1016 | # CONFIG_PROFILING is not set | ||
1017 | # CONFIG_MARKERS is not set | ||
1018 | 1038 | ||
1019 | # | 1039 | # |
1020 | # Kernel hacking | 1040 | # Kernel hacking |
@@ -1028,6 +1048,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1028 | # CONFIG_HEADERS_CHECK is not set | 1048 | # CONFIG_HEADERS_CHECK is not set |
1029 | # CONFIG_DEBUG_KERNEL is not set | 1049 | # CONFIG_DEBUG_KERNEL is not set |
1030 | # CONFIG_SLUB_DEBUG_ON is not set | 1050 | # CONFIG_SLUB_DEBUG_ON is not set |
1051 | # CONFIG_SLUB_STATS is not set | ||
1031 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1052 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1032 | # CONFIG_SAMPLES is not set | 1053 | # CONFIG_SAMPLES is not set |
1033 | # CONFIG_KGDB_CONSOLE is not set | 1054 | # CONFIG_KGDB_CONSOLE is not set |
@@ -1039,6 +1060,50 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1039 | # CONFIG_KEYS is not set | 1060 | # CONFIG_KEYS is not set |
1040 | # CONFIG_SECURITY is not set | 1061 | # CONFIG_SECURITY is not set |
1041 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1062 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1042 | # CONFIG_CRYPTO is not set | 1063 | CONFIG_CRYPTO=y |
1064 | # CONFIG_CRYPTO_SEQIV is not set | ||
1065 | # CONFIG_CRYPTO_MANAGER is not set | ||
1066 | # CONFIG_CRYPTO_HMAC is not set | ||
1067 | # CONFIG_CRYPTO_XCBC is not set | ||
1068 | # CONFIG_CRYPTO_NULL is not set | ||
1069 | # CONFIG_CRYPTO_MD4 is not set | ||
1070 | # CONFIG_CRYPTO_MD5 is not set | ||
1071 | # CONFIG_CRYPTO_SHA1 is not set | ||
1072 | # CONFIG_CRYPTO_SHA256 is not set | ||
1073 | # CONFIG_CRYPTO_SHA512 is not set | ||
1074 | # CONFIG_CRYPTO_WP512 is not set | ||
1075 | # CONFIG_CRYPTO_TGR192 is not set | ||
1076 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1077 | # CONFIG_CRYPTO_ECB is not set | ||
1078 | # CONFIG_CRYPTO_CBC is not set | ||
1079 | # CONFIG_CRYPTO_PCBC is not set | ||
1080 | # CONFIG_CRYPTO_LRW is not set | ||
1081 | # CONFIG_CRYPTO_XTS is not set | ||
1082 | # CONFIG_CRYPTO_CTR is not set | ||
1083 | # CONFIG_CRYPTO_GCM is not set | ||
1084 | # CONFIG_CRYPTO_CCM is not set | ||
1085 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1086 | # CONFIG_CRYPTO_DES is not set | ||
1087 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1088 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1089 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1090 | # CONFIG_CRYPTO_SERPENT is not set | ||
1091 | # CONFIG_CRYPTO_AES is not set | ||
1092 | # CONFIG_CRYPTO_CAST5 is not set | ||
1093 | # CONFIG_CRYPTO_CAST6 is not set | ||
1094 | # CONFIG_CRYPTO_TEA is not set | ||
1095 | # CONFIG_CRYPTO_ARC4 is not set | ||
1096 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1097 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1098 | # CONFIG_CRYPTO_SEED is not set | ||
1099 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1100 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1101 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1102 | # CONFIG_CRYPTO_CRC32C is not set | ||
1103 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1104 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1105 | # CONFIG_CRYPTO_LZO is not set | ||
1106 | CONFIG_CRYPTO_HW=y | ||
1107 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1043 | # CONFIG_PPC_CLOCK is not set | 1108 | # CONFIG_PPC_CLOCK is not set |
1044 | CONFIG_PPC_LIB_RHEAP=y | 1109 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/configs/tqm8560_defconfig b/arch/powerpc/configs/tqm8560_defconfig index 0832e8996ac2..63c5ec8b6515 100644 --- a/arch/powerpc/configs/tqm8560_defconfig +++ b/arch/powerpc/configs/tqm8560_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.24-rc8 | 3 | # Linux kernel version: 2.6.25-rc6 |
4 | # Thu Jan 24 23:50:42 2008 | 4 | # Mon Mar 24 08:48:45 2008 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,10 +14,10 @@ CONFIG_PPC_85xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_85xx=y | ||
18 | CONFIG_E500=y | 17 | CONFIG_E500=y |
19 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
20 | CONFIG_FSL_BOOKE=y | 19 | CONFIG_FSL_BOOKE=y |
20 | CONFIG_FSL_EMB_PERFMON=y | ||
21 | # CONFIG_PHYS_64BIT is not set | 21 | # CONFIG_PHYS_64BIT is not set |
22 | CONFIG_SPE=y | 22 | CONFIG_SPE=y |
23 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
@@ -30,6 +30,7 @@ CONFIG_GENERIC_TIME=y | |||
30 | CONFIG_GENERIC_TIME_VSYSCALL=y | 30 | CONFIG_GENERIC_TIME_VSYSCALL=y |
31 | CONFIG_GENERIC_CLOCKEVENTS=y | 31 | CONFIG_GENERIC_CLOCKEVENTS=y |
32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
@@ -67,17 +68,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
67 | # CONFIG_POSIX_MQUEUE is not set | 68 | # CONFIG_POSIX_MQUEUE is not set |
68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
70 | # CONFIG_USER_NS is not set | ||
71 | # CONFIG_PID_NS is not set | ||
72 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
75 | CONFIG_GROUP_SCHED=y | ||
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | CONFIG_FAIR_USER_SCHED=y | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | # CONFIG_FAIR_CGROUP_SCHED is not set | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
80 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
83 | # CONFIG_NAMESPACES is not set | ||
81 | CONFIG_BLK_DEV_INITRD=y | 84 | CONFIG_BLK_DEV_INITRD=y |
82 | CONFIG_INITRAMFS_SOURCE="" | 85 | CONFIG_INITRAMFS_SOURCE="" |
83 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
@@ -89,11 +92,13 @@ CONFIG_SYSCTL_SYSCALL=y | |||
89 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
90 | CONFIG_BUG=y | 93 | CONFIG_BUG=y |
91 | CONFIG_ELF_CORE=y | 94 | CONFIG_ELF_CORE=y |
95 | CONFIG_COMPAT_BRK=y | ||
92 | CONFIG_BASE_FULL=y | 96 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 97 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | 98 | CONFIG_ANON_INODES=y |
95 | # CONFIG_EPOLL is not set | 99 | # CONFIG_EPOLL is not set |
96 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
101 | CONFIG_TIMERFD=y | ||
97 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
98 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
99 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
@@ -101,6 +106,12 @@ CONFIG_SLUB_DEBUG=y | |||
101 | # CONFIG_SLAB is not set | 106 | # CONFIG_SLAB is not set |
102 | CONFIG_SLUB=y | 107 | CONFIG_SLUB=y |
103 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | ||
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | ||
112 | CONFIG_HAVE_KPROBES=y | ||
113 | CONFIG_HAVE_KRETPROBES=y | ||
114 | CONFIG_PROC_PAGE_MONITOR=y | ||
104 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
105 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
106 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
@@ -124,15 +135,17 @@ CONFIG_DEFAULT_AS=y | |||
124 | # CONFIG_DEFAULT_CFQ is not set | 135 | # CONFIG_DEFAULT_CFQ is not set |
125 | # CONFIG_DEFAULT_NOOP is not set | 136 | # CONFIG_DEFAULT_NOOP is not set |
126 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 137 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
138 | CONFIG_CLASSIC_RCU=y | ||
127 | 139 | ||
128 | # | 140 | # |
129 | # Platform support | 141 | # Platform support |
130 | # | 142 | # |
131 | # CONFIG_PPC_MPC52xx is not set | 143 | # CONFIG_PPC_MPC512x is not set |
132 | # CONFIG_PPC_MPC5200 is not set | 144 | # CONFIG_PPC_MPC5121 is not set |
133 | # CONFIG_PPC_CELL is not set | 145 | # CONFIG_PPC_CELL is not set |
134 | # CONFIG_PPC_CELL_NATIVE is not set | 146 | # CONFIG_PPC_CELL_NATIVE is not set |
135 | # CONFIG_PQ2ADS is not set | 147 | # CONFIG_PQ2ADS is not set |
148 | CONFIG_MPC85xx=y | ||
136 | # CONFIG_MPC8540_ADS is not set | 149 | # CONFIG_MPC8540_ADS is not set |
137 | # CONFIG_MPC8560_ADS is not set | 150 | # CONFIG_MPC8560_ADS is not set |
138 | # CONFIG_MPC85xx_CDS is not set | 151 | # CONFIG_MPC85xx_CDS is not set |
@@ -143,8 +156,9 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
143 | # CONFIG_TQM8541 is not set | 156 | # CONFIG_TQM8541 is not set |
144 | # CONFIG_TQM8555 is not set | 157 | # CONFIG_TQM8555 is not set |
145 | CONFIG_TQM8560=y | 158 | CONFIG_TQM8560=y |
159 | # CONFIG_SBC8548 is not set | ||
160 | # CONFIG_SBC8560 is not set | ||
146 | CONFIG_TQM85xx=y | 161 | CONFIG_TQM85xx=y |
147 | CONFIG_MPC85xx=y | ||
148 | # CONFIG_IPIC is not set | 162 | # CONFIG_IPIC is not set |
149 | CONFIG_MPIC=y | 163 | CONFIG_MPIC=y |
150 | # CONFIG_MPIC_WEIRD is not set | 164 | # CONFIG_MPIC_WEIRD is not set |
@@ -174,13 +188,17 @@ CONFIG_HZ_250=y | |||
174 | # CONFIG_HZ_300 is not set | 188 | # CONFIG_HZ_300 is not set |
175 | # CONFIG_HZ_1000 is not set | 189 | # CONFIG_HZ_1000 is not set |
176 | CONFIG_HZ=250 | 190 | CONFIG_HZ=250 |
191 | # CONFIG_SCHED_HRTICK is not set | ||
177 | CONFIG_PREEMPT_NONE=y | 192 | CONFIG_PREEMPT_NONE=y |
178 | # CONFIG_PREEMPT_VOLUNTARY is not set | 193 | # CONFIG_PREEMPT_VOLUNTARY is not set |
179 | # CONFIG_PREEMPT is not set | 194 | # CONFIG_PREEMPT is not set |
180 | CONFIG_BINFMT_ELF=y | 195 | CONFIG_BINFMT_ELF=y |
181 | # CONFIG_BINFMT_MISC is not set | 196 | # CONFIG_BINFMT_MISC is not set |
182 | CONFIG_MATH_EMULATION=y | 197 | CONFIG_MATH_EMULATION=y |
198 | # CONFIG_IOMMU_HELPER is not set | ||
183 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 199 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
200 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
201 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
184 | CONFIG_ARCH_FLATMEM_ENABLE=y | 202 | CONFIG_ARCH_FLATMEM_ENABLE=y |
185 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 203 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
186 | CONFIG_SELECT_MEMORY_MODEL=y | 204 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -199,11 +217,7 @@ CONFIG_VIRT_TO_BUS=y | |||
199 | # CONFIG_PROC_DEVICETREE is not set | 217 | # CONFIG_PROC_DEVICETREE is not set |
200 | # CONFIG_CMDLINE_BOOL is not set | 218 | # CONFIG_CMDLINE_BOOL is not set |
201 | # CONFIG_PM is not set | 219 | # CONFIG_PM is not set |
202 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
203 | CONFIG_HIBERNATION_UP_POSSIBLE=y | ||
204 | CONFIG_SECCOMP=y | 220 | CONFIG_SECCOMP=y |
205 | CONFIG_WANT_DEVICE_TREE=y | ||
206 | CONFIG_DEVICE_TREE="tqm8560.dts" | ||
207 | CONFIG_ISA_DMA_API=y | 221 | CONFIG_ISA_DMA_API=y |
208 | 222 | ||
209 | # | 223 | # |
@@ -250,6 +264,7 @@ CONFIG_XFRM=y | |||
250 | # CONFIG_XFRM_USER is not set | 264 | # CONFIG_XFRM_USER is not set |
251 | # CONFIG_XFRM_SUB_POLICY is not set | 265 | # CONFIG_XFRM_SUB_POLICY is not set |
252 | # CONFIG_XFRM_MIGRATE is not set | 266 | # CONFIG_XFRM_MIGRATE is not set |
267 | # CONFIG_XFRM_STATISTICS is not set | ||
253 | # CONFIG_NET_KEY is not set | 268 | # CONFIG_NET_KEY is not set |
254 | CONFIG_INET=y | 269 | CONFIG_INET=y |
255 | CONFIG_IP_MULTICAST=y | 270 | CONFIG_IP_MULTICAST=y |
@@ -305,6 +320,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
305 | # | 320 | # |
306 | # CONFIG_NET_PKTGEN is not set | 321 | # CONFIG_NET_PKTGEN is not set |
307 | # CONFIG_HAMRADIO is not set | 322 | # CONFIG_HAMRADIO is not set |
323 | # CONFIG_CAN is not set | ||
308 | # CONFIG_IRDA is not set | 324 | # CONFIG_IRDA is not set |
309 | # CONFIG_BT is not set | 325 | # CONFIG_BT is not set |
310 | # CONFIG_AF_RXRPC is not set | 326 | # CONFIG_AF_RXRPC is not set |
@@ -336,6 +352,7 @@ CONFIG_MTD_CONCAT=y | |||
336 | CONFIG_MTD_PARTITIONS=y | 352 | CONFIG_MTD_PARTITIONS=y |
337 | # CONFIG_MTD_REDBOOT_PARTS is not set | 353 | # CONFIG_MTD_REDBOOT_PARTS is not set |
338 | CONFIG_MTD_CMDLINE_PARTS=y | 354 | CONFIG_MTD_CMDLINE_PARTS=y |
355 | # CONFIG_MTD_OF_PARTS is not set | ||
339 | 356 | ||
340 | # | 357 | # |
341 | # User Modules And Translation Layers | 358 | # User Modules And Translation Layers |
@@ -422,7 +439,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
422 | CONFIG_BLK_DEV_RAM=y | 439 | CONFIG_BLK_DEV_RAM=y |
423 | CONFIG_BLK_DEV_RAM_COUNT=16 | 440 | CONFIG_BLK_DEV_RAM_COUNT=16 |
424 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 441 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
425 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 442 | # CONFIG_BLK_DEV_XIP is not set |
426 | # CONFIG_CDROM_PKTCDVD is not set | 443 | # CONFIG_CDROM_PKTCDVD is not set |
427 | # CONFIG_ATA_OVER_ETH is not set | 444 | # CONFIG_ATA_OVER_ETH is not set |
428 | CONFIG_MISC_DEVICES=y | 445 | CONFIG_MISC_DEVICES=y |
@@ -430,12 +447,14 @@ CONFIG_MISC_DEVICES=y | |||
430 | # CONFIG_EEPROM_93CX6 is not set | 447 | # CONFIG_EEPROM_93CX6 is not set |
431 | # CONFIG_SGI_IOC4 is not set | 448 | # CONFIG_SGI_IOC4 is not set |
432 | # CONFIG_TIFM_CORE is not set | 449 | # CONFIG_TIFM_CORE is not set |
450 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
451 | CONFIG_HAVE_IDE=y | ||
433 | CONFIG_IDE=y | 452 | CONFIG_IDE=y |
434 | CONFIG_IDE_MAX_HWIFS=4 | 453 | CONFIG_IDE_MAX_HWIFS=4 |
435 | CONFIG_BLK_DEV_IDE=y | 454 | CONFIG_BLK_DEV_IDE=y |
436 | 455 | ||
437 | # | 456 | # |
438 | # Please see Documentation/ide.txt for help/info on IDE drives | 457 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
439 | # | 458 | # |
440 | # CONFIG_BLK_DEV_IDE_SATA is not set | 459 | # CONFIG_BLK_DEV_IDE_SATA is not set |
441 | CONFIG_BLK_DEV_IDEDISK=y | 460 | CONFIG_BLK_DEV_IDEDISK=y |
@@ -451,12 +470,12 @@ CONFIG_IDE_PROC_FS=y | |||
451 | # | 470 | # |
452 | CONFIG_IDE_GENERIC=y | 471 | CONFIG_IDE_GENERIC=y |
453 | # CONFIG_BLK_DEV_PLATFORM is not set | 472 | # CONFIG_BLK_DEV_PLATFORM is not set |
473 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
454 | 474 | ||
455 | # | 475 | # |
456 | # PCI IDE chipsets support | 476 | # PCI IDE chipsets support |
457 | # | 477 | # |
458 | CONFIG_BLK_DEV_IDEPCI=y | 478 | CONFIG_BLK_DEV_IDEPCI=y |
459 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
460 | CONFIG_IDEPCI_PCIBUS_ORDER=y | 479 | CONFIG_IDEPCI_PCIBUS_ORDER=y |
461 | # CONFIG_BLK_DEV_OFFBOARD is not set | 480 | # CONFIG_BLK_DEV_OFFBOARD is not set |
462 | CONFIG_BLK_DEV_GENERIC=y | 481 | CONFIG_BLK_DEV_GENERIC=y |
@@ -487,7 +506,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
487 | # CONFIG_BLK_DEV_TRM290 is not set | 506 | # CONFIG_BLK_DEV_TRM290 is not set |
488 | CONFIG_BLK_DEV_VIA82CXXX=y | 507 | CONFIG_BLK_DEV_VIA82CXXX=y |
489 | # CONFIG_BLK_DEV_TC86C001 is not set | 508 | # CONFIG_BLK_DEV_TC86C001 is not set |
490 | # CONFIG_IDE_ARM is not set | ||
491 | CONFIG_BLK_DEV_IDEDMA=y | 509 | CONFIG_BLK_DEV_IDEDMA=y |
492 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 510 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
493 | # CONFIG_BLK_DEV_HD is not set | 511 | # CONFIG_BLK_DEV_HD is not set |
@@ -533,6 +551,7 @@ CONFIG_PHYLIB=y | |||
533 | # CONFIG_SMSC_PHY is not set | 551 | # CONFIG_SMSC_PHY is not set |
534 | # CONFIG_BROADCOM_PHY is not set | 552 | # CONFIG_BROADCOM_PHY is not set |
535 | # CONFIG_ICPLUS_PHY is not set | 553 | # CONFIG_ICPLUS_PHY is not set |
554 | # CONFIG_REALTEK_PHY is not set | ||
536 | # CONFIG_FIXED_PHY is not set | 555 | # CONFIG_FIXED_PHY is not set |
537 | # CONFIG_MDIO_BITBANG is not set | 556 | # CONFIG_MDIO_BITBANG is not set |
538 | CONFIG_NET_ETHERNET=y | 557 | CONFIG_NET_ETHERNET=y |
@@ -560,6 +579,7 @@ CONFIG_E100=y | |||
560 | # CONFIG_NE2K_PCI is not set | 579 | # CONFIG_NE2K_PCI is not set |
561 | # CONFIG_8139CP is not set | 580 | # CONFIG_8139CP is not set |
562 | # CONFIG_8139TOO is not set | 581 | # CONFIG_8139TOO is not set |
582 | # CONFIG_R6040 is not set | ||
563 | # CONFIG_SIS900 is not set | 583 | # CONFIG_SIS900 is not set |
564 | # CONFIG_EPIC100 is not set | 584 | # CONFIG_EPIC100 is not set |
565 | # CONFIG_SUNDANCE is not set | 585 | # CONFIG_SUNDANCE is not set |
@@ -572,7 +592,9 @@ CONFIG_NETDEV_1000=y | |||
572 | # CONFIG_DL2K is not set | 592 | # CONFIG_DL2K is not set |
573 | # CONFIG_E1000 is not set | 593 | # CONFIG_E1000 is not set |
574 | # CONFIG_E1000E is not set | 594 | # CONFIG_E1000E is not set |
595 | # CONFIG_E1000E_ENABLED is not set | ||
575 | # CONFIG_IP1000 is not set | 596 | # CONFIG_IP1000 is not set |
597 | # CONFIG_IGB is not set | ||
576 | # CONFIG_NS83820 is not set | 598 | # CONFIG_NS83820 is not set |
577 | # CONFIG_HAMACHI is not set | 599 | # CONFIG_HAMACHI is not set |
578 | # CONFIG_YELLOWFIN is not set | 600 | # CONFIG_YELLOWFIN is not set |
@@ -599,6 +621,7 @@ CONFIG_NETDEV_10000=y | |||
599 | # CONFIG_NIU is not set | 621 | # CONFIG_NIU is not set |
600 | # CONFIG_MLX4_CORE is not set | 622 | # CONFIG_MLX4_CORE is not set |
601 | # CONFIG_TEHUTI is not set | 623 | # CONFIG_TEHUTI is not set |
624 | # CONFIG_BNX2X is not set | ||
602 | # CONFIG_TR is not set | 625 | # CONFIG_TR is not set |
603 | 626 | ||
604 | # | 627 | # |
@@ -611,7 +634,6 @@ CONFIG_NETDEV_10000=y | |||
611 | # CONFIG_HIPPI is not set | 634 | # CONFIG_HIPPI is not set |
612 | # CONFIG_PPP is not set | 635 | # CONFIG_PPP is not set |
613 | # CONFIG_SLIP is not set | 636 | # CONFIG_SLIP is not set |
614 | # CONFIG_SHAPER is not set | ||
615 | # CONFIG_NETCONSOLE is not set | 637 | # CONFIG_NETCONSOLE is not set |
616 | # CONFIG_NETPOLL is not set | 638 | # CONFIG_NETPOLL is not set |
617 | # CONFIG_NET_POLL_CONTROLLER is not set | 639 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -654,6 +676,7 @@ CONFIG_INPUT=y | |||
654 | # | 676 | # |
655 | # CONFIG_VT is not set | 677 | # CONFIG_VT is not set |
656 | # CONFIG_SERIAL_NONSTANDARD is not set | 678 | # CONFIG_SERIAL_NONSTANDARD is not set |
679 | # CONFIG_NOZOMI is not set | ||
657 | 680 | ||
658 | # | 681 | # |
659 | # Serial drivers | 682 | # Serial drivers |
@@ -735,14 +758,12 @@ CONFIG_I2C_MPC=y | |||
735 | # | 758 | # |
736 | # Miscellaneous I2C Chip support | 759 | # Miscellaneous I2C Chip support |
737 | # | 760 | # |
738 | CONFIG_SENSORS_DS1337=y | ||
739 | # CONFIG_SENSORS_DS1374 is not set | ||
740 | # CONFIG_DS1682 is not set | 761 | # CONFIG_DS1682 is not set |
741 | # CONFIG_SENSORS_EEPROM is not set | 762 | # CONFIG_SENSORS_EEPROM is not set |
742 | # CONFIG_SENSORS_PCF8574 is not set | 763 | # CONFIG_SENSORS_PCF8574 is not set |
743 | # CONFIG_SENSORS_PCA9539 is not set | 764 | # CONFIG_PCF8575 is not set |
744 | # CONFIG_SENSORS_PCF8591 is not set | 765 | # CONFIG_SENSORS_PCF8591 is not set |
745 | # CONFIG_SENSORS_M41T00 is not set | 766 | # CONFIG_TPS65010 is not set |
746 | # CONFIG_SENSORS_MAX6875 is not set | 767 | # CONFIG_SENSORS_MAX6875 is not set |
747 | # CONFIG_SENSORS_TSL2550 is not set | 768 | # CONFIG_SENSORS_TSL2550 is not set |
748 | # CONFIG_I2C_DEBUG_CORE is not set | 769 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -767,6 +788,7 @@ CONFIG_HWMON=y | |||
767 | # CONFIG_SENSORS_ADM1031 is not set | 788 | # CONFIG_SENSORS_ADM1031 is not set |
768 | # CONFIG_SENSORS_ADM9240 is not set | 789 | # CONFIG_SENSORS_ADM9240 is not set |
769 | # CONFIG_SENSORS_ADT7470 is not set | 790 | # CONFIG_SENSORS_ADT7470 is not set |
791 | # CONFIG_SENSORS_ADT7473 is not set | ||
770 | # CONFIG_SENSORS_ATXP1 is not set | 792 | # CONFIG_SENSORS_ATXP1 is not set |
771 | # CONFIG_SENSORS_DS1621 is not set | 793 | # CONFIG_SENSORS_DS1621 is not set |
772 | # CONFIG_SENSORS_I5K_AMB is not set | 794 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -796,6 +818,7 @@ CONFIG_SENSORS_LM75=y | |||
796 | # CONFIG_SENSORS_SMSC47M1 is not set | 818 | # CONFIG_SENSORS_SMSC47M1 is not set |
797 | # CONFIG_SENSORS_SMSC47M192 is not set | 819 | # CONFIG_SENSORS_SMSC47M192 is not set |
798 | # CONFIG_SENSORS_SMSC47B397 is not set | 820 | # CONFIG_SENSORS_SMSC47B397 is not set |
821 | # CONFIG_SENSORS_ADS7828 is not set | ||
799 | # CONFIG_SENSORS_THMC50 is not set | 822 | # CONFIG_SENSORS_THMC50 is not set |
800 | # CONFIG_SENSORS_VIA686A is not set | 823 | # CONFIG_SENSORS_VIA686A is not set |
801 | # CONFIG_SENSORS_VT1211 is not set | 824 | # CONFIG_SENSORS_VT1211 is not set |
@@ -805,9 +828,11 @@ CONFIG_SENSORS_LM75=y | |||
805 | # CONFIG_SENSORS_W83792D is not set | 828 | # CONFIG_SENSORS_W83792D is not set |
806 | # CONFIG_SENSORS_W83793 is not set | 829 | # CONFIG_SENSORS_W83793 is not set |
807 | # CONFIG_SENSORS_W83L785TS is not set | 830 | # CONFIG_SENSORS_W83L785TS is not set |
831 | # CONFIG_SENSORS_W83L786NG is not set | ||
808 | # CONFIG_SENSORS_W83627HF is not set | 832 | # CONFIG_SENSORS_W83627HF is not set |
809 | # CONFIG_SENSORS_W83627EHF is not set | 833 | # CONFIG_SENSORS_W83627EHF is not set |
810 | CONFIG_HWMON_DEBUG_CHIP=y | 834 | CONFIG_HWMON_DEBUG_CHIP=y |
835 | # CONFIG_THERMAL is not set | ||
811 | # CONFIG_WATCHDOG is not set | 836 | # CONFIG_WATCHDOG is not set |
812 | 837 | ||
813 | # | 838 | # |
@@ -860,16 +885,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
860 | # | 885 | # |
861 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
862 | # | 887 | # |
863 | |||
864 | # | ||
865 | # USB Gadget Support | ||
866 | # | ||
867 | # CONFIG_USB_GADGET is not set | 888 | # CONFIG_USB_GADGET is not set |
868 | # CONFIG_MMC is not set | 889 | # CONFIG_MMC is not set |
890 | # CONFIG_MEMSTICK is not set | ||
869 | # CONFIG_NEW_LEDS is not set | 891 | # CONFIG_NEW_LEDS is not set |
870 | # CONFIG_INFINIBAND is not set | 892 | # CONFIG_INFINIBAND is not set |
871 | # CONFIG_EDAC is not set | 893 | # CONFIG_EDAC is not set |
872 | # CONFIG_RTC_CLASS is not set | 894 | # CONFIG_RTC_CLASS is not set |
895 | # CONFIG_DMADEVICES is not set | ||
873 | 896 | ||
874 | # | 897 | # |
875 | # Userspace I/O | 898 | # Userspace I/O |
@@ -895,12 +918,10 @@ CONFIG_FS_MBCACHE=y | |||
895 | # CONFIG_XFS_FS is not set | 918 | # CONFIG_XFS_FS is not set |
896 | # CONFIG_GFS2_FS is not set | 919 | # CONFIG_GFS2_FS is not set |
897 | # CONFIG_OCFS2_FS is not set | 920 | # CONFIG_OCFS2_FS is not set |
898 | # CONFIG_MINIX_FS is not set | 921 | CONFIG_DNOTIFY=y |
899 | # CONFIG_ROMFS_FS is not set | ||
900 | CONFIG_INOTIFY=y | 922 | CONFIG_INOTIFY=y |
901 | CONFIG_INOTIFY_USER=y | 923 | CONFIG_INOTIFY_USER=y |
902 | # CONFIG_QUOTA is not set | 924 | # CONFIG_QUOTA is not set |
903 | CONFIG_DNOTIFY=y | ||
904 | # CONFIG_AUTOFS_FS is not set | 925 | # CONFIG_AUTOFS_FS is not set |
905 | # CONFIG_AUTOFS4_FS is not set | 926 | # CONFIG_AUTOFS4_FS is not set |
906 | # CONFIG_FUSE_FS is not set | 927 | # CONFIG_FUSE_FS is not set |
@@ -953,8 +974,10 @@ CONFIG_JFFS2_RTIME=y | |||
953 | # CONFIG_JFFS2_RUBIN is not set | 974 | # CONFIG_JFFS2_RUBIN is not set |
954 | CONFIG_CRAMFS=y | 975 | CONFIG_CRAMFS=y |
955 | # CONFIG_VXFS_FS is not set | 976 | # CONFIG_VXFS_FS is not set |
977 | # CONFIG_MINIX_FS is not set | ||
956 | # CONFIG_HPFS_FS is not set | 978 | # CONFIG_HPFS_FS is not set |
957 | # CONFIG_QNX4FS_FS is not set | 979 | # CONFIG_QNX4FS_FS is not set |
980 | # CONFIG_ROMFS_FS is not set | ||
958 | # CONFIG_SYSV_FS is not set | 981 | # CONFIG_SYSV_FS is not set |
959 | # CONFIG_UFS_FS is not set | 982 | # CONFIG_UFS_FS is not set |
960 | CONFIG_NETWORK_FILESYSTEMS=y | 983 | CONFIG_NETWORK_FILESYSTEMS=y |
@@ -1012,9 +1035,6 @@ CONFIG_PLIST=y | |||
1012 | CONFIG_HAS_IOMEM=y | 1035 | CONFIG_HAS_IOMEM=y |
1013 | CONFIG_HAS_IOPORT=y | 1036 | CONFIG_HAS_IOPORT=y |
1014 | CONFIG_HAS_DMA=y | 1037 | CONFIG_HAS_DMA=y |
1015 | CONFIG_INSTRUMENTATION=y | ||
1016 | # CONFIG_PROFILING is not set | ||
1017 | # CONFIG_MARKERS is not set | ||
1018 | 1038 | ||
1019 | # | 1039 | # |
1020 | # Kernel hacking | 1040 | # Kernel hacking |
@@ -1028,6 +1048,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1028 | # CONFIG_HEADERS_CHECK is not set | 1048 | # CONFIG_HEADERS_CHECK is not set |
1029 | # CONFIG_DEBUG_KERNEL is not set | 1049 | # CONFIG_DEBUG_KERNEL is not set |
1030 | # CONFIG_SLUB_DEBUG_ON is not set | 1050 | # CONFIG_SLUB_DEBUG_ON is not set |
1051 | # CONFIG_SLUB_STATS is not set | ||
1031 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1052 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1032 | # CONFIG_SAMPLES is not set | 1053 | # CONFIG_SAMPLES is not set |
1033 | # CONFIG_KGDB_CONSOLE is not set | 1054 | # CONFIG_KGDB_CONSOLE is not set |
@@ -1039,6 +1060,50 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1039 | # CONFIG_KEYS is not set | 1060 | # CONFIG_KEYS is not set |
1040 | # CONFIG_SECURITY is not set | 1061 | # CONFIG_SECURITY is not set |
1041 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1062 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1042 | # CONFIG_CRYPTO is not set | 1063 | CONFIG_CRYPTO=y |
1064 | # CONFIG_CRYPTO_SEQIV is not set | ||
1065 | # CONFIG_CRYPTO_MANAGER is not set | ||
1066 | # CONFIG_CRYPTO_HMAC is not set | ||
1067 | # CONFIG_CRYPTO_XCBC is not set | ||
1068 | # CONFIG_CRYPTO_NULL is not set | ||
1069 | # CONFIG_CRYPTO_MD4 is not set | ||
1070 | # CONFIG_CRYPTO_MD5 is not set | ||
1071 | # CONFIG_CRYPTO_SHA1 is not set | ||
1072 | # CONFIG_CRYPTO_SHA256 is not set | ||
1073 | # CONFIG_CRYPTO_SHA512 is not set | ||
1074 | # CONFIG_CRYPTO_WP512 is not set | ||
1075 | # CONFIG_CRYPTO_TGR192 is not set | ||
1076 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1077 | # CONFIG_CRYPTO_ECB is not set | ||
1078 | # CONFIG_CRYPTO_CBC is not set | ||
1079 | # CONFIG_CRYPTO_PCBC is not set | ||
1080 | # CONFIG_CRYPTO_LRW is not set | ||
1081 | # CONFIG_CRYPTO_XTS is not set | ||
1082 | # CONFIG_CRYPTO_CTR is not set | ||
1083 | # CONFIG_CRYPTO_GCM is not set | ||
1084 | # CONFIG_CRYPTO_CCM is not set | ||
1085 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1086 | # CONFIG_CRYPTO_DES is not set | ||
1087 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1088 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1089 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1090 | # CONFIG_CRYPTO_SERPENT is not set | ||
1091 | # CONFIG_CRYPTO_AES is not set | ||
1092 | # CONFIG_CRYPTO_CAST5 is not set | ||
1093 | # CONFIG_CRYPTO_CAST6 is not set | ||
1094 | # CONFIG_CRYPTO_TEA is not set | ||
1095 | # CONFIG_CRYPTO_ARC4 is not set | ||
1096 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1097 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1098 | # CONFIG_CRYPTO_SEED is not set | ||
1099 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1100 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1101 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1102 | # CONFIG_CRYPTO_CRC32C is not set | ||
1103 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1104 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1105 | # CONFIG_CRYPTO_LZO is not set | ||
1106 | CONFIG_CRYPTO_HW=y | ||
1107 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1043 | # CONFIG_PPC_CLOCK is not set | 1108 | # CONFIG_PPC_CLOCK is not set |
1044 | CONFIG_PPC_LIB_RHEAP=y | 1109 | CONFIG_PPC_LIB_RHEAP=y |
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index 590f1f67c874..a83dfa3cf40c 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c | |||
@@ -351,9 +351,14 @@ static void __init htab_init_page_sizes(void) | |||
351 | mmu_vmalloc_psize = MMU_PAGE_64K; | 351 | mmu_vmalloc_psize = MMU_PAGE_64K; |
352 | if (mmu_linear_psize == MMU_PAGE_4K) | 352 | if (mmu_linear_psize == MMU_PAGE_4K) |
353 | mmu_linear_psize = MMU_PAGE_64K; | 353 | mmu_linear_psize = MMU_PAGE_64K; |
354 | if (cpu_has_feature(CPU_FTR_CI_LARGE_PAGE)) | 354 | if (cpu_has_feature(CPU_FTR_CI_LARGE_PAGE)) { |
355 | mmu_io_psize = MMU_PAGE_64K; | 355 | /* |
356 | else | 356 | * Don't use 64k pages for ioremap on pSeries, since |
357 | * that would stop us accessing the HEA ethernet. | ||
358 | */ | ||
359 | if (!machine_is(pseries)) | ||
360 | mmu_io_psize = MMU_PAGE_64K; | ||
361 | } else | ||
357 | mmu_ci_restrictions = 1; | 362 | mmu_ci_restrictions = 1; |
358 | } | 363 | } |
359 | #endif /* CONFIG_PPC_64K_PAGES */ | 364 | #endif /* CONFIG_PPC_64K_PAGES */ |
diff --git a/arch/powerpc/sysdev/bestcomm/bestcomm.c b/arch/powerpc/sysdev/bestcomm/bestcomm.c index f589999361e0..64ec7d629363 100644 --- a/arch/powerpc/sysdev/bestcomm/bestcomm.c +++ b/arch/powerpc/sysdev/bestcomm/bestcomm.c | |||
@@ -52,6 +52,10 @@ bcom_task_alloc(int bd_count, int bd_size, int priv_size) | |||
52 | int i, tasknum = -1; | 52 | int i, tasknum = -1; |
53 | struct bcom_task *tsk; | 53 | struct bcom_task *tsk; |
54 | 54 | ||
55 | /* Don't try to do anything if bestcomm init failed */ | ||
56 | if (!bcom_eng) | ||
57 | return NULL; | ||
58 | |||
55 | /* Get and reserve a task num */ | 59 | /* Get and reserve a task num */ |
56 | spin_lock(&bcom_eng->lock); | 60 | spin_lock(&bcom_eng->lock); |
57 | 61 | ||
@@ -484,8 +488,8 @@ mpc52xx_bcom_remove(struct of_device *op) | |||
484 | } | 488 | } |
485 | 489 | ||
486 | static struct of_device_id mpc52xx_bcom_of_match[] = { | 490 | static struct of_device_id mpc52xx_bcom_of_match[] = { |
487 | { .type = "dma-controller", .compatible = "fsl,mpc5200-bestcomm", }, | 491 | { .compatible = "fsl,mpc5200-bestcomm", }, |
488 | { .type = "dma-controller", .compatible = "mpc5200-bestcomm", }, | 492 | { .compatible = "mpc5200-bestcomm", }, |
489 | {}, | 493 | {}, |
490 | }; | 494 | }; |
491 | 495 | ||
diff --git a/arch/powerpc/sysdev/ipic.c b/arch/powerpc/sysdev/ipic.c index ae0dbf4c1d66..0f2dfb0aaa6a 100644 --- a/arch/powerpc/sysdev/ipic.c +++ b/arch/powerpc/sysdev/ipic.c | |||
@@ -906,7 +906,7 @@ static int __init init_ipic_sysfs(void) | |||
906 | { | 906 | { |
907 | int rc; | 907 | int rc; |
908 | 908 | ||
909 | if (!primary_ipic->regs) | 909 | if (!primary_ipic || !primary_ipic->regs) |
910 | return -ENODEV; | 910 | return -ENODEV; |
911 | printk(KERN_DEBUG "Registering ipic with sysfs...\n"); | 911 | printk(KERN_DEBUG "Registering ipic with sysfs...\n"); |
912 | 912 | ||
diff --git a/arch/sparc64/kernel/ds.c b/arch/sparc64/kernel/ds.c index bd76482077be..edb74f5a1186 100644 --- a/arch/sparc64/kernel/ds.c +++ b/arch/sparc64/kernel/ds.c | |||
@@ -972,8 +972,7 @@ static void process_ds_work(void) | |||
972 | LIST_HEAD(todo); | 972 | LIST_HEAD(todo); |
973 | 973 | ||
974 | spin_lock_irqsave(&ds_lock, flags); | 974 | spin_lock_irqsave(&ds_lock, flags); |
975 | list_splice(&ds_work_list, &todo); | 975 | list_splice_init(&ds_work_list, &todo); |
976 | INIT_LIST_HEAD(&ds_work_list); | ||
977 | spin_unlock_irqrestore(&ds_lock, flags); | 976 | spin_unlock_irqrestore(&ds_lock, flags); |
978 | 977 | ||
979 | list_for_each_entry_safe(qp, tmp, &todo, list) { | 978 | list_for_each_entry_safe(qp, tmp, &todo, list) { |
diff --git a/arch/sparc64/kernel/head.S b/arch/sparc64/kernel/head.S index 44b105c04dd3..34f8ff57c56b 100644 --- a/arch/sparc64/kernel/head.S +++ b/arch/sparc64/kernel/head.S | |||
@@ -288,8 +288,12 @@ sun4v_chip_type: | |||
288 | /* Leave arg2 as-is, prom_mmu_ihandle_cache */ | 288 | /* Leave arg2 as-is, prom_mmu_ihandle_cache */ |
289 | mov -1, %l3 | 289 | mov -1, %l3 |
290 | stx %l3, [%sp + 2047 + 128 + 0x28] ! arg3: mode (-1 default) | 290 | stx %l3, [%sp + 2047 + 128 + 0x28] ! arg3: mode (-1 default) |
291 | sethi %hi(8 * 1024 * 1024), %l3 | 291 | /* 4MB align the kernel image size. */ |
292 | stx %l3, [%sp + 2047 + 128 + 0x30] ! arg4: size (8MB) | 292 | set (_end - KERNBASE), %l3 |
293 | set ((4 * 1024 * 1024) - 1), %l4 | ||
294 | add %l3, %l4, %l3 | ||
295 | andn %l3, %l4, %l3 | ||
296 | stx %l3, [%sp + 2047 + 128 + 0x30] ! arg4: roundup(ksize, 4MB) | ||
293 | sethi %hi(KERNBASE), %l3 | 297 | sethi %hi(KERNBASE), %l3 |
294 | stx %l3, [%sp + 2047 + 128 + 0x38] ! arg5: vaddr (KERNBASE) | 298 | stx %l3, [%sp + 2047 + 128 + 0x38] ! arg5: vaddr (KERNBASE) |
295 | stx %g0, [%sp + 2047 + 128 + 0x40] ! arg6: empty | 299 | stx %g0, [%sp + 2047 + 128 + 0x40] ! arg6: empty |
diff --git a/arch/sparc64/kernel/process.c b/arch/sparc64/kernel/process.c index e116e38b160e..acf8c5250aa9 100644 --- a/arch/sparc64/kernel/process.c +++ b/arch/sparc64/kernel/process.c | |||
@@ -731,9 +731,6 @@ asmlinkage int sparc_execve(struct pt_regs *regs) | |||
731 | current_thread_info()->xfsr[0] = 0; | 731 | current_thread_info()->xfsr[0] = 0; |
732 | current_thread_info()->fpsaved[0] = 0; | 732 | current_thread_info()->fpsaved[0] = 0; |
733 | regs->tstate &= ~TSTATE_PEF; | 733 | regs->tstate &= ~TSTATE_PEF; |
734 | task_lock(current); | ||
735 | current->ptrace &= ~PT_DTRACE; | ||
736 | task_unlock(current); | ||
737 | } | 734 | } |
738 | out: | 735 | out: |
739 | return error; | 736 | return error; |
diff --git a/arch/sparc64/kernel/smp.c b/arch/sparc64/kernel/smp.c index cc454731d879..5a1126b363a4 100644 --- a/arch/sparc64/kernel/smp.c +++ b/arch/sparc64/kernel/smp.c | |||
@@ -284,14 +284,17 @@ static void ldom_startcpu_cpuid(unsigned int cpu, unsigned long thread_reg) | |||
284 | { | 284 | { |
285 | extern unsigned long sparc64_ttable_tl0; | 285 | extern unsigned long sparc64_ttable_tl0; |
286 | extern unsigned long kern_locked_tte_data; | 286 | extern unsigned long kern_locked_tte_data; |
287 | extern int bigkernel; | ||
288 | struct hvtramp_descr *hdesc; | 287 | struct hvtramp_descr *hdesc; |
289 | unsigned long trampoline_ra; | 288 | unsigned long trampoline_ra; |
290 | struct trap_per_cpu *tb; | 289 | struct trap_per_cpu *tb; |
291 | u64 tte_vaddr, tte_data; | 290 | u64 tte_vaddr, tte_data; |
292 | unsigned long hv_err; | 291 | unsigned long hv_err; |
292 | int i; | ||
293 | 293 | ||
294 | hdesc = kzalloc(sizeof(*hdesc), GFP_KERNEL); | 294 | hdesc = kzalloc(sizeof(*hdesc) + |
295 | (sizeof(struct hvtramp_mapping) * | ||
296 | num_kernel_image_mappings - 1), | ||
297 | GFP_KERNEL); | ||
295 | if (!hdesc) { | 298 | if (!hdesc) { |
296 | printk(KERN_ERR "ldom_startcpu_cpuid: Cannot allocate " | 299 | printk(KERN_ERR "ldom_startcpu_cpuid: Cannot allocate " |
297 | "hvtramp_descr.\n"); | 300 | "hvtramp_descr.\n"); |
@@ -299,7 +302,7 @@ static void ldom_startcpu_cpuid(unsigned int cpu, unsigned long thread_reg) | |||
299 | } | 302 | } |
300 | 303 | ||
301 | hdesc->cpu = cpu; | 304 | hdesc->cpu = cpu; |
302 | hdesc->num_mappings = (bigkernel ? 2 : 1); | 305 | hdesc->num_mappings = num_kernel_image_mappings; |
303 | 306 | ||
304 | tb = &trap_block[cpu]; | 307 | tb = &trap_block[cpu]; |
305 | tb->hdesc = hdesc; | 308 | tb->hdesc = hdesc; |
@@ -312,13 +315,11 @@ static void ldom_startcpu_cpuid(unsigned int cpu, unsigned long thread_reg) | |||
312 | tte_vaddr = (unsigned long) KERNBASE; | 315 | tte_vaddr = (unsigned long) KERNBASE; |
313 | tte_data = kern_locked_tte_data; | 316 | tte_data = kern_locked_tte_data; |
314 | 317 | ||
315 | hdesc->maps[0].vaddr = tte_vaddr; | 318 | for (i = 0; i < hdesc->num_mappings; i++) { |
316 | hdesc->maps[0].tte = tte_data; | 319 | hdesc->maps[i].vaddr = tte_vaddr; |
317 | if (bigkernel) { | 320 | hdesc->maps[i].tte = tte_data; |
318 | tte_vaddr += 0x400000; | 321 | tte_vaddr += 0x400000; |
319 | tte_data += 0x400000; | 322 | tte_data += 0x400000; |
320 | hdesc->maps[1].vaddr = tte_vaddr; | ||
321 | hdesc->maps[1].tte = tte_data; | ||
322 | } | 323 | } |
323 | 324 | ||
324 | trampoline_ra = kimage_addr_to_ra(hv_cpu_startup); | 325 | trampoline_ra = kimage_addr_to_ra(hv_cpu_startup); |
diff --git a/arch/sparc64/kernel/sys_sparc32.c b/arch/sparc64/kernel/sys_sparc32.c index deaba2bd0535..2455fa498876 100644 --- a/arch/sparc64/kernel/sys_sparc32.c +++ b/arch/sparc64/kernel/sys_sparc32.c | |||
@@ -678,9 +678,6 @@ asmlinkage long sparc32_execve(struct pt_regs *regs) | |||
678 | current_thread_info()->xfsr[0] = 0; | 678 | current_thread_info()->xfsr[0] = 0; |
679 | current_thread_info()->fpsaved[0] = 0; | 679 | current_thread_info()->fpsaved[0] = 0; |
680 | regs->tstate &= ~TSTATE_PEF; | 680 | regs->tstate &= ~TSTATE_PEF; |
681 | task_lock(current); | ||
682 | current->ptrace &= ~PT_DTRACE; | ||
683 | task_unlock(current); | ||
684 | } | 681 | } |
685 | out: | 682 | out: |
686 | return error; | 683 | return error; |
diff --git a/arch/sparc64/kernel/trampoline.S b/arch/sparc64/kernel/trampoline.S index 4ae2e525d68b..56ff55211341 100644 --- a/arch/sparc64/kernel/trampoline.S +++ b/arch/sparc64/kernel/trampoline.S | |||
@@ -105,7 +105,7 @@ startup_continue: | |||
105 | wr %g2, 0, %tick_cmpr | 105 | wr %g2, 0, %tick_cmpr |
106 | 106 | ||
107 | /* Call OBP by hand to lock KERNBASE into i/d tlbs. | 107 | /* Call OBP by hand to lock KERNBASE into i/d tlbs. |
108 | * We lock 2 consequetive entries if we are 'bigkernel'. | 108 | * We lock 'num_kernel_image_mappings' consequetive entries. |
109 | */ | 109 | */ |
110 | sethi %hi(prom_entry_lock), %g2 | 110 | sethi %hi(prom_entry_lock), %g2 |
111 | 1: ldstub [%g2 + %lo(prom_entry_lock)], %g1 | 111 | 1: ldstub [%g2 + %lo(prom_entry_lock)], %g1 |
@@ -119,6 +119,29 @@ startup_continue: | |||
119 | add %l2, -(192 + 128), %sp | 119 | add %l2, -(192 + 128), %sp |
120 | flushw | 120 | flushw |
121 | 121 | ||
122 | /* Setup the loop variables: | ||
123 | * %l3: VADDR base | ||
124 | * %l4: TTE base | ||
125 | * %l5: Loop iterator, iterates from 0 to 'num_kernel_image_mappings' | ||
126 | * %l6: Number of TTE entries to map | ||
127 | * %l7: Highest TTE entry number, we count down | ||
128 | */ | ||
129 | sethi %hi(KERNBASE), %l3 | ||
130 | sethi %hi(kern_locked_tte_data), %l4 | ||
131 | ldx [%l4 + %lo(kern_locked_tte_data)], %l4 | ||
132 | clr %l5 | ||
133 | sethi %hi(num_kernel_image_mappings), %l6 | ||
134 | lduw [%l6 + %lo(num_kernel_image_mappings)], %l6 | ||
135 | add %l6, 1, %l6 | ||
136 | |||
137 | mov 15, %l7 | ||
138 | BRANCH_IF_ANY_CHEETAH(g1,g5,2f) | ||
139 | |||
140 | mov 63, %l7 | ||
141 | 2: | ||
142 | |||
143 | 3: | ||
144 | /* Lock into I-MMU */ | ||
122 | sethi %hi(call_method), %g2 | 145 | sethi %hi(call_method), %g2 |
123 | or %g2, %lo(call_method), %g2 | 146 | or %g2, %lo(call_method), %g2 |
124 | stx %g2, [%sp + 2047 + 128 + 0x00] | 147 | stx %g2, [%sp + 2047 + 128 + 0x00] |
@@ -132,63 +155,26 @@ startup_continue: | |||
132 | sethi %hi(prom_mmu_ihandle_cache), %g2 | 155 | sethi %hi(prom_mmu_ihandle_cache), %g2 |
133 | lduw [%g2 + %lo(prom_mmu_ihandle_cache)], %g2 | 156 | lduw [%g2 + %lo(prom_mmu_ihandle_cache)], %g2 |
134 | stx %g2, [%sp + 2047 + 128 + 0x20] | 157 | stx %g2, [%sp + 2047 + 128 + 0x20] |
135 | sethi %hi(KERNBASE), %g2 | ||
136 | stx %g2, [%sp + 2047 + 128 + 0x28] | ||
137 | sethi %hi(kern_locked_tte_data), %g2 | ||
138 | ldx [%g2 + %lo(kern_locked_tte_data)], %g2 | ||
139 | stx %g2, [%sp + 2047 + 128 + 0x30] | ||
140 | |||
141 | mov 15, %g2 | ||
142 | BRANCH_IF_ANY_CHEETAH(g1,g5,1f) | ||
143 | 158 | ||
144 | mov 63, %g2 | 159 | /* Each TTE maps 4MB, convert index to offset. */ |
145 | 1: | 160 | sllx %l5, 22, %g1 |
146 | stx %g2, [%sp + 2047 + 128 + 0x38] | ||
147 | sethi %hi(p1275buf), %g2 | ||
148 | or %g2, %lo(p1275buf), %g2 | ||
149 | ldx [%g2 + 0x08], %o1 | ||
150 | call %o1 | ||
151 | add %sp, (2047 + 128), %o0 | ||
152 | 161 | ||
153 | sethi %hi(bigkernel), %g2 | 162 | add %l3, %g1, %g2 |
154 | lduw [%g2 + %lo(bigkernel)], %g2 | 163 | stx %g2, [%sp + 2047 + 128 + 0x28] ! VADDR |
155 | brz,pt %g2, do_dtlb | 164 | add %l4, %g1, %g2 |
156 | nop | 165 | stx %g2, [%sp + 2047 + 128 + 0x30] ! TTE |
157 | 166 | ||
158 | sethi %hi(call_method), %g2 | 167 | /* TTE index is highest minus loop index. */ |
159 | or %g2, %lo(call_method), %g2 | 168 | sub %l7, %l5, %g2 |
160 | stx %g2, [%sp + 2047 + 128 + 0x00] | ||
161 | mov 5, %g2 | ||
162 | stx %g2, [%sp + 2047 + 128 + 0x08] | ||
163 | mov 1, %g2 | ||
164 | stx %g2, [%sp + 2047 + 128 + 0x10] | ||
165 | sethi %hi(itlb_load), %g2 | ||
166 | or %g2, %lo(itlb_load), %g2 | ||
167 | stx %g2, [%sp + 2047 + 128 + 0x18] | ||
168 | sethi %hi(prom_mmu_ihandle_cache), %g2 | ||
169 | lduw [%g2 + %lo(prom_mmu_ihandle_cache)], %g2 | ||
170 | stx %g2, [%sp + 2047 + 128 + 0x20] | ||
171 | sethi %hi(KERNBASE + 0x400000), %g2 | ||
172 | stx %g2, [%sp + 2047 + 128 + 0x28] | ||
173 | sethi %hi(kern_locked_tte_data), %g2 | ||
174 | ldx [%g2 + %lo(kern_locked_tte_data)], %g2 | ||
175 | sethi %hi(0x400000), %g1 | ||
176 | add %g2, %g1, %g2 | ||
177 | stx %g2, [%sp + 2047 + 128 + 0x30] | ||
178 | |||
179 | mov 14, %g2 | ||
180 | BRANCH_IF_ANY_CHEETAH(g1,g5,1f) | ||
181 | |||
182 | mov 62, %g2 | ||
183 | 1: | ||
184 | stx %g2, [%sp + 2047 + 128 + 0x38] | 169 | stx %g2, [%sp + 2047 + 128 + 0x38] |
170 | |||
185 | sethi %hi(p1275buf), %g2 | 171 | sethi %hi(p1275buf), %g2 |
186 | or %g2, %lo(p1275buf), %g2 | 172 | or %g2, %lo(p1275buf), %g2 |
187 | ldx [%g2 + 0x08], %o1 | 173 | ldx [%g2 + 0x08], %o1 |
188 | call %o1 | 174 | call %o1 |
189 | add %sp, (2047 + 128), %o0 | 175 | add %sp, (2047 + 128), %o0 |
190 | 176 | ||
191 | do_dtlb: | 177 | /* Lock into D-MMU */ |
192 | sethi %hi(call_method), %g2 | 178 | sethi %hi(call_method), %g2 |
193 | or %g2, %lo(call_method), %g2 | 179 | or %g2, %lo(call_method), %g2 |
194 | stx %g2, [%sp + 2047 + 128 + 0x00] | 180 | stx %g2, [%sp + 2047 + 128 + 0x00] |
@@ -202,65 +188,30 @@ do_dtlb: | |||
202 | sethi %hi(prom_mmu_ihandle_cache), %g2 | 188 | sethi %hi(prom_mmu_ihandle_cache), %g2 |
203 | lduw [%g2 + %lo(prom_mmu_ihandle_cache)], %g2 | 189 | lduw [%g2 + %lo(prom_mmu_ihandle_cache)], %g2 |
204 | stx %g2, [%sp + 2047 + 128 + 0x20] | 190 | stx %g2, [%sp + 2047 + 128 + 0x20] |
205 | sethi %hi(KERNBASE), %g2 | ||
206 | stx %g2, [%sp + 2047 + 128 + 0x28] | ||
207 | sethi %hi(kern_locked_tte_data), %g2 | ||
208 | ldx [%g2 + %lo(kern_locked_tte_data)], %g2 | ||
209 | stx %g2, [%sp + 2047 + 128 + 0x30] | ||
210 | 191 | ||
211 | mov 15, %g2 | 192 | /* Each TTE maps 4MB, convert index to offset. */ |
212 | BRANCH_IF_ANY_CHEETAH(g1,g5,1f) | 193 | sllx %l5, 22, %g1 |
213 | 194 | ||
214 | mov 63, %g2 | 195 | add %l3, %g1, %g2 |
215 | 1: | 196 | stx %g2, [%sp + 2047 + 128 + 0x28] ! VADDR |
197 | add %l4, %g1, %g2 | ||
198 | stx %g2, [%sp + 2047 + 128 + 0x30] ! TTE | ||
216 | 199 | ||
200 | /* TTE index is highest minus loop index. */ | ||
201 | sub %l7, %l5, %g2 | ||
217 | stx %g2, [%sp + 2047 + 128 + 0x38] | 202 | stx %g2, [%sp + 2047 + 128 + 0x38] |
203 | |||
218 | sethi %hi(p1275buf), %g2 | 204 | sethi %hi(p1275buf), %g2 |
219 | or %g2, %lo(p1275buf), %g2 | 205 | or %g2, %lo(p1275buf), %g2 |
220 | ldx [%g2 + 0x08], %o1 | 206 | ldx [%g2 + 0x08], %o1 |
221 | call %o1 | 207 | call %o1 |
222 | add %sp, (2047 + 128), %o0 | 208 | add %sp, (2047 + 128), %o0 |
223 | 209 | ||
224 | sethi %hi(bigkernel), %g2 | 210 | add %l5, 1, %l5 |
225 | lduw [%g2 + %lo(bigkernel)], %g2 | 211 | cmp %l5, %l6 |
226 | brz,pt %g2, do_unlock | 212 | bne,pt %xcc, 3b |
227 | nop | 213 | nop |
228 | 214 | ||
229 | sethi %hi(call_method), %g2 | ||
230 | or %g2, %lo(call_method), %g2 | ||
231 | stx %g2, [%sp + 2047 + 128 + 0x00] | ||
232 | mov 5, %g2 | ||
233 | stx %g2, [%sp + 2047 + 128 + 0x08] | ||
234 | mov 1, %g2 | ||
235 | stx %g2, [%sp + 2047 + 128 + 0x10] | ||
236 | sethi %hi(dtlb_load), %g2 | ||
237 | or %g2, %lo(dtlb_load), %g2 | ||
238 | stx %g2, [%sp + 2047 + 128 + 0x18] | ||
239 | sethi %hi(prom_mmu_ihandle_cache), %g2 | ||
240 | lduw [%g2 + %lo(prom_mmu_ihandle_cache)], %g2 | ||
241 | stx %g2, [%sp + 2047 + 128 + 0x20] | ||
242 | sethi %hi(KERNBASE + 0x400000), %g2 | ||
243 | stx %g2, [%sp + 2047 + 128 + 0x28] | ||
244 | sethi %hi(kern_locked_tte_data), %g2 | ||
245 | ldx [%g2 + %lo(kern_locked_tte_data)], %g2 | ||
246 | sethi %hi(0x400000), %g1 | ||
247 | add %g2, %g1, %g2 | ||
248 | stx %g2, [%sp + 2047 + 128 + 0x30] | ||
249 | |||
250 | mov 14, %g2 | ||
251 | BRANCH_IF_ANY_CHEETAH(g1,g5,1f) | ||
252 | |||
253 | mov 62, %g2 | ||
254 | 1: | ||
255 | |||
256 | stx %g2, [%sp + 2047 + 128 + 0x38] | ||
257 | sethi %hi(p1275buf), %g2 | ||
258 | or %g2, %lo(p1275buf), %g2 | ||
259 | ldx [%g2 + 0x08], %o1 | ||
260 | call %o1 | ||
261 | add %sp, (2047 + 128), %o0 | ||
262 | |||
263 | do_unlock: | ||
264 | sethi %hi(prom_entry_lock), %g2 | 215 | sethi %hi(prom_entry_lock), %g2 |
265 | stb %g0, [%g2 + %lo(prom_entry_lock)] | 216 | stb %g0, [%g2 + %lo(prom_entry_lock)] |
266 | membar #StoreStore | #StoreLoad | 217 | membar #StoreStore | #StoreLoad |
@@ -269,47 +220,36 @@ do_unlock: | |||
269 | nop | 220 | nop |
270 | 221 | ||
271 | niagara_lock_tlb: | 222 | niagara_lock_tlb: |
223 | sethi %hi(KERNBASE), %l3 | ||
224 | sethi %hi(kern_locked_tte_data), %l4 | ||
225 | ldx [%l4 + %lo(kern_locked_tte_data)], %l4 | ||
226 | clr %l5 | ||
227 | sethi %hi(num_kernel_image_mappings), %l6 | ||
228 | lduw [%l6 + %lo(num_kernel_image_mappings)], %l6 | ||
229 | add %l6, 1, %l6 | ||
230 | |||
231 | 1: | ||
272 | mov HV_FAST_MMU_MAP_PERM_ADDR, %o5 | 232 | mov HV_FAST_MMU_MAP_PERM_ADDR, %o5 |
273 | sethi %hi(KERNBASE), %o0 | 233 | sllx %l5, 22, %g2 |
234 | add %l3, %g2, %o0 | ||
274 | clr %o1 | 235 | clr %o1 |
275 | sethi %hi(kern_locked_tte_data), %o2 | 236 | add %l4, %g2, %o2 |
276 | ldx [%o2 + %lo(kern_locked_tte_data)], %o2 | ||
277 | mov HV_MMU_IMMU, %o3 | 237 | mov HV_MMU_IMMU, %o3 |
278 | ta HV_FAST_TRAP | 238 | ta HV_FAST_TRAP |
279 | 239 | ||
280 | mov HV_FAST_MMU_MAP_PERM_ADDR, %o5 | 240 | mov HV_FAST_MMU_MAP_PERM_ADDR, %o5 |
281 | sethi %hi(KERNBASE), %o0 | 241 | sllx %l5, 22, %g2 |
242 | add %l3, %g2, %o0 | ||
282 | clr %o1 | 243 | clr %o1 |
283 | sethi %hi(kern_locked_tte_data), %o2 | 244 | add %l4, %g2, %o2 |
284 | ldx [%o2 + %lo(kern_locked_tte_data)], %o2 | ||
285 | mov HV_MMU_DMMU, %o3 | 245 | mov HV_MMU_DMMU, %o3 |
286 | ta HV_FAST_TRAP | 246 | ta HV_FAST_TRAP |
287 | 247 | ||
288 | sethi %hi(bigkernel), %g2 | 248 | add %l5, 1, %l5 |
289 | lduw [%g2 + %lo(bigkernel)], %g2 | 249 | cmp %l5, %l6 |
290 | brz,pt %g2, after_lock_tlb | 250 | bne,pt %xcc, 1b |
291 | nop | 251 | nop |
292 | 252 | ||
293 | mov HV_FAST_MMU_MAP_PERM_ADDR, %o5 | ||
294 | sethi %hi(KERNBASE + 0x400000), %o0 | ||
295 | clr %o1 | ||
296 | sethi %hi(kern_locked_tte_data), %o2 | ||
297 | ldx [%o2 + %lo(kern_locked_tte_data)], %o2 | ||
298 | sethi %hi(0x400000), %o3 | ||
299 | add %o2, %o3, %o2 | ||
300 | mov HV_MMU_IMMU, %o3 | ||
301 | ta HV_FAST_TRAP | ||
302 | |||
303 | mov HV_FAST_MMU_MAP_PERM_ADDR, %o5 | ||
304 | sethi %hi(KERNBASE + 0x400000), %o0 | ||
305 | clr %o1 | ||
306 | sethi %hi(kern_locked_tte_data), %o2 | ||
307 | ldx [%o2 + %lo(kern_locked_tte_data)], %o2 | ||
308 | sethi %hi(0x400000), %o3 | ||
309 | add %o2, %o3, %o2 | ||
310 | mov HV_MMU_DMMU, %o3 | ||
311 | ta HV_FAST_TRAP | ||
312 | |||
313 | after_lock_tlb: | 253 | after_lock_tlb: |
314 | wrpr %g0, (PSTATE_PRIV | PSTATE_PEF), %pstate | 254 | wrpr %g0, (PSTATE_PRIV | PSTATE_PEF), %pstate |
315 | wr %g0, 0, %fprs | 255 | wr %g0, 0, %fprs |
diff --git a/arch/sparc64/mm/init.c b/arch/sparc64/mm/init.c index b5c30416fdac..466fd6cffac9 100644 --- a/arch/sparc64/mm/init.c +++ b/arch/sparc64/mm/init.c | |||
@@ -166,7 +166,7 @@ unsigned long sparc64_kern_pri_context __read_mostly; | |||
166 | unsigned long sparc64_kern_pri_nuc_bits __read_mostly; | 166 | unsigned long sparc64_kern_pri_nuc_bits __read_mostly; |
167 | unsigned long sparc64_kern_sec_context __read_mostly; | 167 | unsigned long sparc64_kern_sec_context __read_mostly; |
168 | 168 | ||
169 | int bigkernel = 0; | 169 | int num_kernel_image_mappings; |
170 | 170 | ||
171 | #ifdef CONFIG_DEBUG_DCFLUSH | 171 | #ifdef CONFIG_DEBUG_DCFLUSH |
172 | atomic_t dcpage_flushes = ATOMIC_INIT(0); | 172 | atomic_t dcpage_flushes = ATOMIC_INIT(0); |
@@ -572,7 +572,7 @@ static unsigned long kern_large_tte(unsigned long paddr); | |||
572 | static void __init remap_kernel(void) | 572 | static void __init remap_kernel(void) |
573 | { | 573 | { |
574 | unsigned long phys_page, tte_vaddr, tte_data; | 574 | unsigned long phys_page, tte_vaddr, tte_data; |
575 | int tlb_ent = sparc64_highest_locked_tlbent(); | 575 | int i, tlb_ent = sparc64_highest_locked_tlbent(); |
576 | 576 | ||
577 | tte_vaddr = (unsigned long) KERNBASE; | 577 | tte_vaddr = (unsigned long) KERNBASE; |
578 | phys_page = (prom_boot_mapping_phys_low >> 22UL) << 22UL; | 578 | phys_page = (prom_boot_mapping_phys_low >> 22UL) << 22UL; |
@@ -582,27 +582,20 @@ static void __init remap_kernel(void) | |||
582 | 582 | ||
583 | /* Now lock us into the TLBs via Hypervisor or OBP. */ | 583 | /* Now lock us into the TLBs via Hypervisor or OBP. */ |
584 | if (tlb_type == hypervisor) { | 584 | if (tlb_type == hypervisor) { |
585 | hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU); | 585 | for (i = 0; i < num_kernel_image_mappings; i++) { |
586 | hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU); | ||
587 | if (bigkernel) { | ||
588 | tte_vaddr += 0x400000; | ||
589 | tte_data += 0x400000; | ||
590 | hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU); | 586 | hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU); |
591 | hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU); | 587 | hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU); |
588 | tte_vaddr += 0x400000; | ||
589 | tte_data += 0x400000; | ||
592 | } | 590 | } |
593 | } else { | 591 | } else { |
594 | prom_dtlb_load(tlb_ent, tte_data, tte_vaddr); | 592 | for (i = 0; i < num_kernel_image_mappings; i++) { |
595 | prom_itlb_load(tlb_ent, tte_data, tte_vaddr); | 593 | prom_dtlb_load(tlb_ent - i, tte_data, tte_vaddr); |
596 | if (bigkernel) { | 594 | prom_itlb_load(tlb_ent - i, tte_data, tte_vaddr); |
597 | tlb_ent -= 1; | 595 | tte_vaddr += 0x400000; |
598 | prom_dtlb_load(tlb_ent, | 596 | tte_data += 0x400000; |
599 | tte_data + 0x400000, | ||
600 | tte_vaddr + 0x400000); | ||
601 | prom_itlb_load(tlb_ent, | ||
602 | tte_data + 0x400000, | ||
603 | tte_vaddr + 0x400000); | ||
604 | } | 597 | } |
605 | sparc64_highest_unlocked_tlb_ent = tlb_ent - 1; | 598 | sparc64_highest_unlocked_tlb_ent = tlb_ent - i; |
606 | } | 599 | } |
607 | if (tlb_type == cheetah_plus) { | 600 | if (tlb_type == cheetah_plus) { |
608 | sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 | | 601 | sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 | |
@@ -1352,12 +1345,9 @@ void __init paging_init(void) | |||
1352 | shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE); | 1345 | shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE); |
1353 | 1346 | ||
1354 | real_end = (unsigned long)_end; | 1347 | real_end = (unsigned long)_end; |
1355 | if ((real_end > ((unsigned long)KERNBASE + 0x400000))) | 1348 | num_kernel_image_mappings = DIV_ROUND_UP(real_end - KERNBASE, 1 << 22); |
1356 | bigkernel = 1; | 1349 | printk("Kernel: Using %d locked TLB entries for main kernel image.\n", |
1357 | if ((real_end > ((unsigned long)KERNBASE + 0x800000))) { | 1350 | num_kernel_image_mappings); |
1358 | prom_printf("paging_init: Kernel > 8MB, too large.\n"); | ||
1359 | prom_halt(); | ||
1360 | } | ||
1361 | 1351 | ||
1362 | /* Set kernel pgd to upper alias so physical page computations | 1352 | /* Set kernel pgd to upper alias so physical page computations |
1363 | * work. | 1353 | * work. |
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index d8172aabc660..e55af12e11b7 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c | |||
@@ -222,8 +222,7 @@ static int is_io_pte(unsigned long pte) | |||
222 | 222 | ||
223 | static int is_rmap_pte(u64 pte) | 223 | static int is_rmap_pte(u64 pte) |
224 | { | 224 | { |
225 | return pte != shadow_trap_nonpresent_pte | 225 | return is_shadow_present_pte(pte); |
226 | && pte != shadow_notrap_nonpresent_pte; | ||
227 | } | 226 | } |
228 | 227 | ||
229 | static gfn_t pse36_gfn_delta(u32 gpte) | 228 | static gfn_t pse36_gfn_delta(u32 gpte) |
@@ -893,14 +892,25 @@ static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *shadow_pte, | |||
893 | int *ptwrite, gfn_t gfn, struct page *page) | 892 | int *ptwrite, gfn_t gfn, struct page *page) |
894 | { | 893 | { |
895 | u64 spte; | 894 | u64 spte; |
896 | int was_rmapped = is_rmap_pte(*shadow_pte); | 895 | int was_rmapped = 0; |
897 | int was_writeble = is_writeble_pte(*shadow_pte); | 896 | int was_writeble = is_writeble_pte(*shadow_pte); |
897 | hfn_t host_pfn = (*shadow_pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT; | ||
898 | 898 | ||
899 | pgprintk("%s: spte %llx access %x write_fault %d" | 899 | pgprintk("%s: spte %llx access %x write_fault %d" |
900 | " user_fault %d gfn %lx\n", | 900 | " user_fault %d gfn %lx\n", |
901 | __FUNCTION__, *shadow_pte, pt_access, | 901 | __FUNCTION__, *shadow_pte, pt_access, |
902 | write_fault, user_fault, gfn); | 902 | write_fault, user_fault, gfn); |
903 | 903 | ||
904 | if (is_rmap_pte(*shadow_pte)) { | ||
905 | if (host_pfn != page_to_pfn(page)) { | ||
906 | pgprintk("hfn old %lx new %lx\n", | ||
907 | host_pfn, page_to_pfn(page)); | ||
908 | rmap_remove(vcpu->kvm, shadow_pte); | ||
909 | } | ||
910 | else | ||
911 | was_rmapped = 1; | ||
912 | } | ||
913 | |||
904 | /* | 914 | /* |
905 | * We don't set the accessed bit, since we sometimes want to see | 915 | * We don't set the accessed bit, since we sometimes want to see |
906 | * whether the guest actually used the pte (in order to detect | 916 | * whether the guest actually used the pte (in order to detect |
@@ -1402,7 +1412,7 @@ static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa, | |||
1402 | up_read(¤t->mm->mmap_sem); | 1412 | up_read(¤t->mm->mmap_sem); |
1403 | 1413 | ||
1404 | vcpu->arch.update_pte.gfn = gfn; | 1414 | vcpu->arch.update_pte.gfn = gfn; |
1405 | vcpu->arch.update_pte.page = gfn_to_page(vcpu->kvm, gfn); | 1415 | vcpu->arch.update_pte.page = page; |
1406 | } | 1416 | } |
1407 | 1417 | ||
1408 | void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa, | 1418 | void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa, |
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 94ea724638fd..8e1462880d1f 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c | |||
@@ -349,8 +349,6 @@ static void update_exception_bitmap(struct kvm_vcpu *vcpu) | |||
349 | 349 | ||
350 | static void reload_tss(void) | 350 | static void reload_tss(void) |
351 | { | 351 | { |
352 | #ifndef CONFIG_X86_64 | ||
353 | |||
354 | /* | 352 | /* |
355 | * VT restores TR but not its size. Useless. | 353 | * VT restores TR but not its size. Useless. |
356 | */ | 354 | */ |
@@ -361,7 +359,6 @@ static void reload_tss(void) | |||
361 | descs = (void *)gdt.base; | 359 | descs = (void *)gdt.base; |
362 | descs[GDT_ENTRY_TSS].type = 9; /* available TSS */ | 360 | descs[GDT_ENTRY_TSS].type = 9; /* available TSS */ |
363 | load_TR_desc(); | 361 | load_TR_desc(); |
364 | #endif | ||
365 | } | 362 | } |
366 | 363 | ||
367 | static void load_transition_efer(struct vcpu_vmx *vmx) | 364 | static void load_transition_efer(struct vcpu_vmx *vmx) |
@@ -1436,7 +1433,7 @@ static int init_rmode_tss(struct kvm *kvm) | |||
1436 | int ret = 0; | 1433 | int ret = 0; |
1437 | int r; | 1434 | int r; |
1438 | 1435 | ||
1439 | down_read(¤t->mm->mmap_sem); | 1436 | down_read(&kvm->slots_lock); |
1440 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); | 1437 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
1441 | if (r < 0) | 1438 | if (r < 0) |
1442 | goto out; | 1439 | goto out; |
@@ -1459,7 +1456,7 @@ static int init_rmode_tss(struct kvm *kvm) | |||
1459 | 1456 | ||
1460 | ret = 1; | 1457 | ret = 1; |
1461 | out: | 1458 | out: |
1462 | up_read(¤t->mm->mmap_sem); | 1459 | up_read(&kvm->slots_lock); |
1463 | return ret; | 1460 | return ret; |
1464 | } | 1461 | } |
1465 | 1462 | ||
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index 8fe576baa148..4afaba0ed722 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c | |||
@@ -106,7 +106,7 @@ static int ioremap_change_attr(unsigned long vaddr, unsigned long size, | |||
106 | * have to convert them into an offset in a page-aligned mapping, but the | 106 | * have to convert them into an offset in a page-aligned mapping, but the |
107 | * caller shouldn't need to know that small detail. | 107 | * caller shouldn't need to know that small detail. |
108 | */ | 108 | */ |
109 | static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size, | 109 | static void __iomem *__ioremap(resource_size_t phys_addr, unsigned long size, |
110 | enum ioremap_mode mode) | 110 | enum ioremap_mode mode) |
111 | { | 111 | { |
112 | unsigned long pfn, offset, last_addr, vaddr; | 112 | unsigned long pfn, offset, last_addr, vaddr; |
@@ -193,13 +193,13 @@ static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size, | |||
193 | * | 193 | * |
194 | * Must be freed with iounmap. | 194 | * Must be freed with iounmap. |
195 | */ | 195 | */ |
196 | void __iomem *ioremap_nocache(unsigned long phys_addr, unsigned long size) | 196 | void __iomem *ioremap_nocache(resource_size_t phys_addr, unsigned long size) |
197 | { | 197 | { |
198 | return __ioremap(phys_addr, size, IOR_MODE_UNCACHED); | 198 | return __ioremap(phys_addr, size, IOR_MODE_UNCACHED); |
199 | } | 199 | } |
200 | EXPORT_SYMBOL(ioremap_nocache); | 200 | EXPORT_SYMBOL(ioremap_nocache); |
201 | 201 | ||
202 | void __iomem *ioremap_cache(unsigned long phys_addr, unsigned long size) | 202 | void __iomem *ioremap_cache(resource_size_t phys_addr, unsigned long size) |
203 | { | 203 | { |
204 | return __ioremap(phys_addr, size, IOR_MODE_CACHED); | 204 | return __ioremap(phys_addr, size, IOR_MODE_CACHED); |
205 | } | 205 | } |
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 17ee6ed985d9..b1eb4e24c86a 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -433,6 +433,7 @@ static const struct ata_port_info ahci_port_info[] = { | |||
433 | /* board_ahci_sb600 */ | 433 | /* board_ahci_sb600 */ |
434 | { | 434 | { |
435 | AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL | | 435 | AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL | |
436 | AHCI_HFLAG_32BIT_ONLY | | ||
436 | AHCI_HFLAG_SECT255 | AHCI_HFLAG_NO_PMP), | 437 | AHCI_HFLAG_SECT255 | AHCI_HFLAG_NO_PMP), |
437 | .flags = AHCI_FLAG_COMMON, | 438 | .flags = AHCI_FLAG_COMMON, |
438 | .link_flags = AHCI_LFLAG_COMMON, | 439 | .link_flags = AHCI_LFLAG_COMMON, |
@@ -1217,8 +1218,11 @@ static void ahci_dev_config(struct ata_device *dev) | |||
1217 | { | 1218 | { |
1218 | struct ahci_host_priv *hpriv = dev->link->ap->host->private_data; | 1219 | struct ahci_host_priv *hpriv = dev->link->ap->host->private_data; |
1219 | 1220 | ||
1220 | if (hpriv->flags & AHCI_HFLAG_SECT255) | 1221 | if (hpriv->flags & AHCI_HFLAG_SECT255) { |
1221 | dev->max_sectors = 255; | 1222 | dev->max_sectors = 255; |
1223 | ata_dev_printk(dev, KERN_INFO, | ||
1224 | "SB600 AHCI: limiting to 255 sectors per cmd\n"); | ||
1225 | } | ||
1222 | } | 1226 | } |
1223 | 1227 | ||
1224 | static unsigned int ahci_dev_classify(struct ata_port *ap) | 1228 | static unsigned int ahci_dev_classify(struct ata_port *ap) |
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 4bbe31f98ef8..c4248b37ff64 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
@@ -1416,12 +1416,12 @@ static int ata_hpa_resize(struct ata_device *dev) | |||
1416 | /* read native max address */ | 1416 | /* read native max address */ |
1417 | rc = ata_read_native_max_address(dev, &native_sectors); | 1417 | rc = ata_read_native_max_address(dev, &native_sectors); |
1418 | if (rc) { | 1418 | if (rc) { |
1419 | /* If HPA isn't going to be unlocked, skip HPA | 1419 | /* If device aborted the command or HPA isn't going to |
1420 | * resizing from the next try. | 1420 | * be unlocked, skip HPA resizing. |
1421 | */ | 1421 | */ |
1422 | if (!ata_ignore_hpa) { | 1422 | if (rc == -EACCES || !ata_ignore_hpa) { |
1423 | ata_dev_printk(dev, KERN_WARNING, "HPA support seems " | 1423 | ata_dev_printk(dev, KERN_WARNING, "HPA support seems " |
1424 | "broken, will skip HPA handling\n"); | 1424 | "broken, skipping HPA handling\n"); |
1425 | dev->horkage |= ATA_HORKAGE_BROKEN_HPA; | 1425 | dev->horkage |= ATA_HORKAGE_BROKEN_HPA; |
1426 | 1426 | ||
1427 | /* we can continue if device aborted the command */ | 1427 | /* we can continue if device aborted the command */ |
@@ -2092,24 +2092,34 @@ int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class, | |||
2092 | id, sizeof(id[0]) * ATA_ID_WORDS, 0); | 2092 | id, sizeof(id[0]) * ATA_ID_WORDS, 0); |
2093 | if (err_mask) { | 2093 | if (err_mask) { |
2094 | if (err_mask & AC_ERR_NODEV_HINT) { | 2094 | if (err_mask & AC_ERR_NODEV_HINT) { |
2095 | DPRINTK("ata%u.%d: NODEV after polling detection\n", | 2095 | ata_dev_printk(dev, KERN_DEBUG, |
2096 | ap->print_id, dev->devno); | 2096 | "NODEV after polling detection\n"); |
2097 | return -ENOENT; | 2097 | return -ENOENT; |
2098 | } | 2098 | } |
2099 | 2099 | ||
2100 | /* Device or controller might have reported the wrong | 2100 | if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) { |
2101 | * device class. Give a shot at the other IDENTIFY if | 2101 | /* Device or controller might have reported |
2102 | * the current one is aborted by the device. | 2102 | * the wrong device class. Give a shot at the |
2103 | */ | 2103 | * other IDENTIFY if the current one is |
2104 | if (may_fallback && | 2104 | * aborted by the device. |
2105 | (err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) { | 2105 | */ |
2106 | may_fallback = 0; | 2106 | if (may_fallback) { |
2107 | may_fallback = 0; | ||
2107 | 2108 | ||
2108 | if (class == ATA_DEV_ATA) | 2109 | if (class == ATA_DEV_ATA) |
2109 | class = ATA_DEV_ATAPI; | 2110 | class = ATA_DEV_ATAPI; |
2110 | else | 2111 | else |
2111 | class = ATA_DEV_ATA; | 2112 | class = ATA_DEV_ATA; |
2112 | goto retry; | 2113 | goto retry; |
2114 | } | ||
2115 | |||
2116 | /* Control reaches here iff the device aborted | ||
2117 | * both flavors of IDENTIFYs which happens | ||
2118 | * sometimes with phantom devices. | ||
2119 | */ | ||
2120 | ata_dev_printk(dev, KERN_DEBUG, | ||
2121 | "both IDENTIFYs aborted, assuming NODEV\n"); | ||
2122 | return -ENOENT; | ||
2113 | } | 2123 | } |
2114 | 2124 | ||
2115 | rc = -EIO; | 2125 | rc = -EIO; |
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index 8f0e8f2bc628..15795394b0a8 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
@@ -527,6 +527,14 @@ static struct ata_queued_cmd *ata_scsi_qc_new(struct ata_device *dev, | |||
527 | return qc; | 527 | return qc; |
528 | } | 528 | } |
529 | 529 | ||
530 | static void ata_qc_set_pc_nbytes(struct ata_queued_cmd *qc) | ||
531 | { | ||
532 | struct scsi_cmnd *scmd = qc->scsicmd; | ||
533 | |||
534 | qc->extrabytes = scmd->request->extra_len; | ||
535 | qc->nbytes = scsi_bufflen(scmd) + qc->extrabytes; | ||
536 | } | ||
537 | |||
530 | /** | 538 | /** |
531 | * ata_dump_status - user friendly display of error info | 539 | * ata_dump_status - user friendly display of error info |
532 | * @id: id of the port in question | 540 | * @id: id of the port in question |
@@ -2539,7 +2547,7 @@ static unsigned int atapi_xlat(struct ata_queued_cmd *qc) | |||
2539 | } | 2547 | } |
2540 | 2548 | ||
2541 | qc->tf.command = ATA_CMD_PACKET; | 2549 | qc->tf.command = ATA_CMD_PACKET; |
2542 | qc->nbytes = scsi_bufflen(scmd) + scmd->request->extra_len; | 2550 | ata_qc_set_pc_nbytes(qc); |
2543 | 2551 | ||
2544 | /* check whether ATAPI DMA is safe */ | 2552 | /* check whether ATAPI DMA is safe */ |
2545 | if (!using_pio && ata_check_atapi_dma(qc)) | 2553 | if (!using_pio && ata_check_atapi_dma(qc)) |
@@ -2550,7 +2558,7 @@ static unsigned int atapi_xlat(struct ata_queued_cmd *qc) | |||
2550 | * want to set it properly, and for DMA where it is | 2558 | * want to set it properly, and for DMA where it is |
2551 | * effectively meaningless. | 2559 | * effectively meaningless. |
2552 | */ | 2560 | */ |
2553 | nbytes = min(scmd->request->data_len, (unsigned int)63 * 1024); | 2561 | nbytes = min(ata_qc_raw_nbytes(qc), (unsigned int)63 * 1024); |
2554 | 2562 | ||
2555 | /* Most ATAPI devices which honor transfer chunk size don't | 2563 | /* Most ATAPI devices which honor transfer chunk size don't |
2556 | * behave according to the spec when odd chunk size which | 2564 | * behave according to the spec when odd chunk size which |
@@ -2876,7 +2884,7 @@ static unsigned int ata_scsi_pass_thru(struct ata_queued_cmd *qc) | |||
2876 | * TODO: find out if we need to do more here to | 2884 | * TODO: find out if we need to do more here to |
2877 | * cover scatter/gather case. | 2885 | * cover scatter/gather case. |
2878 | */ | 2886 | */ |
2879 | qc->nbytes = scsi_bufflen(scmd) + scmd->request->extra_len; | 2887 | ata_qc_set_pc_nbytes(qc); |
2880 | 2888 | ||
2881 | /* request result TF and be quiet about device error */ | 2889 | /* request result TF and be quiet about device error */ |
2882 | qc->flags |= ATA_QCFLAG_RESULT_TF | ATA_QCFLAG_QUIET; | 2890 | qc->flags |= ATA_QCFLAG_RESULT_TF | ATA_QCFLAG_QUIET; |
diff --git a/drivers/ata/pata_it821x.c b/drivers/ata/pata_it821x.c index 109ddd42c266..257951d03dbb 100644 --- a/drivers/ata/pata_it821x.c +++ b/drivers/ata/pata_it821x.c | |||
@@ -564,7 +564,7 @@ static int it821x_check_atapi_dma(struct ata_queued_cmd *qc) | |||
564 | struct it821x_dev *itdev = ap->private_data; | 564 | struct it821x_dev *itdev = ap->private_data; |
565 | 565 | ||
566 | /* Only use dma for transfers to/from the media. */ | 566 | /* Only use dma for transfers to/from the media. */ |
567 | if (qc->nbytes < 2048) | 567 | if (ata_qc_raw_nbytes(qc) < 2048) |
568 | return -EOPNOTSUPP; | 568 | return -EOPNOTSUPP; |
569 | 569 | ||
570 | /* No ATAPI DMA in smart mode */ | 570 | /* No ATAPI DMA in smart mode */ |
diff --git a/drivers/ata/sata_promise.c b/drivers/ata/sata_promise.c index f251a5f569d5..11c1afea2db2 100644 --- a/drivers/ata/sata_promise.c +++ b/drivers/ata/sata_promise.c | |||
@@ -46,7 +46,7 @@ | |||
46 | #include "sata_promise.h" | 46 | #include "sata_promise.h" |
47 | 47 | ||
48 | #define DRV_NAME "sata_promise" | 48 | #define DRV_NAME "sata_promise" |
49 | #define DRV_VERSION "2.11" | 49 | #define DRV_VERSION "2.12" |
50 | 50 | ||
51 | enum { | 51 | enum { |
52 | PDC_MAX_PORTS = 4, | 52 | PDC_MAX_PORTS = 4, |
@@ -145,7 +145,9 @@ static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc); | |||
145 | static void pdc_irq_clear(struct ata_port *ap); | 145 | static void pdc_irq_clear(struct ata_port *ap); |
146 | static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc); | 146 | static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc); |
147 | static void pdc_freeze(struct ata_port *ap); | 147 | static void pdc_freeze(struct ata_port *ap); |
148 | static void pdc_sata_freeze(struct ata_port *ap); | ||
148 | static void pdc_thaw(struct ata_port *ap); | 149 | static void pdc_thaw(struct ata_port *ap); |
150 | static void pdc_sata_thaw(struct ata_port *ap); | ||
149 | static void pdc_pata_error_handler(struct ata_port *ap); | 151 | static void pdc_pata_error_handler(struct ata_port *ap); |
150 | static void pdc_sata_error_handler(struct ata_port *ap); | 152 | static void pdc_sata_error_handler(struct ata_port *ap); |
151 | static void pdc_post_internal_cmd(struct ata_queued_cmd *qc); | 153 | static void pdc_post_internal_cmd(struct ata_queued_cmd *qc); |
@@ -180,8 +182,8 @@ static const struct ata_port_operations pdc_sata_ops = { | |||
180 | 182 | ||
181 | .qc_prep = pdc_qc_prep, | 183 | .qc_prep = pdc_qc_prep, |
182 | .qc_issue = pdc_qc_issue_prot, | 184 | .qc_issue = pdc_qc_issue_prot, |
183 | .freeze = pdc_freeze, | 185 | .freeze = pdc_sata_freeze, |
184 | .thaw = pdc_thaw, | 186 | .thaw = pdc_sata_thaw, |
185 | .error_handler = pdc_sata_error_handler, | 187 | .error_handler = pdc_sata_error_handler, |
186 | .post_internal_cmd = pdc_post_internal_cmd, | 188 | .post_internal_cmd = pdc_post_internal_cmd, |
187 | .cable_detect = pdc_sata_cable_detect, | 189 | .cable_detect = pdc_sata_cable_detect, |
@@ -205,8 +207,8 @@ static const struct ata_port_operations pdc_old_sata_ops = { | |||
205 | 207 | ||
206 | .qc_prep = pdc_qc_prep, | 208 | .qc_prep = pdc_qc_prep, |
207 | .qc_issue = pdc_qc_issue_prot, | 209 | .qc_issue = pdc_qc_issue_prot, |
208 | .freeze = pdc_freeze, | 210 | .freeze = pdc_sata_freeze, |
209 | .thaw = pdc_thaw, | 211 | .thaw = pdc_sata_thaw, |
210 | .error_handler = pdc_sata_error_handler, | 212 | .error_handler = pdc_sata_error_handler, |
211 | .post_internal_cmd = pdc_post_internal_cmd, | 213 | .post_internal_cmd = pdc_post_internal_cmd, |
212 | .cable_detect = pdc_sata_cable_detect, | 214 | .cable_detect = pdc_sata_cable_detect, |
@@ -631,6 +633,41 @@ static void pdc_qc_prep(struct ata_queued_cmd *qc) | |||
631 | } | 633 | } |
632 | } | 634 | } |
633 | 635 | ||
636 | static int pdc_is_sataii_tx4(unsigned long flags) | ||
637 | { | ||
638 | const unsigned long mask = PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS; | ||
639 | return (flags & mask) == mask; | ||
640 | } | ||
641 | |||
642 | static unsigned int pdc_port_no_to_ata_no(unsigned int port_no, | ||
643 | int is_sataii_tx4) | ||
644 | { | ||
645 | static const unsigned char sataii_tx4_port_remap[4] = { 3, 1, 0, 2}; | ||
646 | return is_sataii_tx4 ? sataii_tx4_port_remap[port_no] : port_no; | ||
647 | } | ||
648 | |||
649 | static unsigned int pdc_sata_nr_ports(const struct ata_port *ap) | ||
650 | { | ||
651 | return (ap->flags & PDC_FLAG_4_PORTS) ? 4 : 2; | ||
652 | } | ||
653 | |||
654 | static unsigned int pdc_sata_ata_port_to_ata_no(const struct ata_port *ap) | ||
655 | { | ||
656 | const struct ata_host *host = ap->host; | ||
657 | unsigned int nr_ports = pdc_sata_nr_ports(ap); | ||
658 | unsigned int i; | ||
659 | |||
660 | for(i = 0; i < nr_ports && host->ports[i] != ap; ++i) | ||
661 | ; | ||
662 | BUG_ON(i >= nr_ports); | ||
663 | return pdc_port_no_to_ata_no(i, pdc_is_sataii_tx4(ap->flags)); | ||
664 | } | ||
665 | |||
666 | static unsigned int pdc_sata_hotplug_offset(const struct ata_port *ap) | ||
667 | { | ||
668 | return (ap->flags & PDC_FLAG_GEN_II) ? PDC2_SATA_PLUG_CSR : PDC_SATA_PLUG_CSR; | ||
669 | } | ||
670 | |||
634 | static void pdc_freeze(struct ata_port *ap) | 671 | static void pdc_freeze(struct ata_port *ap) |
635 | { | 672 | { |
636 | void __iomem *mmio = ap->ioaddr.cmd_addr; | 673 | void __iomem *mmio = ap->ioaddr.cmd_addr; |
@@ -643,6 +680,29 @@ static void pdc_freeze(struct ata_port *ap) | |||
643 | readl(mmio + PDC_CTLSTAT); /* flush */ | 680 | readl(mmio + PDC_CTLSTAT); /* flush */ |
644 | } | 681 | } |
645 | 682 | ||
683 | static void pdc_sata_freeze(struct ata_port *ap) | ||
684 | { | ||
685 | struct ata_host *host = ap->host; | ||
686 | void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR]; | ||
687 | unsigned int hotplug_offset = pdc_sata_hotplug_offset(ap); | ||
688 | unsigned int ata_no = pdc_sata_ata_port_to_ata_no(ap); | ||
689 | u32 hotplug_status; | ||
690 | |||
691 | /* Disable hotplug events on this port. | ||
692 | * | ||
693 | * Locking: | ||
694 | * 1) hotplug register accesses must be serialised via host->lock | ||
695 | * 2) ap->lock == &ap->host->lock | ||
696 | * 3) ->freeze() and ->thaw() are called with ap->lock held | ||
697 | */ | ||
698 | hotplug_status = readl(host_mmio + hotplug_offset); | ||
699 | hotplug_status |= 0x11 << (ata_no + 16); | ||
700 | writel(hotplug_status, host_mmio + hotplug_offset); | ||
701 | readl(host_mmio + hotplug_offset); /* flush */ | ||
702 | |||
703 | pdc_freeze(ap); | ||
704 | } | ||
705 | |||
646 | static void pdc_thaw(struct ata_port *ap) | 706 | static void pdc_thaw(struct ata_port *ap) |
647 | { | 707 | { |
648 | void __iomem *mmio = ap->ioaddr.cmd_addr; | 708 | void __iomem *mmio = ap->ioaddr.cmd_addr; |
@@ -658,6 +718,26 @@ static void pdc_thaw(struct ata_port *ap) | |||
658 | readl(mmio + PDC_CTLSTAT); /* flush */ | 718 | readl(mmio + PDC_CTLSTAT); /* flush */ |
659 | } | 719 | } |
660 | 720 | ||
721 | static void pdc_sata_thaw(struct ata_port *ap) | ||
722 | { | ||
723 | struct ata_host *host = ap->host; | ||
724 | void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR]; | ||
725 | unsigned int hotplug_offset = pdc_sata_hotplug_offset(ap); | ||
726 | unsigned int ata_no = pdc_sata_ata_port_to_ata_no(ap); | ||
727 | u32 hotplug_status; | ||
728 | |||
729 | pdc_thaw(ap); | ||
730 | |||
731 | /* Enable hotplug events on this port. | ||
732 | * Locking: see pdc_sata_freeze(). | ||
733 | */ | ||
734 | hotplug_status = readl(host_mmio + hotplug_offset); | ||
735 | hotplug_status |= 0x11 << ata_no; | ||
736 | hotplug_status &= ~(0x11 << (ata_no + 16)); | ||
737 | writel(hotplug_status, host_mmio + hotplug_offset); | ||
738 | readl(host_mmio + hotplug_offset); /* flush */ | ||
739 | } | ||
740 | |||
661 | static void pdc_common_error_handler(struct ata_port *ap, ata_reset_fn_t hardreset) | 741 | static void pdc_common_error_handler(struct ata_port *ap, ata_reset_fn_t hardreset) |
662 | { | 742 | { |
663 | if (!(ap->pflags & ATA_PFLAG_FROZEN)) | 743 | if (!(ap->pflags & ATA_PFLAG_FROZEN)) |
@@ -765,19 +845,6 @@ static void pdc_irq_clear(struct ata_port *ap) | |||
765 | readl(mmio + PDC_INT_SEQMASK); | 845 | readl(mmio + PDC_INT_SEQMASK); |
766 | } | 846 | } |
767 | 847 | ||
768 | static int pdc_is_sataii_tx4(unsigned long flags) | ||
769 | { | ||
770 | const unsigned long mask = PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS; | ||
771 | return (flags & mask) == mask; | ||
772 | } | ||
773 | |||
774 | static unsigned int pdc_port_no_to_ata_no(unsigned int port_no, | ||
775 | int is_sataii_tx4) | ||
776 | { | ||
777 | static const unsigned char sataii_tx4_port_remap[4] = { 3, 1, 0, 2}; | ||
778 | return is_sataii_tx4 ? sataii_tx4_port_remap[port_no] : port_no; | ||
779 | } | ||
780 | |||
781 | static irqreturn_t pdc_interrupt(int irq, void *dev_instance) | 848 | static irqreturn_t pdc_interrupt(int irq, void *dev_instance) |
782 | { | 849 | { |
783 | struct ata_host *host = dev_instance; | 850 | struct ata_host *host = dev_instance; |
@@ -799,6 +866,8 @@ static irqreturn_t pdc_interrupt(int irq, void *dev_instance) | |||
799 | 866 | ||
800 | mmio_base = host->iomap[PDC_MMIO_BAR]; | 867 | mmio_base = host->iomap[PDC_MMIO_BAR]; |
801 | 868 | ||
869 | spin_lock(&host->lock); | ||
870 | |||
802 | /* read and clear hotplug flags for all ports */ | 871 | /* read and clear hotplug flags for all ports */ |
803 | if (host->ports[0]->flags & PDC_FLAG_GEN_II) | 872 | if (host->ports[0]->flags & PDC_FLAG_GEN_II) |
804 | hotplug_offset = PDC2_SATA_PLUG_CSR; | 873 | hotplug_offset = PDC2_SATA_PLUG_CSR; |
@@ -814,11 +883,9 @@ static irqreturn_t pdc_interrupt(int irq, void *dev_instance) | |||
814 | 883 | ||
815 | if (mask == 0xffffffff && hotplug_status == 0) { | 884 | if (mask == 0xffffffff && hotplug_status == 0) { |
816 | VPRINTK("QUICK EXIT 2\n"); | 885 | VPRINTK("QUICK EXIT 2\n"); |
817 | return IRQ_NONE; | 886 | goto done_irq; |
818 | } | 887 | } |
819 | 888 | ||
820 | spin_lock(&host->lock); | ||
821 | |||
822 | mask &= 0xffff; /* only 16 tags possible */ | 889 | mask &= 0xffff; /* only 16 tags possible */ |
823 | if (mask == 0 && hotplug_status == 0) { | 890 | if (mask == 0 && hotplug_status == 0) { |
824 | VPRINTK("QUICK EXIT 3\n"); | 891 | VPRINTK("QUICK EXIT 3\n"); |
diff --git a/drivers/base/core.c b/drivers/base/core.c index 7de543d1d0b4..24198ad01976 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/kdev_t.h> | 19 | #include <linux/kdev_t.h> |
20 | #include <linux/notifier.h> | 20 | #include <linux/notifier.h> |
21 | #include <linux/genhd.h> | 21 | #include <linux/genhd.h> |
22 | #include <linux/kallsyms.h> | ||
22 | #include <asm/semaphore.h> | 23 | #include <asm/semaphore.h> |
23 | 24 | ||
24 | #include "base.h" | 25 | #include "base.h" |
@@ -68,6 +69,10 @@ static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr, | |||
68 | 69 | ||
69 | if (dev_attr->show) | 70 | if (dev_attr->show) |
70 | ret = dev_attr->show(dev, dev_attr, buf); | 71 | ret = dev_attr->show(dev, dev_attr, buf); |
72 | if (ret >= (ssize_t)PAGE_SIZE) { | ||
73 | print_symbol("dev_attr_show: %s returned bad count\n", | ||
74 | (unsigned long)dev_attr->show); | ||
75 | } | ||
71 | return ret; | 76 | return ret; |
72 | } | 77 | } |
73 | 78 | ||
diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig index 6bbd4fa50f3b..8d6c2089d2a8 100644 --- a/drivers/char/hw_random/Kconfig +++ b/drivers/char/hw_random/Kconfig | |||
@@ -9,7 +9,14 @@ config HW_RANDOM | |||
9 | Hardware Random Number Generator Core infrastructure. | 9 | Hardware Random Number Generator Core infrastructure. |
10 | 10 | ||
11 | To compile this driver as a module, choose M here: the | 11 | To compile this driver as a module, choose M here: the |
12 | module will be called rng-core. | 12 | module will be called rng-core. This provides a device |
13 | that's usually called /dev/hw_random, and which exposes one | ||
14 | of possibly several hardware random number generators. | ||
15 | |||
16 | These hardware random number generators do not feed directly | ||
17 | into the kernel's random number generator. That is usually | ||
18 | handled by the "rngd" daemon. Documentation/hw_random.txt | ||
19 | has more information. | ||
13 | 20 | ||
14 | If unsure, say Y. | 21 | If unsure, say Y. |
15 | 22 | ||
diff --git a/drivers/connector/cn_queue.c b/drivers/connector/cn_queue.c index 5732ca3259f9..b6fe7e7a2c2f 100644 --- a/drivers/connector/cn_queue.c +++ b/drivers/connector/cn_queue.c | |||
@@ -146,7 +146,7 @@ struct cn_queue_dev *cn_queue_alloc_dev(char *name, struct sock *nls) | |||
146 | 146 | ||
147 | dev->nls = nls; | 147 | dev->nls = nls; |
148 | 148 | ||
149 | dev->cn_queue = create_workqueue(dev->name); | 149 | dev->cn_queue = create_singlethread_workqueue(dev->name); |
150 | if (!dev->cn_queue) { | 150 | if (!dev->cn_queue) { |
151 | kfree(dev); | 151 | kfree(dev); |
152 | return NULL; | 152 | return NULL; |
diff --git a/drivers/mtd/devices/block2mtd.c b/drivers/mtd/devices/block2mtd.c index eeaaa9dce6ef..ad1880c67518 100644 --- a/drivers/mtd/devices/block2mtd.c +++ b/drivers/mtd/devices/block2mtd.c | |||
@@ -408,7 +408,6 @@ static int block2mtd_setup2(const char *val) | |||
408 | if (token[1]) { | 408 | if (token[1]) { |
409 | ret = parse_num(&erase_size, token[1]); | 409 | ret = parse_num(&erase_size, token[1]); |
410 | if (ret) { | 410 | if (ret) { |
411 | kfree(name); | ||
412 | parse_err("illegal erase size"); | 411 | parse_err("illegal erase size"); |
413 | } | 412 | } |
414 | } | 413 | } |
diff --git a/drivers/net/bnx2x.c b/drivers/net/bnx2x.c index 8af142ccf373..de32b3fba322 100644 --- a/drivers/net/bnx2x.c +++ b/drivers/net/bnx2x.c | |||
@@ -63,8 +63,8 @@ | |||
63 | #include "bnx2x.h" | 63 | #include "bnx2x.h" |
64 | #include "bnx2x_init.h" | 64 | #include "bnx2x_init.h" |
65 | 65 | ||
66 | #define DRV_MODULE_VERSION "1.40.22" | 66 | #define DRV_MODULE_VERSION "1.42.3" |
67 | #define DRV_MODULE_RELDATE "2007/11/27" | 67 | #define DRV_MODULE_RELDATE "2008/3/9" |
68 | #define BNX2X_BC_VER 0x040200 | 68 | #define BNX2X_BC_VER 0x040200 |
69 | 69 | ||
70 | /* Time in jiffies before concluding the transmitter is hung. */ | 70 | /* Time in jiffies before concluding the transmitter is hung. */ |
@@ -8008,38 +8008,6 @@ static int bnx2x_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) | |||
8008 | cmd->duplex, cmd->port, cmd->phy_address, cmd->transceiver, | 8008 | cmd->duplex, cmd->port, cmd->phy_address, cmd->transceiver, |
8009 | cmd->autoneg, cmd->maxtxpkt, cmd->maxrxpkt); | 8009 | cmd->autoneg, cmd->maxtxpkt, cmd->maxrxpkt); |
8010 | 8010 | ||
8011 | switch (cmd->port) { | ||
8012 | case PORT_TP: | ||
8013 | if (!(bp->supported & SUPPORTED_TP)) { | ||
8014 | DP(NETIF_MSG_LINK, "TP not supported\n"); | ||
8015 | return -EINVAL; | ||
8016 | } | ||
8017 | |||
8018 | if (bp->phy_flags & PHY_XGXS_FLAG) { | ||
8019 | bnx2x_link_reset(bp); | ||
8020 | bnx2x_link_settings_supported(bp, SWITCH_CFG_1G); | ||
8021 | bnx2x_phy_deassert(bp); | ||
8022 | } | ||
8023 | break; | ||
8024 | |||
8025 | case PORT_FIBRE: | ||
8026 | if (!(bp->supported & SUPPORTED_FIBRE)) { | ||
8027 | DP(NETIF_MSG_LINK, "FIBRE not supported\n"); | ||
8028 | return -EINVAL; | ||
8029 | } | ||
8030 | |||
8031 | if (!(bp->phy_flags & PHY_XGXS_FLAG)) { | ||
8032 | bnx2x_link_reset(bp); | ||
8033 | bnx2x_link_settings_supported(bp, SWITCH_CFG_10G); | ||
8034 | bnx2x_phy_deassert(bp); | ||
8035 | } | ||
8036 | break; | ||
8037 | |||
8038 | default: | ||
8039 | DP(NETIF_MSG_LINK, "Unknown port type\n"); | ||
8040 | return -EINVAL; | ||
8041 | } | ||
8042 | |||
8043 | if (cmd->autoneg == AUTONEG_ENABLE) { | 8011 | if (cmd->autoneg == AUTONEG_ENABLE) { |
8044 | if (!(bp->supported & SUPPORTED_Autoneg)) { | 8012 | if (!(bp->supported & SUPPORTED_Autoneg)) { |
8045 | DP(NETIF_MSG_LINK, "Aotoneg not supported\n"); | 8013 | DP(NETIF_MSG_LINK, "Aotoneg not supported\n"); |
diff --git a/drivers/net/fec_mpc52xx_phy.c b/drivers/net/fec_mpc52xx_phy.c index 1837584c4504..6a3ac4ea97e9 100644 --- a/drivers/net/fec_mpc52xx_phy.c +++ b/drivers/net/fec_mpc52xx_phy.c | |||
@@ -109,7 +109,8 @@ static int mpc52xx_fec_mdio_probe(struct of_device *of, const struct of_device_i | |||
109 | int irq = irq_of_parse_and_map(child, 0); | 109 | int irq = irq_of_parse_and_map(child, 0); |
110 | if (irq != NO_IRQ) { | 110 | if (irq != NO_IRQ) { |
111 | const u32 *id = of_get_property(child, "reg", NULL); | 111 | const u32 *id = of_get_property(child, "reg", NULL); |
112 | bus->irq[*id] = irq; | 112 | if (id) |
113 | bus->irq[*id] = irq; | ||
113 | } | 114 | } |
114 | } | 115 | } |
115 | 116 | ||
diff --git a/drivers/net/sungem.c b/drivers/net/sungem.c index 97212799c513..4291458955ef 100644 --- a/drivers/net/sungem.c +++ b/drivers/net/sungem.c | |||
@@ -912,7 +912,7 @@ static int gem_poll(struct napi_struct *napi, int budget) | |||
912 | * rx ring - must call napi_disable(), which | 912 | * rx ring - must call napi_disable(), which |
913 | * schedule_timeout()'s if polling is already disabled. | 913 | * schedule_timeout()'s if polling is already disabled. |
914 | */ | 914 | */ |
915 | work_done += gem_rx(gp, budget); | 915 | work_done += gem_rx(gp, budget - work_done); |
916 | 916 | ||
917 | if (work_done >= budget) | 917 | if (work_done >= budget) |
918 | return work_done; | 918 | return work_done; |
diff --git a/drivers/net/usb/rtl8150.c b/drivers/net/usb/rtl8150.c index 7e1f00131f91..df56a518691c 100644 --- a/drivers/net/usb/rtl8150.c +++ b/drivers/net/usb/rtl8150.c | |||
@@ -376,7 +376,7 @@ static int alloc_all_urbs(rtl8150_t * dev) | |||
376 | return 0; | 376 | return 0; |
377 | } | 377 | } |
378 | dev->ctrl_urb = usb_alloc_urb(0, GFP_KERNEL); | 378 | dev->ctrl_urb = usb_alloc_urb(0, GFP_KERNEL); |
379 | if (!dev->intr_urb) { | 379 | if (!dev->ctrl_urb) { |
380 | usb_free_urb(dev->rx_urb); | 380 | usb_free_urb(dev->rx_urb); |
381 | usb_free_urb(dev->tx_urb); | 381 | usb_free_urb(dev->tx_urb); |
382 | usb_free_urb(dev->intr_urb); | 382 | usb_free_urb(dev->intr_urb); |
diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c index 977d29b32295..4cb949f0ebd9 100644 --- a/drivers/pci/intel-iommu.c +++ b/drivers/pci/intel-iommu.c | |||
@@ -1097,6 +1097,8 @@ static void iommu_free_domain(struct dmar_domain *domain) | |||
1097 | } | 1097 | } |
1098 | 1098 | ||
1099 | static struct iova_domain reserved_iova_list; | 1099 | static struct iova_domain reserved_iova_list; |
1100 | static struct lock_class_key reserved_alloc_key; | ||
1101 | static struct lock_class_key reserved_rbtree_key; | ||
1100 | 1102 | ||
1101 | static void dmar_init_reserved_ranges(void) | 1103 | static void dmar_init_reserved_ranges(void) |
1102 | { | 1104 | { |
@@ -1107,6 +1109,11 @@ static void dmar_init_reserved_ranges(void) | |||
1107 | 1109 | ||
1108 | init_iova_domain(&reserved_iova_list, DMA_32BIT_PFN); | 1110 | init_iova_domain(&reserved_iova_list, DMA_32BIT_PFN); |
1109 | 1111 | ||
1112 | lockdep_set_class(&reserved_iova_list.iova_alloc_lock, | ||
1113 | &reserved_alloc_key); | ||
1114 | lockdep_set_class(&reserved_iova_list.iova_rbtree_lock, | ||
1115 | &reserved_rbtree_key); | ||
1116 | |||
1110 | /* IOAPIC ranges shouldn't be accessed by DMA */ | 1117 | /* IOAPIC ranges shouldn't be accessed by DMA */ |
1111 | iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START), | 1118 | iova = reserve_iova(&reserved_iova_list, IOVA_PFN(IOAPIC_RANGE_START), |
1112 | IOVA_PFN(IOAPIC_RANGE_END)); | 1119 | IOVA_PFN(IOAPIC_RANGE_END)); |
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 183fddaa38b7..a4445b7210bf 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -314,24 +314,6 @@ int pci_find_ht_capability(struct pci_dev *dev, int ht_cap) | |||
314 | } | 314 | } |
315 | EXPORT_SYMBOL_GPL(pci_find_ht_capability); | 315 | EXPORT_SYMBOL_GPL(pci_find_ht_capability); |
316 | 316 | ||
317 | void pcie_wait_pending_transaction(struct pci_dev *dev) | ||
318 | { | ||
319 | int pos; | ||
320 | u16 reg16; | ||
321 | |||
322 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); | ||
323 | if (!pos) | ||
324 | return; | ||
325 | while (1) { | ||
326 | pci_read_config_word(dev, pos + PCI_EXP_DEVSTA, ®16); | ||
327 | if (!(reg16 & PCI_EXP_DEVSTA_TRPND)) | ||
328 | break; | ||
329 | cpu_relax(); | ||
330 | } | ||
331 | |||
332 | } | ||
333 | EXPORT_SYMBOL_GPL(pcie_wait_pending_transaction); | ||
334 | |||
335 | /** | 317 | /** |
336 | * pci_find_parent_resource - return resource region of parent bus of given region | 318 | * pci_find_parent_resource - return resource region of parent bus of given region |
337 | * @dev: PCI device structure contains resources to be searched | 319 | * @dev: PCI device structure contains resources to be searched |
@@ -936,9 +918,6 @@ pci_disable_device(struct pci_dev *dev) | |||
936 | if (atomic_sub_return(1, &dev->enable_cnt) != 0) | 918 | if (atomic_sub_return(1, &dev->enable_cnt) != 0) |
937 | return; | 919 | return; |
938 | 920 | ||
939 | /* Wait for all transactions are finished before disabling the device */ | ||
940 | pcie_wait_pending_transaction(dev); | ||
941 | |||
942 | pci_read_config_word(dev, PCI_COMMAND, &pci_command); | 921 | pci_read_config_word(dev, PCI_COMMAND, &pci_command); |
943 | if (pci_command & PCI_COMMAND_MASTER) { | 922 | if (pci_command & PCI_COMMAND_MASTER) { |
944 | pci_command &= ~PCI_COMMAND_MASTER; | 923 | pci_command &= ~PCI_COMMAND_MASTER; |
diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c index e8a01f264540..11759080ca54 100644 --- a/drivers/uio/uio.c +++ b/drivers/uio/uio.c | |||
@@ -470,6 +470,8 @@ static int uio_mmap_physical(struct vm_area_struct *vma) | |||
470 | 470 | ||
471 | vma->vm_flags |= VM_IO | VM_RESERVED; | 471 | vma->vm_flags |= VM_IO | VM_RESERVED; |
472 | 472 | ||
473 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); | ||
474 | |||
473 | return remap_pfn_range(vma, | 475 | return remap_pfn_range(vma, |
474 | vma->vm_start, | 476 | vma->vm_start, |
475 | idev->info->mem[mi].addr >> PAGE_SHIFT, | 477 | idev->info->mem[mi].addr >> PAGE_SHIFT, |
diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c index fefb92296e8f..c311f67b7f08 100644 --- a/drivers/usb/core/message.c +++ b/drivers/usb/core/message.c | |||
@@ -1206,7 +1206,10 @@ int usb_set_interface(struct usb_device *dev, int interface, int alternate) | |||
1206 | return -EINVAL; | 1206 | return -EINVAL; |
1207 | } | 1207 | } |
1208 | 1208 | ||
1209 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), | 1209 | if (dev->quirks & USB_QUIRK_NO_SET_INTF) |
1210 | ret = -EPIPE; | ||
1211 | else | ||
1212 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), | ||
1210 | USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE, | 1213 | USB_REQ_SET_INTERFACE, USB_RECIP_INTERFACE, |
1211 | alternate, interface, NULL, 0, 5000); | 1214 | alternate, interface, NULL, 0, 5000); |
1212 | 1215 | ||
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index d9d1eb19f2a1..dfc5418ea10c 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c | |||
@@ -50,6 +50,9 @@ static const struct usb_device_id usb_quirk_list[] = { | |||
50 | /* M-Systems Flash Disk Pioneers */ | 50 | /* M-Systems Flash Disk Pioneers */ |
51 | { USB_DEVICE(0x08ec, 0x1000), .driver_info = USB_QUIRK_RESET_RESUME }, | 51 | { USB_DEVICE(0x08ec, 0x1000), .driver_info = USB_QUIRK_RESET_RESUME }, |
52 | 52 | ||
53 | /* X-Rite/Gretag-Macbeth Eye-One Pro display colorimeter */ | ||
54 | { USB_DEVICE(0x0971, 0x2000), .driver_info = USB_QUIRK_NO_SET_INTF }, | ||
55 | |||
53 | /* Action Semiconductor flash disk */ | 56 | /* Action Semiconductor flash disk */ |
54 | { USB_DEVICE(0x10d6, 0x2200), .driver_info = | 57 | { USB_DEVICE(0x10d6, 0x2200), .driver_info = |
55 | USB_QUIRK_STRING_FETCH_255 }, | 58 | USB_QUIRK_STRING_FETCH_255 }, |
diff --git a/drivers/usb/gadget/inode.c b/drivers/usb/gadget/inode.c index 805602a687cb..0a6feafc8d28 100644 --- a/drivers/usb/gadget/inode.c +++ b/drivers/usb/gadget/inode.c | |||
@@ -1458,7 +1458,7 @@ gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl) | |||
1458 | /* currently one config, two speeds */ | 1458 | /* currently one config, two speeds */ |
1459 | case USB_REQ_SET_CONFIGURATION: | 1459 | case USB_REQ_SET_CONFIGURATION: |
1460 | if (ctrl->bRequestType != 0) | 1460 | if (ctrl->bRequestType != 0) |
1461 | break; | 1461 | goto unrecognized; |
1462 | if (0 == (u8) w_value) { | 1462 | if (0 == (u8) w_value) { |
1463 | value = 0; | 1463 | value = 0; |
1464 | dev->current_config = 0; | 1464 | dev->current_config = 0; |
@@ -1505,7 +1505,7 @@ gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl) | |||
1505 | /* PXA automagically handles this request too */ | 1505 | /* PXA automagically handles this request too */ |
1506 | case USB_REQ_GET_CONFIGURATION: | 1506 | case USB_REQ_GET_CONFIGURATION: |
1507 | if (ctrl->bRequestType != 0x80) | 1507 | if (ctrl->bRequestType != 0x80) |
1508 | break; | 1508 | goto unrecognized; |
1509 | *(u8 *)req->buf = dev->current_config; | 1509 | *(u8 *)req->buf = dev->current_config; |
1510 | value = min (w_length, (u16) 1); | 1510 | value = min (w_length, (u16) 1); |
1511 | break; | 1511 | break; |
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c index 3ba01664f821..72ccd56e36dd 100644 --- a/drivers/usb/host/ehci-pci.c +++ b/drivers/usb/host/ehci-pci.c | |||
@@ -152,6 +152,20 @@ static int ehci_pci_setup(struct usb_hcd *hcd) | |||
152 | break; | 152 | break; |
153 | } | 153 | } |
154 | break; | 154 | break; |
155 | case PCI_VENDOR_ID_VIA: | ||
156 | if (pdev->device == 0x3104 && (pdev->revision & 0xf0) == 0x60) { | ||
157 | u8 tmp; | ||
158 | |||
159 | /* The VT6212 defaults to a 1 usec EHCI sleep time which | ||
160 | * hogs the PCI bus *badly*. Setting bit 5 of 0x4B makes | ||
161 | * that sleep time use the conventional 10 usec. | ||
162 | */ | ||
163 | pci_read_config_byte(pdev, 0x4b, &tmp); | ||
164 | if (tmp & 0x20) | ||
165 | break; | ||
166 | pci_write_config_byte(pdev, 0x4b, tmp | 0x20); | ||
167 | } | ||
168 | break; | ||
155 | } | 169 | } |
156 | 170 | ||
157 | ehci_reset(ehci); | 171 | ehci_reset(ehci); |
diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c index ae3ec1a64008..2af778555bdc 100644 --- a/drivers/usb/serial/pl2303.c +++ b/drivers/usb/serial/pl2303.c | |||
@@ -55,6 +55,7 @@ static struct usb_device_id id_table [] = { | |||
55 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_DCU11) }, | 55 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_DCU11) }, |
56 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_RSAQ3) }, | 56 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_RSAQ3) }, |
57 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_PHAROS) }, | 57 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_PHAROS) }, |
58 | { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_ALDIGA) }, | ||
58 | { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID) }, | 59 | { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID) }, |
59 | { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID_RSAQ5) }, | 60 | { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID_RSAQ5) }, |
60 | { USB_DEVICE(ATEN_VENDOR_ID, ATEN_PRODUCT_ID) }, | 61 | { USB_DEVICE(ATEN_VENDOR_ID, ATEN_PRODUCT_ID) }, |
diff --git a/drivers/usb/serial/pl2303.h b/drivers/usb/serial/pl2303.h index 237a41f6638a..10cf872e5ecb 100644 --- a/drivers/usb/serial/pl2303.h +++ b/drivers/usb/serial/pl2303.h | |||
@@ -13,6 +13,7 @@ | |||
13 | #define PL2303_PRODUCT_ID_DCU11 0x1234 | 13 | #define PL2303_PRODUCT_ID_DCU11 0x1234 |
14 | #define PL2303_PRODUCT_ID_PHAROS 0xaaa0 | 14 | #define PL2303_PRODUCT_ID_PHAROS 0xaaa0 |
15 | #define PL2303_PRODUCT_ID_RSAQ3 0xaaa2 | 15 | #define PL2303_PRODUCT_ID_RSAQ3 0xaaa2 |
16 | #define PL2303_PRODUCT_ID_ALDIGA 0x0611 | ||
16 | 17 | ||
17 | #define ATEN_VENDOR_ID 0x0557 | 18 | #define ATEN_VENDOR_ID 0x0557 |
18 | #define ATEN_VENDOR_ID2 0x0547 | 19 | #define ATEN_VENDOR_ID2 0x0547 |
diff --git a/drivers/usb/serial/sierra.c b/drivers/usb/serial/sierra.c index e3d44ae8d448..ed678811e6a6 100644 --- a/drivers/usb/serial/sierra.c +++ b/drivers/usb/serial/sierra.c | |||
@@ -14,7 +14,7 @@ | |||
14 | Whom based his on the Keyspan driver by Hugh Blemings <hugh@blemings.org> | 14 | Whom based his on the Keyspan driver by Hugh Blemings <hugh@blemings.org> |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define DRIVER_VERSION "v.1.2.7" | 17 | #define DRIVER_VERSION "v.1.2.8" |
18 | #define DRIVER_AUTHOR "Kevin Lloyd <linux@sierrawireless.com>" | 18 | #define DRIVER_AUTHOR "Kevin Lloyd <linux@sierrawireless.com>" |
19 | #define DRIVER_DESC "USB Driver for Sierra Wireless USB modems" | 19 | #define DRIVER_DESC "USB Driver for Sierra Wireless USB modems" |
20 | 20 | ||
@@ -163,6 +163,7 @@ static struct usb_device_id id_table [] = { | |||
163 | { USB_DEVICE(0x1199, 0x6803) }, /* Sierra Wireless MC8765 */ | 163 | { USB_DEVICE(0x1199, 0x6803) }, /* Sierra Wireless MC8765 */ |
164 | { USB_DEVICE(0x1199, 0x6812) }, /* Sierra Wireless MC8775 & AC 875U */ | 164 | { USB_DEVICE(0x1199, 0x6812) }, /* Sierra Wireless MC8775 & AC 875U */ |
165 | { USB_DEVICE(0x1199, 0x6813) }, /* Sierra Wireless MC8775 (Thinkpad internal) */ | 165 | { USB_DEVICE(0x1199, 0x6813) }, /* Sierra Wireless MC8775 (Thinkpad internal) */ |
166 | { USB_DEVICE(0x1199, 0x6815) }, /* Sierra Wireless MC8775 */ | ||
166 | { USB_DEVICE(0x1199, 0x6820) }, /* Sierra Wireless AirCard 875 */ | 167 | { USB_DEVICE(0x1199, 0x6820) }, /* Sierra Wireless AirCard 875 */ |
167 | { USB_DEVICE(0x1199, 0x6832) }, /* Sierra Wireless MC8780*/ | 168 | { USB_DEVICE(0x1199, 0x6832) }, /* Sierra Wireless MC8780*/ |
168 | { USB_DEVICE(0x1199, 0x6833) }, /* Sierra Wireless MC8781*/ | 169 | { USB_DEVICE(0x1199, 0x6833) }, /* Sierra Wireless MC8781*/ |
@@ -196,9 +197,9 @@ struct sierra_port_private { | |||
196 | spinlock_t lock; /* lock the structure */ | 197 | spinlock_t lock; /* lock the structure */ |
197 | int outstanding_urbs; /* number of out urbs in flight */ | 198 | int outstanding_urbs; /* number of out urbs in flight */ |
198 | 199 | ||
199 | /* Input endpoints and buffer for this port */ | 200 | /* Input endpoints and buffers for this port */ |
200 | struct urb *in_urbs[N_IN_URB]; | 201 | struct urb *in_urbs[N_IN_URB]; |
201 | char in_buffer[N_IN_URB][IN_BUFLEN]; | 202 | char *in_buffer[N_IN_URB]; |
202 | 203 | ||
203 | /* Settings for the port */ | 204 | /* Settings for the port */ |
204 | int rts_state; /* Handshaking pins (outputs) */ | 205 | int rts_state; /* Handshaking pins (outputs) */ |
@@ -638,6 +639,15 @@ static int sierra_startup(struct usb_serial *serial) | |||
638 | return -ENOMEM; | 639 | return -ENOMEM; |
639 | } | 640 | } |
640 | spin_lock_init(&portdata->lock); | 641 | spin_lock_init(&portdata->lock); |
642 | for (j = 0; j < N_IN_URB; j++) { | ||
643 | portdata->in_buffer[j] = kmalloc(IN_BUFLEN, GFP_KERNEL); | ||
644 | if (!portdata->in_buffer[j]) { | ||
645 | for (--j; j >= 0; j--) | ||
646 | kfree(portdata->in_buffer[j]); | ||
647 | kfree(portdata); | ||
648 | return -ENOMEM; | ||
649 | } | ||
650 | } | ||
641 | 651 | ||
642 | usb_set_serial_port_data(port, portdata); | 652 | usb_set_serial_port_data(port, portdata); |
643 | 653 | ||
@@ -681,7 +691,7 @@ static void sierra_shutdown(struct usb_serial *serial) | |||
681 | for (j = 0; j < N_IN_URB; j++) { | 691 | for (j = 0; j < N_IN_URB; j++) { |
682 | usb_kill_urb(portdata->in_urbs[j]); | 692 | usb_kill_urb(portdata->in_urbs[j]); |
683 | usb_free_urb(portdata->in_urbs[j]); | 693 | usb_free_urb(portdata->in_urbs[j]); |
684 | portdata->in_urbs[j] = NULL; | 694 | kfree(portdata->in_buffer[j]); |
685 | } | 695 | } |
686 | kfree(portdata); | 696 | kfree(portdata); |
687 | usb_set_serial_port_data(port, NULL); | 697 | usb_set_serial_port_data(port, NULL); |
diff --git a/drivers/usb/storage/isd200.c b/drivers/usb/storage/isd200.c index 9d3f28b92cbe..971d13dd5e65 100644 --- a/drivers/usb/storage/isd200.c +++ b/drivers/usb/storage/isd200.c | |||
@@ -1230,6 +1230,7 @@ static int isd200_get_inquiry_data( struct us_data *us ) | |||
1230 | 1230 | ||
1231 | /* Free driver structure */ | 1231 | /* Free driver structure */ |
1232 | us->extra_destructor(info); | 1232 | us->extra_destructor(info); |
1233 | kfree(info); | ||
1233 | us->extra = NULL; | 1234 | us->extra = NULL; |
1234 | us->extra_destructor = NULL; | 1235 | us->extra_destructor = NULL; |
1235 | } | 1236 | } |
diff --git a/drivers/usb/storage/transport.c b/drivers/usb/storage/transport.c index 5780ed15f1ad..bdd4334bed5a 100644 --- a/drivers/usb/storage/transport.c +++ b/drivers/usb/storage/transport.c | |||
@@ -1009,7 +1009,8 @@ int usb_stor_Bulk_transport(struct scsi_cmnd *srb, struct us_data *us) | |||
1009 | US_DEBUGP("Bulk Status S 0x%x T 0x%x R %u Stat 0x%x\n", | 1009 | US_DEBUGP("Bulk Status S 0x%x T 0x%x R %u Stat 0x%x\n", |
1010 | le32_to_cpu(bcs->Signature), bcs->Tag, | 1010 | le32_to_cpu(bcs->Signature), bcs->Tag, |
1011 | residue, bcs->Status); | 1011 | residue, bcs->Status); |
1012 | if (bcs->Tag != us->tag || bcs->Status > US_BULK_STAT_PHASE) { | 1012 | if (!(bcs->Tag == us->tag || (us->flags & US_FL_BULK_IGNORE_TAG)) || |
1013 | bcs->Status > US_BULK_STAT_PHASE) { | ||
1013 | US_DEBUGP("Bulk logical error\n"); | 1014 | US_DEBUGP("Bulk logical error\n"); |
1014 | return USB_STOR_TRANSPORT_ERROR; | 1015 | return USB_STOR_TRANSPORT_ERROR; |
1015 | } | 1016 | } |
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 99679a8cfa02..e5219a56947c 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
@@ -1589,6 +1589,17 @@ UNUSUAL_DEV( 0x22b8, 0x4810, 0x0001, 0x0001, | |||
1589 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1589 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1590 | US_FL_FIX_CAPACITY), | 1590 | US_FL_FIX_CAPACITY), |
1591 | 1591 | ||
1592 | /* | ||
1593 | * Patch by Constantin Baranov <const@tltsu.ru> | ||
1594 | * Report by Andreas Koenecke. | ||
1595 | * Motorola ROKR Z6. | ||
1596 | */ | ||
1597 | UNUSUAL_DEV( 0x22b8, 0x6426, 0x0101, 0x0101, | ||
1598 | "Motorola", | ||
1599 | "MSnc.", | ||
1600 | US_SC_DEVICE, US_PR_DEVICE, NULL, | ||
1601 | US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG), | ||
1602 | |||
1592 | /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */ | 1603 | /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */ |
1593 | UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999, | 1604 | UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999, |
1594 | "MPIO", | 1605 | "MPIO", |
diff --git a/fs/anon_inodes.c b/fs/anon_inodes.c index 23321889d9b0..f42be069e085 100644 --- a/fs/anon_inodes.c +++ b/fs/anon_inodes.c | |||
@@ -81,13 +81,10 @@ int anon_inode_getfd(int *pfd, struct inode **pinode, struct file **pfile, | |||
81 | 81 | ||
82 | if (IS_ERR(anon_inode_inode)) | 82 | if (IS_ERR(anon_inode_inode)) |
83 | return -ENODEV; | 83 | return -ENODEV; |
84 | file = get_empty_filp(); | ||
85 | if (!file) | ||
86 | return -ENFILE; | ||
87 | 84 | ||
88 | error = get_unused_fd(); | 85 | error = get_unused_fd(); |
89 | if (error < 0) | 86 | if (error < 0) |
90 | goto err_put_filp; | 87 | return error; |
91 | fd = error; | 88 | fd = error; |
92 | 89 | ||
93 | /* | 90 | /* |
@@ -114,14 +111,15 @@ int anon_inode_getfd(int *pfd, struct inode **pinode, struct file **pfile, | |||
114 | dentry->d_flags &= ~DCACHE_UNHASHED; | 111 | dentry->d_flags &= ~DCACHE_UNHASHED; |
115 | d_instantiate(dentry, anon_inode_inode); | 112 | d_instantiate(dentry, anon_inode_inode); |
116 | 113 | ||
117 | file->f_path.mnt = mntget(anon_inode_mnt); | 114 | error = -ENFILE; |
118 | file->f_path.dentry = dentry; | 115 | file = alloc_file(anon_inode_mnt, dentry, |
116 | FMODE_READ | FMODE_WRITE, fops); | ||
117 | if (!file) | ||
118 | goto err_dput; | ||
119 | file->f_mapping = anon_inode_inode->i_mapping; | 119 | file->f_mapping = anon_inode_inode->i_mapping; |
120 | 120 | ||
121 | file->f_pos = 0; | 121 | file->f_pos = 0; |
122 | file->f_flags = O_RDWR; | 122 | file->f_flags = O_RDWR; |
123 | file->f_op = fops; | ||
124 | file->f_mode = FMODE_READ | FMODE_WRITE; | ||
125 | file->f_version = 0; | 123 | file->f_version = 0; |
126 | file->private_data = priv; | 124 | file->private_data = priv; |
127 | 125 | ||
@@ -132,10 +130,10 @@ int anon_inode_getfd(int *pfd, struct inode **pinode, struct file **pfile, | |||
132 | *pfile = file; | 130 | *pfile = file; |
133 | return 0; | 131 | return 0; |
134 | 132 | ||
133 | err_dput: | ||
134 | dput(dentry); | ||
135 | err_put_unused_fd: | 135 | err_put_unused_fd: |
136 | put_unused_fd(fd); | 136 | put_unused_fd(fd); |
137 | err_put_filp: | ||
138 | put_filp(file); | ||
139 | return error; | 137 | return error; |
140 | } | 138 | } |
141 | EXPORT_SYMBOL_GPL(anon_inode_getfd); | 139 | EXPORT_SYMBOL_GPL(anon_inode_getfd); |
diff --git a/fs/file_table.c b/fs/file_table.c index 6d27befe2d48..986ff4ed0a7c 100644 --- a/fs/file_table.c +++ b/fs/file_table.c | |||
@@ -83,6 +83,12 @@ int proc_nr_files(ctl_table *table, int write, struct file *filp, | |||
83 | /* Find an unused file structure and return a pointer to it. | 83 | /* Find an unused file structure and return a pointer to it. |
84 | * Returns NULL, if there are no more free file structures or | 84 | * Returns NULL, if there are no more free file structures or |
85 | * we run out of memory. | 85 | * we run out of memory. |
86 | * | ||
87 | * Be very careful using this. You are responsible for | ||
88 | * getting write access to any mount that you might assign | ||
89 | * to this filp, if it is opened for write. If this is not | ||
90 | * done, you will imbalance int the mount's writer count | ||
91 | * and a warning at __fput() time. | ||
86 | */ | 92 | */ |
87 | struct file *get_empty_filp(void) | 93 | struct file *get_empty_filp(void) |
88 | { | 94 | { |
diff --git a/fs/hppfs/hppfs_kern.c b/fs/hppfs/hppfs_kern.c index a1e1f0f61aa5..8601d8ef3b55 100644 --- a/fs/hppfs/hppfs_kern.c +++ b/fs/hppfs/hppfs_kern.c | |||
@@ -1,23 +1,24 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <linux/fs.h> | 6 | #include <linux/ctype.h> |
7 | #include <linux/dcache.h> | ||
7 | #include <linux/file.h> | 8 | #include <linux/file.h> |
8 | #include <linux/module.h> | 9 | #include <linux/fs.h> |
9 | #include <linux/init.h> | 10 | #include <linux/init.h> |
10 | #include <linux/slab.h> | ||
11 | #include <linux/list.h> | ||
12 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
13 | #include <linux/ctype.h> | 12 | #include <linux/list.h> |
14 | #include <linux/dcache.h> | 13 | #include <linux/module.h> |
14 | #include <linux/mount.h> | ||
15 | #include <linux/slab.h> | ||
15 | #include <linux/statfs.h> | 16 | #include <linux/statfs.h> |
17 | #include <linux/types.h> | ||
16 | #include <asm/uaccess.h> | 18 | #include <asm/uaccess.h> |
17 | #include <asm/fcntl.h> | ||
18 | #include "os.h" | 19 | #include "os.h" |
19 | 20 | ||
20 | static int init_inode(struct inode *inode, struct dentry *dentry); | 21 | static struct inode *get_inode(struct super_block *, struct dentry *); |
21 | 22 | ||
22 | struct hppfs_data { | 23 | struct hppfs_data { |
23 | struct list_head list; | 24 | struct list_head list; |
@@ -51,14 +52,14 @@ static int is_pid(struct dentry *dentry) | |||
51 | int i; | 52 | int i; |
52 | 53 | ||
53 | sb = dentry->d_sb; | 54 | sb = dentry->d_sb; |
54 | if((sb->s_op != &hppfs_sbops) || (dentry->d_parent != sb->s_root)) | 55 | if ((sb->s_op != &hppfs_sbops) || (dentry->d_parent != sb->s_root)) |
55 | return(0); | 56 | return 0; |
56 | 57 | ||
57 | for(i = 0; i < dentry->d_name.len; i++){ | 58 | for (i = 0; i < dentry->d_name.len; i++) { |
58 | if(!isdigit(dentry->d_name.name[i])) | 59 | if (!isdigit(dentry->d_name.name[i])) |
59 | return(0); | 60 | return 0; |
60 | } | 61 | } |
61 | return(1); | 62 | return 1; |
62 | } | 63 | } |
63 | 64 | ||
64 | static char *dentry_name(struct dentry *dentry, int extra) | 65 | static char *dentry_name(struct dentry *dentry, int extra) |
@@ -70,8 +71,8 @@ static char *dentry_name(struct dentry *dentry, int extra) | |||
70 | 71 | ||
71 | len = 0; | 72 | len = 0; |
72 | parent = dentry; | 73 | parent = dentry; |
73 | while(parent->d_parent != parent){ | 74 | while (parent->d_parent != parent) { |
74 | if(is_pid(parent)) | 75 | if (is_pid(parent)) |
75 | len += strlen("pid") + 1; | 76 | len += strlen("pid") + 1; |
76 | else len += parent->d_name.len + 1; | 77 | else len += parent->d_name.len + 1; |
77 | parent = parent->d_parent; | 78 | parent = parent->d_parent; |
@@ -80,12 +81,13 @@ static char *dentry_name(struct dentry *dentry, int extra) | |||
80 | root = "proc"; | 81 | root = "proc"; |
81 | len += strlen(root); | 82 | len += strlen(root); |
82 | name = kmalloc(len + extra + 1, GFP_KERNEL); | 83 | name = kmalloc(len + extra + 1, GFP_KERNEL); |
83 | if(name == NULL) return(NULL); | 84 | if (name == NULL) |
85 | return NULL; | ||
84 | 86 | ||
85 | name[len] = '\0'; | 87 | name[len] = '\0'; |
86 | parent = dentry; | 88 | parent = dentry; |
87 | while(parent->d_parent != parent){ | 89 | while (parent->d_parent != parent) { |
88 | if(is_pid(parent)){ | 90 | if (is_pid(parent)) { |
89 | seg_name = "pid"; | 91 | seg_name = "pid"; |
90 | seg_len = strlen("pid"); | 92 | seg_len = strlen("pid"); |
91 | } | 93 | } |
@@ -100,27 +102,25 @@ static char *dentry_name(struct dentry *dentry, int extra) | |||
100 | parent = parent->d_parent; | 102 | parent = parent->d_parent; |
101 | } | 103 | } |
102 | strncpy(name, root, strlen(root)); | 104 | strncpy(name, root, strlen(root)); |
103 | return(name); | 105 | return name; |
104 | } | 106 | } |
105 | 107 | ||
106 | struct dentry_operations hppfs_dentry_ops = { | ||
107 | }; | ||
108 | |||
109 | static int file_removed(struct dentry *dentry, const char *file) | 108 | static int file_removed(struct dentry *dentry, const char *file) |
110 | { | 109 | { |
111 | char *host_file; | 110 | char *host_file; |
112 | int extra, fd; | 111 | int extra, fd; |
113 | 112 | ||
114 | extra = 0; | 113 | extra = 0; |
115 | if(file != NULL) extra += strlen(file) + 1; | 114 | if (file != NULL) |
115 | extra += strlen(file) + 1; | ||
116 | 116 | ||
117 | host_file = dentry_name(dentry, extra + strlen("/remove")); | 117 | host_file = dentry_name(dentry, extra + strlen("/remove")); |
118 | if(host_file == NULL){ | 118 | if (host_file == NULL) { |
119 | printk("file_removed : allocation failed\n"); | 119 | printk(KERN_ERR "file_removed : allocation failed\n"); |
120 | return(-ENOMEM); | 120 | return -ENOMEM; |
121 | } | 121 | } |
122 | 122 | ||
123 | if(file != NULL){ | 123 | if (file != NULL) { |
124 | strcat(host_file, "/"); | 124 | strcat(host_file, "/"); |
125 | strcat(host_file, file); | 125 | strcat(host_file, file); |
126 | } | 126 | } |
@@ -128,45 +128,11 @@ static int file_removed(struct dentry *dentry, const char *file) | |||
128 | 128 | ||
129 | fd = os_open_file(host_file, of_read(OPENFLAGS()), 0); | 129 | fd = os_open_file(host_file, of_read(OPENFLAGS()), 0); |
130 | kfree(host_file); | 130 | kfree(host_file); |
131 | if(fd > 0){ | 131 | if (fd > 0) { |
132 | os_close_file(fd); | 132 | os_close_file(fd); |
133 | return(1); | 133 | return 1; |
134 | } | ||
135 | return(0); | ||
136 | } | ||
137 | |||
138 | static void hppfs_read_inode(struct inode *ino) | ||
139 | { | ||
140 | struct inode *proc_ino; | ||
141 | |||
142 | if(HPPFS_I(ino)->proc_dentry == NULL) | ||
143 | return; | ||
144 | |||
145 | proc_ino = HPPFS_I(ino)->proc_dentry->d_inode; | ||
146 | ino->i_uid = proc_ino->i_uid; | ||
147 | ino->i_gid = proc_ino->i_gid; | ||
148 | ino->i_atime = proc_ino->i_atime; | ||
149 | ino->i_mtime = proc_ino->i_mtime; | ||
150 | ino->i_ctime = proc_ino->i_ctime; | ||
151 | ino->i_ino = proc_ino->i_ino; | ||
152 | ino->i_mode = proc_ino->i_mode; | ||
153 | ino->i_nlink = proc_ino->i_nlink; | ||
154 | ino->i_size = proc_ino->i_size; | ||
155 | ino->i_blocks = proc_ino->i_blocks; | ||
156 | } | ||
157 | |||
158 | static struct inode *hppfs_iget(struct super_block *sb) | ||
159 | { | ||
160 | struct inode *inode; | ||
161 | |||
162 | inode = iget_locked(sb, 0); | ||
163 | if (!inode) | ||
164 | return ERR_PTR(-ENOMEM); | ||
165 | if (inode->i_state & I_NEW) { | ||
166 | hppfs_read_inode(inode); | ||
167 | unlock_new_inode(inode); | ||
168 | } | 134 | } |
169 | return inode; | 135 | return 0; |
170 | } | 136 | } |
171 | 137 | ||
172 | static struct dentry *hppfs_lookup(struct inode *ino, struct dentry *dentry, | 138 | static struct dentry *hppfs_lookup(struct inode *ino, struct dentry *dentry, |
@@ -177,55 +143,45 @@ static struct dentry *hppfs_lookup(struct inode *ino, struct dentry *dentry, | |||
177 | int err, deleted; | 143 | int err, deleted; |
178 | 144 | ||
179 | deleted = file_removed(dentry, NULL); | 145 | deleted = file_removed(dentry, NULL); |
180 | if(deleted < 0) | 146 | if (deleted < 0) |
181 | return(ERR_PTR(deleted)); | 147 | return ERR_PTR(deleted); |
182 | else if(deleted) | 148 | else if (deleted) |
183 | return(ERR_PTR(-ENOENT)); | 149 | return ERR_PTR(-ENOENT); |
184 | 150 | ||
185 | err = -ENOMEM; | 151 | err = -ENOMEM; |
186 | parent = HPPFS_I(ino)->proc_dentry; | 152 | parent = HPPFS_I(ino)->proc_dentry; |
187 | mutex_lock(&parent->d_inode->i_mutex); | 153 | mutex_lock(&parent->d_inode->i_mutex); |
188 | proc_dentry = d_lookup(parent, &dentry->d_name); | 154 | proc_dentry = d_lookup(parent, &dentry->d_name); |
189 | if(proc_dentry == NULL){ | 155 | if (proc_dentry == NULL) { |
190 | proc_dentry = d_alloc(parent, &dentry->d_name); | 156 | proc_dentry = d_alloc(parent, &dentry->d_name); |
191 | if(proc_dentry == NULL){ | 157 | if (proc_dentry == NULL) { |
192 | mutex_unlock(&parent->d_inode->i_mutex); | 158 | mutex_unlock(&parent->d_inode->i_mutex); |
193 | goto out; | 159 | goto out; |
194 | } | 160 | } |
195 | new = (*parent->d_inode->i_op->lookup)(parent->d_inode, | 161 | new = (*parent->d_inode->i_op->lookup)(parent->d_inode, |
196 | proc_dentry, NULL); | 162 | proc_dentry, NULL); |
197 | if(new){ | 163 | if (new) { |
198 | dput(proc_dentry); | 164 | dput(proc_dentry); |
199 | proc_dentry = new; | 165 | proc_dentry = new; |
200 | } | 166 | } |
201 | } | 167 | } |
202 | mutex_unlock(&parent->d_inode->i_mutex); | 168 | mutex_unlock(&parent->d_inode->i_mutex); |
203 | 169 | ||
204 | if(IS_ERR(proc_dentry)) | 170 | if (IS_ERR(proc_dentry)) |
205 | return(proc_dentry); | 171 | return proc_dentry; |
206 | 172 | ||
207 | inode = hppfs_iget(ino->i_sb); | 173 | err = -ENOMEM; |
208 | if (IS_ERR(inode)) { | 174 | inode = get_inode(ino->i_sb, proc_dentry); |
209 | err = PTR_ERR(inode); | 175 | if (!inode) |
210 | goto out_dput; | 176 | goto out_dput; |
211 | } | ||
212 | |||
213 | err = init_inode(inode, proc_dentry); | ||
214 | if(err) | ||
215 | goto out_put; | ||
216 | |||
217 | hppfs_read_inode(inode); | ||
218 | 177 | ||
219 | d_add(dentry, inode); | 178 | d_add(dentry, inode); |
220 | dentry->d_op = &hppfs_dentry_ops; | 179 | return NULL; |
221 | return(NULL); | ||
222 | 180 | ||
223 | out_put: | ||
224 | iput(inode); | ||
225 | out_dput: | 181 | out_dput: |
226 | dput(proc_dentry); | 182 | dput(proc_dentry); |
227 | out: | 183 | out: |
228 | return(ERR_PTR(err)); | 184 | return ERR_PTR(err); |
229 | } | 185 | } |
230 | 186 | ||
231 | static const struct inode_operations hppfs_file_iops = { | 187 | static const struct inode_operations hppfs_file_iops = { |
@@ -239,15 +195,16 @@ static ssize_t read_proc(struct file *file, char __user *buf, ssize_t count, | |||
239 | 195 | ||
240 | read = file->f_path.dentry->d_inode->i_fop->read; | 196 | read = file->f_path.dentry->d_inode->i_fop->read; |
241 | 197 | ||
242 | if(!is_user) | 198 | if (!is_user) |
243 | set_fs(KERNEL_DS); | 199 | set_fs(KERNEL_DS); |
244 | 200 | ||
245 | n = (*read)(file, buf, count, &file->f_pos); | 201 | n = (*read)(file, buf, count, &file->f_pos); |
246 | 202 | ||
247 | if(!is_user) | 203 | if (!is_user) |
248 | set_fs(USER_DS); | 204 | set_fs(USER_DS); |
249 | 205 | ||
250 | if(ppos) *ppos = file->f_pos; | 206 | if (ppos) |
207 | *ppos = file->f_pos; | ||
251 | return n; | 208 | return n; |
252 | } | 209 | } |
253 | 210 | ||
@@ -259,24 +216,23 @@ static ssize_t hppfs_read_file(int fd, char __user *buf, ssize_t count) | |||
259 | 216 | ||
260 | n = -ENOMEM; | 217 | n = -ENOMEM; |
261 | new_buf = kmalloc(PAGE_SIZE, GFP_KERNEL); | 218 | new_buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
262 | if(new_buf == NULL){ | 219 | if (new_buf == NULL) { |
263 | printk("hppfs_read_file : kmalloc failed\n"); | 220 | printk(KERN_ERR "hppfs_read_file : kmalloc failed\n"); |
264 | goto out; | 221 | goto out; |
265 | } | 222 | } |
266 | n = 0; | 223 | n = 0; |
267 | while(count > 0){ | 224 | while (count > 0) { |
268 | cur = min_t(ssize_t, count, PAGE_SIZE); | 225 | cur = min_t(ssize_t, count, PAGE_SIZE); |
269 | err = os_read_file(fd, new_buf, cur); | 226 | err = os_read_file(fd, new_buf, cur); |
270 | if(err < 0){ | 227 | if (err < 0) { |
271 | printk("hppfs_read : read failed, errno = %d\n", | 228 | printk(KERN_ERR "hppfs_read : read failed, " |
272 | err); | 229 | "errno = %d\n", err); |
273 | n = err; | 230 | n = err; |
274 | goto out_free; | 231 | goto out_free; |
275 | } | 232 | } else if (err == 0) |
276 | else if(err == 0) | ||
277 | break; | 233 | break; |
278 | 234 | ||
279 | if(copy_to_user(buf, new_buf, err)){ | 235 | if (copy_to_user(buf, new_buf, err)) { |
280 | n = -EFAULT; | 236 | n = -EFAULT; |
281 | goto out_free; | 237 | goto out_free; |
282 | } | 238 | } |
@@ -297,35 +253,36 @@ static ssize_t hppfs_read(struct file *file, char __user *buf, size_t count, | |||
297 | loff_t off; | 253 | loff_t off; |
298 | int err; | 254 | int err; |
299 | 255 | ||
300 | if(hppfs->contents != NULL){ | 256 | if (hppfs->contents != NULL) { |
301 | if(*ppos >= hppfs->len) return(0); | 257 | if (*ppos >= hppfs->len) |
258 | return 0; | ||
302 | 259 | ||
303 | data = hppfs->contents; | 260 | data = hppfs->contents; |
304 | off = *ppos; | 261 | off = *ppos; |
305 | while(off >= sizeof(data->contents)){ | 262 | while (off >= sizeof(data->contents)) { |
306 | data = list_entry(data->list.next, struct hppfs_data, | 263 | data = list_entry(data->list.next, struct hppfs_data, |
307 | list); | 264 | list); |
308 | off -= sizeof(data->contents); | 265 | off -= sizeof(data->contents); |
309 | } | 266 | } |
310 | 267 | ||
311 | if(off + count > hppfs->len) | 268 | if (off + count > hppfs->len) |
312 | count = hppfs->len - off; | 269 | count = hppfs->len - off; |
313 | copy_to_user(buf, &data->contents[off], count); | 270 | copy_to_user(buf, &data->contents[off], count); |
314 | *ppos += count; | 271 | *ppos += count; |
315 | } | 272 | } else if (hppfs->host_fd != -1) { |
316 | else if(hppfs->host_fd != -1){ | ||
317 | err = os_seek_file(hppfs->host_fd, *ppos); | 273 | err = os_seek_file(hppfs->host_fd, *ppos); |
318 | if(err){ | 274 | if (err) { |
319 | printk("hppfs_read : seek failed, errno = %d\n", err); | 275 | printk(KERN_ERR "hppfs_read : seek failed, " |
320 | return(err); | 276 | "errno = %d\n", err); |
277 | return err; | ||
321 | } | 278 | } |
322 | count = hppfs_read_file(hppfs->host_fd, buf, count); | 279 | count = hppfs_read_file(hppfs->host_fd, buf, count); |
323 | if(count > 0) | 280 | if (count > 0) |
324 | *ppos += count; | 281 | *ppos += count; |
325 | } | 282 | } |
326 | else count = read_proc(hppfs->proc_file, buf, count, ppos, 1); | 283 | else count = read_proc(hppfs->proc_file, buf, count, ppos, 1); |
327 | 284 | ||
328 | return(count); | 285 | return count; |
329 | } | 286 | } |
330 | 287 | ||
331 | static ssize_t hppfs_write(struct file *file, const char __user *buf, size_t len, | 288 | static ssize_t hppfs_write(struct file *file, const char __user *buf, size_t len, |
@@ -342,7 +299,7 @@ static ssize_t hppfs_write(struct file *file, const char __user *buf, size_t len | |||
342 | err = (*write)(proc_file, buf, len, &proc_file->f_pos); | 299 | err = (*write)(proc_file, buf, len, &proc_file->f_pos); |
343 | file->f_pos = proc_file->f_pos; | 300 | file->f_pos = proc_file->f_pos; |
344 | 301 | ||
345 | return(err); | 302 | return err; |
346 | } | 303 | } |
347 | 304 | ||
348 | static int open_host_sock(char *host_file, int *filter_out) | 305 | static int open_host_sock(char *host_file, int *filter_out) |
@@ -354,13 +311,13 @@ static int open_host_sock(char *host_file, int *filter_out) | |||
354 | strcpy(end, "/rw"); | 311 | strcpy(end, "/rw"); |
355 | *filter_out = 1; | 312 | *filter_out = 1; |
356 | fd = os_connect_socket(host_file); | 313 | fd = os_connect_socket(host_file); |
357 | if(fd > 0) | 314 | if (fd > 0) |
358 | return(fd); | 315 | return fd; |
359 | 316 | ||
360 | strcpy(end, "/r"); | 317 | strcpy(end, "/r"); |
361 | *filter_out = 0; | 318 | *filter_out = 0; |
362 | fd = os_connect_socket(host_file); | 319 | fd = os_connect_socket(host_file); |
363 | return(fd); | 320 | return fd; |
364 | } | 321 | } |
365 | 322 | ||
366 | static void free_contents(struct hppfs_data *head) | 323 | static void free_contents(struct hppfs_data *head) |
@@ -368,9 +325,10 @@ static void free_contents(struct hppfs_data *head) | |||
368 | struct hppfs_data *data; | 325 | struct hppfs_data *data; |
369 | struct list_head *ele, *next; | 326 | struct list_head *ele, *next; |
370 | 327 | ||
371 | if(head == NULL) return; | 328 | if (head == NULL) |
329 | return; | ||
372 | 330 | ||
373 | list_for_each_safe(ele, next, &head->list){ | 331 | list_for_each_safe(ele, next, &head->list) { |
374 | data = list_entry(ele, struct hppfs_data, list); | 332 | data = list_entry(ele, struct hppfs_data, list); |
375 | kfree(data); | 333 | kfree(data); |
376 | } | 334 | } |
@@ -387,8 +345,8 @@ static struct hppfs_data *hppfs_get_data(int fd, int filter, | |||
387 | 345 | ||
388 | err = -ENOMEM; | 346 | err = -ENOMEM; |
389 | data = kmalloc(sizeof(*data), GFP_KERNEL); | 347 | data = kmalloc(sizeof(*data), GFP_KERNEL); |
390 | if(data == NULL){ | 348 | if (data == NULL) { |
391 | printk("hppfs_get_data : head allocation failed\n"); | 349 | printk(KERN_ERR "hppfs_get_data : head allocation failed\n"); |
392 | goto failed; | 350 | goto failed; |
393 | } | 351 | } |
394 | 352 | ||
@@ -397,36 +355,36 @@ static struct hppfs_data *hppfs_get_data(int fd, int filter, | |||
397 | head = data; | 355 | head = data; |
398 | *size_out = 0; | 356 | *size_out = 0; |
399 | 357 | ||
400 | if(filter){ | 358 | if (filter) { |
401 | while((n = read_proc(proc_file, data->contents, | 359 | while ((n = read_proc(proc_file, data->contents, |
402 | sizeof(data->contents), NULL, 0)) > 0) | 360 | sizeof(data->contents), NULL, 0)) > 0) |
403 | os_write_file(fd, data->contents, n); | 361 | os_write_file(fd, data->contents, n); |
404 | err = os_shutdown_socket(fd, 0, 1); | 362 | err = os_shutdown_socket(fd, 0, 1); |
405 | if(err){ | 363 | if (err) { |
406 | printk("hppfs_get_data : failed to shut down " | 364 | printk(KERN_ERR "hppfs_get_data : failed to shut down " |
407 | "socket\n"); | 365 | "socket\n"); |
408 | goto failed_free; | 366 | goto failed_free; |
409 | } | 367 | } |
410 | } | 368 | } |
411 | while(1){ | 369 | while (1) { |
412 | n = os_read_file(fd, data->contents, sizeof(data->contents)); | 370 | n = os_read_file(fd, data->contents, sizeof(data->contents)); |
413 | if(n < 0){ | 371 | if (n < 0) { |
414 | err = n; | 372 | err = n; |
415 | printk("hppfs_get_data : read failed, errno = %d\n", | 373 | printk(KERN_ERR "hppfs_get_data : read failed, " |
416 | err); | 374 | "errno = %d\n", err); |
417 | goto failed_free; | 375 | goto failed_free; |
418 | } | 376 | } else if (n == 0) |
419 | else if(n == 0) | ||
420 | break; | 377 | break; |
421 | 378 | ||
422 | *size_out += n; | 379 | *size_out += n; |
423 | 380 | ||
424 | if(n < sizeof(data->contents)) | 381 | if (n < sizeof(data->contents)) |
425 | break; | 382 | break; |
426 | 383 | ||
427 | new = kmalloc(sizeof(*data), GFP_KERNEL); | 384 | new = kmalloc(sizeof(*data), GFP_KERNEL); |
428 | if(new == 0){ | 385 | if (new == 0) { |
429 | printk("hppfs_get_data : data allocation failed\n"); | 386 | printk(KERN_ERR "hppfs_get_data : data allocation " |
387 | "failed\n"); | ||
430 | err = -ENOMEM; | 388 | err = -ENOMEM; |
431 | goto failed_free; | 389 | goto failed_free; |
432 | } | 390 | } |
@@ -435,12 +393,12 @@ static struct hppfs_data *hppfs_get_data(int fd, int filter, | |||
435 | list_add(&new->list, &data->list); | 393 | list_add(&new->list, &data->list); |
436 | data = new; | 394 | data = new; |
437 | } | 395 | } |
438 | return(head); | 396 | return head; |
439 | 397 | ||
440 | failed_free: | 398 | failed_free: |
441 | free_contents(head); | 399 | free_contents(head); |
442 | failed: | 400 | failed: |
443 | return(ERR_PTR(err)); | 401 | return ERR_PTR(err); |
444 | } | 402 | } |
445 | 403 | ||
446 | static struct hppfs_private *hppfs_data(void) | 404 | static struct hppfs_private *hppfs_data(void) |
@@ -448,77 +406,79 @@ static struct hppfs_private *hppfs_data(void) | |||
448 | struct hppfs_private *data; | 406 | struct hppfs_private *data; |
449 | 407 | ||
450 | data = kmalloc(sizeof(*data), GFP_KERNEL); | 408 | data = kmalloc(sizeof(*data), GFP_KERNEL); |
451 | if(data == NULL) | 409 | if (data == NULL) |
452 | return(data); | 410 | return data; |
453 | 411 | ||
454 | *data = ((struct hppfs_private ) { .host_fd = -1, | 412 | *data = ((struct hppfs_private ) { .host_fd = -1, |
455 | .len = -1, | 413 | .len = -1, |
456 | .contents = NULL } ); | 414 | .contents = NULL } ); |
457 | return(data); | 415 | return data; |
458 | } | 416 | } |
459 | 417 | ||
460 | static int file_mode(int fmode) | 418 | static int file_mode(int fmode) |
461 | { | 419 | { |
462 | if(fmode == (FMODE_READ | FMODE_WRITE)) | 420 | if (fmode == (FMODE_READ | FMODE_WRITE)) |
463 | return(O_RDWR); | 421 | return O_RDWR; |
464 | if(fmode == FMODE_READ) | 422 | if (fmode == FMODE_READ) |
465 | return(O_RDONLY); | 423 | return O_RDONLY; |
466 | if(fmode == FMODE_WRITE) | 424 | if (fmode == FMODE_WRITE) |
467 | return(O_WRONLY); | 425 | return O_WRONLY; |
468 | return(0); | 426 | return 0; |
469 | } | 427 | } |
470 | 428 | ||
471 | static int hppfs_open(struct inode *inode, struct file *file) | 429 | static int hppfs_open(struct inode *inode, struct file *file) |
472 | { | 430 | { |
473 | struct hppfs_private *data; | 431 | struct hppfs_private *data; |
474 | struct dentry *proc_dentry; | 432 | struct dentry *proc_dentry; |
433 | struct vfsmount *proc_mnt; | ||
475 | char *host_file; | 434 | char *host_file; |
476 | int err, fd, type, filter; | 435 | int err, fd, type, filter; |
477 | 436 | ||
478 | err = -ENOMEM; | 437 | err = -ENOMEM; |
479 | data = hppfs_data(); | 438 | data = hppfs_data(); |
480 | if(data == NULL) | 439 | if (data == NULL) |
481 | goto out; | 440 | goto out; |
482 | 441 | ||
483 | host_file = dentry_name(file->f_path.dentry, strlen("/rw")); | 442 | host_file = dentry_name(file->f_path.dentry, strlen("/rw")); |
484 | if(host_file == NULL) | 443 | if (host_file == NULL) |
485 | goto out_free2; | 444 | goto out_free2; |
486 | 445 | ||
487 | proc_dentry = HPPFS_I(inode)->proc_dentry; | 446 | proc_dentry = HPPFS_I(inode)->proc_dentry; |
447 | proc_mnt = inode->i_sb->s_fs_info; | ||
488 | 448 | ||
489 | /* XXX This isn't closed anywhere */ | 449 | /* XXX This isn't closed anywhere */ |
490 | data->proc_file = dentry_open(dget(proc_dentry), NULL, | 450 | data->proc_file = dentry_open(dget(proc_dentry), mntget(proc_mnt), |
491 | file_mode(file->f_mode)); | 451 | file_mode(file->f_mode)); |
492 | err = PTR_ERR(data->proc_file); | 452 | err = PTR_ERR(data->proc_file); |
493 | if(IS_ERR(data->proc_file)) | 453 | if (IS_ERR(data->proc_file)) |
494 | goto out_free1; | 454 | goto out_free1; |
495 | 455 | ||
496 | type = os_file_type(host_file); | 456 | type = os_file_type(host_file); |
497 | if(type == OS_TYPE_FILE){ | 457 | if (type == OS_TYPE_FILE) { |
498 | fd = os_open_file(host_file, of_read(OPENFLAGS()), 0); | 458 | fd = os_open_file(host_file, of_read(OPENFLAGS()), 0); |
499 | if(fd >= 0) | 459 | if (fd >= 0) |
500 | data->host_fd = fd; | 460 | data->host_fd = fd; |
501 | else printk("hppfs_open : failed to open '%s', errno = %d\n", | 461 | else |
502 | host_file, -fd); | 462 | printk(KERN_ERR "hppfs_open : failed to open '%s', " |
463 | "errno = %d\n", host_file, -fd); | ||
503 | 464 | ||
504 | data->contents = NULL; | 465 | data->contents = NULL; |
505 | } | 466 | } else if (type == OS_TYPE_DIR) { |
506 | else if(type == OS_TYPE_DIR){ | ||
507 | fd = open_host_sock(host_file, &filter); | 467 | fd = open_host_sock(host_file, &filter); |
508 | if(fd > 0){ | 468 | if (fd > 0) { |
509 | data->contents = hppfs_get_data(fd, filter, | 469 | data->contents = hppfs_get_data(fd, filter, |
510 | data->proc_file, | 470 | data->proc_file, |
511 | file, &data->len); | 471 | file, &data->len); |
512 | if(!IS_ERR(data->contents)) | 472 | if (!IS_ERR(data->contents)) |
513 | data->host_fd = fd; | 473 | data->host_fd = fd; |
514 | } | 474 | } else |
515 | else printk("hppfs_open : failed to open a socket in " | 475 | printk(KERN_ERR "hppfs_open : failed to open a socket " |
516 | "'%s', errno = %d\n", host_file, -fd); | 476 | "in '%s', errno = %d\n", host_file, -fd); |
517 | } | 477 | } |
518 | kfree(host_file); | 478 | kfree(host_file); |
519 | 479 | ||
520 | file->private_data = data; | 480 | file->private_data = data; |
521 | return(0); | 481 | return 0; |
522 | 482 | ||
523 | out_free1: | 483 | out_free1: |
524 | kfree(host_file); | 484 | kfree(host_file); |
@@ -526,34 +486,36 @@ static int hppfs_open(struct inode *inode, struct file *file) | |||
526 | free_contents(data->contents); | 486 | free_contents(data->contents); |
527 | kfree(data); | 487 | kfree(data); |
528 | out: | 488 | out: |
529 | return(err); | 489 | return err; |
530 | } | 490 | } |
531 | 491 | ||
532 | static int hppfs_dir_open(struct inode *inode, struct file *file) | 492 | static int hppfs_dir_open(struct inode *inode, struct file *file) |
533 | { | 493 | { |
534 | struct hppfs_private *data; | 494 | struct hppfs_private *data; |
535 | struct dentry *proc_dentry; | 495 | struct dentry *proc_dentry; |
496 | struct vfsmount *proc_mnt; | ||
536 | int err; | 497 | int err; |
537 | 498 | ||
538 | err = -ENOMEM; | 499 | err = -ENOMEM; |
539 | data = hppfs_data(); | 500 | data = hppfs_data(); |
540 | if(data == NULL) | 501 | if (data == NULL) |
541 | goto out; | 502 | goto out; |
542 | 503 | ||
543 | proc_dentry = HPPFS_I(inode)->proc_dentry; | 504 | proc_dentry = HPPFS_I(inode)->proc_dentry; |
544 | data->proc_file = dentry_open(dget(proc_dentry), NULL, | 505 | proc_mnt = inode->i_sb->s_fs_info; |
506 | data->proc_file = dentry_open(dget(proc_dentry), mntget(proc_mnt), | ||
545 | file_mode(file->f_mode)); | 507 | file_mode(file->f_mode)); |
546 | err = PTR_ERR(data->proc_file); | 508 | err = PTR_ERR(data->proc_file); |
547 | if(IS_ERR(data->proc_file)) | 509 | if (IS_ERR(data->proc_file)) |
548 | goto out_free; | 510 | goto out_free; |
549 | 511 | ||
550 | file->private_data = data; | 512 | file->private_data = data; |
551 | return(0); | 513 | return 0; |
552 | 514 | ||
553 | out_free: | 515 | out_free: |
554 | kfree(data); | 516 | kfree(data); |
555 | out: | 517 | out: |
556 | return(err); | 518 | return err; |
557 | } | 519 | } |
558 | 520 | ||
559 | static loff_t hppfs_llseek(struct file *file, loff_t off, int where) | 521 | static loff_t hppfs_llseek(struct file *file, loff_t off, int where) |
@@ -564,13 +526,13 @@ static loff_t hppfs_llseek(struct file *file, loff_t off, int where) | |||
564 | loff_t ret; | 526 | loff_t ret; |
565 | 527 | ||
566 | llseek = proc_file->f_path.dentry->d_inode->i_fop->llseek; | 528 | llseek = proc_file->f_path.dentry->d_inode->i_fop->llseek; |
567 | if(llseek != NULL){ | 529 | if (llseek != NULL) { |
568 | ret = (*llseek)(proc_file, off, where); | 530 | ret = (*llseek)(proc_file, off, where); |
569 | if(ret < 0) | 531 | if (ret < 0) |
570 | return(ret); | 532 | return ret; |
571 | } | 533 | } |
572 | 534 | ||
573 | return(default_llseek(file, off, where)); | 535 | return default_llseek(file, off, where); |
574 | } | 536 | } |
575 | 537 | ||
576 | static const struct file_operations hppfs_file_fops = { | 538 | static const struct file_operations hppfs_file_fops = { |
@@ -592,11 +554,11 @@ static int hppfs_filldir(void *d, const char *name, int size, | |||
592 | { | 554 | { |
593 | struct hppfs_dirent *dirent = d; | 555 | struct hppfs_dirent *dirent = d; |
594 | 556 | ||
595 | if(file_removed(dirent->dentry, name)) | 557 | if (file_removed(dirent->dentry, name)) |
596 | return(0); | 558 | return 0; |
597 | 559 | ||
598 | return((*dirent->filldir)(dirent->vfs_dirent, name, size, offset, | 560 | return (*dirent->filldir)(dirent->vfs_dirent, name, size, offset, |
599 | inode, type)); | 561 | inode, type); |
600 | } | 562 | } |
601 | 563 | ||
602 | static int hppfs_readdir(struct file *file, void *ent, filldir_t filldir) | 564 | static int hppfs_readdir(struct file *file, void *ent, filldir_t filldir) |
@@ -607,7 +569,8 @@ static int hppfs_readdir(struct file *file, void *ent, filldir_t filldir) | |||
607 | struct hppfs_dirent dirent = ((struct hppfs_dirent) | 569 | struct hppfs_dirent dirent = ((struct hppfs_dirent) |
608 | { .vfs_dirent = ent, | 570 | { .vfs_dirent = ent, |
609 | .filldir = filldir, | 571 | .filldir = filldir, |
610 | .dentry = file->f_path.dentry } ); | 572 | .dentry = file->f_path.dentry |
573 | }); | ||
611 | int err; | 574 | int err; |
612 | 575 | ||
613 | readdir = proc_file->f_path.dentry->d_inode->i_fop->readdir; | 576 | readdir = proc_file->f_path.dentry->d_inode->i_fop->readdir; |
@@ -616,12 +579,12 @@ static int hppfs_readdir(struct file *file, void *ent, filldir_t filldir) | |||
616 | err = (*readdir)(proc_file, &dirent, hppfs_filldir); | 579 | err = (*readdir)(proc_file, &dirent, hppfs_filldir); |
617 | file->f_pos = proc_file->f_pos; | 580 | file->f_pos = proc_file->f_pos; |
618 | 581 | ||
619 | return(err); | 582 | return err; |
620 | } | 583 | } |
621 | 584 | ||
622 | static int hppfs_fsync(struct file *file, struct dentry *dentry, int datasync) | 585 | static int hppfs_fsync(struct file *file, struct dentry *dentry, int datasync) |
623 | { | 586 | { |
624 | return(0); | 587 | return 0; |
625 | } | 588 | } |
626 | 589 | ||
627 | static const struct file_operations hppfs_dir_fops = { | 590 | static const struct file_operations hppfs_dir_fops = { |
@@ -639,7 +602,7 @@ static int hppfs_statfs(struct dentry *dentry, struct kstatfs *sf) | |||
639 | sf->f_files = 0; | 602 | sf->f_files = 0; |
640 | sf->f_ffree = 0; | 603 | sf->f_ffree = 0; |
641 | sf->f_type = HPPFS_SUPER_MAGIC; | 604 | sf->f_type = HPPFS_SUPER_MAGIC; |
642 | return(0); | 605 | return 0; |
643 | } | 606 | } |
644 | 607 | ||
645 | static struct inode *hppfs_alloc_inode(struct super_block *sb) | 608 | static struct inode *hppfs_alloc_inode(struct super_block *sb) |
@@ -647,12 +610,12 @@ static struct inode *hppfs_alloc_inode(struct super_block *sb) | |||
647 | struct hppfs_inode_info *hi; | 610 | struct hppfs_inode_info *hi; |
648 | 611 | ||
649 | hi = kmalloc(sizeof(*hi), GFP_KERNEL); | 612 | hi = kmalloc(sizeof(*hi), GFP_KERNEL); |
650 | if(hi == NULL) | 613 | if (!hi) |
651 | return(NULL); | 614 | return NULL; |
652 | 615 | ||
653 | *hi = ((struct hppfs_inode_info) { .proc_dentry = NULL }); | 616 | hi->proc_dentry = NULL; |
654 | inode_init_once(&hi->vfs_inode); | 617 | inode_init_once(&hi->vfs_inode); |
655 | return(&hi->vfs_inode); | 618 | return &hi->vfs_inode; |
656 | } | 619 | } |
657 | 620 | ||
658 | void hppfs_delete_inode(struct inode *ino) | 621 | void hppfs_delete_inode(struct inode *ino) |
@@ -665,21 +628,31 @@ static void hppfs_destroy_inode(struct inode *inode) | |||
665 | kfree(HPPFS_I(inode)); | 628 | kfree(HPPFS_I(inode)); |
666 | } | 629 | } |
667 | 630 | ||
631 | static void hppfs_put_super(struct super_block *sb) | ||
632 | { | ||
633 | mntput(sb->s_fs_info); | ||
634 | } | ||
635 | |||
668 | static const struct super_operations hppfs_sbops = { | 636 | static const struct super_operations hppfs_sbops = { |
669 | .alloc_inode = hppfs_alloc_inode, | 637 | .alloc_inode = hppfs_alloc_inode, |
670 | .destroy_inode = hppfs_destroy_inode, | 638 | .destroy_inode = hppfs_destroy_inode, |
671 | .delete_inode = hppfs_delete_inode, | 639 | .delete_inode = hppfs_delete_inode, |
672 | .statfs = hppfs_statfs, | 640 | .statfs = hppfs_statfs, |
641 | .put_super = hppfs_put_super, | ||
673 | }; | 642 | }; |
674 | 643 | ||
675 | static int hppfs_readlink(struct dentry *dentry, char __user *buffer, int buflen) | 644 | static int hppfs_readlink(struct dentry *dentry, char __user *buffer, |
645 | int buflen) | ||
676 | { | 646 | { |
677 | struct file *proc_file; | 647 | struct file *proc_file; |
678 | struct dentry *proc_dentry; | 648 | struct dentry *proc_dentry; |
649 | struct vfsmount *proc_mnt; | ||
679 | int ret; | 650 | int ret; |
680 | 651 | ||
681 | proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry; | 652 | proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry; |
682 | proc_file = dentry_open(dget(proc_dentry), NULL, O_RDONLY); | 653 | proc_mnt = dentry->d_sb->s_fs_info; |
654 | |||
655 | proc_file = dentry_open(dget(proc_dentry), mntget(proc_mnt), O_RDONLY); | ||
683 | if (IS_ERR(proc_file)) | 656 | if (IS_ERR(proc_file)) |
684 | return PTR_ERR(proc_file); | 657 | return PTR_ERR(proc_file); |
685 | 658 | ||
@@ -694,10 +667,13 @@ static void* hppfs_follow_link(struct dentry *dentry, struct nameidata *nd) | |||
694 | { | 667 | { |
695 | struct file *proc_file; | 668 | struct file *proc_file; |
696 | struct dentry *proc_dentry; | 669 | struct dentry *proc_dentry; |
670 | struct vfsmount *proc_mnt; | ||
697 | void *ret; | 671 | void *ret; |
698 | 672 | ||
699 | proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry; | 673 | proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry; |
700 | proc_file = dentry_open(dget(proc_dentry), NULL, O_RDONLY); | 674 | proc_mnt = dentry->d_sb->s_fs_info; |
675 | |||
676 | proc_file = dentry_open(dget(proc_dentry), mntget(proc_mnt), O_RDONLY); | ||
701 | if (IS_ERR(proc_file)) | 677 | if (IS_ERR(proc_file)) |
702 | return proc_file; | 678 | return proc_file; |
703 | 679 | ||
@@ -717,70 +693,72 @@ static const struct inode_operations hppfs_link_iops = { | |||
717 | .follow_link = hppfs_follow_link, | 693 | .follow_link = hppfs_follow_link, |
718 | }; | 694 | }; |
719 | 695 | ||
720 | static int init_inode(struct inode *inode, struct dentry *dentry) | 696 | static struct inode *get_inode(struct super_block *sb, struct dentry *dentry) |
721 | { | 697 | { |
722 | if(S_ISDIR(dentry->d_inode->i_mode)){ | 698 | struct inode *proc_ino = dentry->d_inode; |
699 | struct inode *inode = new_inode(sb); | ||
700 | |||
701 | if (!inode) | ||
702 | return ERR_PTR(-ENOMEM); | ||
703 | |||
704 | if (S_ISDIR(dentry->d_inode->i_mode)) { | ||
723 | inode->i_op = &hppfs_dir_iops; | 705 | inode->i_op = &hppfs_dir_iops; |
724 | inode->i_fop = &hppfs_dir_fops; | 706 | inode->i_fop = &hppfs_dir_fops; |
725 | } | 707 | } else if (S_ISLNK(dentry->d_inode->i_mode)) { |
726 | else if(S_ISLNK(dentry->d_inode->i_mode)){ | ||
727 | inode->i_op = &hppfs_link_iops; | 708 | inode->i_op = &hppfs_link_iops; |
728 | inode->i_fop = &hppfs_file_fops; | 709 | inode->i_fop = &hppfs_file_fops; |
729 | } | 710 | } else { |
730 | else { | ||
731 | inode->i_op = &hppfs_file_iops; | 711 | inode->i_op = &hppfs_file_iops; |
732 | inode->i_fop = &hppfs_file_fops; | 712 | inode->i_fop = &hppfs_file_fops; |
733 | } | 713 | } |
734 | 714 | ||
735 | HPPFS_I(inode)->proc_dentry = dentry; | 715 | HPPFS_I(inode)->proc_dentry = dentry; |
736 | 716 | ||
737 | return(0); | 717 | inode->i_uid = proc_ino->i_uid; |
718 | inode->i_gid = proc_ino->i_gid; | ||
719 | inode->i_atime = proc_ino->i_atime; | ||
720 | inode->i_mtime = proc_ino->i_mtime; | ||
721 | inode->i_ctime = proc_ino->i_ctime; | ||
722 | inode->i_ino = proc_ino->i_ino; | ||
723 | inode->i_mode = proc_ino->i_mode; | ||
724 | inode->i_nlink = proc_ino->i_nlink; | ||
725 | inode->i_size = proc_ino->i_size; | ||
726 | inode->i_blocks = proc_ino->i_blocks; | ||
727 | |||
728 | return 0; | ||
738 | } | 729 | } |
739 | 730 | ||
740 | static int hppfs_fill_super(struct super_block *sb, void *d, int silent) | 731 | static int hppfs_fill_super(struct super_block *sb, void *d, int silent) |
741 | { | 732 | { |
742 | struct inode *root_inode; | 733 | struct inode *root_inode; |
743 | struct file_system_type *procfs; | 734 | struct vfsmount *proc_mnt; |
744 | struct super_block *proc_sb; | 735 | int err = -ENOENT; |
745 | int err; | ||
746 | 736 | ||
747 | err = -ENOENT; | 737 | proc_mnt = do_kern_mount("proc", 0, "proc", NULL); |
748 | procfs = get_fs_type("proc"); | 738 | if (IS_ERR(proc_mnt)) |
749 | if(procfs == NULL) | ||
750 | goto out; | 739 | goto out; |
751 | 740 | ||
752 | if(list_empty(&procfs->fs_supers)) | ||
753 | goto out; | ||
754 | |||
755 | proc_sb = list_entry(procfs->fs_supers.next, struct super_block, | ||
756 | s_instances); | ||
757 | |||
758 | sb->s_blocksize = 1024; | 741 | sb->s_blocksize = 1024; |
759 | sb->s_blocksize_bits = 10; | 742 | sb->s_blocksize_bits = 10; |
760 | sb->s_magic = HPPFS_SUPER_MAGIC; | 743 | sb->s_magic = HPPFS_SUPER_MAGIC; |
761 | sb->s_op = &hppfs_sbops; | 744 | sb->s_op = &hppfs_sbops; |
762 | 745 | sb->s_fs_info = proc_mnt; | |
763 | root_inode = hppfs_iget(sb); | ||
764 | if (IS_ERR(root_inode)) { | ||
765 | err = PTR_ERR(root_inode); | ||
766 | goto out; | ||
767 | } | ||
768 | |||
769 | err = init_inode(root_inode, proc_sb->s_root); | ||
770 | if(err) | ||
771 | goto out_put; | ||
772 | 746 | ||
773 | err = -ENOMEM; | 747 | err = -ENOMEM; |
774 | sb->s_root = d_alloc_root(root_inode); | 748 | root_inode = get_inode(sb, proc_mnt->mnt_sb->s_root); |
775 | if(sb->s_root == NULL) | 749 | if (!root_inode) |
776 | goto out_put; | 750 | goto out_mntput; |
777 | 751 | ||
778 | hppfs_read_inode(root_inode); | 752 | sb->s_root = d_alloc_root(root_inode); |
753 | if (!sb->s_root) | ||
754 | goto out_iput; | ||
779 | 755 | ||
780 | return(0); | 756 | return 0; |
781 | 757 | ||
782 | out_put: | 758 | out_iput: |
783 | iput(root_inode); | 759 | iput(root_inode); |
760 | out_mntput: | ||
761 | mntput(proc_mnt); | ||
784 | out: | 762 | out: |
785 | return(err); | 763 | return(err); |
786 | } | 764 | } |
@@ -802,7 +780,7 @@ static struct file_system_type hppfs_type = { | |||
802 | 780 | ||
803 | static int __init init_hppfs(void) | 781 | static int __init init_hppfs(void) |
804 | { | 782 | { |
805 | return(register_filesystem(&hppfs_type)); | 783 | return register_filesystem(&hppfs_type); |
806 | } | 784 | } |
807 | 785 | ||
808 | static void __exit exit_hppfs(void) | 786 | static void __exit exit_hppfs(void) |
@@ -813,14 +791,3 @@ static void __exit exit_hppfs(void) | |||
813 | module_init(init_hppfs) | 791 | module_init(init_hppfs) |
814 | module_exit(exit_hppfs) | 792 | module_exit(exit_hppfs) |
815 | MODULE_LICENSE("GPL"); | 793 | MODULE_LICENSE("GPL"); |
816 | |||
817 | /* | ||
818 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
819 | * Emacs will notice this stuff at the end of the file and automatically | ||
820 | * adjust the settings for this buffer only. This must remain at the end | ||
821 | * of the file. | ||
822 | * --------------------------------------------------------------------------- | ||
823 | * Local variables: | ||
824 | * c-file-style: "linux" | ||
825 | * End: | ||
826 | */ | ||
diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c index eee9487ae47f..6846785fe904 100644 --- a/fs/hugetlbfs/inode.c +++ b/fs/hugetlbfs/inode.c | |||
@@ -954,7 +954,7 @@ struct file *hugetlb_file_setup(const char *name, size_t size) | |||
954 | FMODE_WRITE | FMODE_READ, | 954 | FMODE_WRITE | FMODE_READ, |
955 | &hugetlbfs_file_operations); | 955 | &hugetlbfs_file_operations); |
956 | if (!file) | 956 | if (!file) |
957 | goto out_inode; | 957 | goto out_dentry; /* inode is already attached */ |
958 | 958 | ||
959 | return file; | 959 | return file; |
960 | 960 | ||
diff --git a/fs/namei.c b/fs/namei.c index 6b7a0eef4090..8cf9bb9c2fc0 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -106,7 +106,7 @@ | |||
106 | * any extra contention... | 106 | * any extra contention... |
107 | */ | 107 | */ |
108 | 108 | ||
109 | static int link_path_walk(const char *name, struct nameidata *nd); | 109 | static int __link_path_walk(const char *name, struct nameidata *nd); |
110 | 110 | ||
111 | /* In order to reduce some races, while at the same time doing additional | 111 | /* In order to reduce some races, while at the same time doing additional |
112 | * checking and hopefully speeding things up, we copy filenames to the | 112 | * checking and hopefully speeding things up, we copy filenames to the |
@@ -563,6 +563,37 @@ walk_init_root(const char *name, struct nameidata *nd) | |||
563 | return 1; | 563 | return 1; |
564 | } | 564 | } |
565 | 565 | ||
566 | /* | ||
567 | * Wrapper to retry pathname resolution whenever the underlying | ||
568 | * file system returns an ESTALE. | ||
569 | * | ||
570 | * Retry the whole path once, forcing real lookup requests | ||
571 | * instead of relying on the dcache. | ||
572 | */ | ||
573 | static __always_inline int link_path_walk(const char *name, struct nameidata *nd) | ||
574 | { | ||
575 | struct path save = nd->path; | ||
576 | int result; | ||
577 | |||
578 | /* make sure the stuff we saved doesn't go away */ | ||
579 | dget(save.dentry); | ||
580 | mntget(save.mnt); | ||
581 | |||
582 | result = __link_path_walk(name, nd); | ||
583 | if (result == -ESTALE) { | ||
584 | /* nd->path had been dropped */ | ||
585 | nd->path = save; | ||
586 | dget(nd->path.dentry); | ||
587 | mntget(nd->path.mnt); | ||
588 | nd->flags |= LOOKUP_REVAL; | ||
589 | result = __link_path_walk(name, nd); | ||
590 | } | ||
591 | |||
592 | path_put(&save); | ||
593 | |||
594 | return result; | ||
595 | } | ||
596 | |||
566 | static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link) | 597 | static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link) |
567 | { | 598 | { |
568 | int res = 0; | 599 | int res = 0; |
@@ -1020,36 +1051,6 @@ return_err: | |||
1020 | return err; | 1051 | return err; |
1021 | } | 1052 | } |
1022 | 1053 | ||
1023 | /* | ||
1024 | * Wrapper to retry pathname resolution whenever the underlying | ||
1025 | * file system returns an ESTALE. | ||
1026 | * | ||
1027 | * Retry the whole path once, forcing real lookup requests | ||
1028 | * instead of relying on the dcache. | ||
1029 | */ | ||
1030 | static int link_path_walk(const char *name, struct nameidata *nd) | ||
1031 | { | ||
1032 | struct nameidata save = *nd; | ||
1033 | int result; | ||
1034 | |||
1035 | /* make sure the stuff we saved doesn't go away */ | ||
1036 | dget(save.path.dentry); | ||
1037 | mntget(save.path.mnt); | ||
1038 | |||
1039 | result = __link_path_walk(name, nd); | ||
1040 | if (result == -ESTALE) { | ||
1041 | *nd = save; | ||
1042 | dget(nd->path.dentry); | ||
1043 | mntget(nd->path.mnt); | ||
1044 | nd->flags |= LOOKUP_REVAL; | ||
1045 | result = __link_path_walk(name, nd); | ||
1046 | } | ||
1047 | |||
1048 | path_put(&save.path); | ||
1049 | |||
1050 | return result; | ||
1051 | } | ||
1052 | |||
1053 | static int path_walk(const char *name, struct nameidata *nd) | 1054 | static int path_walk(const char *name, struct nameidata *nd) |
1054 | { | 1055 | { |
1055 | current->total_link_count = 0; | 1056 | current->total_link_count = 0; |
@@ -903,6 +903,18 @@ struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags) | |||
903 | int error; | 903 | int error; |
904 | struct file *f; | 904 | struct file *f; |
905 | 905 | ||
906 | /* | ||
907 | * We must always pass in a valid mount pointer. Historically | ||
908 | * callers got away with not passing it, but we must enforce this at | ||
909 | * the earliest possible point now to avoid strange problems deep in the | ||
910 | * filesystem stack. | ||
911 | */ | ||
912 | if (!mnt) { | ||
913 | printk(KERN_WARNING "%s called with NULL vfsmount\n", __func__); | ||
914 | dump_stack(); | ||
915 | return ERR_PTR(-EINVAL); | ||
916 | } | ||
917 | |||
906 | error = -ENFILE; | 918 | error = -ENFILE; |
907 | f = get_empty_filp(); | 919 | f = get_empty_filp(); |
908 | if (f == NULL) { | 920 | if (f == NULL) { |
@@ -957,13 +957,10 @@ struct file *create_write_pipe(void) | |||
957 | struct dentry *dentry; | 957 | struct dentry *dentry; |
958 | struct qstr name = { .name = "" }; | 958 | struct qstr name = { .name = "" }; |
959 | 959 | ||
960 | f = get_empty_filp(); | ||
961 | if (!f) | ||
962 | return ERR_PTR(-ENFILE); | ||
963 | err = -ENFILE; | 960 | err = -ENFILE; |
964 | inode = get_pipe_inode(); | 961 | inode = get_pipe_inode(); |
965 | if (!inode) | 962 | if (!inode) |
966 | goto err_file; | 963 | goto err; |
967 | 964 | ||
968 | err = -ENOMEM; | 965 | err = -ENOMEM; |
969 | dentry = d_alloc(pipe_mnt->mnt_sb->s_root, &name); | 966 | dentry = d_alloc(pipe_mnt->mnt_sb->s_root, &name); |
@@ -978,22 +975,24 @@ struct file *create_write_pipe(void) | |||
978 | */ | 975 | */ |
979 | dentry->d_flags &= ~DCACHE_UNHASHED; | 976 | dentry->d_flags &= ~DCACHE_UNHASHED; |
980 | d_instantiate(dentry, inode); | 977 | d_instantiate(dentry, inode); |
981 | f->f_path.mnt = mntget(pipe_mnt); | 978 | |
982 | f->f_path.dentry = dentry; | 979 | err = -ENFILE; |
980 | f = alloc_file(pipe_mnt, dentry, FMODE_WRITE, &write_pipe_fops); | ||
981 | if (!f) | ||
982 | goto err_dentry; | ||
983 | f->f_mapping = inode->i_mapping; | 983 | f->f_mapping = inode->i_mapping; |
984 | 984 | ||
985 | f->f_flags = O_WRONLY; | 985 | f->f_flags = O_WRONLY; |
986 | f->f_op = &write_pipe_fops; | ||
987 | f->f_mode = FMODE_WRITE; | ||
988 | f->f_version = 0; | 986 | f->f_version = 0; |
989 | 987 | ||
990 | return f; | 988 | return f; |
991 | 989 | ||
990 | err_dentry: | ||
991 | dput(dentry); | ||
992 | err_inode: | 992 | err_inode: |
993 | free_pipe_info(inode); | 993 | free_pipe_info(inode); |
994 | iput(inode); | 994 | iput(inode); |
995 | err_file: | 995 | err: |
996 | put_filp(f); | ||
997 | return ERR_PTR(err); | 996 | return ERR_PTR(err); |
998 | } | 997 | } |
999 | 998 | ||
diff --git a/fs/reiserfs/xattr.c b/fs/reiserfs/xattr.c index eba037b3338f..344b9b96cc56 100644 --- a/fs/reiserfs/xattr.c +++ b/fs/reiserfs/xattr.c | |||
@@ -191,28 +191,11 @@ static struct dentry *get_xa_file_dentry(const struct inode *inode, | |||
191 | dput(xadir); | 191 | dput(xadir); |
192 | if (err) | 192 | if (err) |
193 | xafile = ERR_PTR(err); | 193 | xafile = ERR_PTR(err); |
194 | return xafile; | ||
195 | } | ||
196 | |||
197 | /* Opens a file pointer to the attribute associated with inode */ | ||
198 | static struct file *open_xa_file(const struct inode *inode, const char *name, | ||
199 | int flags) | ||
200 | { | ||
201 | struct dentry *xafile; | ||
202 | struct file *fp; | ||
203 | |||
204 | xafile = get_xa_file_dentry(inode, name, flags); | ||
205 | if (IS_ERR(xafile)) | ||
206 | return ERR_PTR(PTR_ERR(xafile)); | ||
207 | else if (!xafile->d_inode) { | 194 | else if (!xafile->d_inode) { |
208 | dput(xafile); | 195 | dput(xafile); |
209 | return ERR_PTR(-ENODATA); | 196 | xafile = ERR_PTR(-ENODATA); |
210 | } | 197 | } |
211 | 198 | return xafile; | |
212 | fp = dentry_open(xafile, NULL, O_RDWR); | ||
213 | /* dentry_open dputs the dentry if it fails */ | ||
214 | |||
215 | return fp; | ||
216 | } | 199 | } |
217 | 200 | ||
218 | /* | 201 | /* |
@@ -228,9 +211,8 @@ static struct file *open_xa_file(const struct inode *inode, const char *name, | |||
228 | * we're called with i_mutex held, so there are no worries about the directory | 211 | * we're called with i_mutex held, so there are no worries about the directory |
229 | * changing underneath us. | 212 | * changing underneath us. |
230 | */ | 213 | */ |
231 | static int __xattr_readdir(struct file *filp, void *dirent, filldir_t filldir) | 214 | static int __xattr_readdir(struct inode *inode, void *dirent, filldir_t filldir) |
232 | { | 215 | { |
233 | struct inode *inode = filp->f_path.dentry->d_inode; | ||
234 | struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ | 216 | struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ |
235 | INITIALIZE_PATH(path_to_entry); | 217 | INITIALIZE_PATH(path_to_entry); |
236 | struct buffer_head *bh; | 218 | struct buffer_head *bh; |
@@ -374,23 +356,16 @@ static int __xattr_readdir(struct file *filp, void *dirent, filldir_t filldir) | |||
374 | * | 356 | * |
375 | */ | 357 | */ |
376 | static | 358 | static |
377 | int xattr_readdir(struct file *file, filldir_t filler, void *buf) | 359 | int xattr_readdir(struct inode *inode, filldir_t filler, void *buf) |
378 | { | 360 | { |
379 | struct inode *inode = file->f_path.dentry->d_inode; | 361 | int res = -ENOENT; |
380 | int res = -ENOTDIR; | ||
381 | if (!file->f_op || !file->f_op->readdir) | ||
382 | goto out; | ||
383 | mutex_lock_nested(&inode->i_mutex, I_MUTEX_XATTR); | 362 | mutex_lock_nested(&inode->i_mutex, I_MUTEX_XATTR); |
384 | // down(&inode->i_zombie); | ||
385 | res = -ENOENT; | ||
386 | if (!IS_DEADDIR(inode)) { | 363 | if (!IS_DEADDIR(inode)) { |
387 | lock_kernel(); | 364 | lock_kernel(); |
388 | res = __xattr_readdir(file, buf, filler); | 365 | res = __xattr_readdir(inode, buf, filler); |
389 | unlock_kernel(); | 366 | unlock_kernel(); |
390 | } | 367 | } |
391 | // up(&inode->i_zombie); | ||
392 | mutex_unlock(&inode->i_mutex); | 368 | mutex_unlock(&inode->i_mutex); |
393 | out: | ||
394 | return res; | 369 | return res; |
395 | } | 370 | } |
396 | 371 | ||
@@ -442,7 +417,7 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, | |||
442 | size_t buffer_size, int flags) | 417 | size_t buffer_size, int flags) |
443 | { | 418 | { |
444 | int err = 0; | 419 | int err = 0; |
445 | struct file *fp; | 420 | struct dentry *dentry; |
446 | struct page *page; | 421 | struct page *page; |
447 | char *data; | 422 | char *data; |
448 | struct address_space *mapping; | 423 | struct address_space *mapping; |
@@ -460,18 +435,18 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, | |||
460 | xahash = xattr_hash(buffer, buffer_size); | 435 | xahash = xattr_hash(buffer, buffer_size); |
461 | 436 | ||
462 | open_file: | 437 | open_file: |
463 | fp = open_xa_file(inode, name, flags); | 438 | dentry = get_xa_file_dentry(inode, name, flags); |
464 | if (IS_ERR(fp)) { | 439 | if (IS_ERR(dentry)) { |
465 | err = PTR_ERR(fp); | 440 | err = PTR_ERR(dentry); |
466 | goto out; | 441 | goto out; |
467 | } | 442 | } |
468 | 443 | ||
469 | xinode = fp->f_path.dentry->d_inode; | 444 | xinode = dentry->d_inode; |
470 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; | 445 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
471 | 446 | ||
472 | /* we need to copy it off.. */ | 447 | /* we need to copy it off.. */ |
473 | if (xinode->i_nlink > 1) { | 448 | if (xinode->i_nlink > 1) { |
474 | fput(fp); | 449 | dput(dentry); |
475 | err = reiserfs_xattr_del(inode, name); | 450 | err = reiserfs_xattr_del(inode, name); |
476 | if (err < 0) | 451 | if (err < 0) |
477 | goto out; | 452 | goto out; |
@@ -485,7 +460,7 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, | |||
485 | newattrs.ia_size = buffer_size; | 460 | newattrs.ia_size = buffer_size; |
486 | newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME; | 461 | newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME; |
487 | mutex_lock_nested(&xinode->i_mutex, I_MUTEX_XATTR); | 462 | mutex_lock_nested(&xinode->i_mutex, I_MUTEX_XATTR); |
488 | err = notify_change(fp->f_path.dentry, &newattrs); | 463 | err = notify_change(dentry, &newattrs); |
489 | if (err) | 464 | if (err) |
490 | goto out_filp; | 465 | goto out_filp; |
491 | 466 | ||
@@ -518,15 +493,14 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, | |||
518 | rxh->h_hash = cpu_to_le32(xahash); | 493 | rxh->h_hash = cpu_to_le32(xahash); |
519 | } | 494 | } |
520 | 495 | ||
521 | err = reiserfs_prepare_write(fp, page, page_offset, | 496 | err = reiserfs_prepare_write(NULL, page, page_offset, |
522 | page_offset + chunk + skip); | 497 | page_offset + chunk + skip); |
523 | if (!err) { | 498 | if (!err) { |
524 | if (buffer) | 499 | if (buffer) |
525 | memcpy(data + skip, buffer + buffer_pos, chunk); | 500 | memcpy(data + skip, buffer + buffer_pos, chunk); |
526 | err = | 501 | err = reiserfs_commit_write(NULL, page, page_offset, |
527 | reiserfs_commit_write(fp, page, page_offset, | 502 | page_offset + chunk + |
528 | page_offset + chunk + | 503 | skip); |
529 | skip); | ||
530 | } | 504 | } |
531 | unlock_page(page); | 505 | unlock_page(page); |
532 | reiserfs_put_page(page); | 506 | reiserfs_put_page(page); |
@@ -548,7 +522,7 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, | |||
548 | 522 | ||
549 | out_filp: | 523 | out_filp: |
550 | mutex_unlock(&xinode->i_mutex); | 524 | mutex_unlock(&xinode->i_mutex); |
551 | fput(fp); | 525 | dput(dentry); |
552 | 526 | ||
553 | out: | 527 | out: |
554 | return err; | 528 | return err; |
@@ -562,7 +536,7 @@ reiserfs_xattr_get(const struct inode *inode, const char *name, void *buffer, | |||
562 | size_t buffer_size) | 536 | size_t buffer_size) |
563 | { | 537 | { |
564 | ssize_t err = 0; | 538 | ssize_t err = 0; |
565 | struct file *fp; | 539 | struct dentry *dentry; |
566 | size_t isize; | 540 | size_t isize; |
567 | size_t file_pos = 0; | 541 | size_t file_pos = 0; |
568 | size_t buffer_pos = 0; | 542 | size_t buffer_pos = 0; |
@@ -578,13 +552,13 @@ reiserfs_xattr_get(const struct inode *inode, const char *name, void *buffer, | |||
578 | if (get_inode_sd_version(inode) == STAT_DATA_V1) | 552 | if (get_inode_sd_version(inode) == STAT_DATA_V1) |
579 | return -EOPNOTSUPP; | 553 | return -EOPNOTSUPP; |
580 | 554 | ||
581 | fp = open_xa_file(inode, name, FL_READONLY); | 555 | dentry = get_xa_file_dentry(inode, name, FL_READONLY); |
582 | if (IS_ERR(fp)) { | 556 | if (IS_ERR(dentry)) { |
583 | err = PTR_ERR(fp); | 557 | err = PTR_ERR(dentry); |
584 | goto out; | 558 | goto out; |
585 | } | 559 | } |
586 | 560 | ||
587 | xinode = fp->f_path.dentry->d_inode; | 561 | xinode = dentry->d_inode; |
588 | isize = xinode->i_size; | 562 | isize = xinode->i_size; |
589 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; | 563 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
590 | 564 | ||
@@ -652,7 +626,7 @@ reiserfs_xattr_get(const struct inode *inode, const char *name, void *buffer, | |||
652 | } | 626 | } |
653 | 627 | ||
654 | out_dput: | 628 | out_dput: |
655 | fput(fp); | 629 | dput(dentry); |
656 | 630 | ||
657 | out: | 631 | out: |
658 | return err; | 632 | return err; |
@@ -742,7 +716,6 @@ reiserfs_delete_xattrs_filler(void *buf, const char *name, int namelen, | |||
742 | /* This is called w/ inode->i_mutex downed */ | 716 | /* This is called w/ inode->i_mutex downed */ |
743 | int reiserfs_delete_xattrs(struct inode *inode) | 717 | int reiserfs_delete_xattrs(struct inode *inode) |
744 | { | 718 | { |
745 | struct file *fp; | ||
746 | struct dentry *dir, *root; | 719 | struct dentry *dir, *root; |
747 | int err = 0; | 720 | int err = 0; |
748 | 721 | ||
@@ -763,15 +736,8 @@ int reiserfs_delete_xattrs(struct inode *inode) | |||
763 | return 0; | 736 | return 0; |
764 | } | 737 | } |
765 | 738 | ||
766 | fp = dentry_open(dir, NULL, O_RDWR); | ||
767 | if (IS_ERR(fp)) { | ||
768 | err = PTR_ERR(fp); | ||
769 | /* dentry_open dputs the dentry if it fails */ | ||
770 | goto out; | ||
771 | } | ||
772 | |||
773 | lock_kernel(); | 739 | lock_kernel(); |
774 | err = xattr_readdir(fp, reiserfs_delete_xattrs_filler, dir); | 740 | err = xattr_readdir(dir->d_inode, reiserfs_delete_xattrs_filler, dir); |
775 | if (err) { | 741 | if (err) { |
776 | unlock_kernel(); | 742 | unlock_kernel(); |
777 | goto out_dir; | 743 | goto out_dir; |
@@ -791,7 +757,7 @@ int reiserfs_delete_xattrs(struct inode *inode) | |||
791 | unlock_kernel(); | 757 | unlock_kernel(); |
792 | 758 | ||
793 | out_dir: | 759 | out_dir: |
794 | fput(fp); | 760 | dput(dir); |
795 | 761 | ||
796 | out: | 762 | out: |
797 | if (!err) | 763 | if (!err) |
@@ -833,7 +799,6 @@ reiserfs_chown_xattrs_filler(void *buf, const char *name, int namelen, | |||
833 | 799 | ||
834 | int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs) | 800 | int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs) |
835 | { | 801 | { |
836 | struct file *fp; | ||
837 | struct dentry *dir; | 802 | struct dentry *dir; |
838 | int err = 0; | 803 | int err = 0; |
839 | struct reiserfs_chown_buf buf; | 804 | struct reiserfs_chown_buf buf; |
@@ -857,13 +822,6 @@ int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs) | |||
857 | goto out; | 822 | goto out; |
858 | } | 823 | } |
859 | 824 | ||
860 | fp = dentry_open(dir, NULL, O_RDWR); | ||
861 | if (IS_ERR(fp)) { | ||
862 | err = PTR_ERR(fp); | ||
863 | /* dentry_open dputs the dentry if it fails */ | ||
864 | goto out; | ||
865 | } | ||
866 | |||
867 | lock_kernel(); | 825 | lock_kernel(); |
868 | 826 | ||
869 | attrs->ia_valid &= (ATTR_UID | ATTR_GID | ATTR_CTIME); | 827 | attrs->ia_valid &= (ATTR_UID | ATTR_GID | ATTR_CTIME); |
@@ -871,7 +829,7 @@ int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs) | |||
871 | buf.attrs = attrs; | 829 | buf.attrs = attrs; |
872 | buf.inode = inode; | 830 | buf.inode = inode; |
873 | 831 | ||
874 | err = xattr_readdir(fp, reiserfs_chown_xattrs_filler, &buf); | 832 | err = xattr_readdir(dir->d_inode, reiserfs_chown_xattrs_filler, &buf); |
875 | if (err) { | 833 | if (err) { |
876 | unlock_kernel(); | 834 | unlock_kernel(); |
877 | goto out_dir; | 835 | goto out_dir; |
@@ -881,7 +839,7 @@ int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs) | |||
881 | unlock_kernel(); | 839 | unlock_kernel(); |
882 | 840 | ||
883 | out_dir: | 841 | out_dir: |
884 | fput(fp); | 842 | dput(dir); |
885 | 843 | ||
886 | out: | 844 | out: |
887 | attrs->ia_valid = ia_valid; | 845 | attrs->ia_valid = ia_valid; |
@@ -1029,7 +987,6 @@ reiserfs_listxattr_filler(void *buf, const char *name, int namelen, | |||
1029 | */ | 987 | */ |
1030 | ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size) | 988 | ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size) |
1031 | { | 989 | { |
1032 | struct file *fp; | ||
1033 | struct dentry *dir; | 990 | struct dentry *dir; |
1034 | int err = 0; | 991 | int err = 0; |
1035 | struct reiserfs_listxattr_buf buf; | 992 | struct reiserfs_listxattr_buf buf; |
@@ -1052,13 +1009,6 @@ ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size) | |||
1052 | goto out; | 1009 | goto out; |
1053 | } | 1010 | } |
1054 | 1011 | ||
1055 | fp = dentry_open(dir, NULL, O_RDWR); | ||
1056 | if (IS_ERR(fp)) { | ||
1057 | err = PTR_ERR(fp); | ||
1058 | /* dentry_open dputs the dentry if it fails */ | ||
1059 | goto out; | ||
1060 | } | ||
1061 | |||
1062 | buf.r_buf = buffer; | 1012 | buf.r_buf = buffer; |
1063 | buf.r_size = buffer ? size : 0; | 1013 | buf.r_size = buffer ? size : 0; |
1064 | buf.r_pos = 0; | 1014 | buf.r_pos = 0; |
@@ -1066,7 +1016,7 @@ ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size) | |||
1066 | 1016 | ||
1067 | REISERFS_I(dentry->d_inode)->i_flags |= i_has_xattr_dir; | 1017 | REISERFS_I(dentry->d_inode)->i_flags |= i_has_xattr_dir; |
1068 | 1018 | ||
1069 | err = xattr_readdir(fp, reiserfs_listxattr_filler, &buf); | 1019 | err = xattr_readdir(dir->d_inode, reiserfs_listxattr_filler, &buf); |
1070 | if (err) | 1020 | if (err) |
1071 | goto out_dir; | 1021 | goto out_dir; |
1072 | 1022 | ||
@@ -1076,7 +1026,7 @@ ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size) | |||
1076 | err = buf.r_pos; | 1026 | err = buf.r_pos; |
1077 | 1027 | ||
1078 | out_dir: | 1028 | out_dir: |
1079 | fput(fp); | 1029 | dput(dir); |
1080 | 1030 | ||
1081 | out: | 1031 | out: |
1082 | reiserfs_read_unlock_xattr_i(dentry->d_inode); | 1032 | reiserfs_read_unlock_xattr_i(dentry->d_inode); |
diff --git a/fs/super.c b/fs/super.c index d0a941a4e620..09008dbd264e 100644 --- a/fs/super.c +++ b/fs/super.c | |||
@@ -945,6 +945,7 @@ do_kern_mount(const char *fstype, int flags, const char *name, void *data) | |||
945 | put_filesystem(type); | 945 | put_filesystem(type); |
946 | return mnt; | 946 | return mnt; |
947 | } | 947 | } |
948 | EXPORT_SYMBOL_GPL(do_kern_mount); | ||
948 | 949 | ||
949 | struct vfsmount *kern_mount_data(struct file_system_type *type, void *data) | 950 | struct vfsmount *kern_mount_data(struct file_system_type *type, void *data) |
950 | { | 951 | { |
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c index a271c87c4472..baa663e69388 100644 --- a/fs/sysfs/file.c +++ b/fs/sysfs/file.c | |||
@@ -12,6 +12,7 @@ | |||
12 | 12 | ||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/kobject.h> | 14 | #include <linux/kobject.h> |
15 | #include <linux/kallsyms.h> | ||
15 | #include <linux/namei.h> | 16 | #include <linux/namei.h> |
16 | #include <linux/poll.h> | 17 | #include <linux/poll.h> |
17 | #include <linux/list.h> | 18 | #include <linux/list.h> |
@@ -86,7 +87,12 @@ static int fill_read_buffer(struct dentry * dentry, struct sysfs_buffer * buffer | |||
86 | * The code works fine with PAGE_SIZE return but it's likely to | 87 | * The code works fine with PAGE_SIZE return but it's likely to |
87 | * indicate truncated result or overflow in normal use cases. | 88 | * indicate truncated result or overflow in normal use cases. |
88 | */ | 89 | */ |
89 | BUG_ON(count >= (ssize_t)PAGE_SIZE); | 90 | if (count >= (ssize_t)PAGE_SIZE) { |
91 | print_symbol("fill_read_buffer: %s returned bad count\n", | ||
92 | (unsigned long)ops->show); | ||
93 | /* Try to struggle along */ | ||
94 | count = PAGE_SIZE - 1; | ||
95 | } | ||
90 | if (count >= 0) { | 96 | if (count >= 0) { |
91 | buffer->needs_read_fill = 0; | 97 | buffer->needs_read_fill = 0; |
92 | buffer->count = count; | 98 | buffer->count = count; |
diff --git a/include/asm-sparc64/hvtramp.h b/include/asm-sparc64/hvtramp.h index c7dd6ad056df..b2b9b947b3a4 100644 --- a/include/asm-sparc64/hvtramp.h +++ b/include/asm-sparc64/hvtramp.h | |||
@@ -16,7 +16,7 @@ struct hvtramp_descr { | |||
16 | __u64 fault_info_va; | 16 | __u64 fault_info_va; |
17 | __u64 fault_info_pa; | 17 | __u64 fault_info_pa; |
18 | __u64 thread_reg; | 18 | __u64 thread_reg; |
19 | struct hvtramp_mapping maps[2]; | 19 | struct hvtramp_mapping maps[1]; |
20 | }; | 20 | }; |
21 | 21 | ||
22 | extern void hv_cpu_startup(unsigned long hvdescr_pa); | 22 | extern void hv_cpu_startup(unsigned long hvdescr_pa); |
diff --git a/include/asm-sparc64/spitfire.h b/include/asm-sparc64/spitfire.h index 63b7040e8134..985ea7e31992 100644 --- a/include/asm-sparc64/spitfire.h +++ b/include/asm-sparc64/spitfire.h | |||
@@ -63,6 +63,8 @@ extern void cheetah_enable_pcache(void); | |||
63 | SPITFIRE_HIGHEST_LOCKED_TLBENT : \ | 63 | SPITFIRE_HIGHEST_LOCKED_TLBENT : \ |
64 | CHEETAH_HIGHEST_LOCKED_TLBENT) | 64 | CHEETAH_HIGHEST_LOCKED_TLBENT) |
65 | 65 | ||
66 | extern int num_kernel_image_mappings; | ||
67 | |||
66 | /* The data cache is write through, so this just invalidates the | 68 | /* The data cache is write through, so this just invalidates the |
67 | * specified line. | 69 | * specified line. |
68 | */ | 70 | */ |
diff --git a/include/asm-x86/io_32.h b/include/asm-x86/io_32.h index 58d2c45cd0b1..d4d8fbd9378c 100644 --- a/include/asm-x86/io_32.h +++ b/include/asm-x86/io_32.h | |||
@@ -114,13 +114,13 @@ static inline void * phys_to_virt(unsigned long address) | |||
114 | * If the area you are trying to map is a PCI BAR you should have a | 114 | * If the area you are trying to map is a PCI BAR you should have a |
115 | * look at pci_iomap(). | 115 | * look at pci_iomap(). |
116 | */ | 116 | */ |
117 | extern void __iomem *ioremap_nocache(unsigned long offset, unsigned long size); | 117 | extern void __iomem *ioremap_nocache(resource_size_t offset, unsigned long size); |
118 | extern void __iomem *ioremap_cache(unsigned long offset, unsigned long size); | 118 | extern void __iomem *ioremap_cache(resource_size_t offset, unsigned long size); |
119 | 119 | ||
120 | /* | 120 | /* |
121 | * The default ioremap() behavior is non-cached: | 121 | * The default ioremap() behavior is non-cached: |
122 | */ | 122 | */ |
123 | static inline void __iomem *ioremap(unsigned long offset, unsigned long size) | 123 | static inline void __iomem *ioremap(resource_size_t offset, unsigned long size) |
124 | { | 124 | { |
125 | return ioremap_nocache(offset, size); | 125 | return ioremap_nocache(offset, size); |
126 | } | 126 | } |
diff --git a/include/asm-x86/io_64.h b/include/asm-x86/io_64.h index f64a59cc396d..db0be2011a3c 100644 --- a/include/asm-x86/io_64.h +++ b/include/asm-x86/io_64.h | |||
@@ -158,13 +158,13 @@ extern void early_iounmap(void *addr, unsigned long size); | |||
158 | * it's useful if some control registers are in such an area and write combining | 158 | * it's useful if some control registers are in such an area and write combining |
159 | * or read caching is not desirable: | 159 | * or read caching is not desirable: |
160 | */ | 160 | */ |
161 | extern void __iomem *ioremap_nocache(unsigned long offset, unsigned long size); | 161 | extern void __iomem *ioremap_nocache(resource_size_t offset, unsigned long size); |
162 | extern void __iomem *ioremap_cache(unsigned long offset, unsigned long size); | 162 | extern void __iomem *ioremap_cache(resource_size_t offset, unsigned long size); |
163 | 163 | ||
164 | /* | 164 | /* |
165 | * The default ioremap() behavior is non-cached: | 165 | * The default ioremap() behavior is non-cached: |
166 | */ | 166 | */ |
167 | static inline void __iomem *ioremap(unsigned long offset, unsigned long size) | 167 | static inline void __iomem *ioremap(resource_size_t offset, unsigned long size) |
168 | { | 168 | { |
169 | return ioremap_nocache(offset, size); | 169 | return ioremap_nocache(offset, size); |
170 | } | 170 | } |
diff --git a/include/linux/libata.h b/include/linux/libata.h index a05f60013642..269cdba09578 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -463,6 +463,7 @@ struct ata_queued_cmd { | |||
463 | unsigned int sect_size; | 463 | unsigned int sect_size; |
464 | 464 | ||
465 | unsigned int nbytes; | 465 | unsigned int nbytes; |
466 | unsigned int extrabytes; | ||
466 | unsigned int curbytes; | 467 | unsigned int curbytes; |
467 | 468 | ||
468 | struct scatterlist *cursg; | 469 | struct scatterlist *cursg; |
@@ -1336,6 +1337,11 @@ static inline struct ata_queued_cmd *ata_qc_from_tag(struct ata_port *ap, | |||
1336 | return NULL; | 1337 | return NULL; |
1337 | } | 1338 | } |
1338 | 1339 | ||
1340 | static inline unsigned int ata_qc_raw_nbytes(struct ata_queued_cmd *qc) | ||
1341 | { | ||
1342 | return qc->nbytes - min(qc->extrabytes, qc->nbytes); | ||
1343 | } | ||
1344 | |||
1339 | static inline void ata_tf_init(struct ata_device *dev, struct ata_taskfile *tf) | 1345 | static inline void ata_tf_init(struct ata_device *dev, struct ata_taskfile *tf) |
1340 | { | 1346 | { |
1341 | memset(tf, 0, sizeof(*tf)); | 1347 | memset(tf, 0, sizeof(*tf)); |
@@ -1354,7 +1360,7 @@ static inline void ata_qc_reinit(struct ata_queued_cmd *qc) | |||
1354 | qc->flags = 0; | 1360 | qc->flags = 0; |
1355 | qc->cursg = NULL; | 1361 | qc->cursg = NULL; |
1356 | qc->cursg_ofs = 0; | 1362 | qc->cursg_ofs = 0; |
1357 | qc->nbytes = qc->curbytes = 0; | 1363 | qc->nbytes = qc->extrabytes = qc->curbytes = 0; |
1358 | qc->n_elem = 0; | 1364 | qc->n_elem = 0; |
1359 | qc->err_mask = 0; | 1365 | qc->err_mask = 0; |
1360 | qc->sect_size = ATA_SECT_SIZE; | 1366 | qc->sect_size = ATA_SECT_SIZE; |
diff --git a/include/linux/pci.h b/include/linux/pci.h index b7e4b633c69b..ea760e519c46 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -513,7 +513,6 @@ int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap); | |||
513 | int pci_find_ext_capability(struct pci_dev *dev, int cap); | 513 | int pci_find_ext_capability(struct pci_dev *dev, int cap); |
514 | int pci_find_ht_capability(struct pci_dev *dev, int ht_cap); | 514 | int pci_find_ht_capability(struct pci_dev *dev, int ht_cap); |
515 | int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap); | 515 | int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap); |
516 | void pcie_wait_pending_transaction(struct pci_dev *dev); | ||
517 | struct pci_bus *pci_find_next_bus(const struct pci_bus *from); | 516 | struct pci_bus *pci_find_next_bus(const struct pci_bus *from); |
518 | 517 | ||
519 | struct pci_dev *pci_get_device(unsigned int vendor, unsigned int device, | 518 | struct pci_dev *pci_get_device(unsigned int vendor, unsigned int device, |
@@ -884,9 +883,6 @@ static inline int pci_find_ext_capability(struct pci_dev *dev, int cap) | |||
884 | return 0; | 883 | return 0; |
885 | } | 884 | } |
886 | 885 | ||
887 | static inline void pcie_wait_pending_transaction(struct pci_dev *dev) | ||
888 | { } | ||
889 | |||
890 | /* Power management related routines */ | 886 | /* Power management related routines */ |
891 | static inline int pci_save_state(struct pci_dev *dev) | 887 | static inline int pci_save_state(struct pci_dev *dev) |
892 | { | 888 | { |
diff --git a/include/linux/usb/quirks.h b/include/linux/usb/quirks.h index 2692ec9389ca..1f999ec8d08c 100644 --- a/include/linux/usb/quirks.h +++ b/include/linux/usb/quirks.h | |||
@@ -9,3 +9,6 @@ | |||
9 | 9 | ||
10 | /* device can't resume correctly so reset it instead */ | 10 | /* device can't resume correctly so reset it instead */ |
11 | #define USB_QUIRK_RESET_RESUME 0x00000002 | 11 | #define USB_QUIRK_RESET_RESUME 0x00000002 |
12 | |||
13 | /* device can't handle Set-Interface requests */ | ||
14 | #define USB_QUIRK_NO_SET_INTF 0x00000004 | ||
diff --git a/include/linux/usb_usual.h b/include/linux/usb_usual.h index cee0623b3c7b..0a40dfa44c9f 100644 --- a/include/linux/usb_usual.h +++ b/include/linux/usb_usual.h | |||
@@ -50,7 +50,9 @@ | |||
50 | US_FLAG(CAPACITY_HEURISTICS, 0x00001000) \ | 50 | US_FLAG(CAPACITY_HEURISTICS, 0x00001000) \ |
51 | /* sometimes sizes is too big */ \ | 51 | /* sometimes sizes is too big */ \ |
52 | US_FLAG(MAX_SECTORS_MIN,0x00002000) \ | 52 | US_FLAG(MAX_SECTORS_MIN,0x00002000) \ |
53 | /* Sets max_sectors to arch min */ | 53 | /* Sets max_sectors to arch min */ \ |
54 | US_FLAG(BULK_IGNORE_TAG,0x00004000) \ | ||
55 | /* Ignore tag mismatch in bulk operations */ | ||
54 | 56 | ||
55 | 57 | ||
56 | #define US_FLAG(name, value) US_FL_##name = value , | 58 | #define US_FLAG(name, value) US_FL_##name = value , |
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index 57ed3e323d97..ea806732b084 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h | |||
@@ -389,7 +389,7 @@ void sctp_v6_del_protocol(void); | |||
389 | 389 | ||
390 | #else /* #ifdef defined(CONFIG_IPV6) */ | 390 | #else /* #ifdef defined(CONFIG_IPV6) */ |
391 | 391 | ||
392 | static inline void sctp_v6_pf_init(void) { return 0; } | 392 | static inline void sctp_v6_pf_init(void) { return; } |
393 | static inline void sctp_v6_pf_exit(void) { return; } | 393 | static inline void sctp_v6_pf_exit(void) { return; } |
394 | static inline int sctp_v6_protosw_init(void) { return 0; } | 394 | static inline int sctp_v6_protosw_init(void) { return 0; } |
395 | static inline void sctp_v6_protosw_exit(void) { return; } | 395 | static inline void sctp_v6_protosw_exit(void) { return; } |
diff --git a/kernel/acct.c b/kernel/acct.c index 521dfa53cb99..91e1cfd734d2 100644 --- a/kernel/acct.c +++ b/kernel/acct.c | |||
@@ -58,6 +58,7 @@ | |||
58 | #include <asm/uaccess.h> | 58 | #include <asm/uaccess.h> |
59 | #include <asm/div64.h> | 59 | #include <asm/div64.h> |
60 | #include <linux/blkdev.h> /* sector_div */ | 60 | #include <linux/blkdev.h> /* sector_div */ |
61 | #include <linux/pid_namespace.h> | ||
61 | 62 | ||
62 | /* | 63 | /* |
63 | * These constants control the amount of freespace that suspend and | 64 | * These constants control the amount of freespace that suspend and |
@@ -74,7 +75,7 @@ int acct_parm[3] = {4, 2, 30}; | |||
74 | /* | 75 | /* |
75 | * External references and all of the globals. | 76 | * External references and all of the globals. |
76 | */ | 77 | */ |
77 | static void do_acct_process(struct file *); | 78 | static void do_acct_process(struct pid_namespace *ns, struct file *); |
78 | 79 | ||
79 | /* | 80 | /* |
80 | * This structure is used so that all the data protected by lock | 81 | * This structure is used so that all the data protected by lock |
@@ -86,6 +87,7 @@ struct acct_glbs { | |||
86 | volatile int active; | 87 | volatile int active; |
87 | volatile int needcheck; | 88 | volatile int needcheck; |
88 | struct file *file; | 89 | struct file *file; |
90 | struct pid_namespace *ns; | ||
89 | struct timer_list timer; | 91 | struct timer_list timer; |
90 | }; | 92 | }; |
91 | 93 | ||
@@ -175,9 +177,11 @@ out: | |||
175 | static void acct_file_reopen(struct file *file) | 177 | static void acct_file_reopen(struct file *file) |
176 | { | 178 | { |
177 | struct file *old_acct = NULL; | 179 | struct file *old_acct = NULL; |
180 | struct pid_namespace *old_ns = NULL; | ||
178 | 181 | ||
179 | if (acct_globals.file) { | 182 | if (acct_globals.file) { |
180 | old_acct = acct_globals.file; | 183 | old_acct = acct_globals.file; |
184 | old_ns = acct_globals.ns; | ||
181 | del_timer(&acct_globals.timer); | 185 | del_timer(&acct_globals.timer); |
182 | acct_globals.active = 0; | 186 | acct_globals.active = 0; |
183 | acct_globals.needcheck = 0; | 187 | acct_globals.needcheck = 0; |
@@ -185,6 +189,7 @@ static void acct_file_reopen(struct file *file) | |||
185 | } | 189 | } |
186 | if (file) { | 190 | if (file) { |
187 | acct_globals.file = file; | 191 | acct_globals.file = file; |
192 | acct_globals.ns = get_pid_ns(task_active_pid_ns(current)); | ||
188 | acct_globals.needcheck = 0; | 193 | acct_globals.needcheck = 0; |
189 | acct_globals.active = 1; | 194 | acct_globals.active = 1; |
190 | /* It's been deleted if it was used before so this is safe */ | 195 | /* It's been deleted if it was used before so this is safe */ |
@@ -196,8 +201,9 @@ static void acct_file_reopen(struct file *file) | |||
196 | if (old_acct) { | 201 | if (old_acct) { |
197 | mnt_unpin(old_acct->f_path.mnt); | 202 | mnt_unpin(old_acct->f_path.mnt); |
198 | spin_unlock(&acct_globals.lock); | 203 | spin_unlock(&acct_globals.lock); |
199 | do_acct_process(old_acct); | 204 | do_acct_process(old_ns, old_acct); |
200 | filp_close(old_acct, NULL); | 205 | filp_close(old_acct, NULL); |
206 | put_pid_ns(old_ns); | ||
201 | spin_lock(&acct_globals.lock); | 207 | spin_lock(&acct_globals.lock); |
202 | } | 208 | } |
203 | } | 209 | } |
@@ -419,7 +425,7 @@ static u32 encode_float(u64 value) | |||
419 | /* | 425 | /* |
420 | * do_acct_process does all actual work. Caller holds the reference to file. | 426 | * do_acct_process does all actual work. Caller holds the reference to file. |
421 | */ | 427 | */ |
422 | static void do_acct_process(struct file *file) | 428 | static void do_acct_process(struct pid_namespace *ns, struct file *file) |
423 | { | 429 | { |
424 | struct pacct_struct *pacct = ¤t->signal->pacct; | 430 | struct pacct_struct *pacct = ¤t->signal->pacct; |
425 | acct_t ac; | 431 | acct_t ac; |
@@ -481,8 +487,10 @@ static void do_acct_process(struct file *file) | |||
481 | ac.ac_gid16 = current->gid; | 487 | ac.ac_gid16 = current->gid; |
482 | #endif | 488 | #endif |
483 | #if ACCT_VERSION==3 | 489 | #if ACCT_VERSION==3 |
484 | ac.ac_pid = current->tgid; | 490 | ac.ac_pid = task_tgid_nr_ns(current, ns); |
485 | ac.ac_ppid = current->real_parent->tgid; | 491 | rcu_read_lock(); |
492 | ac.ac_ppid = task_tgid_nr_ns(rcu_dereference(current->real_parent), ns); | ||
493 | rcu_read_unlock(); | ||
486 | #endif | 494 | #endif |
487 | 495 | ||
488 | spin_lock_irq(¤t->sighand->siglock); | 496 | spin_lock_irq(¤t->sighand->siglock); |
@@ -578,6 +586,7 @@ void acct_collect(long exitcode, int group_dead) | |||
578 | void acct_process(void) | 586 | void acct_process(void) |
579 | { | 587 | { |
580 | struct file *file = NULL; | 588 | struct file *file = NULL; |
589 | struct pid_namespace *ns; | ||
581 | 590 | ||
582 | /* | 591 | /* |
583 | * accelerate the common fastpath: | 592 | * accelerate the common fastpath: |
@@ -592,8 +601,10 @@ void acct_process(void) | |||
592 | return; | 601 | return; |
593 | } | 602 | } |
594 | get_file(file); | 603 | get_file(file); |
604 | ns = get_pid_ns(acct_globals.ns); | ||
595 | spin_unlock(&acct_globals.lock); | 605 | spin_unlock(&acct_globals.lock); |
596 | 606 | ||
597 | do_acct_process(file); | 607 | do_acct_process(ns, file); |
598 | fput(file); | 608 | fput(file); |
609 | put_pid_ns(ns); | ||
599 | } | 610 | } |
diff --git a/kernel/marker.c b/kernel/marker.c index 48a4ea5afffd..041c33e3e95c 100644 --- a/kernel/marker.c +++ b/kernel/marker.c | |||
@@ -104,18 +104,18 @@ void marker_probe_cb(const struct marker *mdata, void *call_private, | |||
104 | char ptype; | 104 | char ptype; |
105 | 105 | ||
106 | /* | 106 | /* |
107 | * disabling preemption to make sure the teardown of the callbacks can | 107 | * preempt_disable does two things : disabling preemption to make sure |
108 | * be done correctly when they are in modules and they insure RCU read | 108 | * the teardown of the callbacks can be done correctly when they are in |
109 | * coherency. | 109 | * modules and they insure RCU read coherency. |
110 | */ | 110 | */ |
111 | preempt_disable(); | 111 | preempt_disable(); |
112 | ptype = ACCESS_ONCE(mdata->ptype); | 112 | ptype = mdata->ptype; |
113 | if (likely(!ptype)) { | 113 | if (likely(!ptype)) { |
114 | marker_probe_func *func; | 114 | marker_probe_func *func; |
115 | /* Must read the ptype before ptr. They are not data dependant, | 115 | /* Must read the ptype before ptr. They are not data dependant, |
116 | * so we put an explicit smp_rmb() here. */ | 116 | * so we put an explicit smp_rmb() here. */ |
117 | smp_rmb(); | 117 | smp_rmb(); |
118 | func = ACCESS_ONCE(mdata->single.func); | 118 | func = mdata->single.func; |
119 | /* Must read the ptr before private data. They are not data | 119 | /* Must read the ptr before private data. They are not data |
120 | * dependant, so we put an explicit smp_rmb() here. */ | 120 | * dependant, so we put an explicit smp_rmb() here. */ |
121 | smp_rmb(); | 121 | smp_rmb(); |
@@ -133,7 +133,7 @@ void marker_probe_cb(const struct marker *mdata, void *call_private, | |||
133 | * in the fast path, so put the explicit barrier here. | 133 | * in the fast path, so put the explicit barrier here. |
134 | */ | 134 | */ |
135 | smp_read_barrier_depends(); | 135 | smp_read_barrier_depends(); |
136 | multi = ACCESS_ONCE(mdata->multi); | 136 | multi = mdata->multi; |
137 | for (i = 0; multi[i].func; i++) { | 137 | for (i = 0; multi[i].func; i++) { |
138 | va_start(args, fmt); | 138 | va_start(args, fmt); |
139 | multi[i].func(multi[i].probe_private, call_private, fmt, | 139 | multi[i].func(multi[i].probe_private, call_private, fmt, |
@@ -161,13 +161,13 @@ void marker_probe_cb_noarg(const struct marker *mdata, | |||
161 | char ptype; | 161 | char ptype; |
162 | 162 | ||
163 | preempt_disable(); | 163 | preempt_disable(); |
164 | ptype = ACCESS_ONCE(mdata->ptype); | 164 | ptype = mdata->ptype; |
165 | if (likely(!ptype)) { | 165 | if (likely(!ptype)) { |
166 | marker_probe_func *func; | 166 | marker_probe_func *func; |
167 | /* Must read the ptype before ptr. They are not data dependant, | 167 | /* Must read the ptype before ptr. They are not data dependant, |
168 | * so we put an explicit smp_rmb() here. */ | 168 | * so we put an explicit smp_rmb() here. */ |
169 | smp_rmb(); | 169 | smp_rmb(); |
170 | func = ACCESS_ONCE(mdata->single.func); | 170 | func = mdata->single.func; |
171 | /* Must read the ptr before private data. They are not data | 171 | /* Must read the ptr before private data. They are not data |
172 | * dependant, so we put an explicit smp_rmb() here. */ | 172 | * dependant, so we put an explicit smp_rmb() here. */ |
173 | smp_rmb(); | 173 | smp_rmb(); |
@@ -183,7 +183,7 @@ void marker_probe_cb_noarg(const struct marker *mdata, | |||
183 | * in the fast path, so put the explicit barrier here. | 183 | * in the fast path, so put the explicit barrier here. |
184 | */ | 184 | */ |
185 | smp_read_barrier_depends(); | 185 | smp_read_barrier_depends(); |
186 | multi = ACCESS_ONCE(mdata->multi); | 186 | multi = mdata->multi; |
187 | for (i = 0; multi[i].func; i++) | 187 | for (i = 0; multi[i].func; i++) |
188 | multi[i].func(multi[i].probe_private, call_private, fmt, | 188 | multi[i].func(multi[i].probe_private, call_private, fmt, |
189 | &args); | 189 | &args); |
@@ -551,9 +551,9 @@ static int set_marker(struct marker_entry **entry, struct marker *elem, | |||
551 | 551 | ||
552 | /* | 552 | /* |
553 | * Disable a marker and its probe callback. | 553 | * Disable a marker and its probe callback. |
554 | * Note: only after a synchronize_sched() issued after setting elem->call to the | 554 | * Note: only waiting an RCU period after setting elem->call to the empty |
555 | * empty function insures that the original callback is not used anymore. This | 555 | * function insures that the original callback is not used anymore. This insured |
556 | * insured by preemption disabling around the call site. | 556 | * by preempt_disable around the call site. |
557 | */ | 557 | */ |
558 | static void disable_marker(struct marker *elem) | 558 | static void disable_marker(struct marker *elem) |
559 | { | 559 | { |
@@ -565,8 +565,8 @@ static void disable_marker(struct marker *elem) | |||
565 | elem->ptype = 0; /* single probe */ | 565 | elem->ptype = 0; /* single probe */ |
566 | /* | 566 | /* |
567 | * Leave the private data and id there, because removal is racy and | 567 | * Leave the private data and id there, because removal is racy and |
568 | * should be done only after a synchronize_sched(). These are never used | 568 | * should be done only after an RCU period. These are never used until |
569 | * until the next initialization anyway. | 569 | * the next initialization anyway. |
570 | */ | 570 | */ |
571 | } | 571 | } |
572 | 572 | ||
@@ -601,9 +601,6 @@ void marker_update_probe_range(struct marker *begin, | |||
601 | 601 | ||
602 | /* | 602 | /* |
603 | * Update probes, removing the faulty probes. | 603 | * Update probes, removing the faulty probes. |
604 | * Issues a synchronize_sched() when no reference to the module passed | ||
605 | * as parameter is found in the probes so the probe module can be | ||
606 | * safely unloaded from now on. | ||
607 | * | 604 | * |
608 | * Internal callback only changed before the first probe is connected to it. | 605 | * Internal callback only changed before the first probe is connected to it. |
609 | * Single probe private data can only be changed on 0 -> 1 and 2 -> 1 | 606 | * Single probe private data can only be changed on 0 -> 1 and 2 -> 1 |
diff --git a/kernel/printk.c b/kernel/printk.c index 9adc2a473e6e..c46a20a19a15 100644 --- a/kernel/printk.c +++ b/kernel/printk.c | |||
@@ -616,6 +616,40 @@ asmlinkage int printk(const char *fmt, ...) | |||
616 | /* cpu currently holding logbuf_lock */ | 616 | /* cpu currently holding logbuf_lock */ |
617 | static volatile unsigned int printk_cpu = UINT_MAX; | 617 | static volatile unsigned int printk_cpu = UINT_MAX; |
618 | 618 | ||
619 | /* | ||
620 | * Can we actually use the console at this time on this cpu? | ||
621 | * | ||
622 | * Console drivers may assume that per-cpu resources have | ||
623 | * been allocated. So unless they're explicitly marked as | ||
624 | * being able to cope (CON_ANYTIME) don't call them until | ||
625 | * this CPU is officially up. | ||
626 | */ | ||
627 | static inline int can_use_console(unsigned int cpu) | ||
628 | { | ||
629 | return cpu_online(cpu) || have_callable_console(); | ||
630 | } | ||
631 | |||
632 | /* | ||
633 | * Try to get console ownership to actually show the kernel | ||
634 | * messages from a 'printk'. Return true (and with the | ||
635 | * console_semaphore held, and 'console_locked' set) if it | ||
636 | * is successful, false otherwise. | ||
637 | * | ||
638 | * This gets called with the 'logbuf_lock' spinlock held and | ||
639 | * interrupts disabled. It should return with 'lockbuf_lock' | ||
640 | * released but interrupts still disabled. | ||
641 | */ | ||
642 | static int acquire_console_semaphore_for_printk(unsigned int cpu) | ||
643 | { | ||
644 | int retval = 0; | ||
645 | |||
646 | if (can_use_console(cpu)) | ||
647 | retval = !try_acquire_console_sem(); | ||
648 | printk_cpu = UINT_MAX; | ||
649 | spin_unlock(&logbuf_lock); | ||
650 | return retval; | ||
651 | } | ||
652 | |||
619 | const char printk_recursion_bug_msg [] = | 653 | const char printk_recursion_bug_msg [] = |
620 | KERN_CRIT "BUG: recent printk recursion!\n"; | 654 | KERN_CRIT "BUG: recent printk recursion!\n"; |
621 | static int printk_recursion_bug; | 655 | static int printk_recursion_bug; |
@@ -725,43 +759,22 @@ asmlinkage int vprintk(const char *fmt, va_list args) | |||
725 | log_level_unknown = 1; | 759 | log_level_unknown = 1; |
726 | } | 760 | } |
727 | 761 | ||
728 | if (!down_trylock(&console_sem)) { | 762 | /* |
729 | /* | 763 | * Try to acquire and then immediately release the |
730 | * We own the drivers. We can drop the spinlock and | 764 | * console semaphore. The release will do all the |
731 | * let release_console_sem() print the text, maybe ... | 765 | * actual magic (print out buffers, wake up klogd, |
732 | */ | 766 | * etc). |
733 | console_locked = 1; | 767 | * |
734 | printk_cpu = UINT_MAX; | 768 | * The acquire_console_semaphore_for_printk() function |
735 | spin_unlock(&logbuf_lock); | 769 | * will release 'logbuf_lock' regardless of whether it |
770 | * actually gets the semaphore or not. | ||
771 | */ | ||
772 | if (acquire_console_semaphore_for_printk(this_cpu)) | ||
773 | release_console_sem(); | ||
736 | 774 | ||
737 | /* | 775 | lockdep_on(); |
738 | * Console drivers may assume that per-cpu resources have | ||
739 | * been allocated. So unless they're explicitly marked as | ||
740 | * being able to cope (CON_ANYTIME) don't call them until | ||
741 | * this CPU is officially up. | ||
742 | */ | ||
743 | if (cpu_online(smp_processor_id()) || have_callable_console()) { | ||
744 | console_may_schedule = 0; | ||
745 | release_console_sem(); | ||
746 | } else { | ||
747 | /* Release by hand to avoid flushing the buffer. */ | ||
748 | console_locked = 0; | ||
749 | up(&console_sem); | ||
750 | } | ||
751 | lockdep_on(); | ||
752 | raw_local_irq_restore(flags); | ||
753 | } else { | ||
754 | /* | ||
755 | * Someone else owns the drivers. We drop the spinlock, which | ||
756 | * allows the semaphore holder to proceed and to call the | ||
757 | * console drivers with the output which we just produced. | ||
758 | */ | ||
759 | printk_cpu = UINT_MAX; | ||
760 | spin_unlock(&logbuf_lock); | ||
761 | lockdep_on(); | ||
762 | out_restore_irqs: | 776 | out_restore_irqs: |
763 | raw_local_irq_restore(flags); | 777 | raw_local_irq_restore(flags); |
764 | } | ||
765 | 778 | ||
766 | preempt_enable(); | 779 | preempt_enable(); |
767 | return printed_len; | 780 | return printed_len; |
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index 671af612b768..a3fa587c350c 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c | |||
@@ -191,8 +191,12 @@ static void change_clocksource(void) | |||
191 | 191 | ||
192 | tick_clock_notify(); | 192 | tick_clock_notify(); |
193 | 193 | ||
194 | /* | ||
195 | * We're holding xtime lock and waking up klogd would deadlock | ||
196 | * us on enqueue. So no printing! | ||
194 | printk(KERN_INFO "Time: %s clocksource has been installed.\n", | 197 | printk(KERN_INFO "Time: %s clocksource has been installed.\n", |
195 | clock->name); | 198 | clock->name); |
199 | */ | ||
196 | } | 200 | } |
197 | #else | 201 | #else |
198 | static inline void change_clocksource(void) { } | 202 | static inline void change_clocksource(void) { } |
diff --git a/lib/iomap.c b/lib/iomap.c index db004a9ff509..dd6ca48fe6b0 100644 --- a/lib/iomap.c +++ b/lib/iomap.c | |||
@@ -256,7 +256,7 @@ EXPORT_SYMBOL(ioport_unmap); | |||
256 | * */ | 256 | * */ |
257 | void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen) | 257 | void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen) |
258 | { | 258 | { |
259 | unsigned long start = pci_resource_start(dev, bar); | 259 | resource_size_t start = pci_resource_start(dev, bar); |
260 | unsigned long len = pci_resource_len(dev, bar); | 260 | unsigned long len = pci_resource_len(dev, bar); |
261 | unsigned long flags = pci_resource_flags(dev, bar); | 261 | unsigned long flags = pci_resource_flags(dev, bar); |
262 | 262 | ||
diff --git a/mm/bootmem.c b/mm/bootmem.c index f6ff4337b424..2ccea700968f 100644 --- a/mm/bootmem.c +++ b/mm/bootmem.c | |||
@@ -125,6 +125,7 @@ static int __init reserve_bootmem_core(bootmem_data_t *bdata, | |||
125 | BUG_ON(!size); | 125 | BUG_ON(!size); |
126 | BUG_ON(PFN_DOWN(addr) >= bdata->node_low_pfn); | 126 | BUG_ON(PFN_DOWN(addr) >= bdata->node_low_pfn); |
127 | BUG_ON(PFN_UP(addr + size) > bdata->node_low_pfn); | 127 | BUG_ON(PFN_UP(addr + size) > bdata->node_low_pfn); |
128 | BUG_ON(addr < bdata->node_boot_start); | ||
128 | 129 | ||
129 | sidx = PFN_DOWN(addr - bdata->node_boot_start); | 130 | sidx = PFN_DOWN(addr - bdata->node_boot_start); |
130 | eidx = PFN_UP(addr + size - bdata->node_boot_start); | 131 | eidx = PFN_UP(addr + size - bdata->node_boot_start); |
@@ -156,21 +157,31 @@ static void __init free_bootmem_core(bootmem_data_t *bdata, unsigned long addr, | |||
156 | unsigned long sidx, eidx; | 157 | unsigned long sidx, eidx; |
157 | unsigned long i; | 158 | unsigned long i; |
158 | 159 | ||
160 | BUG_ON(!size); | ||
161 | |||
162 | /* out range */ | ||
163 | if (addr + size < bdata->node_boot_start || | ||
164 | PFN_DOWN(addr) > bdata->node_low_pfn) | ||
165 | return; | ||
159 | /* | 166 | /* |
160 | * round down end of usable mem, partially free pages are | 167 | * round down end of usable mem, partially free pages are |
161 | * considered reserved. | 168 | * considered reserved. |
162 | */ | 169 | */ |
163 | BUG_ON(!size); | ||
164 | BUG_ON(PFN_DOWN(addr + size) > bdata->node_low_pfn); | ||
165 | 170 | ||
166 | if (addr < bdata->last_success) | 171 | if (addr >= bdata->node_boot_start && addr < bdata->last_success) |
167 | bdata->last_success = addr; | 172 | bdata->last_success = addr; |
168 | 173 | ||
169 | /* | 174 | /* |
170 | * Round up the beginning of the address. | 175 | * Round up to index to the range. |
171 | */ | 176 | */ |
172 | sidx = PFN_UP(addr) - PFN_DOWN(bdata->node_boot_start); | 177 | if (PFN_UP(addr) > PFN_DOWN(bdata->node_boot_start)) |
178 | sidx = PFN_UP(addr) - PFN_DOWN(bdata->node_boot_start); | ||
179 | else | ||
180 | sidx = 0; | ||
181 | |||
173 | eidx = PFN_DOWN(addr + size - bdata->node_boot_start); | 182 | eidx = PFN_DOWN(addr + size - bdata->node_boot_start); |
183 | if (eidx > bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start)) | ||
184 | eidx = bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start); | ||
174 | 185 | ||
175 | for (i = sidx; i < eidx; i++) { | 186 | for (i = sidx; i < eidx; i++) { |
176 | if (unlikely(!test_and_clear_bit(i, bdata->node_bootmem_map))) | 187 | if (unlikely(!test_and_clear_bit(i, bdata->node_bootmem_map))) |
@@ -421,7 +432,9 @@ int __init reserve_bootmem(unsigned long addr, unsigned long size, | |||
421 | 432 | ||
422 | void __init free_bootmem(unsigned long addr, unsigned long size) | 433 | void __init free_bootmem(unsigned long addr, unsigned long size) |
423 | { | 434 | { |
424 | free_bootmem_core(NODE_DATA(0)->bdata, addr, size); | 435 | bootmem_data_t *bdata; |
436 | list_for_each_entry(bdata, &bdata_list, list) | ||
437 | free_bootmem_core(bdata, addr, size); | ||
425 | } | 438 | } |
426 | 439 | ||
427 | unsigned long __init free_all_bootmem(void) | 440 | unsigned long __init free_all_bootmem(void) |
diff --git a/mm/tiny-shmem.c b/mm/tiny-shmem.c index f0f55875dd6a..ae532f501943 100644 --- a/mm/tiny-shmem.c +++ b/mm/tiny-shmem.c | |||
@@ -88,6 +88,8 @@ struct file *shmem_file_setup(char *name, loff_t size, unsigned long flags) | |||
88 | 88 | ||
89 | close_file: | 89 | close_file: |
90 | put_filp(file); | 90 | put_filp(file); |
91 | return ERR_PTR(error); | ||
92 | |||
91 | put_dentry: | 93 | put_dentry: |
92 | dput(dentry); | 94 | dput(dentry); |
93 | put_memory: | 95 | put_memory: |
diff --git a/mm/vmscan.c b/mm/vmscan.c index 45711585684e..4046434046e6 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c | |||
@@ -70,13 +70,6 @@ struct scan_control { | |||
70 | 70 | ||
71 | int order; | 71 | int order; |
72 | 72 | ||
73 | /* | ||
74 | * Pages that have (or should have) IO pending. If we run into | ||
75 | * a lot of these, we're better off waiting a little for IO to | ||
76 | * finish rather than scanning more pages in the VM. | ||
77 | */ | ||
78 | int nr_io_pages; | ||
79 | |||
80 | /* Which cgroup do we reclaim from */ | 73 | /* Which cgroup do we reclaim from */ |
81 | struct mem_cgroup *mem_cgroup; | 74 | struct mem_cgroup *mem_cgroup; |
82 | 75 | ||
@@ -512,10 +505,8 @@ static unsigned long shrink_page_list(struct list_head *page_list, | |||
512 | */ | 505 | */ |
513 | if (sync_writeback == PAGEOUT_IO_SYNC && may_enter_fs) | 506 | if (sync_writeback == PAGEOUT_IO_SYNC && may_enter_fs) |
514 | wait_on_page_writeback(page); | 507 | wait_on_page_writeback(page); |
515 | else { | 508 | else |
516 | sc->nr_io_pages++; | ||
517 | goto keep_locked; | 509 | goto keep_locked; |
518 | } | ||
519 | } | 510 | } |
520 | 511 | ||
521 | referenced = page_referenced(page, 1, sc->mem_cgroup); | 512 | referenced = page_referenced(page, 1, sc->mem_cgroup); |
@@ -554,10 +545,8 @@ static unsigned long shrink_page_list(struct list_head *page_list, | |||
554 | if (PageDirty(page)) { | 545 | if (PageDirty(page)) { |
555 | if (sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced) | 546 | if (sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced) |
556 | goto keep_locked; | 547 | goto keep_locked; |
557 | if (!may_enter_fs) { | 548 | if (!may_enter_fs) |
558 | sc->nr_io_pages++; | ||
559 | goto keep_locked; | 549 | goto keep_locked; |
560 | } | ||
561 | if (!sc->may_writepage) | 550 | if (!sc->may_writepage) |
562 | goto keep_locked; | 551 | goto keep_locked; |
563 | 552 | ||
@@ -568,10 +557,8 @@ static unsigned long shrink_page_list(struct list_head *page_list, | |||
568 | case PAGE_ACTIVATE: | 557 | case PAGE_ACTIVATE: |
569 | goto activate_locked; | 558 | goto activate_locked; |
570 | case PAGE_SUCCESS: | 559 | case PAGE_SUCCESS: |
571 | if (PageWriteback(page) || PageDirty(page)) { | 560 | if (PageWriteback(page) || PageDirty(page)) |
572 | sc->nr_io_pages++; | ||
573 | goto keep; | 561 | goto keep; |
574 | } | ||
575 | /* | 562 | /* |
576 | * A synchronous write - probably a ramdisk. Go | 563 | * A synchronous write - probably a ramdisk. Go |
577 | * ahead and try to reclaim the page. | 564 | * ahead and try to reclaim the page. |
@@ -1344,7 +1331,6 @@ static unsigned long do_try_to_free_pages(struct zone **zones, gfp_t gfp_mask, | |||
1344 | 1331 | ||
1345 | for (priority = DEF_PRIORITY; priority >= 0; priority--) { | 1332 | for (priority = DEF_PRIORITY; priority >= 0; priority--) { |
1346 | sc->nr_scanned = 0; | 1333 | sc->nr_scanned = 0; |
1347 | sc->nr_io_pages = 0; | ||
1348 | if (!priority) | 1334 | if (!priority) |
1349 | disable_swap_token(); | 1335 | disable_swap_token(); |
1350 | nr_reclaimed += shrink_zones(priority, zones, sc); | 1336 | nr_reclaimed += shrink_zones(priority, zones, sc); |
@@ -1379,8 +1365,7 @@ static unsigned long do_try_to_free_pages(struct zone **zones, gfp_t gfp_mask, | |||
1379 | } | 1365 | } |
1380 | 1366 | ||
1381 | /* Take a nap, wait for some writeback to complete */ | 1367 | /* Take a nap, wait for some writeback to complete */ |
1382 | if (sc->nr_scanned && priority < DEF_PRIORITY - 2 && | 1368 | if (sc->nr_scanned && priority < DEF_PRIORITY - 2) |
1383 | sc->nr_io_pages > sc->swap_cluster_max) | ||
1384 | congestion_wait(WRITE, HZ/10); | 1369 | congestion_wait(WRITE, HZ/10); |
1385 | } | 1370 | } |
1386 | /* top priority shrink_caches still had more to do? don't OOM, then */ | 1371 | /* top priority shrink_caches still had more to do? don't OOM, then */ |
@@ -1514,7 +1499,6 @@ loop_again: | |||
1514 | if (!priority) | 1499 | if (!priority) |
1515 | disable_swap_token(); | 1500 | disable_swap_token(); |
1516 | 1501 | ||
1517 | sc.nr_io_pages = 0; | ||
1518 | all_zones_ok = 1; | 1502 | all_zones_ok = 1; |
1519 | 1503 | ||
1520 | /* | 1504 | /* |
@@ -1607,8 +1591,7 @@ loop_again: | |||
1607 | * OK, kswapd is getting into trouble. Take a nap, then take | 1591 | * OK, kswapd is getting into trouble. Take a nap, then take |
1608 | * another pass across the zones. | 1592 | * another pass across the zones. |
1609 | */ | 1593 | */ |
1610 | if (total_scanned && priority < DEF_PRIORITY - 2 && | 1594 | if (total_scanned && priority < DEF_PRIORITY - 2) |
1611 | sc.nr_io_pages > sc.swap_cluster_max) | ||
1612 | congestion_wait(WRITE, HZ/10); | 1595 | congestion_wait(WRITE, HZ/10); |
1613 | 1596 | ||
1614 | /* | 1597 | /* |
diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index 1aa9d5175398..4e8d4e724b96 100644 --- a/net/9p/trans_fd.c +++ b/net/9p/trans_fd.c | |||
@@ -861,7 +861,6 @@ static void p9_mux_free_request(struct p9_conn *m, struct p9_req *req) | |||
861 | 861 | ||
862 | static void p9_mux_flush_cb(struct p9_req *freq, void *a) | 862 | static void p9_mux_flush_cb(struct p9_req *freq, void *a) |
863 | { | 863 | { |
864 | p9_conn_req_callback cb; | ||
865 | int tag; | 864 | int tag; |
866 | struct p9_conn *m; | 865 | struct p9_conn *m; |
867 | struct p9_req *req, *rreq, *rptr; | 866 | struct p9_req *req, *rreq, *rptr; |
@@ -872,7 +871,6 @@ static void p9_mux_flush_cb(struct p9_req *freq, void *a) | |||
872 | freq->tcall->params.tflush.oldtag); | 871 | freq->tcall->params.tflush.oldtag); |
873 | 872 | ||
874 | spin_lock(&m->lock); | 873 | spin_lock(&m->lock); |
875 | cb = NULL; | ||
876 | tag = freq->tcall->params.tflush.oldtag; | 874 | tag = freq->tcall->params.tflush.oldtag; |
877 | req = NULL; | 875 | req = NULL; |
878 | list_for_each_entry_safe(rreq, rptr, &m->req_list, req_list) { | 876 | list_for_each_entry_safe(rreq, rptr, &m->req_list, req_list) { |
diff --git a/net/atm/clip.c b/net/atm/clip.c index d30167c0b48e..2ab1e36098fd 100644 --- a/net/atm/clip.c +++ b/net/atm/clip.c | |||
@@ -947,6 +947,8 @@ static const struct file_operations arp_seq_fops = { | |||
947 | }; | 947 | }; |
948 | #endif | 948 | #endif |
949 | 949 | ||
950 | static void atm_clip_exit_noproc(void); | ||
951 | |||
950 | static int __init atm_clip_init(void) | 952 | static int __init atm_clip_init(void) |
951 | { | 953 | { |
952 | neigh_table_init_no_netlink(&clip_tbl); | 954 | neigh_table_init_no_netlink(&clip_tbl); |
@@ -963,18 +965,22 @@ static int __init atm_clip_init(void) | |||
963 | struct proc_dir_entry *p; | 965 | struct proc_dir_entry *p; |
964 | 966 | ||
965 | p = proc_create("arp", S_IRUGO, atm_proc_root, &arp_seq_fops); | 967 | p = proc_create("arp", S_IRUGO, atm_proc_root, &arp_seq_fops); |
968 | if (!p) { | ||
969 | printk(KERN_ERR "Unable to initialize " | ||
970 | "/proc/net/atm/arp\n"); | ||
971 | atm_clip_exit_noproc(); | ||
972 | return -ENOMEM; | ||
973 | } | ||
966 | } | 974 | } |
967 | #endif | 975 | #endif |
968 | 976 | ||
969 | return 0; | 977 | return 0; |
970 | } | 978 | } |
971 | 979 | ||
972 | static void __exit atm_clip_exit(void) | 980 | static void atm_clip_exit_noproc(void) |
973 | { | 981 | { |
974 | struct net_device *dev, *next; | 982 | struct net_device *dev, *next; |
975 | 983 | ||
976 | remove_proc_entry("arp", atm_proc_root); | ||
977 | |||
978 | unregister_inetaddr_notifier(&clip_inet_notifier); | 984 | unregister_inetaddr_notifier(&clip_inet_notifier); |
979 | unregister_netdevice_notifier(&clip_dev_notifier); | 985 | unregister_netdevice_notifier(&clip_dev_notifier); |
980 | 986 | ||
@@ -1005,6 +1011,13 @@ static void __exit atm_clip_exit(void) | |||
1005 | clip_tbl_hook = NULL; | 1011 | clip_tbl_hook = NULL; |
1006 | } | 1012 | } |
1007 | 1013 | ||
1014 | static void __exit atm_clip_exit(void) | ||
1015 | { | ||
1016 | remove_proc_entry("arp", atm_proc_root); | ||
1017 | |||
1018 | atm_clip_exit_noproc(); | ||
1019 | } | ||
1020 | |||
1008 | module_init(atm_clip_init); | 1021 | module_init(atm_clip_init); |
1009 | module_exit(atm_clip_exit); | 1022 | module_exit(atm_clip_exit); |
1010 | MODULE_AUTHOR("Werner Almesberger"); | 1023 | MODULE_AUTHOR("Werner Almesberger"); |
diff --git a/net/atm/lec.c b/net/atm/lec.c index 0e450d12f035..a2efa7ff41f1 100644 --- a/net/atm/lec.c +++ b/net/atm/lec.c | |||
@@ -1250,6 +1250,10 @@ static int __init lane_module_init(void) | |||
1250 | struct proc_dir_entry *p; | 1250 | struct proc_dir_entry *p; |
1251 | 1251 | ||
1252 | p = proc_create("lec", S_IRUGO, atm_proc_root, &lec_seq_fops); | 1252 | p = proc_create("lec", S_IRUGO, atm_proc_root, &lec_seq_fops); |
1253 | if (!p) { | ||
1254 | printk(KERN_ERR "Unable to initialize /proc/net/atm/lec\n"); | ||
1255 | return -ENOMEM; | ||
1256 | } | ||
1253 | #endif | 1257 | #endif |
1254 | 1258 | ||
1255 | register_atm_ioctl(&lane_ioctl_ops); | 1259 | register_atm_ioctl(&lane_ioctl_ops); |
diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c index 1ff446d0fa8b..f6cdc012eec5 100644 --- a/net/ipv4/fib_trie.c +++ b/net/ipv4/fib_trie.c | |||
@@ -177,10 +177,13 @@ static inline struct tnode *node_parent_rcu(struct node *node) | |||
177 | return rcu_dereference(ret); | 177 | return rcu_dereference(ret); |
178 | } | 178 | } |
179 | 179 | ||
180 | /* Same as rcu_assign_pointer | ||
181 | * but that macro() assumes that value is a pointer. | ||
182 | */ | ||
180 | static inline void node_set_parent(struct node *node, struct tnode *ptr) | 183 | static inline void node_set_parent(struct node *node, struct tnode *ptr) |
181 | { | 184 | { |
182 | rcu_assign_pointer(node->parent, | 185 | smp_wmb(); |
183 | (unsigned long)ptr | NODE_TYPE(node)); | 186 | node->parent = (unsigned long)ptr | NODE_TYPE(node); |
184 | } | 187 | } |
185 | 188 | ||
186 | static inline struct node *tnode_get_child(struct tnode *tn, unsigned int i) | 189 | static inline struct node *tnode_get_child(struct tnode *tn, unsigned int i) |
diff --git a/net/ipv4/ip_fragment.c b/net/ipv4/ip_fragment.c index a2e92f9709db..3b2e5adca838 100644 --- a/net/ipv4/ip_fragment.c +++ b/net/ipv4/ip_fragment.c | |||
@@ -568,7 +568,7 @@ int ip_defrag(struct sk_buff *skb, u32 user) | |||
568 | 568 | ||
569 | IP_INC_STATS_BH(IPSTATS_MIB_REASMREQDS); | 569 | IP_INC_STATS_BH(IPSTATS_MIB_REASMREQDS); |
570 | 570 | ||
571 | net = skb->dev->nd_net; | 571 | net = skb->dev ? skb->dev->nd_net : skb->dst->dev->nd_net; |
572 | /* Start by cleaning up the memory. */ | 572 | /* Start by cleaning up the memory. */ |
573 | if (atomic_read(&net->ipv4.frags.mem) > net->ipv4.frags.high_thresh) | 573 | if (atomic_read(&net->ipv4.frags.mem) > net->ipv4.frags.high_thresh) |
574 | ip_evictor(net); | 574 | ip_evictor(net); |
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index 071e83a894ad..39b629ac2404 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c | |||
@@ -735,7 +735,7 @@ new_segment: | |||
735 | if (!(psize -= copy)) | 735 | if (!(psize -= copy)) |
736 | goto out; | 736 | goto out; |
737 | 737 | ||
738 | if (skb->len < mss_now || (flags & MSG_OOB)) | 738 | if (skb->len < size_goal || (flags & MSG_OOB)) |
739 | continue; | 739 | continue; |
740 | 740 | ||
741 | if (forced_push(tp)) { | 741 | if (forced_push(tp)) { |
@@ -981,7 +981,7 @@ new_segment: | |||
981 | if ((seglen -= copy) == 0 && iovlen == 0) | 981 | if ((seglen -= copy) == 0 && iovlen == 0) |
982 | goto out; | 982 | goto out; |
983 | 983 | ||
984 | if (skb->len < mss_now || (flags & MSG_OOB)) | 984 | if (skb->len < size_goal || (flags & MSG_OOB)) |
985 | continue; | 985 | continue; |
986 | 986 | ||
987 | if (forced_push(tp)) { | 987 | if (forced_push(tp)) { |
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 0d33a7d32125..51557c27a0cd 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c | |||
@@ -1420,7 +1420,6 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh, | |||
1420 | u8 *opt; | 1420 | u8 *opt; |
1421 | int rd_len; | 1421 | int rd_len; |
1422 | int err; | 1422 | int err; |
1423 | int hlen; | ||
1424 | u8 ha_buf[MAX_ADDR_LEN], *ha = NULL; | 1423 | u8 ha_buf[MAX_ADDR_LEN], *ha = NULL; |
1425 | 1424 | ||
1426 | dev = skb->dev; | 1425 | dev = skb->dev; |
@@ -1491,7 +1490,6 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh, | |||
1491 | return; | 1490 | return; |
1492 | } | 1491 | } |
1493 | 1492 | ||
1494 | hlen = 0; | ||
1495 | 1493 | ||
1496 | skb_reserve(buff, LL_RESERVED_SPACE(dev)); | 1494 | skb_reserve(buff, LL_RESERVED_SPACE(dev)); |
1497 | ip6_nd_hdr(sk, buff, dev, &saddr_buf, &ipv6_hdr(skb)->saddr, | 1495 | ip6_nd_hdr(sk, buff, dev, &saddr_buf, &ipv6_hdr(skb)->saddr, |
diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index 795c761ad99f..66148cc4759e 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c | |||
@@ -711,9 +711,11 @@ static void htb_charge_class(struct htb_sched *q, struct htb_class *cl, | |||
711 | */ | 711 | */ |
712 | static psched_time_t htb_do_events(struct htb_sched *q, int level) | 712 | static psched_time_t htb_do_events(struct htb_sched *q, int level) |
713 | { | 713 | { |
714 | int i; | 714 | /* don't run for longer than 2 jiffies; 2 is used instead of |
715 | 715 | 1 to simplify things when jiffy is going to be incremented | |
716 | for (i = 0; i < 500; i++) { | 716 | too soon */ |
717 | unsigned long stop_at = jiffies + 2; | ||
718 | while (time_before(jiffies, stop_at)) { | ||
717 | struct htb_class *cl; | 719 | struct htb_class *cl; |
718 | long diff; | 720 | long diff; |
719 | struct rb_node *p = rb_first(&q->wait_pq[level]); | 721 | struct rb_node *p = rb_first(&q->wait_pq[level]); |
@@ -731,9 +733,8 @@ static psched_time_t htb_do_events(struct htb_sched *q, int level) | |||
731 | if (cl->cmode != HTB_CAN_SEND) | 733 | if (cl->cmode != HTB_CAN_SEND) |
732 | htb_add_to_wait_tree(q, cl, diff); | 734 | htb_add_to_wait_tree(q, cl, diff); |
733 | } | 735 | } |
734 | if (net_ratelimit()) | 736 | /* too much load - let's continue on next jiffie */ |
735 | printk(KERN_WARNING "htb: too many events !\n"); | 737 | return q->now + PSCHED_TICKS_PER_SEC / HZ; |
736 | return q->now + PSCHED_TICKS_PER_SEC / 10; | ||
737 | } | 738 | } |
738 | 739 | ||
739 | /* Returns class->node+prio from id-tree where classe's id is >= id. NULL | 740 | /* Returns class->node+prio from id-tree where classe's id is >= id. NULL |
diff --git a/net/socket.c b/net/socket.c index b6d35cd72a50..9d3fbfbc8535 100644 --- a/net/socket.c +++ b/net/socket.c | |||
@@ -909,11 +909,10 @@ static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg) | |||
909 | if (!dlci_ioctl_hook) | 909 | if (!dlci_ioctl_hook) |
910 | request_module("dlci"); | 910 | request_module("dlci"); |
911 | 911 | ||
912 | if (dlci_ioctl_hook) { | 912 | mutex_lock(&dlci_ioctl_mutex); |
913 | mutex_lock(&dlci_ioctl_mutex); | 913 | if (dlci_ioctl_hook) |
914 | err = dlci_ioctl_hook(cmd, argp); | 914 | err = dlci_ioctl_hook(cmd, argp); |
915 | mutex_unlock(&dlci_ioctl_mutex); | 915 | mutex_unlock(&dlci_ioctl_mutex); |
916 | } | ||
917 | break; | 916 | break; |
918 | default: | 917 | default: |
919 | err = sock->ops->ioctl(sock, cmd, arg); | 918 | err = sock->ops->ioctl(sock, cmd, arg); |
diff --git a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c index ab54a736486e..971271602dd0 100644 --- a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c +++ b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c | |||
@@ -237,14 +237,12 @@ static void rdma_set_ctxt_sge(struct svc_rdma_op_ctxt *ctxt, | |||
237 | 237 | ||
238 | static int rdma_read_max_sge(struct svcxprt_rdma *xprt, int sge_count) | 238 | static int rdma_read_max_sge(struct svcxprt_rdma *xprt, int sge_count) |
239 | { | 239 | { |
240 | #ifdef RDMA_TRANSPORT_IWARP | ||
241 | if ((RDMA_TRANSPORT_IWARP == | 240 | if ((RDMA_TRANSPORT_IWARP == |
242 | rdma_node_get_transport(xprt->sc_cm_id-> | 241 | rdma_node_get_transport(xprt->sc_cm_id-> |
243 | device->node_type)) | 242 | device->node_type)) |
244 | && sge_count > 1) | 243 | && sge_count > 1) |
245 | return 1; | 244 | return 1; |
246 | else | 245 | else |
247 | #endif | ||
248 | return min_t(int, sge_count, xprt->sc_max_sge); | 246 | return min_t(int, sge_count, xprt->sc_max_sge); |
249 | } | 247 | } |
250 | 248 | ||
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost index cfc004e04417..2d20640854b7 100644 --- a/scripts/Makefile.modpost +++ b/scripts/Makefile.modpost | |||
@@ -58,6 +58,9 @@ modules := $(patsubst %.o,%.ko, $(wildcard $(__modules:.ko=.o))) | |||
58 | # Stop after building .o files if NOFINAL is set. Makes compile tests quicker | 58 | # Stop after building .o files if NOFINAL is set. Makes compile tests quicker |
59 | _modpost: $(if $(KBUILD_MODPOST_NOFINAL), $(modules:.ko:.o),$(modules)) | 59 | _modpost: $(if $(KBUILD_MODPOST_NOFINAL), $(modules:.ko:.o),$(modules)) |
60 | 60 | ||
61 | ifneq ($(KBUILD_BUILDHOST),$(ARCH)) | ||
62 | cross_build := 1 | ||
63 | endif | ||
61 | 64 | ||
62 | # Step 2), invoke modpost | 65 | # Step 2), invoke modpost |
63 | # Includes step 3,4 | 66 | # Includes step 3,4 |
@@ -70,7 +73,8 @@ modpost = scripts/mod/modpost \ | |||
70 | $(if $(CONFIG_DEBUG_SECTION_MISMATCH),,-S) \ | 73 | $(if $(CONFIG_DEBUG_SECTION_MISMATCH),,-S) \ |
71 | $(if $(CONFIG_MARKERS),-K $(kernelmarkersfile)) \ | 74 | $(if $(CONFIG_MARKERS),-K $(kernelmarkersfile)) \ |
72 | $(if $(CONFIG_MARKERS),-M $(markersfile)) \ | 75 | $(if $(CONFIG_MARKERS),-M $(markersfile)) \ |
73 | $(if $(KBUILD_EXTMOD)$(KBUILD_MODPOST_WARN),-w) | 76 | $(if $(KBUILD_EXTMOD)$(KBUILD_MODPOST_WARN),-w) \ |
77 | $(if $(cross_build),-c) | ||
74 | 78 | ||
75 | quiet_cmd_modpost = MODPOST $(words $(filter-out vmlinux FORCE, $^)) modules | 79 | quiet_cmd_modpost = MODPOST $(words $(filter-out vmlinux FORCE, $^)) modules |
76 | cmd_modpost = $(modpost) -s | 80 | cmd_modpost = $(modpost) -s |
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index 9ddf944cce29..348d8687b7c9 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
@@ -51,11 +51,13 @@ do { \ | |||
51 | sprintf(str + strlen(str), "*"); \ | 51 | sprintf(str + strlen(str), "*"); \ |
52 | } while(0) | 52 | } while(0) |
53 | 53 | ||
54 | unsigned int cross_build = 0; | ||
54 | /** | 55 | /** |
55 | * Check that sizeof(device_id type) are consistent with size of section | 56 | * Check that sizeof(device_id type) are consistent with size of section |
56 | * in .o file. If in-consistent then userspace and kernel does not agree | 57 | * in .o file. If in-consistent then userspace and kernel does not agree |
57 | * on actual size which is a bug. | 58 | * on actual size which is a bug. |
58 | * Also verify that the final entry in the table is all zeros. | 59 | * Also verify that the final entry in the table is all zeros. |
60 | * Ignore both checks if build host differ from target host and size differs. | ||
59 | **/ | 61 | **/ |
60 | static void device_id_check(const char *modname, const char *device_id, | 62 | static void device_id_check(const char *modname, const char *device_id, |
61 | unsigned long size, unsigned long id_size, | 63 | unsigned long size, unsigned long id_size, |
@@ -64,6 +66,8 @@ static void device_id_check(const char *modname, const char *device_id, | |||
64 | int i; | 66 | int i; |
65 | 67 | ||
66 | if (size % id_size || size < id_size) { | 68 | if (size % id_size || size < id_size) { |
69 | if (cross_build != 0) | ||
70 | return; | ||
67 | fatal("%s: sizeof(struct %s_device_id)=%lu is not a modulo " | 71 | fatal("%s: sizeof(struct %s_device_id)=%lu is not a modulo " |
68 | "of the size of section __mod_%s_device_table=%lu.\n" | 72 | "of the size of section __mod_%s_device_table=%lu.\n" |
69 | "Fix definition of struct %s_device_id " | 73 | "Fix definition of struct %s_device_id " |
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 695b5d657cf5..110cf243fa4e 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -2026,7 +2026,7 @@ int main(int argc, char **argv) | |||
2026 | int opt; | 2026 | int opt; |
2027 | int err; | 2027 | int err; |
2028 | 2028 | ||
2029 | while ((opt = getopt(argc, argv, "i:I:msSo:awM:K:")) != -1) { | 2029 | while ((opt = getopt(argc, argv, "i:I:cmsSo:awM:K:")) != -1) { |
2030 | switch (opt) { | 2030 | switch (opt) { |
2031 | case 'i': | 2031 | case 'i': |
2032 | kernel_read = optarg; | 2032 | kernel_read = optarg; |
@@ -2035,6 +2035,9 @@ int main(int argc, char **argv) | |||
2035 | module_read = optarg; | 2035 | module_read = optarg; |
2036 | external_module = 1; | 2036 | external_module = 1; |
2037 | break; | 2037 | break; |
2038 | case 'c': | ||
2039 | cross_build = 1; | ||
2040 | break; | ||
2038 | case 'm': | 2041 | case 'm': |
2039 | modversions = 1; | 2042 | modversions = 1; |
2040 | break; | 2043 | break; |
diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h index 565c5872407e..09f58e33d227 100644 --- a/scripts/mod/modpost.h +++ b/scripts/mod/modpost.h | |||
@@ -135,6 +135,7 @@ struct elf_info { | |||
135 | }; | 135 | }; |
136 | 136 | ||
137 | /* file2alias.c */ | 137 | /* file2alias.c */ |
138 | extern unsigned int cross_build; | ||
138 | void handle_moddevtable(struct module *mod, struct elf_info *info, | 139 | void handle_moddevtable(struct module *mod, struct elf_info *info, |
139 | Elf_Sym *sym, const char *symname); | 140 | Elf_Sym *sym, const char *symname); |
140 | void add_moddevtable(struct buffer *buf, struct module *mod); | 141 | void add_moddevtable(struct buffer *buf, struct module *mod); |
diff --git a/security/smack/smackfs.c b/security/smack/smackfs.c index afe7c9b0732a..cfae8afcc262 100644 --- a/security/smack/smackfs.c +++ b/security/smack/smackfs.c | |||
@@ -74,11 +74,6 @@ struct smk_list_entry *smack_list; | |||
74 | #define SEQ_READ_FINISHED 1 | 74 | #define SEQ_READ_FINISHED 1 |
75 | 75 | ||
76 | /* | 76 | /* |
77 | * Disable concurrent writing open() operations | ||
78 | */ | ||
79 | static struct semaphore smack_write_sem; | ||
80 | |||
81 | /* | ||
82 | * Values for parsing cipso rules | 77 | * Values for parsing cipso rules |
83 | * SMK_DIGITLEN: Length of a digit field in a rule. | 78 | * SMK_DIGITLEN: Length of a digit field in a rule. |
84 | * SMK_CIPSOMIN: Minimum possible cipso rule length. | 79 | * SMK_CIPSOMIN: Minimum possible cipso rule length. |
@@ -168,32 +163,7 @@ static struct seq_operations load_seq_ops = { | |||
168 | */ | 163 | */ |
169 | static int smk_open_load(struct inode *inode, struct file *file) | 164 | static int smk_open_load(struct inode *inode, struct file *file) |
170 | { | 165 | { |
171 | if ((file->f_flags & O_ACCMODE) == O_RDONLY) | 166 | return seq_open(file, &load_seq_ops); |
172 | return seq_open(file, &load_seq_ops); | ||
173 | |||
174 | if (down_interruptible(&smack_write_sem)) | ||
175 | return -ERESTARTSYS; | ||
176 | |||
177 | return 0; | ||
178 | } | ||
179 | |||
180 | /** | ||
181 | * smk_release_load - release() for /smack/load | ||
182 | * @inode: inode structure representing file | ||
183 | * @file: "load" file pointer | ||
184 | * | ||
185 | * For a reading session, use the seq_file release | ||
186 | * implementation. | ||
187 | * Otherwise, we are at the end of a writing session so | ||
188 | * clean everything up. | ||
189 | */ | ||
190 | static int smk_release_load(struct inode *inode, struct file *file) | ||
191 | { | ||
192 | if ((file->f_flags & O_ACCMODE) == O_RDONLY) | ||
193 | return seq_release(inode, file); | ||
194 | |||
195 | up(&smack_write_sem); | ||
196 | return 0; | ||
197 | } | 167 | } |
198 | 168 | ||
199 | /** | 169 | /** |
@@ -341,7 +311,7 @@ static const struct file_operations smk_load_ops = { | |||
341 | .read = seq_read, | 311 | .read = seq_read, |
342 | .llseek = seq_lseek, | 312 | .llseek = seq_lseek, |
343 | .write = smk_write_load, | 313 | .write = smk_write_load, |
344 | .release = smk_release_load, | 314 | .release = seq_release, |
345 | }; | 315 | }; |
346 | 316 | ||
347 | /** | 317 | /** |
@@ -1011,7 +981,6 @@ static int __init init_smk_fs(void) | |||
1011 | } | 981 | } |
1012 | } | 982 | } |
1013 | 983 | ||
1014 | sema_init(&smack_write_sem, 1); | ||
1015 | smk_cipso_doi(); | 984 | smk_cipso_doi(); |
1016 | smk_unlbl_ambient(NULL); | 985 | smk_unlbl_ambient(NULL); |
1017 | 986 | ||