diff options
Diffstat (limited to 'arch/powerpc')
84 files changed, 4343 insertions, 1920 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index e39b73bc0ff8..74cc312c347c 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -876,10 +876,6 @@ source "drivers/Kconfig" | |||
876 | 876 | ||
877 | source "fs/Kconfig" | 877 | source "fs/Kconfig" |
878 | 878 | ||
879 | # XXX source "arch/ppc/8xx_io/Kconfig" | ||
880 | |||
881 | # XXX source "arch/ppc/8260_io/Kconfig" | ||
882 | |||
883 | source "arch/powerpc/sysdev/qe_lib/Kconfig" | 879 | source "arch/powerpc/sysdev/qe_lib/Kconfig" |
884 | 880 | ||
885 | source "lib/Kconfig" | 881 | source "lib/Kconfig" |
diff --git a/arch/powerpc/boot/cuboot-warp.c b/arch/powerpc/boot/cuboot-warp.c index 21780210057d..806df693fea6 100644 --- a/arch/powerpc/boot/cuboot-warp.c +++ b/arch/powerpc/boot/cuboot-warp.c | |||
@@ -18,57 +18,14 @@ | |||
18 | 18 | ||
19 | static bd_t bd; | 19 | static bd_t bd; |
20 | 20 | ||
21 | static void warp_fixup_one_nor(u32 from, u32 to) | ||
22 | { | ||
23 | void *devp; | ||
24 | char name[50]; | ||
25 | u32 v[2]; | ||
26 | |||
27 | sprintf(name, "/plb/opb/ebc/nor_flash@0,0/partition@%x", from); | ||
28 | |||
29 | devp = finddevice(name); | ||
30 | if (!devp) | ||
31 | return; | ||
32 | |||
33 | if (getprop(devp, "reg", v, sizeof(v)) == sizeof(v)) { | ||
34 | v[0] = to; | ||
35 | setprop(devp, "reg", v, sizeof(v)); | ||
36 | |||
37 | printf("NOR 64M fixup %x -> %x\r\n", from, to); | ||
38 | } | ||
39 | } | ||
40 | |||
41 | |||
42 | static void warp_fixups(void) | 21 | static void warp_fixups(void) |
43 | { | 22 | { |
44 | ibm440ep_fixup_clocks(66000000, 11059200, 50000000); | 23 | ibm440ep_fixup_clocks(66000000, 11059200, 50000000); |
45 | ibm4xx_sdram_fixup_memsize(); | 24 | ibm4xx_sdram_fixup_memsize(); |
46 | ibm4xx_fixup_ebc_ranges("/plb/opb/ebc"); | 25 | ibm4xx_fixup_ebc_ranges("/plb/opb/ebc"); |
47 | dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr); | 26 | dt_fixup_mac_address_by_alias("ethernet0", bd.bi_enetaddr); |
48 | |||
49 | /* Fixup for 64M flash on Rev A boards. */ | ||
50 | if (bd.bi_flashsize == 0x4000000) { | ||
51 | void *devp; | ||
52 | u32 v[3]; | ||
53 | |||
54 | devp = finddevice("/plb/opb/ebc/nor_flash@0,0"); | ||
55 | if (!devp) | ||
56 | return; | ||
57 | |||
58 | /* Fixup the size */ | ||
59 | if (getprop(devp, "reg", v, sizeof(v)) == sizeof(v)) { | ||
60 | v[2] = bd.bi_flashsize; | ||
61 | setprop(devp, "reg", v, sizeof(v)); | ||
62 | } | ||
63 | |||
64 | /* Fixup parition offsets */ | ||
65 | warp_fixup_one_nor(0x300000, 0x3f00000); | ||
66 | warp_fixup_one_nor(0x340000, 0x3f40000); | ||
67 | warp_fixup_one_nor(0x380000, 0x3f80000); | ||
68 | } | ||
69 | } | 27 | } |
70 | 28 | ||
71 | |||
72 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, | 29 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, |
73 | unsigned long r6, unsigned long r7) | 30 | unsigned long r6, unsigned long r7) |
74 | { | 31 | { |
diff --git a/arch/powerpc/boot/dts/haleakala.dts b/arch/powerpc/boot/dts/haleakala.dts index 513bc43a71af..5b2a4947bf82 100644 --- a/arch/powerpc/boot/dts/haleakala.dts +++ b/arch/powerpc/boot/dts/haleakala.dts | |||
@@ -89,8 +89,11 @@ | |||
89 | clock-frequency = <0>; /* Filled in by U-Boot */ | 89 | clock-frequency = <0>; /* Filled in by U-Boot */ |
90 | 90 | ||
91 | SDRAM0: memory-controller { | 91 | SDRAM0: memory-controller { |
92 | compatible = "ibm,sdram-405exr"; | 92 | compatible = "ibm,sdram-405exr", "ibm,sdram-4xx-ddr2"; |
93 | dcr-reg = <0x010 0x002>; | 93 | dcr-reg = <0x010 0x002>; |
94 | interrupt-parent = <&UIC2>; | ||
95 | interrupts = <0x5 0x4 /* ECC DED Error */ | ||
96 | 0x6 0x4>; /* ECC SEC Error */ | ||
94 | }; | 97 | }; |
95 | 98 | ||
96 | MAL0: mcmal { | 99 | MAL0: mcmal { |
diff --git a/arch/powerpc/boot/dts/kilauea.dts b/arch/powerpc/boot/dts/kilauea.dts index dececc4b5ff2..2804444812e5 100644 --- a/arch/powerpc/boot/dts/kilauea.dts +++ b/arch/powerpc/boot/dts/kilauea.dts | |||
@@ -90,8 +90,11 @@ | |||
90 | clock-frequency = <0>; /* Filled in by U-Boot */ | 90 | clock-frequency = <0>; /* Filled in by U-Boot */ |
91 | 91 | ||
92 | SDRAM0: memory-controller { | 92 | SDRAM0: memory-controller { |
93 | compatible = "ibm,sdram-405ex"; | 93 | compatible = "ibm,sdram-405ex", "ibm,sdram-4xx-ddr2"; |
94 | dcr-reg = <0x010 0x002>; | 94 | dcr-reg = <0x010 0x002>; |
95 | interrupt-parent = <&UIC2>; | ||
96 | interrupts = <0x5 0x4 /* ECC DED Error */ | ||
97 | 0x6 0x4>; /* ECC SEC Error */ | ||
95 | }; | 98 | }; |
96 | 99 | ||
97 | MAL0: mcmal { | 100 | MAL0: mcmal { |
diff --git a/arch/powerpc/boot/dts/makalu.dts b/arch/powerpc/boot/dts/makalu.dts index 945508c7e7d8..ffc246e72670 100644 --- a/arch/powerpc/boot/dts/makalu.dts +++ b/arch/powerpc/boot/dts/makalu.dts | |||
@@ -90,8 +90,11 @@ | |||
90 | clock-frequency = <0>; /* Filled in by U-Boot */ | 90 | clock-frequency = <0>; /* Filled in by U-Boot */ |
91 | 91 | ||
92 | SDRAM0: memory-controller { | 92 | SDRAM0: memory-controller { |
93 | compatible = "ibm,sdram-405ex"; | 93 | compatible = "ibm,sdram-405ex", "ibm,sdram-4xx-ddr2"; |
94 | dcr-reg = <0x010 0x002>; | 94 | dcr-reg = <0x010 0x002>; |
95 | interrupt-parent = <&UIC2>; | ||
96 | interrupts = <0x5 0x4 /* ECC DED Error */ | ||
97 | 0x6 0x4 /* ECC SEC Error */ >; | ||
95 | }; | 98 | }; |
96 | 99 | ||
97 | MAL0: mcmal { | 100 | MAL0: mcmal { |
diff --git a/arch/powerpc/boot/dts/mpc8313erdb.dts b/arch/powerpc/boot/dts/mpc8313erdb.dts index d4df8b6857a4..909a89cab9ac 100644 --- a/arch/powerpc/boot/dts/mpc8313erdb.dts +++ b/arch/powerpc/boot/dts/mpc8313erdb.dts | |||
@@ -185,7 +185,7 @@ | |||
185 | cell-index = <0>; | 185 | cell-index = <0>; |
186 | device_type = "network"; | 186 | device_type = "network"; |
187 | model = "eTSEC"; | 187 | model = "eTSEC"; |
188 | compatible = "gianfar", "simple-bus"; | 188 | compatible = "gianfar"; |
189 | reg = <0x24000 0x1000>; | 189 | reg = <0x24000 0x1000>; |
190 | local-mac-address = [ 00 00 00 00 00 00 ]; | 190 | local-mac-address = [ 00 00 00 00 00 00 ]; |
191 | interrupts = <37 0x8 36 0x8 35 0x8>; | 191 | interrupts = <37 0x8 36 0x8 35 0x8>; |
diff --git a/arch/powerpc/boot/dts/mpc8572ds.dts b/arch/powerpc/boot/dts/mpc8572ds.dts index 3dcc001b8ed3..359c3b727420 100644 --- a/arch/powerpc/boot/dts/mpc8572ds.dts +++ b/arch/powerpc/boot/dts/mpc8572ds.dts | |||
@@ -89,7 +89,7 @@ | |||
89 | 89 | ||
90 | ramdisk@0 { | 90 | ramdisk@0 { |
91 | reg = <0x0 0x03000000>; | 91 | reg = <0x0 0x03000000>; |
92 | readl-only; | 92 | read-only; |
93 | }; | 93 | }; |
94 | 94 | ||
95 | diagnostic@3000000 { | 95 | diagnostic@3000000 { |
diff --git a/arch/powerpc/boot/dts/warp.dts b/arch/powerpc/boot/dts/warp.dts index f4e4ba69eef7..7e183ff9a317 100644 --- a/arch/powerpc/boot/dts/warp.dts +++ b/arch/powerpc/boot/dts/warp.dts | |||
@@ -149,12 +149,17 @@ | |||
149 | reg = <0x00000002 0x00004000 0x00000A00>; | 149 | reg = <0x00000002 0x00004000 0x00000A00>; |
150 | }; | 150 | }; |
151 | 151 | ||
152 | nor_flash@0,0 { | 152 | nor@0,0 { |
153 | compatible = "amd,s29gl032a", "cfi-flash"; | 153 | compatible = "amd,s29gl032a", "cfi-flash"; |
154 | bank-width = <2>; | 154 | bank-width = <2>; |
155 | reg = <0x00000000 0x00000000 0x00400000>; | 155 | reg = <0x00000000 0x00000000 0x00400000>; |
156 | #address-cells = <1>; | 156 | #address-cells = <1>; |
157 | #size-cells = <1>; | 157 | #size-cells = <1>; |
158 | |||
159 | partition@0 { | ||
160 | label = "splash"; | ||
161 | reg = <0x00000000 0x00020000>; | ||
162 | }; | ||
158 | partition@300000 { | 163 | partition@300000 { |
159 | label = "fpga"; | 164 | label = "fpga"; |
160 | reg = <0x0300000 0x00040000>; | 165 | reg = <0x0300000 0x00040000>; |
@@ -168,6 +173,41 @@ | |||
168 | reg = <0x0380000 0x00080000>; | 173 | reg = <0x0380000 0x00080000>; |
169 | }; | 174 | }; |
170 | }; | 175 | }; |
176 | |||
177 | ndfc@1,0 { | ||
178 | compatible = "ibm,ndfc"; | ||
179 | reg = <0x00000001 0x00000000 0x00002000>; | ||
180 | ccr = <0x00001000>; | ||
181 | bank-settings = <0x80002222>; | ||
182 | #address-cells = <1>; | ||
183 | #size-cells = <1>; | ||
184 | |||
185 | nand { | ||
186 | #address-cells = <1>; | ||
187 | #size-cells = <1>; | ||
188 | |||
189 | partition@0 { | ||
190 | label = "kernel"; | ||
191 | reg = <0x00000000 0x00200000>; | ||
192 | }; | ||
193 | partition@200000 { | ||
194 | label = "root"; | ||
195 | reg = <0x00200000 0x03E00000>; | ||
196 | }; | ||
197 | partition@40000000 { | ||
198 | label = "persistent"; | ||
199 | reg = <0x04000000 0x04000000>; | ||
200 | }; | ||
201 | partition@80000000 { | ||
202 | label = "persistent1"; | ||
203 | reg = <0x08000000 0x04000000>; | ||
204 | }; | ||
205 | partition@C0000000 { | ||
206 | label = "persistent2"; | ||
207 | reg = <0x0C000000 0x04000000>; | ||
208 | }; | ||
209 | }; | ||
210 | }; | ||
171 | }; | 211 | }; |
172 | 212 | ||
173 | UART0: serial@ef600300 { | 213 | UART0: serial@ef600300 { |
diff --git a/arch/powerpc/configs/40x/acadia_defconfig b/arch/powerpc/configs/40x/acadia_defconfig index 25572cc837ca..a32ec8d323a0 100644 --- a/arch/powerpc/configs/40x/acadia_defconfig +++ b/arch/powerpc/configs/40x/acadia_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:18 2008 | 4 | # Tue Jan 20 08:17:46 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=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_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 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 | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
156 | 158 | ||
@@ -182,6 +184,7 @@ CONFIG_405EZ=y | |||
182 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
183 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_SIMPLE_GPIO is not set | ||
185 | 188 | ||
186 | # | 189 | # |
187 | # Kernel options | 190 | # Kernel options |
@@ -205,6 +208,7 @@ CONFIG_BINFMT_ELF=y | |||
205 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_MATH_EMULATION is not set | 209 | # CONFIG_MATH_EMULATION is not set |
207 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
211 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -219,12 +223,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
219 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
221 | CONFIG_MIGRATION=y | 225 | CONFIG_MIGRATION=y |
222 | # CONFIG_RESOURCES_64BIT is not set | ||
223 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
224 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
225 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
226 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
227 | CONFIG_UNEVICTABLE_LRU=y | 230 | CONFIG_UNEVICTABLE_LRU=y |
231 | CONFIG_PPC_4K_PAGES=y | ||
232 | # CONFIG_PPC_16K_PAGES is not set | ||
233 | # CONFIG_PPC_64K_PAGES is not set | ||
228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 234 | CONFIG_FORCE_MAX_ZONEORDER=11 |
229 | CONFIG_PROC_DEVICETREE=y | 235 | CONFIG_PROC_DEVICETREE=y |
230 | # CONFIG_CMDLINE_BOOL is not set | 236 | # CONFIG_CMDLINE_BOOL is not set |
@@ -248,6 +254,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
248 | # CONFIG_PCI_MSI is not set | 254 | # CONFIG_PCI_MSI is not set |
249 | CONFIG_PCI_LEGACY=y | 255 | CONFIG_PCI_LEGACY=y |
250 | # CONFIG_PCI_DEBUG is not set | 256 | # CONFIG_PCI_DEBUG is not set |
257 | # CONFIG_PCI_STUB is not set | ||
251 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
252 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
253 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -272,6 +279,7 @@ CONFIG_NET=y | |||
272 | # | 279 | # |
273 | # Networking options | 280 | # Networking options |
274 | # | 281 | # |
282 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 283 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 284 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 285 | CONFIG_UNIX=y |
@@ -322,6 +330,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
322 | # CONFIG_ECONET is not set | 330 | # CONFIG_ECONET is not set |
323 | # CONFIG_WAN_ROUTER is not set | 331 | # CONFIG_WAN_ROUTER is not set |
324 | # CONFIG_NET_SCHED is not set | 332 | # CONFIG_NET_SCHED is not set |
333 | # CONFIG_DCB is not set | ||
325 | 334 | ||
326 | # | 335 | # |
327 | # Network testing | 336 | # Network testing |
@@ -334,6 +343,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_AF_RXRPC is not set | 343 | # CONFIG_AF_RXRPC is not set |
335 | # CONFIG_PHONET is not set | 344 | # CONFIG_PHONET is not set |
336 | # CONFIG_WIRELESS is not set | 345 | # CONFIG_WIRELESS is not set |
346 | # CONFIG_WIMAX is not set | ||
337 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
338 | # CONFIG_NET_9P is not set | 348 | # CONFIG_NET_9P is not set |
339 | 349 | ||
@@ -359,6 +369,7 @@ CONFIG_MTD=y | |||
359 | # CONFIG_MTD_DEBUG is not set | 369 | # CONFIG_MTD_DEBUG is not set |
360 | # CONFIG_MTD_CONCAT is not set | 370 | # CONFIG_MTD_CONCAT is not set |
361 | CONFIG_MTD_PARTITIONS=y | 371 | CONFIG_MTD_PARTITIONS=y |
372 | # CONFIG_MTD_TESTS is not set | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 373 | # CONFIG_MTD_REDBOOT_PARTS is not set |
363 | CONFIG_MTD_CMDLINE_PARTS=y | 374 | CONFIG_MTD_CMDLINE_PARTS=y |
364 | CONFIG_MTD_OF_PARTS=y | 375 | CONFIG_MTD_OF_PARTS=y |
@@ -431,6 +442,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
431 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
432 | 443 | ||
433 | # | 444 | # |
445 | # LPDDR flash memory drivers | ||
446 | # | ||
447 | # CONFIG_MTD_LPDDR is not set | ||
448 | # CONFIG_MTD_QINFO_PROBE is not set | ||
449 | |||
450 | # | ||
434 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
435 | # | 452 | # |
436 | # CONFIG_MTD_UBI is not set | 453 | # CONFIG_MTD_UBI is not set |
@@ -524,6 +541,10 @@ CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR=y | |||
524 | # CONFIG_WLAN_PRE80211 is not set | 541 | # CONFIG_WLAN_PRE80211 is not set |
525 | # CONFIG_WLAN_80211 is not set | 542 | # CONFIG_WLAN_80211 is not set |
526 | # CONFIG_IWLWIFI_LEDS is not set | 543 | # CONFIG_IWLWIFI_LEDS is not set |
544 | |||
545 | # | ||
546 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
547 | # | ||
527 | # CONFIG_WAN is not set | 548 | # CONFIG_WAN is not set |
528 | # CONFIG_FDDI is not set | 549 | # CONFIG_FDDI is not set |
529 | # CONFIG_HIPPI is not set | 550 | # CONFIG_HIPPI is not set |
@@ -576,9 +597,12 @@ CONFIG_SERIAL_CORE=y | |||
576 | CONFIG_SERIAL_CORE_CONSOLE=y | 597 | CONFIG_SERIAL_CORE_CONSOLE=y |
577 | # CONFIG_SERIAL_JSM is not set | 598 | # CONFIG_SERIAL_JSM is not set |
578 | CONFIG_SERIAL_OF_PLATFORM=y | 599 | CONFIG_SERIAL_OF_PLATFORM=y |
600 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
579 | CONFIG_UNIX98_PTYS=y | 601 | CONFIG_UNIX98_PTYS=y |
602 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
580 | CONFIG_LEGACY_PTYS=y | 603 | CONFIG_LEGACY_PTYS=y |
581 | CONFIG_LEGACY_PTY_COUNT=256 | 604 | CONFIG_LEGACY_PTY_COUNT=256 |
605 | # CONFIG_HVC_UDBG is not set | ||
582 | # CONFIG_IPMI_HANDLER is not set | 606 | # CONFIG_IPMI_HANDLER is not set |
583 | # CONFIG_HW_RANDOM is not set | 607 | # CONFIG_HW_RANDOM is not set |
584 | # CONFIG_NVRAM is not set | 608 | # CONFIG_NVRAM is not set |
@@ -597,11 +621,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
597 | # CONFIG_HWMON is not set | 621 | # CONFIG_HWMON is not set |
598 | CONFIG_THERMAL=y | 622 | CONFIG_THERMAL=y |
599 | # CONFIG_WATCHDOG is not set | 623 | # CONFIG_WATCHDOG is not set |
624 | CONFIG_SSB_POSSIBLE=y | ||
600 | 625 | ||
601 | # | 626 | # |
602 | # Sonics Silicon Backplane | 627 | # Sonics Silicon Backplane |
603 | # | 628 | # |
604 | CONFIG_SSB_POSSIBLE=y | ||
605 | # CONFIG_SSB is not set | 629 | # CONFIG_SSB is not set |
606 | 630 | ||
607 | # | 631 | # |
@@ -611,7 +635,7 @@ CONFIG_SSB_POSSIBLE=y | |||
611 | # CONFIG_MFD_SM501 is not set | 635 | # CONFIG_MFD_SM501 is not set |
612 | # CONFIG_HTC_PASIC3 is not set | 636 | # CONFIG_HTC_PASIC3 is not set |
613 | # CONFIG_MFD_TMIO is not set | 637 | # CONFIG_MFD_TMIO is not set |
614 | # CONFIG_MFD_WM8400 is not set | 638 | # CONFIG_REGULATOR is not set |
615 | 639 | ||
616 | # | 640 | # |
617 | # Multimedia devices | 641 | # Multimedia devices |
@@ -670,7 +694,9 @@ CONFIG_EXT2_FS=y | |||
670 | # CONFIG_FS_POSIX_ACL is not set | 694 | # CONFIG_FS_POSIX_ACL is not set |
671 | CONFIG_FILE_LOCKING=y | 695 | CONFIG_FILE_LOCKING=y |
672 | # CONFIG_XFS_FS is not set | 696 | # CONFIG_XFS_FS is not set |
697 | # CONFIG_GFS2_FS is not set | ||
673 | # CONFIG_OCFS2_FS is not set | 698 | # CONFIG_OCFS2_FS is not set |
699 | # CONFIG_BTRFS_FS is not set | ||
674 | CONFIG_DNOTIFY=y | 700 | CONFIG_DNOTIFY=y |
675 | CONFIG_INOTIFY=y | 701 | CONFIG_INOTIFY=y |
676 | CONFIG_INOTIFY_USER=y | 702 | CONFIG_INOTIFY_USER=y |
@@ -704,10 +730,7 @@ CONFIG_TMPFS=y | |||
704 | # CONFIG_TMPFS_POSIX_ACL is not set | 730 | # CONFIG_TMPFS_POSIX_ACL is not set |
705 | # CONFIG_HUGETLB_PAGE is not set | 731 | # CONFIG_HUGETLB_PAGE is not set |
706 | # CONFIG_CONFIGFS_FS is not set | 732 | # CONFIG_CONFIGFS_FS is not set |
707 | 733 | CONFIG_MISC_FILESYSTEMS=y | |
708 | # | ||
709 | # Miscellaneous filesystems | ||
710 | # | ||
711 | # CONFIG_ADFS_FS is not set | 734 | # CONFIG_ADFS_FS is not set |
712 | # CONFIG_AFFS_FS is not set | 735 | # CONFIG_AFFS_FS is not set |
713 | # CONFIG_HFS_FS is not set | 736 | # CONFIG_HFS_FS is not set |
@@ -717,6 +740,7 @@ CONFIG_TMPFS=y | |||
717 | # CONFIG_EFS_FS is not set | 740 | # CONFIG_EFS_FS is not set |
718 | # CONFIG_JFFS2_FS is not set | 741 | # CONFIG_JFFS2_FS is not set |
719 | CONFIG_CRAMFS=y | 742 | CONFIG_CRAMFS=y |
743 | # CONFIG_SQUASHFS is not set | ||
720 | # CONFIG_VXFS_FS is not set | 744 | # CONFIG_VXFS_FS is not set |
721 | # CONFIG_MINIX_FS is not set | 745 | # CONFIG_MINIX_FS is not set |
722 | # CONFIG_OMFS_FS is not set | 746 | # CONFIG_OMFS_FS is not set |
@@ -757,6 +781,7 @@ CONFIG_MSDOS_PARTITION=y | |||
757 | # Library routines | 781 | # Library routines |
758 | # | 782 | # |
759 | CONFIG_BITREVERSE=y | 783 | CONFIG_BITREVERSE=y |
784 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
760 | # CONFIG_CRC_CCITT is not set | 785 | # CONFIG_CRC_CCITT is not set |
761 | # CONFIG_CRC16 is not set | 786 | # CONFIG_CRC16 is not set |
762 | # CONFIG_CRC_T10DIF is not set | 787 | # CONFIG_CRC_T10DIF is not set |
@@ -807,6 +832,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
807 | # CONFIG_DEBUG_MEMORY_INIT is not set | 832 | # CONFIG_DEBUG_MEMORY_INIT is not set |
808 | # CONFIG_DEBUG_LIST is not set | 833 | # CONFIG_DEBUG_LIST is not set |
809 | # CONFIG_DEBUG_SG is not set | 834 | # CONFIG_DEBUG_SG is not set |
835 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
810 | # CONFIG_BOOT_PRINTK_DELAY is not set | 836 | # CONFIG_BOOT_PRINTK_DELAY is not set |
811 | # CONFIG_RCU_TORTURE_TEST is not set | 837 | # CONFIG_RCU_TORTURE_TEST is not set |
812 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 838 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -815,18 +841,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
815 | # CONFIG_FAULT_INJECTION is not set | 841 | # CONFIG_FAULT_INJECTION is not set |
816 | # CONFIG_LATENCYTOP is not set | 842 | # CONFIG_LATENCYTOP is not set |
817 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 843 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
818 | CONFIG_NOP_TRACER=y | 844 | CONFIG_HAVE_FUNCTION_TRACER=y |
819 | CONFIG_HAVE_FTRACE=y | ||
820 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 845 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
821 | # CONFIG_FTRACE is not set | 846 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
847 | |||
848 | # | ||
849 | # Tracers | ||
850 | # | ||
851 | # CONFIG_FUNCTION_TRACER is not set | ||
822 | # CONFIG_SCHED_TRACER is not set | 852 | # CONFIG_SCHED_TRACER is not set |
823 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 853 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
824 | # CONFIG_BOOT_TRACER is not set | 854 | # CONFIG_BOOT_TRACER is not set |
855 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
825 | # CONFIG_STACK_TRACER is not set | 856 | # CONFIG_STACK_TRACER is not set |
826 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 857 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
827 | # CONFIG_SAMPLES is not set | 858 | # CONFIG_SAMPLES is not set |
828 | CONFIG_HAVE_ARCH_KGDB=y | 859 | CONFIG_HAVE_ARCH_KGDB=y |
829 | # CONFIG_KGDB is not set | 860 | # CONFIG_KGDB is not set |
861 | CONFIG_PRINT_STACK_DEPTH=64 | ||
830 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 862 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
831 | # CONFIG_DEBUG_STACK_USAGE is not set | 863 | # CONFIG_DEBUG_STACK_USAGE is not set |
832 | # CONFIG_DEBUG_PAGEALLOC is not set | 864 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -853,11 +885,15 @@ CONFIG_CRYPTO=y | |||
853 | # | 885 | # |
854 | # CONFIG_CRYPTO_FIPS is not set | 886 | # CONFIG_CRYPTO_FIPS is not set |
855 | CONFIG_CRYPTO_ALGAPI=y | 887 | CONFIG_CRYPTO_ALGAPI=y |
856 | CONFIG_CRYPTO_AEAD=y | 888 | CONFIG_CRYPTO_ALGAPI2=y |
889 | CONFIG_CRYPTO_AEAD2=y | ||
857 | CONFIG_CRYPTO_BLKCIPHER=y | 890 | CONFIG_CRYPTO_BLKCIPHER=y |
891 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
858 | CONFIG_CRYPTO_HASH=y | 892 | CONFIG_CRYPTO_HASH=y |
859 | CONFIG_CRYPTO_RNG=y | 893 | CONFIG_CRYPTO_HASH2=y |
894 | CONFIG_CRYPTO_RNG2=y | ||
860 | CONFIG_CRYPTO_MANAGER=y | 895 | CONFIG_CRYPTO_MANAGER=y |
896 | CONFIG_CRYPTO_MANAGER2=y | ||
861 | # CONFIG_CRYPTO_GF128MUL is not set | 897 | # CONFIG_CRYPTO_GF128MUL is not set |
862 | # CONFIG_CRYPTO_NULL is not set | 898 | # CONFIG_CRYPTO_NULL is not set |
863 | # CONFIG_CRYPTO_CRYPTD is not set | 899 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/ep405_defconfig b/arch/powerpc/configs/40x/ep405_defconfig index b80ba7aa3129..4e9d85f39da0 100644 --- a/arch/powerpc/configs/40x/ep405_defconfig +++ b/arch/powerpc/configs/40x/ep405_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:20 2008 | 4 | # Tue Jan 20 08:17:48 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=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_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
156 | 158 | ||
@@ -184,6 +186,7 @@ CONFIG_IBM405_ERR51=y | |||
184 | # CONFIG_GENERIC_IOMAP is not set | 186 | # CONFIG_GENERIC_IOMAP is not set |
185 | # CONFIG_CPU_FREQ is not set | 187 | # CONFIG_CPU_FREQ is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
189 | # CONFIG_SIMPLE_GPIO is not set | ||
187 | 190 | ||
188 | # | 191 | # |
189 | # Kernel options | 192 | # Kernel options |
@@ -207,6 +210,7 @@ CONFIG_BINFMT_ELF=y | |||
207 | # CONFIG_BINFMT_MISC is not set | 210 | # CONFIG_BINFMT_MISC is not set |
208 | # CONFIG_MATH_EMULATION is not set | 211 | # CONFIG_MATH_EMULATION is not set |
209 | # CONFIG_IOMMU_HELPER is not set | 212 | # CONFIG_IOMMU_HELPER is not set |
213 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
211 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 215 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
212 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 216 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -221,12 +225,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
221 | CONFIG_PAGEFLAGS_EXTENDED=y | 225 | CONFIG_PAGEFLAGS_EXTENDED=y |
222 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
223 | CONFIG_MIGRATION=y | 227 | CONFIG_MIGRATION=y |
224 | # CONFIG_RESOURCES_64BIT is not set | ||
225 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 228 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
226 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
227 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
228 | CONFIG_VIRT_TO_BUS=y | 231 | CONFIG_VIRT_TO_BUS=y |
229 | CONFIG_UNEVICTABLE_LRU=y | 232 | CONFIG_UNEVICTABLE_LRU=y |
233 | CONFIG_PPC_4K_PAGES=y | ||
234 | # CONFIG_PPC_16K_PAGES is not set | ||
235 | # CONFIG_PPC_64K_PAGES is not set | ||
230 | CONFIG_FORCE_MAX_ZONEORDER=11 | 236 | CONFIG_FORCE_MAX_ZONEORDER=11 |
231 | CONFIG_PROC_DEVICETREE=y | 237 | CONFIG_PROC_DEVICETREE=y |
232 | # CONFIG_CMDLINE_BOOL is not set | 238 | # CONFIG_CMDLINE_BOOL is not set |
@@ -250,6 +256,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
250 | # CONFIG_PCI_MSI is not set | 256 | # CONFIG_PCI_MSI is not set |
251 | CONFIG_PCI_LEGACY=y | 257 | CONFIG_PCI_LEGACY=y |
252 | # CONFIG_PCI_DEBUG is not set | 258 | # CONFIG_PCI_DEBUG is not set |
259 | # CONFIG_PCI_STUB is not set | ||
253 | # CONFIG_PCCARD is not set | 260 | # CONFIG_PCCARD is not set |
254 | # CONFIG_HOTPLUG_PCI is not set | 261 | # CONFIG_HOTPLUG_PCI is not set |
255 | # CONFIG_HAS_RAPIDIO is not set | 262 | # CONFIG_HAS_RAPIDIO is not set |
@@ -274,6 +281,7 @@ CONFIG_NET=y | |||
274 | # | 281 | # |
275 | # Networking options | 282 | # Networking options |
276 | # | 283 | # |
284 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
277 | CONFIG_PACKET=y | 285 | CONFIG_PACKET=y |
278 | # CONFIG_PACKET_MMAP is not set | 286 | # CONFIG_PACKET_MMAP is not set |
279 | CONFIG_UNIX=y | 287 | CONFIG_UNIX=y |
@@ -324,6 +332,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
324 | # CONFIG_ECONET is not set | 332 | # CONFIG_ECONET is not set |
325 | # CONFIG_WAN_ROUTER is not set | 333 | # CONFIG_WAN_ROUTER is not set |
326 | # CONFIG_NET_SCHED is not set | 334 | # CONFIG_NET_SCHED is not set |
335 | # CONFIG_DCB is not set | ||
327 | 336 | ||
328 | # | 337 | # |
329 | # Network testing | 338 | # Network testing |
@@ -336,6 +345,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
336 | # CONFIG_AF_RXRPC is not set | 345 | # CONFIG_AF_RXRPC is not set |
337 | # CONFIG_PHONET is not set | 346 | # CONFIG_PHONET is not set |
338 | # CONFIG_WIRELESS is not set | 347 | # CONFIG_WIRELESS is not set |
348 | # CONFIG_WIMAX is not set | ||
339 | # CONFIG_RFKILL is not set | 349 | # CONFIG_RFKILL is not set |
340 | # CONFIG_NET_9P is not set | 350 | # CONFIG_NET_9P is not set |
341 | 351 | ||
@@ -361,6 +371,7 @@ CONFIG_MTD=y | |||
361 | # CONFIG_MTD_DEBUG is not set | 371 | # CONFIG_MTD_DEBUG is not set |
362 | # CONFIG_MTD_CONCAT is not set | 372 | # CONFIG_MTD_CONCAT is not set |
363 | CONFIG_MTD_PARTITIONS=y | 373 | CONFIG_MTD_PARTITIONS=y |
374 | # CONFIG_MTD_TESTS is not set | ||
364 | # CONFIG_MTD_REDBOOT_PARTS is not set | 375 | # CONFIG_MTD_REDBOOT_PARTS is not set |
365 | CONFIG_MTD_CMDLINE_PARTS=y | 376 | CONFIG_MTD_CMDLINE_PARTS=y |
366 | CONFIG_MTD_OF_PARTS=y | 377 | CONFIG_MTD_OF_PARTS=y |
@@ -433,6 +444,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
433 | # CONFIG_MTD_ONENAND is not set | 444 | # CONFIG_MTD_ONENAND is not set |
434 | 445 | ||
435 | # | 446 | # |
447 | # LPDDR flash memory drivers | ||
448 | # | ||
449 | # CONFIG_MTD_LPDDR is not set | ||
450 | # CONFIG_MTD_QINFO_PROBE is not set | ||
451 | |||
452 | # | ||
436 | # UBI - Unsorted block images | 453 | # UBI - Unsorted block images |
437 | # | 454 | # |
438 | # CONFIG_MTD_UBI is not set | 455 | # CONFIG_MTD_UBI is not set |
@@ -464,6 +481,7 @@ CONFIG_MISC_DEVICES=y | |||
464 | # CONFIG_TIFM_CORE is not set | 481 | # CONFIG_TIFM_CORE is not set |
465 | # CONFIG_ENCLOSURE_SERVICES is not set | 482 | # CONFIG_ENCLOSURE_SERVICES is not set |
466 | # CONFIG_HP_ILO is not set | 483 | # CONFIG_HP_ILO is not set |
484 | # CONFIG_C2PORT is not set | ||
467 | CONFIG_HAVE_IDE=y | 485 | CONFIG_HAVE_IDE=y |
468 | # CONFIG_IDE is not set | 486 | # CONFIG_IDE is not set |
469 | 487 | ||
@@ -546,6 +564,7 @@ CONFIG_NETDEV_1000=y | |||
546 | # CONFIG_JME is not set | 564 | # CONFIG_JME is not set |
547 | CONFIG_NETDEV_10000=y | 565 | CONFIG_NETDEV_10000=y |
548 | # CONFIG_CHELSIO_T1 is not set | 566 | # CONFIG_CHELSIO_T1 is not set |
567 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
549 | # CONFIG_CHELSIO_T3 is not set | 568 | # CONFIG_CHELSIO_T3 is not set |
550 | # CONFIG_ENIC is not set | 569 | # CONFIG_ENIC is not set |
551 | # CONFIG_IXGBE is not set | 570 | # CONFIG_IXGBE is not set |
@@ -570,6 +589,10 @@ CONFIG_NETDEV_10000=y | |||
570 | # CONFIG_IWLWIFI_LEDS is not set | 589 | # CONFIG_IWLWIFI_LEDS is not set |
571 | 590 | ||
572 | # | 591 | # |
592 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
593 | # | ||
594 | |||
595 | # | ||
573 | # USB Network Adapters | 596 | # USB Network Adapters |
574 | # | 597 | # |
575 | # CONFIG_USB_CATC is not set | 598 | # CONFIG_USB_CATC is not set |
@@ -629,9 +652,12 @@ CONFIG_SERIAL_CORE=y | |||
629 | CONFIG_SERIAL_CORE_CONSOLE=y | 652 | CONFIG_SERIAL_CORE_CONSOLE=y |
630 | # CONFIG_SERIAL_JSM is not set | 653 | # CONFIG_SERIAL_JSM is not set |
631 | CONFIG_SERIAL_OF_PLATFORM=y | 654 | CONFIG_SERIAL_OF_PLATFORM=y |
655 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
632 | CONFIG_UNIX98_PTYS=y | 656 | CONFIG_UNIX98_PTYS=y |
657 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
633 | CONFIG_LEGACY_PTYS=y | 658 | CONFIG_LEGACY_PTYS=y |
634 | CONFIG_LEGACY_PTY_COUNT=256 | 659 | CONFIG_LEGACY_PTY_COUNT=256 |
660 | # CONFIG_HVC_UDBG is not set | ||
635 | # CONFIG_IPMI_HANDLER is not set | 661 | # CONFIG_IPMI_HANDLER is not set |
636 | # CONFIG_HW_RANDOM is not set | 662 | # CONFIG_HW_RANDOM is not set |
637 | # CONFIG_NVRAM is not set | 663 | # CONFIG_NVRAM is not set |
@@ -650,11 +676,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
650 | # CONFIG_HWMON is not set | 676 | # CONFIG_HWMON is not set |
651 | CONFIG_THERMAL=y | 677 | CONFIG_THERMAL=y |
652 | # CONFIG_WATCHDOG is not set | 678 | # CONFIG_WATCHDOG is not set |
679 | CONFIG_SSB_POSSIBLE=y | ||
653 | 680 | ||
654 | # | 681 | # |
655 | # Sonics Silicon Backplane | 682 | # Sonics Silicon Backplane |
656 | # | 683 | # |
657 | CONFIG_SSB_POSSIBLE=y | ||
658 | # CONFIG_SSB is not set | 684 | # CONFIG_SSB is not set |
659 | 685 | ||
660 | # | 686 | # |
@@ -664,7 +690,7 @@ CONFIG_SSB_POSSIBLE=y | |||
664 | # CONFIG_MFD_SM501 is not set | 690 | # CONFIG_MFD_SM501 is not set |
665 | # CONFIG_HTC_PASIC3 is not set | 691 | # CONFIG_HTC_PASIC3 is not set |
666 | # CONFIG_MFD_TMIO is not set | 692 | # CONFIG_MFD_TMIO is not set |
667 | # CONFIG_MFD_WM8400 is not set | 693 | # CONFIG_REGULATOR is not set |
668 | 694 | ||
669 | # | 695 | # |
670 | # Multimedia devices | 696 | # Multimedia devices |
@@ -723,6 +749,7 @@ CONFIG_USB_MON=y | |||
723 | # | 749 | # |
724 | # CONFIG_USB_C67X00_HCD is not set | 750 | # CONFIG_USB_C67X00_HCD is not set |
725 | # CONFIG_USB_EHCI_HCD is not set | 751 | # CONFIG_USB_EHCI_HCD is not set |
752 | # CONFIG_USB_OXU210HP_HCD is not set | ||
726 | # CONFIG_USB_ISP116X_HCD is not set | 753 | # CONFIG_USB_ISP116X_HCD is not set |
727 | # CONFIG_USB_ISP1760_HCD is not set | 754 | # CONFIG_USB_ISP1760_HCD is not set |
728 | CONFIG_USB_OHCI_HCD=y | 755 | CONFIG_USB_OHCI_HCD=y |
@@ -748,11 +775,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
748 | # CONFIG_USB_TMC is not set | 775 | # CONFIG_USB_TMC is not set |
749 | 776 | ||
750 | # | 777 | # |
751 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 778 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
752 | # | 779 | # |
753 | 780 | ||
754 | # | 781 | # |
755 | # may also be needed; see USB_STORAGE Help for more information | 782 | # see USB_STORAGE Help for more information |
756 | # | 783 | # |
757 | # CONFIG_USB_LIBUSUAL is not set | 784 | # CONFIG_USB_LIBUSUAL is not set |
758 | 785 | ||
@@ -791,6 +818,10 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
791 | # CONFIG_USB_ISIGHTFW is not set | 818 | # CONFIG_USB_ISIGHTFW is not set |
792 | # CONFIG_USB_VST is not set | 819 | # CONFIG_USB_VST is not set |
793 | # CONFIG_USB_GADGET is not set | 820 | # CONFIG_USB_GADGET is not set |
821 | |||
822 | # | ||
823 | # OTG and related infrastructure | ||
824 | # | ||
794 | # CONFIG_UWB is not set | 825 | # CONFIG_UWB is not set |
795 | # CONFIG_MMC is not set | 826 | # CONFIG_MMC is not set |
796 | # CONFIG_MEMSTICK is not set | 827 | # CONFIG_MEMSTICK is not set |
@@ -816,7 +847,9 @@ CONFIG_EXT2_FS=y | |||
816 | # CONFIG_FS_POSIX_ACL is not set | 847 | # CONFIG_FS_POSIX_ACL is not set |
817 | CONFIG_FILE_LOCKING=y | 848 | CONFIG_FILE_LOCKING=y |
818 | # CONFIG_XFS_FS is not set | 849 | # CONFIG_XFS_FS is not set |
850 | # CONFIG_GFS2_FS is not set | ||
819 | # CONFIG_OCFS2_FS is not set | 851 | # CONFIG_OCFS2_FS is not set |
852 | # CONFIG_BTRFS_FS is not set | ||
820 | CONFIG_DNOTIFY=y | 853 | CONFIG_DNOTIFY=y |
821 | CONFIG_INOTIFY=y | 854 | CONFIG_INOTIFY=y |
822 | CONFIG_INOTIFY_USER=y | 855 | CONFIG_INOTIFY_USER=y |
@@ -850,10 +883,7 @@ CONFIG_TMPFS=y | |||
850 | # CONFIG_TMPFS_POSIX_ACL is not set | 883 | # CONFIG_TMPFS_POSIX_ACL is not set |
851 | # CONFIG_HUGETLB_PAGE is not set | 884 | # CONFIG_HUGETLB_PAGE is not set |
852 | # CONFIG_CONFIGFS_FS is not set | 885 | # CONFIG_CONFIGFS_FS is not set |
853 | 886 | CONFIG_MISC_FILESYSTEMS=y | |
854 | # | ||
855 | # Miscellaneous filesystems | ||
856 | # | ||
857 | # CONFIG_ADFS_FS is not set | 887 | # CONFIG_ADFS_FS is not set |
858 | # CONFIG_AFFS_FS is not set | 888 | # CONFIG_AFFS_FS is not set |
859 | # CONFIG_HFS_FS is not set | 889 | # CONFIG_HFS_FS is not set |
@@ -863,6 +893,7 @@ CONFIG_TMPFS=y | |||
863 | # CONFIG_EFS_FS is not set | 893 | # CONFIG_EFS_FS is not set |
864 | # CONFIG_JFFS2_FS is not set | 894 | # CONFIG_JFFS2_FS is not set |
865 | CONFIG_CRAMFS=y | 895 | CONFIG_CRAMFS=y |
896 | # CONFIG_SQUASHFS is not set | ||
866 | # CONFIG_VXFS_FS is not set | 897 | # CONFIG_VXFS_FS is not set |
867 | # CONFIG_MINIX_FS is not set | 898 | # CONFIG_MINIX_FS is not set |
868 | # CONFIG_OMFS_FS is not set | 899 | # CONFIG_OMFS_FS is not set |
@@ -903,6 +934,7 @@ CONFIG_MSDOS_PARTITION=y | |||
903 | # Library routines | 934 | # Library routines |
904 | # | 935 | # |
905 | CONFIG_BITREVERSE=y | 936 | CONFIG_BITREVERSE=y |
937 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
906 | # CONFIG_CRC_CCITT is not set | 938 | # CONFIG_CRC_CCITT is not set |
907 | # CONFIG_CRC16 is not set | 939 | # CONFIG_CRC16 is not set |
908 | # CONFIG_CRC_T10DIF is not set | 940 | # CONFIG_CRC_T10DIF is not set |
@@ -953,6 +985,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
953 | # CONFIG_DEBUG_MEMORY_INIT is not set | 985 | # CONFIG_DEBUG_MEMORY_INIT is not set |
954 | # CONFIG_DEBUG_LIST is not set | 986 | # CONFIG_DEBUG_LIST is not set |
955 | # CONFIG_DEBUG_SG is not set | 987 | # CONFIG_DEBUG_SG is not set |
988 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
956 | # CONFIG_BOOT_PRINTK_DELAY is not set | 989 | # CONFIG_BOOT_PRINTK_DELAY is not set |
957 | # CONFIG_RCU_TORTURE_TEST is not set | 990 | # CONFIG_RCU_TORTURE_TEST is not set |
958 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 991 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -961,18 +994,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
961 | # CONFIG_FAULT_INJECTION is not set | 994 | # CONFIG_FAULT_INJECTION is not set |
962 | # CONFIG_LATENCYTOP is not set | 995 | # CONFIG_LATENCYTOP is not set |
963 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 996 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
964 | CONFIG_NOP_TRACER=y | 997 | CONFIG_HAVE_FUNCTION_TRACER=y |
965 | CONFIG_HAVE_FTRACE=y | ||
966 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 998 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
967 | # CONFIG_FTRACE is not set | 999 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1000 | |||
1001 | # | ||
1002 | # Tracers | ||
1003 | # | ||
1004 | # CONFIG_FUNCTION_TRACER is not set | ||
968 | # CONFIG_SCHED_TRACER is not set | 1005 | # CONFIG_SCHED_TRACER is not set |
969 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1006 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
970 | # CONFIG_BOOT_TRACER is not set | 1007 | # CONFIG_BOOT_TRACER is not set |
1008 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
971 | # CONFIG_STACK_TRACER is not set | 1009 | # CONFIG_STACK_TRACER is not set |
972 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1010 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
973 | # CONFIG_SAMPLES is not set | 1011 | # CONFIG_SAMPLES is not set |
974 | CONFIG_HAVE_ARCH_KGDB=y | 1012 | CONFIG_HAVE_ARCH_KGDB=y |
975 | # CONFIG_KGDB is not set | 1013 | # CONFIG_KGDB is not set |
1014 | CONFIG_PRINT_STACK_DEPTH=64 | ||
976 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1015 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
977 | # CONFIG_DEBUG_STACK_USAGE is not set | 1016 | # CONFIG_DEBUG_STACK_USAGE is not set |
978 | # CONFIG_DEBUG_PAGEALLOC is not set | 1017 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -999,11 +1038,15 @@ CONFIG_CRYPTO=y | |||
999 | # | 1038 | # |
1000 | # CONFIG_CRYPTO_FIPS is not set | 1039 | # CONFIG_CRYPTO_FIPS is not set |
1001 | CONFIG_CRYPTO_ALGAPI=y | 1040 | CONFIG_CRYPTO_ALGAPI=y |
1002 | CONFIG_CRYPTO_AEAD=y | 1041 | CONFIG_CRYPTO_ALGAPI2=y |
1042 | CONFIG_CRYPTO_AEAD2=y | ||
1003 | CONFIG_CRYPTO_BLKCIPHER=y | 1043 | CONFIG_CRYPTO_BLKCIPHER=y |
1044 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1004 | CONFIG_CRYPTO_HASH=y | 1045 | CONFIG_CRYPTO_HASH=y |
1005 | CONFIG_CRYPTO_RNG=y | 1046 | CONFIG_CRYPTO_HASH2=y |
1047 | CONFIG_CRYPTO_RNG2=y | ||
1006 | CONFIG_CRYPTO_MANAGER=y | 1048 | CONFIG_CRYPTO_MANAGER=y |
1049 | CONFIG_CRYPTO_MANAGER2=y | ||
1007 | # CONFIG_CRYPTO_GF128MUL is not set | 1050 | # CONFIG_CRYPTO_GF128MUL is not set |
1008 | # CONFIG_CRYPTO_NULL is not set | 1051 | # CONFIG_CRYPTO_NULL is not set |
1009 | # CONFIG_CRYPTO_CRYPTD is not set | 1052 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/hcu4_defconfig b/arch/powerpc/configs/40x/hcu4_defconfig index 45dcb824503f..8c019d79bf2a 100644 --- a/arch/powerpc/configs/40x/hcu4_defconfig +++ b/arch/powerpc/configs/40x/hcu4_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:22 2008 | 4 | # Tue Jan 20 08:17:50 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=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_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
156 | 158 | ||
@@ -182,6 +184,7 @@ CONFIG_405GPR=y | |||
182 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
183 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_SIMPLE_GPIO is not set | ||
185 | 188 | ||
186 | # | 189 | # |
187 | # Kernel options | 190 | # Kernel options |
@@ -205,6 +208,7 @@ CONFIG_BINFMT_ELF=y | |||
205 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_MATH_EMULATION is not set | 209 | # CONFIG_MATH_EMULATION is not set |
207 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
211 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -219,12 +223,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
219 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
221 | CONFIG_MIGRATION=y | 225 | CONFIG_MIGRATION=y |
222 | CONFIG_RESOURCES_64BIT=y | ||
223 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
224 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
225 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
226 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
227 | CONFIG_UNEVICTABLE_LRU=y | 230 | CONFIG_UNEVICTABLE_LRU=y |
231 | CONFIG_PPC_4K_PAGES=y | ||
232 | # CONFIG_PPC_16K_PAGES is not set | ||
233 | # CONFIG_PPC_64K_PAGES is not set | ||
228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 234 | CONFIG_FORCE_MAX_ZONEORDER=11 |
229 | CONFIG_PROC_DEVICETREE=y | 235 | CONFIG_PROC_DEVICETREE=y |
230 | # CONFIG_CMDLINE_BOOL is not set | 236 | # CONFIG_CMDLINE_BOOL is not set |
@@ -248,6 +254,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
248 | # CONFIG_PCI_MSI is not set | 254 | # CONFIG_PCI_MSI is not set |
249 | # CONFIG_PCI_LEGACY is not set | 255 | # CONFIG_PCI_LEGACY is not set |
250 | # CONFIG_PCI_DEBUG is not set | 256 | # CONFIG_PCI_DEBUG is not set |
257 | # CONFIG_PCI_STUB is not set | ||
251 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
252 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
253 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -272,6 +279,7 @@ CONFIG_NET=y | |||
272 | # | 279 | # |
273 | # Networking options | 280 | # Networking options |
274 | # | 281 | # |
282 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 283 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 284 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 285 | CONFIG_UNIX=y |
@@ -322,6 +330,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
322 | # CONFIG_ECONET is not set | 330 | # CONFIG_ECONET is not set |
323 | # CONFIG_WAN_ROUTER is not set | 331 | # CONFIG_WAN_ROUTER is not set |
324 | # CONFIG_NET_SCHED is not set | 332 | # CONFIG_NET_SCHED is not set |
333 | # CONFIG_DCB is not set | ||
325 | 334 | ||
326 | # | 335 | # |
327 | # Network testing | 336 | # Network testing |
@@ -334,6 +343,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_AF_RXRPC is not set | 343 | # CONFIG_AF_RXRPC is not set |
335 | # CONFIG_PHONET is not set | 344 | # CONFIG_PHONET is not set |
336 | # CONFIG_WIRELESS is not set | 345 | # CONFIG_WIRELESS is not set |
346 | # CONFIG_WIMAX is not set | ||
337 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
338 | # CONFIG_NET_9P is not set | 348 | # CONFIG_NET_9P is not set |
339 | 349 | ||
@@ -359,6 +369,7 @@ CONFIG_MTD=y | |||
359 | # CONFIG_MTD_DEBUG is not set | 369 | # CONFIG_MTD_DEBUG is not set |
360 | # CONFIG_MTD_CONCAT is not set | 370 | # CONFIG_MTD_CONCAT is not set |
361 | CONFIG_MTD_PARTITIONS=y | 371 | CONFIG_MTD_PARTITIONS=y |
372 | # CONFIG_MTD_TESTS is not set | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 373 | # CONFIG_MTD_REDBOOT_PARTS is not set |
363 | CONFIG_MTD_CMDLINE_PARTS=y | 374 | CONFIG_MTD_CMDLINE_PARTS=y |
364 | CONFIG_MTD_OF_PARTS=y | 375 | CONFIG_MTD_OF_PARTS=y |
@@ -431,6 +442,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
431 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
432 | 443 | ||
433 | # | 444 | # |
445 | # LPDDR flash memory drivers | ||
446 | # | ||
447 | # CONFIG_MTD_LPDDR is not set | ||
448 | # CONFIG_MTD_QINFO_PROBE is not set | ||
449 | |||
450 | # | ||
434 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
435 | # | 452 | # |
436 | # CONFIG_MTD_UBI is not set | 453 | # CONFIG_MTD_UBI is not set |
@@ -461,6 +478,7 @@ CONFIG_MISC_DEVICES=y | |||
461 | # CONFIG_TIFM_CORE is not set | 478 | # CONFIG_TIFM_CORE is not set |
462 | # CONFIG_ENCLOSURE_SERVICES is not set | 479 | # CONFIG_ENCLOSURE_SERVICES is not set |
463 | # CONFIG_HP_ILO is not set | 480 | # CONFIG_HP_ILO is not set |
481 | # CONFIG_C2PORT is not set | ||
464 | CONFIG_HAVE_IDE=y | 482 | CONFIG_HAVE_IDE=y |
465 | # CONFIG_IDE is not set | 483 | # CONFIG_IDE is not set |
466 | 484 | ||
@@ -543,6 +561,7 @@ CONFIG_NETDEV_1000=y | |||
543 | # CONFIG_JME is not set | 561 | # CONFIG_JME is not set |
544 | CONFIG_NETDEV_10000=y | 562 | CONFIG_NETDEV_10000=y |
545 | # CONFIG_CHELSIO_T1 is not set | 563 | # CONFIG_CHELSIO_T1 is not set |
564 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
546 | # CONFIG_CHELSIO_T3 is not set | 565 | # CONFIG_CHELSIO_T3 is not set |
547 | # CONFIG_ENIC is not set | 566 | # CONFIG_ENIC is not set |
548 | # CONFIG_IXGBE is not set | 567 | # CONFIG_IXGBE is not set |
@@ -565,6 +584,10 @@ CONFIG_NETDEV_10000=y | |||
565 | # CONFIG_WLAN_PRE80211 is not set | 584 | # CONFIG_WLAN_PRE80211 is not set |
566 | # CONFIG_WLAN_80211 is not set | 585 | # CONFIG_WLAN_80211 is not set |
567 | # CONFIG_IWLWIFI_LEDS is not set | 586 | # CONFIG_IWLWIFI_LEDS is not set |
587 | |||
588 | # | ||
589 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
590 | # | ||
568 | # CONFIG_WAN is not set | 591 | # CONFIG_WAN is not set |
569 | # CONFIG_FDDI is not set | 592 | # CONFIG_FDDI is not set |
570 | # CONFIG_HIPPI is not set | 593 | # CONFIG_HIPPI is not set |
@@ -617,9 +640,12 @@ CONFIG_SERIAL_CORE=y | |||
617 | CONFIG_SERIAL_CORE_CONSOLE=y | 640 | CONFIG_SERIAL_CORE_CONSOLE=y |
618 | # CONFIG_SERIAL_JSM is not set | 641 | # CONFIG_SERIAL_JSM is not set |
619 | CONFIG_SERIAL_OF_PLATFORM=y | 642 | CONFIG_SERIAL_OF_PLATFORM=y |
643 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
620 | CONFIG_UNIX98_PTYS=y | 644 | CONFIG_UNIX98_PTYS=y |
645 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
621 | CONFIG_LEGACY_PTYS=y | 646 | CONFIG_LEGACY_PTYS=y |
622 | CONFIG_LEGACY_PTY_COUNT=256 | 647 | CONFIG_LEGACY_PTY_COUNT=256 |
648 | # CONFIG_HVC_UDBG is not set | ||
623 | # CONFIG_IPMI_HANDLER is not set | 649 | # CONFIG_IPMI_HANDLER is not set |
624 | # CONFIG_HW_RANDOM is not set | 650 | # CONFIG_HW_RANDOM is not set |
625 | # CONFIG_NVRAM is not set | 651 | # CONFIG_NVRAM is not set |
@@ -639,11 +665,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
639 | # CONFIG_THERMAL is not set | 665 | # CONFIG_THERMAL is not set |
640 | # CONFIG_THERMAL_HWMON is not set | 666 | # CONFIG_THERMAL_HWMON is not set |
641 | # CONFIG_WATCHDOG is not set | 667 | # CONFIG_WATCHDOG is not set |
668 | CONFIG_SSB_POSSIBLE=y | ||
642 | 669 | ||
643 | # | 670 | # |
644 | # Sonics Silicon Backplane | 671 | # Sonics Silicon Backplane |
645 | # | 672 | # |
646 | CONFIG_SSB_POSSIBLE=y | ||
647 | # CONFIG_SSB is not set | 673 | # CONFIG_SSB is not set |
648 | 674 | ||
649 | # | 675 | # |
@@ -653,7 +679,7 @@ CONFIG_SSB_POSSIBLE=y | |||
653 | # CONFIG_MFD_SM501 is not set | 679 | # CONFIG_MFD_SM501 is not set |
654 | # CONFIG_HTC_PASIC3 is not set | 680 | # CONFIG_HTC_PASIC3 is not set |
655 | # CONFIG_MFD_TMIO is not set | 681 | # CONFIG_MFD_TMIO is not set |
656 | # CONFIG_MFD_WM8400 is not set | 682 | # CONFIG_REGULATOR is not set |
657 | 683 | ||
658 | # | 684 | # |
659 | # Multimedia devices | 685 | # Multimedia devices |
@@ -712,7 +738,9 @@ CONFIG_EXT2_FS=y | |||
712 | # CONFIG_FS_POSIX_ACL is not set | 738 | # CONFIG_FS_POSIX_ACL is not set |
713 | CONFIG_FILE_LOCKING=y | 739 | CONFIG_FILE_LOCKING=y |
714 | # CONFIG_XFS_FS is not set | 740 | # CONFIG_XFS_FS is not set |
741 | # CONFIG_GFS2_FS is not set | ||
715 | # CONFIG_OCFS2_FS is not set | 742 | # CONFIG_OCFS2_FS is not set |
743 | # CONFIG_BTRFS_FS is not set | ||
716 | CONFIG_DNOTIFY=y | 744 | CONFIG_DNOTIFY=y |
717 | CONFIG_INOTIFY=y | 745 | CONFIG_INOTIFY=y |
718 | CONFIG_INOTIFY_USER=y | 746 | CONFIG_INOTIFY_USER=y |
@@ -746,10 +774,7 @@ CONFIG_TMPFS=y | |||
746 | # CONFIG_TMPFS_POSIX_ACL is not set | 774 | # CONFIG_TMPFS_POSIX_ACL is not set |
747 | # CONFIG_HUGETLB_PAGE is not set | 775 | # CONFIG_HUGETLB_PAGE is not set |
748 | # CONFIG_CONFIGFS_FS is not set | 776 | # CONFIG_CONFIGFS_FS is not set |
749 | 777 | CONFIG_MISC_FILESYSTEMS=y | |
750 | # | ||
751 | # Miscellaneous filesystems | ||
752 | # | ||
753 | # CONFIG_ADFS_FS is not set | 778 | # CONFIG_ADFS_FS is not set |
754 | # CONFIG_AFFS_FS is not set | 779 | # CONFIG_AFFS_FS is not set |
755 | # CONFIG_HFS_FS is not set | 780 | # CONFIG_HFS_FS is not set |
@@ -759,6 +784,7 @@ CONFIG_TMPFS=y | |||
759 | # CONFIG_EFS_FS is not set | 784 | # CONFIG_EFS_FS is not set |
760 | # CONFIG_JFFS2_FS is not set | 785 | # CONFIG_JFFS2_FS is not set |
761 | CONFIG_CRAMFS=y | 786 | CONFIG_CRAMFS=y |
787 | # CONFIG_SQUASHFS is not set | ||
762 | # CONFIG_VXFS_FS is not set | 788 | # CONFIG_VXFS_FS is not set |
763 | # CONFIG_MINIX_FS is not set | 789 | # CONFIG_MINIX_FS is not set |
764 | # CONFIG_OMFS_FS is not set | 790 | # CONFIG_OMFS_FS is not set |
@@ -799,6 +825,7 @@ CONFIG_MSDOS_PARTITION=y | |||
799 | # Library routines | 825 | # Library routines |
800 | # | 826 | # |
801 | CONFIG_BITREVERSE=y | 827 | CONFIG_BITREVERSE=y |
828 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
802 | # CONFIG_CRC_CCITT is not set | 829 | # CONFIG_CRC_CCITT is not set |
803 | # CONFIG_CRC16 is not set | 830 | # CONFIG_CRC16 is not set |
804 | # CONFIG_CRC_T10DIF is not set | 831 | # CONFIG_CRC_T10DIF is not set |
@@ -849,6 +876,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
849 | # CONFIG_DEBUG_MEMORY_INIT is not set | 876 | # CONFIG_DEBUG_MEMORY_INIT is not set |
850 | # CONFIG_DEBUG_LIST is not set | 877 | # CONFIG_DEBUG_LIST is not set |
851 | # CONFIG_DEBUG_SG is not set | 878 | # CONFIG_DEBUG_SG is not set |
879 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
852 | # CONFIG_BOOT_PRINTK_DELAY is not set | 880 | # CONFIG_BOOT_PRINTK_DELAY is not set |
853 | # CONFIG_RCU_TORTURE_TEST is not set | 881 | # CONFIG_RCU_TORTURE_TEST is not set |
854 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 882 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -857,18 +885,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
857 | # CONFIG_FAULT_INJECTION is not set | 885 | # CONFIG_FAULT_INJECTION is not set |
858 | # CONFIG_LATENCYTOP is not set | 886 | # CONFIG_LATENCYTOP is not set |
859 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 887 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
860 | CONFIG_NOP_TRACER=y | 888 | CONFIG_HAVE_FUNCTION_TRACER=y |
861 | CONFIG_HAVE_FTRACE=y | ||
862 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 889 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
863 | # CONFIG_FTRACE is not set | 890 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
891 | |||
892 | # | ||
893 | # Tracers | ||
894 | # | ||
895 | # CONFIG_FUNCTION_TRACER is not set | ||
864 | # CONFIG_SCHED_TRACER is not set | 896 | # CONFIG_SCHED_TRACER is not set |
865 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 897 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
866 | # CONFIG_BOOT_TRACER is not set | 898 | # CONFIG_BOOT_TRACER is not set |
899 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
867 | # CONFIG_STACK_TRACER is not set | 900 | # CONFIG_STACK_TRACER is not set |
868 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 901 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
869 | # CONFIG_SAMPLES is not set | 902 | # CONFIG_SAMPLES is not set |
870 | CONFIG_HAVE_ARCH_KGDB=y | 903 | CONFIG_HAVE_ARCH_KGDB=y |
871 | # CONFIG_KGDB is not set | 904 | # CONFIG_KGDB is not set |
905 | CONFIG_PRINT_STACK_DEPTH=64 | ||
872 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 906 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
873 | # CONFIG_DEBUG_STACK_USAGE is not set | 907 | # CONFIG_DEBUG_STACK_USAGE is not set |
874 | # CONFIG_DEBUG_PAGEALLOC is not set | 908 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -895,11 +929,15 @@ CONFIG_CRYPTO=y | |||
895 | # | 929 | # |
896 | # CONFIG_CRYPTO_FIPS is not set | 930 | # CONFIG_CRYPTO_FIPS is not set |
897 | CONFIG_CRYPTO_ALGAPI=y | 931 | CONFIG_CRYPTO_ALGAPI=y |
898 | CONFIG_CRYPTO_AEAD=y | 932 | CONFIG_CRYPTO_ALGAPI2=y |
933 | CONFIG_CRYPTO_AEAD2=y | ||
899 | CONFIG_CRYPTO_BLKCIPHER=y | 934 | CONFIG_CRYPTO_BLKCIPHER=y |
935 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
900 | CONFIG_CRYPTO_HASH=y | 936 | CONFIG_CRYPTO_HASH=y |
901 | CONFIG_CRYPTO_RNG=y | 937 | CONFIG_CRYPTO_HASH2=y |
938 | CONFIG_CRYPTO_RNG2=y | ||
902 | CONFIG_CRYPTO_MANAGER=y | 939 | CONFIG_CRYPTO_MANAGER=y |
940 | CONFIG_CRYPTO_MANAGER2=y | ||
903 | # CONFIG_CRYPTO_GF128MUL is not set | 941 | # CONFIG_CRYPTO_GF128MUL is not set |
904 | # CONFIG_CRYPTO_NULL is not set | 942 | # CONFIG_CRYPTO_NULL is not set |
905 | # CONFIG_CRYPTO_CRYPTD is not set | 943 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/kilauea_defconfig b/arch/powerpc/configs/40x/kilauea_defconfig index e2f3695d9d0b..9917a09bad3a 100644 --- a/arch/powerpc/configs/40x/kilauea_defconfig +++ b/arch/powerpc/configs/40x/kilauea_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:23 2008 | 4 | # Tue Jan 20 08:17:52 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=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_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 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 | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | CONFIG_PPC4xx_PCI_EXPRESS=y | 157 | CONFIG_PPC4xx_PCI_EXPRESS=y |
156 | 158 | ||
@@ -182,6 +184,7 @@ CONFIG_405EX=y | |||
182 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
183 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_SIMPLE_GPIO is not set | ||
185 | 188 | ||
186 | # | 189 | # |
187 | # Kernel options | 190 | # Kernel options |
@@ -205,6 +208,7 @@ CONFIG_BINFMT_ELF=y | |||
205 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_MATH_EMULATION is not set | 209 | # CONFIG_MATH_EMULATION is not set |
207 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
211 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -219,12 +223,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
219 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
221 | CONFIG_MIGRATION=y | 225 | CONFIG_MIGRATION=y |
222 | # CONFIG_RESOURCES_64BIT is not set | ||
223 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
224 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
225 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
226 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
227 | CONFIG_UNEVICTABLE_LRU=y | 230 | CONFIG_UNEVICTABLE_LRU=y |
231 | CONFIG_PPC_4K_PAGES=y | ||
232 | # CONFIG_PPC_16K_PAGES is not set | ||
233 | # CONFIG_PPC_64K_PAGES is not set | ||
228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 234 | CONFIG_FORCE_MAX_ZONEORDER=11 |
229 | CONFIG_PROC_DEVICETREE=y | 235 | CONFIG_PROC_DEVICETREE=y |
230 | # CONFIG_CMDLINE_BOOL is not set | 236 | # CONFIG_CMDLINE_BOOL is not set |
@@ -248,6 +254,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
248 | # CONFIG_PCI_MSI is not set | 254 | # CONFIG_PCI_MSI is not set |
249 | CONFIG_PCI_LEGACY=y | 255 | CONFIG_PCI_LEGACY=y |
250 | # CONFIG_PCI_DEBUG is not set | 256 | # CONFIG_PCI_DEBUG is not set |
257 | # CONFIG_PCI_STUB is not set | ||
251 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
252 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
253 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -272,6 +279,7 @@ CONFIG_NET=y | |||
272 | # | 279 | # |
273 | # Networking options | 280 | # Networking options |
274 | # | 281 | # |
282 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 283 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 284 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 285 | CONFIG_UNIX=y |
@@ -322,6 +330,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
322 | # CONFIG_ECONET is not set | 330 | # CONFIG_ECONET is not set |
323 | # CONFIG_WAN_ROUTER is not set | 331 | # CONFIG_WAN_ROUTER is not set |
324 | # CONFIG_NET_SCHED is not set | 332 | # CONFIG_NET_SCHED is not set |
333 | # CONFIG_DCB is not set | ||
325 | 334 | ||
326 | # | 335 | # |
327 | # Network testing | 336 | # Network testing |
@@ -334,6 +343,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_AF_RXRPC is not set | 343 | # CONFIG_AF_RXRPC is not set |
335 | # CONFIG_PHONET is not set | 344 | # CONFIG_PHONET is not set |
336 | # CONFIG_WIRELESS is not set | 345 | # CONFIG_WIRELESS is not set |
346 | # CONFIG_WIMAX is not set | ||
337 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
338 | # CONFIG_NET_9P is not set | 348 | # CONFIG_NET_9P is not set |
339 | 349 | ||
@@ -359,6 +369,7 @@ CONFIG_MTD=y | |||
359 | # CONFIG_MTD_DEBUG is not set | 369 | # CONFIG_MTD_DEBUG is not set |
360 | # CONFIG_MTD_CONCAT is not set | 370 | # CONFIG_MTD_CONCAT is not set |
361 | CONFIG_MTD_PARTITIONS=y | 371 | CONFIG_MTD_PARTITIONS=y |
372 | # CONFIG_MTD_TESTS is not set | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 373 | # CONFIG_MTD_REDBOOT_PARTS is not set |
363 | CONFIG_MTD_CMDLINE_PARTS=y | 374 | CONFIG_MTD_CMDLINE_PARTS=y |
364 | CONFIG_MTD_OF_PARTS=y | 375 | CONFIG_MTD_OF_PARTS=y |
@@ -431,6 +442,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
431 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
432 | 443 | ||
433 | # | 444 | # |
445 | # LPDDR flash memory drivers | ||
446 | # | ||
447 | # CONFIG_MTD_LPDDR is not set | ||
448 | # CONFIG_MTD_QINFO_PROBE is not set | ||
449 | |||
450 | # | ||
434 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
435 | # | 452 | # |
436 | # CONFIG_MTD_UBI is not set | 453 | # CONFIG_MTD_UBI is not set |
@@ -524,6 +541,10 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
524 | # CONFIG_WLAN_PRE80211 is not set | 541 | # CONFIG_WLAN_PRE80211 is not set |
525 | # CONFIG_WLAN_80211 is not set | 542 | # CONFIG_WLAN_80211 is not set |
526 | # CONFIG_IWLWIFI_LEDS is not set | 543 | # CONFIG_IWLWIFI_LEDS is not set |
544 | |||
545 | # | ||
546 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
547 | # | ||
527 | # CONFIG_WAN is not set | 548 | # CONFIG_WAN is not set |
528 | # CONFIG_FDDI is not set | 549 | # CONFIG_FDDI is not set |
529 | # CONFIG_HIPPI is not set | 550 | # CONFIG_HIPPI is not set |
@@ -576,9 +597,12 @@ CONFIG_SERIAL_CORE=y | |||
576 | CONFIG_SERIAL_CORE_CONSOLE=y | 597 | CONFIG_SERIAL_CORE_CONSOLE=y |
577 | # CONFIG_SERIAL_JSM is not set | 598 | # CONFIG_SERIAL_JSM is not set |
578 | CONFIG_SERIAL_OF_PLATFORM=y | 599 | CONFIG_SERIAL_OF_PLATFORM=y |
600 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
579 | CONFIG_UNIX98_PTYS=y | 601 | CONFIG_UNIX98_PTYS=y |
602 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
580 | CONFIG_LEGACY_PTYS=y | 603 | CONFIG_LEGACY_PTYS=y |
581 | CONFIG_LEGACY_PTY_COUNT=256 | 604 | CONFIG_LEGACY_PTY_COUNT=256 |
605 | # CONFIG_HVC_UDBG is not set | ||
582 | # CONFIG_IPMI_HANDLER is not set | 606 | # CONFIG_IPMI_HANDLER is not set |
583 | # CONFIG_HW_RANDOM is not set | 607 | # CONFIG_HW_RANDOM is not set |
584 | # CONFIG_NVRAM is not set | 608 | # CONFIG_NVRAM is not set |
@@ -597,11 +621,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
597 | # CONFIG_HWMON is not set | 621 | # CONFIG_HWMON is not set |
598 | CONFIG_THERMAL=y | 622 | CONFIG_THERMAL=y |
599 | # CONFIG_WATCHDOG is not set | 623 | # CONFIG_WATCHDOG is not set |
624 | CONFIG_SSB_POSSIBLE=y | ||
600 | 625 | ||
601 | # | 626 | # |
602 | # Sonics Silicon Backplane | 627 | # Sonics Silicon Backplane |
603 | # | 628 | # |
604 | CONFIG_SSB_POSSIBLE=y | ||
605 | # CONFIG_SSB is not set | 629 | # CONFIG_SSB is not set |
606 | 630 | ||
607 | # | 631 | # |
@@ -611,7 +635,7 @@ CONFIG_SSB_POSSIBLE=y | |||
611 | # CONFIG_MFD_SM501 is not set | 635 | # CONFIG_MFD_SM501 is not set |
612 | # CONFIG_HTC_PASIC3 is not set | 636 | # CONFIG_HTC_PASIC3 is not set |
613 | # CONFIG_MFD_TMIO is not set | 637 | # CONFIG_MFD_TMIO is not set |
614 | # CONFIG_MFD_WM8400 is not set | 638 | # CONFIG_REGULATOR is not set |
615 | 639 | ||
616 | # | 640 | # |
617 | # Multimedia devices | 641 | # Multimedia devices |
@@ -670,7 +694,9 @@ CONFIG_EXT2_FS=y | |||
670 | # CONFIG_FS_POSIX_ACL is not set | 694 | # CONFIG_FS_POSIX_ACL is not set |
671 | CONFIG_FILE_LOCKING=y | 695 | CONFIG_FILE_LOCKING=y |
672 | # CONFIG_XFS_FS is not set | 696 | # CONFIG_XFS_FS is not set |
697 | # CONFIG_GFS2_FS is not set | ||
673 | # CONFIG_OCFS2_FS is not set | 698 | # CONFIG_OCFS2_FS is not set |
699 | # CONFIG_BTRFS_FS is not set | ||
674 | CONFIG_DNOTIFY=y | 700 | CONFIG_DNOTIFY=y |
675 | CONFIG_INOTIFY=y | 701 | CONFIG_INOTIFY=y |
676 | CONFIG_INOTIFY_USER=y | 702 | CONFIG_INOTIFY_USER=y |
@@ -704,10 +730,7 @@ CONFIG_TMPFS=y | |||
704 | # CONFIG_TMPFS_POSIX_ACL is not set | 730 | # CONFIG_TMPFS_POSIX_ACL is not set |
705 | # CONFIG_HUGETLB_PAGE is not set | 731 | # CONFIG_HUGETLB_PAGE is not set |
706 | # CONFIG_CONFIGFS_FS is not set | 732 | # CONFIG_CONFIGFS_FS is not set |
707 | 733 | CONFIG_MISC_FILESYSTEMS=y | |
708 | # | ||
709 | # Miscellaneous filesystems | ||
710 | # | ||
711 | # CONFIG_ADFS_FS is not set | 734 | # CONFIG_ADFS_FS is not set |
712 | # CONFIG_AFFS_FS is not set | 735 | # CONFIG_AFFS_FS is not set |
713 | # CONFIG_HFS_FS is not set | 736 | # CONFIG_HFS_FS is not set |
@@ -717,6 +740,7 @@ CONFIG_TMPFS=y | |||
717 | # CONFIG_EFS_FS is not set | 740 | # CONFIG_EFS_FS is not set |
718 | # CONFIG_JFFS2_FS is not set | 741 | # CONFIG_JFFS2_FS is not set |
719 | CONFIG_CRAMFS=y | 742 | CONFIG_CRAMFS=y |
743 | # CONFIG_SQUASHFS is not set | ||
720 | # CONFIG_VXFS_FS is not set | 744 | # CONFIG_VXFS_FS is not set |
721 | # CONFIG_MINIX_FS is not set | 745 | # CONFIG_MINIX_FS is not set |
722 | # CONFIG_OMFS_FS is not set | 746 | # CONFIG_OMFS_FS is not set |
@@ -757,6 +781,7 @@ CONFIG_MSDOS_PARTITION=y | |||
757 | # Library routines | 781 | # Library routines |
758 | # | 782 | # |
759 | CONFIG_BITREVERSE=y | 783 | CONFIG_BITREVERSE=y |
784 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
760 | # CONFIG_CRC_CCITT is not set | 785 | # CONFIG_CRC_CCITT is not set |
761 | # CONFIG_CRC16 is not set | 786 | # CONFIG_CRC16 is not set |
762 | # CONFIG_CRC_T10DIF is not set | 787 | # CONFIG_CRC_T10DIF is not set |
@@ -807,6 +832,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
807 | # CONFIG_DEBUG_MEMORY_INIT is not set | 832 | # CONFIG_DEBUG_MEMORY_INIT is not set |
808 | # CONFIG_DEBUG_LIST is not set | 833 | # CONFIG_DEBUG_LIST is not set |
809 | # CONFIG_DEBUG_SG is not set | 834 | # CONFIG_DEBUG_SG is not set |
835 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
810 | # CONFIG_BOOT_PRINTK_DELAY is not set | 836 | # CONFIG_BOOT_PRINTK_DELAY is not set |
811 | # CONFIG_RCU_TORTURE_TEST is not set | 837 | # CONFIG_RCU_TORTURE_TEST is not set |
812 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 838 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -815,18 +841,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
815 | # CONFIG_FAULT_INJECTION is not set | 841 | # CONFIG_FAULT_INJECTION is not set |
816 | # CONFIG_LATENCYTOP is not set | 842 | # CONFIG_LATENCYTOP is not set |
817 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 843 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
818 | CONFIG_NOP_TRACER=y | 844 | CONFIG_HAVE_FUNCTION_TRACER=y |
819 | CONFIG_HAVE_FTRACE=y | ||
820 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 845 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
821 | # CONFIG_FTRACE is not set | 846 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
847 | |||
848 | # | ||
849 | # Tracers | ||
850 | # | ||
851 | # CONFIG_FUNCTION_TRACER is not set | ||
822 | # CONFIG_SCHED_TRACER is not set | 852 | # CONFIG_SCHED_TRACER is not set |
823 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 853 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
824 | # CONFIG_BOOT_TRACER is not set | 854 | # CONFIG_BOOT_TRACER is not set |
855 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
825 | # CONFIG_STACK_TRACER is not set | 856 | # CONFIG_STACK_TRACER is not set |
826 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 857 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
827 | # CONFIG_SAMPLES is not set | 858 | # CONFIG_SAMPLES is not set |
828 | CONFIG_HAVE_ARCH_KGDB=y | 859 | CONFIG_HAVE_ARCH_KGDB=y |
829 | # CONFIG_KGDB is not set | 860 | # CONFIG_KGDB is not set |
861 | CONFIG_PRINT_STACK_DEPTH=64 | ||
830 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 862 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
831 | # CONFIG_DEBUG_STACK_USAGE is not set | 863 | # CONFIG_DEBUG_STACK_USAGE is not set |
832 | # CONFIG_DEBUG_PAGEALLOC is not set | 864 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -853,11 +885,15 @@ CONFIG_CRYPTO=y | |||
853 | # | 885 | # |
854 | # CONFIG_CRYPTO_FIPS is not set | 886 | # CONFIG_CRYPTO_FIPS is not set |
855 | CONFIG_CRYPTO_ALGAPI=y | 887 | CONFIG_CRYPTO_ALGAPI=y |
856 | CONFIG_CRYPTO_AEAD=y | 888 | CONFIG_CRYPTO_ALGAPI2=y |
889 | CONFIG_CRYPTO_AEAD2=y | ||
857 | CONFIG_CRYPTO_BLKCIPHER=y | 890 | CONFIG_CRYPTO_BLKCIPHER=y |
891 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
858 | CONFIG_CRYPTO_HASH=y | 892 | CONFIG_CRYPTO_HASH=y |
859 | CONFIG_CRYPTO_RNG=y | 893 | CONFIG_CRYPTO_HASH2=y |
894 | CONFIG_CRYPTO_RNG2=y | ||
860 | CONFIG_CRYPTO_MANAGER=y | 895 | CONFIG_CRYPTO_MANAGER=y |
896 | CONFIG_CRYPTO_MANAGER2=y | ||
861 | # CONFIG_CRYPTO_GF128MUL is not set | 897 | # CONFIG_CRYPTO_GF128MUL is not set |
862 | # CONFIG_CRYPTO_NULL is not set | 898 | # CONFIG_CRYPTO_NULL is not set |
863 | # CONFIG_CRYPTO_CRYPTD is not set | 899 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/makalu_defconfig b/arch/powerpc/configs/40x/makalu_defconfig index 413c778ecd7c..58bf2ac2e0dd 100644 --- a/arch/powerpc/configs/40x/makalu_defconfig +++ b/arch/powerpc/configs/40x/makalu_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:25 2008 | 4 | # Tue Jan 20 08:17:53 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=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_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 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 | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | CONFIG_PPC4xx_PCI_EXPRESS=y | 157 | CONFIG_PPC4xx_PCI_EXPRESS=y |
156 | 158 | ||
@@ -182,6 +184,7 @@ CONFIG_405EX=y | |||
182 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
183 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_SIMPLE_GPIO is not set | ||
185 | 188 | ||
186 | # | 189 | # |
187 | # Kernel options | 190 | # Kernel options |
@@ -205,6 +208,7 @@ CONFIG_BINFMT_ELF=y | |||
205 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_MATH_EMULATION is not set | 209 | # CONFIG_MATH_EMULATION is not set |
207 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
211 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -219,12 +223,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
219 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
221 | CONFIG_MIGRATION=y | 225 | CONFIG_MIGRATION=y |
222 | # CONFIG_RESOURCES_64BIT is not set | ||
223 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
224 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
225 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
226 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
227 | CONFIG_UNEVICTABLE_LRU=y | 230 | CONFIG_UNEVICTABLE_LRU=y |
231 | CONFIG_PPC_4K_PAGES=y | ||
232 | # CONFIG_PPC_16K_PAGES is not set | ||
233 | # CONFIG_PPC_64K_PAGES is not set | ||
228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 234 | CONFIG_FORCE_MAX_ZONEORDER=11 |
229 | CONFIG_PROC_DEVICETREE=y | 235 | CONFIG_PROC_DEVICETREE=y |
230 | # CONFIG_CMDLINE_BOOL is not set | 236 | # CONFIG_CMDLINE_BOOL is not set |
@@ -248,6 +254,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
248 | # CONFIG_PCI_MSI is not set | 254 | # CONFIG_PCI_MSI is not set |
249 | CONFIG_PCI_LEGACY=y | 255 | CONFIG_PCI_LEGACY=y |
250 | # CONFIG_PCI_DEBUG is not set | 256 | # CONFIG_PCI_DEBUG is not set |
257 | # CONFIG_PCI_STUB is not set | ||
251 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
252 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
253 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -272,6 +279,7 @@ CONFIG_NET=y | |||
272 | # | 279 | # |
273 | # Networking options | 280 | # Networking options |
274 | # | 281 | # |
282 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 283 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 284 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 285 | CONFIG_UNIX=y |
@@ -322,6 +330,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
322 | # CONFIG_ECONET is not set | 330 | # CONFIG_ECONET is not set |
323 | # CONFIG_WAN_ROUTER is not set | 331 | # CONFIG_WAN_ROUTER is not set |
324 | # CONFIG_NET_SCHED is not set | 332 | # CONFIG_NET_SCHED is not set |
333 | # CONFIG_DCB is not set | ||
325 | 334 | ||
326 | # | 335 | # |
327 | # Network testing | 336 | # Network testing |
@@ -334,6 +343,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_AF_RXRPC is not set | 343 | # CONFIG_AF_RXRPC is not set |
335 | # CONFIG_PHONET is not set | 344 | # CONFIG_PHONET is not set |
336 | # CONFIG_WIRELESS is not set | 345 | # CONFIG_WIRELESS is not set |
346 | # CONFIG_WIMAX is not set | ||
337 | # CONFIG_RFKILL is not set | 347 | # CONFIG_RFKILL is not set |
338 | # CONFIG_NET_9P is not set | 348 | # CONFIG_NET_9P is not set |
339 | 349 | ||
@@ -359,6 +369,7 @@ CONFIG_MTD=y | |||
359 | # CONFIG_MTD_DEBUG is not set | 369 | # CONFIG_MTD_DEBUG is not set |
360 | # CONFIG_MTD_CONCAT is not set | 370 | # CONFIG_MTD_CONCAT is not set |
361 | CONFIG_MTD_PARTITIONS=y | 371 | CONFIG_MTD_PARTITIONS=y |
372 | # CONFIG_MTD_TESTS is not set | ||
362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 373 | # CONFIG_MTD_REDBOOT_PARTS is not set |
363 | CONFIG_MTD_CMDLINE_PARTS=y | 374 | CONFIG_MTD_CMDLINE_PARTS=y |
364 | CONFIG_MTD_OF_PARTS=y | 375 | CONFIG_MTD_OF_PARTS=y |
@@ -431,6 +442,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
431 | # CONFIG_MTD_ONENAND is not set | 442 | # CONFIG_MTD_ONENAND is not set |
432 | 443 | ||
433 | # | 444 | # |
445 | # LPDDR flash memory drivers | ||
446 | # | ||
447 | # CONFIG_MTD_LPDDR is not set | ||
448 | # CONFIG_MTD_QINFO_PROBE is not set | ||
449 | |||
450 | # | ||
434 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
435 | # | 452 | # |
436 | # CONFIG_MTD_UBI is not set | 453 | # CONFIG_MTD_UBI is not set |
@@ -524,6 +541,10 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
524 | # CONFIG_WLAN_PRE80211 is not set | 541 | # CONFIG_WLAN_PRE80211 is not set |
525 | # CONFIG_WLAN_80211 is not set | 542 | # CONFIG_WLAN_80211 is not set |
526 | # CONFIG_IWLWIFI_LEDS is not set | 543 | # CONFIG_IWLWIFI_LEDS is not set |
544 | |||
545 | # | ||
546 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
547 | # | ||
527 | # CONFIG_WAN is not set | 548 | # CONFIG_WAN is not set |
528 | # CONFIG_FDDI is not set | 549 | # CONFIG_FDDI is not set |
529 | # CONFIG_HIPPI is not set | 550 | # CONFIG_HIPPI is not set |
@@ -576,9 +597,12 @@ CONFIG_SERIAL_CORE=y | |||
576 | CONFIG_SERIAL_CORE_CONSOLE=y | 597 | CONFIG_SERIAL_CORE_CONSOLE=y |
577 | # CONFIG_SERIAL_JSM is not set | 598 | # CONFIG_SERIAL_JSM is not set |
578 | CONFIG_SERIAL_OF_PLATFORM=y | 599 | CONFIG_SERIAL_OF_PLATFORM=y |
600 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
579 | CONFIG_UNIX98_PTYS=y | 601 | CONFIG_UNIX98_PTYS=y |
602 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
580 | CONFIG_LEGACY_PTYS=y | 603 | CONFIG_LEGACY_PTYS=y |
581 | CONFIG_LEGACY_PTY_COUNT=256 | 604 | CONFIG_LEGACY_PTY_COUNT=256 |
605 | # CONFIG_HVC_UDBG is not set | ||
582 | # CONFIG_IPMI_HANDLER is not set | 606 | # CONFIG_IPMI_HANDLER is not set |
583 | # CONFIG_HW_RANDOM is not set | 607 | # CONFIG_HW_RANDOM is not set |
584 | # CONFIG_NVRAM is not set | 608 | # CONFIG_NVRAM is not set |
@@ -597,11 +621,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
597 | # CONFIG_HWMON is not set | 621 | # CONFIG_HWMON is not set |
598 | CONFIG_THERMAL=y | 622 | CONFIG_THERMAL=y |
599 | # CONFIG_WATCHDOG is not set | 623 | # CONFIG_WATCHDOG is not set |
624 | CONFIG_SSB_POSSIBLE=y | ||
600 | 625 | ||
601 | # | 626 | # |
602 | # Sonics Silicon Backplane | 627 | # Sonics Silicon Backplane |
603 | # | 628 | # |
604 | CONFIG_SSB_POSSIBLE=y | ||
605 | # CONFIG_SSB is not set | 629 | # CONFIG_SSB is not set |
606 | 630 | ||
607 | # | 631 | # |
@@ -611,7 +635,7 @@ CONFIG_SSB_POSSIBLE=y | |||
611 | # CONFIG_MFD_SM501 is not set | 635 | # CONFIG_MFD_SM501 is not set |
612 | # CONFIG_HTC_PASIC3 is not set | 636 | # CONFIG_HTC_PASIC3 is not set |
613 | # CONFIG_MFD_TMIO is not set | 637 | # CONFIG_MFD_TMIO is not set |
614 | # CONFIG_MFD_WM8400 is not set | 638 | # CONFIG_REGULATOR is not set |
615 | 639 | ||
616 | # | 640 | # |
617 | # Multimedia devices | 641 | # Multimedia devices |
@@ -670,7 +694,9 @@ CONFIG_EXT2_FS=y | |||
670 | # CONFIG_FS_POSIX_ACL is not set | 694 | # CONFIG_FS_POSIX_ACL is not set |
671 | CONFIG_FILE_LOCKING=y | 695 | CONFIG_FILE_LOCKING=y |
672 | # CONFIG_XFS_FS is not set | 696 | # CONFIG_XFS_FS is not set |
697 | # CONFIG_GFS2_FS is not set | ||
673 | # CONFIG_OCFS2_FS is not set | 698 | # CONFIG_OCFS2_FS is not set |
699 | # CONFIG_BTRFS_FS is not set | ||
674 | CONFIG_DNOTIFY=y | 700 | CONFIG_DNOTIFY=y |
675 | CONFIG_INOTIFY=y | 701 | CONFIG_INOTIFY=y |
676 | CONFIG_INOTIFY_USER=y | 702 | CONFIG_INOTIFY_USER=y |
@@ -704,10 +730,7 @@ CONFIG_TMPFS=y | |||
704 | # CONFIG_TMPFS_POSIX_ACL is not set | 730 | # CONFIG_TMPFS_POSIX_ACL is not set |
705 | # CONFIG_HUGETLB_PAGE is not set | 731 | # CONFIG_HUGETLB_PAGE is not set |
706 | # CONFIG_CONFIGFS_FS is not set | 732 | # CONFIG_CONFIGFS_FS is not set |
707 | 733 | CONFIG_MISC_FILESYSTEMS=y | |
708 | # | ||
709 | # Miscellaneous filesystems | ||
710 | # | ||
711 | # CONFIG_ADFS_FS is not set | 734 | # CONFIG_ADFS_FS is not set |
712 | # CONFIG_AFFS_FS is not set | 735 | # CONFIG_AFFS_FS is not set |
713 | # CONFIG_HFS_FS is not set | 736 | # CONFIG_HFS_FS is not set |
@@ -717,6 +740,7 @@ CONFIG_TMPFS=y | |||
717 | # CONFIG_EFS_FS is not set | 740 | # CONFIG_EFS_FS is not set |
718 | # CONFIG_JFFS2_FS is not set | 741 | # CONFIG_JFFS2_FS is not set |
719 | CONFIG_CRAMFS=y | 742 | CONFIG_CRAMFS=y |
743 | # CONFIG_SQUASHFS is not set | ||
720 | # CONFIG_VXFS_FS is not set | 744 | # CONFIG_VXFS_FS is not set |
721 | # CONFIG_MINIX_FS is not set | 745 | # CONFIG_MINIX_FS is not set |
722 | # CONFIG_OMFS_FS is not set | 746 | # CONFIG_OMFS_FS is not set |
@@ -757,6 +781,7 @@ CONFIG_MSDOS_PARTITION=y | |||
757 | # Library routines | 781 | # Library routines |
758 | # | 782 | # |
759 | CONFIG_BITREVERSE=y | 783 | CONFIG_BITREVERSE=y |
784 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
760 | # CONFIG_CRC_CCITT is not set | 785 | # CONFIG_CRC_CCITT is not set |
761 | # CONFIG_CRC16 is not set | 786 | # CONFIG_CRC16 is not set |
762 | # CONFIG_CRC_T10DIF is not set | 787 | # CONFIG_CRC_T10DIF is not set |
@@ -807,6 +832,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
807 | # CONFIG_DEBUG_MEMORY_INIT is not set | 832 | # CONFIG_DEBUG_MEMORY_INIT is not set |
808 | # CONFIG_DEBUG_LIST is not set | 833 | # CONFIG_DEBUG_LIST is not set |
809 | # CONFIG_DEBUG_SG is not set | 834 | # CONFIG_DEBUG_SG is not set |
835 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
810 | # CONFIG_BOOT_PRINTK_DELAY is not set | 836 | # CONFIG_BOOT_PRINTK_DELAY is not set |
811 | # CONFIG_RCU_TORTURE_TEST is not set | 837 | # CONFIG_RCU_TORTURE_TEST is not set |
812 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 838 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -815,18 +841,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
815 | # CONFIG_FAULT_INJECTION is not set | 841 | # CONFIG_FAULT_INJECTION is not set |
816 | # CONFIG_LATENCYTOP is not set | 842 | # CONFIG_LATENCYTOP is not set |
817 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 843 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
818 | CONFIG_NOP_TRACER=y | 844 | CONFIG_HAVE_FUNCTION_TRACER=y |
819 | CONFIG_HAVE_FTRACE=y | ||
820 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 845 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
821 | # CONFIG_FTRACE is not set | 846 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
847 | |||
848 | # | ||
849 | # Tracers | ||
850 | # | ||
851 | # CONFIG_FUNCTION_TRACER is not set | ||
822 | # CONFIG_SCHED_TRACER is not set | 852 | # CONFIG_SCHED_TRACER is not set |
823 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 853 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
824 | # CONFIG_BOOT_TRACER is not set | 854 | # CONFIG_BOOT_TRACER is not set |
855 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
825 | # CONFIG_STACK_TRACER is not set | 856 | # CONFIG_STACK_TRACER is not set |
826 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 857 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
827 | # CONFIG_SAMPLES is not set | 858 | # CONFIG_SAMPLES is not set |
828 | CONFIG_HAVE_ARCH_KGDB=y | 859 | CONFIG_HAVE_ARCH_KGDB=y |
829 | # CONFIG_KGDB is not set | 860 | # CONFIG_KGDB is not set |
861 | CONFIG_PRINT_STACK_DEPTH=64 | ||
830 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 862 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
831 | # CONFIG_DEBUG_STACK_USAGE is not set | 863 | # CONFIG_DEBUG_STACK_USAGE is not set |
832 | # CONFIG_DEBUG_PAGEALLOC is not set | 864 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -853,11 +885,15 @@ CONFIG_CRYPTO=y | |||
853 | # | 885 | # |
854 | # CONFIG_CRYPTO_FIPS is not set | 886 | # CONFIG_CRYPTO_FIPS is not set |
855 | CONFIG_CRYPTO_ALGAPI=y | 887 | CONFIG_CRYPTO_ALGAPI=y |
856 | CONFIG_CRYPTO_AEAD=y | 888 | CONFIG_CRYPTO_ALGAPI2=y |
889 | CONFIG_CRYPTO_AEAD2=y | ||
857 | CONFIG_CRYPTO_BLKCIPHER=y | 890 | CONFIG_CRYPTO_BLKCIPHER=y |
891 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
858 | CONFIG_CRYPTO_HASH=y | 892 | CONFIG_CRYPTO_HASH=y |
859 | CONFIG_CRYPTO_RNG=y | 893 | CONFIG_CRYPTO_HASH2=y |
894 | CONFIG_CRYPTO_RNG2=y | ||
860 | CONFIG_CRYPTO_MANAGER=y | 895 | CONFIG_CRYPTO_MANAGER=y |
896 | CONFIG_CRYPTO_MANAGER2=y | ||
861 | # CONFIG_CRYPTO_GF128MUL is not set | 897 | # CONFIG_CRYPTO_GF128MUL is not set |
862 | # CONFIG_CRYPTO_NULL is not set | 898 | # CONFIG_CRYPTO_NULL is not set |
863 | # CONFIG_CRYPTO_CRYPTD is not set | 899 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/virtex_defconfig b/arch/powerpc/configs/40x/virtex_defconfig index 9a9350ded292..b6888384dd74 100644 --- a/arch/powerpc/configs/40x/virtex_defconfig +++ b/arch/powerpc/configs/40x/virtex_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.28-rc4 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Fri Nov 14 10:49:16 2008 | 4 | # Tue Jan 20 08:17:55 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=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_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -41,7 +42,7 @@ CONFIG_GENERIC_GPIO=y | |||
41 | CONFIG_PPC=y | 42 | CONFIG_PPC=y |
42 | CONFIG_EARLY_PRINTK=y | 43 | CONFIG_EARLY_PRINTK=y |
43 | CONFIG_GENERIC_NVRAM=y | 44 | CONFIG_GENERIC_NVRAM=y |
44 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 45 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 46 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
46 | CONFIG_PPC_OF=y | 47 | CONFIG_PPC_OF=y |
47 | CONFIG_OF=y | 48 | CONFIG_OF=y |
@@ -74,8 +75,8 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | CONFIG_IKCONFIG=y | 75 | CONFIG_IKCONFIG=y |
75 | CONFIG_IKCONFIG_PROC=y | 76 | CONFIG_IKCONFIG_PROC=y |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | # CONFIG_GROUP_SCHED is not set | 78 | # CONFIG_GROUP_SCHED is not set |
79 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
@@ -113,7 +114,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 114 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
118 | # CONFIG_KPROBES is not set | 118 | # CONFIG_KPROBES is not set |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -124,7 +124,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 129 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +131,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | CONFIG_MODULE_FORCE_UNLOAD=y | 131 | CONFIG_MODULE_FORCE_UNLOAD=y |
133 | CONFIG_MODVERSIONS=y | 132 | CONFIG_MODVERSIONS=y |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 133 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 134 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 135 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 139 | ||
@@ -153,6 +150,10 @@ CONFIG_DEFAULT_CFQ=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="cfq" | 151 | CONFIG_DEFAULT_IOSCHED="cfq" |
155 | CONFIG_CLASSIC_RCU=y | 152 | CONFIG_CLASSIC_RCU=y |
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 158 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
158 | 159 | ||
@@ -188,6 +189,7 @@ CONFIG_IBM405_ERR51=y | |||
188 | # CONFIG_GENERIC_IOMAP is not set | 189 | # CONFIG_GENERIC_IOMAP is not set |
189 | # CONFIG_CPU_FREQ is not set | 190 | # CONFIG_CPU_FREQ is not set |
190 | # CONFIG_FSL_ULI1575 is not set | 191 | # CONFIG_FSL_ULI1575 is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
191 | 193 | ||
192 | # | 194 | # |
193 | # Kernel options | 195 | # Kernel options |
@@ -205,13 +207,13 @@ CONFIG_HZ=250 | |||
205 | # CONFIG_PREEMPT_NONE is not set | 207 | # CONFIG_PREEMPT_NONE is not set |
206 | # CONFIG_PREEMPT_VOLUNTARY is not set | 208 | # CONFIG_PREEMPT_VOLUNTARY is not set |
207 | CONFIG_PREEMPT=y | 209 | CONFIG_PREEMPT=y |
208 | # CONFIG_PREEMPT_RCU is not set | ||
209 | CONFIG_BINFMT_ELF=y | 210 | CONFIG_BINFMT_ELF=y |
210 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 211 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
211 | # CONFIG_HAVE_AOUT is not set | 212 | # CONFIG_HAVE_AOUT is not set |
212 | # CONFIG_BINFMT_MISC is not set | 213 | # CONFIG_BINFMT_MISC is not set |
213 | CONFIG_MATH_EMULATION=y | 214 | CONFIG_MATH_EMULATION=y |
214 | # CONFIG_IOMMU_HELPER is not set | 215 | # CONFIG_IOMMU_HELPER is not set |
216 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
216 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 218 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -226,12 +228,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 228 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 229 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 230 | CONFIG_MIGRATION=y |
229 | CONFIG_RESOURCES_64BIT=y | ||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 231 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=1 | 232 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 233 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 234 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 235 | CONFIG_UNEVICTABLE_LRU=y |
236 | CONFIG_PPC_4K_PAGES=y | ||
237 | # CONFIG_PPC_16K_PAGES is not set | ||
238 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | CONFIG_PROC_DEVICETREE=y | 240 | CONFIG_PROC_DEVICETREE=y |
237 | CONFIG_CMDLINE_BOOL=y | 241 | CONFIG_CMDLINE_BOOL=y |
@@ -256,6 +260,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
256 | # CONFIG_PCI_MSI is not set | 260 | # CONFIG_PCI_MSI is not set |
257 | CONFIG_PCI_LEGACY=y | 261 | CONFIG_PCI_LEGACY=y |
258 | # CONFIG_PCI_DEBUG is not set | 262 | # CONFIG_PCI_DEBUG is not set |
263 | # CONFIG_PCI_STUB is not set | ||
259 | # CONFIG_PCCARD is not set | 264 | # CONFIG_PCCARD is not set |
260 | # CONFIG_HOTPLUG_PCI is not set | 265 | # CONFIG_HOTPLUG_PCI is not set |
261 | # CONFIG_HAS_RAPIDIO is not set | 266 | # CONFIG_HAS_RAPIDIO is not set |
@@ -280,6 +285,8 @@ CONFIG_NET=y | |||
280 | # | 285 | # |
281 | # Networking options | 286 | # Networking options |
282 | # | 287 | # |
288 | # CONFIG_NET_NS is not set | ||
289 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
283 | CONFIG_PACKET=y | 290 | CONFIG_PACKET=y |
284 | # CONFIG_PACKET_MMAP is not set | 291 | # CONFIG_PACKET_MMAP is not set |
285 | CONFIG_UNIX=y | 292 | CONFIG_UNIX=y |
@@ -423,6 +430,7 @@ CONFIG_IP_NF_MANGLE=m | |||
423 | # CONFIG_ECONET is not set | 430 | # CONFIG_ECONET is not set |
424 | # CONFIG_WAN_ROUTER is not set | 431 | # CONFIG_WAN_ROUTER is not set |
425 | # CONFIG_NET_SCHED is not set | 432 | # CONFIG_NET_SCHED is not set |
433 | # CONFIG_DCB is not set | ||
426 | 434 | ||
427 | # | 435 | # |
428 | # Network testing | 436 | # Network testing |
@@ -438,8 +446,9 @@ CONFIG_WIRELESS=y | |||
438 | # CONFIG_CFG80211 is not set | 446 | # CONFIG_CFG80211 is not set |
439 | CONFIG_WIRELESS_OLD_REGULATORY=y | 447 | CONFIG_WIRELESS_OLD_REGULATORY=y |
440 | # CONFIG_WIRELESS_EXT is not set | 448 | # CONFIG_WIRELESS_EXT is not set |
449 | # CONFIG_LIB80211 is not set | ||
441 | # CONFIG_MAC80211 is not set | 450 | # CONFIG_MAC80211 is not set |
442 | # CONFIG_IEEE80211 is not set | 451 | # CONFIG_WIMAX is not set |
443 | # CONFIG_RFKILL is not set | 452 | # CONFIG_RFKILL is not set |
444 | # CONFIG_NET_9P is not set | 453 | # CONFIG_NET_9P is not set |
445 | 454 | ||
@@ -574,6 +583,10 @@ CONFIG_NETDEV_1000=y | |||
574 | # CONFIG_WLAN_PRE80211 is not set | 583 | # CONFIG_WLAN_PRE80211 is not set |
575 | # CONFIG_WLAN_80211 is not set | 584 | # CONFIG_WLAN_80211 is not set |
576 | # CONFIG_IWLWIFI_LEDS is not set | 585 | # CONFIG_IWLWIFI_LEDS is not set |
586 | |||
587 | # | ||
588 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
589 | # | ||
577 | # CONFIG_WAN is not set | 590 | # CONFIG_WAN is not set |
578 | # CONFIG_FDDI is not set | 591 | # CONFIG_FDDI is not set |
579 | # CONFIG_HIPPI is not set | 592 | # CONFIG_HIPPI is not set |
@@ -674,9 +687,12 @@ CONFIG_SERIAL_CORE=y | |||
674 | CONFIG_SERIAL_CORE_CONSOLE=y | 687 | CONFIG_SERIAL_CORE_CONSOLE=y |
675 | # CONFIG_SERIAL_JSM is not set | 688 | # CONFIG_SERIAL_JSM is not set |
676 | # CONFIG_SERIAL_OF_PLATFORM is not set | 689 | # CONFIG_SERIAL_OF_PLATFORM is not set |
690 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
677 | CONFIG_UNIX98_PTYS=y | 691 | CONFIG_UNIX98_PTYS=y |
692 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
678 | CONFIG_LEGACY_PTYS=y | 693 | CONFIG_LEGACY_PTYS=y |
679 | CONFIG_LEGACY_PTY_COUNT=256 | 694 | CONFIG_LEGACY_PTY_COUNT=256 |
695 | # CONFIG_HVC_UDBG is not set | ||
680 | # CONFIG_IPMI_HANDLER is not set | 696 | # CONFIG_IPMI_HANDLER is not set |
681 | CONFIG_HW_RANDOM=m | 697 | CONFIG_HW_RANDOM=m |
682 | # CONFIG_NVRAM is not set | 698 | # CONFIG_NVRAM is not set |
@@ -854,7 +870,6 @@ CONFIG_LOGO_LINUX_CLUT224=y | |||
854 | # CONFIG_DMADEVICES is not set | 870 | # CONFIG_DMADEVICES is not set |
855 | # CONFIG_UIO is not set | 871 | # CONFIG_UIO is not set |
856 | # CONFIG_STAGING is not set | 872 | # CONFIG_STAGING is not set |
857 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
858 | 873 | ||
859 | # | 874 | # |
860 | # File systems | 875 | # File systems |
@@ -870,6 +885,7 @@ CONFIG_EXT2_FS=y | |||
870 | CONFIG_FILE_LOCKING=y | 885 | CONFIG_FILE_LOCKING=y |
871 | # CONFIG_XFS_FS is not set | 886 | # CONFIG_XFS_FS is not set |
872 | # CONFIG_OCFS2_FS is not set | 887 | # CONFIG_OCFS2_FS is not set |
888 | # CONFIG_BTRFS_FS is not set | ||
873 | CONFIG_DNOTIFY=y | 889 | CONFIG_DNOTIFY=y |
874 | CONFIG_INOTIFY=y | 890 | CONFIG_INOTIFY=y |
875 | CONFIG_INOTIFY_USER=y | 891 | CONFIG_INOTIFY_USER=y |
@@ -906,10 +922,7 @@ CONFIG_TMPFS=y | |||
906 | # CONFIG_TMPFS_POSIX_ACL is not set | 922 | # CONFIG_TMPFS_POSIX_ACL is not set |
907 | # CONFIG_HUGETLB_PAGE is not set | 923 | # CONFIG_HUGETLB_PAGE is not set |
908 | # CONFIG_CONFIGFS_FS is not set | 924 | # CONFIG_CONFIGFS_FS is not set |
909 | 925 | CONFIG_MISC_FILESYSTEMS=y | |
910 | # | ||
911 | # Miscellaneous filesystems | ||
912 | # | ||
913 | # CONFIG_ADFS_FS is not set | 926 | # CONFIG_ADFS_FS is not set |
914 | # CONFIG_AFFS_FS is not set | 927 | # CONFIG_AFFS_FS is not set |
915 | # CONFIG_HFS_FS is not set | 928 | # CONFIG_HFS_FS is not set |
@@ -918,6 +931,7 @@ CONFIG_TMPFS=y | |||
918 | # CONFIG_BFS_FS is not set | 931 | # CONFIG_BFS_FS is not set |
919 | # CONFIG_EFS_FS is not set | 932 | # CONFIG_EFS_FS is not set |
920 | CONFIG_CRAMFS=y | 933 | CONFIG_CRAMFS=y |
934 | # CONFIG_SQUASHFS is not set | ||
921 | # CONFIG_VXFS_FS is not set | 935 | # CONFIG_VXFS_FS is not set |
922 | # CONFIG_MINIX_FS is not set | 936 | # CONFIG_MINIX_FS is not set |
923 | # CONFIG_OMFS_FS is not set | 937 | # CONFIG_OMFS_FS is not set |
@@ -997,6 +1011,7 @@ CONFIG_NLS_UTF8=m | |||
997 | # Library routines | 1011 | # Library routines |
998 | # | 1012 | # |
999 | CONFIG_BITREVERSE=y | 1013 | CONFIG_BITREVERSE=y |
1014 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1000 | CONFIG_CRC_CCITT=y | 1015 | CONFIG_CRC_CCITT=y |
1001 | # CONFIG_CRC16 is not set | 1016 | # CONFIG_CRC16 is not set |
1002 | # CONFIG_CRC_T10DIF is not set | 1017 | # CONFIG_CRC_T10DIF is not set |
@@ -1046,6 +1061,7 @@ CONFIG_DEBUG_INFO=y | |||
1046 | CONFIG_DEBUG_MEMORY_INIT=y | 1061 | CONFIG_DEBUG_MEMORY_INIT=y |
1047 | # CONFIG_DEBUG_LIST is not set | 1062 | # CONFIG_DEBUG_LIST is not set |
1048 | # CONFIG_DEBUG_SG is not set | 1063 | # CONFIG_DEBUG_SG is not set |
1064 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1049 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1065 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1050 | # CONFIG_RCU_TORTURE_TEST is not set | 1066 | # CONFIG_RCU_TORTURE_TEST is not set |
1051 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1067 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1055,6 +1071,8 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1055 | # CONFIG_LATENCYTOP is not set | 1071 | # CONFIG_LATENCYTOP is not set |
1056 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1072 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1057 | CONFIG_HAVE_FUNCTION_TRACER=y | 1073 | CONFIG_HAVE_FUNCTION_TRACER=y |
1074 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1075 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1058 | 1076 | ||
1059 | # | 1077 | # |
1060 | # Tracers | 1078 | # Tracers |
@@ -1064,11 +1082,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1064 | # CONFIG_SCHED_TRACER is not set | 1082 | # CONFIG_SCHED_TRACER is not set |
1065 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1083 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1066 | # CONFIG_BOOT_TRACER is not set | 1084 | # CONFIG_BOOT_TRACER is not set |
1085 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1067 | # CONFIG_STACK_TRACER is not set | 1086 | # CONFIG_STACK_TRACER is not set |
1068 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1087 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1069 | # CONFIG_SAMPLES is not set | 1088 | # CONFIG_SAMPLES is not set |
1070 | CONFIG_HAVE_ARCH_KGDB=y | 1089 | CONFIG_HAVE_ARCH_KGDB=y |
1071 | # CONFIG_KGDB is not set | 1090 | # CONFIG_KGDB is not set |
1091 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1072 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1092 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1073 | # CONFIG_DEBUG_STACK_USAGE is not set | 1093 | # CONFIG_DEBUG_STACK_USAGE is not set |
1074 | # CONFIG_DEBUG_PAGEALLOC is not set | 1094 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1094,6 +1114,7 @@ CONFIG_CRYPTO=y | |||
1094 | # | 1114 | # |
1095 | # CONFIG_CRYPTO_FIPS is not set | 1115 | # CONFIG_CRYPTO_FIPS is not set |
1096 | # CONFIG_CRYPTO_MANAGER is not set | 1116 | # CONFIG_CRYPTO_MANAGER is not set |
1117 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1097 | # CONFIG_CRYPTO_GF128MUL is not set | 1118 | # CONFIG_CRYPTO_GF128MUL is not set |
1098 | # CONFIG_CRYPTO_NULL is not set | 1119 | # CONFIG_CRYPTO_NULL is not set |
1099 | # CONFIG_CRYPTO_CRYPTD is not set | 1120 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/40x/walnut_defconfig b/arch/powerpc/configs/40x/walnut_defconfig index 5820e0a4fc55..5ab29dddd21c 100644 --- a/arch/powerpc/configs/40x/walnut_defconfig +++ b/arch/powerpc/configs/40x/walnut_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 08:49:27 2008 | 4 | # Tue Jan 20 08:17:57 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=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_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_POSIX_MQUEUE=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -89,6 +90,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 92 | CONFIG_KALLSYMS_ALL=y |
93 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | CONFIG_KALLSYMS_EXTRA_PASS=y | 94 | CONFIG_KALLSYMS_EXTRA_PASS=y |
93 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 134 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 138 | ||
@@ -151,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
155 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 157 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
156 | 158 | ||
@@ -185,6 +187,7 @@ CONFIG_IBM405_ERR51=y | |||
185 | # CONFIG_CPU_FREQ is not set | 187 | # CONFIG_CPU_FREQ is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
187 | CONFIG_OF_RTC=y | 189 | CONFIG_OF_RTC=y |
190 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 191 | ||
189 | # | 192 | # |
190 | # Kernel options | 193 | # Kernel options |
@@ -208,6 +211,7 @@ CONFIG_BINFMT_ELF=y | |||
208 | # CONFIG_BINFMT_MISC is not set | 211 | # CONFIG_BINFMT_MISC is not set |
209 | # CONFIG_MATH_EMULATION is not set | 212 | # CONFIG_MATH_EMULATION is not set |
210 | # CONFIG_IOMMU_HELPER is not set | 213 | # CONFIG_IOMMU_HELPER is not set |
214 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
211 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
212 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 216 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
213 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | CONFIG_RESOURCES_64BIT=y | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -251,6 +257,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
251 | # CONFIG_PCI_MSI is not set | 257 | # CONFIG_PCI_MSI is not set |
252 | # CONFIG_PCI_LEGACY is not set | 258 | # CONFIG_PCI_LEGACY is not set |
253 | # CONFIG_PCI_DEBUG is not set | 259 | # CONFIG_PCI_DEBUG is not set |
260 | # CONFIG_PCI_STUB is not set | ||
254 | # CONFIG_PCCARD is not set | 261 | # CONFIG_PCCARD is not set |
255 | # CONFIG_HOTPLUG_PCI is not set | 262 | # CONFIG_HOTPLUG_PCI is not set |
256 | # CONFIG_HAS_RAPIDIO is not set | 263 | # CONFIG_HAS_RAPIDIO is not set |
@@ -275,6 +282,7 @@ CONFIG_NET=y | |||
275 | # | 282 | # |
276 | # Networking options | 283 | # Networking options |
277 | # | 284 | # |
285 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
278 | CONFIG_PACKET=y | 286 | CONFIG_PACKET=y |
279 | # CONFIG_PACKET_MMAP is not set | 287 | # CONFIG_PACKET_MMAP is not set |
280 | CONFIG_UNIX=y | 288 | CONFIG_UNIX=y |
@@ -325,6 +333,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
325 | # CONFIG_ECONET is not set | 333 | # CONFIG_ECONET is not set |
326 | # CONFIG_WAN_ROUTER is not set | 334 | # CONFIG_WAN_ROUTER is not set |
327 | # CONFIG_NET_SCHED is not set | 335 | # CONFIG_NET_SCHED is not set |
336 | # CONFIG_DCB is not set | ||
328 | 337 | ||
329 | # | 338 | # |
330 | # Network testing | 339 | # Network testing |
@@ -337,6 +346,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
337 | # CONFIG_AF_RXRPC is not set | 346 | # CONFIG_AF_RXRPC is not set |
338 | # CONFIG_PHONET is not set | 347 | # CONFIG_PHONET is not set |
339 | # CONFIG_WIRELESS is not set | 348 | # CONFIG_WIRELESS is not set |
349 | # CONFIG_WIMAX is not set | ||
340 | # CONFIG_RFKILL is not set | 350 | # CONFIG_RFKILL is not set |
341 | # CONFIG_NET_9P is not set | 351 | # CONFIG_NET_9P is not set |
342 | 352 | ||
@@ -362,6 +372,7 @@ CONFIG_MTD=y | |||
362 | # CONFIG_MTD_DEBUG is not set | 372 | # CONFIG_MTD_DEBUG is not set |
363 | # CONFIG_MTD_CONCAT is not set | 373 | # CONFIG_MTD_CONCAT is not set |
364 | CONFIG_MTD_PARTITIONS=y | 374 | CONFIG_MTD_PARTITIONS=y |
375 | # CONFIG_MTD_TESTS is not set | ||
365 | # CONFIG_MTD_REDBOOT_PARTS is not set | 376 | # CONFIG_MTD_REDBOOT_PARTS is not set |
366 | CONFIG_MTD_CMDLINE_PARTS=y | 377 | CONFIG_MTD_CMDLINE_PARTS=y |
367 | CONFIG_MTD_OF_PARTS=y | 378 | CONFIG_MTD_OF_PARTS=y |
@@ -434,6 +445,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
434 | # CONFIG_MTD_ONENAND is not set | 445 | # CONFIG_MTD_ONENAND is not set |
435 | 446 | ||
436 | # | 447 | # |
448 | # LPDDR flash memory drivers | ||
449 | # | ||
450 | # CONFIG_MTD_LPDDR is not set | ||
451 | # CONFIG_MTD_QINFO_PROBE is not set | ||
452 | |||
453 | # | ||
437 | # UBI - Unsorted block images | 454 | # UBI - Unsorted block images |
438 | # | 455 | # |
439 | # CONFIG_MTD_UBI is not set | 456 | # CONFIG_MTD_UBI is not set |
@@ -464,6 +481,7 @@ CONFIG_MISC_DEVICES=y | |||
464 | # CONFIG_TIFM_CORE is not set | 481 | # CONFIG_TIFM_CORE is not set |
465 | # CONFIG_ENCLOSURE_SERVICES is not set | 482 | # CONFIG_ENCLOSURE_SERVICES is not set |
466 | # CONFIG_HP_ILO is not set | 483 | # CONFIG_HP_ILO is not set |
484 | # CONFIG_C2PORT is not set | ||
467 | CONFIG_HAVE_IDE=y | 485 | CONFIG_HAVE_IDE=y |
468 | # CONFIG_IDE is not set | 486 | # CONFIG_IDE is not set |
469 | 487 | ||
@@ -546,6 +564,7 @@ CONFIG_NETDEV_1000=y | |||
546 | # CONFIG_JME is not set | 564 | # CONFIG_JME is not set |
547 | CONFIG_NETDEV_10000=y | 565 | CONFIG_NETDEV_10000=y |
548 | # CONFIG_CHELSIO_T1 is not set | 566 | # CONFIG_CHELSIO_T1 is not set |
567 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
549 | # CONFIG_CHELSIO_T3 is not set | 568 | # CONFIG_CHELSIO_T3 is not set |
550 | # CONFIG_ENIC is not set | 569 | # CONFIG_ENIC is not set |
551 | # CONFIG_IXGBE is not set | 570 | # CONFIG_IXGBE is not set |
@@ -568,6 +587,10 @@ CONFIG_NETDEV_10000=y | |||
568 | # CONFIG_WLAN_PRE80211 is not set | 587 | # CONFIG_WLAN_PRE80211 is not set |
569 | # CONFIG_WLAN_80211 is not set | 588 | # CONFIG_WLAN_80211 is not set |
570 | # CONFIG_IWLWIFI_LEDS is not set | 589 | # CONFIG_IWLWIFI_LEDS is not set |
590 | |||
591 | # | ||
592 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
593 | # | ||
571 | # CONFIG_WAN is not set | 594 | # CONFIG_WAN is not set |
572 | # CONFIG_FDDI is not set | 595 | # CONFIG_FDDI is not set |
573 | # CONFIG_HIPPI is not set | 596 | # CONFIG_HIPPI is not set |
@@ -620,9 +643,12 @@ CONFIG_SERIAL_CORE=y | |||
620 | CONFIG_SERIAL_CORE_CONSOLE=y | 643 | CONFIG_SERIAL_CORE_CONSOLE=y |
621 | # CONFIG_SERIAL_JSM is not set | 644 | # CONFIG_SERIAL_JSM is not set |
622 | CONFIG_SERIAL_OF_PLATFORM=y | 645 | CONFIG_SERIAL_OF_PLATFORM=y |
646 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
623 | CONFIG_UNIX98_PTYS=y | 647 | CONFIG_UNIX98_PTYS=y |
648 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
624 | CONFIG_LEGACY_PTYS=y | 649 | CONFIG_LEGACY_PTYS=y |
625 | CONFIG_LEGACY_PTY_COUNT=256 | 650 | CONFIG_LEGACY_PTY_COUNT=256 |
651 | # CONFIG_HVC_UDBG is not set | ||
626 | # CONFIG_IPMI_HANDLER is not set | 652 | # CONFIG_IPMI_HANDLER is not set |
627 | # CONFIG_HW_RANDOM is not set | 653 | # CONFIG_HW_RANDOM is not set |
628 | # CONFIG_NVRAM is not set | 654 | # CONFIG_NVRAM is not set |
@@ -641,11 +667,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
641 | # CONFIG_HWMON is not set | 667 | # CONFIG_HWMON is not set |
642 | CONFIG_THERMAL=y | 668 | CONFIG_THERMAL=y |
643 | # CONFIG_WATCHDOG is not set | 669 | # CONFIG_WATCHDOG is not set |
670 | CONFIG_SSB_POSSIBLE=y | ||
644 | 671 | ||
645 | # | 672 | # |
646 | # Sonics Silicon Backplane | 673 | # Sonics Silicon Backplane |
647 | # | 674 | # |
648 | CONFIG_SSB_POSSIBLE=y | ||
649 | # CONFIG_SSB is not set | 675 | # CONFIG_SSB is not set |
650 | 676 | ||
651 | # | 677 | # |
@@ -655,7 +681,7 @@ CONFIG_SSB_POSSIBLE=y | |||
655 | # CONFIG_MFD_SM501 is not set | 681 | # CONFIG_MFD_SM501 is not set |
656 | # CONFIG_HTC_PASIC3 is not set | 682 | # CONFIG_HTC_PASIC3 is not set |
657 | # CONFIG_MFD_TMIO is not set | 683 | # CONFIG_MFD_TMIO is not set |
658 | # CONFIG_MFD_WM8400 is not set | 684 | # CONFIG_REGULATOR is not set |
659 | 685 | ||
660 | # | 686 | # |
661 | # Multimedia devices | 687 | # Multimedia devices |
@@ -701,9 +727,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
701 | # | 727 | # |
702 | 728 | ||
703 | # | 729 | # |
704 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 730 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
705 | # | 731 | # |
706 | # CONFIG_USB_GADGET is not set | 732 | # CONFIG_USB_GADGET is not set |
733 | |||
734 | # | ||
735 | # OTG and related infrastructure | ||
736 | # | ||
707 | # CONFIG_UWB is not set | 737 | # CONFIG_UWB is not set |
708 | # CONFIG_MMC is not set | 738 | # CONFIG_MMC is not set |
709 | # CONFIG_MEMSTICK is not set | 739 | # CONFIG_MEMSTICK is not set |
@@ -729,7 +759,9 @@ CONFIG_EXT2_FS=y | |||
729 | # CONFIG_FS_POSIX_ACL is not set | 759 | # CONFIG_FS_POSIX_ACL is not set |
730 | CONFIG_FILE_LOCKING=y | 760 | CONFIG_FILE_LOCKING=y |
731 | # CONFIG_XFS_FS is not set | 761 | # CONFIG_XFS_FS is not set |
762 | # CONFIG_GFS2_FS is not set | ||
732 | # CONFIG_OCFS2_FS is not set | 763 | # CONFIG_OCFS2_FS is not set |
764 | # CONFIG_BTRFS_FS is not set | ||
733 | CONFIG_DNOTIFY=y | 765 | CONFIG_DNOTIFY=y |
734 | CONFIG_INOTIFY=y | 766 | CONFIG_INOTIFY=y |
735 | CONFIG_INOTIFY_USER=y | 767 | CONFIG_INOTIFY_USER=y |
@@ -763,10 +795,7 @@ CONFIG_TMPFS=y | |||
763 | # CONFIG_TMPFS_POSIX_ACL is not set | 795 | # CONFIG_TMPFS_POSIX_ACL is not set |
764 | # CONFIG_HUGETLB_PAGE is not set | 796 | # CONFIG_HUGETLB_PAGE is not set |
765 | # CONFIG_CONFIGFS_FS is not set | 797 | # CONFIG_CONFIGFS_FS is not set |
766 | 798 | CONFIG_MISC_FILESYSTEMS=y | |
767 | # | ||
768 | # Miscellaneous filesystems | ||
769 | # | ||
770 | # CONFIG_ADFS_FS is not set | 799 | # CONFIG_ADFS_FS is not set |
771 | # CONFIG_AFFS_FS is not set | 800 | # CONFIG_AFFS_FS is not set |
772 | # CONFIG_HFS_FS is not set | 801 | # CONFIG_HFS_FS is not set |
@@ -776,6 +805,7 @@ CONFIG_TMPFS=y | |||
776 | # CONFIG_EFS_FS is not set | 805 | # CONFIG_EFS_FS is not set |
777 | # CONFIG_JFFS2_FS is not set | 806 | # CONFIG_JFFS2_FS is not set |
778 | CONFIG_CRAMFS=y | 807 | CONFIG_CRAMFS=y |
808 | # CONFIG_SQUASHFS is not set | ||
779 | # CONFIG_VXFS_FS is not set | 809 | # CONFIG_VXFS_FS is not set |
780 | # CONFIG_MINIX_FS is not set | 810 | # CONFIG_MINIX_FS is not set |
781 | # CONFIG_OMFS_FS is not set | 811 | # CONFIG_OMFS_FS is not set |
@@ -816,6 +846,7 @@ CONFIG_MSDOS_PARTITION=y | |||
816 | # Library routines | 846 | # Library routines |
817 | # | 847 | # |
818 | CONFIG_BITREVERSE=y | 848 | CONFIG_BITREVERSE=y |
849 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
819 | # CONFIG_CRC_CCITT is not set | 850 | # CONFIG_CRC_CCITT is not set |
820 | # CONFIG_CRC16 is not set | 851 | # CONFIG_CRC16 is not set |
821 | # CONFIG_CRC_T10DIF is not set | 852 | # CONFIG_CRC_T10DIF is not set |
@@ -866,6 +897,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
866 | # CONFIG_DEBUG_MEMORY_INIT is not set | 897 | # CONFIG_DEBUG_MEMORY_INIT is not set |
867 | # CONFIG_DEBUG_LIST is not set | 898 | # CONFIG_DEBUG_LIST is not set |
868 | # CONFIG_DEBUG_SG is not set | 899 | # CONFIG_DEBUG_SG is not set |
900 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
869 | # CONFIG_BOOT_PRINTK_DELAY is not set | 901 | # CONFIG_BOOT_PRINTK_DELAY is not set |
870 | # CONFIG_RCU_TORTURE_TEST is not set | 902 | # CONFIG_RCU_TORTURE_TEST is not set |
871 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 903 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -874,18 +906,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
874 | # CONFIG_FAULT_INJECTION is not set | 906 | # CONFIG_FAULT_INJECTION is not set |
875 | # CONFIG_LATENCYTOP is not set | 907 | # CONFIG_LATENCYTOP is not set |
876 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 908 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
877 | CONFIG_NOP_TRACER=y | 909 | CONFIG_HAVE_FUNCTION_TRACER=y |
878 | CONFIG_HAVE_FTRACE=y | ||
879 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 910 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
880 | # CONFIG_FTRACE is not set | 911 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
912 | |||
913 | # | ||
914 | # Tracers | ||
915 | # | ||
916 | # CONFIG_FUNCTION_TRACER is not set | ||
881 | # CONFIG_SCHED_TRACER is not set | 917 | # CONFIG_SCHED_TRACER is not set |
882 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 918 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
883 | # CONFIG_BOOT_TRACER is not set | 919 | # CONFIG_BOOT_TRACER is not set |
920 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
884 | # CONFIG_STACK_TRACER is not set | 921 | # CONFIG_STACK_TRACER is not set |
885 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 922 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
886 | # CONFIG_SAMPLES is not set | 923 | # CONFIG_SAMPLES is not set |
887 | CONFIG_HAVE_ARCH_KGDB=y | 924 | CONFIG_HAVE_ARCH_KGDB=y |
888 | # CONFIG_KGDB is not set | 925 | # CONFIG_KGDB is not set |
926 | CONFIG_PRINT_STACK_DEPTH=64 | ||
889 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 927 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
890 | # CONFIG_DEBUG_STACK_USAGE is not set | 928 | # CONFIG_DEBUG_STACK_USAGE is not set |
891 | # CONFIG_DEBUG_PAGEALLOC is not set | 929 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -912,11 +950,15 @@ CONFIG_CRYPTO=y | |||
912 | # | 950 | # |
913 | # CONFIG_CRYPTO_FIPS is not set | 951 | # CONFIG_CRYPTO_FIPS is not set |
914 | CONFIG_CRYPTO_ALGAPI=y | 952 | CONFIG_CRYPTO_ALGAPI=y |
915 | CONFIG_CRYPTO_AEAD=y | 953 | CONFIG_CRYPTO_ALGAPI2=y |
954 | CONFIG_CRYPTO_AEAD2=y | ||
916 | CONFIG_CRYPTO_BLKCIPHER=y | 955 | CONFIG_CRYPTO_BLKCIPHER=y |
956 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
917 | CONFIG_CRYPTO_HASH=y | 957 | CONFIG_CRYPTO_HASH=y |
918 | CONFIG_CRYPTO_RNG=y | 958 | CONFIG_CRYPTO_HASH2=y |
959 | CONFIG_CRYPTO_RNG2=y | ||
919 | CONFIG_CRYPTO_MANAGER=y | 960 | CONFIG_CRYPTO_MANAGER=y |
961 | CONFIG_CRYPTO_MANAGER2=y | ||
920 | # CONFIG_CRYPTO_GF128MUL is not set | 962 | # CONFIG_CRYPTO_GF128MUL is not set |
921 | # CONFIG_CRYPTO_NULL is not set | 963 | # CONFIG_CRYPTO_NULL is not set |
922 | # CONFIG_CRYPTO_CRYPTD is not set | 964 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/arches_defconfig b/arch/powerpc/configs/44x/arches_defconfig index 082158d591c5..1d72b0ac3f25 100644 --- a/arch/powerpc/configs/44x/arches_defconfig +++ b/arch/powerpc/configs/44x/arches_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:04 2008 | 4 | # Tue Jan 20 08:22:31 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,8 +76,8 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | # CONFIG_GROUP_SCHED is not set | 79 | # CONFIG_GROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -111,7 +112,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 116 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 133 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 137 | ||
@@ -151,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
155 | CONFIG_PPC4xx_PCI_EXPRESS=y | 156 | CONFIG_PPC4xx_PCI_EXPRESS=y |
156 | 157 | ||
@@ -188,6 +189,7 @@ CONFIG_460EX=y | |||
188 | # CONFIG_GENERIC_IOMAP is not set | 189 | # CONFIG_GENERIC_IOMAP is not set |
189 | # CONFIG_CPU_FREQ is not set | 190 | # CONFIG_CPU_FREQ is not set |
190 | # CONFIG_FSL_ULI1575 is not set | 191 | # CONFIG_FSL_ULI1575 is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
191 | 193 | ||
192 | # | 194 | # |
193 | # Kernel options | 195 | # Kernel options |
@@ -212,6 +214,7 @@ CONFIG_BINFMT_ELF=y | |||
212 | # CONFIG_BINFMT_MISC is not set | 214 | # CONFIG_BINFMT_MISC is not set |
213 | # CONFIG_MATH_EMULATION is not set | 215 | # CONFIG_MATH_EMULATION is not set |
214 | # CONFIG_IOMMU_HELPER is not set | 216 | # CONFIG_IOMMU_HELPER is not set |
217 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
216 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 219 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -226,12 +229,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 231 | CONFIG_MIGRATION=y |
229 | CONFIG_RESOURCES_64BIT=y | ||
230 | CONFIG_PHYS_ADDR_T_64BIT=y | 232 | CONFIG_PHYS_ADDR_T_64BIT=y |
231 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 235 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 236 | CONFIG_UNEVICTABLE_LRU=y |
237 | CONFIG_PPC_4K_PAGES=y | ||
238 | # CONFIG_PPC_16K_PAGES is not set | ||
239 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 240 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | CONFIG_PROC_DEVICETREE=y | 241 | CONFIG_PROC_DEVICETREE=y |
237 | CONFIG_CMDLINE_BOOL=y | 242 | CONFIG_CMDLINE_BOOL=y |
@@ -255,6 +260,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
255 | # CONFIG_PCI_MSI is not set | 260 | # CONFIG_PCI_MSI is not set |
256 | CONFIG_PCI_LEGACY=y | 261 | CONFIG_PCI_LEGACY=y |
257 | # CONFIG_PCI_DEBUG is not set | 262 | # CONFIG_PCI_DEBUG is not set |
263 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_PCCARD is not set | 264 | # CONFIG_PCCARD is not set |
259 | # CONFIG_HOTPLUG_PCI is not set | 265 | # CONFIG_HOTPLUG_PCI is not set |
260 | # CONFIG_HAS_RAPIDIO is not set | 266 | # CONFIG_HAS_RAPIDIO is not set |
@@ -279,6 +285,7 @@ CONFIG_NET=y | |||
279 | # | 285 | # |
280 | # Networking options | 286 | # Networking options |
281 | # | 287 | # |
288 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
283 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
@@ -329,6 +336,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
329 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
330 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
331 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
339 | # CONFIG_DCB is not set | ||
332 | 340 | ||
333 | # | 341 | # |
334 | # Network testing | 342 | # Network testing |
@@ -341,6 +349,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
341 | # CONFIG_AF_RXRPC is not set | 349 | # CONFIG_AF_RXRPC is not set |
342 | # CONFIG_PHONET is not set | 350 | # CONFIG_PHONET is not set |
343 | # CONFIG_WIRELESS is not set | 351 | # CONFIG_WIRELESS is not set |
352 | # CONFIG_WIMAX is not set | ||
344 | # CONFIG_RFKILL is not set | 353 | # CONFIG_RFKILL is not set |
345 | # CONFIG_NET_9P is not set | 354 | # CONFIG_NET_9P is not set |
346 | 355 | ||
@@ -453,6 +462,10 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
453 | # CONFIG_WLAN_PRE80211 is not set | 462 | # CONFIG_WLAN_PRE80211 is not set |
454 | # CONFIG_WLAN_80211 is not set | 463 | # CONFIG_WLAN_80211 is not set |
455 | # CONFIG_IWLWIFI_LEDS is not set | 464 | # CONFIG_IWLWIFI_LEDS is not set |
465 | |||
466 | # | ||
467 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
468 | # | ||
456 | # CONFIG_WAN is not set | 469 | # CONFIG_WAN is not set |
457 | # CONFIG_FDDI is not set | 470 | # CONFIG_FDDI is not set |
458 | # CONFIG_HIPPI is not set | 471 | # CONFIG_HIPPI is not set |
@@ -505,9 +518,12 @@ CONFIG_SERIAL_CORE=y | |||
505 | CONFIG_SERIAL_CORE_CONSOLE=y | 518 | CONFIG_SERIAL_CORE_CONSOLE=y |
506 | # CONFIG_SERIAL_JSM is not set | 519 | # CONFIG_SERIAL_JSM is not set |
507 | CONFIG_SERIAL_OF_PLATFORM=y | 520 | CONFIG_SERIAL_OF_PLATFORM=y |
521 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
508 | CONFIG_UNIX98_PTYS=y | 522 | CONFIG_UNIX98_PTYS=y |
523 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
509 | CONFIG_LEGACY_PTYS=y | 524 | CONFIG_LEGACY_PTYS=y |
510 | CONFIG_LEGACY_PTY_COUNT=256 | 525 | CONFIG_LEGACY_PTY_COUNT=256 |
526 | # CONFIG_HVC_UDBG is not set | ||
511 | # CONFIG_IPMI_HANDLER is not set | 527 | # CONFIG_IPMI_HANDLER is not set |
512 | # CONFIG_HW_RANDOM is not set | 528 | # CONFIG_HW_RANDOM is not set |
513 | # CONFIG_NVRAM is not set | 529 | # CONFIG_NVRAM is not set |
@@ -527,11 +543,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
527 | # CONFIG_THERMAL is not set | 543 | # CONFIG_THERMAL is not set |
528 | # CONFIG_THERMAL_HWMON is not set | 544 | # CONFIG_THERMAL_HWMON is not set |
529 | # CONFIG_WATCHDOG is not set | 545 | # CONFIG_WATCHDOG is not set |
546 | CONFIG_SSB_POSSIBLE=y | ||
530 | 547 | ||
531 | # | 548 | # |
532 | # Sonics Silicon Backplane | 549 | # Sonics Silicon Backplane |
533 | # | 550 | # |
534 | CONFIG_SSB_POSSIBLE=y | ||
535 | # CONFIG_SSB is not set | 551 | # CONFIG_SSB is not set |
536 | 552 | ||
537 | # | 553 | # |
@@ -541,7 +557,7 @@ CONFIG_SSB_POSSIBLE=y | |||
541 | # CONFIG_MFD_SM501 is not set | 557 | # CONFIG_MFD_SM501 is not set |
542 | # CONFIG_HTC_PASIC3 is not set | 558 | # CONFIG_HTC_PASIC3 is not set |
543 | # CONFIG_MFD_TMIO is not set | 559 | # CONFIG_MFD_TMIO is not set |
544 | # CONFIG_MFD_WM8400 is not set | 560 | # CONFIG_REGULATOR is not set |
545 | 561 | ||
546 | # | 562 | # |
547 | # Multimedia devices | 563 | # Multimedia devices |
@@ -600,7 +616,9 @@ CONFIG_EXT2_FS=y | |||
600 | # CONFIG_FS_POSIX_ACL is not set | 616 | # CONFIG_FS_POSIX_ACL is not set |
601 | CONFIG_FILE_LOCKING=y | 617 | CONFIG_FILE_LOCKING=y |
602 | # CONFIG_XFS_FS is not set | 618 | # CONFIG_XFS_FS is not set |
619 | # CONFIG_GFS2_FS is not set | ||
603 | # CONFIG_OCFS2_FS is not set | 620 | # CONFIG_OCFS2_FS is not set |
621 | # CONFIG_BTRFS_FS is not set | ||
604 | CONFIG_DNOTIFY=y | 622 | CONFIG_DNOTIFY=y |
605 | CONFIG_INOTIFY=y | 623 | CONFIG_INOTIFY=y |
606 | CONFIG_INOTIFY_USER=y | 624 | CONFIG_INOTIFY_USER=y |
@@ -634,10 +652,7 @@ CONFIG_TMPFS=y | |||
634 | # CONFIG_TMPFS_POSIX_ACL is not set | 652 | # CONFIG_TMPFS_POSIX_ACL is not set |
635 | # CONFIG_HUGETLB_PAGE is not set | 653 | # CONFIG_HUGETLB_PAGE is not set |
636 | # CONFIG_CONFIGFS_FS is not set | 654 | # CONFIG_CONFIGFS_FS is not set |
637 | 655 | CONFIG_MISC_FILESYSTEMS=y | |
638 | # | ||
639 | # Miscellaneous filesystems | ||
640 | # | ||
641 | # CONFIG_ADFS_FS is not set | 656 | # CONFIG_ADFS_FS is not set |
642 | # CONFIG_AFFS_FS is not set | 657 | # CONFIG_AFFS_FS is not set |
643 | # CONFIG_HFS_FS is not set | 658 | # CONFIG_HFS_FS is not set |
@@ -646,6 +661,7 @@ CONFIG_TMPFS=y | |||
646 | # CONFIG_BFS_FS is not set | 661 | # CONFIG_BFS_FS is not set |
647 | # CONFIG_EFS_FS is not set | 662 | # CONFIG_EFS_FS is not set |
648 | CONFIG_CRAMFS=y | 663 | CONFIG_CRAMFS=y |
664 | # CONFIG_SQUASHFS is not set | ||
649 | # CONFIG_VXFS_FS is not set | 665 | # CONFIG_VXFS_FS is not set |
650 | # CONFIG_MINIX_FS is not set | 666 | # CONFIG_MINIX_FS is not set |
651 | # CONFIG_OMFS_FS is not set | 667 | # CONFIG_OMFS_FS is not set |
@@ -686,6 +702,7 @@ CONFIG_MSDOS_PARTITION=y | |||
686 | # Library routines | 702 | # Library routines |
687 | # | 703 | # |
688 | CONFIG_BITREVERSE=y | 704 | CONFIG_BITREVERSE=y |
705 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
689 | # CONFIG_CRC_CCITT is not set | 706 | # CONFIG_CRC_CCITT is not set |
690 | # CONFIG_CRC16 is not set | 707 | # CONFIG_CRC16 is not set |
691 | # CONFIG_CRC_T10DIF is not set | 708 | # CONFIG_CRC_T10DIF is not set |
@@ -736,6 +753,7 @@ CONFIG_SCHED_DEBUG=y | |||
736 | # CONFIG_DEBUG_MEMORY_INIT is not set | 753 | # CONFIG_DEBUG_MEMORY_INIT is not set |
737 | # CONFIG_DEBUG_LIST is not set | 754 | # CONFIG_DEBUG_LIST is not set |
738 | # CONFIG_DEBUG_SG is not set | 755 | # CONFIG_DEBUG_SG is not set |
756 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
739 | # CONFIG_BOOT_PRINTK_DELAY is not set | 757 | # CONFIG_BOOT_PRINTK_DELAY is not set |
740 | # CONFIG_RCU_TORTURE_TEST is not set | 758 | # CONFIG_RCU_TORTURE_TEST is not set |
741 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 759 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -744,18 +762,24 @@ CONFIG_SCHED_DEBUG=y | |||
744 | # CONFIG_FAULT_INJECTION is not set | 762 | # CONFIG_FAULT_INJECTION is not set |
745 | # CONFIG_LATENCYTOP is not set | 763 | # CONFIG_LATENCYTOP is not set |
746 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 764 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
747 | CONFIG_NOP_TRACER=y | 765 | CONFIG_HAVE_FUNCTION_TRACER=y |
748 | CONFIG_HAVE_FTRACE=y | ||
749 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 766 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
750 | # CONFIG_FTRACE is not set | 767 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
768 | |||
769 | # | ||
770 | # Tracers | ||
771 | # | ||
772 | # CONFIG_FUNCTION_TRACER is not set | ||
751 | # CONFIG_SCHED_TRACER is not set | 773 | # CONFIG_SCHED_TRACER is not set |
752 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 774 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
753 | # CONFIG_BOOT_TRACER is not set | 775 | # CONFIG_BOOT_TRACER is not set |
776 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
754 | # CONFIG_STACK_TRACER is not set | 777 | # CONFIG_STACK_TRACER is not set |
755 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 778 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
756 | # CONFIG_SAMPLES is not set | 779 | # CONFIG_SAMPLES is not set |
757 | CONFIG_HAVE_ARCH_KGDB=y | 780 | CONFIG_HAVE_ARCH_KGDB=y |
758 | # CONFIG_KGDB is not set | 781 | # CONFIG_KGDB is not set |
782 | CONFIG_PRINT_STACK_DEPTH=64 | ||
759 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 783 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
760 | # CONFIG_DEBUG_STACK_USAGE is not set | 784 | # CONFIG_DEBUG_STACK_USAGE is not set |
761 | # CONFIG_DEBUG_PAGEALLOC is not set | 785 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/44x/bamboo_defconfig b/arch/powerpc/configs/44x/bamboo_defconfig index f47c2f3420f6..959bdc43a491 100644 --- a/arch/powerpc/configs/44x/bamboo_defconfig +++ b/arch/powerpc/configs/44x/bamboo_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:06 2008 | 4 | # Tue Jan 20 08:22:33 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,12 +76,12 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 80 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -115,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +126,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 131 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +133,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
139 | CONFIG_LBD=y | 137 | CONFIG_LBD=y |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 141 | ||
@@ -155,6 +152,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 154 | CONFIG_CLASSIC_RCU=y |
155 | # CONFIG_TREE_RCU is not set | ||
156 | # CONFIG_PREEMPT_RCU is not set | ||
157 | # CONFIG_TREE_RCU_TRACE is not set | ||
158 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
160 | 161 | ||
@@ -193,6 +194,7 @@ CONFIG_IBM440EP_ERR42=y | |||
193 | # CONFIG_GENERIC_IOMAP is not set | 194 | # CONFIG_GENERIC_IOMAP is not set |
194 | # CONFIG_CPU_FREQ is not set | 195 | # CONFIG_CPU_FREQ is not set |
195 | # CONFIG_FSL_ULI1575 is not set | 196 | # CONFIG_FSL_ULI1575 is not set |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
196 | 198 | ||
197 | # | 199 | # |
198 | # Kernel options | 200 | # Kernel options |
@@ -216,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
216 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
217 | # CONFIG_MATH_EMULATION is not set | 219 | # CONFIG_MATH_EMULATION is not set |
218 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
220 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -230,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
230 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
232 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
233 | CONFIG_RESOURCES_64BIT=y | ||
234 | CONFIG_PHYS_ADDR_T_64BIT=y | 236 | CONFIG_PHYS_ADDR_T_64BIT=y |
235 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
236 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
237 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
238 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
241 | CONFIG_CMDLINE_BOOL=y | 246 | CONFIG_CMDLINE_BOOL=y |
@@ -259,6 +264,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
259 | # CONFIG_PCI_MSI is not set | 264 | # CONFIG_PCI_MSI is not set |
260 | CONFIG_PCI_LEGACY=y | 265 | CONFIG_PCI_LEGACY=y |
261 | # CONFIG_PCI_DEBUG is not set | 266 | # CONFIG_PCI_DEBUG is not set |
267 | # CONFIG_PCI_STUB is not set | ||
262 | # CONFIG_PCCARD is not set | 268 | # CONFIG_PCCARD is not set |
263 | # CONFIG_HOTPLUG_PCI is not set | 269 | # CONFIG_HOTPLUG_PCI is not set |
264 | # CONFIG_HAS_RAPIDIO is not set | 270 | # CONFIG_HAS_RAPIDIO is not set |
@@ -283,6 +289,7 @@ CONFIG_NET=y | |||
283 | # | 289 | # |
284 | # Networking options | 290 | # Networking options |
285 | # | 291 | # |
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
286 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
287 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
288 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
@@ -333,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
333 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
334 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
335 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
336 | 344 | ||
337 | # | 345 | # |
338 | # Network testing | 346 | # Network testing |
@@ -345,6 +353,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_AF_RXRPC is not set | 353 | # CONFIG_AF_RXRPC is not set |
346 | # CONFIG_PHONET is not set | 354 | # CONFIG_PHONET is not set |
347 | # CONFIG_WIRELESS is not set | 355 | # CONFIG_WIRELESS is not set |
356 | # CONFIG_WIMAX is not set | ||
348 | # CONFIG_RFKILL is not set | 357 | # CONFIG_RFKILL is not set |
349 | # CONFIG_NET_9P is not set | 358 | # CONFIG_NET_9P is not set |
350 | 359 | ||
@@ -394,6 +403,7 @@ CONFIG_MISC_DEVICES=y | |||
394 | # CONFIG_TIFM_CORE is not set | 403 | # CONFIG_TIFM_CORE is not set |
395 | # CONFIG_ENCLOSURE_SERVICES is not set | 404 | # CONFIG_ENCLOSURE_SERVICES is not set |
396 | # CONFIG_HP_ILO is not set | 405 | # CONFIG_HP_ILO is not set |
406 | # CONFIG_C2PORT is not set | ||
397 | CONFIG_HAVE_IDE=y | 407 | CONFIG_HAVE_IDE=y |
398 | # CONFIG_IDE is not set | 408 | # CONFIG_IDE is not set |
399 | 409 | ||
@@ -476,6 +486,7 @@ CONFIG_NETDEV_1000=y | |||
476 | # CONFIG_JME is not set | 486 | # CONFIG_JME is not set |
477 | CONFIG_NETDEV_10000=y | 487 | CONFIG_NETDEV_10000=y |
478 | # CONFIG_CHELSIO_T1 is not set | 488 | # CONFIG_CHELSIO_T1 is not set |
489 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
479 | # CONFIG_CHELSIO_T3 is not set | 490 | # CONFIG_CHELSIO_T3 is not set |
480 | # CONFIG_ENIC is not set | 491 | # CONFIG_ENIC is not set |
481 | # CONFIG_IXGBE is not set | 492 | # CONFIG_IXGBE is not set |
@@ -498,6 +509,10 @@ CONFIG_NETDEV_10000=y | |||
498 | # CONFIG_WLAN_PRE80211 is not set | 509 | # CONFIG_WLAN_PRE80211 is not set |
499 | # CONFIG_WLAN_80211 is not set | 510 | # CONFIG_WLAN_80211 is not set |
500 | # CONFIG_IWLWIFI_LEDS is not set | 511 | # CONFIG_IWLWIFI_LEDS is not set |
512 | |||
513 | # | ||
514 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
515 | # | ||
501 | # CONFIG_WAN is not set | 516 | # CONFIG_WAN is not set |
502 | # CONFIG_FDDI is not set | 517 | # CONFIG_FDDI is not set |
503 | # CONFIG_HIPPI is not set | 518 | # CONFIG_HIPPI is not set |
@@ -550,9 +565,12 @@ CONFIG_SERIAL_CORE=y | |||
550 | CONFIG_SERIAL_CORE_CONSOLE=y | 565 | CONFIG_SERIAL_CORE_CONSOLE=y |
551 | # CONFIG_SERIAL_JSM is not set | 566 | # CONFIG_SERIAL_JSM is not set |
552 | CONFIG_SERIAL_OF_PLATFORM=y | 567 | CONFIG_SERIAL_OF_PLATFORM=y |
568 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
553 | CONFIG_UNIX98_PTYS=y | 569 | CONFIG_UNIX98_PTYS=y |
570 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
554 | CONFIG_LEGACY_PTYS=y | 571 | CONFIG_LEGACY_PTYS=y |
555 | CONFIG_LEGACY_PTY_COUNT=256 | 572 | CONFIG_LEGACY_PTY_COUNT=256 |
573 | # CONFIG_HVC_UDBG is not set | ||
556 | # CONFIG_IPMI_HANDLER is not set | 574 | # CONFIG_IPMI_HANDLER is not set |
557 | # CONFIG_HW_RANDOM is not set | 575 | # CONFIG_HW_RANDOM is not set |
558 | # CONFIG_NVRAM is not set | 576 | # CONFIG_NVRAM is not set |
@@ -571,11 +589,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
571 | # CONFIG_HWMON is not set | 589 | # CONFIG_HWMON is not set |
572 | CONFIG_THERMAL=y | 590 | CONFIG_THERMAL=y |
573 | # CONFIG_WATCHDOG is not set | 591 | # CONFIG_WATCHDOG is not set |
592 | CONFIG_SSB_POSSIBLE=y | ||
574 | 593 | ||
575 | # | 594 | # |
576 | # Sonics Silicon Backplane | 595 | # Sonics Silicon Backplane |
577 | # | 596 | # |
578 | CONFIG_SSB_POSSIBLE=y | ||
579 | # CONFIG_SSB is not set | 597 | # CONFIG_SSB is not set |
580 | 598 | ||
581 | # | 599 | # |
@@ -585,7 +603,7 @@ CONFIG_SSB_POSSIBLE=y | |||
585 | # CONFIG_MFD_SM501 is not set | 603 | # CONFIG_MFD_SM501 is not set |
586 | # CONFIG_HTC_PASIC3 is not set | 604 | # CONFIG_HTC_PASIC3 is not set |
587 | # CONFIG_MFD_TMIO is not set | 605 | # CONFIG_MFD_TMIO is not set |
588 | # CONFIG_MFD_WM8400 is not set | 606 | # CONFIG_REGULATOR is not set |
589 | 607 | ||
590 | # | 608 | # |
591 | # Multimedia devices | 609 | # Multimedia devices |
@@ -631,9 +649,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
631 | # | 649 | # |
632 | 650 | ||
633 | # | 651 | # |
634 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 652 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
635 | # | 653 | # |
636 | # CONFIG_USB_GADGET is not set | 654 | # CONFIG_USB_GADGET is not set |
655 | |||
656 | # | ||
657 | # OTG and related infrastructure | ||
658 | # | ||
637 | # CONFIG_UWB is not set | 659 | # CONFIG_UWB is not set |
638 | # CONFIG_MMC is not set | 660 | # CONFIG_MMC is not set |
639 | # CONFIG_MEMSTICK is not set | 661 | # CONFIG_MEMSTICK is not set |
@@ -659,7 +681,9 @@ CONFIG_EXT2_FS=y | |||
659 | # CONFIG_FS_POSIX_ACL is not set | 681 | # CONFIG_FS_POSIX_ACL is not set |
660 | CONFIG_FILE_LOCKING=y | 682 | CONFIG_FILE_LOCKING=y |
661 | # CONFIG_XFS_FS is not set | 683 | # CONFIG_XFS_FS is not set |
684 | # CONFIG_GFS2_FS is not set | ||
662 | # CONFIG_OCFS2_FS is not set | 685 | # CONFIG_OCFS2_FS is not set |
686 | # CONFIG_BTRFS_FS is not set | ||
663 | CONFIG_DNOTIFY=y | 687 | CONFIG_DNOTIFY=y |
664 | CONFIG_INOTIFY=y | 688 | CONFIG_INOTIFY=y |
665 | CONFIG_INOTIFY_USER=y | 689 | CONFIG_INOTIFY_USER=y |
@@ -693,10 +717,7 @@ CONFIG_TMPFS=y | |||
693 | # CONFIG_TMPFS_POSIX_ACL is not set | 717 | # CONFIG_TMPFS_POSIX_ACL is not set |
694 | # CONFIG_HUGETLB_PAGE is not set | 718 | # CONFIG_HUGETLB_PAGE is not set |
695 | # CONFIG_CONFIGFS_FS is not set | 719 | # CONFIG_CONFIGFS_FS is not set |
696 | 720 | CONFIG_MISC_FILESYSTEMS=y | |
697 | # | ||
698 | # Miscellaneous filesystems | ||
699 | # | ||
700 | # CONFIG_ADFS_FS is not set | 721 | # CONFIG_ADFS_FS is not set |
701 | # CONFIG_AFFS_FS is not set | 722 | # CONFIG_AFFS_FS is not set |
702 | # CONFIG_HFS_FS is not set | 723 | # CONFIG_HFS_FS is not set |
@@ -705,6 +726,7 @@ CONFIG_TMPFS=y | |||
705 | # CONFIG_BFS_FS is not set | 726 | # CONFIG_BFS_FS is not set |
706 | # CONFIG_EFS_FS is not set | 727 | # CONFIG_EFS_FS is not set |
707 | CONFIG_CRAMFS=y | 728 | CONFIG_CRAMFS=y |
729 | # CONFIG_SQUASHFS is not set | ||
708 | # CONFIG_VXFS_FS is not set | 730 | # CONFIG_VXFS_FS is not set |
709 | # CONFIG_MINIX_FS is not set | 731 | # CONFIG_MINIX_FS is not set |
710 | # CONFIG_OMFS_FS is not set | 732 | # CONFIG_OMFS_FS is not set |
@@ -745,6 +767,7 @@ CONFIG_MSDOS_PARTITION=y | |||
745 | # Library routines | 767 | # Library routines |
746 | # | 768 | # |
747 | CONFIG_BITREVERSE=y | 769 | CONFIG_BITREVERSE=y |
770 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
748 | # CONFIG_CRC_CCITT is not set | 771 | # CONFIG_CRC_CCITT is not set |
749 | # CONFIG_CRC16 is not set | 772 | # CONFIG_CRC16 is not set |
750 | # CONFIG_CRC_T10DIF is not set | 773 | # CONFIG_CRC_T10DIF is not set |
@@ -795,6 +818,7 @@ CONFIG_SCHED_DEBUG=y | |||
795 | # CONFIG_DEBUG_MEMORY_INIT is not set | 818 | # CONFIG_DEBUG_MEMORY_INIT is not set |
796 | # CONFIG_DEBUG_LIST is not set | 819 | # CONFIG_DEBUG_LIST is not set |
797 | # CONFIG_DEBUG_SG is not set | 820 | # CONFIG_DEBUG_SG is not set |
821 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
798 | # CONFIG_BOOT_PRINTK_DELAY is not set | 822 | # CONFIG_BOOT_PRINTK_DELAY is not set |
799 | # CONFIG_RCU_TORTURE_TEST is not set | 823 | # CONFIG_RCU_TORTURE_TEST is not set |
800 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 824 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -803,18 +827,24 @@ CONFIG_SCHED_DEBUG=y | |||
803 | # CONFIG_FAULT_INJECTION is not set | 827 | # CONFIG_FAULT_INJECTION is not set |
804 | # CONFIG_LATENCYTOP is not set | 828 | # CONFIG_LATENCYTOP is not set |
805 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 829 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
806 | CONFIG_NOP_TRACER=y | 830 | CONFIG_HAVE_FUNCTION_TRACER=y |
807 | CONFIG_HAVE_FTRACE=y | ||
808 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 831 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
809 | # CONFIG_FTRACE is not set | 832 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
833 | |||
834 | # | ||
835 | # Tracers | ||
836 | # | ||
837 | # CONFIG_FUNCTION_TRACER is not set | ||
810 | # CONFIG_SCHED_TRACER is not set | 838 | # CONFIG_SCHED_TRACER is not set |
811 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 839 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
812 | # CONFIG_BOOT_TRACER is not set | 840 | # CONFIG_BOOT_TRACER is not set |
841 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
813 | # CONFIG_STACK_TRACER is not set | 842 | # CONFIG_STACK_TRACER is not set |
814 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 843 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
815 | # CONFIG_SAMPLES is not set | 844 | # CONFIG_SAMPLES is not set |
816 | CONFIG_HAVE_ARCH_KGDB=y | 845 | CONFIG_HAVE_ARCH_KGDB=y |
817 | # CONFIG_KGDB is not set | 846 | # CONFIG_KGDB is not set |
847 | CONFIG_PRINT_STACK_DEPTH=64 | ||
818 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 848 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
819 | # CONFIG_DEBUG_STACK_USAGE is not set | 849 | # CONFIG_DEBUG_STACK_USAGE is not set |
820 | # CONFIG_DEBUG_PAGEALLOC is not set | 850 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -841,11 +871,15 @@ CONFIG_CRYPTO=y | |||
841 | # | 871 | # |
842 | # CONFIG_CRYPTO_FIPS is not set | 872 | # CONFIG_CRYPTO_FIPS is not set |
843 | CONFIG_CRYPTO_ALGAPI=y | 873 | CONFIG_CRYPTO_ALGAPI=y |
844 | CONFIG_CRYPTO_AEAD=y | 874 | CONFIG_CRYPTO_ALGAPI2=y |
875 | CONFIG_CRYPTO_AEAD2=y | ||
845 | CONFIG_CRYPTO_BLKCIPHER=y | 876 | CONFIG_CRYPTO_BLKCIPHER=y |
877 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
846 | CONFIG_CRYPTO_HASH=y | 878 | CONFIG_CRYPTO_HASH=y |
847 | CONFIG_CRYPTO_RNG=y | 879 | CONFIG_CRYPTO_HASH2=y |
880 | CONFIG_CRYPTO_RNG2=y | ||
848 | CONFIG_CRYPTO_MANAGER=y | 881 | CONFIG_CRYPTO_MANAGER=y |
882 | CONFIG_CRYPTO_MANAGER2=y | ||
849 | # CONFIG_CRYPTO_GF128MUL is not set | 883 | # CONFIG_CRYPTO_GF128MUL is not set |
850 | # CONFIG_CRYPTO_NULL is not set | 884 | # CONFIG_CRYPTO_NULL is not set |
851 | # CONFIG_CRYPTO_CRYPTD is not set | 885 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/canyonlands_defconfig b/arch/powerpc/configs/44x/canyonlands_defconfig index 0694756ac759..81cdcc4b9278 100644 --- a/arch/powerpc/configs/44x/canyonlands_defconfig +++ b/arch/powerpc/configs/44x/canyonlands_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:08 2008 | 4 | # Tue Jan 20 08:22:35 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,8 +76,8 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | # CONFIG_GROUP_SCHED is not set | 79 | # CONFIG_GROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -111,7 +112,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
116 | # CONFIG_KPROBES is not set | 116 | # CONFIG_KPROBES is not set |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -122,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 133 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 137 | ||
@@ -151,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
155 | CONFIG_PPC4xx_PCI_EXPRESS=y | 156 | CONFIG_PPC4xx_PCI_EXPRESS=y |
156 | 157 | ||
@@ -188,6 +189,7 @@ CONFIG_460EX=y | |||
188 | # CONFIG_GENERIC_IOMAP is not set | 189 | # CONFIG_GENERIC_IOMAP is not set |
189 | # CONFIG_CPU_FREQ is not set | 190 | # CONFIG_CPU_FREQ is not set |
190 | # CONFIG_FSL_ULI1575 is not set | 191 | # CONFIG_FSL_ULI1575 is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
191 | 193 | ||
192 | # | 194 | # |
193 | # Kernel options | 195 | # Kernel options |
@@ -212,6 +214,7 @@ CONFIG_BINFMT_ELF=y | |||
212 | # CONFIG_BINFMT_MISC is not set | 214 | # CONFIG_BINFMT_MISC is not set |
213 | # CONFIG_MATH_EMULATION is not set | 215 | # CONFIG_MATH_EMULATION is not set |
214 | # CONFIG_IOMMU_HELPER is not set | 216 | # CONFIG_IOMMU_HELPER is not set |
217 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
216 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 219 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -226,12 +229,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 231 | CONFIG_MIGRATION=y |
229 | CONFIG_RESOURCES_64BIT=y | ||
230 | CONFIG_PHYS_ADDR_T_64BIT=y | 232 | CONFIG_PHYS_ADDR_T_64BIT=y |
231 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 235 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 236 | CONFIG_UNEVICTABLE_LRU=y |
237 | CONFIG_PPC_4K_PAGES=y | ||
238 | # CONFIG_PPC_16K_PAGES is not set | ||
239 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 240 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | CONFIG_PROC_DEVICETREE=y | 241 | CONFIG_PROC_DEVICETREE=y |
237 | CONFIG_CMDLINE_BOOL=y | 242 | CONFIG_CMDLINE_BOOL=y |
@@ -255,6 +260,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
255 | # CONFIG_PCI_MSI is not set | 260 | # CONFIG_PCI_MSI is not set |
256 | CONFIG_PCI_LEGACY=y | 261 | CONFIG_PCI_LEGACY=y |
257 | # CONFIG_PCI_DEBUG is not set | 262 | # CONFIG_PCI_DEBUG is not set |
263 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_PCCARD is not set | 264 | # CONFIG_PCCARD is not set |
259 | # CONFIG_HOTPLUG_PCI is not set | 265 | # CONFIG_HOTPLUG_PCI is not set |
260 | # CONFIG_HAS_RAPIDIO is not set | 266 | # CONFIG_HAS_RAPIDIO is not set |
@@ -279,6 +285,7 @@ CONFIG_NET=y | |||
279 | # | 285 | # |
280 | # Networking options | 286 | # Networking options |
281 | # | 287 | # |
288 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
283 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
@@ -329,6 +336,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
329 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
330 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
331 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
339 | # CONFIG_DCB is not set | ||
332 | 340 | ||
333 | # | 341 | # |
334 | # Network testing | 342 | # Network testing |
@@ -341,6 +349,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
341 | # CONFIG_AF_RXRPC is not set | 349 | # CONFIG_AF_RXRPC is not set |
342 | # CONFIG_PHONET is not set | 350 | # CONFIG_PHONET is not set |
343 | # CONFIG_WIRELESS is not set | 351 | # CONFIG_WIRELESS is not set |
352 | # CONFIG_WIMAX is not set | ||
344 | # CONFIG_RFKILL is not set | 353 | # CONFIG_RFKILL is not set |
345 | # CONFIG_NET_9P is not set | 354 | # CONFIG_NET_9P is not set |
346 | 355 | ||
@@ -453,6 +462,10 @@ CONFIG_IBM_NEW_EMAC_EMAC4=y | |||
453 | # CONFIG_WLAN_PRE80211 is not set | 462 | # CONFIG_WLAN_PRE80211 is not set |
454 | # CONFIG_WLAN_80211 is not set | 463 | # CONFIG_WLAN_80211 is not set |
455 | # CONFIG_IWLWIFI_LEDS is not set | 464 | # CONFIG_IWLWIFI_LEDS is not set |
465 | |||
466 | # | ||
467 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
468 | # | ||
456 | # CONFIG_WAN is not set | 469 | # CONFIG_WAN is not set |
457 | # CONFIG_FDDI is not set | 470 | # CONFIG_FDDI is not set |
458 | # CONFIG_HIPPI is not set | 471 | # CONFIG_HIPPI is not set |
@@ -505,9 +518,12 @@ CONFIG_SERIAL_CORE=y | |||
505 | CONFIG_SERIAL_CORE_CONSOLE=y | 518 | CONFIG_SERIAL_CORE_CONSOLE=y |
506 | # CONFIG_SERIAL_JSM is not set | 519 | # CONFIG_SERIAL_JSM is not set |
507 | CONFIG_SERIAL_OF_PLATFORM=y | 520 | CONFIG_SERIAL_OF_PLATFORM=y |
521 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
508 | CONFIG_UNIX98_PTYS=y | 522 | CONFIG_UNIX98_PTYS=y |
523 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
509 | CONFIG_LEGACY_PTYS=y | 524 | CONFIG_LEGACY_PTYS=y |
510 | CONFIG_LEGACY_PTY_COUNT=256 | 525 | CONFIG_LEGACY_PTY_COUNT=256 |
526 | # CONFIG_HVC_UDBG is not set | ||
511 | # CONFIG_IPMI_HANDLER is not set | 527 | # CONFIG_IPMI_HANDLER is not set |
512 | # CONFIG_HW_RANDOM is not set | 528 | # CONFIG_HW_RANDOM is not set |
513 | # CONFIG_NVRAM is not set | 529 | # CONFIG_NVRAM is not set |
@@ -527,11 +543,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
527 | # CONFIG_THERMAL is not set | 543 | # CONFIG_THERMAL is not set |
528 | # CONFIG_THERMAL_HWMON is not set | 544 | # CONFIG_THERMAL_HWMON is not set |
529 | # CONFIG_WATCHDOG is not set | 545 | # CONFIG_WATCHDOG is not set |
546 | CONFIG_SSB_POSSIBLE=y | ||
530 | 547 | ||
531 | # | 548 | # |
532 | # Sonics Silicon Backplane | 549 | # Sonics Silicon Backplane |
533 | # | 550 | # |
534 | CONFIG_SSB_POSSIBLE=y | ||
535 | # CONFIG_SSB is not set | 551 | # CONFIG_SSB is not set |
536 | 552 | ||
537 | # | 553 | # |
@@ -541,7 +557,7 @@ CONFIG_SSB_POSSIBLE=y | |||
541 | # CONFIG_MFD_SM501 is not set | 557 | # CONFIG_MFD_SM501 is not set |
542 | # CONFIG_HTC_PASIC3 is not set | 558 | # CONFIG_HTC_PASIC3 is not set |
543 | # CONFIG_MFD_TMIO is not set | 559 | # CONFIG_MFD_TMIO is not set |
544 | # CONFIG_MFD_WM8400 is not set | 560 | # CONFIG_REGULATOR is not set |
545 | 561 | ||
546 | # | 562 | # |
547 | # Multimedia devices | 563 | # Multimedia devices |
@@ -600,7 +616,9 @@ CONFIG_EXT2_FS=y | |||
600 | # CONFIG_FS_POSIX_ACL is not set | 616 | # CONFIG_FS_POSIX_ACL is not set |
601 | CONFIG_FILE_LOCKING=y | 617 | CONFIG_FILE_LOCKING=y |
602 | # CONFIG_XFS_FS is not set | 618 | # CONFIG_XFS_FS is not set |
619 | # CONFIG_GFS2_FS is not set | ||
603 | # CONFIG_OCFS2_FS is not set | 620 | # CONFIG_OCFS2_FS is not set |
621 | # CONFIG_BTRFS_FS is not set | ||
604 | CONFIG_DNOTIFY=y | 622 | CONFIG_DNOTIFY=y |
605 | CONFIG_INOTIFY=y | 623 | CONFIG_INOTIFY=y |
606 | CONFIG_INOTIFY_USER=y | 624 | CONFIG_INOTIFY_USER=y |
@@ -634,10 +652,7 @@ CONFIG_TMPFS=y | |||
634 | # CONFIG_TMPFS_POSIX_ACL is not set | 652 | # CONFIG_TMPFS_POSIX_ACL is not set |
635 | # CONFIG_HUGETLB_PAGE is not set | 653 | # CONFIG_HUGETLB_PAGE is not set |
636 | # CONFIG_CONFIGFS_FS is not set | 654 | # CONFIG_CONFIGFS_FS is not set |
637 | 655 | CONFIG_MISC_FILESYSTEMS=y | |
638 | # | ||
639 | # Miscellaneous filesystems | ||
640 | # | ||
641 | # CONFIG_ADFS_FS is not set | 656 | # CONFIG_ADFS_FS is not set |
642 | # CONFIG_AFFS_FS is not set | 657 | # CONFIG_AFFS_FS is not set |
643 | # CONFIG_HFS_FS is not set | 658 | # CONFIG_HFS_FS is not set |
@@ -646,6 +661,7 @@ CONFIG_TMPFS=y | |||
646 | # CONFIG_BFS_FS is not set | 661 | # CONFIG_BFS_FS is not set |
647 | # CONFIG_EFS_FS is not set | 662 | # CONFIG_EFS_FS is not set |
648 | CONFIG_CRAMFS=y | 663 | CONFIG_CRAMFS=y |
664 | # CONFIG_SQUASHFS is not set | ||
649 | # CONFIG_VXFS_FS is not set | 665 | # CONFIG_VXFS_FS is not set |
650 | # CONFIG_MINIX_FS is not set | 666 | # CONFIG_MINIX_FS is not set |
651 | # CONFIG_OMFS_FS is not set | 667 | # CONFIG_OMFS_FS is not set |
@@ -686,6 +702,7 @@ CONFIG_MSDOS_PARTITION=y | |||
686 | # Library routines | 702 | # Library routines |
687 | # | 703 | # |
688 | CONFIG_BITREVERSE=y | 704 | CONFIG_BITREVERSE=y |
705 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
689 | # CONFIG_CRC_CCITT is not set | 706 | # CONFIG_CRC_CCITT is not set |
690 | # CONFIG_CRC16 is not set | 707 | # CONFIG_CRC16 is not set |
691 | # CONFIG_CRC_T10DIF is not set | 708 | # CONFIG_CRC_T10DIF is not set |
@@ -736,6 +753,7 @@ CONFIG_SCHED_DEBUG=y | |||
736 | # CONFIG_DEBUG_MEMORY_INIT is not set | 753 | # CONFIG_DEBUG_MEMORY_INIT is not set |
737 | # CONFIG_DEBUG_LIST is not set | 754 | # CONFIG_DEBUG_LIST is not set |
738 | # CONFIG_DEBUG_SG is not set | 755 | # CONFIG_DEBUG_SG is not set |
756 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
739 | # CONFIG_BOOT_PRINTK_DELAY is not set | 757 | # CONFIG_BOOT_PRINTK_DELAY is not set |
740 | # CONFIG_RCU_TORTURE_TEST is not set | 758 | # CONFIG_RCU_TORTURE_TEST is not set |
741 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 759 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -744,18 +762,24 @@ CONFIG_SCHED_DEBUG=y | |||
744 | # CONFIG_FAULT_INJECTION is not set | 762 | # CONFIG_FAULT_INJECTION is not set |
745 | # CONFIG_LATENCYTOP is not set | 763 | # CONFIG_LATENCYTOP is not set |
746 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 764 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
747 | CONFIG_NOP_TRACER=y | 765 | CONFIG_HAVE_FUNCTION_TRACER=y |
748 | CONFIG_HAVE_FTRACE=y | ||
749 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 766 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
750 | # CONFIG_FTRACE is not set | 767 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
768 | |||
769 | # | ||
770 | # Tracers | ||
771 | # | ||
772 | # CONFIG_FUNCTION_TRACER is not set | ||
751 | # CONFIG_SCHED_TRACER is not set | 773 | # CONFIG_SCHED_TRACER is not set |
752 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 774 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
753 | # CONFIG_BOOT_TRACER is not set | 775 | # CONFIG_BOOT_TRACER is not set |
776 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
754 | # CONFIG_STACK_TRACER is not set | 777 | # CONFIG_STACK_TRACER is not set |
755 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 778 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
756 | # CONFIG_SAMPLES is not set | 779 | # CONFIG_SAMPLES is not set |
757 | CONFIG_HAVE_ARCH_KGDB=y | 780 | CONFIG_HAVE_ARCH_KGDB=y |
758 | # CONFIG_KGDB is not set | 781 | # CONFIG_KGDB is not set |
782 | CONFIG_PRINT_STACK_DEPTH=64 | ||
759 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 783 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
760 | # CONFIG_DEBUG_STACK_USAGE is not set | 784 | # CONFIG_DEBUG_STACK_USAGE is not set |
761 | # CONFIG_DEBUG_PAGEALLOC is not set | 785 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/44x/ebony_defconfig b/arch/powerpc/configs/44x/ebony_defconfig index c9937578ef7f..be64aa644d15 100644 --- a/arch/powerpc/configs/44x/ebony_defconfig +++ b/arch/powerpc/configs/44x/ebony_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:09 2008 | 4 | # Tue Jan 20 08:22:36 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -74,12 +75,12 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
75 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
79 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
80 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
81 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
82 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -92,6 +93,7 @@ CONFIG_EMBEDDED=y | |||
92 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
93 | CONFIG_KALLSYMS=y | 94 | CONFIG_KALLSYMS=y |
94 | CONFIG_KALLSYMS_ALL=y | 95 | CONFIG_KALLSYMS_ALL=y |
96 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
95 | CONFIG_KALLSYMS_EXTRA_PASS=y | 97 | CONFIG_KALLSYMS_EXTRA_PASS=y |
96 | CONFIG_HOTPLUG=y | 98 | CONFIG_HOTPLUG=y |
97 | CONFIG_PRINTK=y | 99 | CONFIG_PRINTK=y |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -125,7 +126,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
131 | # CONFIG_MODULE_FORCE_LOAD is not set | 131 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -133,11 +133,9 @@ CONFIG_MODULE_UNLOAD=y | |||
133 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
134 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
135 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
136 | CONFIG_KMOD=y | ||
137 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
138 | CONFIG_LBD=y | 137 | CONFIG_LBD=y |
139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
140 | # CONFIG_LSF is not set | ||
141 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
142 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
143 | 141 | ||
@@ -154,6 +152,10 @@ CONFIG_DEFAULT_AS=y | |||
154 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
155 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
156 | CONFIG_CLASSIC_RCU=y | 154 | CONFIG_CLASSIC_RCU=y |
155 | # CONFIG_TREE_RCU is not set | ||
156 | # CONFIG_PREEMPT_RCU is not set | ||
157 | # CONFIG_TREE_RCU_TRACE is not set | ||
158 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
157 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
158 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
159 | 161 | ||
@@ -192,6 +194,7 @@ CONFIG_440GP=y | |||
192 | # CONFIG_CPU_FREQ is not set | 194 | # CONFIG_CPU_FREQ is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
194 | CONFIG_OF_RTC=y | 196 | CONFIG_OF_RTC=y |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
195 | 198 | ||
196 | # | 199 | # |
197 | # Kernel options | 200 | # Kernel options |
@@ -215,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
215 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
216 | CONFIG_MATH_EMULATION=y | 219 | CONFIG_MATH_EMULATION=y |
217 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
219 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -229,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
229 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
230 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
231 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
232 | CONFIG_RESOURCES_64BIT=y | ||
233 | CONFIG_PHYS_ADDR_T_64BIT=y | 236 | CONFIG_PHYS_ADDR_T_64BIT=y |
234 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
235 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
236 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
237 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
238 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
239 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
240 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
@@ -257,6 +263,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
257 | # CONFIG_PCI_MSI is not set | 263 | # CONFIG_PCI_MSI is not set |
258 | CONFIG_PCI_LEGACY=y | 264 | CONFIG_PCI_LEGACY=y |
259 | # CONFIG_PCI_DEBUG is not set | 265 | # CONFIG_PCI_DEBUG is not set |
266 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 267 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 268 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 269 | # CONFIG_HAS_RAPIDIO is not set |
@@ -281,6 +288,7 @@ CONFIG_NET=y | |||
281 | # | 288 | # |
282 | # Networking options | 289 | # Networking options |
283 | # | 290 | # |
291 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
284 | CONFIG_PACKET=y | 292 | CONFIG_PACKET=y |
285 | # CONFIG_PACKET_MMAP is not set | 293 | # CONFIG_PACKET_MMAP is not set |
286 | CONFIG_UNIX=y | 294 | CONFIG_UNIX=y |
@@ -331,6 +339,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
331 | # CONFIG_ECONET is not set | 339 | # CONFIG_ECONET is not set |
332 | # CONFIG_WAN_ROUTER is not set | 340 | # CONFIG_WAN_ROUTER is not set |
333 | # CONFIG_NET_SCHED is not set | 341 | # CONFIG_NET_SCHED is not set |
342 | # CONFIG_DCB is not set | ||
334 | 343 | ||
335 | # | 344 | # |
336 | # Network testing | 345 | # Network testing |
@@ -343,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_AF_RXRPC is not set | 352 | # CONFIG_AF_RXRPC is not set |
344 | # CONFIG_PHONET is not set | 353 | # CONFIG_PHONET is not set |
345 | # CONFIG_WIRELESS is not set | 354 | # CONFIG_WIRELESS is not set |
355 | # CONFIG_WIMAX is not set | ||
346 | # CONFIG_RFKILL is not set | 356 | # CONFIG_RFKILL is not set |
347 | # CONFIG_NET_9P is not set | 357 | # CONFIG_NET_9P is not set |
348 | 358 | ||
@@ -368,6 +378,7 @@ CONFIG_MTD=y | |||
368 | # CONFIG_MTD_DEBUG is not set | 378 | # CONFIG_MTD_DEBUG is not set |
369 | # CONFIG_MTD_CONCAT is not set | 379 | # CONFIG_MTD_CONCAT is not set |
370 | CONFIG_MTD_PARTITIONS=y | 380 | CONFIG_MTD_PARTITIONS=y |
381 | # CONFIG_MTD_TESTS is not set | ||
371 | # CONFIG_MTD_REDBOOT_PARTS is not set | 382 | # CONFIG_MTD_REDBOOT_PARTS is not set |
372 | # CONFIG_MTD_CMDLINE_PARTS is not set | 383 | # CONFIG_MTD_CMDLINE_PARTS is not set |
373 | CONFIG_MTD_OF_PARTS=y | 384 | CONFIG_MTD_OF_PARTS=y |
@@ -439,6 +450,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
439 | # CONFIG_MTD_ONENAND is not set | 450 | # CONFIG_MTD_ONENAND is not set |
440 | 451 | ||
441 | # | 452 | # |
453 | # LPDDR flash memory drivers | ||
454 | # | ||
455 | # CONFIG_MTD_LPDDR is not set | ||
456 | # CONFIG_MTD_QINFO_PROBE is not set | ||
457 | |||
458 | # | ||
442 | # UBI - Unsorted block images | 459 | # UBI - Unsorted block images |
443 | # | 460 | # |
444 | # CONFIG_MTD_UBI is not set | 461 | # CONFIG_MTD_UBI is not set |
@@ -469,6 +486,7 @@ CONFIG_MISC_DEVICES=y | |||
469 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
470 | # CONFIG_ENCLOSURE_SERVICES is not set | 487 | # CONFIG_ENCLOSURE_SERVICES is not set |
471 | # CONFIG_HP_ILO is not set | 488 | # CONFIG_HP_ILO is not set |
489 | # CONFIG_C2PORT is not set | ||
472 | CONFIG_HAVE_IDE=y | 490 | CONFIG_HAVE_IDE=y |
473 | # CONFIG_IDE is not set | 491 | # CONFIG_IDE is not set |
474 | 492 | ||
@@ -551,6 +569,7 @@ CONFIG_NETDEV_1000=y | |||
551 | # CONFIG_JME is not set | 569 | # CONFIG_JME is not set |
552 | CONFIG_NETDEV_10000=y | 570 | CONFIG_NETDEV_10000=y |
553 | # CONFIG_CHELSIO_T1 is not set | 571 | # CONFIG_CHELSIO_T1 is not set |
572 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
554 | # CONFIG_CHELSIO_T3 is not set | 573 | # CONFIG_CHELSIO_T3 is not set |
555 | # CONFIG_ENIC is not set | 574 | # CONFIG_ENIC is not set |
556 | # CONFIG_IXGBE is not set | 575 | # CONFIG_IXGBE is not set |
@@ -573,6 +592,10 @@ CONFIG_NETDEV_10000=y | |||
573 | # CONFIG_WLAN_PRE80211 is not set | 592 | # CONFIG_WLAN_PRE80211 is not set |
574 | # CONFIG_WLAN_80211 is not set | 593 | # CONFIG_WLAN_80211 is not set |
575 | # CONFIG_IWLWIFI_LEDS is not set | 594 | # CONFIG_IWLWIFI_LEDS is not set |
595 | |||
596 | # | ||
597 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
598 | # | ||
576 | # CONFIG_WAN is not set | 599 | # CONFIG_WAN is not set |
577 | # CONFIG_FDDI is not set | 600 | # CONFIG_FDDI is not set |
578 | # CONFIG_HIPPI is not set | 601 | # CONFIG_HIPPI is not set |
@@ -625,9 +648,12 @@ CONFIG_SERIAL_CORE=y | |||
625 | CONFIG_SERIAL_CORE_CONSOLE=y | 648 | CONFIG_SERIAL_CORE_CONSOLE=y |
626 | # CONFIG_SERIAL_JSM is not set | 649 | # CONFIG_SERIAL_JSM is not set |
627 | CONFIG_SERIAL_OF_PLATFORM=y | 650 | CONFIG_SERIAL_OF_PLATFORM=y |
651 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
628 | CONFIG_UNIX98_PTYS=y | 652 | CONFIG_UNIX98_PTYS=y |
653 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
629 | CONFIG_LEGACY_PTYS=y | 654 | CONFIG_LEGACY_PTYS=y |
630 | CONFIG_LEGACY_PTY_COUNT=256 | 655 | CONFIG_LEGACY_PTY_COUNT=256 |
656 | # CONFIG_HVC_UDBG is not set | ||
631 | # CONFIG_IPMI_HANDLER is not set | 657 | # CONFIG_IPMI_HANDLER is not set |
632 | # CONFIG_HW_RANDOM is not set | 658 | # CONFIG_HW_RANDOM is not set |
633 | # CONFIG_NVRAM is not set | 659 | # CONFIG_NVRAM is not set |
@@ -646,11 +672,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
646 | # CONFIG_HWMON is not set | 672 | # CONFIG_HWMON is not set |
647 | CONFIG_THERMAL=y | 673 | CONFIG_THERMAL=y |
648 | # CONFIG_WATCHDOG is not set | 674 | # CONFIG_WATCHDOG is not set |
675 | CONFIG_SSB_POSSIBLE=y | ||
649 | 676 | ||
650 | # | 677 | # |
651 | # Sonics Silicon Backplane | 678 | # Sonics Silicon Backplane |
652 | # | 679 | # |
653 | CONFIG_SSB_POSSIBLE=y | ||
654 | # CONFIG_SSB is not set | 680 | # CONFIG_SSB is not set |
655 | 681 | ||
656 | # | 682 | # |
@@ -660,7 +686,7 @@ CONFIG_SSB_POSSIBLE=y | |||
660 | # CONFIG_MFD_SM501 is not set | 686 | # CONFIG_MFD_SM501 is not set |
661 | # CONFIG_HTC_PASIC3 is not set | 687 | # CONFIG_HTC_PASIC3 is not set |
662 | # CONFIG_MFD_TMIO is not set | 688 | # CONFIG_MFD_TMIO is not set |
663 | # CONFIG_MFD_WM8400 is not set | 689 | # CONFIG_REGULATOR is not set |
664 | 690 | ||
665 | # | 691 | # |
666 | # Multimedia devices | 692 | # Multimedia devices |
@@ -706,9 +732,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
706 | # | 732 | # |
707 | 733 | ||
708 | # | 734 | # |
709 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 735 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
710 | # | 736 | # |
711 | # CONFIG_USB_GADGET is not set | 737 | # CONFIG_USB_GADGET is not set |
738 | |||
739 | # | ||
740 | # OTG and related infrastructure | ||
741 | # | ||
712 | # CONFIG_UWB is not set | 742 | # CONFIG_UWB is not set |
713 | # CONFIG_MMC is not set | 743 | # CONFIG_MMC is not set |
714 | # CONFIG_MEMSTICK is not set | 744 | # CONFIG_MEMSTICK is not set |
@@ -734,7 +764,9 @@ CONFIG_EXT2_FS=y | |||
734 | # CONFIG_FS_POSIX_ACL is not set | 764 | # CONFIG_FS_POSIX_ACL is not set |
735 | CONFIG_FILE_LOCKING=y | 765 | CONFIG_FILE_LOCKING=y |
736 | # CONFIG_XFS_FS is not set | 766 | # CONFIG_XFS_FS is not set |
767 | # CONFIG_GFS2_FS is not set | ||
737 | # CONFIG_OCFS2_FS is not set | 768 | # CONFIG_OCFS2_FS is not set |
769 | # CONFIG_BTRFS_FS is not set | ||
738 | CONFIG_DNOTIFY=y | 770 | CONFIG_DNOTIFY=y |
739 | CONFIG_INOTIFY=y | 771 | CONFIG_INOTIFY=y |
740 | CONFIG_INOTIFY_USER=y | 772 | CONFIG_INOTIFY_USER=y |
@@ -768,10 +800,7 @@ CONFIG_TMPFS=y | |||
768 | # CONFIG_TMPFS_POSIX_ACL is not set | 800 | # CONFIG_TMPFS_POSIX_ACL is not set |
769 | # CONFIG_HUGETLB_PAGE is not set | 801 | # CONFIG_HUGETLB_PAGE is not set |
770 | # CONFIG_CONFIGFS_FS is not set | 802 | # CONFIG_CONFIGFS_FS is not set |
771 | 803 | CONFIG_MISC_FILESYSTEMS=y | |
772 | # | ||
773 | # Miscellaneous filesystems | ||
774 | # | ||
775 | # CONFIG_ADFS_FS is not set | 804 | # CONFIG_ADFS_FS is not set |
776 | # CONFIG_AFFS_FS is not set | 805 | # CONFIG_AFFS_FS is not set |
777 | # CONFIG_HFS_FS is not set | 806 | # CONFIG_HFS_FS is not set |
@@ -791,6 +820,7 @@ CONFIG_JFFS2_ZLIB=y | |||
791 | CONFIG_JFFS2_RTIME=y | 820 | CONFIG_JFFS2_RTIME=y |
792 | # CONFIG_JFFS2_RUBIN is not set | 821 | # CONFIG_JFFS2_RUBIN is not set |
793 | CONFIG_CRAMFS=y | 822 | CONFIG_CRAMFS=y |
823 | # CONFIG_SQUASHFS is not set | ||
794 | # CONFIG_VXFS_FS is not set | 824 | # CONFIG_VXFS_FS is not set |
795 | # CONFIG_MINIX_FS is not set | 825 | # CONFIG_MINIX_FS is not set |
796 | # CONFIG_OMFS_FS is not set | 826 | # CONFIG_OMFS_FS is not set |
@@ -831,6 +861,7 @@ CONFIG_MSDOS_PARTITION=y | |||
831 | # Library routines | 861 | # Library routines |
832 | # | 862 | # |
833 | CONFIG_BITREVERSE=y | 863 | CONFIG_BITREVERSE=y |
864 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
834 | # CONFIG_CRC_CCITT is not set | 865 | # CONFIG_CRC_CCITT is not set |
835 | # CONFIG_CRC16 is not set | 866 | # CONFIG_CRC16 is not set |
836 | # CONFIG_CRC_T10DIF is not set | 867 | # CONFIG_CRC_T10DIF is not set |
@@ -882,6 +913,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
882 | # CONFIG_DEBUG_MEMORY_INIT is not set | 913 | # CONFIG_DEBUG_MEMORY_INIT is not set |
883 | # CONFIG_DEBUG_LIST is not set | 914 | # CONFIG_DEBUG_LIST is not set |
884 | # CONFIG_DEBUG_SG is not set | 915 | # CONFIG_DEBUG_SG is not set |
916 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
885 | # CONFIG_BOOT_PRINTK_DELAY is not set | 917 | # CONFIG_BOOT_PRINTK_DELAY is not set |
886 | # CONFIG_RCU_TORTURE_TEST is not set | 918 | # CONFIG_RCU_TORTURE_TEST is not set |
887 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 919 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -890,18 +922,24 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
890 | # CONFIG_FAULT_INJECTION is not set | 922 | # CONFIG_FAULT_INJECTION is not set |
891 | # CONFIG_LATENCYTOP is not set | 923 | # CONFIG_LATENCYTOP is not set |
892 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 924 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
893 | CONFIG_NOP_TRACER=y | 925 | CONFIG_HAVE_FUNCTION_TRACER=y |
894 | CONFIG_HAVE_FTRACE=y | ||
895 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 926 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
896 | # CONFIG_FTRACE is not set | 927 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
928 | |||
929 | # | ||
930 | # Tracers | ||
931 | # | ||
932 | # CONFIG_FUNCTION_TRACER is not set | ||
897 | # CONFIG_SCHED_TRACER is not set | 933 | # CONFIG_SCHED_TRACER is not set |
898 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 934 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
899 | # CONFIG_BOOT_TRACER is not set | 935 | # CONFIG_BOOT_TRACER is not set |
936 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
900 | # CONFIG_STACK_TRACER is not set | 937 | # CONFIG_STACK_TRACER is not set |
901 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 938 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
902 | # CONFIG_SAMPLES is not set | 939 | # CONFIG_SAMPLES is not set |
903 | CONFIG_HAVE_ARCH_KGDB=y | 940 | CONFIG_HAVE_ARCH_KGDB=y |
904 | # CONFIG_KGDB is not set | 941 | # CONFIG_KGDB is not set |
942 | CONFIG_PRINT_STACK_DEPTH=64 | ||
905 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 943 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
906 | # CONFIG_DEBUG_STACK_USAGE is not set | 944 | # CONFIG_DEBUG_STACK_USAGE is not set |
907 | # CONFIG_DEBUG_PAGEALLOC is not set | 945 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -928,11 +966,15 @@ CONFIG_CRYPTO=y | |||
928 | # | 966 | # |
929 | # CONFIG_CRYPTO_FIPS is not set | 967 | # CONFIG_CRYPTO_FIPS is not set |
930 | CONFIG_CRYPTO_ALGAPI=y | 968 | CONFIG_CRYPTO_ALGAPI=y |
931 | CONFIG_CRYPTO_AEAD=y | 969 | CONFIG_CRYPTO_ALGAPI2=y |
970 | CONFIG_CRYPTO_AEAD2=y | ||
932 | CONFIG_CRYPTO_BLKCIPHER=y | 971 | CONFIG_CRYPTO_BLKCIPHER=y |
972 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
933 | CONFIG_CRYPTO_HASH=y | 973 | CONFIG_CRYPTO_HASH=y |
934 | CONFIG_CRYPTO_RNG=y | 974 | CONFIG_CRYPTO_HASH2=y |
975 | CONFIG_CRYPTO_RNG2=y | ||
935 | CONFIG_CRYPTO_MANAGER=y | 976 | CONFIG_CRYPTO_MANAGER=y |
977 | CONFIG_CRYPTO_MANAGER2=y | ||
936 | # CONFIG_CRYPTO_GF128MUL is not set | 978 | # CONFIG_CRYPTO_GF128MUL is not set |
937 | # CONFIG_CRYPTO_NULL is not set | 979 | # CONFIG_CRYPTO_NULL is not set |
938 | # CONFIG_CRYPTO_CRYPTD is not set | 980 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/katmai_defconfig b/arch/powerpc/configs/44x/katmai_defconfig index e326ee8bd195..f67250b24ec5 100644 --- a/arch/powerpc/configs/44x/katmai_defconfig +++ b/arch/powerpc/configs/44x/katmai_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:11 2008 | 4 | # Tue Jan 20 08:22:38 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -74,8 +75,8 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
75 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | # CONFIG_GROUP_SCHED is not set | 78 | # CONFIG_GROUP_SCHED is not set |
79 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
@@ -110,7 +111,6 @@ CONFIG_SLUB_DEBUG=y | |||
110 | CONFIG_SLUB=y | 111 | CONFIG_SLUB=y |
111 | # CONFIG_SLOB is not set | 112 | # CONFIG_SLOB is not set |
112 | # CONFIG_PROFILING is not set | 113 | # CONFIG_PROFILING is not set |
113 | # CONFIG_MARKERS is not set | ||
114 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
115 | # CONFIG_KPROBES is not set | 115 | # CONFIG_KPROBES is not set |
116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -121,7 +121,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
122 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
123 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
124 | # CONFIG_TINY_SHMEM is not set | ||
125 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
126 | CONFIG_MODULES=y | 125 | CONFIG_MODULES=y |
127 | # CONFIG_MODULE_FORCE_LOAD is not set | 126 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -129,11 +128,9 @@ CONFIG_MODULE_UNLOAD=y | |||
129 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 128 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
130 | # CONFIG_MODVERSIONS is not set | 129 | # CONFIG_MODVERSIONS is not set |
131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 130 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
132 | CONFIG_KMOD=y | ||
133 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
134 | CONFIG_LBD=y | 132 | CONFIG_LBD=y |
135 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
136 | # CONFIG_LSF is not set | ||
137 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
138 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
139 | 136 | ||
@@ -150,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
150 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
151 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
152 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
153 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
154 | CONFIG_PPC4xx_PCI_EXPRESS=y | 155 | CONFIG_PPC4xx_PCI_EXPRESS=y |
155 | 156 | ||
@@ -187,6 +188,7 @@ CONFIG_440SPe=y | |||
187 | # CONFIG_GENERIC_IOMAP is not set | 188 | # CONFIG_GENERIC_IOMAP is not set |
188 | # CONFIG_CPU_FREQ is not set | 189 | # CONFIG_CPU_FREQ is not set |
189 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
190 | 192 | ||
191 | # | 193 | # |
192 | # Kernel options | 194 | # Kernel options |
@@ -210,6 +212,7 @@ CONFIG_BINFMT_ELF=y | |||
210 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
211 | # CONFIG_MATH_EMULATION is not set | 213 | # CONFIG_MATH_EMULATION is not set |
212 | # CONFIG_IOMMU_HELPER is not set | 214 | # CONFIG_IOMMU_HELPER is not set |
215 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
213 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
214 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 217 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -224,12 +227,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
224 | CONFIG_PAGEFLAGS_EXTENDED=y | 227 | CONFIG_PAGEFLAGS_EXTENDED=y |
225 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
226 | CONFIG_MIGRATION=y | 229 | CONFIG_MIGRATION=y |
227 | CONFIG_RESOURCES_64BIT=y | ||
228 | CONFIG_PHYS_ADDR_T_64BIT=y | 230 | CONFIG_PHYS_ADDR_T_64BIT=y |
229 | CONFIG_ZONE_DMA_FLAG=1 | 231 | CONFIG_ZONE_DMA_FLAG=1 |
230 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
231 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
232 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
235 | CONFIG_PPC_4K_PAGES=y | ||
236 | # CONFIG_PPC_16K_PAGES is not set | ||
237 | # CONFIG_PPC_64K_PAGES is not set | ||
233 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
234 | CONFIG_PROC_DEVICETREE=y | 239 | CONFIG_PROC_DEVICETREE=y |
235 | CONFIG_CMDLINE_BOOL=y | 240 | CONFIG_CMDLINE_BOOL=y |
@@ -253,6 +258,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
253 | # CONFIG_PCI_MSI is not set | 258 | # CONFIG_PCI_MSI is not set |
254 | CONFIG_PCI_LEGACY=y | 259 | CONFIG_PCI_LEGACY=y |
255 | # CONFIG_PCI_DEBUG is not set | 260 | # CONFIG_PCI_DEBUG is not set |
261 | # CONFIG_PCI_STUB is not set | ||
256 | # CONFIG_PCCARD is not set | 262 | # CONFIG_PCCARD is not set |
257 | # CONFIG_HOTPLUG_PCI is not set | 263 | # CONFIG_HOTPLUG_PCI is not set |
258 | # CONFIG_HAS_RAPIDIO is not set | 264 | # CONFIG_HAS_RAPIDIO is not set |
@@ -277,6 +283,7 @@ CONFIG_NET=y | |||
277 | # | 283 | # |
278 | # Networking options | 284 | # Networking options |
279 | # | 285 | # |
286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
280 | CONFIG_PACKET=y | 287 | CONFIG_PACKET=y |
281 | # CONFIG_PACKET_MMAP is not set | 288 | # CONFIG_PACKET_MMAP is not set |
282 | CONFIG_UNIX=y | 289 | CONFIG_UNIX=y |
@@ -327,6 +334,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
327 | # CONFIG_ECONET is not set | 334 | # CONFIG_ECONET is not set |
328 | # CONFIG_WAN_ROUTER is not set | 335 | # CONFIG_WAN_ROUTER is not set |
329 | # CONFIG_NET_SCHED is not set | 336 | # CONFIG_NET_SCHED is not set |
337 | # CONFIG_DCB is not set | ||
330 | 338 | ||
331 | # | 339 | # |
332 | # Network testing | 340 | # Network testing |
@@ -339,6 +347,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
339 | # CONFIG_AF_RXRPC is not set | 347 | # CONFIG_AF_RXRPC is not set |
340 | # CONFIG_PHONET is not set | 348 | # CONFIG_PHONET is not set |
341 | # CONFIG_WIRELESS is not set | 349 | # CONFIG_WIRELESS is not set |
350 | # CONFIG_WIMAX is not set | ||
342 | # CONFIG_RFKILL is not set | 351 | # CONFIG_RFKILL is not set |
343 | # CONFIG_NET_9P is not set | 352 | # CONFIG_NET_9P is not set |
344 | 353 | ||
@@ -388,6 +397,7 @@ CONFIG_MISC_DEVICES=y | |||
388 | # CONFIG_TIFM_CORE is not set | 397 | # CONFIG_TIFM_CORE is not set |
389 | # CONFIG_ENCLOSURE_SERVICES is not set | 398 | # CONFIG_ENCLOSURE_SERVICES is not set |
390 | # CONFIG_HP_ILO is not set | 399 | # CONFIG_HP_ILO is not set |
400 | # CONFIG_C2PORT is not set | ||
391 | CONFIG_HAVE_IDE=y | 401 | CONFIG_HAVE_IDE=y |
392 | # CONFIG_IDE is not set | 402 | # CONFIG_IDE is not set |
393 | 403 | ||
@@ -472,6 +482,7 @@ CONFIG_NETDEV_1000=y | |||
472 | # CONFIG_JME is not set | 482 | # CONFIG_JME is not set |
473 | CONFIG_NETDEV_10000=y | 483 | CONFIG_NETDEV_10000=y |
474 | # CONFIG_CHELSIO_T1 is not set | 484 | # CONFIG_CHELSIO_T1 is not set |
485 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
475 | # CONFIG_CHELSIO_T3 is not set | 486 | # CONFIG_CHELSIO_T3 is not set |
476 | # CONFIG_ENIC is not set | 487 | # CONFIG_ENIC is not set |
477 | # CONFIG_IXGBE is not set | 488 | # CONFIG_IXGBE is not set |
@@ -494,6 +505,10 @@ CONFIG_NETDEV_10000=y | |||
494 | # CONFIG_WLAN_PRE80211 is not set | 505 | # CONFIG_WLAN_PRE80211 is not set |
495 | # CONFIG_WLAN_80211 is not set | 506 | # CONFIG_WLAN_80211 is not set |
496 | # CONFIG_IWLWIFI_LEDS is not set | 507 | # CONFIG_IWLWIFI_LEDS is not set |
508 | |||
509 | # | ||
510 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
511 | # | ||
497 | # CONFIG_WAN is not set | 512 | # CONFIG_WAN is not set |
498 | # CONFIG_FDDI is not set | 513 | # CONFIG_FDDI is not set |
499 | # CONFIG_HIPPI is not set | 514 | # CONFIG_HIPPI is not set |
@@ -546,9 +561,12 @@ CONFIG_SERIAL_CORE=y | |||
546 | CONFIG_SERIAL_CORE_CONSOLE=y | 561 | CONFIG_SERIAL_CORE_CONSOLE=y |
547 | # CONFIG_SERIAL_JSM is not set | 562 | # CONFIG_SERIAL_JSM is not set |
548 | CONFIG_SERIAL_OF_PLATFORM=y | 563 | CONFIG_SERIAL_OF_PLATFORM=y |
564 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
549 | CONFIG_UNIX98_PTYS=y | 565 | CONFIG_UNIX98_PTYS=y |
566 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
550 | CONFIG_LEGACY_PTYS=y | 567 | CONFIG_LEGACY_PTYS=y |
551 | CONFIG_LEGACY_PTY_COUNT=256 | 568 | CONFIG_LEGACY_PTY_COUNT=256 |
569 | # CONFIG_HVC_UDBG is not set | ||
552 | # CONFIG_IPMI_HANDLER is not set | 570 | # CONFIG_IPMI_HANDLER is not set |
553 | # CONFIG_HW_RANDOM is not set | 571 | # CONFIG_HW_RANDOM is not set |
554 | # CONFIG_NVRAM is not set | 572 | # CONFIG_NVRAM is not set |
@@ -568,11 +586,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
568 | # CONFIG_THERMAL is not set | 586 | # CONFIG_THERMAL is not set |
569 | # CONFIG_THERMAL_HWMON is not set | 587 | # CONFIG_THERMAL_HWMON is not set |
570 | # CONFIG_WATCHDOG is not set | 588 | # CONFIG_WATCHDOG is not set |
589 | CONFIG_SSB_POSSIBLE=y | ||
571 | 590 | ||
572 | # | 591 | # |
573 | # Sonics Silicon Backplane | 592 | # Sonics Silicon Backplane |
574 | # | 593 | # |
575 | CONFIG_SSB_POSSIBLE=y | ||
576 | # CONFIG_SSB is not set | 594 | # CONFIG_SSB is not set |
577 | 595 | ||
578 | # | 596 | # |
@@ -582,7 +600,7 @@ CONFIG_SSB_POSSIBLE=y | |||
582 | # CONFIG_MFD_SM501 is not set | 600 | # CONFIG_MFD_SM501 is not set |
583 | # CONFIG_HTC_PASIC3 is not set | 601 | # CONFIG_HTC_PASIC3 is not set |
584 | # CONFIG_MFD_TMIO is not set | 602 | # CONFIG_MFD_TMIO is not set |
585 | # CONFIG_MFD_WM8400 is not set | 603 | # CONFIG_REGULATOR is not set |
586 | 604 | ||
587 | # | 605 | # |
588 | # Multimedia devices | 606 | # Multimedia devices |
@@ -628,9 +646,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
628 | # | 646 | # |
629 | 647 | ||
630 | # | 648 | # |
631 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 649 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
632 | # | 650 | # |
633 | # CONFIG_USB_GADGET is not set | 651 | # CONFIG_USB_GADGET is not set |
652 | |||
653 | # | ||
654 | # OTG and related infrastructure | ||
655 | # | ||
634 | # CONFIG_UWB is not set | 656 | # CONFIG_UWB is not set |
635 | # CONFIG_MMC is not set | 657 | # CONFIG_MMC is not set |
636 | # CONFIG_MEMSTICK is not set | 658 | # CONFIG_MEMSTICK is not set |
@@ -656,7 +678,9 @@ CONFIG_EXT2_FS=y | |||
656 | # CONFIG_FS_POSIX_ACL is not set | 678 | # CONFIG_FS_POSIX_ACL is not set |
657 | CONFIG_FILE_LOCKING=y | 679 | CONFIG_FILE_LOCKING=y |
658 | # CONFIG_XFS_FS is not set | 680 | # CONFIG_XFS_FS is not set |
681 | # CONFIG_GFS2_FS is not set | ||
659 | # CONFIG_OCFS2_FS is not set | 682 | # CONFIG_OCFS2_FS is not set |
683 | # CONFIG_BTRFS_FS is not set | ||
660 | CONFIG_DNOTIFY=y | 684 | CONFIG_DNOTIFY=y |
661 | CONFIG_INOTIFY=y | 685 | CONFIG_INOTIFY=y |
662 | CONFIG_INOTIFY_USER=y | 686 | CONFIG_INOTIFY_USER=y |
@@ -690,10 +714,7 @@ CONFIG_TMPFS=y | |||
690 | # CONFIG_TMPFS_POSIX_ACL is not set | 714 | # CONFIG_TMPFS_POSIX_ACL is not set |
691 | # CONFIG_HUGETLB_PAGE is not set | 715 | # CONFIG_HUGETLB_PAGE is not set |
692 | # CONFIG_CONFIGFS_FS is not set | 716 | # CONFIG_CONFIGFS_FS is not set |
693 | 717 | CONFIG_MISC_FILESYSTEMS=y | |
694 | # | ||
695 | # Miscellaneous filesystems | ||
696 | # | ||
697 | # CONFIG_ADFS_FS is not set | 718 | # CONFIG_ADFS_FS is not set |
698 | # CONFIG_AFFS_FS is not set | 719 | # CONFIG_AFFS_FS is not set |
699 | # CONFIG_HFS_FS is not set | 720 | # CONFIG_HFS_FS is not set |
@@ -702,6 +723,7 @@ CONFIG_TMPFS=y | |||
702 | # CONFIG_BFS_FS is not set | 723 | # CONFIG_BFS_FS is not set |
703 | # CONFIG_EFS_FS is not set | 724 | # CONFIG_EFS_FS is not set |
704 | CONFIG_CRAMFS=y | 725 | CONFIG_CRAMFS=y |
726 | # CONFIG_SQUASHFS is not set | ||
705 | # CONFIG_VXFS_FS is not set | 727 | # CONFIG_VXFS_FS is not set |
706 | # CONFIG_MINIX_FS is not set | 728 | # CONFIG_MINIX_FS is not set |
707 | # CONFIG_OMFS_FS is not set | 729 | # CONFIG_OMFS_FS is not set |
@@ -742,6 +764,7 @@ CONFIG_MSDOS_PARTITION=y | |||
742 | # Library routines | 764 | # Library routines |
743 | # | 765 | # |
744 | CONFIG_BITREVERSE=y | 766 | CONFIG_BITREVERSE=y |
767 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
745 | # CONFIG_CRC_CCITT is not set | 768 | # CONFIG_CRC_CCITT is not set |
746 | # CONFIG_CRC16 is not set | 769 | # CONFIG_CRC16 is not set |
747 | # CONFIG_CRC_T10DIF is not set | 770 | # CONFIG_CRC_T10DIF is not set |
@@ -792,6 +815,7 @@ CONFIG_SCHED_DEBUG=y | |||
792 | # CONFIG_DEBUG_MEMORY_INIT is not set | 815 | # CONFIG_DEBUG_MEMORY_INIT is not set |
793 | # CONFIG_DEBUG_LIST is not set | 816 | # CONFIG_DEBUG_LIST is not set |
794 | # CONFIG_DEBUG_SG is not set | 817 | # CONFIG_DEBUG_SG is not set |
818 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
795 | # CONFIG_BOOT_PRINTK_DELAY is not set | 819 | # CONFIG_BOOT_PRINTK_DELAY is not set |
796 | # CONFIG_RCU_TORTURE_TEST is not set | 820 | # CONFIG_RCU_TORTURE_TEST is not set |
797 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 821 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -800,18 +824,24 @@ CONFIG_SCHED_DEBUG=y | |||
800 | # CONFIG_FAULT_INJECTION is not set | 824 | # CONFIG_FAULT_INJECTION is not set |
801 | # CONFIG_LATENCYTOP is not set | 825 | # CONFIG_LATENCYTOP is not set |
802 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 826 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
803 | CONFIG_NOP_TRACER=y | 827 | CONFIG_HAVE_FUNCTION_TRACER=y |
804 | CONFIG_HAVE_FTRACE=y | ||
805 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 828 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
806 | # CONFIG_FTRACE is not set | 829 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
830 | |||
831 | # | ||
832 | # Tracers | ||
833 | # | ||
834 | # CONFIG_FUNCTION_TRACER is not set | ||
807 | # CONFIG_SCHED_TRACER is not set | 835 | # CONFIG_SCHED_TRACER is not set |
808 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 836 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
809 | # CONFIG_BOOT_TRACER is not set | 837 | # CONFIG_BOOT_TRACER is not set |
838 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
810 | # CONFIG_STACK_TRACER is not set | 839 | # CONFIG_STACK_TRACER is not set |
811 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 840 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
812 | # CONFIG_SAMPLES is not set | 841 | # CONFIG_SAMPLES is not set |
813 | CONFIG_HAVE_ARCH_KGDB=y | 842 | CONFIG_HAVE_ARCH_KGDB=y |
814 | # CONFIG_KGDB is not set | 843 | # CONFIG_KGDB is not set |
844 | CONFIG_PRINT_STACK_DEPTH=64 | ||
815 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 845 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
816 | # CONFIG_DEBUG_STACK_USAGE is not set | 846 | # CONFIG_DEBUG_STACK_USAGE is not set |
817 | # CONFIG_DEBUG_PAGEALLOC is not set | 847 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -837,11 +867,15 @@ CONFIG_CRYPTO=y | |||
837 | # | 867 | # |
838 | # CONFIG_CRYPTO_FIPS is not set | 868 | # CONFIG_CRYPTO_FIPS is not set |
839 | CONFIG_CRYPTO_ALGAPI=y | 869 | CONFIG_CRYPTO_ALGAPI=y |
840 | CONFIG_CRYPTO_AEAD=y | 870 | CONFIG_CRYPTO_ALGAPI2=y |
871 | CONFIG_CRYPTO_AEAD2=y | ||
841 | CONFIG_CRYPTO_BLKCIPHER=y | 872 | CONFIG_CRYPTO_BLKCIPHER=y |
873 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
842 | CONFIG_CRYPTO_HASH=y | 874 | CONFIG_CRYPTO_HASH=y |
843 | CONFIG_CRYPTO_RNG=y | 875 | CONFIG_CRYPTO_HASH2=y |
876 | CONFIG_CRYPTO_RNG2=y | ||
844 | CONFIG_CRYPTO_MANAGER=y | 877 | CONFIG_CRYPTO_MANAGER=y |
878 | CONFIG_CRYPTO_MANAGER2=y | ||
845 | # CONFIG_CRYPTO_GF128MUL is not set | 879 | # CONFIG_CRYPTO_GF128MUL is not set |
846 | # CONFIG_CRYPTO_NULL is not set | 880 | # CONFIG_CRYPTO_NULL is not set |
847 | # CONFIG_CRYPTO_CRYPTD is not set | 881 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/rainier_defconfig b/arch/powerpc/configs/44x/rainier_defconfig index 927f829e2087..9348c12bd7a6 100644 --- a/arch/powerpc/configs/44x/rainier_defconfig +++ b/arch/powerpc/configs/44x/rainier_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:13 2008 | 4 | # Tue Jan 20 08:22:41 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -74,12 +75,12 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
75 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
79 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
80 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
81 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
82 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -114,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
119 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -125,7 +125,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
130 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
131 | # CONFIG_MODULE_FORCE_LOAD is not set | 130 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -133,11 +132,9 @@ CONFIG_MODULE_UNLOAD=y | |||
133 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 132 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
134 | # CONFIG_MODVERSIONS is not set | 133 | # CONFIG_MODVERSIONS is not set |
135 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
136 | CONFIG_KMOD=y | ||
137 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
138 | CONFIG_LBD=y | 136 | CONFIG_LBD=y |
139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 137 | # CONFIG_BLK_DEV_IO_TRACE is not set |
140 | # CONFIG_LSF is not set | ||
141 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
142 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
143 | 140 | ||
@@ -154,6 +151,10 @@ CONFIG_DEFAULT_AS=y | |||
154 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
155 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
156 | CONFIG_CLASSIC_RCU=y | 153 | CONFIG_CLASSIC_RCU=y |
154 | # CONFIG_TREE_RCU is not set | ||
155 | # CONFIG_PREEMPT_RCU is not set | ||
156 | # CONFIG_TREE_RCU_TRACE is not set | ||
157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
157 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
158 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
159 | 160 | ||
@@ -191,6 +192,7 @@ CONFIG_440GRX=y | |||
191 | # CONFIG_GENERIC_IOMAP is not set | 192 | # CONFIG_GENERIC_IOMAP is not set |
192 | # CONFIG_CPU_FREQ is not set | 193 | # CONFIG_CPU_FREQ is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 194 | # CONFIG_FSL_ULI1575 is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
194 | 196 | ||
195 | # | 197 | # |
196 | # Kernel options | 198 | # Kernel options |
@@ -214,6 +216,7 @@ CONFIG_BINFMT_ELF=y | |||
214 | # CONFIG_BINFMT_MISC is not set | 216 | # CONFIG_BINFMT_MISC is not set |
215 | CONFIG_MATH_EMULATION=y | 217 | CONFIG_MATH_EMULATION=y |
216 | # CONFIG_IOMMU_HELPER is not set | 218 | # CONFIG_IOMMU_HELPER is not set |
219 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
218 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 221 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -228,12 +231,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
228 | CONFIG_PAGEFLAGS_EXTENDED=y | 231 | CONFIG_PAGEFLAGS_EXTENDED=y |
229 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
230 | CONFIG_MIGRATION=y | 233 | CONFIG_MIGRATION=y |
231 | CONFIG_RESOURCES_64BIT=y | ||
232 | CONFIG_PHYS_ADDR_T_64BIT=y | 234 | CONFIG_PHYS_ADDR_T_64BIT=y |
233 | CONFIG_ZONE_DMA_FLAG=1 | 235 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 236 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 237 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_UNEVICTABLE_LRU=y | 238 | CONFIG_UNEVICTABLE_LRU=y |
239 | CONFIG_PPC_4K_PAGES=y | ||
240 | # CONFIG_PPC_16K_PAGES is not set | ||
241 | # CONFIG_PPC_64K_PAGES is not set | ||
237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 242 | CONFIG_FORCE_MAX_ZONEORDER=11 |
238 | CONFIG_PROC_DEVICETREE=y | 243 | CONFIG_PROC_DEVICETREE=y |
239 | CONFIG_CMDLINE_BOOL=y | 244 | CONFIG_CMDLINE_BOOL=y |
@@ -257,6 +262,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
257 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
258 | CONFIG_PCI_LEGACY=y | 263 | CONFIG_PCI_LEGACY=y |
259 | # CONFIG_PCI_DEBUG is not set | 264 | # CONFIG_PCI_DEBUG is not set |
265 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 266 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 267 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 268 | # CONFIG_HAS_RAPIDIO is not set |
@@ -281,6 +287,7 @@ CONFIG_NET=y | |||
281 | # | 287 | # |
282 | # Networking options | 288 | # Networking options |
283 | # | 289 | # |
290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
284 | CONFIG_PACKET=y | 291 | CONFIG_PACKET=y |
285 | # CONFIG_PACKET_MMAP is not set | 292 | # CONFIG_PACKET_MMAP is not set |
286 | CONFIG_UNIX=y | 293 | CONFIG_UNIX=y |
@@ -331,6 +338,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
331 | # CONFIG_ECONET is not set | 338 | # CONFIG_ECONET is not set |
332 | # CONFIG_WAN_ROUTER is not set | 339 | # CONFIG_WAN_ROUTER is not set |
333 | # CONFIG_NET_SCHED is not set | 340 | # CONFIG_NET_SCHED is not set |
341 | # CONFIG_DCB is not set | ||
334 | 342 | ||
335 | # | 343 | # |
336 | # Network testing | 344 | # Network testing |
@@ -343,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_AF_RXRPC is not set | 351 | # CONFIG_AF_RXRPC is not set |
344 | # CONFIG_PHONET is not set | 352 | # CONFIG_PHONET is not set |
345 | # CONFIG_WIRELESS is not set | 353 | # CONFIG_WIRELESS is not set |
354 | # CONFIG_WIMAX is not set | ||
346 | # CONFIG_RFKILL is not set | 355 | # CONFIG_RFKILL is not set |
347 | # CONFIG_NET_9P is not set | 356 | # CONFIG_NET_9P is not set |
348 | 357 | ||
@@ -368,6 +377,7 @@ CONFIG_MTD=y | |||
368 | # CONFIG_MTD_DEBUG is not set | 377 | # CONFIG_MTD_DEBUG is not set |
369 | # CONFIG_MTD_CONCAT is not set | 378 | # CONFIG_MTD_CONCAT is not set |
370 | CONFIG_MTD_PARTITIONS=y | 379 | CONFIG_MTD_PARTITIONS=y |
380 | # CONFIG_MTD_TESTS is not set | ||
371 | # CONFIG_MTD_REDBOOT_PARTS is not set | 381 | # CONFIG_MTD_REDBOOT_PARTS is not set |
372 | CONFIG_MTD_CMDLINE_PARTS=y | 382 | CONFIG_MTD_CMDLINE_PARTS=y |
373 | CONFIG_MTD_OF_PARTS=y | 383 | CONFIG_MTD_OF_PARTS=y |
@@ -440,6 +450,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
440 | # CONFIG_MTD_ONENAND is not set | 450 | # CONFIG_MTD_ONENAND is not set |
441 | 451 | ||
442 | # | 452 | # |
453 | # LPDDR flash memory drivers | ||
454 | # | ||
455 | # CONFIG_MTD_LPDDR is not set | ||
456 | # CONFIG_MTD_QINFO_PROBE is not set | ||
457 | |||
458 | # | ||
443 | # UBI - Unsorted block images | 459 | # UBI - Unsorted block images |
444 | # | 460 | # |
445 | # CONFIG_MTD_UBI is not set | 461 | # CONFIG_MTD_UBI is not set |
@@ -470,6 +486,7 @@ CONFIG_MISC_DEVICES=y | |||
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 487 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 488 | # CONFIG_HP_ILO is not set |
489 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 490 | CONFIG_HAVE_IDE=y |
474 | # CONFIG_IDE is not set | 491 | # CONFIG_IDE is not set |
475 | 492 | ||
@@ -532,6 +549,7 @@ CONFIG_NETDEV_1000=y | |||
532 | # CONFIG_JME is not set | 549 | # CONFIG_JME is not set |
533 | CONFIG_NETDEV_10000=y | 550 | CONFIG_NETDEV_10000=y |
534 | # CONFIG_CHELSIO_T1 is not set | 551 | # CONFIG_CHELSIO_T1 is not set |
552 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
535 | # CONFIG_CHELSIO_T3 is not set | 553 | # CONFIG_CHELSIO_T3 is not set |
536 | # CONFIG_ENIC is not set | 554 | # CONFIG_ENIC is not set |
537 | # CONFIG_IXGBE is not set | 555 | # CONFIG_IXGBE is not set |
@@ -554,6 +572,10 @@ CONFIG_NETDEV_10000=y | |||
554 | # CONFIG_WLAN_PRE80211 is not set | 572 | # CONFIG_WLAN_PRE80211 is not set |
555 | # CONFIG_WLAN_80211 is not set | 573 | # CONFIG_WLAN_80211 is not set |
556 | # CONFIG_IWLWIFI_LEDS is not set | 574 | # CONFIG_IWLWIFI_LEDS is not set |
575 | |||
576 | # | ||
577 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
578 | # | ||
557 | # CONFIG_WAN is not set | 579 | # CONFIG_WAN is not set |
558 | # CONFIG_FDDI is not set | 580 | # CONFIG_FDDI is not set |
559 | # CONFIG_HIPPI is not set | 581 | # CONFIG_HIPPI is not set |
@@ -606,9 +628,12 @@ CONFIG_SERIAL_CORE=y | |||
606 | CONFIG_SERIAL_CORE_CONSOLE=y | 628 | CONFIG_SERIAL_CORE_CONSOLE=y |
607 | # CONFIG_SERIAL_JSM is not set | 629 | # CONFIG_SERIAL_JSM is not set |
608 | CONFIG_SERIAL_OF_PLATFORM=y | 630 | CONFIG_SERIAL_OF_PLATFORM=y |
631 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
609 | CONFIG_UNIX98_PTYS=y | 632 | CONFIG_UNIX98_PTYS=y |
633 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
610 | CONFIG_LEGACY_PTYS=y | 634 | CONFIG_LEGACY_PTYS=y |
611 | CONFIG_LEGACY_PTY_COUNT=256 | 635 | CONFIG_LEGACY_PTY_COUNT=256 |
636 | # CONFIG_HVC_UDBG is not set | ||
612 | # CONFIG_IPMI_HANDLER is not set | 637 | # CONFIG_IPMI_HANDLER is not set |
613 | # CONFIG_HW_RANDOM is not set | 638 | # CONFIG_HW_RANDOM is not set |
614 | # CONFIG_NVRAM is not set | 639 | # CONFIG_NVRAM is not set |
@@ -627,11 +652,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
627 | # CONFIG_HWMON is not set | 652 | # CONFIG_HWMON is not set |
628 | CONFIG_THERMAL=y | 653 | CONFIG_THERMAL=y |
629 | # CONFIG_WATCHDOG is not set | 654 | # CONFIG_WATCHDOG is not set |
655 | CONFIG_SSB_POSSIBLE=y | ||
630 | 656 | ||
631 | # | 657 | # |
632 | # Sonics Silicon Backplane | 658 | # Sonics Silicon Backplane |
633 | # | 659 | # |
634 | CONFIG_SSB_POSSIBLE=y | ||
635 | # CONFIG_SSB is not set | 660 | # CONFIG_SSB is not set |
636 | 661 | ||
637 | # | 662 | # |
@@ -641,7 +666,7 @@ CONFIG_SSB_POSSIBLE=y | |||
641 | # CONFIG_MFD_SM501 is not set | 666 | # CONFIG_MFD_SM501 is not set |
642 | # CONFIG_HTC_PASIC3 is not set | 667 | # CONFIG_HTC_PASIC3 is not set |
643 | # CONFIG_MFD_TMIO is not set | 668 | # CONFIG_MFD_TMIO is not set |
644 | # CONFIG_MFD_WM8400 is not set | 669 | # CONFIG_REGULATOR is not set |
645 | 670 | ||
646 | # | 671 | # |
647 | # Multimedia devices | 672 | # Multimedia devices |
@@ -687,9 +712,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
687 | # | 712 | # |
688 | 713 | ||
689 | # | 714 | # |
690 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 715 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
691 | # | 716 | # |
692 | # CONFIG_USB_GADGET is not set | 717 | # CONFIG_USB_GADGET is not set |
718 | |||
719 | # | ||
720 | # OTG and related infrastructure | ||
721 | # | ||
693 | # CONFIG_UWB is not set | 722 | # CONFIG_UWB is not set |
694 | # CONFIG_MMC is not set | 723 | # CONFIG_MMC is not set |
695 | # CONFIG_MEMSTICK is not set | 724 | # CONFIG_MEMSTICK is not set |
@@ -715,7 +744,9 @@ CONFIG_EXT2_FS=y | |||
715 | # CONFIG_FS_POSIX_ACL is not set | 744 | # CONFIG_FS_POSIX_ACL is not set |
716 | CONFIG_FILE_LOCKING=y | 745 | CONFIG_FILE_LOCKING=y |
717 | # CONFIG_XFS_FS is not set | 746 | # CONFIG_XFS_FS is not set |
747 | # CONFIG_GFS2_FS is not set | ||
718 | # CONFIG_OCFS2_FS is not set | 748 | # CONFIG_OCFS2_FS is not set |
749 | # CONFIG_BTRFS_FS is not set | ||
719 | CONFIG_DNOTIFY=y | 750 | CONFIG_DNOTIFY=y |
720 | CONFIG_INOTIFY=y | 751 | CONFIG_INOTIFY=y |
721 | CONFIG_INOTIFY_USER=y | 752 | CONFIG_INOTIFY_USER=y |
@@ -749,10 +780,7 @@ CONFIG_TMPFS=y | |||
749 | # CONFIG_TMPFS_POSIX_ACL is not set | 780 | # CONFIG_TMPFS_POSIX_ACL is not set |
750 | # CONFIG_HUGETLB_PAGE is not set | 781 | # CONFIG_HUGETLB_PAGE is not set |
751 | # CONFIG_CONFIGFS_FS is not set | 782 | # CONFIG_CONFIGFS_FS is not set |
752 | 783 | CONFIG_MISC_FILESYSTEMS=y | |
753 | # | ||
754 | # Miscellaneous filesystems | ||
755 | # | ||
756 | # CONFIG_ADFS_FS is not set | 784 | # CONFIG_ADFS_FS is not set |
757 | # CONFIG_AFFS_FS is not set | 785 | # CONFIG_AFFS_FS is not set |
758 | # CONFIG_HFS_FS is not set | 786 | # CONFIG_HFS_FS is not set |
@@ -772,6 +800,7 @@ CONFIG_JFFS2_ZLIB=y | |||
772 | CONFIG_JFFS2_RTIME=y | 800 | CONFIG_JFFS2_RTIME=y |
773 | # CONFIG_JFFS2_RUBIN is not set | 801 | # CONFIG_JFFS2_RUBIN is not set |
774 | CONFIG_CRAMFS=y | 802 | CONFIG_CRAMFS=y |
803 | # CONFIG_SQUASHFS is not set | ||
775 | # CONFIG_VXFS_FS is not set | 804 | # CONFIG_VXFS_FS is not set |
776 | # CONFIG_MINIX_FS is not set | 805 | # CONFIG_MINIX_FS is not set |
777 | # CONFIG_OMFS_FS is not set | 806 | # CONFIG_OMFS_FS is not set |
@@ -812,6 +841,7 @@ CONFIG_MSDOS_PARTITION=y | |||
812 | # Library routines | 841 | # Library routines |
813 | # | 842 | # |
814 | CONFIG_BITREVERSE=y | 843 | CONFIG_BITREVERSE=y |
844 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
815 | # CONFIG_CRC_CCITT is not set | 845 | # CONFIG_CRC_CCITT is not set |
816 | # CONFIG_CRC16 is not set | 846 | # CONFIG_CRC16 is not set |
817 | # CONFIG_CRC_T10DIF is not set | 847 | # CONFIG_CRC_T10DIF is not set |
@@ -863,6 +893,7 @@ CONFIG_SCHED_DEBUG=y | |||
863 | # CONFIG_DEBUG_MEMORY_INIT is not set | 893 | # CONFIG_DEBUG_MEMORY_INIT is not set |
864 | # CONFIG_DEBUG_LIST is not set | 894 | # CONFIG_DEBUG_LIST is not set |
865 | # CONFIG_DEBUG_SG is not set | 895 | # CONFIG_DEBUG_SG is not set |
896 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
866 | # CONFIG_BOOT_PRINTK_DELAY is not set | 897 | # CONFIG_BOOT_PRINTK_DELAY is not set |
867 | # CONFIG_RCU_TORTURE_TEST is not set | 898 | # CONFIG_RCU_TORTURE_TEST is not set |
868 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 899 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -871,18 +902,24 @@ CONFIG_SCHED_DEBUG=y | |||
871 | # CONFIG_FAULT_INJECTION is not set | 902 | # CONFIG_FAULT_INJECTION is not set |
872 | # CONFIG_LATENCYTOP is not set | 903 | # CONFIG_LATENCYTOP is not set |
873 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 904 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
874 | CONFIG_NOP_TRACER=y | 905 | CONFIG_HAVE_FUNCTION_TRACER=y |
875 | CONFIG_HAVE_FTRACE=y | ||
876 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 906 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
877 | # CONFIG_FTRACE is not set | 907 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
908 | |||
909 | # | ||
910 | # Tracers | ||
911 | # | ||
912 | # CONFIG_FUNCTION_TRACER is not set | ||
878 | # CONFIG_SCHED_TRACER is not set | 913 | # CONFIG_SCHED_TRACER is not set |
879 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 914 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
880 | # CONFIG_BOOT_TRACER is not set | 915 | # CONFIG_BOOT_TRACER is not set |
916 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
881 | # CONFIG_STACK_TRACER is not set | 917 | # CONFIG_STACK_TRACER is not set |
882 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 918 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
883 | # CONFIG_SAMPLES is not set | 919 | # CONFIG_SAMPLES is not set |
884 | CONFIG_HAVE_ARCH_KGDB=y | 920 | CONFIG_HAVE_ARCH_KGDB=y |
885 | # CONFIG_KGDB is not set | 921 | # CONFIG_KGDB is not set |
922 | CONFIG_PRINT_STACK_DEPTH=64 | ||
886 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 923 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
887 | # CONFIG_DEBUG_STACK_USAGE is not set | 924 | # CONFIG_DEBUG_STACK_USAGE is not set |
888 | # CONFIG_DEBUG_PAGEALLOC is not set | 925 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -922,11 +959,15 @@ CONFIG_CRYPTO=y | |||
922 | # | 959 | # |
923 | # CONFIG_CRYPTO_FIPS is not set | 960 | # CONFIG_CRYPTO_FIPS is not set |
924 | CONFIG_CRYPTO_ALGAPI=y | 961 | CONFIG_CRYPTO_ALGAPI=y |
925 | CONFIG_CRYPTO_AEAD=y | 962 | CONFIG_CRYPTO_ALGAPI2=y |
963 | CONFIG_CRYPTO_AEAD2=y | ||
926 | CONFIG_CRYPTO_BLKCIPHER=y | 964 | CONFIG_CRYPTO_BLKCIPHER=y |
965 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
927 | CONFIG_CRYPTO_HASH=y | 966 | CONFIG_CRYPTO_HASH=y |
928 | CONFIG_CRYPTO_RNG=y | 967 | CONFIG_CRYPTO_HASH2=y |
968 | CONFIG_CRYPTO_RNG2=y | ||
929 | CONFIG_CRYPTO_MANAGER=y | 969 | CONFIG_CRYPTO_MANAGER=y |
970 | CONFIG_CRYPTO_MANAGER2=y | ||
930 | # CONFIG_CRYPTO_GF128MUL is not set | 971 | # CONFIG_CRYPTO_GF128MUL is not set |
931 | # CONFIG_CRYPTO_NULL is not set | 972 | # CONFIG_CRYPTO_NULL is not set |
932 | # CONFIG_CRYPTO_CRYPTD is not set | 973 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/sam440ep_defconfig b/arch/powerpc/configs/44x/sam440ep_defconfig index ce28cd6f0d4f..70d5c3fa3283 100644 --- a/arch/powerpc/configs/44x/sam440ep_defconfig +++ b/arch/powerpc/configs/44x/sam440ep_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:15 2008 | 4 | # Tue Jan 20 08:22:42 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -76,12 +77,12 @@ CONFIG_POSIX_MQUEUE=y | |||
76 | CONFIG_IKCONFIG=y | 77 | CONFIG_IKCONFIG=y |
77 | # CONFIG_IKCONFIG_PROC is not set | 78 | # CONFIG_IKCONFIG_PROC is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -115,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +126,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 131 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +133,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
139 | # CONFIG_LBD is not set | 137 | # CONFIG_LBD is not set |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 141 | ||
@@ -155,6 +152,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 154 | CONFIG_CLASSIC_RCU=y |
155 | # CONFIG_TREE_RCU is not set | ||
156 | # CONFIG_PREEMPT_RCU is not set | ||
157 | # CONFIG_TREE_RCU_TRACE is not set | ||
158 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
160 | 161 | ||
@@ -193,6 +194,7 @@ CONFIG_IBM440EP_ERR42=y | |||
193 | # CONFIG_GENERIC_IOMAP is not set | 194 | # CONFIG_GENERIC_IOMAP is not set |
194 | # CONFIG_CPU_FREQ is not set | 195 | # CONFIG_CPU_FREQ is not set |
195 | # CONFIG_FSL_ULI1575 is not set | 196 | # CONFIG_FSL_ULI1575 is not set |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
196 | 198 | ||
197 | # | 199 | # |
198 | # Kernel options | 200 | # Kernel options |
@@ -216,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
216 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
217 | # CONFIG_MATH_EMULATION is not set | 219 | # CONFIG_MATH_EMULATION is not set |
218 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
220 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -230,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
230 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
232 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
233 | CONFIG_RESOURCES_64BIT=y | ||
234 | CONFIG_PHYS_ADDR_T_64BIT=y | 236 | CONFIG_PHYS_ADDR_T_64BIT=y |
235 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
236 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
237 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
238 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
241 | CONFIG_CMDLINE_BOOL=y | 246 | CONFIG_CMDLINE_BOOL=y |
@@ -258,6 +263,7 @@ CONFIG_PCI_SYSCALL=y | |||
258 | CONFIG_ARCH_SUPPORTS_MSI=y | 263 | CONFIG_ARCH_SUPPORTS_MSI=y |
259 | # CONFIG_PCI_MSI is not set | 264 | # CONFIG_PCI_MSI is not set |
260 | CONFIG_PCI_LEGACY=y | 265 | CONFIG_PCI_LEGACY=y |
266 | # CONFIG_PCI_STUB is not set | ||
261 | # CONFIG_PCCARD is not set | 267 | # CONFIG_PCCARD is not set |
262 | # CONFIG_HOTPLUG_PCI is not set | 268 | # CONFIG_HOTPLUG_PCI is not set |
263 | # CONFIG_HAS_RAPIDIO is not set | 269 | # CONFIG_HAS_RAPIDIO is not set |
@@ -282,6 +288,7 @@ CONFIG_NET=y | |||
282 | # | 288 | # |
283 | # Networking options | 289 | # Networking options |
284 | # | 290 | # |
291 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
285 | CONFIG_PACKET=y | 292 | CONFIG_PACKET=y |
286 | # CONFIG_PACKET_MMAP is not set | 293 | # CONFIG_PACKET_MMAP is not set |
287 | CONFIG_UNIX=y | 294 | CONFIG_UNIX=y |
@@ -332,6 +339,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_ECONET is not set | 339 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 340 | # CONFIG_WAN_ROUTER is not set |
334 | # CONFIG_NET_SCHED is not set | 341 | # CONFIG_NET_SCHED is not set |
342 | # CONFIG_DCB is not set | ||
335 | 343 | ||
336 | # | 344 | # |
337 | # Network testing | 345 | # Network testing |
@@ -344,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_AF_RXRPC is not set | 352 | # CONFIG_AF_RXRPC is not set |
345 | # CONFIG_PHONET is not set | 353 | # CONFIG_PHONET is not set |
346 | # CONFIG_WIRELESS is not set | 354 | # CONFIG_WIRELESS is not set |
355 | # CONFIG_WIMAX is not set | ||
347 | # CONFIG_RFKILL is not set | 356 | # CONFIG_RFKILL is not set |
348 | # CONFIG_NET_9P is not set | 357 | # CONFIG_NET_9P is not set |
349 | 358 | ||
@@ -551,6 +560,10 @@ CONFIG_IBM_NEW_EMAC_ZMII=y | |||
551 | # CONFIG_IWLWIFI_LEDS is not set | 560 | # CONFIG_IWLWIFI_LEDS is not set |
552 | 561 | ||
553 | # | 562 | # |
563 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
564 | # | ||
565 | |||
566 | # | ||
554 | # USB Network Adapters | 567 | # USB Network Adapters |
555 | # | 568 | # |
556 | # CONFIG_USB_CATC is not set | 569 | # CONFIG_USB_CATC is not set |
@@ -605,6 +618,7 @@ CONFIG_MOUSE_PS2_LOGIPS2PP=y | |||
605 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 618 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
606 | CONFIG_MOUSE_PS2_LIFEBOOK=y | 619 | CONFIG_MOUSE_PS2_LIFEBOOK=y |
607 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 620 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
621 | # CONFIG_MOUSE_PS2_ELANTECH is not set | ||
608 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 622 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
609 | # CONFIG_MOUSE_SERIAL is not set | 623 | # CONFIG_MOUSE_SERIAL is not set |
610 | # CONFIG_MOUSE_APPLETOUCH is not set | 624 | # CONFIG_MOUSE_APPLETOUCH is not set |
@@ -661,9 +675,12 @@ CONFIG_SERIAL_CORE=y | |||
661 | CONFIG_SERIAL_CORE_CONSOLE=y | 675 | CONFIG_SERIAL_CORE_CONSOLE=y |
662 | # CONFIG_SERIAL_JSM is not set | 676 | # CONFIG_SERIAL_JSM is not set |
663 | CONFIG_SERIAL_OF_PLATFORM=y | 677 | CONFIG_SERIAL_OF_PLATFORM=y |
678 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
664 | CONFIG_UNIX98_PTYS=y | 679 | CONFIG_UNIX98_PTYS=y |
680 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
665 | CONFIG_LEGACY_PTYS=y | 681 | CONFIG_LEGACY_PTYS=y |
666 | CONFIG_LEGACY_PTY_COUNT=256 | 682 | CONFIG_LEGACY_PTY_COUNT=256 |
683 | # CONFIG_HVC_UDBG is not set | ||
667 | # CONFIG_IPMI_HANDLER is not set | 684 | # CONFIG_IPMI_HANDLER is not set |
668 | # CONFIG_HW_RANDOM is not set | 685 | # CONFIG_HW_RANDOM is not set |
669 | # CONFIG_NVRAM is not set | 686 | # CONFIG_NVRAM is not set |
@@ -751,11 +768,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
751 | # CONFIG_THERMAL is not set | 768 | # CONFIG_THERMAL is not set |
752 | # CONFIG_THERMAL_HWMON is not set | 769 | # CONFIG_THERMAL_HWMON is not set |
753 | # CONFIG_WATCHDOG is not set | 770 | # CONFIG_WATCHDOG is not set |
771 | CONFIG_SSB_POSSIBLE=y | ||
754 | 772 | ||
755 | # | 773 | # |
756 | # Sonics Silicon Backplane | 774 | # Sonics Silicon Backplane |
757 | # | 775 | # |
758 | CONFIG_SSB_POSSIBLE=y | ||
759 | # CONFIG_SSB is not set | 776 | # CONFIG_SSB is not set |
760 | 777 | ||
761 | # | 778 | # |
@@ -764,9 +781,13 @@ CONFIG_SSB_POSSIBLE=y | |||
764 | # CONFIG_MFD_CORE is not set | 781 | # CONFIG_MFD_CORE is not set |
765 | # CONFIG_MFD_SM501 is not set | 782 | # CONFIG_MFD_SM501 is not set |
766 | # CONFIG_HTC_PASIC3 is not set | 783 | # CONFIG_HTC_PASIC3 is not set |
784 | # CONFIG_TWL4030_CORE is not set | ||
767 | # CONFIG_MFD_TMIO is not set | 785 | # CONFIG_MFD_TMIO is not set |
786 | # CONFIG_PMIC_DA903X is not set | ||
768 | # CONFIG_MFD_WM8400 is not set | 787 | # CONFIG_MFD_WM8400 is not set |
769 | # CONFIG_MFD_WM8350_I2C is not set | 788 | # CONFIG_MFD_WM8350_I2C is not set |
789 | # CONFIG_MFD_PCF50633 is not set | ||
790 | # CONFIG_REGULATOR is not set | ||
770 | 791 | ||
771 | # | 792 | # |
772 | # Multimedia devices | 793 | # Multimedia devices |
@@ -848,12 +869,13 @@ CONFIG_FB_RADEON_BACKLIGHT=y | |||
848 | # CONFIG_FB_IBM_GXT4500 is not set | 869 | # CONFIG_FB_IBM_GXT4500 is not set |
849 | # CONFIG_FB_VIRTUAL is not set | 870 | # CONFIG_FB_VIRTUAL is not set |
850 | # CONFIG_FB_METRONOME is not set | 871 | # CONFIG_FB_METRONOME is not set |
872 | # CONFIG_FB_MB862XX is not set | ||
851 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 873 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
852 | CONFIG_LCD_CLASS_DEVICE=y | 874 | CONFIG_LCD_CLASS_DEVICE=y |
853 | # CONFIG_LCD_ILI9320 is not set | 875 | # CONFIG_LCD_ILI9320 is not set |
854 | # CONFIG_LCD_PLATFORM is not set | 876 | # CONFIG_LCD_PLATFORM is not set |
855 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 877 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
856 | # CONFIG_BACKLIGHT_CORGI is not set | 878 | CONFIG_BACKLIGHT_GENERIC=y |
857 | 879 | ||
858 | # | 880 | # |
859 | # Display device support | 881 | # Display device support |
@@ -894,11 +916,9 @@ CONFIG_HID_COMPAT=y | |||
894 | CONFIG_HID_A4TECH=y | 916 | CONFIG_HID_A4TECH=y |
895 | CONFIG_HID_APPLE=y | 917 | CONFIG_HID_APPLE=y |
896 | CONFIG_HID_BELKIN=y | 918 | CONFIG_HID_BELKIN=y |
897 | CONFIG_HID_BRIGHT=y | ||
898 | CONFIG_HID_CHERRY=y | 919 | CONFIG_HID_CHERRY=y |
899 | CONFIG_HID_CHICONY=y | 920 | CONFIG_HID_CHICONY=y |
900 | CONFIG_HID_CYPRESS=y | 921 | CONFIG_HID_CYPRESS=y |
901 | CONFIG_HID_DELL=y | ||
902 | CONFIG_HID_EZKEY=y | 922 | CONFIG_HID_EZKEY=y |
903 | CONFIG_HID_GYRATION=y | 923 | CONFIG_HID_GYRATION=y |
904 | CONFIG_HID_LOGITECH=y | 924 | CONFIG_HID_LOGITECH=y |
@@ -906,12 +926,15 @@ CONFIG_HID_LOGITECH=y | |||
906 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 926 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
907 | CONFIG_HID_MICROSOFT=y | 927 | CONFIG_HID_MICROSOFT=y |
908 | CONFIG_HID_MONTEREY=y | 928 | CONFIG_HID_MONTEREY=y |
929 | # CONFIG_HID_NTRIG is not set | ||
909 | CONFIG_HID_PANTHERLORD=y | 930 | CONFIG_HID_PANTHERLORD=y |
910 | # CONFIG_PANTHERLORD_FF is not set | 931 | # CONFIG_PANTHERLORD_FF is not set |
911 | CONFIG_HID_PETALYNX=y | 932 | CONFIG_HID_PETALYNX=y |
912 | CONFIG_HID_SAMSUNG=y | 933 | CONFIG_HID_SAMSUNG=y |
913 | CONFIG_HID_SONY=y | 934 | CONFIG_HID_SONY=y |
914 | CONFIG_HID_SUNPLUS=y | 935 | CONFIG_HID_SUNPLUS=y |
936 | # CONFIG_GREENASIA_FF is not set | ||
937 | # CONFIG_HID_TOPSEED is not set | ||
915 | CONFIG_THRUSTMASTER_FF=m | 938 | CONFIG_THRUSTMASTER_FF=m |
916 | CONFIG_ZEROPLUS_FF=m | 939 | CONFIG_ZEROPLUS_FF=m |
917 | CONFIG_USB_SUPPORT=y | 940 | CONFIG_USB_SUPPORT=y |
@@ -943,6 +966,7 @@ CONFIG_USB_EHCI_HCD=m | |||
943 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 966 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
944 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 967 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
945 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 968 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
969 | # CONFIG_USB_OXU210HP_HCD is not set | ||
946 | # CONFIG_USB_ISP116X_HCD is not set | 970 | # CONFIG_USB_ISP116X_HCD is not set |
947 | # CONFIG_USB_ISP1760_HCD is not set | 971 | # CONFIG_USB_ISP1760_HCD is not set |
948 | CONFIG_USB_OHCI_HCD=y | 972 | CONFIG_USB_OHCI_HCD=y |
@@ -968,18 +992,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
968 | # CONFIG_USB_TMC is not set | 992 | # CONFIG_USB_TMC is not set |
969 | 993 | ||
970 | # | 994 | # |
971 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 995 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
972 | # | 996 | # |
973 | 997 | ||
974 | # | 998 | # |
975 | # may also be needed; see USB_STORAGE Help for more information | 999 | # see USB_STORAGE Help for more information |
976 | # | 1000 | # |
977 | CONFIG_USB_STORAGE=m | 1001 | CONFIG_USB_STORAGE=m |
978 | # CONFIG_USB_STORAGE_DEBUG is not set | 1002 | # CONFIG_USB_STORAGE_DEBUG is not set |
979 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1003 | # CONFIG_USB_STORAGE_DATAFAB is not set |
980 | # CONFIG_USB_STORAGE_FREECOM is not set | 1004 | # CONFIG_USB_STORAGE_FREECOM is not set |
981 | # CONFIG_USB_STORAGE_ISD200 is not set | 1005 | # CONFIG_USB_STORAGE_ISD200 is not set |
982 | # CONFIG_USB_STORAGE_DPCM is not set | ||
983 | # CONFIG_USB_STORAGE_USBAT is not set | 1006 | # CONFIG_USB_STORAGE_USBAT is not set |
984 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1007 | # CONFIG_USB_STORAGE_SDDR09 is not set |
985 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1008 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1027,6 +1050,10 @@ CONFIG_USB_STORAGE=m | |||
1027 | # CONFIG_USB_ISIGHTFW is not set | 1050 | # CONFIG_USB_ISIGHTFW is not set |
1028 | # CONFIG_USB_VST is not set | 1051 | # CONFIG_USB_VST is not set |
1029 | # CONFIG_USB_GADGET is not set | 1052 | # CONFIG_USB_GADGET is not set |
1053 | |||
1054 | # | ||
1055 | # OTG and related infrastructure | ||
1056 | # | ||
1030 | # CONFIG_UWB is not set | 1057 | # CONFIG_UWB is not set |
1031 | # CONFIG_MMC is not set | 1058 | # CONFIG_MMC is not set |
1032 | # CONFIG_MEMSTICK is not set | 1059 | # CONFIG_MEMSTICK is not set |
@@ -1065,6 +1092,7 @@ CONFIG_RTC_DRV_M41T80=y | |||
1065 | CONFIG_RTC_DRV_M41T80_WDT=y | 1092 | CONFIG_RTC_DRV_M41T80_WDT=y |
1066 | # CONFIG_RTC_DRV_S35390A is not set | 1093 | # CONFIG_RTC_DRV_S35390A is not set |
1067 | # CONFIG_RTC_DRV_FM3130 is not set | 1094 | # CONFIG_RTC_DRV_FM3130 is not set |
1095 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1068 | 1096 | ||
1069 | # | 1097 | # |
1070 | # SPI RTC drivers | 1098 | # SPI RTC drivers |
@@ -1117,6 +1145,7 @@ CONFIG_FS_POSIX_ACL=y | |||
1117 | CONFIG_FILE_LOCKING=y | 1145 | CONFIG_FILE_LOCKING=y |
1118 | # CONFIG_XFS_FS is not set | 1146 | # CONFIG_XFS_FS is not set |
1119 | # CONFIG_OCFS2_FS is not set | 1147 | # CONFIG_OCFS2_FS is not set |
1148 | # CONFIG_BTRFS_FS is not set | ||
1120 | CONFIG_DNOTIFY=y | 1149 | CONFIG_DNOTIFY=y |
1121 | CONFIG_INOTIFY=y | 1150 | CONFIG_INOTIFY=y |
1122 | CONFIG_INOTIFY_USER=y | 1151 | CONFIG_INOTIFY_USER=y |
@@ -1156,10 +1185,7 @@ CONFIG_TMPFS=y | |||
1156 | # CONFIG_TMPFS_POSIX_ACL is not set | 1185 | # CONFIG_TMPFS_POSIX_ACL is not set |
1157 | # CONFIG_HUGETLB_PAGE is not set | 1186 | # CONFIG_HUGETLB_PAGE is not set |
1158 | # CONFIG_CONFIGFS_FS is not set | 1187 | # CONFIG_CONFIGFS_FS is not set |
1159 | 1188 | CONFIG_MISC_FILESYSTEMS=y | |
1160 | # | ||
1161 | # Miscellaneous filesystems | ||
1162 | # | ||
1163 | # CONFIG_ADFS_FS is not set | 1189 | # CONFIG_ADFS_FS is not set |
1164 | CONFIG_AFFS_FS=m | 1190 | CONFIG_AFFS_FS=m |
1165 | # CONFIG_HFS_FS is not set | 1191 | # CONFIG_HFS_FS is not set |
@@ -1168,6 +1194,7 @@ CONFIG_AFFS_FS=m | |||
1168 | # CONFIG_BFS_FS is not set | 1194 | # CONFIG_BFS_FS is not set |
1169 | # CONFIG_EFS_FS is not set | 1195 | # CONFIG_EFS_FS is not set |
1170 | # CONFIG_CRAMFS is not set | 1196 | # CONFIG_CRAMFS is not set |
1197 | # CONFIG_SQUASHFS is not set | ||
1171 | # CONFIG_VXFS_FS is not set | 1198 | # CONFIG_VXFS_FS is not set |
1172 | # CONFIG_MINIX_FS is not set | 1199 | # CONFIG_MINIX_FS is not set |
1173 | # CONFIG_OMFS_FS is not set | 1200 | # CONFIG_OMFS_FS is not set |
@@ -1245,6 +1272,7 @@ CONFIG_NLS_ISO8859_1=y | |||
1245 | # Library routines | 1272 | # Library routines |
1246 | # | 1273 | # |
1247 | CONFIG_BITREVERSE=y | 1274 | CONFIG_BITREVERSE=y |
1275 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1248 | # CONFIG_CRC_CCITT is not set | 1276 | # CONFIG_CRC_CCITT is not set |
1249 | # CONFIG_CRC16 is not set | 1277 | # CONFIG_CRC16 is not set |
1250 | CONFIG_CRC_T10DIF=y | 1278 | CONFIG_CRC_T10DIF=y |
@@ -1278,12 +1306,17 @@ CONFIG_MAGIC_SYSRQ=y | |||
1278 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1306 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1279 | # CONFIG_LATENCYTOP is not set | 1307 | # CONFIG_LATENCYTOP is not set |
1280 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1308 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1281 | CONFIG_NOP_TRACER=y | 1309 | CONFIG_HAVE_FUNCTION_TRACER=y |
1282 | CONFIG_HAVE_FTRACE=y | ||
1283 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1310 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1311 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1312 | |||
1313 | # | ||
1314 | # Tracers | ||
1315 | # | ||
1284 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1316 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1285 | # CONFIG_SAMPLES is not set | 1317 | # CONFIG_SAMPLES is not set |
1286 | CONFIG_HAVE_ARCH_KGDB=y | 1318 | CONFIG_HAVE_ARCH_KGDB=y |
1319 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1287 | # CONFIG_IRQSTACKS is not set | 1320 | # CONFIG_IRQSTACKS is not set |
1288 | # CONFIG_PPC_EARLY_DEBUG is not set | 1321 | # CONFIG_PPC_EARLY_DEBUG is not set |
1289 | 1322 | ||
diff --git a/arch/powerpc/configs/44x/sequoia_defconfig b/arch/powerpc/configs/44x/sequoia_defconfig index 562beeaab53d..a921fe3c3711 100644 --- a/arch/powerpc/configs/44x/sequoia_defconfig +++ b/arch/powerpc/configs/44x/sequoia_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:16 2008 | 4 | # Tue Jan 20 08:22:45 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,12 +76,12 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 80 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -115,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +126,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 131 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +133,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
139 | CONFIG_LBD=y | 137 | CONFIG_LBD=y |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 141 | ||
@@ -155,6 +152,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 154 | CONFIG_CLASSIC_RCU=y |
155 | # CONFIG_TREE_RCU is not set | ||
156 | # CONFIG_PREEMPT_RCU is not set | ||
157 | # CONFIG_TREE_RCU_TRACE is not set | ||
158 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
160 | 161 | ||
@@ -192,6 +193,7 @@ CONFIG_440EPX=y | |||
192 | # CONFIG_GENERIC_IOMAP is not set | 193 | # CONFIG_GENERIC_IOMAP is not set |
193 | # CONFIG_CPU_FREQ is not set | 194 | # CONFIG_CPU_FREQ is not set |
194 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
196 | # CONFIG_SIMPLE_GPIO is not set | ||
195 | 197 | ||
196 | # | 198 | # |
197 | # Kernel options | 199 | # Kernel options |
@@ -216,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
216 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
217 | # CONFIG_MATH_EMULATION is not set | 219 | # CONFIG_MATH_EMULATION is not set |
218 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
220 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -230,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
230 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
232 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
233 | CONFIG_RESOURCES_64BIT=y | ||
234 | CONFIG_PHYS_ADDR_T_64BIT=y | 236 | CONFIG_PHYS_ADDR_T_64BIT=y |
235 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
236 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
237 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
238 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
241 | CONFIG_CMDLINE_BOOL=y | 246 | CONFIG_CMDLINE_BOOL=y |
@@ -259,6 +264,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
259 | # CONFIG_PCI_MSI is not set | 264 | # CONFIG_PCI_MSI is not set |
260 | CONFIG_PCI_LEGACY=y | 265 | CONFIG_PCI_LEGACY=y |
261 | # CONFIG_PCI_DEBUG is not set | 266 | # CONFIG_PCI_DEBUG is not set |
267 | # CONFIG_PCI_STUB is not set | ||
262 | # CONFIG_PCCARD is not set | 268 | # CONFIG_PCCARD is not set |
263 | # CONFIG_HOTPLUG_PCI is not set | 269 | # CONFIG_HOTPLUG_PCI is not set |
264 | # CONFIG_HAS_RAPIDIO is not set | 270 | # CONFIG_HAS_RAPIDIO is not set |
@@ -283,6 +289,7 @@ CONFIG_NET=y | |||
283 | # | 289 | # |
284 | # Networking options | 290 | # Networking options |
285 | # | 291 | # |
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
286 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
287 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
288 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
@@ -333,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
333 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
334 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
335 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
336 | 344 | ||
337 | # | 345 | # |
338 | # Network testing | 346 | # Network testing |
@@ -345,6 +353,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_AF_RXRPC is not set | 353 | # CONFIG_AF_RXRPC is not set |
346 | # CONFIG_PHONET is not set | 354 | # CONFIG_PHONET is not set |
347 | # CONFIG_WIRELESS is not set | 355 | # CONFIG_WIRELESS is not set |
356 | # CONFIG_WIMAX is not set | ||
348 | # CONFIG_RFKILL is not set | 357 | # CONFIG_RFKILL is not set |
349 | # CONFIG_NET_9P is not set | 358 | # CONFIG_NET_9P is not set |
350 | 359 | ||
@@ -370,6 +379,7 @@ CONFIG_MTD=y | |||
370 | # CONFIG_MTD_DEBUG is not set | 379 | # CONFIG_MTD_DEBUG is not set |
371 | # CONFIG_MTD_CONCAT is not set | 380 | # CONFIG_MTD_CONCAT is not set |
372 | CONFIG_MTD_PARTITIONS=y | 381 | CONFIG_MTD_PARTITIONS=y |
382 | # CONFIG_MTD_TESTS is not set | ||
373 | # CONFIG_MTD_REDBOOT_PARTS is not set | 383 | # CONFIG_MTD_REDBOOT_PARTS is not set |
374 | CONFIG_MTD_CMDLINE_PARTS=y | 384 | CONFIG_MTD_CMDLINE_PARTS=y |
375 | CONFIG_MTD_OF_PARTS=y | 385 | CONFIG_MTD_OF_PARTS=y |
@@ -442,6 +452,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
442 | # CONFIG_MTD_ONENAND is not set | 452 | # CONFIG_MTD_ONENAND is not set |
443 | 453 | ||
444 | # | 454 | # |
455 | # LPDDR flash memory drivers | ||
456 | # | ||
457 | # CONFIG_MTD_LPDDR is not set | ||
458 | # CONFIG_MTD_QINFO_PROBE is not set | ||
459 | |||
460 | # | ||
445 | # UBI - Unsorted block images | 461 | # UBI - Unsorted block images |
446 | # | 462 | # |
447 | # CONFIG_MTD_UBI is not set | 463 | # CONFIG_MTD_UBI is not set |
@@ -472,6 +488,7 @@ CONFIG_MISC_DEVICES=y | |||
472 | # CONFIG_TIFM_CORE is not set | 488 | # CONFIG_TIFM_CORE is not set |
473 | # CONFIG_ENCLOSURE_SERVICES is not set | 489 | # CONFIG_ENCLOSURE_SERVICES is not set |
474 | # CONFIG_HP_ILO is not set | 490 | # CONFIG_HP_ILO is not set |
491 | # CONFIG_C2PORT is not set | ||
475 | CONFIG_HAVE_IDE=y | 492 | CONFIG_HAVE_IDE=y |
476 | # CONFIG_IDE is not set | 493 | # CONFIG_IDE is not set |
477 | 494 | ||
@@ -554,6 +571,7 @@ CONFIG_NETDEV_1000=y | |||
554 | # CONFIG_JME is not set | 571 | # CONFIG_JME is not set |
555 | CONFIG_NETDEV_10000=y | 572 | CONFIG_NETDEV_10000=y |
556 | # CONFIG_CHELSIO_T1 is not set | 573 | # CONFIG_CHELSIO_T1 is not set |
574 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
557 | # CONFIG_CHELSIO_T3 is not set | 575 | # CONFIG_CHELSIO_T3 is not set |
558 | # CONFIG_ENIC is not set | 576 | # CONFIG_ENIC is not set |
559 | # CONFIG_IXGBE is not set | 577 | # CONFIG_IXGBE is not set |
@@ -576,6 +594,10 @@ CONFIG_NETDEV_10000=y | |||
576 | # CONFIG_WLAN_PRE80211 is not set | 594 | # CONFIG_WLAN_PRE80211 is not set |
577 | # CONFIG_WLAN_80211 is not set | 595 | # CONFIG_WLAN_80211 is not set |
578 | # CONFIG_IWLWIFI_LEDS is not set | 596 | # CONFIG_IWLWIFI_LEDS is not set |
597 | |||
598 | # | ||
599 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
600 | # | ||
579 | # CONFIG_WAN is not set | 601 | # CONFIG_WAN is not set |
580 | # CONFIG_FDDI is not set | 602 | # CONFIG_FDDI is not set |
581 | # CONFIG_HIPPI is not set | 603 | # CONFIG_HIPPI is not set |
@@ -628,9 +650,12 @@ CONFIG_SERIAL_CORE=y | |||
628 | CONFIG_SERIAL_CORE_CONSOLE=y | 650 | CONFIG_SERIAL_CORE_CONSOLE=y |
629 | # CONFIG_SERIAL_JSM is not set | 651 | # CONFIG_SERIAL_JSM is not set |
630 | CONFIG_SERIAL_OF_PLATFORM=y | 652 | CONFIG_SERIAL_OF_PLATFORM=y |
653 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
631 | CONFIG_UNIX98_PTYS=y | 654 | CONFIG_UNIX98_PTYS=y |
655 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
632 | CONFIG_LEGACY_PTYS=y | 656 | CONFIG_LEGACY_PTYS=y |
633 | CONFIG_LEGACY_PTY_COUNT=256 | 657 | CONFIG_LEGACY_PTY_COUNT=256 |
658 | # CONFIG_HVC_UDBG is not set | ||
634 | # CONFIG_IPMI_HANDLER is not set | 659 | # CONFIG_IPMI_HANDLER is not set |
635 | # CONFIG_HW_RANDOM is not set | 660 | # CONFIG_HW_RANDOM is not set |
636 | # CONFIG_NVRAM is not set | 661 | # CONFIG_NVRAM is not set |
@@ -649,11 +674,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
649 | # CONFIG_HWMON is not set | 674 | # CONFIG_HWMON is not set |
650 | CONFIG_THERMAL=y | 675 | CONFIG_THERMAL=y |
651 | # CONFIG_WATCHDOG is not set | 676 | # CONFIG_WATCHDOG is not set |
677 | CONFIG_SSB_POSSIBLE=y | ||
652 | 678 | ||
653 | # | 679 | # |
654 | # Sonics Silicon Backplane | 680 | # Sonics Silicon Backplane |
655 | # | 681 | # |
656 | CONFIG_SSB_POSSIBLE=y | ||
657 | # CONFIG_SSB is not set | 682 | # CONFIG_SSB is not set |
658 | 683 | ||
659 | # | 684 | # |
@@ -663,7 +688,7 @@ CONFIG_SSB_POSSIBLE=y | |||
663 | # CONFIG_MFD_SM501 is not set | 688 | # CONFIG_MFD_SM501 is not set |
664 | # CONFIG_HTC_PASIC3 is not set | 689 | # CONFIG_HTC_PASIC3 is not set |
665 | # CONFIG_MFD_TMIO is not set | 690 | # CONFIG_MFD_TMIO is not set |
666 | # CONFIG_MFD_WM8400 is not set | 691 | # CONFIG_REGULATOR is not set |
667 | 692 | ||
668 | # | 693 | # |
669 | # Multimedia devices | 694 | # Multimedia devices |
@@ -709,9 +734,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
709 | # | 734 | # |
710 | 735 | ||
711 | # | 736 | # |
712 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 737 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
713 | # | 738 | # |
714 | # CONFIG_USB_GADGET is not set | 739 | # CONFIG_USB_GADGET is not set |
740 | |||
741 | # | ||
742 | # OTG and related infrastructure | ||
743 | # | ||
715 | # CONFIG_UWB is not set | 744 | # CONFIG_UWB is not set |
716 | # CONFIG_MMC is not set | 745 | # CONFIG_MMC is not set |
717 | # CONFIG_MEMSTICK is not set | 746 | # CONFIG_MEMSTICK is not set |
@@ -737,7 +766,9 @@ CONFIG_EXT2_FS=y | |||
737 | # CONFIG_FS_POSIX_ACL is not set | 766 | # CONFIG_FS_POSIX_ACL is not set |
738 | CONFIG_FILE_LOCKING=y | 767 | CONFIG_FILE_LOCKING=y |
739 | # CONFIG_XFS_FS is not set | 768 | # CONFIG_XFS_FS is not set |
769 | # CONFIG_GFS2_FS is not set | ||
740 | # CONFIG_OCFS2_FS is not set | 770 | # CONFIG_OCFS2_FS is not set |
771 | # CONFIG_BTRFS_FS is not set | ||
741 | CONFIG_DNOTIFY=y | 772 | CONFIG_DNOTIFY=y |
742 | CONFIG_INOTIFY=y | 773 | CONFIG_INOTIFY=y |
743 | CONFIG_INOTIFY_USER=y | 774 | CONFIG_INOTIFY_USER=y |
@@ -771,10 +802,7 @@ CONFIG_TMPFS=y | |||
771 | # CONFIG_TMPFS_POSIX_ACL is not set | 802 | # CONFIG_TMPFS_POSIX_ACL is not set |
772 | # CONFIG_HUGETLB_PAGE is not set | 803 | # CONFIG_HUGETLB_PAGE is not set |
773 | # CONFIG_CONFIGFS_FS is not set | 804 | # CONFIG_CONFIGFS_FS is not set |
774 | 805 | CONFIG_MISC_FILESYSTEMS=y | |
775 | # | ||
776 | # Miscellaneous filesystems | ||
777 | # | ||
778 | # CONFIG_ADFS_FS is not set | 806 | # CONFIG_ADFS_FS is not set |
779 | # CONFIG_AFFS_FS is not set | 807 | # CONFIG_AFFS_FS is not set |
780 | # CONFIG_HFS_FS is not set | 808 | # CONFIG_HFS_FS is not set |
@@ -794,6 +822,7 @@ CONFIG_JFFS2_ZLIB=y | |||
794 | CONFIG_JFFS2_RTIME=y | 822 | CONFIG_JFFS2_RTIME=y |
795 | # CONFIG_JFFS2_RUBIN is not set | 823 | # CONFIG_JFFS2_RUBIN is not set |
796 | CONFIG_CRAMFS=y | 824 | CONFIG_CRAMFS=y |
825 | # CONFIG_SQUASHFS is not set | ||
797 | # CONFIG_VXFS_FS is not set | 826 | # CONFIG_VXFS_FS is not set |
798 | # CONFIG_MINIX_FS is not set | 827 | # CONFIG_MINIX_FS is not set |
799 | # CONFIG_OMFS_FS is not set | 828 | # CONFIG_OMFS_FS is not set |
@@ -834,6 +863,7 @@ CONFIG_MSDOS_PARTITION=y | |||
834 | # Library routines | 863 | # Library routines |
835 | # | 864 | # |
836 | CONFIG_BITREVERSE=y | 865 | CONFIG_BITREVERSE=y |
866 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
837 | # CONFIG_CRC_CCITT is not set | 867 | # CONFIG_CRC_CCITT is not set |
838 | # CONFIG_CRC16 is not set | 868 | # CONFIG_CRC16 is not set |
839 | # CONFIG_CRC_T10DIF is not set | 869 | # CONFIG_CRC_T10DIF is not set |
@@ -885,6 +915,7 @@ CONFIG_SCHED_DEBUG=y | |||
885 | # CONFIG_DEBUG_MEMORY_INIT is not set | 915 | # CONFIG_DEBUG_MEMORY_INIT is not set |
886 | # CONFIG_DEBUG_LIST is not set | 916 | # CONFIG_DEBUG_LIST is not set |
887 | # CONFIG_DEBUG_SG is not set | 917 | # CONFIG_DEBUG_SG is not set |
918 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
888 | # CONFIG_BOOT_PRINTK_DELAY is not set | 919 | # CONFIG_BOOT_PRINTK_DELAY is not set |
889 | # CONFIG_RCU_TORTURE_TEST is not set | 920 | # CONFIG_RCU_TORTURE_TEST is not set |
890 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 921 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -893,18 +924,24 @@ CONFIG_SCHED_DEBUG=y | |||
893 | # CONFIG_FAULT_INJECTION is not set | 924 | # CONFIG_FAULT_INJECTION is not set |
894 | # CONFIG_LATENCYTOP is not set | 925 | # CONFIG_LATENCYTOP is not set |
895 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 926 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
896 | CONFIG_NOP_TRACER=y | 927 | CONFIG_HAVE_FUNCTION_TRACER=y |
897 | CONFIG_HAVE_FTRACE=y | ||
898 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 928 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
899 | # CONFIG_FTRACE is not set | 929 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
930 | |||
931 | # | ||
932 | # Tracers | ||
933 | # | ||
934 | # CONFIG_FUNCTION_TRACER is not set | ||
900 | # CONFIG_SCHED_TRACER is not set | 935 | # CONFIG_SCHED_TRACER is not set |
901 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 936 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
902 | # CONFIG_BOOT_TRACER is not set | 937 | # CONFIG_BOOT_TRACER is not set |
938 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
903 | # CONFIG_STACK_TRACER is not set | 939 | # CONFIG_STACK_TRACER is not set |
904 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 940 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
905 | # CONFIG_SAMPLES is not set | 941 | # CONFIG_SAMPLES is not set |
906 | CONFIG_HAVE_ARCH_KGDB=y | 942 | CONFIG_HAVE_ARCH_KGDB=y |
907 | # CONFIG_KGDB is not set | 943 | # CONFIG_KGDB is not set |
944 | CONFIG_PRINT_STACK_DEPTH=64 | ||
908 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 945 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
909 | # CONFIG_DEBUG_STACK_USAGE is not set | 946 | # CONFIG_DEBUG_STACK_USAGE is not set |
910 | # CONFIG_DEBUG_PAGEALLOC is not set | 947 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -944,11 +981,15 @@ CONFIG_CRYPTO=y | |||
944 | # | 981 | # |
945 | # CONFIG_CRYPTO_FIPS is not set | 982 | # CONFIG_CRYPTO_FIPS is not set |
946 | CONFIG_CRYPTO_ALGAPI=y | 983 | CONFIG_CRYPTO_ALGAPI=y |
947 | CONFIG_CRYPTO_AEAD=y | 984 | CONFIG_CRYPTO_ALGAPI2=y |
985 | CONFIG_CRYPTO_AEAD2=y | ||
948 | CONFIG_CRYPTO_BLKCIPHER=y | 986 | CONFIG_CRYPTO_BLKCIPHER=y |
987 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
949 | CONFIG_CRYPTO_HASH=y | 988 | CONFIG_CRYPTO_HASH=y |
950 | CONFIG_CRYPTO_RNG=y | 989 | CONFIG_CRYPTO_HASH2=y |
990 | CONFIG_CRYPTO_RNG2=y | ||
951 | CONFIG_CRYPTO_MANAGER=y | 991 | CONFIG_CRYPTO_MANAGER=y |
992 | CONFIG_CRYPTO_MANAGER2=y | ||
952 | # CONFIG_CRYPTO_GF128MUL is not set | 993 | # CONFIG_CRYPTO_GF128MUL is not set |
953 | # CONFIG_CRYPTO_NULL is not set | 994 | # CONFIG_CRYPTO_NULL is not set |
954 | # CONFIG_CRYPTO_CRYPTD is not set | 995 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/taishan_defconfig b/arch/powerpc/configs/44x/taishan_defconfig index 427bb6a11be5..826700872d26 100644 --- a/arch/powerpc/configs/44x/taishan_defconfig +++ b/arch/powerpc/configs/44x/taishan_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:18 2008 | 4 | # Tue Jan 20 08:22:47 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -74,12 +75,12 @@ CONFIG_POSIX_MQUEUE=y | |||
74 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
75 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
76 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
77 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
79 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
80 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
81 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
82 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -114,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
119 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -125,7 +125,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
130 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
131 | # CONFIG_MODULE_FORCE_LOAD is not set | 130 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -133,11 +132,9 @@ CONFIG_MODULE_UNLOAD=y | |||
133 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 132 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
134 | # CONFIG_MODVERSIONS is not set | 133 | # CONFIG_MODVERSIONS is not set |
135 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
136 | CONFIG_KMOD=y | ||
137 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
138 | CONFIG_LBD=y | 136 | CONFIG_LBD=y |
139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 137 | # CONFIG_BLK_DEV_IO_TRACE is not set |
140 | # CONFIG_LSF is not set | ||
141 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
142 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
143 | 140 | ||
@@ -154,6 +151,10 @@ CONFIG_DEFAULT_AS=y | |||
154 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
155 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
156 | CONFIG_CLASSIC_RCU=y | 153 | CONFIG_CLASSIC_RCU=y |
154 | # CONFIG_TREE_RCU is not set | ||
155 | # CONFIG_PREEMPT_RCU is not set | ||
156 | # CONFIG_TREE_RCU_TRACE is not set | ||
157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
157 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
158 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 159 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
159 | 160 | ||
@@ -191,6 +192,7 @@ CONFIG_440GX=y | |||
191 | # CONFIG_GENERIC_IOMAP is not set | 192 | # CONFIG_GENERIC_IOMAP is not set |
192 | # CONFIG_CPU_FREQ is not set | 193 | # CONFIG_CPU_FREQ is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 194 | # CONFIG_FSL_ULI1575 is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
194 | 196 | ||
195 | # | 197 | # |
196 | # Kernel options | 198 | # Kernel options |
@@ -214,6 +216,7 @@ CONFIG_BINFMT_ELF=y | |||
214 | # CONFIG_BINFMT_MISC is not set | 216 | # CONFIG_BINFMT_MISC is not set |
215 | # CONFIG_MATH_EMULATION is not set | 217 | # CONFIG_MATH_EMULATION is not set |
216 | # CONFIG_IOMMU_HELPER is not set | 218 | # CONFIG_IOMMU_HELPER is not set |
219 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
218 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 221 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -228,12 +231,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
228 | CONFIG_PAGEFLAGS_EXTENDED=y | 231 | CONFIG_PAGEFLAGS_EXTENDED=y |
229 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
230 | CONFIG_MIGRATION=y | 233 | CONFIG_MIGRATION=y |
231 | CONFIG_RESOURCES_64BIT=y | ||
232 | CONFIG_PHYS_ADDR_T_64BIT=y | 234 | CONFIG_PHYS_ADDR_T_64BIT=y |
233 | CONFIG_ZONE_DMA_FLAG=1 | 235 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 236 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 237 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_UNEVICTABLE_LRU=y | 238 | CONFIG_UNEVICTABLE_LRU=y |
239 | CONFIG_PPC_4K_PAGES=y | ||
240 | # CONFIG_PPC_16K_PAGES is not set | ||
241 | # CONFIG_PPC_64K_PAGES is not set | ||
237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 242 | CONFIG_FORCE_MAX_ZONEORDER=11 |
238 | CONFIG_PROC_DEVICETREE=y | 243 | CONFIG_PROC_DEVICETREE=y |
239 | CONFIG_CMDLINE_BOOL=y | 244 | CONFIG_CMDLINE_BOOL=y |
@@ -257,6 +262,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
257 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
258 | CONFIG_PCI_LEGACY=y | 263 | CONFIG_PCI_LEGACY=y |
259 | # CONFIG_PCI_DEBUG is not set | 264 | # CONFIG_PCI_DEBUG is not set |
265 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 266 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 267 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 268 | # CONFIG_HAS_RAPIDIO is not set |
@@ -281,6 +287,7 @@ CONFIG_NET=y | |||
281 | # | 287 | # |
282 | # Networking options | 288 | # Networking options |
283 | # | 289 | # |
290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
284 | CONFIG_PACKET=y | 291 | CONFIG_PACKET=y |
285 | # CONFIG_PACKET_MMAP is not set | 292 | # CONFIG_PACKET_MMAP is not set |
286 | CONFIG_UNIX=y | 293 | CONFIG_UNIX=y |
@@ -331,6 +338,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
331 | # CONFIG_ECONET is not set | 338 | # CONFIG_ECONET is not set |
332 | # CONFIG_WAN_ROUTER is not set | 339 | # CONFIG_WAN_ROUTER is not set |
333 | # CONFIG_NET_SCHED is not set | 340 | # CONFIG_NET_SCHED is not set |
341 | # CONFIG_DCB is not set | ||
334 | 342 | ||
335 | # | 343 | # |
336 | # Network testing | 344 | # Network testing |
@@ -343,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_AF_RXRPC is not set | 351 | # CONFIG_AF_RXRPC is not set |
344 | # CONFIG_PHONET is not set | 352 | # CONFIG_PHONET is not set |
345 | # CONFIG_WIRELESS is not set | 353 | # CONFIG_WIRELESS is not set |
354 | # CONFIG_WIMAX is not set | ||
346 | # CONFIG_RFKILL is not set | 355 | # CONFIG_RFKILL is not set |
347 | # CONFIG_NET_9P is not set | 356 | # CONFIG_NET_9P is not set |
348 | 357 | ||
@@ -368,6 +377,7 @@ CONFIG_MTD=y | |||
368 | # CONFIG_MTD_DEBUG is not set | 377 | # CONFIG_MTD_DEBUG is not set |
369 | # CONFIG_MTD_CONCAT is not set | 378 | # CONFIG_MTD_CONCAT is not set |
370 | CONFIG_MTD_PARTITIONS=y | 379 | CONFIG_MTD_PARTITIONS=y |
380 | # CONFIG_MTD_TESTS is not set | ||
371 | # CONFIG_MTD_REDBOOT_PARTS is not set | 381 | # CONFIG_MTD_REDBOOT_PARTS is not set |
372 | CONFIG_MTD_CMDLINE_PARTS=y | 382 | CONFIG_MTD_CMDLINE_PARTS=y |
373 | # CONFIG_MTD_OF_PARTS is not set | 383 | # CONFIG_MTD_OF_PARTS is not set |
@@ -440,6 +450,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
440 | # CONFIG_MTD_ONENAND is not set | 450 | # CONFIG_MTD_ONENAND is not set |
441 | 451 | ||
442 | # | 452 | # |
453 | # LPDDR flash memory drivers | ||
454 | # | ||
455 | # CONFIG_MTD_LPDDR is not set | ||
456 | # CONFIG_MTD_QINFO_PROBE is not set | ||
457 | |||
458 | # | ||
443 | # UBI - Unsorted block images | 459 | # UBI - Unsorted block images |
444 | # | 460 | # |
445 | # CONFIG_MTD_UBI is not set | 461 | # CONFIG_MTD_UBI is not set |
@@ -470,6 +486,7 @@ CONFIG_MISC_DEVICES=y | |||
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 487 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 488 | # CONFIG_HP_ILO is not set |
489 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 490 | CONFIG_HAVE_IDE=y |
474 | # CONFIG_IDE is not set | 491 | # CONFIG_IDE is not set |
475 | 492 | ||
@@ -554,6 +571,7 @@ CONFIG_NETDEV_1000=y | |||
554 | # CONFIG_JME is not set | 571 | # CONFIG_JME is not set |
555 | CONFIG_NETDEV_10000=y | 572 | CONFIG_NETDEV_10000=y |
556 | # CONFIG_CHELSIO_T1 is not set | 573 | # CONFIG_CHELSIO_T1 is not set |
574 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
557 | # CONFIG_CHELSIO_T3 is not set | 575 | # CONFIG_CHELSIO_T3 is not set |
558 | # CONFIG_ENIC is not set | 576 | # CONFIG_ENIC is not set |
559 | # CONFIG_IXGBE is not set | 577 | # CONFIG_IXGBE is not set |
@@ -576,6 +594,10 @@ CONFIG_NETDEV_10000=y | |||
576 | # CONFIG_WLAN_PRE80211 is not set | 594 | # CONFIG_WLAN_PRE80211 is not set |
577 | # CONFIG_WLAN_80211 is not set | 595 | # CONFIG_WLAN_80211 is not set |
578 | # CONFIG_IWLWIFI_LEDS is not set | 596 | # CONFIG_IWLWIFI_LEDS is not set |
597 | |||
598 | # | ||
599 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
600 | # | ||
579 | # CONFIG_WAN is not set | 601 | # CONFIG_WAN is not set |
580 | # CONFIG_FDDI is not set | 602 | # CONFIG_FDDI is not set |
581 | # CONFIG_HIPPI is not set | 603 | # CONFIG_HIPPI is not set |
@@ -628,9 +650,12 @@ CONFIG_SERIAL_CORE=y | |||
628 | CONFIG_SERIAL_CORE_CONSOLE=y | 650 | CONFIG_SERIAL_CORE_CONSOLE=y |
629 | # CONFIG_SERIAL_JSM is not set | 651 | # CONFIG_SERIAL_JSM is not set |
630 | CONFIG_SERIAL_OF_PLATFORM=y | 652 | CONFIG_SERIAL_OF_PLATFORM=y |
653 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
631 | CONFIG_UNIX98_PTYS=y | 654 | CONFIG_UNIX98_PTYS=y |
655 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
632 | CONFIG_LEGACY_PTYS=y | 656 | CONFIG_LEGACY_PTYS=y |
633 | CONFIG_LEGACY_PTY_COUNT=256 | 657 | CONFIG_LEGACY_PTY_COUNT=256 |
658 | # CONFIG_HVC_UDBG is not set | ||
634 | # CONFIG_IPMI_HANDLER is not set | 659 | # CONFIG_IPMI_HANDLER is not set |
635 | # CONFIG_HW_RANDOM is not set | 660 | # CONFIG_HW_RANDOM is not set |
636 | # CONFIG_NVRAM is not set | 661 | # CONFIG_NVRAM is not set |
@@ -649,11 +674,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
649 | # CONFIG_HWMON is not set | 674 | # CONFIG_HWMON is not set |
650 | CONFIG_THERMAL=y | 675 | CONFIG_THERMAL=y |
651 | # CONFIG_WATCHDOG is not set | 676 | # CONFIG_WATCHDOG is not set |
677 | CONFIG_SSB_POSSIBLE=y | ||
652 | 678 | ||
653 | # | 679 | # |
654 | # Sonics Silicon Backplane | 680 | # Sonics Silicon Backplane |
655 | # | 681 | # |
656 | CONFIG_SSB_POSSIBLE=y | ||
657 | # CONFIG_SSB is not set | 682 | # CONFIG_SSB is not set |
658 | 683 | ||
659 | # | 684 | # |
@@ -663,7 +688,7 @@ CONFIG_SSB_POSSIBLE=y | |||
663 | # CONFIG_MFD_SM501 is not set | 688 | # CONFIG_MFD_SM501 is not set |
664 | # CONFIG_HTC_PASIC3 is not set | 689 | # CONFIG_HTC_PASIC3 is not set |
665 | # CONFIG_MFD_TMIO is not set | 690 | # CONFIG_MFD_TMIO is not set |
666 | # CONFIG_MFD_WM8400 is not set | 691 | # CONFIG_REGULATOR is not set |
667 | 692 | ||
668 | # | 693 | # |
669 | # Multimedia devices | 694 | # Multimedia devices |
@@ -709,9 +734,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
709 | # | 734 | # |
710 | 735 | ||
711 | # | 736 | # |
712 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 737 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
713 | # | 738 | # |
714 | # CONFIG_USB_GADGET is not set | 739 | # CONFIG_USB_GADGET is not set |
740 | |||
741 | # | ||
742 | # OTG and related infrastructure | ||
743 | # | ||
715 | # CONFIG_UWB is not set | 744 | # CONFIG_UWB is not set |
716 | # CONFIG_MMC is not set | 745 | # CONFIG_MMC is not set |
717 | # CONFIG_MEMSTICK is not set | 746 | # CONFIG_MEMSTICK is not set |
@@ -737,7 +766,9 @@ CONFIG_EXT2_FS=y | |||
737 | # CONFIG_FS_POSIX_ACL is not set | 766 | # CONFIG_FS_POSIX_ACL is not set |
738 | CONFIG_FILE_LOCKING=y | 767 | CONFIG_FILE_LOCKING=y |
739 | # CONFIG_XFS_FS is not set | 768 | # CONFIG_XFS_FS is not set |
769 | # CONFIG_GFS2_FS is not set | ||
740 | # CONFIG_OCFS2_FS is not set | 770 | # CONFIG_OCFS2_FS is not set |
771 | # CONFIG_BTRFS_FS is not set | ||
741 | CONFIG_DNOTIFY=y | 772 | CONFIG_DNOTIFY=y |
742 | CONFIG_INOTIFY=y | 773 | CONFIG_INOTIFY=y |
743 | CONFIG_INOTIFY_USER=y | 774 | CONFIG_INOTIFY_USER=y |
@@ -771,10 +802,7 @@ CONFIG_TMPFS=y | |||
771 | # CONFIG_TMPFS_POSIX_ACL is not set | 802 | # CONFIG_TMPFS_POSIX_ACL is not set |
772 | # CONFIG_HUGETLB_PAGE is not set | 803 | # CONFIG_HUGETLB_PAGE is not set |
773 | # CONFIG_CONFIGFS_FS is not set | 804 | # CONFIG_CONFIGFS_FS is not set |
774 | 805 | CONFIG_MISC_FILESYSTEMS=y | |
775 | # | ||
776 | # Miscellaneous filesystems | ||
777 | # | ||
778 | # CONFIG_ADFS_FS is not set | 806 | # CONFIG_ADFS_FS is not set |
779 | # CONFIG_AFFS_FS is not set | 807 | # CONFIG_AFFS_FS is not set |
780 | # CONFIG_HFS_FS is not set | 808 | # CONFIG_HFS_FS is not set |
@@ -784,6 +812,7 @@ CONFIG_TMPFS=y | |||
784 | # CONFIG_EFS_FS is not set | 812 | # CONFIG_EFS_FS is not set |
785 | # CONFIG_JFFS2_FS is not set | 813 | # CONFIG_JFFS2_FS is not set |
786 | CONFIG_CRAMFS=y | 814 | CONFIG_CRAMFS=y |
815 | # CONFIG_SQUASHFS is not set | ||
787 | # CONFIG_VXFS_FS is not set | 816 | # CONFIG_VXFS_FS is not set |
788 | # CONFIG_MINIX_FS is not set | 817 | # CONFIG_MINIX_FS is not set |
789 | # CONFIG_OMFS_FS is not set | 818 | # CONFIG_OMFS_FS is not set |
@@ -824,6 +853,7 @@ CONFIG_MSDOS_PARTITION=y | |||
824 | # Library routines | 853 | # Library routines |
825 | # | 854 | # |
826 | CONFIG_BITREVERSE=y | 855 | CONFIG_BITREVERSE=y |
856 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
827 | # CONFIG_CRC_CCITT is not set | 857 | # CONFIG_CRC_CCITT is not set |
828 | # CONFIG_CRC16 is not set | 858 | # CONFIG_CRC16 is not set |
829 | # CONFIG_CRC_T10DIF is not set | 859 | # CONFIG_CRC_T10DIF is not set |
@@ -874,6 +904,7 @@ CONFIG_SCHED_DEBUG=y | |||
874 | # CONFIG_DEBUG_MEMORY_INIT is not set | 904 | # CONFIG_DEBUG_MEMORY_INIT is not set |
875 | # CONFIG_DEBUG_LIST is not set | 905 | # CONFIG_DEBUG_LIST is not set |
876 | # CONFIG_DEBUG_SG is not set | 906 | # CONFIG_DEBUG_SG is not set |
907 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
877 | # CONFIG_BOOT_PRINTK_DELAY is not set | 908 | # CONFIG_BOOT_PRINTK_DELAY is not set |
878 | # CONFIG_RCU_TORTURE_TEST is not set | 909 | # CONFIG_RCU_TORTURE_TEST is not set |
879 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 910 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -882,18 +913,24 @@ CONFIG_SCHED_DEBUG=y | |||
882 | # CONFIG_FAULT_INJECTION is not set | 913 | # CONFIG_FAULT_INJECTION is not set |
883 | # CONFIG_LATENCYTOP is not set | 914 | # CONFIG_LATENCYTOP is not set |
884 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 915 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
885 | CONFIG_NOP_TRACER=y | 916 | CONFIG_HAVE_FUNCTION_TRACER=y |
886 | CONFIG_HAVE_FTRACE=y | ||
887 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 917 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
888 | # CONFIG_FTRACE is not set | 918 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
919 | |||
920 | # | ||
921 | # Tracers | ||
922 | # | ||
923 | # CONFIG_FUNCTION_TRACER is not set | ||
889 | # CONFIG_SCHED_TRACER is not set | 924 | # CONFIG_SCHED_TRACER is not set |
890 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 925 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
891 | # CONFIG_BOOT_TRACER is not set | 926 | # CONFIG_BOOT_TRACER is not set |
927 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
892 | # CONFIG_STACK_TRACER is not set | 928 | # CONFIG_STACK_TRACER is not set |
893 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 929 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
894 | # CONFIG_SAMPLES is not set | 930 | # CONFIG_SAMPLES is not set |
895 | CONFIG_HAVE_ARCH_KGDB=y | 931 | CONFIG_HAVE_ARCH_KGDB=y |
896 | # CONFIG_KGDB is not set | 932 | # CONFIG_KGDB is not set |
933 | CONFIG_PRINT_STACK_DEPTH=64 | ||
897 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 934 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
898 | # CONFIG_DEBUG_STACK_USAGE is not set | 935 | # CONFIG_DEBUG_STACK_USAGE is not set |
899 | # CONFIG_DEBUG_PAGEALLOC is not set | 936 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -920,11 +957,15 @@ CONFIG_CRYPTO=y | |||
920 | # | 957 | # |
921 | # CONFIG_CRYPTO_FIPS is not set | 958 | # CONFIG_CRYPTO_FIPS is not set |
922 | CONFIG_CRYPTO_ALGAPI=y | 959 | CONFIG_CRYPTO_ALGAPI=y |
923 | CONFIG_CRYPTO_AEAD=y | 960 | CONFIG_CRYPTO_ALGAPI2=y |
961 | CONFIG_CRYPTO_AEAD2=y | ||
924 | CONFIG_CRYPTO_BLKCIPHER=y | 962 | CONFIG_CRYPTO_BLKCIPHER=y |
963 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
925 | CONFIG_CRYPTO_HASH=y | 964 | CONFIG_CRYPTO_HASH=y |
926 | CONFIG_CRYPTO_RNG=y | 965 | CONFIG_CRYPTO_HASH2=y |
966 | CONFIG_CRYPTO_RNG2=y | ||
927 | CONFIG_CRYPTO_MANAGER=y | 967 | CONFIG_CRYPTO_MANAGER=y |
968 | CONFIG_CRYPTO_MANAGER2=y | ||
928 | # CONFIG_CRYPTO_GF128MUL is not set | 969 | # CONFIG_CRYPTO_GF128MUL is not set |
929 | # CONFIG_CRYPTO_NULL is not set | 970 | # CONFIG_CRYPTO_NULL is not set |
930 | # CONFIG_CRYPTO_CRYPTD is not set | 971 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/virtex5_defconfig b/arch/powerpc/configs/44x/virtex5_defconfig index 7513d360e0b0..15aab1ca6384 100644 --- a/arch/powerpc/configs/44x/virtex5_defconfig +++ b/arch/powerpc/configs/44x/virtex5_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.28-rc4 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Fri Nov 14 10:31:16 2008 | 4 | # Tue Jan 20 08:22:49 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -18,6 +18,7 @@ CONFIG_4xx=y | |||
18 | CONFIG_BOOKE=y | 18 | CONFIG_BOOKE=y |
19 | CONFIG_PTE_64BIT=y | 19 | CONFIG_PTE_64BIT=y |
20 | CONFIG_PHYS_64BIT=y | 20 | CONFIG_PHYS_64BIT=y |
21 | CONFIG_PPC_MMU_NOHASH=y | ||
21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
22 | CONFIG_NOT_COHERENT_CACHE=y | 23 | CONFIG_NOT_COHERENT_CACHE=y |
23 | CONFIG_PPC32=y | 24 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -77,8 +78,8 @@ CONFIG_POSIX_MQUEUE=y | |||
77 | CONFIG_IKCONFIG=y | 78 | CONFIG_IKCONFIG=y |
78 | CONFIG_IKCONFIG_PROC=y | 79 | CONFIG_IKCONFIG_PROC=y |
79 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
80 | # CONFIG_CGROUPS is not set | ||
81 | # CONFIG_GROUP_SCHED is not set | 81 | # CONFIG_GROUP_SCHED is not set |
82 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
83 | CONFIG_SYSFS_DEPRECATED_V2=y | 84 | CONFIG_SYSFS_DEPRECATED_V2=y |
84 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
@@ -116,7 +117,6 @@ CONFIG_SLAB=y | |||
116 | # CONFIG_SLUB is not set | 117 | # CONFIG_SLUB is not set |
117 | # CONFIG_SLOB is not set | 118 | # CONFIG_SLOB is not set |
118 | # CONFIG_PROFILING is not set | 119 | # CONFIG_PROFILING is not set |
119 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
121 | # CONFIG_KPROBES is not set | 121 | # CONFIG_KPROBES is not set |
122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -127,7 +127,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
128 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
129 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
130 | # CONFIG_TINY_SHMEM is not set | ||
131 | CONFIG_BASE_SMALL=0 | 130 | CONFIG_BASE_SMALL=0 |
132 | CONFIG_MODULES=y | 131 | CONFIG_MODULES=y |
133 | # CONFIG_MODULE_FORCE_LOAD is not set | 132 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -135,11 +134,9 @@ CONFIG_MODULE_UNLOAD=y | |||
135 | CONFIG_MODULE_FORCE_UNLOAD=y | 134 | CONFIG_MODULE_FORCE_UNLOAD=y |
136 | CONFIG_MODVERSIONS=y | 135 | CONFIG_MODVERSIONS=y |
137 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 136 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
138 | CONFIG_KMOD=y | ||
139 | CONFIG_BLOCK=y | 137 | CONFIG_BLOCK=y |
140 | # CONFIG_LBD is not set | 138 | # CONFIG_LBD is not set |
141 | # CONFIG_BLK_DEV_IO_TRACE is not set | 139 | # CONFIG_BLK_DEV_IO_TRACE is not set |
142 | # CONFIG_LSF is not set | ||
143 | # CONFIG_BLK_DEV_BSG is not set | 140 | # CONFIG_BLK_DEV_BSG is not set |
144 | # CONFIG_BLK_DEV_INTEGRITY is not set | 141 | # CONFIG_BLK_DEV_INTEGRITY is not set |
145 | 142 | ||
@@ -156,6 +153,10 @@ CONFIG_DEFAULT_CFQ=y | |||
156 | # CONFIG_DEFAULT_NOOP is not set | 153 | # CONFIG_DEFAULT_NOOP is not set |
157 | CONFIG_DEFAULT_IOSCHED="cfq" | 154 | CONFIG_DEFAULT_IOSCHED="cfq" |
158 | CONFIG_CLASSIC_RCU=y | 155 | CONFIG_CLASSIC_RCU=y |
156 | # CONFIG_TREE_RCU is not set | ||
157 | # CONFIG_PREEMPT_RCU is not set | ||
158 | # CONFIG_TREE_RCU_TRACE is not set | ||
159 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
159 | # CONFIG_FREEZER is not set | 160 | # CONFIG_FREEZER is not set |
160 | # CONFIG_PPC4xx_PCI_EXPRESS is not set | 161 | # CONFIG_PPC4xx_PCI_EXPRESS is not set |
161 | 162 | ||
@@ -194,6 +195,7 @@ CONFIG_XILINX_VIRTEX_5_FXT=y | |||
194 | # CONFIG_GENERIC_IOMAP is not set | 195 | # CONFIG_GENERIC_IOMAP is not set |
195 | # CONFIG_CPU_FREQ is not set | 196 | # CONFIG_CPU_FREQ is not set |
196 | # CONFIG_FSL_ULI1575 is not set | 197 | # CONFIG_FSL_ULI1575 is not set |
198 | # CONFIG_SIMPLE_GPIO is not set | ||
197 | 199 | ||
198 | # | 200 | # |
199 | # Kernel options | 201 | # Kernel options |
@@ -211,13 +213,13 @@ CONFIG_HZ=250 | |||
211 | # CONFIG_PREEMPT_NONE is not set | 213 | # CONFIG_PREEMPT_NONE is not set |
212 | # CONFIG_PREEMPT_VOLUNTARY is not set | 214 | # CONFIG_PREEMPT_VOLUNTARY is not set |
213 | CONFIG_PREEMPT=y | 215 | CONFIG_PREEMPT=y |
214 | # CONFIG_PREEMPT_RCU is not set | ||
215 | CONFIG_BINFMT_ELF=y | 216 | CONFIG_BINFMT_ELF=y |
216 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 217 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
217 | # CONFIG_HAVE_AOUT is not set | 218 | # CONFIG_HAVE_AOUT is not set |
218 | # CONFIG_BINFMT_MISC is not set | 219 | # CONFIG_BINFMT_MISC is not set |
219 | CONFIG_MATH_EMULATION=y | 220 | CONFIG_MATH_EMULATION=y |
220 | # CONFIG_IOMMU_HELPER is not set | 221 | # CONFIG_IOMMU_HELPER is not set |
222 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 223 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
222 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 224 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
223 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 225 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -232,12 +234,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
232 | CONFIG_PAGEFLAGS_EXTENDED=y | 234 | CONFIG_PAGEFLAGS_EXTENDED=y |
233 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 235 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
234 | CONFIG_MIGRATION=y | 236 | CONFIG_MIGRATION=y |
235 | CONFIG_RESOURCES_64BIT=y | ||
236 | CONFIG_PHYS_ADDR_T_64BIT=y | 237 | CONFIG_PHYS_ADDR_T_64BIT=y |
237 | CONFIG_ZONE_DMA_FLAG=1 | 238 | CONFIG_ZONE_DMA_FLAG=1 |
238 | CONFIG_BOUNCE=y | 239 | CONFIG_BOUNCE=y |
239 | CONFIG_VIRT_TO_BUS=y | 240 | CONFIG_VIRT_TO_BUS=y |
240 | CONFIG_UNEVICTABLE_LRU=y | 241 | CONFIG_UNEVICTABLE_LRU=y |
242 | CONFIG_PPC_4K_PAGES=y | ||
243 | # CONFIG_PPC_16K_PAGES is not set | ||
244 | # CONFIG_PPC_64K_PAGES is not set | ||
241 | CONFIG_FORCE_MAX_ZONEORDER=11 | 245 | CONFIG_FORCE_MAX_ZONEORDER=11 |
242 | CONFIG_PROC_DEVICETREE=y | 246 | CONFIG_PROC_DEVICETREE=y |
243 | CONFIG_CMDLINE_BOOL=y | 247 | CONFIG_CMDLINE_BOOL=y |
@@ -261,6 +265,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
261 | # CONFIG_PCI_MSI is not set | 265 | # CONFIG_PCI_MSI is not set |
262 | CONFIG_PCI_LEGACY=y | 266 | CONFIG_PCI_LEGACY=y |
263 | # CONFIG_PCI_DEBUG is not set | 267 | # CONFIG_PCI_DEBUG is not set |
268 | # CONFIG_PCI_STUB is not set | ||
264 | # CONFIG_PCCARD is not set | 269 | # CONFIG_PCCARD is not set |
265 | # CONFIG_HOTPLUG_PCI is not set | 270 | # CONFIG_HOTPLUG_PCI is not set |
266 | # CONFIG_HAS_RAPIDIO is not set | 271 | # CONFIG_HAS_RAPIDIO is not set |
@@ -285,6 +290,8 @@ CONFIG_NET=y | |||
285 | # | 290 | # |
286 | # Networking options | 291 | # Networking options |
287 | # | 292 | # |
293 | # CONFIG_NET_NS is not set | ||
294 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
288 | CONFIG_PACKET=y | 295 | CONFIG_PACKET=y |
289 | # CONFIG_PACKET_MMAP is not set | 296 | # CONFIG_PACKET_MMAP is not set |
290 | CONFIG_UNIX=y | 297 | CONFIG_UNIX=y |
@@ -428,6 +435,7 @@ CONFIG_IP_NF_MANGLE=m | |||
428 | # CONFIG_ECONET is not set | 435 | # CONFIG_ECONET is not set |
429 | # CONFIG_WAN_ROUTER is not set | 436 | # CONFIG_WAN_ROUTER is not set |
430 | # CONFIG_NET_SCHED is not set | 437 | # CONFIG_NET_SCHED is not set |
438 | # CONFIG_DCB is not set | ||
431 | 439 | ||
432 | # | 440 | # |
433 | # Network testing | 441 | # Network testing |
@@ -443,8 +451,9 @@ CONFIG_WIRELESS=y | |||
443 | # CONFIG_CFG80211 is not set | 451 | # CONFIG_CFG80211 is not set |
444 | CONFIG_WIRELESS_OLD_REGULATORY=y | 452 | CONFIG_WIRELESS_OLD_REGULATORY=y |
445 | # CONFIG_WIRELESS_EXT is not set | 453 | # CONFIG_WIRELESS_EXT is not set |
454 | # CONFIG_LIB80211 is not set | ||
446 | # CONFIG_MAC80211 is not set | 455 | # CONFIG_MAC80211 is not set |
447 | # CONFIG_IEEE80211 is not set | 456 | # CONFIG_WIMAX is not set |
448 | # CONFIG_RFKILL is not set | 457 | # CONFIG_RFKILL is not set |
449 | # CONFIG_NET_9P is not set | 458 | # CONFIG_NET_9P is not set |
450 | 459 | ||
@@ -579,6 +588,10 @@ CONFIG_NETDEV_1000=y | |||
579 | # CONFIG_WLAN_PRE80211 is not set | 588 | # CONFIG_WLAN_PRE80211 is not set |
580 | # CONFIG_WLAN_80211 is not set | 589 | # CONFIG_WLAN_80211 is not set |
581 | # CONFIG_IWLWIFI_LEDS is not set | 590 | # CONFIG_IWLWIFI_LEDS is not set |
591 | |||
592 | # | ||
593 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
594 | # | ||
582 | # CONFIG_WAN is not set | 595 | # CONFIG_WAN is not set |
583 | # CONFIG_FDDI is not set | 596 | # CONFIG_FDDI is not set |
584 | # CONFIG_HIPPI is not set | 597 | # CONFIG_HIPPI is not set |
@@ -679,9 +692,12 @@ CONFIG_SERIAL_CORE=y | |||
679 | CONFIG_SERIAL_CORE_CONSOLE=y | 692 | CONFIG_SERIAL_CORE_CONSOLE=y |
680 | # CONFIG_SERIAL_JSM is not set | 693 | # CONFIG_SERIAL_JSM is not set |
681 | # CONFIG_SERIAL_OF_PLATFORM is not set | 694 | # CONFIG_SERIAL_OF_PLATFORM is not set |
695 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
682 | CONFIG_UNIX98_PTYS=y | 696 | CONFIG_UNIX98_PTYS=y |
697 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
683 | CONFIG_LEGACY_PTYS=y | 698 | CONFIG_LEGACY_PTYS=y |
684 | CONFIG_LEGACY_PTY_COUNT=256 | 699 | CONFIG_LEGACY_PTY_COUNT=256 |
700 | # CONFIG_HVC_UDBG is not set | ||
685 | # CONFIG_IPMI_HANDLER is not set | 701 | # CONFIG_IPMI_HANDLER is not set |
686 | CONFIG_HW_RANDOM=m | 702 | CONFIG_HW_RANDOM=m |
687 | # CONFIG_NVRAM is not set | 703 | # CONFIG_NVRAM is not set |
@@ -859,7 +875,6 @@ CONFIG_LOGO_LINUX_CLUT224=y | |||
859 | # CONFIG_DMADEVICES is not set | 875 | # CONFIG_DMADEVICES is not set |
860 | # CONFIG_UIO is not set | 876 | # CONFIG_UIO is not set |
861 | # CONFIG_STAGING is not set | 877 | # CONFIG_STAGING is not set |
862 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
863 | 878 | ||
864 | # | 879 | # |
865 | # File systems | 880 | # File systems |
@@ -875,6 +890,7 @@ CONFIG_EXT2_FS=y | |||
875 | CONFIG_FILE_LOCKING=y | 890 | CONFIG_FILE_LOCKING=y |
876 | # CONFIG_XFS_FS is not set | 891 | # CONFIG_XFS_FS is not set |
877 | # CONFIG_OCFS2_FS is not set | 892 | # CONFIG_OCFS2_FS is not set |
893 | # CONFIG_BTRFS_FS is not set | ||
878 | CONFIG_DNOTIFY=y | 894 | CONFIG_DNOTIFY=y |
879 | CONFIG_INOTIFY=y | 895 | CONFIG_INOTIFY=y |
880 | CONFIG_INOTIFY_USER=y | 896 | CONFIG_INOTIFY_USER=y |
@@ -911,10 +927,7 @@ CONFIG_TMPFS=y | |||
911 | # CONFIG_TMPFS_POSIX_ACL is not set | 927 | # CONFIG_TMPFS_POSIX_ACL is not set |
912 | # CONFIG_HUGETLB_PAGE is not set | 928 | # CONFIG_HUGETLB_PAGE is not set |
913 | # CONFIG_CONFIGFS_FS is not set | 929 | # CONFIG_CONFIGFS_FS is not set |
914 | 930 | CONFIG_MISC_FILESYSTEMS=y | |
915 | # | ||
916 | # Miscellaneous filesystems | ||
917 | # | ||
918 | # CONFIG_ADFS_FS is not set | 931 | # CONFIG_ADFS_FS is not set |
919 | # CONFIG_AFFS_FS is not set | 932 | # CONFIG_AFFS_FS is not set |
920 | # CONFIG_HFS_FS is not set | 933 | # CONFIG_HFS_FS is not set |
@@ -923,6 +936,7 @@ CONFIG_TMPFS=y | |||
923 | # CONFIG_BFS_FS is not set | 936 | # CONFIG_BFS_FS is not set |
924 | # CONFIG_EFS_FS is not set | 937 | # CONFIG_EFS_FS is not set |
925 | CONFIG_CRAMFS=y | 938 | CONFIG_CRAMFS=y |
939 | # CONFIG_SQUASHFS is not set | ||
926 | # CONFIG_VXFS_FS is not set | 940 | # CONFIG_VXFS_FS is not set |
927 | # CONFIG_MINIX_FS is not set | 941 | # CONFIG_MINIX_FS is not set |
928 | # CONFIG_OMFS_FS is not set | 942 | # CONFIG_OMFS_FS is not set |
@@ -1002,6 +1016,7 @@ CONFIG_NLS_UTF8=m | |||
1002 | # Library routines | 1016 | # Library routines |
1003 | # | 1017 | # |
1004 | CONFIG_BITREVERSE=y | 1018 | CONFIG_BITREVERSE=y |
1019 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1005 | CONFIG_CRC_CCITT=y | 1020 | CONFIG_CRC_CCITT=y |
1006 | # CONFIG_CRC16 is not set | 1021 | # CONFIG_CRC16 is not set |
1007 | # CONFIG_CRC_T10DIF is not set | 1022 | # CONFIG_CRC_T10DIF is not set |
@@ -1051,6 +1066,7 @@ CONFIG_DEBUG_INFO=y | |||
1051 | CONFIG_DEBUG_MEMORY_INIT=y | 1066 | CONFIG_DEBUG_MEMORY_INIT=y |
1052 | # CONFIG_DEBUG_LIST is not set | 1067 | # CONFIG_DEBUG_LIST is not set |
1053 | # CONFIG_DEBUG_SG is not set | 1068 | # CONFIG_DEBUG_SG is not set |
1069 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1054 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1070 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1055 | # CONFIG_RCU_TORTURE_TEST is not set | 1071 | # CONFIG_RCU_TORTURE_TEST is not set |
1056 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1072 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1060,6 +1076,8 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1060 | # CONFIG_LATENCYTOP is not set | 1076 | # CONFIG_LATENCYTOP is not set |
1061 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1077 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1062 | CONFIG_HAVE_FUNCTION_TRACER=y | 1078 | CONFIG_HAVE_FUNCTION_TRACER=y |
1079 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1080 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1063 | 1081 | ||
1064 | # | 1082 | # |
1065 | # Tracers | 1083 | # Tracers |
@@ -1069,11 +1087,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1069 | # CONFIG_SCHED_TRACER is not set | 1087 | # CONFIG_SCHED_TRACER is not set |
1070 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1088 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1071 | # CONFIG_BOOT_TRACER is not set | 1089 | # CONFIG_BOOT_TRACER is not set |
1090 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1072 | # CONFIG_STACK_TRACER is not set | 1091 | # CONFIG_STACK_TRACER is not set |
1073 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1092 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1074 | # CONFIG_SAMPLES is not set | 1093 | # CONFIG_SAMPLES is not set |
1075 | CONFIG_HAVE_ARCH_KGDB=y | 1094 | CONFIG_HAVE_ARCH_KGDB=y |
1076 | # CONFIG_KGDB is not set | 1095 | # CONFIG_KGDB is not set |
1096 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1077 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1097 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1078 | # CONFIG_DEBUG_STACK_USAGE is not set | 1098 | # CONFIG_DEBUG_STACK_USAGE is not set |
1079 | # CONFIG_DEBUG_PAGEALLOC is not set | 1099 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1099,6 +1119,7 @@ CONFIG_CRYPTO=y | |||
1099 | # | 1119 | # |
1100 | # CONFIG_CRYPTO_FIPS is not set | 1120 | # CONFIG_CRYPTO_FIPS is not set |
1101 | # CONFIG_CRYPTO_MANAGER is not set | 1121 | # CONFIG_CRYPTO_MANAGER is not set |
1122 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1102 | # CONFIG_CRYPTO_GF128MUL is not set | 1123 | # CONFIG_CRYPTO_GF128MUL is not set |
1103 | # CONFIG_CRYPTO_NULL is not set | 1124 | # CONFIG_CRYPTO_NULL is not set |
1104 | # CONFIG_CRYPTO_CRYPTD is not set | 1125 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/44x/warp_defconfig b/arch/powerpc/configs/44x/warp_defconfig index 031ac6d4212f..3b77f092abe1 100644 --- a/arch/powerpc/configs/44x/warp_defconfig +++ b/arch/powerpc/configs/44x/warp_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.28-rc2 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Oct 28 09:16:22 2008 | 4 | # Fri Jan 23 07:57:16 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -44,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,12 +76,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 80 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -113,7 +114,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 114 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
118 | # CONFIG_KPROBES is not set | 118 | # CONFIG_KPROBES is not set |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -124,7 +124,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 129 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +131,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 131 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 132 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 133 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 134 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 135 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 139 | ||
@@ -153,6 +150,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 152 | CONFIG_CLASSIC_RCU=y |
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
157 | 158 | ||
158 | # | 159 | # |
@@ -190,6 +191,7 @@ CONFIG_IBM440EP_ERR42=y | |||
190 | # CONFIG_GENERIC_IOMAP is not set | 191 | # CONFIG_GENERIC_IOMAP is not set |
191 | # CONFIG_CPU_FREQ is not set | 192 | # CONFIG_CPU_FREQ is not set |
192 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
194 | # CONFIG_SIMPLE_GPIO is not set | ||
193 | 195 | ||
194 | # | 196 | # |
195 | # Kernel options | 197 | # Kernel options |
@@ -213,6 +215,7 @@ CONFIG_BINFMT_ELF=y | |||
213 | # CONFIG_BINFMT_MISC is not set | 215 | # CONFIG_BINFMT_MISC is not set |
214 | # CONFIG_MATH_EMULATION is not set | 216 | # CONFIG_MATH_EMULATION is not set |
215 | # CONFIG_IOMMU_HELPER is not set | 217 | # CONFIG_IOMMU_HELPER is not set |
218 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
217 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 220 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -227,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
227 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
228 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
229 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
230 | CONFIG_RESOURCES_64BIT=y | ||
231 | CONFIG_PHYS_ADDR_T_64BIT=y | 233 | CONFIG_PHYS_ADDR_T_64BIT=y |
232 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
233 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
234 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
235 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
236 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
237 | CONFIG_PROC_DEVICETREE=y | 242 | CONFIG_PROC_DEVICETREE=y |
238 | CONFIG_CMDLINE_BOOL=y | 243 | CONFIG_CMDLINE_BOOL=y |
@@ -273,6 +278,7 @@ CONFIG_NET=y | |||
273 | # | 278 | # |
274 | # Networking options | 279 | # Networking options |
275 | # | 280 | # |
281 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
276 | CONFIG_PACKET=y | 282 | CONFIG_PACKET=y |
277 | # CONFIG_PACKET_MMAP is not set | 283 | # CONFIG_PACKET_MMAP is not set |
278 | CONFIG_UNIX=y | 284 | CONFIG_UNIX=y |
@@ -348,6 +354,7 @@ CONFIG_VLAN_8021Q=y | |||
348 | # CONFIG_ECONET is not set | 354 | # CONFIG_ECONET is not set |
349 | # CONFIG_WAN_ROUTER is not set | 355 | # CONFIG_WAN_ROUTER is not set |
350 | # CONFIG_NET_SCHED is not set | 356 | # CONFIG_NET_SCHED is not set |
357 | # CONFIG_DCB is not set | ||
351 | 358 | ||
352 | # | 359 | # |
353 | # Network testing | 360 | # Network testing |
@@ -360,6 +367,7 @@ CONFIG_VLAN_8021Q=y | |||
360 | # CONFIG_AF_RXRPC is not set | 367 | # CONFIG_AF_RXRPC is not set |
361 | # CONFIG_PHONET is not set | 368 | # CONFIG_PHONET is not set |
362 | # CONFIG_WIRELESS is not set | 369 | # CONFIG_WIRELESS is not set |
370 | # CONFIG_WIMAX is not set | ||
363 | # CONFIG_RFKILL is not set | 371 | # CONFIG_RFKILL is not set |
364 | # CONFIG_NET_9P is not set | 372 | # CONFIG_NET_9P is not set |
365 | 373 | ||
@@ -380,8 +388,9 @@ CONFIG_MTD=y | |||
380 | # CONFIG_MTD_DEBUG is not set | 388 | # CONFIG_MTD_DEBUG is not set |
381 | # CONFIG_MTD_CONCAT is not set | 389 | # CONFIG_MTD_CONCAT is not set |
382 | CONFIG_MTD_PARTITIONS=y | 390 | CONFIG_MTD_PARTITIONS=y |
391 | # CONFIG_MTD_TESTS is not set | ||
383 | # CONFIG_MTD_REDBOOT_PARTS is not set | 392 | # CONFIG_MTD_REDBOOT_PARTS is not set |
384 | # CONFIG_MTD_CMDLINE_PARTS is not set | 393 | CONFIG_MTD_CMDLINE_PARTS=y |
385 | CONFIG_MTD_OF_PARTS=y | 394 | CONFIG_MTD_OF_PARTS=y |
386 | # CONFIG_MTD_AR7_PARTS is not set | 395 | # CONFIG_MTD_AR7_PARTS is not set |
387 | 396 | ||
@@ -396,7 +405,7 @@ CONFIG_MTD_BLOCK=y | |||
396 | # CONFIG_INFTL is not set | 405 | # CONFIG_INFTL is not set |
397 | # CONFIG_RFD_FTL is not set | 406 | # CONFIG_RFD_FTL is not set |
398 | # CONFIG_SSFDC is not set | 407 | # CONFIG_SSFDC is not set |
399 | CONFIG_MTD_OOPS=m | 408 | # CONFIG_MTD_OOPS is not set |
400 | 409 | ||
401 | # | 410 | # |
402 | # RAM/ROM/Flash chip drivers | 411 | # RAM/ROM/Flash chip drivers |
@@ -450,6 +459,7 @@ CONFIG_MTD_NAND=y | |||
450 | CONFIG_MTD_NAND_ECC_SMC=y | 459 | CONFIG_MTD_NAND_ECC_SMC=y |
451 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | 460 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set |
452 | CONFIG_MTD_NAND_IDS=y | 461 | CONFIG_MTD_NAND_IDS=y |
462 | CONFIG_MTD_NAND_NDFC=y | ||
453 | # CONFIG_MTD_NAND_DISKONCHIP is not set | 463 | # CONFIG_MTD_NAND_DISKONCHIP is not set |
454 | # CONFIG_MTD_NAND_NANDSIM is not set | 464 | # CONFIG_MTD_NAND_NANDSIM is not set |
455 | # CONFIG_MTD_NAND_PLATFORM is not set | 465 | # CONFIG_MTD_NAND_PLATFORM is not set |
@@ -458,6 +468,12 @@ CONFIG_MTD_NAND_IDS=y | |||
458 | # CONFIG_MTD_ONENAND is not set | 468 | # CONFIG_MTD_ONENAND is not set |
459 | 469 | ||
460 | # | 470 | # |
471 | # LPDDR flash memory drivers | ||
472 | # | ||
473 | # CONFIG_MTD_LPDDR is not set | ||
474 | # CONFIG_MTD_QINFO_PROBE is not set | ||
475 | |||
476 | # | ||
461 | # UBI - Unsorted block images | 477 | # UBI - Unsorted block images |
462 | # | 478 | # |
463 | # CONFIG_MTD_UBI is not set | 479 | # CONFIG_MTD_UBI is not set |
@@ -480,7 +496,9 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
480 | # CONFIG_BLK_DEV_HD is not set | 496 | # CONFIG_BLK_DEV_HD is not set |
481 | CONFIG_MISC_DEVICES=y | 497 | CONFIG_MISC_DEVICES=y |
482 | # CONFIG_EEPROM_93CX6 is not set | 498 | # CONFIG_EEPROM_93CX6 is not set |
499 | # CONFIG_ICS932S401 is not set | ||
483 | # CONFIG_ENCLOSURE_SERVICES is not set | 500 | # CONFIG_ENCLOSURE_SERVICES is not set |
501 | # CONFIG_C2PORT is not set | ||
484 | CONFIG_HAVE_IDE=y | 502 | CONFIG_HAVE_IDE=y |
485 | # CONFIG_IDE is not set | 503 | # CONFIG_IDE is not set |
486 | 504 | ||
@@ -562,6 +580,10 @@ CONFIG_IBM_NEW_EMAC_ZMII=y | |||
562 | # CONFIG_IWLWIFI_LEDS is not set | 580 | # CONFIG_IWLWIFI_LEDS is not set |
563 | 581 | ||
564 | # | 582 | # |
583 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
584 | # | ||
585 | |||
586 | # | ||
565 | # USB Network Adapters | 587 | # USB Network Adapters |
566 | # | 588 | # |
567 | # CONFIG_USB_CATC is not set | 589 | # CONFIG_USB_CATC is not set |
@@ -616,9 +638,12 @@ CONFIG_SERIAL_8250_SHARE_IRQ=y | |||
616 | CONFIG_SERIAL_CORE=y | 638 | CONFIG_SERIAL_CORE=y |
617 | CONFIG_SERIAL_CORE_CONSOLE=y | 639 | CONFIG_SERIAL_CORE_CONSOLE=y |
618 | # CONFIG_SERIAL_OF_PLATFORM is not set | 640 | # CONFIG_SERIAL_OF_PLATFORM is not set |
641 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
619 | CONFIG_UNIX98_PTYS=y | 642 | CONFIG_UNIX98_PTYS=y |
643 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
620 | CONFIG_LEGACY_PTYS=y | 644 | CONFIG_LEGACY_PTYS=y |
621 | CONFIG_LEGACY_PTY_COUNT=256 | 645 | CONFIG_LEGACY_PTY_COUNT=256 |
646 | # CONFIG_HVC_UDBG is not set | ||
622 | # CONFIG_IPMI_HANDLER is not set | 647 | # CONFIG_IPMI_HANDLER is not set |
623 | CONFIG_HW_RANDOM=y | 648 | CONFIG_HW_RANDOM=y |
624 | # CONFIG_NVRAM is not set | 649 | # CONFIG_NVRAM is not set |
@@ -638,7 +663,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
638 | # | 663 | # |
639 | # I2C system bus drivers (mostly embedded / system-on-chip) | 664 | # I2C system bus drivers (mostly embedded / system-on-chip) |
640 | # | 665 | # |
641 | # CONFIG_I2C_IBM_IIC is not set | 666 | CONFIG_I2C_IBM_IIC=y |
642 | # CONFIG_I2C_MPC is not set | 667 | # CONFIG_I2C_MPC is not set |
643 | # CONFIG_I2C_OCORES is not set | 668 | # CONFIG_I2C_OCORES is not set |
644 | # CONFIG_I2C_SIMTEC is not set | 669 | # CONFIG_I2C_SIMTEC is not set |
@@ -660,7 +685,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
660 | # Miscellaneous I2C Chip support | 685 | # Miscellaneous I2C Chip support |
661 | # | 686 | # |
662 | # CONFIG_DS1682 is not set | 687 | # CONFIG_DS1682 is not set |
663 | # CONFIG_EEPROM_AT24 is not set | 688 | CONFIG_EEPROM_AT24=y |
664 | CONFIG_EEPROM_LEGACY=y | 689 | CONFIG_EEPROM_LEGACY=y |
665 | # CONFIG_SENSORS_PCF8574 is not set | 690 | # CONFIG_SENSORS_PCF8574 is not set |
666 | # CONFIG_PCF8575 is not set | 691 | # CONFIG_PCF8575 is not set |
@@ -679,7 +704,7 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
679 | # CONFIG_POWER_SUPPLY is not set | 704 | # CONFIG_POWER_SUPPLY is not set |
680 | CONFIG_HWMON=y | 705 | CONFIG_HWMON=y |
681 | # CONFIG_HWMON_VID is not set | 706 | # CONFIG_HWMON_VID is not set |
682 | # CONFIG_SENSORS_AD7414 is not set | 707 | CONFIG_SENSORS_AD7414=y |
683 | # CONFIG_SENSORS_AD7418 is not set | 708 | # CONFIG_SENSORS_AD7418 is not set |
684 | # CONFIG_SENSORS_ADM1021 is not set | 709 | # CONFIG_SENSORS_ADM1021 is not set |
685 | # CONFIG_SENSORS_ADM1025 is not set | 710 | # CONFIG_SENSORS_ADM1025 is not set |
@@ -687,8 +712,10 @@ CONFIG_HWMON=y | |||
687 | # CONFIG_SENSORS_ADM1029 is not set | 712 | # CONFIG_SENSORS_ADM1029 is not set |
688 | # CONFIG_SENSORS_ADM1031 is not set | 713 | # CONFIG_SENSORS_ADM1031 is not set |
689 | # CONFIG_SENSORS_ADM9240 is not set | 714 | # CONFIG_SENSORS_ADM9240 is not set |
715 | # CONFIG_SENSORS_ADT7462 is not set | ||
690 | # CONFIG_SENSORS_ADT7470 is not set | 716 | # CONFIG_SENSORS_ADT7470 is not set |
691 | # CONFIG_SENSORS_ADT7473 is not set | 717 | # CONFIG_SENSORS_ADT7473 is not set |
718 | # CONFIG_SENSORS_ADT7475 is not set | ||
692 | # CONFIG_SENSORS_ATXP1 is not set | 719 | # CONFIG_SENSORS_ATXP1 is not set |
693 | # CONFIG_SENSORS_DS1621 is not set | 720 | # CONFIG_SENSORS_DS1621 is not set |
694 | # CONFIG_SENSORS_F71805F is not set | 721 | # CONFIG_SENSORS_F71805F is not set |
@@ -708,6 +735,7 @@ CONFIG_HWMON=y | |||
708 | # CONFIG_SENSORS_LM90 is not set | 735 | # CONFIG_SENSORS_LM90 is not set |
709 | # CONFIG_SENSORS_LM92 is not set | 736 | # CONFIG_SENSORS_LM92 is not set |
710 | # CONFIG_SENSORS_LM93 is not set | 737 | # CONFIG_SENSORS_LM93 is not set |
738 | # CONFIG_SENSORS_LTC4245 is not set | ||
711 | # CONFIG_SENSORS_MAX1619 is not set | 739 | # CONFIG_SENSORS_MAX1619 is not set |
712 | # CONFIG_SENSORS_MAX6650 is not set | 740 | # CONFIG_SENSORS_MAX6650 is not set |
713 | # CONFIG_SENSORS_PC87360 is not set | 741 | # CONFIG_SENSORS_PC87360 is not set |
@@ -729,13 +757,26 @@ CONFIG_HWMON=y | |||
729 | # CONFIG_SENSORS_W83627EHF is not set | 757 | # CONFIG_SENSORS_W83627EHF is not set |
730 | # CONFIG_HWMON_DEBUG_CHIP is not set | 758 | # CONFIG_HWMON_DEBUG_CHIP is not set |
731 | CONFIG_THERMAL=y | 759 | CONFIG_THERMAL=y |
732 | # CONFIG_THERMAL_HWMON is not set | 760 | CONFIG_THERMAL_HWMON=y |
733 | # CONFIG_WATCHDOG is not set | 761 | CONFIG_WATCHDOG=y |
762 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
734 | 763 | ||
735 | # | 764 | # |
736 | # Sonics Silicon Backplane | 765 | # Watchdog Device Drivers |
766 | # | ||
767 | # CONFIG_SOFT_WATCHDOG is not set | ||
768 | CONFIG_PIKA_WDT=y | ||
769 | # CONFIG_BOOKE_WDT is not set | ||
770 | |||
771 | # | ||
772 | # USB-based Watchdog Cards | ||
737 | # | 773 | # |
774 | # CONFIG_USBPCWATCHDOG is not set | ||
738 | CONFIG_SSB_POSSIBLE=y | 775 | CONFIG_SSB_POSSIBLE=y |
776 | |||
777 | # | ||
778 | # Sonics Silicon Backplane | ||
779 | # | ||
739 | # CONFIG_SSB is not set | 780 | # CONFIG_SSB is not set |
740 | 781 | ||
741 | # | 782 | # |
@@ -744,9 +785,13 @@ CONFIG_SSB_POSSIBLE=y | |||
744 | # CONFIG_MFD_CORE is not set | 785 | # CONFIG_MFD_CORE is not set |
745 | # CONFIG_MFD_SM501 is not set | 786 | # CONFIG_MFD_SM501 is not set |
746 | # CONFIG_HTC_PASIC3 is not set | 787 | # CONFIG_HTC_PASIC3 is not set |
788 | # CONFIG_TWL4030_CORE is not set | ||
747 | # CONFIG_MFD_TMIO is not set | 789 | # CONFIG_MFD_TMIO is not set |
790 | # CONFIG_PMIC_DA903X is not set | ||
748 | # CONFIG_MFD_WM8400 is not set | 791 | # CONFIG_MFD_WM8400 is not set |
749 | # CONFIG_MFD_WM8350_I2C is not set | 792 | # CONFIG_MFD_WM8350_I2C is not set |
793 | # CONFIG_MFD_PCF50633 is not set | ||
794 | # CONFIG_REGULATOR is not set | ||
750 | 795 | ||
751 | # | 796 | # |
752 | # Multimedia devices | 797 | # Multimedia devices |
@@ -802,6 +847,7 @@ CONFIG_USB_MON=y | |||
802 | # USB Host Controller Drivers | 847 | # USB Host Controller Drivers |
803 | # | 848 | # |
804 | # CONFIG_USB_C67X00_HCD is not set | 849 | # CONFIG_USB_C67X00_HCD is not set |
850 | # CONFIG_USB_OXU210HP_HCD is not set | ||
805 | # CONFIG_USB_ISP116X_HCD is not set | 851 | # CONFIG_USB_ISP116X_HCD is not set |
806 | # CONFIG_USB_ISP1760_HCD is not set | 852 | # CONFIG_USB_ISP1760_HCD is not set |
807 | CONFIG_USB_OHCI_HCD=y | 853 | CONFIG_USB_OHCI_HCD=y |
@@ -824,18 +870,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
824 | # CONFIG_USB_TMC is not set | 870 | # CONFIG_USB_TMC is not set |
825 | 871 | ||
826 | # | 872 | # |
827 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 873 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
828 | # | 874 | # |
829 | 875 | ||
830 | # | 876 | # |
831 | # may also be needed; see USB_STORAGE Help for more information | 877 | # see USB_STORAGE Help for more information |
832 | # | 878 | # |
833 | CONFIG_USB_STORAGE=y | 879 | CONFIG_USB_STORAGE=y |
834 | # CONFIG_USB_STORAGE_DEBUG is not set | 880 | # CONFIG_USB_STORAGE_DEBUG is not set |
835 | # CONFIG_USB_STORAGE_DATAFAB is not set | 881 | # CONFIG_USB_STORAGE_DATAFAB is not set |
836 | # CONFIG_USB_STORAGE_FREECOM is not set | 882 | # CONFIG_USB_STORAGE_FREECOM is not set |
837 | # CONFIG_USB_STORAGE_ISD200 is not set | 883 | # CONFIG_USB_STORAGE_ISD200 is not set |
838 | # CONFIG_USB_STORAGE_DPCM is not set | ||
839 | # CONFIG_USB_STORAGE_USBAT is not set | 884 | # CONFIG_USB_STORAGE_USBAT is not set |
840 | # CONFIG_USB_STORAGE_SDDR09 is not set | 885 | # CONFIG_USB_STORAGE_SDDR09 is not set |
841 | # CONFIG_USB_STORAGE_SDDR55 is not set | 886 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -880,14 +925,18 @@ CONFIG_USB_STORAGE=y | |||
880 | # CONFIG_USB_ISIGHTFW is not set | 925 | # CONFIG_USB_ISIGHTFW is not set |
881 | # CONFIG_USB_VST is not set | 926 | # CONFIG_USB_VST is not set |
882 | # CONFIG_USB_GADGET is not set | 927 | # CONFIG_USB_GADGET is not set |
883 | CONFIG_MMC=m | 928 | |
929 | # | ||
930 | # OTG and related infrastructure | ||
931 | # | ||
932 | CONFIG_MMC=y | ||
884 | # CONFIG_MMC_DEBUG is not set | 933 | # CONFIG_MMC_DEBUG is not set |
885 | # CONFIG_MMC_UNSAFE_RESUME is not set | 934 | # CONFIG_MMC_UNSAFE_RESUME is not set |
886 | 935 | ||
887 | # | 936 | # |
888 | # MMC/SD/SDIO Card Drivers | 937 | # MMC/SD/SDIO Card Drivers |
889 | # | 938 | # |
890 | CONFIG_MMC_BLOCK=m | 939 | CONFIG_MMC_BLOCK=y |
891 | CONFIG_MMC_BLOCK_BOUNCE=y | 940 | CONFIG_MMC_BLOCK_BOUNCE=y |
892 | # CONFIG_SDIO_UART is not set | 941 | # CONFIG_SDIO_UART is not set |
893 | # CONFIG_MMC_TEST is not set | 942 | # CONFIG_MMC_TEST is not set |
@@ -898,7 +947,18 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
898 | # CONFIG_MMC_SDHCI is not set | 947 | # CONFIG_MMC_SDHCI is not set |
899 | # CONFIG_MMC_WBSD is not set | 948 | # CONFIG_MMC_WBSD is not set |
900 | # CONFIG_MEMSTICK is not set | 949 | # CONFIG_MEMSTICK is not set |
901 | # CONFIG_NEW_LEDS is not set | 950 | CONFIG_NEW_LEDS=y |
951 | CONFIG_LEDS_CLASS=y | ||
952 | |||
953 | # | ||
954 | # LED drivers | ||
955 | # | ||
956 | # CONFIG_LEDS_PCA955X is not set | ||
957 | |||
958 | # | ||
959 | # LED Triggers | ||
960 | # | ||
961 | # CONFIG_LEDS_TRIGGERS is not set | ||
902 | # CONFIG_ACCESSIBILITY is not set | 962 | # CONFIG_ACCESSIBILITY is not set |
903 | # CONFIG_EDAC is not set | 963 | # CONFIG_EDAC is not set |
904 | # CONFIG_RTC_CLASS is not set | 964 | # CONFIG_RTC_CLASS is not set |
@@ -912,14 +972,18 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
912 | CONFIG_EXT2_FS=y | 972 | CONFIG_EXT2_FS=y |
913 | # CONFIG_EXT2_FS_XATTR is not set | 973 | # CONFIG_EXT2_FS_XATTR is not set |
914 | # CONFIG_EXT2_FS_XIP is not set | 974 | # CONFIG_EXT2_FS_XIP is not set |
915 | # CONFIG_EXT3_FS is not set | 975 | CONFIG_EXT3_FS=y |
976 | # CONFIG_EXT3_FS_XATTR is not set | ||
916 | # CONFIG_EXT4_FS is not set | 977 | # CONFIG_EXT4_FS is not set |
978 | CONFIG_JBD=y | ||
979 | # CONFIG_JBD_DEBUG is not set | ||
917 | # CONFIG_REISERFS_FS is not set | 980 | # CONFIG_REISERFS_FS is not set |
918 | # CONFIG_JFS_FS is not set | 981 | # CONFIG_JFS_FS is not set |
919 | # CONFIG_FS_POSIX_ACL is not set | 982 | # CONFIG_FS_POSIX_ACL is not set |
920 | CONFIG_FILE_LOCKING=y | 983 | CONFIG_FILE_LOCKING=y |
921 | # CONFIG_XFS_FS is not set | 984 | # CONFIG_XFS_FS is not set |
922 | # CONFIG_OCFS2_FS is not set | 985 | # CONFIG_OCFS2_FS is not set |
986 | # CONFIG_BTRFS_FS is not set | ||
923 | CONFIG_DNOTIFY=y | 987 | CONFIG_DNOTIFY=y |
924 | CONFIG_INOTIFY=y | 988 | CONFIG_INOTIFY=y |
925 | CONFIG_INOTIFY_USER=y | 989 | CONFIG_INOTIFY_USER=y |
@@ -952,13 +1016,11 @@ CONFIG_PROC_KCORE=y | |||
952 | CONFIG_PROC_SYSCTL=y | 1016 | CONFIG_PROC_SYSCTL=y |
953 | CONFIG_PROC_PAGE_MONITOR=y | 1017 | CONFIG_PROC_PAGE_MONITOR=y |
954 | CONFIG_SYSFS=y | 1018 | CONFIG_SYSFS=y |
955 | # CONFIG_TMPFS is not set | 1019 | CONFIG_TMPFS=y |
1020 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
956 | # CONFIG_HUGETLB_PAGE is not set | 1021 | # CONFIG_HUGETLB_PAGE is not set |
957 | # CONFIG_CONFIGFS_FS is not set | 1022 | # CONFIG_CONFIGFS_FS is not set |
958 | 1023 | CONFIG_MISC_FILESYSTEMS=y | |
959 | # | ||
960 | # Miscellaneous filesystems | ||
961 | # | ||
962 | # CONFIG_ADFS_FS is not set | 1024 | # CONFIG_ADFS_FS is not set |
963 | # CONFIG_AFFS_FS is not set | 1025 | # CONFIG_AFFS_FS is not set |
964 | # CONFIG_HFS_FS is not set | 1026 | # CONFIG_HFS_FS is not set |
@@ -978,6 +1040,7 @@ CONFIG_JFFS2_ZLIB=y | |||
978 | CONFIG_JFFS2_RTIME=y | 1040 | CONFIG_JFFS2_RTIME=y |
979 | # CONFIG_JFFS2_RUBIN is not set | 1041 | # CONFIG_JFFS2_RUBIN is not set |
980 | CONFIG_CRAMFS=y | 1042 | CONFIG_CRAMFS=y |
1043 | # CONFIG_SQUASHFS is not set | ||
981 | # CONFIG_VXFS_FS is not set | 1044 | # CONFIG_VXFS_FS is not set |
982 | # CONFIG_MINIX_FS is not set | 1045 | # CONFIG_MINIX_FS is not set |
983 | # CONFIG_OMFS_FS is not set | 1046 | # CONFIG_OMFS_FS is not set |
@@ -1057,6 +1120,7 @@ CONFIG_NLS_UTF8=y | |||
1057 | # Library routines | 1120 | # Library routines |
1058 | # | 1121 | # |
1059 | CONFIG_BITREVERSE=y | 1122 | CONFIG_BITREVERSE=y |
1123 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1060 | CONFIG_CRC_CCITT=y | 1124 | CONFIG_CRC_CCITT=y |
1061 | # CONFIG_CRC16 is not set | 1125 | # CONFIG_CRC16 is not set |
1062 | CONFIG_CRC_T10DIF=y | 1126 | CONFIG_CRC_T10DIF=y |
@@ -1107,6 +1171,7 @@ CONFIG_DEBUG_INFO=y | |||
1107 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1171 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1108 | # CONFIG_DEBUG_LIST is not set | 1172 | # CONFIG_DEBUG_LIST is not set |
1109 | # CONFIG_DEBUG_SG is not set | 1173 | # CONFIG_DEBUG_SG is not set |
1174 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1110 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1175 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1111 | # CONFIG_RCU_TORTURE_TEST is not set | 1176 | # CONFIG_RCU_TORTURE_TEST is not set |
1112 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1177 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1115,18 +1180,24 @@ CONFIG_DEBUG_INFO=y | |||
1115 | # CONFIG_FAULT_INJECTION is not set | 1180 | # CONFIG_FAULT_INJECTION is not set |
1116 | # CONFIG_LATENCYTOP is not set | 1181 | # CONFIG_LATENCYTOP is not set |
1117 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1118 | CONFIG_NOP_TRACER=y | 1183 | CONFIG_HAVE_FUNCTION_TRACER=y |
1119 | CONFIG_HAVE_FTRACE=y | ||
1120 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1121 | # CONFIG_FTRACE is not set | 1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1186 | |||
1187 | # | ||
1188 | # Tracers | ||
1189 | # | ||
1190 | # CONFIG_FUNCTION_TRACER is not set | ||
1122 | # CONFIG_SCHED_TRACER is not set | 1191 | # CONFIG_SCHED_TRACER is not set |
1123 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1192 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1124 | # CONFIG_BOOT_TRACER is not set | 1193 | # CONFIG_BOOT_TRACER is not set |
1194 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1125 | # CONFIG_STACK_TRACER is not set | 1195 | # CONFIG_STACK_TRACER is not set |
1126 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1196 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1127 | # CONFIG_SAMPLES is not set | 1197 | # CONFIG_SAMPLES is not set |
1128 | CONFIG_HAVE_ARCH_KGDB=y | 1198 | CONFIG_HAVE_ARCH_KGDB=y |
1129 | # CONFIG_KGDB is not set | 1199 | # CONFIG_KGDB is not set |
1200 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1130 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1201 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1131 | # CONFIG_DEBUG_STACK_USAGE is not set | 1202 | # CONFIG_DEBUG_STACK_USAGE is not set |
1132 | # CONFIG_DEBUG_PAGEALLOC is not set | 1203 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1134,7 +1205,7 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1134 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1205 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1135 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1206 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
1136 | # CONFIG_XMON is not set | 1207 | # CONFIG_XMON is not set |
1137 | # CONFIG_IRQSTACKS is not set | 1208 | CONFIG_IRQSTACKS=y |
1138 | # CONFIG_VIRQ_DEBUG is not set | 1209 | # CONFIG_VIRQ_DEBUG is not set |
1139 | CONFIG_BDI_SWITCH=y | 1210 | CONFIG_BDI_SWITCH=y |
1140 | # CONFIG_PPC_EARLY_DEBUG is not set | 1211 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1153,6 +1224,7 @@ CONFIG_CRYPTO=y | |||
1153 | # | 1224 | # |
1154 | # CONFIG_CRYPTO_FIPS is not set | 1225 | # CONFIG_CRYPTO_FIPS is not set |
1155 | # CONFIG_CRYPTO_MANAGER is not set | 1226 | # CONFIG_CRYPTO_MANAGER is not set |
1227 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1156 | # CONFIG_CRYPTO_GF128MUL is not set | 1228 | # CONFIG_CRYPTO_GF128MUL is not set |
1157 | # CONFIG_CRYPTO_NULL is not set | 1229 | # CONFIG_CRYPTO_NULL is not set |
1158 | # CONFIG_CRYPTO_CRYPTD is not set | 1230 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/asp8347_defconfig b/arch/powerpc/configs/83xx/asp8347_defconfig index b3d9d1a8dfaf..fc4a39a40e72 100644 --- a/arch/powerpc/configs/83xx/asp8347_defconfig +++ b/arch/powerpc/configs/83xx/asp8347_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:49 2008 | 4 | # Mon Jan 26 15:35:47 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -76,12 +76,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
81 | # CONFIG_FAIR_GROUP_SCHED is not set | 80 | # CONFIG_FAIR_GROUP_SCHED is not set |
82 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -114,7 +114,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 114 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 119 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -124,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 138 | ||
@@ -153,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
157 | 157 | ||
158 | # | 158 | # |
@@ -199,6 +199,8 @@ CONFIG_IPIC=y | |||
199 | # CONFIG_QUICC_ENGINE is not set | 199 | # CONFIG_QUICC_ENGINE is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_MPC8xxx_GPIO is not set | 201 | # CONFIG_MPC8xxx_GPIO is not set |
202 | # CONFIG_SIMPLE_GPIO is not set | ||
203 | # CONFIG_MCU_MPC8349EMITX is not set | ||
202 | 204 | ||
203 | # | 205 | # |
204 | # Kernel options | 206 | # Kernel options |
@@ -226,6 +228,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
226 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 228 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
228 | # CONFIG_KEXEC is not set | 230 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | ||
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
231 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -237,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
248 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_PCI_SYSCALL=y | |||
267 | CONFIG_ARCH_SUPPORTS_MSI=y | 272 | CONFIG_ARCH_SUPPORTS_MSI=y |
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -382,6 +391,7 @@ CONFIG_MTD=y | |||
382 | # CONFIG_MTD_DEBUG is not set | 391 | # CONFIG_MTD_DEBUG is not set |
383 | # CONFIG_MTD_CONCAT is not set | 392 | # CONFIG_MTD_CONCAT is not set |
384 | CONFIG_MTD_PARTITIONS=y | 393 | CONFIG_MTD_PARTITIONS=y |
394 | # CONFIG_MTD_TESTS is not set | ||
385 | CONFIG_MTD_REDBOOT_PARTS=y | 395 | CONFIG_MTD_REDBOOT_PARTS=y |
386 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | 396 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 |
387 | CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED=y | 397 | CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED=y |
@@ -456,6 +466,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
456 | # CONFIG_MTD_ONENAND is not set | 466 | # CONFIG_MTD_ONENAND is not set |
457 | 467 | ||
458 | # | 468 | # |
469 | # LPDDR flash memory drivers | ||
470 | # | ||
471 | # CONFIG_MTD_LPDDR is not set | ||
472 | # CONFIG_MTD_QINFO_PROBE is not set | ||
473 | |||
474 | # | ||
459 | # UBI - Unsorted block images | 475 | # UBI - Unsorted block images |
460 | # | 476 | # |
461 | # CONFIG_MTD_UBI is not set | 477 | # CONFIG_MTD_UBI is not set |
@@ -486,8 +502,10 @@ CONFIG_MISC_DEVICES=y | |||
486 | # CONFIG_EEPROM_93CX6 is not set | 502 | # CONFIG_EEPROM_93CX6 is not set |
487 | # CONFIG_SGI_IOC4 is not set | 503 | # CONFIG_SGI_IOC4 is not set |
488 | # CONFIG_TIFM_CORE is not set | 504 | # CONFIG_TIFM_CORE is not set |
505 | # CONFIG_ICS932S401 is not set | ||
489 | # CONFIG_ENCLOSURE_SERVICES is not set | 506 | # CONFIG_ENCLOSURE_SERVICES is not set |
490 | # CONFIG_HP_ILO is not set | 507 | # CONFIG_HP_ILO is not set |
508 | # CONFIG_C2PORT is not set | ||
491 | CONFIG_HAVE_IDE=y | 509 | CONFIG_HAVE_IDE=y |
492 | # CONFIG_IDE is not set | 510 | # CONFIG_IDE is not set |
493 | 511 | ||
@@ -536,6 +554,9 @@ CONFIG_PHYLIB=y | |||
536 | # CONFIG_BROADCOM_PHY is not set | 554 | # CONFIG_BROADCOM_PHY is not set |
537 | # CONFIG_ICPLUS_PHY is not set | 555 | # CONFIG_ICPLUS_PHY is not set |
538 | # CONFIG_REALTEK_PHY is not set | 556 | # CONFIG_REALTEK_PHY is not set |
557 | # CONFIG_NATIONAL_PHY is not set | ||
558 | # CONFIG_STE10XP is not set | ||
559 | # CONFIG_LSI_ET1011C_PHY is not set | ||
539 | # CONFIG_FIXED_PHY is not set | 560 | # CONFIG_FIXED_PHY is not set |
540 | # CONFIG_MDIO_BITBANG is not set | 561 | # CONFIG_MDIO_BITBANG is not set |
541 | CONFIG_NET_ETHERNET=y | 562 | CONFIG_NET_ETHERNET=y |
@@ -590,6 +611,10 @@ CONFIG_GIANFAR=y | |||
590 | # CONFIG_IWLWIFI_LEDS is not set | 611 | # CONFIG_IWLWIFI_LEDS is not set |
591 | 612 | ||
592 | # | 613 | # |
614 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
615 | # | ||
616 | |||
617 | # | ||
593 | # USB Network Adapters | 618 | # USB Network Adapters |
594 | # | 619 | # |
595 | # CONFIG_USB_CATC is not set | 620 | # CONFIG_USB_CATC is not set |
@@ -666,8 +691,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
666 | # CONFIG_SERIAL_JSM is not set | 691 | # CONFIG_SERIAL_JSM is not set |
667 | # CONFIG_SERIAL_OF_PLATFORM is not set | 692 | # CONFIG_SERIAL_OF_PLATFORM is not set |
668 | CONFIG_UNIX98_PTYS=y | 693 | CONFIG_UNIX98_PTYS=y |
694 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
669 | CONFIG_LEGACY_PTYS=y | 695 | CONFIG_LEGACY_PTYS=y |
670 | CONFIG_LEGACY_PTY_COUNT=256 | 696 | CONFIG_LEGACY_PTY_COUNT=256 |
697 | # CONFIG_HVC_UDBG is not set | ||
671 | # CONFIG_IPMI_HANDLER is not set | 698 | # CONFIG_IPMI_HANDLER is not set |
672 | # CONFIG_HW_RANDOM is not set | 699 | # CONFIG_HW_RANDOM is not set |
673 | # CONFIG_NVRAM is not set | 700 | # CONFIG_NVRAM is not set |
@@ -740,7 +767,6 @@ CONFIG_I2C_MPC=y | |||
740 | # CONFIG_SENSORS_PCF8591 is not set | 767 | # CONFIG_SENSORS_PCF8591 is not set |
741 | # CONFIG_SENSORS_MAX6875 is not set | 768 | # CONFIG_SENSORS_MAX6875 is not set |
742 | # CONFIG_SENSORS_TSL2550 is not set | 769 | # CONFIG_SENSORS_TSL2550 is not set |
743 | # CONFIG_MCU_MPC8349EMITX is not set | ||
744 | # CONFIG_I2C_DEBUG_CORE is not set | 770 | # CONFIG_I2C_DEBUG_CORE is not set |
745 | # CONFIG_I2C_DEBUG_ALGO is not set | 771 | # CONFIG_I2C_DEBUG_ALGO is not set |
746 | # CONFIG_I2C_DEBUG_BUS is not set | 772 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -760,8 +786,10 @@ CONFIG_HWMON=y | |||
760 | # CONFIG_SENSORS_ADM1029 is not set | 786 | # CONFIG_SENSORS_ADM1029 is not set |
761 | # CONFIG_SENSORS_ADM1031 is not set | 787 | # CONFIG_SENSORS_ADM1031 is not set |
762 | # CONFIG_SENSORS_ADM9240 is not set | 788 | # CONFIG_SENSORS_ADM9240 is not set |
789 | # CONFIG_SENSORS_ADT7462 is not set | ||
763 | # CONFIG_SENSORS_ADT7470 is not set | 790 | # CONFIG_SENSORS_ADT7470 is not set |
764 | # CONFIG_SENSORS_ADT7473 is not set | 791 | # CONFIG_SENSORS_ADT7473 is not set |
792 | # CONFIG_SENSORS_ADT7475 is not set | ||
765 | # CONFIG_SENSORS_ATXP1 is not set | 793 | # CONFIG_SENSORS_ATXP1 is not set |
766 | # CONFIG_SENSORS_DS1621 is not set | 794 | # CONFIG_SENSORS_DS1621 is not set |
767 | # CONFIG_SENSORS_I5K_AMB is not set | 795 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -782,6 +810,7 @@ CONFIG_HWMON=y | |||
782 | # CONFIG_SENSORS_LM90 is not set | 810 | # CONFIG_SENSORS_LM90 is not set |
783 | # CONFIG_SENSORS_LM92 is not set | 811 | # CONFIG_SENSORS_LM92 is not set |
784 | # CONFIG_SENSORS_LM93 is not set | 812 | # CONFIG_SENSORS_LM93 is not set |
813 | # CONFIG_SENSORS_LTC4245 is not set | ||
785 | # CONFIG_SENSORS_MAX1619 is not set | 814 | # CONFIG_SENSORS_MAX1619 is not set |
786 | # CONFIG_SENSORS_MAX6650 is not set | 815 | # CONFIG_SENSORS_MAX6650 is not set |
787 | # CONFIG_SENSORS_PC87360 is not set | 816 | # CONFIG_SENSORS_PC87360 is not set |
@@ -827,11 +856,11 @@ CONFIG_WATCHDOG=y | |||
827 | # USB-based Watchdog Cards | 856 | # USB-based Watchdog Cards |
828 | # | 857 | # |
829 | # CONFIG_USBPCWATCHDOG is not set | 858 | # CONFIG_USBPCWATCHDOG is not set |
859 | CONFIG_SSB_POSSIBLE=y | ||
830 | 860 | ||
831 | # | 861 | # |
832 | # Sonics Silicon Backplane | 862 | # Sonics Silicon Backplane |
833 | # | 863 | # |
834 | CONFIG_SSB_POSSIBLE=y | ||
835 | # CONFIG_SSB is not set | 864 | # CONFIG_SSB is not set |
836 | 865 | ||
837 | # | 866 | # |
@@ -840,18 +869,13 @@ CONFIG_SSB_POSSIBLE=y | |||
840 | # CONFIG_MFD_CORE is not set | 869 | # CONFIG_MFD_CORE is not set |
841 | # CONFIG_MFD_SM501 is not set | 870 | # CONFIG_MFD_SM501 is not set |
842 | # CONFIG_HTC_PASIC3 is not set | 871 | # CONFIG_HTC_PASIC3 is not set |
872 | # CONFIG_TWL4030_CORE is not set | ||
843 | # CONFIG_MFD_TMIO is not set | 873 | # CONFIG_MFD_TMIO is not set |
844 | # CONFIG_PMIC_DA903X is not set | 874 | # CONFIG_PMIC_DA903X is not set |
845 | # CONFIG_MFD_WM8400 is not set | 875 | # CONFIG_MFD_WM8400 is not set |
846 | # CONFIG_MFD_WM8350_I2C is not set | 876 | # CONFIG_MFD_WM8350_I2C is not set |
847 | 877 | # CONFIG_MFD_PCF50633 is not set | |
848 | # | ||
849 | # Voltage and Current regulators | ||
850 | # | ||
851 | # CONFIG_REGULATOR is not set | 878 | # CONFIG_REGULATOR is not set |
852 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
853 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
854 | # CONFIG_REGULATOR_BQ24022 is not set | ||
855 | 879 | ||
856 | # | 880 | # |
857 | # Multimedia devices | 881 | # Multimedia devices |
@@ -916,6 +940,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
916 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 940 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
917 | CONFIG_USB_EHCI_FSL=y | 941 | CONFIG_USB_EHCI_FSL=y |
918 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 942 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
943 | # CONFIG_USB_OXU210HP_HCD is not set | ||
919 | # CONFIG_USB_ISP116X_HCD is not set | 944 | # CONFIG_USB_ISP116X_HCD is not set |
920 | # CONFIG_USB_ISP1760_HCD is not set | 945 | # CONFIG_USB_ISP1760_HCD is not set |
921 | # CONFIG_USB_OHCI_HCD is not set | 946 | # CONFIG_USB_OHCI_HCD is not set |
@@ -934,11 +959,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
934 | # CONFIG_USB_TMC is not set | 959 | # CONFIG_USB_TMC is not set |
935 | 960 | ||
936 | # | 961 | # |
937 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 962 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
938 | # | 963 | # |
939 | 964 | ||
940 | # | 965 | # |
941 | # may also be needed; see USB_STORAGE Help for more information | 966 | # see USB_STORAGE Help for more information |
942 | # | 967 | # |
943 | # CONFIG_USB_LIBUSUAL is not set | 968 | # CONFIG_USB_LIBUSUAL is not set |
944 | 969 | ||
@@ -977,6 +1002,10 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
977 | # CONFIG_USB_ISIGHTFW is not set | 1002 | # CONFIG_USB_ISIGHTFW is not set |
978 | # CONFIG_USB_VST is not set | 1003 | # CONFIG_USB_VST is not set |
979 | # CONFIG_USB_GADGET is not set | 1004 | # CONFIG_USB_GADGET is not set |
1005 | |||
1006 | # | ||
1007 | # OTG and related infrastructure | ||
1008 | # | ||
980 | # CONFIG_UWB is not set | 1009 | # CONFIG_UWB is not set |
981 | # CONFIG_MMC is not set | 1010 | # CONFIG_MMC is not set |
982 | # CONFIG_MEMSTICK is not set | 1011 | # CONFIG_MEMSTICK is not set |
@@ -1014,6 +1043,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
1014 | # CONFIG_RTC_DRV_M41T80 is not set | 1043 | # CONFIG_RTC_DRV_M41T80 is not set |
1015 | # CONFIG_RTC_DRV_S35390A is not set | 1044 | # CONFIG_RTC_DRV_S35390A is not set |
1016 | # CONFIG_RTC_DRV_FM3130 is not set | 1045 | # CONFIG_RTC_DRV_FM3130 is not set |
1046 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1017 | 1047 | ||
1018 | # | 1048 | # |
1019 | # SPI RTC drivers | 1049 | # SPI RTC drivers |
@@ -1061,6 +1091,7 @@ CONFIG_FS_MBCACHE=y | |||
1061 | CONFIG_FILE_LOCKING=y | 1091 | CONFIG_FILE_LOCKING=y |
1062 | # CONFIG_XFS_FS is not set | 1092 | # CONFIG_XFS_FS is not set |
1063 | # CONFIG_OCFS2_FS is not set | 1093 | # CONFIG_OCFS2_FS is not set |
1094 | # CONFIG_BTRFS_FS is not set | ||
1064 | CONFIG_DNOTIFY=y | 1095 | CONFIG_DNOTIFY=y |
1065 | CONFIG_INOTIFY=y | 1096 | CONFIG_INOTIFY=y |
1066 | CONFIG_INOTIFY_USER=y | 1097 | CONFIG_INOTIFY_USER=y |
@@ -1094,10 +1125,7 @@ CONFIG_TMPFS=y | |||
1094 | # CONFIG_TMPFS_POSIX_ACL is not set | 1125 | # CONFIG_TMPFS_POSIX_ACL is not set |
1095 | # CONFIG_HUGETLB_PAGE is not set | 1126 | # CONFIG_HUGETLB_PAGE is not set |
1096 | # CONFIG_CONFIGFS_FS is not set | 1127 | # CONFIG_CONFIGFS_FS is not set |
1097 | 1128 | CONFIG_MISC_FILESYSTEMS=y | |
1098 | # | ||
1099 | # Miscellaneous filesystems | ||
1100 | # | ||
1101 | # CONFIG_ADFS_FS is not set | 1129 | # CONFIG_ADFS_FS is not set |
1102 | # CONFIG_AFFS_FS is not set | 1130 | # CONFIG_AFFS_FS is not set |
1103 | # CONFIG_HFS_FS is not set | 1131 | # CONFIG_HFS_FS is not set |
@@ -1117,6 +1145,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1117 | CONFIG_JFFS2_RTIME=y | 1145 | CONFIG_JFFS2_RTIME=y |
1118 | # CONFIG_JFFS2_RUBIN is not set | 1146 | # CONFIG_JFFS2_RUBIN is not set |
1119 | # CONFIG_CRAMFS is not set | 1147 | # CONFIG_CRAMFS is not set |
1148 | # CONFIG_SQUASHFS is not set | ||
1120 | # CONFIG_VXFS_FS is not set | 1149 | # CONFIG_VXFS_FS is not set |
1121 | # CONFIG_MINIX_FS is not set | 1150 | # CONFIG_MINIX_FS is not set |
1122 | # CONFIG_OMFS_FS is not set | 1151 | # CONFIG_OMFS_FS is not set |
@@ -1209,6 +1238,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1209 | # Library routines | 1238 | # Library routines |
1210 | # | 1239 | # |
1211 | CONFIG_BITREVERSE=y | 1240 | CONFIG_BITREVERSE=y |
1241 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1212 | # CONFIG_CRC_CCITT is not set | 1242 | # CONFIG_CRC_CCITT is not set |
1213 | # CONFIG_CRC16 is not set | 1243 | # CONFIG_CRC16 is not set |
1214 | # CONFIG_CRC_T10DIF is not set | 1244 | # CONFIG_CRC_T10DIF is not set |
@@ -1244,6 +1274,8 @@ CONFIG_FRAME_WARN=1024 | |||
1244 | # CONFIG_LATENCYTOP is not set | 1274 | # CONFIG_LATENCYTOP is not set |
1245 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 1275 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
1246 | CONFIG_HAVE_FUNCTION_TRACER=y | 1276 | CONFIG_HAVE_FUNCTION_TRACER=y |
1277 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1278 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1247 | 1279 | ||
1248 | # | 1280 | # |
1249 | # Tracers | 1281 | # Tracers |
@@ -1251,6 +1283,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1251 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1283 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1252 | # CONFIG_SAMPLES is not set | 1284 | # CONFIG_SAMPLES is not set |
1253 | CONFIG_HAVE_ARCH_KGDB=y | 1285 | CONFIG_HAVE_ARCH_KGDB=y |
1286 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1254 | # CONFIG_IRQSTACKS is not set | 1287 | # CONFIG_IRQSTACKS is not set |
1255 | # CONFIG_BOOTX_TEXT is not set | 1288 | # CONFIG_BOOTX_TEXT is not set |
1256 | # CONFIG_PPC_EARLY_DEBUG is not set | 1289 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1269,11 +1302,15 @@ CONFIG_CRYPTO=y | |||
1269 | # | 1302 | # |
1270 | # CONFIG_CRYPTO_FIPS is not set | 1303 | # CONFIG_CRYPTO_FIPS is not set |
1271 | CONFIG_CRYPTO_ALGAPI=y | 1304 | CONFIG_CRYPTO_ALGAPI=y |
1272 | CONFIG_CRYPTO_AEAD=y | 1305 | CONFIG_CRYPTO_ALGAPI2=y |
1306 | CONFIG_CRYPTO_AEAD2=y | ||
1273 | CONFIG_CRYPTO_BLKCIPHER=y | 1307 | CONFIG_CRYPTO_BLKCIPHER=y |
1308 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1274 | CONFIG_CRYPTO_HASH=y | 1309 | CONFIG_CRYPTO_HASH=y |
1275 | CONFIG_CRYPTO_RNG=y | 1310 | CONFIG_CRYPTO_HASH2=y |
1311 | CONFIG_CRYPTO_RNG2=y | ||
1276 | CONFIG_CRYPTO_MANAGER=y | 1312 | CONFIG_CRYPTO_MANAGER=y |
1313 | CONFIG_CRYPTO_MANAGER2=y | ||
1277 | # CONFIG_CRYPTO_GF128MUL is not set | 1314 | # CONFIG_CRYPTO_GF128MUL is not set |
1278 | # CONFIG_CRYPTO_NULL is not set | 1315 | # CONFIG_CRYPTO_NULL is not set |
1279 | # CONFIG_CRYPTO_CRYPTD is not set | 1316 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig index 6293bb99b52e..9e47ae957e2e 100644 --- a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:50 2008 | 4 | # Mon Jan 26 15:35:48 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
269 | # CONFIG_PCI_DEBUG is not set | 274 | # CONFIG_PCI_DEBUG is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -384,6 +393,7 @@ CONFIG_MTD=y | |||
384 | # CONFIG_MTD_DEBUG is not set | 393 | # CONFIG_MTD_DEBUG is not set |
385 | # CONFIG_MTD_CONCAT is not set | 394 | # CONFIG_MTD_CONCAT is not set |
386 | CONFIG_MTD_PARTITIONS=y | 395 | CONFIG_MTD_PARTITIONS=y |
396 | # CONFIG_MTD_TESTS is not set | ||
387 | # CONFIG_MTD_REDBOOT_PARTS is not set | 397 | # CONFIG_MTD_REDBOOT_PARTS is not set |
388 | # CONFIG_MTD_CMDLINE_PARTS is not set | 398 | # CONFIG_MTD_CMDLINE_PARTS is not set |
389 | CONFIG_MTD_OF_PARTS=y | 399 | CONFIG_MTD_OF_PARTS=y |
@@ -468,6 +478,12 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
468 | # CONFIG_MTD_ONENAND is not set | 478 | # CONFIG_MTD_ONENAND is not set |
469 | 479 | ||
470 | # | 480 | # |
481 | # LPDDR flash memory drivers | ||
482 | # | ||
483 | # CONFIG_MTD_LPDDR is not set | ||
484 | # CONFIG_MTD_QINFO_PROBE is not set | ||
485 | |||
486 | # | ||
471 | # UBI - Unsorted block images | 487 | # UBI - Unsorted block images |
472 | # | 488 | # |
473 | # CONFIG_MTD_UBI is not set | 489 | # CONFIG_MTD_UBI is not set |
@@ -499,8 +515,10 @@ CONFIG_MISC_DEVICES=y | |||
499 | # CONFIG_EEPROM_93CX6 is not set | 515 | # CONFIG_EEPROM_93CX6 is not set |
500 | # CONFIG_SGI_IOC4 is not set | 516 | # CONFIG_SGI_IOC4 is not set |
501 | # CONFIG_TIFM_CORE is not set | 517 | # CONFIG_TIFM_CORE is not set |
518 | # CONFIG_ICS932S401 is not set | ||
502 | # CONFIG_ENCLOSURE_SERVICES is not set | 519 | # CONFIG_ENCLOSURE_SERVICES is not set |
503 | # CONFIG_HP_ILO is not set | 520 | # CONFIG_HP_ILO is not set |
521 | # CONFIG_C2PORT is not set | ||
504 | CONFIG_HAVE_IDE=y | 522 | CONFIG_HAVE_IDE=y |
505 | # CONFIG_IDE is not set | 523 | # CONFIG_IDE is not set |
506 | 524 | ||
@@ -543,6 +561,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
543 | # CONFIG_SCSI_SRP_ATTRS is not set | 561 | # CONFIG_SCSI_SRP_ATTRS is not set |
544 | CONFIG_SCSI_LOWLEVEL=y | 562 | CONFIG_SCSI_LOWLEVEL=y |
545 | # CONFIG_ISCSI_TCP is not set | 563 | # CONFIG_ISCSI_TCP is not set |
564 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
546 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 565 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
547 | # CONFIG_SCSI_3W_9XXX is not set | 566 | # CONFIG_SCSI_3W_9XXX is not set |
548 | # CONFIG_SCSI_ACARD is not set | 567 | # CONFIG_SCSI_ACARD is not set |
@@ -559,6 +578,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
559 | # CONFIG_MEGARAID_SAS is not set | 578 | # CONFIG_MEGARAID_SAS is not set |
560 | # CONFIG_SCSI_HPTIOP is not set | 579 | # CONFIG_SCSI_HPTIOP is not set |
561 | # CONFIG_SCSI_BUSLOGIC is not set | 580 | # CONFIG_SCSI_BUSLOGIC is not set |
581 | # CONFIG_LIBFC is not set | ||
582 | # CONFIG_FCOE is not set | ||
562 | # CONFIG_SCSI_DMX3191D is not set | 583 | # CONFIG_SCSI_DMX3191D is not set |
563 | # CONFIG_SCSI_EATA is not set | 584 | # CONFIG_SCSI_EATA is not set |
564 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 585 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -627,6 +648,9 @@ CONFIG_CICADA_PHY=y | |||
627 | # CONFIG_BROADCOM_PHY is not set | 648 | # CONFIG_BROADCOM_PHY is not set |
628 | # CONFIG_ICPLUS_PHY is not set | 649 | # CONFIG_ICPLUS_PHY is not set |
629 | # CONFIG_REALTEK_PHY is not set | 650 | # CONFIG_REALTEK_PHY is not set |
651 | # CONFIG_NATIONAL_PHY is not set | ||
652 | # CONFIG_STE10XP is not set | ||
653 | # CONFIG_LSI_ET1011C_PHY is not set | ||
630 | # CONFIG_FIXED_PHY is not set | 654 | # CONFIG_FIXED_PHY is not set |
631 | # CONFIG_MDIO_BITBANG is not set | 655 | # CONFIG_MDIO_BITBANG is not set |
632 | CONFIG_NET_ETHERNET=y | 656 | CONFIG_NET_ETHERNET=y |
@@ -651,7 +675,6 @@ CONFIG_NET_PCI=y | |||
651 | # CONFIG_ADAPTEC_STARFIRE is not set | 675 | # CONFIG_ADAPTEC_STARFIRE is not set |
652 | # CONFIG_B44 is not set | 676 | # CONFIG_B44 is not set |
653 | # CONFIG_FORCEDETH is not set | 677 | # CONFIG_FORCEDETH is not set |
654 | # CONFIG_EEPRO100 is not set | ||
655 | CONFIG_E100=y | 678 | CONFIG_E100=y |
656 | # CONFIG_FEALNX is not set | 679 | # CONFIG_FEALNX is not set |
657 | # CONFIG_NATSEMI is not set | 680 | # CONFIG_NATSEMI is not set |
@@ -661,6 +684,7 @@ CONFIG_E100=y | |||
661 | # CONFIG_R6040 is not set | 684 | # CONFIG_R6040 is not set |
662 | # CONFIG_SIS900 is not set | 685 | # CONFIG_SIS900 is not set |
663 | # CONFIG_EPIC100 is not set | 686 | # CONFIG_EPIC100 is not set |
687 | # CONFIG_SMSC9420 is not set | ||
664 | # CONFIG_SUNDANCE is not set | 688 | # CONFIG_SUNDANCE is not set |
665 | # CONFIG_TLAN is not set | 689 | # CONFIG_TLAN is not set |
666 | # CONFIG_VIA_RHINE is not set | 690 | # CONFIG_VIA_RHINE is not set |
@@ -691,6 +715,7 @@ CONFIG_GIANFAR=y | |||
691 | # CONFIG_JME is not set | 715 | # CONFIG_JME is not set |
692 | CONFIG_NETDEV_10000=y | 716 | CONFIG_NETDEV_10000=y |
693 | # CONFIG_CHELSIO_T1 is not set | 717 | # CONFIG_CHELSIO_T1 is not set |
718 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
694 | # CONFIG_CHELSIO_T3 is not set | 719 | # CONFIG_CHELSIO_T3 is not set |
695 | # CONFIG_ENIC is not set | 720 | # CONFIG_ENIC is not set |
696 | # CONFIG_IXGBE is not set | 721 | # CONFIG_IXGBE is not set |
@@ -715,6 +740,10 @@ CONFIG_NETDEV_10000=y | |||
715 | # CONFIG_IWLWIFI_LEDS is not set | 740 | # CONFIG_IWLWIFI_LEDS is not set |
716 | 741 | ||
717 | # | 742 | # |
743 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
744 | # | ||
745 | |||
746 | # | ||
718 | # USB Network Adapters | 747 | # USB Network Adapters |
719 | # | 748 | # |
720 | # CONFIG_USB_CATC is not set | 749 | # CONFIG_USB_CATC is not set |
@@ -792,8 +821,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
792 | # CONFIG_SERIAL_JSM is not set | 821 | # CONFIG_SERIAL_JSM is not set |
793 | # CONFIG_SERIAL_OF_PLATFORM is not set | 822 | # CONFIG_SERIAL_OF_PLATFORM is not set |
794 | CONFIG_UNIX98_PTYS=y | 823 | CONFIG_UNIX98_PTYS=y |
824 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
795 | CONFIG_LEGACY_PTYS=y | 825 | CONFIG_LEGACY_PTYS=y |
796 | CONFIG_LEGACY_PTY_COUNT=256 | 826 | CONFIG_LEGACY_PTY_COUNT=256 |
827 | # CONFIG_HVC_UDBG is not set | ||
797 | # CONFIG_IPMI_HANDLER is not set | 828 | # CONFIG_IPMI_HANDLER is not set |
798 | CONFIG_HW_RANDOM=y | 829 | CONFIG_HW_RANDOM=y |
799 | # CONFIG_NVRAM is not set | 830 | # CONFIG_NVRAM is not set |
@@ -866,7 +897,6 @@ CONFIG_I2C_MPC=y | |||
866 | # CONFIG_SENSORS_PCF8591 is not set | 897 | # CONFIG_SENSORS_PCF8591 is not set |
867 | # CONFIG_SENSORS_MAX6875 is not set | 898 | # CONFIG_SENSORS_MAX6875 is not set |
868 | # CONFIG_SENSORS_TSL2550 is not set | 899 | # CONFIG_SENSORS_TSL2550 is not set |
869 | # CONFIG_MCU_MPC8349EMITX is not set | ||
870 | # CONFIG_I2C_DEBUG_CORE is not set | 900 | # CONFIG_I2C_DEBUG_CORE is not set |
871 | # CONFIG_I2C_DEBUG_ALGO is not set | 901 | # CONFIG_I2C_DEBUG_ALGO is not set |
872 | # CONFIG_I2C_DEBUG_BUS is not set | 902 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -902,8 +932,10 @@ CONFIG_HWMON=y | |||
902 | # CONFIG_SENSORS_ADM1029 is not set | 932 | # CONFIG_SENSORS_ADM1029 is not set |
903 | # CONFIG_SENSORS_ADM1031 is not set | 933 | # CONFIG_SENSORS_ADM1031 is not set |
904 | # CONFIG_SENSORS_ADM9240 is not set | 934 | # CONFIG_SENSORS_ADM9240 is not set |
935 | # CONFIG_SENSORS_ADT7462 is not set | ||
905 | # CONFIG_SENSORS_ADT7470 is not set | 936 | # CONFIG_SENSORS_ADT7470 is not set |
906 | # CONFIG_SENSORS_ADT7473 is not set | 937 | # CONFIG_SENSORS_ADT7473 is not set |
938 | # CONFIG_SENSORS_ADT7475 is not set | ||
907 | # CONFIG_SENSORS_ATXP1 is not set | 939 | # CONFIG_SENSORS_ATXP1 is not set |
908 | # CONFIG_SENSORS_DS1621 is not set | 940 | # CONFIG_SENSORS_DS1621 is not set |
909 | # CONFIG_SENSORS_I5K_AMB is not set | 941 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -925,6 +957,7 @@ CONFIG_HWMON=y | |||
925 | # CONFIG_SENSORS_LM90 is not set | 957 | # CONFIG_SENSORS_LM90 is not set |
926 | # CONFIG_SENSORS_LM92 is not set | 958 | # CONFIG_SENSORS_LM92 is not set |
927 | # CONFIG_SENSORS_LM93 is not set | 959 | # CONFIG_SENSORS_LM93 is not set |
960 | # CONFIG_SENSORS_LTC4245 is not set | ||
928 | # CONFIG_SENSORS_MAX1111 is not set | 961 | # CONFIG_SENSORS_MAX1111 is not set |
929 | # CONFIG_SENSORS_MAX1619 is not set | 962 | # CONFIG_SENSORS_MAX1619 is not set |
930 | # CONFIG_SENSORS_MAX6650 is not set | 963 | # CONFIG_SENSORS_MAX6650 is not set |
@@ -971,11 +1004,11 @@ CONFIG_WATCHDOG=y | |||
971 | # USB-based Watchdog Cards | 1004 | # USB-based Watchdog Cards |
972 | # | 1005 | # |
973 | # CONFIG_USBPCWATCHDOG is not set | 1006 | # CONFIG_USBPCWATCHDOG is not set |
1007 | CONFIG_SSB_POSSIBLE=y | ||
974 | 1008 | ||
975 | # | 1009 | # |
976 | # Sonics Silicon Backplane | 1010 | # Sonics Silicon Backplane |
977 | # | 1011 | # |
978 | CONFIG_SSB_POSSIBLE=y | ||
979 | # CONFIG_SSB is not set | 1012 | # CONFIG_SSB is not set |
980 | 1013 | ||
981 | # | 1014 | # |
@@ -984,18 +1017,13 @@ CONFIG_SSB_POSSIBLE=y | |||
984 | # CONFIG_MFD_CORE is not set | 1017 | # CONFIG_MFD_CORE is not set |
985 | # CONFIG_MFD_SM501 is not set | 1018 | # CONFIG_MFD_SM501 is not set |
986 | # CONFIG_HTC_PASIC3 is not set | 1019 | # CONFIG_HTC_PASIC3 is not set |
1020 | # CONFIG_TWL4030_CORE is not set | ||
987 | # CONFIG_MFD_TMIO is not set | 1021 | # CONFIG_MFD_TMIO is not set |
988 | # CONFIG_PMIC_DA903X is not set | 1022 | # CONFIG_PMIC_DA903X is not set |
989 | # CONFIG_MFD_WM8400 is not set | 1023 | # CONFIG_MFD_WM8400 is not set |
990 | # CONFIG_MFD_WM8350_I2C is not set | 1024 | # CONFIG_MFD_WM8350_I2C is not set |
991 | 1025 | # CONFIG_MFD_PCF50633 is not set | |
992 | # | ||
993 | # Voltage and Current regulators | ||
994 | # | ||
995 | # CONFIG_REGULATOR is not set | 1026 | # CONFIG_REGULATOR is not set |
996 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
997 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
998 | # CONFIG_REGULATOR_BQ24022 is not set | ||
999 | 1027 | ||
1000 | # | 1028 | # |
1001 | # Multimedia devices | 1029 | # Multimedia devices |
@@ -1080,6 +1108,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1080 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1108 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1081 | CONFIG_USB_EHCI_FSL=y | 1109 | CONFIG_USB_EHCI_FSL=y |
1082 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1110 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1111 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1083 | # CONFIG_USB_ISP116X_HCD is not set | 1112 | # CONFIG_USB_ISP116X_HCD is not set |
1084 | # CONFIG_USB_ISP1760_HCD is not set | 1113 | # CONFIG_USB_ISP1760_HCD is not set |
1085 | CONFIG_USB_OHCI_HCD=y | 1114 | CONFIG_USB_OHCI_HCD=y |
@@ -1106,18 +1135,17 @@ CONFIG_USB_UHCI_HCD=y | |||
1106 | # CONFIG_USB_TMC is not set | 1135 | # CONFIG_USB_TMC is not set |
1107 | 1136 | ||
1108 | # | 1137 | # |
1109 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1138 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1110 | # | 1139 | # |
1111 | 1140 | ||
1112 | # | 1141 | # |
1113 | # may also be needed; see USB_STORAGE Help for more information | 1142 | # see USB_STORAGE Help for more information |
1114 | # | 1143 | # |
1115 | CONFIG_USB_STORAGE=y | 1144 | CONFIG_USB_STORAGE=y |
1116 | # CONFIG_USB_STORAGE_DEBUG is not set | 1145 | # CONFIG_USB_STORAGE_DEBUG is not set |
1117 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1146 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1118 | # CONFIG_USB_STORAGE_FREECOM is not set | 1147 | # CONFIG_USB_STORAGE_FREECOM is not set |
1119 | # CONFIG_USB_STORAGE_ISD200 is not set | 1148 | # CONFIG_USB_STORAGE_ISD200 is not set |
1120 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1121 | # CONFIG_USB_STORAGE_USBAT is not set | 1149 | # CONFIG_USB_STORAGE_USBAT is not set |
1122 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1150 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1123 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1151 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1177,9 +1205,11 @@ CONFIG_USB_GADGET_SELECTED=y | |||
1177 | # CONFIG_USB_GADGET_PXA25X is not set | 1205 | # CONFIG_USB_GADGET_PXA25X is not set |
1178 | # CONFIG_USB_GADGET_PXA27X is not set | 1206 | # CONFIG_USB_GADGET_PXA27X is not set |
1179 | # CONFIG_USB_GADGET_S3C2410 is not set | 1207 | # CONFIG_USB_GADGET_S3C2410 is not set |
1208 | # CONFIG_USB_GADGET_IMX is not set | ||
1180 | # CONFIG_USB_GADGET_M66592 is not set | 1209 | # CONFIG_USB_GADGET_M66592 is not set |
1181 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 1210 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
1182 | # CONFIG_USB_GADGET_FSL_QE is not set | 1211 | # CONFIG_USB_GADGET_FSL_QE is not set |
1212 | # CONFIG_USB_GADGET_CI13XXX is not set | ||
1183 | CONFIG_USB_GADGET_NET2280=y | 1213 | CONFIG_USB_GADGET_NET2280=y |
1184 | CONFIG_USB_NET2280=y | 1214 | CONFIG_USB_NET2280=y |
1185 | # CONFIG_USB_GADGET_GOKU is not set | 1215 | # CONFIG_USB_GADGET_GOKU is not set |
@@ -1194,6 +1224,10 @@ CONFIG_USB_ETH_RNDIS=y | |||
1194 | # CONFIG_USB_MIDI_GADGET is not set | 1224 | # CONFIG_USB_MIDI_GADGET is not set |
1195 | # CONFIG_USB_G_PRINTER is not set | 1225 | # CONFIG_USB_G_PRINTER is not set |
1196 | # CONFIG_USB_CDC_COMPOSITE is not set | 1226 | # CONFIG_USB_CDC_COMPOSITE is not set |
1227 | |||
1228 | # | ||
1229 | # OTG and related infrastructure | ||
1230 | # | ||
1197 | # CONFIG_UWB is not set | 1231 | # CONFIG_UWB is not set |
1198 | # CONFIG_MMC is not set | 1232 | # CONFIG_MMC is not set |
1199 | # CONFIG_MEMSTICK is not set | 1233 | # CONFIG_MEMSTICK is not set |
@@ -1231,12 +1265,14 @@ CONFIG_RTC_DRV_DS1307=y | |||
1231 | # CONFIG_RTC_DRV_M41T80 is not set | 1265 | # CONFIG_RTC_DRV_M41T80 is not set |
1232 | # CONFIG_RTC_DRV_S35390A is not set | 1266 | # CONFIG_RTC_DRV_S35390A is not set |
1233 | # CONFIG_RTC_DRV_FM3130 is not set | 1267 | # CONFIG_RTC_DRV_FM3130 is not set |
1268 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1234 | 1269 | ||
1235 | # | 1270 | # |
1236 | # SPI RTC drivers | 1271 | # SPI RTC drivers |
1237 | # | 1272 | # |
1238 | # CONFIG_RTC_DRV_M41T94 is not set | 1273 | # CONFIG_RTC_DRV_M41T94 is not set |
1239 | # CONFIG_RTC_DRV_DS1305 is not set | 1274 | # CONFIG_RTC_DRV_DS1305 is not set |
1275 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1240 | # CONFIG_RTC_DRV_MAX6902 is not set | 1276 | # CONFIG_RTC_DRV_MAX6902 is not set |
1241 | # CONFIG_RTC_DRV_R9701 is not set | 1277 | # CONFIG_RTC_DRV_R9701 is not set |
1242 | # CONFIG_RTC_DRV_RS5C348 is not set | 1278 | # CONFIG_RTC_DRV_RS5C348 is not set |
@@ -1284,6 +1320,7 @@ CONFIG_FS_MBCACHE=y | |||
1284 | CONFIG_FILE_LOCKING=y | 1320 | CONFIG_FILE_LOCKING=y |
1285 | # CONFIG_XFS_FS is not set | 1321 | # CONFIG_XFS_FS is not set |
1286 | # CONFIG_OCFS2_FS is not set | 1322 | # CONFIG_OCFS2_FS is not set |
1323 | # CONFIG_BTRFS_FS is not set | ||
1287 | CONFIG_DNOTIFY=y | 1324 | CONFIG_DNOTIFY=y |
1288 | CONFIG_INOTIFY=y | 1325 | CONFIG_INOTIFY=y |
1289 | CONFIG_INOTIFY_USER=y | 1326 | CONFIG_INOTIFY_USER=y |
@@ -1317,10 +1354,7 @@ CONFIG_TMPFS=y | |||
1317 | # CONFIG_TMPFS_POSIX_ACL is not set | 1354 | # CONFIG_TMPFS_POSIX_ACL is not set |
1318 | # CONFIG_HUGETLB_PAGE is not set | 1355 | # CONFIG_HUGETLB_PAGE is not set |
1319 | # CONFIG_CONFIGFS_FS is not set | 1356 | # CONFIG_CONFIGFS_FS is not set |
1320 | 1357 | CONFIG_MISC_FILESYSTEMS=y | |
1321 | # | ||
1322 | # Miscellaneous filesystems | ||
1323 | # | ||
1324 | # CONFIG_ADFS_FS is not set | 1358 | # CONFIG_ADFS_FS is not set |
1325 | # CONFIG_AFFS_FS is not set | 1359 | # CONFIG_AFFS_FS is not set |
1326 | # CONFIG_HFS_FS is not set | 1360 | # CONFIG_HFS_FS is not set |
@@ -1340,6 +1374,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1340 | CONFIG_JFFS2_RTIME=y | 1374 | CONFIG_JFFS2_RTIME=y |
1341 | # CONFIG_JFFS2_RUBIN is not set | 1375 | # CONFIG_JFFS2_RUBIN is not set |
1342 | # CONFIG_CRAMFS is not set | 1376 | # CONFIG_CRAMFS is not set |
1377 | # CONFIG_SQUASHFS is not set | ||
1343 | # CONFIG_VXFS_FS is not set | 1378 | # CONFIG_VXFS_FS is not set |
1344 | # CONFIG_MINIX_FS is not set | 1379 | # CONFIG_MINIX_FS is not set |
1345 | # CONFIG_OMFS_FS is not set | 1380 | # CONFIG_OMFS_FS is not set |
@@ -1397,6 +1432,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1397 | # Library routines | 1432 | # Library routines |
1398 | # | 1433 | # |
1399 | CONFIG_BITREVERSE=y | 1434 | CONFIG_BITREVERSE=y |
1435 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1400 | # CONFIG_CRC_CCITT is not set | 1436 | # CONFIG_CRC_CCITT is not set |
1401 | # CONFIG_CRC16 is not set | 1437 | # CONFIG_CRC16 is not set |
1402 | # CONFIG_CRC_T10DIF is not set | 1438 | # CONFIG_CRC_T10DIF is not set |
@@ -1448,6 +1484,7 @@ CONFIG_SCHED_DEBUG=y | |||
1448 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1484 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1449 | # CONFIG_DEBUG_LIST is not set | 1485 | # CONFIG_DEBUG_LIST is not set |
1450 | # CONFIG_DEBUG_SG is not set | 1486 | # CONFIG_DEBUG_SG is not set |
1487 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1451 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1488 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1452 | # CONFIG_RCU_TORTURE_TEST is not set | 1489 | # CONFIG_RCU_TORTURE_TEST is not set |
1453 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1490 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1457,6 +1494,8 @@ CONFIG_SCHED_DEBUG=y | |||
1457 | # CONFIG_LATENCYTOP is not set | 1494 | # CONFIG_LATENCYTOP is not set |
1458 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1495 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1459 | CONFIG_HAVE_FUNCTION_TRACER=y | 1496 | CONFIG_HAVE_FUNCTION_TRACER=y |
1497 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1498 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1460 | 1499 | ||
1461 | # | 1500 | # |
1462 | # Tracers | 1501 | # Tracers |
@@ -1465,11 +1504,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1465 | # CONFIG_SCHED_TRACER is not set | 1504 | # CONFIG_SCHED_TRACER is not set |
1466 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1505 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1467 | # CONFIG_BOOT_TRACER is not set | 1506 | # CONFIG_BOOT_TRACER is not set |
1507 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1468 | # CONFIG_STACK_TRACER is not set | 1508 | # CONFIG_STACK_TRACER is not set |
1469 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1509 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1470 | # CONFIG_SAMPLES is not set | 1510 | # CONFIG_SAMPLES is not set |
1471 | CONFIG_HAVE_ARCH_KGDB=y | 1511 | CONFIG_HAVE_ARCH_KGDB=y |
1472 | # CONFIG_KGDB is not set | 1512 | # CONFIG_KGDB is not set |
1513 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1473 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1514 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1474 | # CONFIG_DEBUG_STACK_USAGE is not set | 1515 | # CONFIG_DEBUG_STACK_USAGE is not set |
1475 | # CONFIG_DEBUG_PAGEALLOC is not set | 1516 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1496,11 +1537,15 @@ CONFIG_CRYPTO=y | |||
1496 | # | 1537 | # |
1497 | # CONFIG_CRYPTO_FIPS is not set | 1538 | # CONFIG_CRYPTO_FIPS is not set |
1498 | CONFIG_CRYPTO_ALGAPI=y | 1539 | CONFIG_CRYPTO_ALGAPI=y |
1499 | CONFIG_CRYPTO_AEAD=y | 1540 | CONFIG_CRYPTO_ALGAPI2=y |
1541 | CONFIG_CRYPTO_AEAD2=y | ||
1500 | CONFIG_CRYPTO_BLKCIPHER=y | 1542 | CONFIG_CRYPTO_BLKCIPHER=y |
1543 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1501 | CONFIG_CRYPTO_HASH=y | 1544 | CONFIG_CRYPTO_HASH=y |
1502 | CONFIG_CRYPTO_RNG=y | 1545 | CONFIG_CRYPTO_HASH2=y |
1546 | CONFIG_CRYPTO_RNG2=y | ||
1503 | CONFIG_CRYPTO_MANAGER=y | 1547 | CONFIG_CRYPTO_MANAGER=y |
1548 | CONFIG_CRYPTO_MANAGER2=y | ||
1504 | # CONFIG_CRYPTO_GF128MUL is not set | 1549 | # CONFIG_CRYPTO_GF128MUL is not set |
1505 | # CONFIG_CRYPTO_NULL is not set | 1550 | # CONFIG_CRYPTO_NULL is not set |
1506 | # CONFIG_CRYPTO_CRYPTD is not set | 1551 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig index c7cceb4536d8..03db97c6cf33 100644 --- a/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:51 2008 | 4 | # Mon Jan 26 15:35:49 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
269 | # CONFIG_PCI_DEBUG is not set | 274 | # CONFIG_PCI_DEBUG is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -384,6 +393,7 @@ CONFIG_MTD=y | |||
384 | # CONFIG_MTD_DEBUG is not set | 393 | # CONFIG_MTD_DEBUG is not set |
385 | # CONFIG_MTD_CONCAT is not set | 394 | # CONFIG_MTD_CONCAT is not set |
386 | CONFIG_MTD_PARTITIONS=y | 395 | CONFIG_MTD_PARTITIONS=y |
396 | # CONFIG_MTD_TESTS is not set | ||
387 | # CONFIG_MTD_REDBOOT_PARTS is not set | 397 | # CONFIG_MTD_REDBOOT_PARTS is not set |
388 | # CONFIG_MTD_CMDLINE_PARTS is not set | 398 | # CONFIG_MTD_CMDLINE_PARTS is not set |
389 | # CONFIG_MTD_OF_PARTS is not set | 399 | # CONFIG_MTD_OF_PARTS is not set |
@@ -468,6 +478,12 @@ CONFIG_MTD_NAND_IDS=y | |||
468 | # CONFIG_MTD_ONENAND is not set | 478 | # CONFIG_MTD_ONENAND is not set |
469 | 479 | ||
470 | # | 480 | # |
481 | # LPDDR flash memory drivers | ||
482 | # | ||
483 | # CONFIG_MTD_LPDDR is not set | ||
484 | # CONFIG_MTD_QINFO_PROBE is not set | ||
485 | |||
486 | # | ||
471 | # UBI - Unsorted block images | 487 | # UBI - Unsorted block images |
472 | # | 488 | # |
473 | # CONFIG_MTD_UBI is not set | 489 | # CONFIG_MTD_UBI is not set |
@@ -499,8 +515,10 @@ CONFIG_MISC_DEVICES=y | |||
499 | # CONFIG_EEPROM_93CX6 is not set | 515 | # CONFIG_EEPROM_93CX6 is not set |
500 | # CONFIG_SGI_IOC4 is not set | 516 | # CONFIG_SGI_IOC4 is not set |
501 | # CONFIG_TIFM_CORE is not set | 517 | # CONFIG_TIFM_CORE is not set |
518 | # CONFIG_ICS932S401 is not set | ||
502 | # CONFIG_ENCLOSURE_SERVICES is not set | 519 | # CONFIG_ENCLOSURE_SERVICES is not set |
503 | # CONFIG_HP_ILO is not set | 520 | # CONFIG_HP_ILO is not set |
521 | # CONFIG_C2PORT is not set | ||
504 | CONFIG_HAVE_IDE=y | 522 | CONFIG_HAVE_IDE=y |
505 | # CONFIG_IDE is not set | 523 | # CONFIG_IDE is not set |
506 | 524 | ||
@@ -543,6 +561,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
543 | # CONFIG_SCSI_SRP_ATTRS is not set | 561 | # CONFIG_SCSI_SRP_ATTRS is not set |
544 | CONFIG_SCSI_LOWLEVEL=y | 562 | CONFIG_SCSI_LOWLEVEL=y |
545 | # CONFIG_ISCSI_TCP is not set | 563 | # CONFIG_ISCSI_TCP is not set |
564 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
546 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 565 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
547 | # CONFIG_SCSI_3W_9XXX is not set | 566 | # CONFIG_SCSI_3W_9XXX is not set |
548 | # CONFIG_SCSI_ACARD is not set | 567 | # CONFIG_SCSI_ACARD is not set |
@@ -559,6 +578,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
559 | # CONFIG_MEGARAID_SAS is not set | 578 | # CONFIG_MEGARAID_SAS is not set |
560 | # CONFIG_SCSI_HPTIOP is not set | 579 | # CONFIG_SCSI_HPTIOP is not set |
561 | # CONFIG_SCSI_BUSLOGIC is not set | 580 | # CONFIG_SCSI_BUSLOGIC is not set |
581 | # CONFIG_LIBFC is not set | ||
582 | # CONFIG_FCOE is not set | ||
562 | # CONFIG_SCSI_DMX3191D is not set | 583 | # CONFIG_SCSI_DMX3191D is not set |
563 | # CONFIG_SCSI_EATA is not set | 584 | # CONFIG_SCSI_EATA is not set |
564 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 585 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -688,6 +709,9 @@ CONFIG_PHYLIB=y | |||
688 | # CONFIG_BROADCOM_PHY is not set | 709 | # CONFIG_BROADCOM_PHY is not set |
689 | # CONFIG_ICPLUS_PHY is not set | 710 | # CONFIG_ICPLUS_PHY is not set |
690 | # CONFIG_REALTEK_PHY is not set | 711 | # CONFIG_REALTEK_PHY is not set |
712 | # CONFIG_NATIONAL_PHY is not set | ||
713 | # CONFIG_STE10XP is not set | ||
714 | # CONFIG_LSI_ET1011C_PHY is not set | ||
691 | # CONFIG_FIXED_PHY is not set | 715 | # CONFIG_FIXED_PHY is not set |
692 | # CONFIG_MDIO_BITBANG is not set | 716 | # CONFIG_MDIO_BITBANG is not set |
693 | CONFIG_NET_ETHERNET=y | 717 | CONFIG_NET_ETHERNET=y |
@@ -712,7 +736,6 @@ CONFIG_NET_PCI=y | |||
712 | # CONFIG_ADAPTEC_STARFIRE is not set | 736 | # CONFIG_ADAPTEC_STARFIRE is not set |
713 | # CONFIG_B44 is not set | 737 | # CONFIG_B44 is not set |
714 | # CONFIG_FORCEDETH is not set | 738 | # CONFIG_FORCEDETH is not set |
715 | # CONFIG_EEPRO100 is not set | ||
716 | CONFIG_E100=y | 739 | CONFIG_E100=y |
717 | # CONFIG_FEALNX is not set | 740 | # CONFIG_FEALNX is not set |
718 | # CONFIG_NATSEMI is not set | 741 | # CONFIG_NATSEMI is not set |
@@ -722,6 +745,7 @@ CONFIG_E100=y | |||
722 | # CONFIG_R6040 is not set | 745 | # CONFIG_R6040 is not set |
723 | # CONFIG_SIS900 is not set | 746 | # CONFIG_SIS900 is not set |
724 | # CONFIG_EPIC100 is not set | 747 | # CONFIG_EPIC100 is not set |
748 | # CONFIG_SMSC9420 is not set | ||
725 | # CONFIG_SUNDANCE is not set | 749 | # CONFIG_SUNDANCE is not set |
726 | # CONFIG_TLAN is not set | 750 | # CONFIG_TLAN is not set |
727 | # CONFIG_VIA_RHINE is not set | 751 | # CONFIG_VIA_RHINE is not set |
@@ -752,6 +776,7 @@ CONFIG_GIANFAR=y | |||
752 | # CONFIG_JME is not set | 776 | # CONFIG_JME is not set |
753 | CONFIG_NETDEV_10000=y | 777 | CONFIG_NETDEV_10000=y |
754 | # CONFIG_CHELSIO_T1 is not set | 778 | # CONFIG_CHELSIO_T1 is not set |
779 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
755 | # CONFIG_CHELSIO_T3 is not set | 780 | # CONFIG_CHELSIO_T3 is not set |
756 | # CONFIG_ENIC is not set | 781 | # CONFIG_ENIC is not set |
757 | # CONFIG_IXGBE is not set | 782 | # CONFIG_IXGBE is not set |
@@ -776,6 +801,10 @@ CONFIG_NETDEV_10000=y | |||
776 | # CONFIG_IWLWIFI_LEDS is not set | 801 | # CONFIG_IWLWIFI_LEDS is not set |
777 | 802 | ||
778 | # | 803 | # |
804 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
805 | # | ||
806 | |||
807 | # | ||
779 | # USB Network Adapters | 808 | # USB Network Adapters |
780 | # | 809 | # |
781 | # CONFIG_USB_CATC is not set | 810 | # CONFIG_USB_CATC is not set |
@@ -853,8 +882,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
853 | # CONFIG_SERIAL_JSM is not set | 882 | # CONFIG_SERIAL_JSM is not set |
854 | # CONFIG_SERIAL_OF_PLATFORM is not set | 883 | # CONFIG_SERIAL_OF_PLATFORM is not set |
855 | CONFIG_UNIX98_PTYS=y | 884 | CONFIG_UNIX98_PTYS=y |
885 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
856 | CONFIG_LEGACY_PTYS=y | 886 | CONFIG_LEGACY_PTYS=y |
857 | CONFIG_LEGACY_PTY_COUNT=256 | 887 | CONFIG_LEGACY_PTY_COUNT=256 |
888 | # CONFIG_HVC_UDBG is not set | ||
858 | # CONFIG_IPMI_HANDLER is not set | 889 | # CONFIG_IPMI_HANDLER is not set |
859 | CONFIG_HW_RANDOM=y | 890 | CONFIG_HW_RANDOM=y |
860 | # CONFIG_NVRAM is not set | 891 | # CONFIG_NVRAM is not set |
@@ -927,7 +958,6 @@ CONFIG_I2C_MPC=y | |||
927 | # CONFIG_SENSORS_PCF8591 is not set | 958 | # CONFIG_SENSORS_PCF8591 is not set |
928 | # CONFIG_SENSORS_MAX6875 is not set | 959 | # CONFIG_SENSORS_MAX6875 is not set |
929 | # CONFIG_SENSORS_TSL2550 is not set | 960 | # CONFIG_SENSORS_TSL2550 is not set |
930 | # CONFIG_MCU_MPC8349EMITX is not set | ||
931 | # CONFIG_I2C_DEBUG_CORE is not set | 961 | # CONFIG_I2C_DEBUG_CORE is not set |
932 | # CONFIG_I2C_DEBUG_ALGO is not set | 962 | # CONFIG_I2C_DEBUG_ALGO is not set |
933 | # CONFIG_I2C_DEBUG_BUS is not set | 963 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -963,8 +993,10 @@ CONFIG_HWMON=y | |||
963 | # CONFIG_SENSORS_ADM1029 is not set | 993 | # CONFIG_SENSORS_ADM1029 is not set |
964 | # CONFIG_SENSORS_ADM1031 is not set | 994 | # CONFIG_SENSORS_ADM1031 is not set |
965 | # CONFIG_SENSORS_ADM9240 is not set | 995 | # CONFIG_SENSORS_ADM9240 is not set |
996 | # CONFIG_SENSORS_ADT7462 is not set | ||
966 | # CONFIG_SENSORS_ADT7470 is not set | 997 | # CONFIG_SENSORS_ADT7470 is not set |
967 | # CONFIG_SENSORS_ADT7473 is not set | 998 | # CONFIG_SENSORS_ADT7473 is not set |
999 | # CONFIG_SENSORS_ADT7475 is not set | ||
968 | # CONFIG_SENSORS_ATXP1 is not set | 1000 | # CONFIG_SENSORS_ATXP1 is not set |
969 | # CONFIG_SENSORS_DS1621 is not set | 1001 | # CONFIG_SENSORS_DS1621 is not set |
970 | # CONFIG_SENSORS_I5K_AMB is not set | 1002 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -986,6 +1018,7 @@ CONFIG_HWMON=y | |||
986 | # CONFIG_SENSORS_LM90 is not set | 1018 | # CONFIG_SENSORS_LM90 is not set |
987 | # CONFIG_SENSORS_LM92 is not set | 1019 | # CONFIG_SENSORS_LM92 is not set |
988 | # CONFIG_SENSORS_LM93 is not set | 1020 | # CONFIG_SENSORS_LM93 is not set |
1021 | # CONFIG_SENSORS_LTC4245 is not set | ||
989 | # CONFIG_SENSORS_MAX1111 is not set | 1022 | # CONFIG_SENSORS_MAX1111 is not set |
990 | # CONFIG_SENSORS_MAX1619 is not set | 1023 | # CONFIG_SENSORS_MAX1619 is not set |
991 | # CONFIG_SENSORS_MAX6650 is not set | 1024 | # CONFIG_SENSORS_MAX6650 is not set |
@@ -1032,11 +1065,11 @@ CONFIG_WATCHDOG=y | |||
1032 | # USB-based Watchdog Cards | 1065 | # USB-based Watchdog Cards |
1033 | # | 1066 | # |
1034 | # CONFIG_USBPCWATCHDOG is not set | 1067 | # CONFIG_USBPCWATCHDOG is not set |
1068 | CONFIG_SSB_POSSIBLE=y | ||
1035 | 1069 | ||
1036 | # | 1070 | # |
1037 | # Sonics Silicon Backplane | 1071 | # Sonics Silicon Backplane |
1038 | # | 1072 | # |
1039 | CONFIG_SSB_POSSIBLE=y | ||
1040 | # CONFIG_SSB is not set | 1073 | # CONFIG_SSB is not set |
1041 | 1074 | ||
1042 | # | 1075 | # |
@@ -1045,18 +1078,13 @@ CONFIG_SSB_POSSIBLE=y | |||
1045 | # CONFIG_MFD_CORE is not set | 1078 | # CONFIG_MFD_CORE is not set |
1046 | # CONFIG_MFD_SM501 is not set | 1079 | # CONFIG_MFD_SM501 is not set |
1047 | # CONFIG_HTC_PASIC3 is not set | 1080 | # CONFIG_HTC_PASIC3 is not set |
1081 | # CONFIG_TWL4030_CORE is not set | ||
1048 | # CONFIG_MFD_TMIO is not set | 1082 | # CONFIG_MFD_TMIO is not set |
1049 | # CONFIG_PMIC_DA903X is not set | 1083 | # CONFIG_PMIC_DA903X is not set |
1050 | # CONFIG_MFD_WM8400 is not set | 1084 | # CONFIG_MFD_WM8400 is not set |
1051 | # CONFIG_MFD_WM8350_I2C is not set | 1085 | # CONFIG_MFD_WM8350_I2C is not set |
1052 | 1086 | # CONFIG_MFD_PCF50633 is not set | |
1053 | # | ||
1054 | # Voltage and Current regulators | ||
1055 | # | ||
1056 | # CONFIG_REGULATOR is not set | 1087 | # CONFIG_REGULATOR is not set |
1057 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1058 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1059 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1060 | 1088 | ||
1061 | # | 1089 | # |
1062 | # Multimedia devices | 1090 | # Multimedia devices |
@@ -1141,6 +1169,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1141 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1169 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1142 | CONFIG_USB_EHCI_FSL=y | 1170 | CONFIG_USB_EHCI_FSL=y |
1143 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1171 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1172 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1144 | # CONFIG_USB_ISP116X_HCD is not set | 1173 | # CONFIG_USB_ISP116X_HCD is not set |
1145 | # CONFIG_USB_ISP1760_HCD is not set | 1174 | # CONFIG_USB_ISP1760_HCD is not set |
1146 | CONFIG_USB_OHCI_HCD=y | 1175 | CONFIG_USB_OHCI_HCD=y |
@@ -1167,18 +1196,17 @@ CONFIG_USB_UHCI_HCD=y | |||
1167 | # CONFIG_USB_TMC is not set | 1196 | # CONFIG_USB_TMC is not set |
1168 | 1197 | ||
1169 | # | 1198 | # |
1170 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1199 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1171 | # | 1200 | # |
1172 | 1201 | ||
1173 | # | 1202 | # |
1174 | # may also be needed; see USB_STORAGE Help for more information | 1203 | # see USB_STORAGE Help for more information |
1175 | # | 1204 | # |
1176 | CONFIG_USB_STORAGE=y | 1205 | CONFIG_USB_STORAGE=y |
1177 | # CONFIG_USB_STORAGE_DEBUG is not set | 1206 | # CONFIG_USB_STORAGE_DEBUG is not set |
1178 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1207 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1179 | # CONFIG_USB_STORAGE_FREECOM is not set | 1208 | # CONFIG_USB_STORAGE_FREECOM is not set |
1180 | # CONFIG_USB_STORAGE_ISD200 is not set | 1209 | # CONFIG_USB_STORAGE_ISD200 is not set |
1181 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1182 | # CONFIG_USB_STORAGE_USBAT is not set | 1210 | # CONFIG_USB_STORAGE_USBAT is not set |
1183 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1211 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1184 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1212 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1238,9 +1266,11 @@ CONFIG_USB_GADGET_SELECTED=y | |||
1238 | # CONFIG_USB_GADGET_PXA25X is not set | 1266 | # CONFIG_USB_GADGET_PXA25X is not set |
1239 | # CONFIG_USB_GADGET_PXA27X is not set | 1267 | # CONFIG_USB_GADGET_PXA27X is not set |
1240 | # CONFIG_USB_GADGET_S3C2410 is not set | 1268 | # CONFIG_USB_GADGET_S3C2410 is not set |
1269 | # CONFIG_USB_GADGET_IMX is not set | ||
1241 | # CONFIG_USB_GADGET_M66592 is not set | 1270 | # CONFIG_USB_GADGET_M66592 is not set |
1242 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 1271 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
1243 | # CONFIG_USB_GADGET_FSL_QE is not set | 1272 | # CONFIG_USB_GADGET_FSL_QE is not set |
1273 | # CONFIG_USB_GADGET_CI13XXX is not set | ||
1244 | CONFIG_USB_GADGET_NET2280=y | 1274 | CONFIG_USB_GADGET_NET2280=y |
1245 | CONFIG_USB_NET2280=y | 1275 | CONFIG_USB_NET2280=y |
1246 | # CONFIG_USB_GADGET_GOKU is not set | 1276 | # CONFIG_USB_GADGET_GOKU is not set |
@@ -1255,6 +1285,10 @@ CONFIG_USB_ETH_RNDIS=y | |||
1255 | # CONFIG_USB_MIDI_GADGET is not set | 1285 | # CONFIG_USB_MIDI_GADGET is not set |
1256 | # CONFIG_USB_G_PRINTER is not set | 1286 | # CONFIG_USB_G_PRINTER is not set |
1257 | # CONFIG_USB_CDC_COMPOSITE is not set | 1287 | # CONFIG_USB_CDC_COMPOSITE is not set |
1288 | |||
1289 | # | ||
1290 | # OTG and related infrastructure | ||
1291 | # | ||
1258 | # CONFIG_UWB is not set | 1292 | # CONFIG_UWB is not set |
1259 | # CONFIG_MMC is not set | 1293 | # CONFIG_MMC is not set |
1260 | # CONFIG_MEMSTICK is not set | 1294 | # CONFIG_MEMSTICK is not set |
@@ -1292,12 +1326,14 @@ CONFIG_RTC_DRV_DS1307=y | |||
1292 | # CONFIG_RTC_DRV_M41T80 is not set | 1326 | # CONFIG_RTC_DRV_M41T80 is not set |
1293 | # CONFIG_RTC_DRV_S35390A is not set | 1327 | # CONFIG_RTC_DRV_S35390A is not set |
1294 | # CONFIG_RTC_DRV_FM3130 is not set | 1328 | # CONFIG_RTC_DRV_FM3130 is not set |
1329 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1295 | 1330 | ||
1296 | # | 1331 | # |
1297 | # SPI RTC drivers | 1332 | # SPI RTC drivers |
1298 | # | 1333 | # |
1299 | # CONFIG_RTC_DRV_M41T94 is not set | 1334 | # CONFIG_RTC_DRV_M41T94 is not set |
1300 | # CONFIG_RTC_DRV_DS1305 is not set | 1335 | # CONFIG_RTC_DRV_DS1305 is not set |
1336 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1301 | # CONFIG_RTC_DRV_MAX6902 is not set | 1337 | # CONFIG_RTC_DRV_MAX6902 is not set |
1302 | # CONFIG_RTC_DRV_R9701 is not set | 1338 | # CONFIG_RTC_DRV_R9701 is not set |
1303 | # CONFIG_RTC_DRV_RS5C348 is not set | 1339 | # CONFIG_RTC_DRV_RS5C348 is not set |
@@ -1345,6 +1381,7 @@ CONFIG_FS_MBCACHE=y | |||
1345 | CONFIG_FILE_LOCKING=y | 1381 | CONFIG_FILE_LOCKING=y |
1346 | # CONFIG_XFS_FS is not set | 1382 | # CONFIG_XFS_FS is not set |
1347 | # CONFIG_OCFS2_FS is not set | 1383 | # CONFIG_OCFS2_FS is not set |
1384 | # CONFIG_BTRFS_FS is not set | ||
1348 | CONFIG_DNOTIFY=y | 1385 | CONFIG_DNOTIFY=y |
1349 | CONFIG_INOTIFY=y | 1386 | CONFIG_INOTIFY=y |
1350 | CONFIG_INOTIFY_USER=y | 1387 | CONFIG_INOTIFY_USER=y |
@@ -1378,10 +1415,7 @@ CONFIG_TMPFS=y | |||
1378 | # CONFIG_TMPFS_POSIX_ACL is not set | 1415 | # CONFIG_TMPFS_POSIX_ACL is not set |
1379 | # CONFIG_HUGETLB_PAGE is not set | 1416 | # CONFIG_HUGETLB_PAGE is not set |
1380 | # CONFIG_CONFIGFS_FS is not set | 1417 | # CONFIG_CONFIGFS_FS is not set |
1381 | 1418 | CONFIG_MISC_FILESYSTEMS=y | |
1382 | # | ||
1383 | # Miscellaneous filesystems | ||
1384 | # | ||
1385 | # CONFIG_ADFS_FS is not set | 1419 | # CONFIG_ADFS_FS is not set |
1386 | # CONFIG_AFFS_FS is not set | 1420 | # CONFIG_AFFS_FS is not set |
1387 | # CONFIG_HFS_FS is not set | 1421 | # CONFIG_HFS_FS is not set |
@@ -1401,6 +1435,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1401 | CONFIG_JFFS2_RTIME=y | 1435 | CONFIG_JFFS2_RTIME=y |
1402 | # CONFIG_JFFS2_RUBIN is not set | 1436 | # CONFIG_JFFS2_RUBIN is not set |
1403 | # CONFIG_CRAMFS is not set | 1437 | # CONFIG_CRAMFS is not set |
1438 | # CONFIG_SQUASHFS is not set | ||
1404 | # CONFIG_VXFS_FS is not set | 1439 | # CONFIG_VXFS_FS is not set |
1405 | # CONFIG_MINIX_FS is not set | 1440 | # CONFIG_MINIX_FS is not set |
1406 | # CONFIG_OMFS_FS is not set | 1441 | # CONFIG_OMFS_FS is not set |
@@ -1458,6 +1493,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1458 | # Library routines | 1493 | # Library routines |
1459 | # | 1494 | # |
1460 | CONFIG_BITREVERSE=y | 1495 | CONFIG_BITREVERSE=y |
1496 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1461 | # CONFIG_CRC_CCITT is not set | 1497 | # CONFIG_CRC_CCITT is not set |
1462 | # CONFIG_CRC16 is not set | 1498 | # CONFIG_CRC16 is not set |
1463 | # CONFIG_CRC_T10DIF is not set | 1499 | # CONFIG_CRC_T10DIF is not set |
@@ -1509,6 +1545,7 @@ CONFIG_SCHED_DEBUG=y | |||
1509 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1545 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1510 | # CONFIG_DEBUG_LIST is not set | 1546 | # CONFIG_DEBUG_LIST is not set |
1511 | # CONFIG_DEBUG_SG is not set | 1547 | # CONFIG_DEBUG_SG is not set |
1548 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1512 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1549 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1513 | # CONFIG_RCU_TORTURE_TEST is not set | 1550 | # CONFIG_RCU_TORTURE_TEST is not set |
1514 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1551 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1518,6 +1555,8 @@ CONFIG_SCHED_DEBUG=y | |||
1518 | # CONFIG_LATENCYTOP is not set | 1555 | # CONFIG_LATENCYTOP is not set |
1519 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1556 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1520 | CONFIG_HAVE_FUNCTION_TRACER=y | 1557 | CONFIG_HAVE_FUNCTION_TRACER=y |
1558 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1559 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1521 | 1560 | ||
1522 | # | 1561 | # |
1523 | # Tracers | 1562 | # Tracers |
@@ -1526,11 +1565,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1526 | # CONFIG_SCHED_TRACER is not set | 1565 | # CONFIG_SCHED_TRACER is not set |
1527 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1566 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1528 | # CONFIG_BOOT_TRACER is not set | 1567 | # CONFIG_BOOT_TRACER is not set |
1568 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1529 | # CONFIG_STACK_TRACER is not set | 1569 | # CONFIG_STACK_TRACER is not set |
1530 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1570 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1531 | # CONFIG_SAMPLES is not set | 1571 | # CONFIG_SAMPLES is not set |
1532 | CONFIG_HAVE_ARCH_KGDB=y | 1572 | CONFIG_HAVE_ARCH_KGDB=y |
1533 | # CONFIG_KGDB is not set | 1573 | # CONFIG_KGDB is not set |
1574 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1534 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1575 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1535 | # CONFIG_DEBUG_STACK_USAGE is not set | 1576 | # CONFIG_DEBUG_STACK_USAGE is not set |
1536 | # CONFIG_DEBUG_PAGEALLOC is not set | 1577 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1557,11 +1598,15 @@ CONFIG_CRYPTO=y | |||
1557 | # | 1598 | # |
1558 | # CONFIG_CRYPTO_FIPS is not set | 1599 | # CONFIG_CRYPTO_FIPS is not set |
1559 | CONFIG_CRYPTO_ALGAPI=y | 1600 | CONFIG_CRYPTO_ALGAPI=y |
1560 | CONFIG_CRYPTO_AEAD=y | 1601 | CONFIG_CRYPTO_ALGAPI2=y |
1602 | CONFIG_CRYPTO_AEAD2=y | ||
1561 | CONFIG_CRYPTO_BLKCIPHER=y | 1603 | CONFIG_CRYPTO_BLKCIPHER=y |
1604 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1562 | CONFIG_CRYPTO_HASH=y | 1605 | CONFIG_CRYPTO_HASH=y |
1563 | CONFIG_CRYPTO_RNG=y | 1606 | CONFIG_CRYPTO_HASH2=y |
1607 | CONFIG_CRYPTO_RNG2=y | ||
1564 | CONFIG_CRYPTO_MANAGER=y | 1608 | CONFIG_CRYPTO_MANAGER=y |
1609 | CONFIG_CRYPTO_MANAGER2=y | ||
1565 | # CONFIG_CRYPTO_GF128MUL is not set | 1610 | # CONFIG_CRYPTO_GF128MUL is not set |
1566 | # CONFIG_CRYPTO_NULL is not set | 1611 | # CONFIG_CRYPTO_NULL is not set |
1567 | # CONFIG_CRYPTO_CRYPTD is not set | 1612 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc832x_mds_defconfig b/arch/powerpc/configs/83xx/mpc832x_mds_defconfig index 5e3cd49a2e9c..fb17de53cc02 100644 --- a/arch/powerpc/configs/83xx/mpc832x_mds_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:53 2008 | 4 | # Mon Jan 26 15:35:50 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | CONFIG_QUICC_ENGINE=y | 198 | CONFIG_QUICC_ENGINE=y |
199 | # CONFIG_QE_GPIO is not set | 199 | # CONFIG_QE_GPIO is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -226,6 +228,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
226 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 228 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
228 | # CONFIG_KEXEC is not set | 230 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | ||
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
231 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -237,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
248 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_PCI_SYSCALL=y | |||
267 | CONFIG_ARCH_SUPPORTS_MSI=y | 272 | CONFIG_ARCH_SUPPORTS_MSI=y |
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -405,8 +414,10 @@ CONFIG_MISC_DEVICES=y | |||
405 | # CONFIG_EEPROM_93CX6 is not set | 414 | # CONFIG_EEPROM_93CX6 is not set |
406 | # CONFIG_SGI_IOC4 is not set | 415 | # CONFIG_SGI_IOC4 is not set |
407 | # CONFIG_TIFM_CORE is not set | 416 | # CONFIG_TIFM_CORE is not set |
417 | # CONFIG_ICS932S401 is not set | ||
408 | # CONFIG_ENCLOSURE_SERVICES is not set | 418 | # CONFIG_ENCLOSURE_SERVICES is not set |
409 | # CONFIG_HP_ILO is not set | 419 | # CONFIG_HP_ILO is not set |
420 | # CONFIG_C2PORT is not set | ||
410 | CONFIG_HAVE_IDE=y | 421 | CONFIG_HAVE_IDE=y |
411 | # CONFIG_IDE is not set | 422 | # CONFIG_IDE is not set |
412 | 423 | ||
@@ -449,6 +460,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
449 | # CONFIG_SCSI_SRP_ATTRS is not set | 460 | # CONFIG_SCSI_SRP_ATTRS is not set |
450 | CONFIG_SCSI_LOWLEVEL=y | 461 | CONFIG_SCSI_LOWLEVEL=y |
451 | # CONFIG_ISCSI_TCP is not set | 462 | # CONFIG_ISCSI_TCP is not set |
463 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
452 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 464 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
453 | # CONFIG_SCSI_3W_9XXX is not set | 465 | # CONFIG_SCSI_3W_9XXX is not set |
454 | # CONFIG_SCSI_ACARD is not set | 466 | # CONFIG_SCSI_ACARD is not set |
@@ -465,6 +477,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
465 | # CONFIG_MEGARAID_SAS is not set | 477 | # CONFIG_MEGARAID_SAS is not set |
466 | # CONFIG_SCSI_HPTIOP is not set | 478 | # CONFIG_SCSI_HPTIOP is not set |
467 | # CONFIG_SCSI_BUSLOGIC is not set | 479 | # CONFIG_SCSI_BUSLOGIC is not set |
480 | # CONFIG_LIBFC is not set | ||
481 | # CONFIG_FCOE is not set | ||
468 | # CONFIG_SCSI_DMX3191D is not set | 482 | # CONFIG_SCSI_DMX3191D is not set |
469 | # CONFIG_SCSI_EATA is not set | 483 | # CONFIG_SCSI_EATA is not set |
470 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 484 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -523,6 +537,9 @@ CONFIG_DAVICOM_PHY=y | |||
523 | # CONFIG_BROADCOM_PHY is not set | 537 | # CONFIG_BROADCOM_PHY is not set |
524 | # CONFIG_ICPLUS_PHY is not set | 538 | # CONFIG_ICPLUS_PHY is not set |
525 | # CONFIG_REALTEK_PHY is not set | 539 | # CONFIG_REALTEK_PHY is not set |
540 | # CONFIG_NATIONAL_PHY is not set | ||
541 | # CONFIG_STE10XP is not set | ||
542 | # CONFIG_LSI_ET1011C_PHY is not set | ||
526 | # CONFIG_FIXED_PHY is not set | 543 | # CONFIG_FIXED_PHY is not set |
527 | # CONFIG_MDIO_BITBANG is not set | 544 | # CONFIG_MDIO_BITBANG is not set |
528 | CONFIG_NET_ETHERNET=y | 545 | CONFIG_NET_ETHERNET=y |
@@ -563,7 +580,6 @@ CONFIG_NETDEV_1000=y | |||
563 | # CONFIG_GIANFAR is not set | 580 | # CONFIG_GIANFAR is not set |
564 | CONFIG_UCC_GETH=y | 581 | CONFIG_UCC_GETH=y |
565 | # CONFIG_UGETH_MAGIC_PACKET is not set | 582 | # CONFIG_UGETH_MAGIC_PACKET is not set |
566 | # CONFIG_UGETH_FILTERING is not set | ||
567 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 583 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
568 | # CONFIG_MV643XX_ETH is not set | 584 | # CONFIG_MV643XX_ETH is not set |
569 | # CONFIG_QLA3XXX is not set | 585 | # CONFIG_QLA3XXX is not set |
@@ -572,6 +588,7 @@ CONFIG_UCC_GETH=y | |||
572 | # CONFIG_JME is not set | 588 | # CONFIG_JME is not set |
573 | CONFIG_NETDEV_10000=y | 589 | CONFIG_NETDEV_10000=y |
574 | # CONFIG_CHELSIO_T1 is not set | 590 | # CONFIG_CHELSIO_T1 is not set |
591 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
575 | # CONFIG_CHELSIO_T3 is not set | 592 | # CONFIG_CHELSIO_T3 is not set |
576 | # CONFIG_ENIC is not set | 593 | # CONFIG_ENIC is not set |
577 | # CONFIG_IXGBE is not set | 594 | # CONFIG_IXGBE is not set |
@@ -594,6 +611,10 @@ CONFIG_NETDEV_10000=y | |||
594 | # CONFIG_WLAN_PRE80211 is not set | 611 | # CONFIG_WLAN_PRE80211 is not set |
595 | # CONFIG_WLAN_80211 is not set | 612 | # CONFIG_WLAN_80211 is not set |
596 | # CONFIG_IWLWIFI_LEDS is not set | 613 | # CONFIG_IWLWIFI_LEDS is not set |
614 | |||
615 | # | ||
616 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
617 | # | ||
597 | # CONFIG_WAN is not set | 618 | # CONFIG_WAN is not set |
598 | # CONFIG_FDDI is not set | 619 | # CONFIG_FDDI is not set |
599 | # CONFIG_HIPPI is not set | 620 | # CONFIG_HIPPI is not set |
@@ -665,8 +686,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
665 | # CONFIG_SERIAL_OF_PLATFORM is not set | 686 | # CONFIG_SERIAL_OF_PLATFORM is not set |
666 | # CONFIG_SERIAL_QE is not set | 687 | # CONFIG_SERIAL_QE is not set |
667 | CONFIG_UNIX98_PTYS=y | 688 | CONFIG_UNIX98_PTYS=y |
689 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
668 | CONFIG_LEGACY_PTYS=y | 690 | CONFIG_LEGACY_PTYS=y |
669 | CONFIG_LEGACY_PTY_COUNT=256 | 691 | CONFIG_LEGACY_PTY_COUNT=256 |
692 | # CONFIG_HVC_UDBG is not set | ||
670 | # CONFIG_IPMI_HANDLER is not set | 693 | # CONFIG_IPMI_HANDLER is not set |
671 | CONFIG_HW_RANDOM=y | 694 | CONFIG_HW_RANDOM=y |
672 | # CONFIG_NVRAM is not set | 695 | # CONFIG_NVRAM is not set |
@@ -738,7 +761,6 @@ CONFIG_I2C_MPC=y | |||
738 | # CONFIG_SENSORS_PCF8591 is not set | 761 | # CONFIG_SENSORS_PCF8591 is not set |
739 | # CONFIG_SENSORS_MAX6875 is not set | 762 | # CONFIG_SENSORS_MAX6875 is not set |
740 | # CONFIG_SENSORS_TSL2550 is not set | 763 | # CONFIG_SENSORS_TSL2550 is not set |
741 | # CONFIG_MCU_MPC8349EMITX is not set | ||
742 | # CONFIG_I2C_DEBUG_CORE is not set | 764 | # CONFIG_I2C_DEBUG_CORE is not set |
743 | # CONFIG_I2C_DEBUG_ALGO is not set | 765 | # CONFIG_I2C_DEBUG_ALGO is not set |
744 | # CONFIG_I2C_DEBUG_BUS is not set | 766 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -758,8 +780,10 @@ CONFIG_HWMON=y | |||
758 | # CONFIG_SENSORS_ADM1029 is not set | 780 | # CONFIG_SENSORS_ADM1029 is not set |
759 | # CONFIG_SENSORS_ADM1031 is not set | 781 | # CONFIG_SENSORS_ADM1031 is not set |
760 | # CONFIG_SENSORS_ADM9240 is not set | 782 | # CONFIG_SENSORS_ADM9240 is not set |
783 | # CONFIG_SENSORS_ADT7462 is not set | ||
761 | # CONFIG_SENSORS_ADT7470 is not set | 784 | # CONFIG_SENSORS_ADT7470 is not set |
762 | # CONFIG_SENSORS_ADT7473 is not set | 785 | # CONFIG_SENSORS_ADT7473 is not set |
786 | # CONFIG_SENSORS_ADT7475 is not set | ||
763 | # CONFIG_SENSORS_ATXP1 is not set | 787 | # CONFIG_SENSORS_ATXP1 is not set |
764 | # CONFIG_SENSORS_DS1621 is not set | 788 | # CONFIG_SENSORS_DS1621 is not set |
765 | # CONFIG_SENSORS_I5K_AMB is not set | 789 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -780,6 +804,7 @@ CONFIG_HWMON=y | |||
780 | # CONFIG_SENSORS_LM90 is not set | 804 | # CONFIG_SENSORS_LM90 is not set |
781 | # CONFIG_SENSORS_LM92 is not set | 805 | # CONFIG_SENSORS_LM92 is not set |
782 | # CONFIG_SENSORS_LM93 is not set | 806 | # CONFIG_SENSORS_LM93 is not set |
807 | # CONFIG_SENSORS_LTC4245 is not set | ||
783 | # CONFIG_SENSORS_MAX1619 is not set | 808 | # CONFIG_SENSORS_MAX1619 is not set |
784 | # CONFIG_SENSORS_MAX6650 is not set | 809 | # CONFIG_SENSORS_MAX6650 is not set |
785 | # CONFIG_SENSORS_PC87360 is not set | 810 | # CONFIG_SENSORS_PC87360 is not set |
@@ -820,11 +845,11 @@ CONFIG_WATCHDOG=y | |||
820 | # | 845 | # |
821 | # CONFIG_PCIPCWATCHDOG is not set | 846 | # CONFIG_PCIPCWATCHDOG is not set |
822 | # CONFIG_WDTPCI is not set | 847 | # CONFIG_WDTPCI is not set |
848 | CONFIG_SSB_POSSIBLE=y | ||
823 | 849 | ||
824 | # | 850 | # |
825 | # Sonics Silicon Backplane | 851 | # Sonics Silicon Backplane |
826 | # | 852 | # |
827 | CONFIG_SSB_POSSIBLE=y | ||
828 | # CONFIG_SSB is not set | 853 | # CONFIG_SSB is not set |
829 | 854 | ||
830 | # | 855 | # |
@@ -833,18 +858,13 @@ CONFIG_SSB_POSSIBLE=y | |||
833 | # CONFIG_MFD_CORE is not set | 858 | # CONFIG_MFD_CORE is not set |
834 | # CONFIG_MFD_SM501 is not set | 859 | # CONFIG_MFD_SM501 is not set |
835 | # CONFIG_HTC_PASIC3 is not set | 860 | # CONFIG_HTC_PASIC3 is not set |
861 | # CONFIG_TWL4030_CORE is not set | ||
836 | # CONFIG_MFD_TMIO is not set | 862 | # CONFIG_MFD_TMIO is not set |
837 | # CONFIG_PMIC_DA903X is not set | 863 | # CONFIG_PMIC_DA903X is not set |
838 | # CONFIG_MFD_WM8400 is not set | 864 | # CONFIG_MFD_WM8400 is not set |
839 | # CONFIG_MFD_WM8350_I2C is not set | 865 | # CONFIG_MFD_WM8350_I2C is not set |
840 | 866 | # CONFIG_MFD_PCF50633 is not set | |
841 | # | ||
842 | # Voltage and Current regulators | ||
843 | # | ||
844 | # CONFIG_REGULATOR is not set | 867 | # CONFIG_REGULATOR is not set |
845 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
846 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
847 | # CONFIG_REGULATOR_BQ24022 is not set | ||
848 | 868 | ||
849 | # | 869 | # |
850 | # Multimedia devices | 870 | # Multimedia devices |
@@ -900,9 +920,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
900 | # | 920 | # |
901 | 921 | ||
902 | # | 922 | # |
903 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 923 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
904 | # | 924 | # |
905 | # CONFIG_USB_GADGET is not set | 925 | # CONFIG_USB_GADGET is not set |
926 | |||
927 | # | ||
928 | # OTG and related infrastructure | ||
929 | # | ||
906 | # CONFIG_UWB is not set | 930 | # CONFIG_UWB is not set |
907 | # CONFIG_MMC is not set | 931 | # CONFIG_MMC is not set |
908 | # CONFIG_MEMSTICK is not set | 932 | # CONFIG_MEMSTICK is not set |
@@ -940,6 +964,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
940 | # CONFIG_RTC_DRV_M41T80 is not set | 964 | # CONFIG_RTC_DRV_M41T80 is not set |
941 | # CONFIG_RTC_DRV_S35390A is not set | 965 | # CONFIG_RTC_DRV_S35390A is not set |
942 | # CONFIG_RTC_DRV_FM3130 is not set | 966 | # CONFIG_RTC_DRV_FM3130 is not set |
967 | # CONFIG_RTC_DRV_RX8581 is not set | ||
943 | 968 | ||
944 | # | 969 | # |
945 | # SPI RTC drivers | 970 | # SPI RTC drivers |
@@ -987,6 +1012,7 @@ CONFIG_FS_MBCACHE=y | |||
987 | CONFIG_FILE_LOCKING=y | 1012 | CONFIG_FILE_LOCKING=y |
988 | # CONFIG_XFS_FS is not set | 1013 | # CONFIG_XFS_FS is not set |
989 | # CONFIG_OCFS2_FS is not set | 1014 | # CONFIG_OCFS2_FS is not set |
1015 | # CONFIG_BTRFS_FS is not set | ||
990 | CONFIG_DNOTIFY=y | 1016 | CONFIG_DNOTIFY=y |
991 | CONFIG_INOTIFY=y | 1017 | CONFIG_INOTIFY=y |
992 | CONFIG_INOTIFY_USER=y | 1018 | CONFIG_INOTIFY_USER=y |
@@ -1020,10 +1046,7 @@ CONFIG_TMPFS=y | |||
1020 | # CONFIG_TMPFS_POSIX_ACL is not set | 1046 | # CONFIG_TMPFS_POSIX_ACL is not set |
1021 | # CONFIG_HUGETLB_PAGE is not set | 1047 | # CONFIG_HUGETLB_PAGE is not set |
1022 | # CONFIG_CONFIGFS_FS is not set | 1048 | # CONFIG_CONFIGFS_FS is not set |
1023 | 1049 | CONFIG_MISC_FILESYSTEMS=y | |
1024 | # | ||
1025 | # Miscellaneous filesystems | ||
1026 | # | ||
1027 | # CONFIG_ADFS_FS is not set | 1050 | # CONFIG_ADFS_FS is not set |
1028 | # CONFIG_AFFS_FS is not set | 1051 | # CONFIG_AFFS_FS is not set |
1029 | # CONFIG_HFS_FS is not set | 1052 | # CONFIG_HFS_FS is not set |
@@ -1032,6 +1055,7 @@ CONFIG_TMPFS=y | |||
1032 | # CONFIG_BFS_FS is not set | 1055 | # CONFIG_BFS_FS is not set |
1033 | # CONFIG_EFS_FS is not set | 1056 | # CONFIG_EFS_FS is not set |
1034 | # CONFIG_CRAMFS is not set | 1057 | # CONFIG_CRAMFS is not set |
1058 | # CONFIG_SQUASHFS is not set | ||
1035 | # CONFIG_VXFS_FS is not set | 1059 | # CONFIG_VXFS_FS is not set |
1036 | # CONFIG_MINIX_FS is not set | 1060 | # CONFIG_MINIX_FS is not set |
1037 | # CONFIG_OMFS_FS is not set | 1061 | # CONFIG_OMFS_FS is not set |
@@ -1087,6 +1111,7 @@ CONFIG_UCC=y | |||
1087 | # Library routines | 1111 | # Library routines |
1088 | # | 1112 | # |
1089 | CONFIG_BITREVERSE=y | 1113 | CONFIG_BITREVERSE=y |
1114 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1090 | # CONFIG_CRC_CCITT is not set | 1115 | # CONFIG_CRC_CCITT is not set |
1091 | # CONFIG_CRC16 is not set | 1116 | # CONFIG_CRC16 is not set |
1092 | # CONFIG_CRC_T10DIF is not set | 1117 | # CONFIG_CRC_T10DIF is not set |
@@ -1120,6 +1145,8 @@ CONFIG_FRAME_WARN=1024 | |||
1120 | # CONFIG_LATENCYTOP is not set | 1145 | # CONFIG_LATENCYTOP is not set |
1121 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1122 | CONFIG_HAVE_FUNCTION_TRACER=y | 1147 | CONFIG_HAVE_FUNCTION_TRACER=y |
1148 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1149 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1123 | 1150 | ||
1124 | # | 1151 | # |
1125 | # Tracers | 1152 | # Tracers |
@@ -1127,6 +1154,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1127 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1154 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1128 | # CONFIG_SAMPLES is not set | 1155 | # CONFIG_SAMPLES is not set |
1129 | CONFIG_HAVE_ARCH_KGDB=y | 1156 | CONFIG_HAVE_ARCH_KGDB=y |
1157 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1130 | # CONFIG_IRQSTACKS is not set | 1158 | # CONFIG_IRQSTACKS is not set |
1131 | # CONFIG_BOOTX_TEXT is not set | 1159 | # CONFIG_BOOTX_TEXT is not set |
1132 | # CONFIG_PPC_EARLY_DEBUG is not set | 1160 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1145,11 +1173,15 @@ CONFIG_CRYPTO=y | |||
1145 | # | 1173 | # |
1146 | # CONFIG_CRYPTO_FIPS is not set | 1174 | # CONFIG_CRYPTO_FIPS is not set |
1147 | CONFIG_CRYPTO_ALGAPI=y | 1175 | CONFIG_CRYPTO_ALGAPI=y |
1148 | CONFIG_CRYPTO_AEAD=y | 1176 | CONFIG_CRYPTO_ALGAPI2=y |
1177 | CONFIG_CRYPTO_AEAD2=y | ||
1149 | CONFIG_CRYPTO_BLKCIPHER=y | 1178 | CONFIG_CRYPTO_BLKCIPHER=y |
1179 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1150 | CONFIG_CRYPTO_HASH=y | 1180 | CONFIG_CRYPTO_HASH=y |
1151 | CONFIG_CRYPTO_RNG=y | 1181 | CONFIG_CRYPTO_HASH2=y |
1182 | CONFIG_CRYPTO_RNG2=y | ||
1152 | CONFIG_CRYPTO_MANAGER=y | 1183 | CONFIG_CRYPTO_MANAGER=y |
1184 | CONFIG_CRYPTO_MANAGER2=y | ||
1153 | # CONFIG_CRYPTO_GF128MUL is not set | 1185 | # CONFIG_CRYPTO_GF128MUL is not set |
1154 | # CONFIG_CRYPTO_NULL is not set | 1186 | # CONFIG_CRYPTO_NULL is not set |
1155 | # CONFIG_CRYPTO_CRYPTD is not set | 1187 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig index 90c482606880..a012ce235203 100644 --- a/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:54 2008 | 4 | # Mon Jan 26 15:35:52 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | CONFIG_QUICC_ENGINE=y | 198 | CONFIG_QUICC_ENGINE=y |
199 | # CONFIG_QE_GPIO is not set | 199 | # CONFIG_QE_GPIO is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -226,6 +228,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
226 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 228 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
228 | # CONFIG_KEXEC is not set | 230 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | ||
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
231 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -237,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
248 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_PCI_SYSCALL=y | |||
267 | CONFIG_ARCH_SUPPORTS_MSI=y | 272 | CONFIG_ARCH_SUPPORTS_MSI=y |
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -407,8 +416,10 @@ CONFIG_MISC_DEVICES=y | |||
407 | # CONFIG_EEPROM_93CX6 is not set | 416 | # CONFIG_EEPROM_93CX6 is not set |
408 | # CONFIG_SGI_IOC4 is not set | 417 | # CONFIG_SGI_IOC4 is not set |
409 | # CONFIG_TIFM_CORE is not set | 418 | # CONFIG_TIFM_CORE is not set |
419 | # CONFIG_ICS932S401 is not set | ||
410 | # CONFIG_ENCLOSURE_SERVICES is not set | 420 | # CONFIG_ENCLOSURE_SERVICES is not set |
411 | # CONFIG_HP_ILO is not set | 421 | # CONFIG_HP_ILO is not set |
422 | # CONFIG_C2PORT is not set | ||
412 | CONFIG_HAVE_IDE=y | 423 | CONFIG_HAVE_IDE=y |
413 | # CONFIG_IDE is not set | 424 | # CONFIG_IDE is not set |
414 | 425 | ||
@@ -451,6 +462,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
451 | # CONFIG_SCSI_SRP_ATTRS is not set | 462 | # CONFIG_SCSI_SRP_ATTRS is not set |
452 | CONFIG_SCSI_LOWLEVEL=y | 463 | CONFIG_SCSI_LOWLEVEL=y |
453 | # CONFIG_ISCSI_TCP is not set | 464 | # CONFIG_ISCSI_TCP is not set |
465 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
454 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 466 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
455 | # CONFIG_SCSI_3W_9XXX is not set | 467 | # CONFIG_SCSI_3W_9XXX is not set |
456 | # CONFIG_SCSI_ACARD is not set | 468 | # CONFIG_SCSI_ACARD is not set |
@@ -467,6 +479,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
467 | # CONFIG_MEGARAID_SAS is not set | 479 | # CONFIG_MEGARAID_SAS is not set |
468 | # CONFIG_SCSI_HPTIOP is not set | 480 | # CONFIG_SCSI_HPTIOP is not set |
469 | # CONFIG_SCSI_BUSLOGIC is not set | 481 | # CONFIG_SCSI_BUSLOGIC is not set |
482 | # CONFIG_LIBFC is not set | ||
483 | # CONFIG_FCOE is not set | ||
470 | # CONFIG_SCSI_DMX3191D is not set | 484 | # CONFIG_SCSI_DMX3191D is not set |
471 | # CONFIG_SCSI_EATA is not set | 485 | # CONFIG_SCSI_EATA is not set |
472 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 486 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -525,6 +539,9 @@ CONFIG_PHYLIB=y | |||
525 | # CONFIG_BROADCOM_PHY is not set | 539 | # CONFIG_BROADCOM_PHY is not set |
526 | CONFIG_ICPLUS_PHY=y | 540 | CONFIG_ICPLUS_PHY=y |
527 | # CONFIG_REALTEK_PHY is not set | 541 | # CONFIG_REALTEK_PHY is not set |
542 | # CONFIG_NATIONAL_PHY is not set | ||
543 | # CONFIG_STE10XP is not set | ||
544 | # CONFIG_LSI_ET1011C_PHY is not set | ||
528 | # CONFIG_FIXED_PHY is not set | 545 | # CONFIG_FIXED_PHY is not set |
529 | # CONFIG_MDIO_BITBANG is not set | 546 | # CONFIG_MDIO_BITBANG is not set |
530 | CONFIG_NET_ETHERNET=y | 547 | CONFIG_NET_ETHERNET=y |
@@ -566,7 +583,6 @@ CONFIG_E1000=y | |||
566 | # CONFIG_GIANFAR is not set | 583 | # CONFIG_GIANFAR is not set |
567 | CONFIG_UCC_GETH=y | 584 | CONFIG_UCC_GETH=y |
568 | # CONFIG_UGETH_MAGIC_PACKET is not set | 585 | # CONFIG_UGETH_MAGIC_PACKET is not set |
569 | # CONFIG_UGETH_FILTERING is not set | ||
570 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 586 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
571 | # CONFIG_MV643XX_ETH is not set | 587 | # CONFIG_MV643XX_ETH is not set |
572 | # CONFIG_QLA3XXX is not set | 588 | # CONFIG_QLA3XXX is not set |
@@ -575,6 +591,7 @@ CONFIG_UCC_GETH=y | |||
575 | # CONFIG_JME is not set | 591 | # CONFIG_JME is not set |
576 | CONFIG_NETDEV_10000=y | 592 | CONFIG_NETDEV_10000=y |
577 | # CONFIG_CHELSIO_T1 is not set | 593 | # CONFIG_CHELSIO_T1 is not set |
594 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
578 | # CONFIG_CHELSIO_T3 is not set | 595 | # CONFIG_CHELSIO_T3 is not set |
579 | # CONFIG_ENIC is not set | 596 | # CONFIG_ENIC is not set |
580 | # CONFIG_IXGBE is not set | 597 | # CONFIG_IXGBE is not set |
@@ -599,6 +616,10 @@ CONFIG_NETDEV_10000=y | |||
599 | # CONFIG_IWLWIFI_LEDS is not set | 616 | # CONFIG_IWLWIFI_LEDS is not set |
600 | 617 | ||
601 | # | 618 | # |
619 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
620 | # | ||
621 | |||
622 | # | ||
602 | # USB Network Adapters | 623 | # USB Network Adapters |
603 | # | 624 | # |
604 | # CONFIG_USB_CATC is not set | 625 | # CONFIG_USB_CATC is not set |
@@ -677,8 +698,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
677 | # CONFIG_SERIAL_OF_PLATFORM is not set | 698 | # CONFIG_SERIAL_OF_PLATFORM is not set |
678 | # CONFIG_SERIAL_QE is not set | 699 | # CONFIG_SERIAL_QE is not set |
679 | CONFIG_UNIX98_PTYS=y | 700 | CONFIG_UNIX98_PTYS=y |
701 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
680 | CONFIG_LEGACY_PTYS=y | 702 | CONFIG_LEGACY_PTYS=y |
681 | CONFIG_LEGACY_PTY_COUNT=256 | 703 | CONFIG_LEGACY_PTY_COUNT=256 |
704 | # CONFIG_HVC_UDBG is not set | ||
682 | # CONFIG_IPMI_HANDLER is not set | 705 | # CONFIG_IPMI_HANDLER is not set |
683 | CONFIG_HW_RANDOM=y | 706 | CONFIG_HW_RANDOM=y |
684 | # CONFIG_NVRAM is not set | 707 | # CONFIG_NVRAM is not set |
@@ -753,7 +776,6 @@ CONFIG_I2C_MPC=y | |||
753 | # CONFIG_SENSORS_PCF8591 is not set | 776 | # CONFIG_SENSORS_PCF8591 is not set |
754 | # CONFIG_SENSORS_MAX6875 is not set | 777 | # CONFIG_SENSORS_MAX6875 is not set |
755 | # CONFIG_SENSORS_TSL2550 is not set | 778 | # CONFIG_SENSORS_TSL2550 is not set |
756 | # CONFIG_MCU_MPC8349EMITX is not set | ||
757 | # CONFIG_I2C_DEBUG_CORE is not set | 779 | # CONFIG_I2C_DEBUG_CORE is not set |
758 | # CONFIG_I2C_DEBUG_ALGO is not set | 780 | # CONFIG_I2C_DEBUG_ALGO is not set |
759 | # CONFIG_I2C_DEBUG_BUS is not set | 781 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -788,8 +810,10 @@ CONFIG_HWMON=y | |||
788 | # CONFIG_SENSORS_ADM1029 is not set | 810 | # CONFIG_SENSORS_ADM1029 is not set |
789 | # CONFIG_SENSORS_ADM1031 is not set | 811 | # CONFIG_SENSORS_ADM1031 is not set |
790 | # CONFIG_SENSORS_ADM9240 is not set | 812 | # CONFIG_SENSORS_ADM9240 is not set |
813 | # CONFIG_SENSORS_ADT7462 is not set | ||
791 | # CONFIG_SENSORS_ADT7470 is not set | 814 | # CONFIG_SENSORS_ADT7470 is not set |
792 | # CONFIG_SENSORS_ADT7473 is not set | 815 | # CONFIG_SENSORS_ADT7473 is not set |
816 | # CONFIG_SENSORS_ADT7475 is not set | ||
793 | # CONFIG_SENSORS_ATXP1 is not set | 817 | # CONFIG_SENSORS_ATXP1 is not set |
794 | # CONFIG_SENSORS_DS1621 is not set | 818 | # CONFIG_SENSORS_DS1621 is not set |
795 | # CONFIG_SENSORS_I5K_AMB is not set | 819 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -811,6 +835,7 @@ CONFIG_HWMON=y | |||
811 | # CONFIG_SENSORS_LM90 is not set | 835 | # CONFIG_SENSORS_LM90 is not set |
812 | # CONFIG_SENSORS_LM92 is not set | 836 | # CONFIG_SENSORS_LM92 is not set |
813 | # CONFIG_SENSORS_LM93 is not set | 837 | # CONFIG_SENSORS_LM93 is not set |
838 | # CONFIG_SENSORS_LTC4245 is not set | ||
814 | # CONFIG_SENSORS_MAX1111 is not set | 839 | # CONFIG_SENSORS_MAX1111 is not set |
815 | # CONFIG_SENSORS_MAX1619 is not set | 840 | # CONFIG_SENSORS_MAX1619 is not set |
816 | # CONFIG_SENSORS_MAX6650 is not set | 841 | # CONFIG_SENSORS_MAX6650 is not set |
@@ -857,11 +882,11 @@ CONFIG_WATCHDOG=y | |||
857 | # USB-based Watchdog Cards | 882 | # USB-based Watchdog Cards |
858 | # | 883 | # |
859 | # CONFIG_USBPCWATCHDOG is not set | 884 | # CONFIG_USBPCWATCHDOG is not set |
885 | CONFIG_SSB_POSSIBLE=y | ||
860 | 886 | ||
861 | # | 887 | # |
862 | # Sonics Silicon Backplane | 888 | # Sonics Silicon Backplane |
863 | # | 889 | # |
864 | CONFIG_SSB_POSSIBLE=y | ||
865 | # CONFIG_SSB is not set | 890 | # CONFIG_SSB is not set |
866 | 891 | ||
867 | # | 892 | # |
@@ -870,18 +895,13 @@ CONFIG_SSB_POSSIBLE=y | |||
870 | # CONFIG_MFD_CORE is not set | 895 | # CONFIG_MFD_CORE is not set |
871 | # CONFIG_MFD_SM501 is not set | 896 | # CONFIG_MFD_SM501 is not set |
872 | # CONFIG_HTC_PASIC3 is not set | 897 | # CONFIG_HTC_PASIC3 is not set |
898 | # CONFIG_TWL4030_CORE is not set | ||
873 | # CONFIG_MFD_TMIO is not set | 899 | # CONFIG_MFD_TMIO is not set |
874 | # CONFIG_PMIC_DA903X is not set | 900 | # CONFIG_PMIC_DA903X is not set |
875 | # CONFIG_MFD_WM8400 is not set | 901 | # CONFIG_MFD_WM8400 is not set |
876 | # CONFIG_MFD_WM8350_I2C is not set | 902 | # CONFIG_MFD_WM8350_I2C is not set |
877 | 903 | # CONFIG_MFD_PCF50633 is not set | |
878 | # | ||
879 | # Voltage and Current regulators | ||
880 | # | ||
881 | # CONFIG_REGULATOR is not set | 904 | # CONFIG_REGULATOR is not set |
882 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
883 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
884 | # CONFIG_REGULATOR_BQ24022 is not set | ||
885 | 905 | ||
886 | # | 906 | # |
887 | # Multimedia devices | 907 | # Multimedia devices |
@@ -966,6 +986,7 @@ CONFIG_USB_EHCI_HCD=y | |||
966 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 986 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
967 | # CONFIG_USB_EHCI_FSL is not set | 987 | # CONFIG_USB_EHCI_FSL is not set |
968 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 988 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
989 | # CONFIG_USB_OXU210HP_HCD is not set | ||
969 | # CONFIG_USB_ISP116X_HCD is not set | 990 | # CONFIG_USB_ISP116X_HCD is not set |
970 | # CONFIG_USB_ISP1760_HCD is not set | 991 | # CONFIG_USB_ISP1760_HCD is not set |
971 | CONFIG_USB_OHCI_HCD=y | 992 | CONFIG_USB_OHCI_HCD=y |
@@ -991,18 +1012,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
991 | # CONFIG_USB_TMC is not set | 1012 | # CONFIG_USB_TMC is not set |
992 | 1013 | ||
993 | # | 1014 | # |
994 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1015 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
995 | # | 1016 | # |
996 | 1017 | ||
997 | # | 1018 | # |
998 | # may also be needed; see USB_STORAGE Help for more information | 1019 | # see USB_STORAGE Help for more information |
999 | # | 1020 | # |
1000 | CONFIG_USB_STORAGE=y | 1021 | CONFIG_USB_STORAGE=y |
1001 | # CONFIG_USB_STORAGE_DEBUG is not set | 1022 | # CONFIG_USB_STORAGE_DEBUG is not set |
1002 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1023 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1003 | # CONFIG_USB_STORAGE_FREECOM is not set | 1024 | # CONFIG_USB_STORAGE_FREECOM is not set |
1004 | # CONFIG_USB_STORAGE_ISD200 is not set | 1025 | # CONFIG_USB_STORAGE_ISD200 is not set |
1005 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1006 | # CONFIG_USB_STORAGE_USBAT is not set | 1026 | # CONFIG_USB_STORAGE_USBAT is not set |
1007 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1027 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1008 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1028 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1050,6 +1070,10 @@ CONFIG_USB_STORAGE=y | |||
1050 | # CONFIG_USB_ISIGHTFW is not set | 1070 | # CONFIG_USB_ISIGHTFW is not set |
1051 | # CONFIG_USB_VST is not set | 1071 | # CONFIG_USB_VST is not set |
1052 | # CONFIG_USB_GADGET is not set | 1072 | # CONFIG_USB_GADGET is not set |
1073 | |||
1074 | # | ||
1075 | # OTG and related infrastructure | ||
1076 | # | ||
1053 | # CONFIG_UWB is not set | 1077 | # CONFIG_UWB is not set |
1054 | CONFIG_MMC=y | 1078 | CONFIG_MMC=y |
1055 | # CONFIG_MMC_DEBUG is not set | 1079 | # CONFIG_MMC_DEBUG is not set |
@@ -1099,6 +1123,7 @@ CONFIG_FS_MBCACHE=y | |||
1099 | CONFIG_FILE_LOCKING=y | 1123 | CONFIG_FILE_LOCKING=y |
1100 | # CONFIG_XFS_FS is not set | 1124 | # CONFIG_XFS_FS is not set |
1101 | # CONFIG_OCFS2_FS is not set | 1125 | # CONFIG_OCFS2_FS is not set |
1126 | # CONFIG_BTRFS_FS is not set | ||
1102 | CONFIG_DNOTIFY=y | 1127 | CONFIG_DNOTIFY=y |
1103 | CONFIG_INOTIFY=y | 1128 | CONFIG_INOTIFY=y |
1104 | CONFIG_INOTIFY_USER=y | 1129 | CONFIG_INOTIFY_USER=y |
@@ -1135,10 +1160,7 @@ CONFIG_TMPFS=y | |||
1135 | # CONFIG_TMPFS_POSIX_ACL is not set | 1160 | # CONFIG_TMPFS_POSIX_ACL is not set |
1136 | # CONFIG_HUGETLB_PAGE is not set | 1161 | # CONFIG_HUGETLB_PAGE is not set |
1137 | # CONFIG_CONFIGFS_FS is not set | 1162 | # CONFIG_CONFIGFS_FS is not set |
1138 | 1163 | CONFIG_MISC_FILESYSTEMS=y | |
1139 | # | ||
1140 | # Miscellaneous filesystems | ||
1141 | # | ||
1142 | # CONFIG_ADFS_FS is not set | 1164 | # CONFIG_ADFS_FS is not set |
1143 | # CONFIG_AFFS_FS is not set | 1165 | # CONFIG_AFFS_FS is not set |
1144 | # CONFIG_HFS_FS is not set | 1166 | # CONFIG_HFS_FS is not set |
@@ -1147,6 +1169,7 @@ CONFIG_TMPFS=y | |||
1147 | # CONFIG_BFS_FS is not set | 1169 | # CONFIG_BFS_FS is not set |
1148 | # CONFIG_EFS_FS is not set | 1170 | # CONFIG_EFS_FS is not set |
1149 | # CONFIG_CRAMFS is not set | 1171 | # CONFIG_CRAMFS is not set |
1172 | # CONFIG_SQUASHFS is not set | ||
1150 | # CONFIG_VXFS_FS is not set | 1173 | # CONFIG_VXFS_FS is not set |
1151 | # CONFIG_MINIX_FS is not set | 1174 | # CONFIG_MINIX_FS is not set |
1152 | # CONFIG_OMFS_FS is not set | 1175 | # CONFIG_OMFS_FS is not set |
@@ -1246,6 +1269,7 @@ CONFIG_UCC=y | |||
1246 | # Library routines | 1269 | # Library routines |
1247 | # | 1270 | # |
1248 | CONFIG_BITREVERSE=y | 1271 | CONFIG_BITREVERSE=y |
1272 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1249 | # CONFIG_CRC_CCITT is not set | 1273 | # CONFIG_CRC_CCITT is not set |
1250 | # CONFIG_CRC16 is not set | 1274 | # CONFIG_CRC16 is not set |
1251 | CONFIG_CRC_T10DIF=y | 1275 | CONFIG_CRC_T10DIF=y |
@@ -1279,6 +1303,8 @@ CONFIG_FRAME_WARN=1024 | |||
1279 | # CONFIG_LATENCYTOP is not set | 1303 | # CONFIG_LATENCYTOP is not set |
1280 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1304 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1281 | CONFIG_HAVE_FUNCTION_TRACER=y | 1305 | CONFIG_HAVE_FUNCTION_TRACER=y |
1306 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1307 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1282 | 1308 | ||
1283 | # | 1309 | # |
1284 | # Tracers | 1310 | # Tracers |
@@ -1286,6 +1312,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1286 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1312 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1287 | # CONFIG_SAMPLES is not set | 1313 | # CONFIG_SAMPLES is not set |
1288 | CONFIG_HAVE_ARCH_KGDB=y | 1314 | CONFIG_HAVE_ARCH_KGDB=y |
1315 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1289 | # CONFIG_IRQSTACKS is not set | 1316 | # CONFIG_IRQSTACKS is not set |
1290 | # CONFIG_BOOTX_TEXT is not set | 1317 | # CONFIG_BOOTX_TEXT is not set |
1291 | # CONFIG_PPC_EARLY_DEBUG is not set | 1318 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1304,11 +1331,15 @@ CONFIG_CRYPTO=y | |||
1304 | # | 1331 | # |
1305 | # CONFIG_CRYPTO_FIPS is not set | 1332 | # CONFIG_CRYPTO_FIPS is not set |
1306 | CONFIG_CRYPTO_ALGAPI=y | 1333 | CONFIG_CRYPTO_ALGAPI=y |
1307 | CONFIG_CRYPTO_AEAD=y | 1334 | CONFIG_CRYPTO_ALGAPI2=y |
1335 | CONFIG_CRYPTO_AEAD2=y | ||
1308 | CONFIG_CRYPTO_BLKCIPHER=y | 1336 | CONFIG_CRYPTO_BLKCIPHER=y |
1337 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1309 | CONFIG_CRYPTO_HASH=y | 1338 | CONFIG_CRYPTO_HASH=y |
1310 | CONFIG_CRYPTO_RNG=y | 1339 | CONFIG_CRYPTO_HASH2=y |
1340 | CONFIG_CRYPTO_RNG2=y | ||
1311 | CONFIG_CRYPTO_MANAGER=y | 1341 | CONFIG_CRYPTO_MANAGER=y |
1342 | CONFIG_CRYPTO_MANAGER2=y | ||
1312 | # CONFIG_CRYPTO_GF128MUL is not set | 1343 | # CONFIG_CRYPTO_GF128MUL is not set |
1313 | # CONFIG_CRYPTO_NULL is not set | 1344 | # CONFIG_CRYPTO_NULL is not set |
1314 | # CONFIG_CRYPTO_CRYPTD is not set | 1345 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_itx_defconfig b/arch/powerpc/configs/83xx/mpc834x_itx_defconfig index 42b7f3403fb0..4bcc4a1ff308 100644 --- a/arch/powerpc/configs/83xx/mpc834x_itx_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:56 2008 | 4 | # Mon Jan 26 15:35:53 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -381,6 +390,7 @@ CONFIG_MTD=y | |||
381 | # CONFIG_MTD_DEBUG is not set | 390 | # CONFIG_MTD_DEBUG is not set |
382 | # CONFIG_MTD_CONCAT is not set | 391 | # CONFIG_MTD_CONCAT is not set |
383 | # CONFIG_MTD_PARTITIONS is not set | 392 | # CONFIG_MTD_PARTITIONS is not set |
393 | # CONFIG_MTD_TESTS is not set | ||
384 | 394 | ||
385 | # | 395 | # |
386 | # User Modules And Translation Layers | 396 | # User Modules And Translation Layers |
@@ -426,9 +436,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
426 | # | 436 | # |
427 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 437 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
428 | CONFIG_MTD_PHYSMAP=y | 438 | CONFIG_MTD_PHYSMAP=y |
429 | CONFIG_MTD_PHYSMAP_START=0xfe000000 | 439 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
430 | CONFIG_MTD_PHYSMAP_LEN=0x1000000 | ||
431 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
432 | # CONFIG_MTD_PHYSMAP_OF is not set | 440 | # CONFIG_MTD_PHYSMAP_OF is not set |
433 | # CONFIG_MTD_INTEL_VR_NOR is not set | 441 | # CONFIG_MTD_INTEL_VR_NOR is not set |
434 | # CONFIG_MTD_PLATRAM is not set | 442 | # CONFIG_MTD_PLATRAM is not set |
@@ -454,6 +462,12 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
454 | # CONFIG_MTD_ONENAND is not set | 462 | # CONFIG_MTD_ONENAND is not set |
455 | 463 | ||
456 | # | 464 | # |
465 | # LPDDR flash memory drivers | ||
466 | # | ||
467 | # CONFIG_MTD_LPDDR is not set | ||
468 | # CONFIG_MTD_QINFO_PROBE is not set | ||
469 | |||
470 | # | ||
457 | # UBI - Unsorted block images | 471 | # UBI - Unsorted block images |
458 | # | 472 | # |
459 | # CONFIG_MTD_UBI is not set | 473 | # CONFIG_MTD_UBI is not set |
@@ -485,8 +499,10 @@ CONFIG_MISC_DEVICES=y | |||
485 | # CONFIG_EEPROM_93CX6 is not set | 499 | # CONFIG_EEPROM_93CX6 is not set |
486 | # CONFIG_SGI_IOC4 is not set | 500 | # CONFIG_SGI_IOC4 is not set |
487 | # CONFIG_TIFM_CORE is not set | 501 | # CONFIG_TIFM_CORE is not set |
502 | # CONFIG_ICS932S401 is not set | ||
488 | # CONFIG_ENCLOSURE_SERVICES is not set | 503 | # CONFIG_ENCLOSURE_SERVICES is not set |
489 | # CONFIG_HP_ILO is not set | 504 | # CONFIG_HP_ILO is not set |
505 | # CONFIG_C2PORT is not set | ||
490 | CONFIG_HAVE_IDE=y | 506 | CONFIG_HAVE_IDE=y |
491 | CONFIG_IDE=y | 507 | CONFIG_IDE=y |
492 | 508 | ||
@@ -499,7 +515,6 @@ CONFIG_IDE_GD_ATA=y | |||
499 | # CONFIG_IDE_GD_ATAPI is not set | 515 | # CONFIG_IDE_GD_ATAPI is not set |
500 | # CONFIG_BLK_DEV_IDECD is not set | 516 | # CONFIG_BLK_DEV_IDECD is not set |
501 | # CONFIG_BLK_DEV_IDETAPE is not set | 517 | # CONFIG_BLK_DEV_IDETAPE is not set |
502 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
503 | # CONFIG_IDE_TASK_IOCTL is not set | 518 | # CONFIG_IDE_TASK_IOCTL is not set |
504 | CONFIG_IDE_PROC_FS=y | 519 | CONFIG_IDE_PROC_FS=y |
505 | 520 | ||
@@ -524,6 +539,7 @@ CONFIG_IDE_PROC_FS=y | |||
524 | # CONFIG_BLK_DEV_JMICRON is not set | 539 | # CONFIG_BLK_DEV_JMICRON is not set |
525 | # CONFIG_BLK_DEV_SC1200 is not set | 540 | # CONFIG_BLK_DEV_SC1200 is not set |
526 | # CONFIG_BLK_DEV_PIIX is not set | 541 | # CONFIG_BLK_DEV_PIIX is not set |
542 | # CONFIG_BLK_DEV_IT8172 is not set | ||
527 | # CONFIG_BLK_DEV_IT8213 is not set | 543 | # CONFIG_BLK_DEV_IT8213 is not set |
528 | # CONFIG_BLK_DEV_IT821X is not set | 544 | # CONFIG_BLK_DEV_IT821X is not set |
529 | # CONFIG_BLK_DEV_NS87415 is not set | 545 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -577,6 +593,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
577 | # CONFIG_SCSI_SRP_ATTRS is not set | 593 | # CONFIG_SCSI_SRP_ATTRS is not set |
578 | CONFIG_SCSI_LOWLEVEL=y | 594 | CONFIG_SCSI_LOWLEVEL=y |
579 | # CONFIG_ISCSI_TCP is not set | 595 | # CONFIG_ISCSI_TCP is not set |
596 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
580 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 597 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
581 | # CONFIG_SCSI_3W_9XXX is not set | 598 | # CONFIG_SCSI_3W_9XXX is not set |
582 | # CONFIG_SCSI_ACARD is not set | 599 | # CONFIG_SCSI_ACARD is not set |
@@ -593,6 +610,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
593 | # CONFIG_MEGARAID_SAS is not set | 610 | # CONFIG_MEGARAID_SAS is not set |
594 | # CONFIG_SCSI_HPTIOP is not set | 611 | # CONFIG_SCSI_HPTIOP is not set |
595 | # CONFIG_SCSI_BUSLOGIC is not set | 612 | # CONFIG_SCSI_BUSLOGIC is not set |
613 | # CONFIG_LIBFC is not set | ||
614 | # CONFIG_FCOE is not set | ||
596 | # CONFIG_SCSI_DMX3191D is not set | 615 | # CONFIG_SCSI_DMX3191D is not set |
597 | # CONFIG_SCSI_EATA is not set | 616 | # CONFIG_SCSI_EATA is not set |
598 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 617 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -723,6 +742,9 @@ CONFIG_CICADA_PHY=y | |||
723 | # CONFIG_BROADCOM_PHY is not set | 742 | # CONFIG_BROADCOM_PHY is not set |
724 | # CONFIG_ICPLUS_PHY is not set | 743 | # CONFIG_ICPLUS_PHY is not set |
725 | # CONFIG_REALTEK_PHY is not set | 744 | # CONFIG_REALTEK_PHY is not set |
745 | # CONFIG_NATIONAL_PHY is not set | ||
746 | # CONFIG_STE10XP is not set | ||
747 | # CONFIG_LSI_ET1011C_PHY is not set | ||
726 | CONFIG_FIXED_PHY=y | 748 | CONFIG_FIXED_PHY=y |
727 | # CONFIG_MDIO_BITBANG is not set | 749 | # CONFIG_MDIO_BITBANG is not set |
728 | # CONFIG_NET_ETHERNET is not set | 750 | # CONFIG_NET_ETHERNET is not set |
@@ -751,6 +773,7 @@ CONFIG_GIANFAR=y | |||
751 | # CONFIG_JME is not set | 773 | # CONFIG_JME is not set |
752 | CONFIG_NETDEV_10000=y | 774 | CONFIG_NETDEV_10000=y |
753 | # CONFIG_CHELSIO_T1 is not set | 775 | # CONFIG_CHELSIO_T1 is not set |
776 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
754 | # CONFIG_CHELSIO_T3 is not set | 777 | # CONFIG_CHELSIO_T3 is not set |
755 | # CONFIG_ENIC is not set | 778 | # CONFIG_ENIC is not set |
756 | # CONFIG_IXGBE is not set | 779 | # CONFIG_IXGBE is not set |
@@ -775,6 +798,10 @@ CONFIG_NETDEV_10000=y | |||
775 | # CONFIG_IWLWIFI_LEDS is not set | 798 | # CONFIG_IWLWIFI_LEDS is not set |
776 | 799 | ||
777 | # | 800 | # |
801 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
802 | # | ||
803 | |||
804 | # | ||
778 | # USB Network Adapters | 805 | # USB Network Adapters |
779 | # | 806 | # |
780 | # CONFIG_USB_CATC is not set | 807 | # CONFIG_USB_CATC is not set |
@@ -832,8 +859,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
832 | # CONFIG_SERIAL_JSM is not set | 859 | # CONFIG_SERIAL_JSM is not set |
833 | # CONFIG_SERIAL_OF_PLATFORM is not set | 860 | # CONFIG_SERIAL_OF_PLATFORM is not set |
834 | CONFIG_UNIX98_PTYS=y | 861 | CONFIG_UNIX98_PTYS=y |
862 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
835 | CONFIG_LEGACY_PTYS=y | 863 | CONFIG_LEGACY_PTYS=y |
836 | CONFIG_LEGACY_PTY_COUNT=256 | 864 | CONFIG_LEGACY_PTY_COUNT=256 |
865 | # CONFIG_HVC_UDBG is not set | ||
837 | # CONFIG_IPMI_HANDLER is not set | 866 | # CONFIG_IPMI_HANDLER is not set |
838 | CONFIG_HW_RANDOM=y | 867 | CONFIG_HW_RANDOM=y |
839 | # CONFIG_NVRAM is not set | 868 | # CONFIG_NVRAM is not set |
@@ -906,7 +935,6 @@ CONFIG_SENSORS_PCF8574=y | |||
906 | # CONFIG_SENSORS_PCF8591 is not set | 935 | # CONFIG_SENSORS_PCF8591 is not set |
907 | # CONFIG_SENSORS_MAX6875 is not set | 936 | # CONFIG_SENSORS_MAX6875 is not set |
908 | # CONFIG_SENSORS_TSL2550 is not set | 937 | # CONFIG_SENSORS_TSL2550 is not set |
909 | # CONFIG_MCU_MPC8349EMITX is not set | ||
910 | # CONFIG_I2C_DEBUG_CORE is not set | 938 | # CONFIG_I2C_DEBUG_CORE is not set |
911 | # CONFIG_I2C_DEBUG_ALGO is not set | 939 | # CONFIG_I2C_DEBUG_ALGO is not set |
912 | # CONFIG_I2C_DEBUG_BUS is not set | 940 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -953,11 +981,11 @@ CONFIG_WATCHDOG=y | |||
953 | # USB-based Watchdog Cards | 981 | # USB-based Watchdog Cards |
954 | # | 982 | # |
955 | # CONFIG_USBPCWATCHDOG is not set | 983 | # CONFIG_USBPCWATCHDOG is not set |
984 | CONFIG_SSB_POSSIBLE=y | ||
956 | 985 | ||
957 | # | 986 | # |
958 | # Sonics Silicon Backplane | 987 | # Sonics Silicon Backplane |
959 | # | 988 | # |
960 | CONFIG_SSB_POSSIBLE=y | ||
961 | # CONFIG_SSB is not set | 989 | # CONFIG_SSB is not set |
962 | 990 | ||
963 | # | 991 | # |
@@ -966,18 +994,13 @@ CONFIG_SSB_POSSIBLE=y | |||
966 | # CONFIG_MFD_CORE is not set | 994 | # CONFIG_MFD_CORE is not set |
967 | # CONFIG_MFD_SM501 is not set | 995 | # CONFIG_MFD_SM501 is not set |
968 | # CONFIG_HTC_PASIC3 is not set | 996 | # CONFIG_HTC_PASIC3 is not set |
997 | # CONFIG_TWL4030_CORE is not set | ||
969 | # CONFIG_MFD_TMIO is not set | 998 | # CONFIG_MFD_TMIO is not set |
970 | # CONFIG_PMIC_DA903X is not set | 999 | # CONFIG_PMIC_DA903X is not set |
971 | # CONFIG_MFD_WM8400 is not set | 1000 | # CONFIG_MFD_WM8400 is not set |
972 | # CONFIG_MFD_WM8350_I2C is not set | 1001 | # CONFIG_MFD_WM8350_I2C is not set |
973 | 1002 | # CONFIG_MFD_PCF50633 is not set | |
974 | # | ||
975 | # Voltage and Current regulators | ||
976 | # | ||
977 | # CONFIG_REGULATOR is not set | 1003 | # CONFIG_REGULATOR is not set |
978 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
979 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
980 | # CONFIG_REGULATOR_BQ24022 is not set | ||
981 | 1004 | ||
982 | # | 1005 | # |
983 | # Multimedia devices | 1006 | # Multimedia devices |
@@ -1041,6 +1064,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1041 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1064 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1042 | CONFIG_USB_EHCI_FSL=y | 1065 | CONFIG_USB_EHCI_FSL=y |
1043 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1066 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1067 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1044 | # CONFIG_USB_ISP116X_HCD is not set | 1068 | # CONFIG_USB_ISP116X_HCD is not set |
1045 | # CONFIG_USB_ISP1760_HCD is not set | 1069 | # CONFIG_USB_ISP1760_HCD is not set |
1046 | # CONFIG_USB_OHCI_HCD is not set | 1070 | # CONFIG_USB_OHCI_HCD is not set |
@@ -1059,18 +1083,17 @@ CONFIG_USB_UHCI_HCD=y | |||
1059 | # CONFIG_USB_TMC is not set | 1083 | # CONFIG_USB_TMC is not set |
1060 | 1084 | ||
1061 | # | 1085 | # |
1062 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1086 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1063 | # | 1087 | # |
1064 | 1088 | ||
1065 | # | 1089 | # |
1066 | # may also be needed; see USB_STORAGE Help for more information | 1090 | # see USB_STORAGE Help for more information |
1067 | # | 1091 | # |
1068 | CONFIG_USB_STORAGE=y | 1092 | CONFIG_USB_STORAGE=y |
1069 | # CONFIG_USB_STORAGE_DEBUG is not set | 1093 | # CONFIG_USB_STORAGE_DEBUG is not set |
1070 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1094 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1071 | # CONFIG_USB_STORAGE_FREECOM is not set | 1095 | # CONFIG_USB_STORAGE_FREECOM is not set |
1072 | # CONFIG_USB_STORAGE_ISD200 is not set | 1096 | # CONFIG_USB_STORAGE_ISD200 is not set |
1073 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1074 | # CONFIG_USB_STORAGE_USBAT is not set | 1097 | # CONFIG_USB_STORAGE_USBAT is not set |
1075 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1098 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1076 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1099 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1117,6 +1140,10 @@ CONFIG_USB_STORAGE=y | |||
1117 | # CONFIG_USB_ISIGHTFW is not set | 1140 | # CONFIG_USB_ISIGHTFW is not set |
1118 | # CONFIG_USB_VST is not set | 1141 | # CONFIG_USB_VST is not set |
1119 | # CONFIG_USB_GADGET is not set | 1142 | # CONFIG_USB_GADGET is not set |
1143 | |||
1144 | # | ||
1145 | # OTG and related infrastructure | ||
1146 | # | ||
1120 | # CONFIG_UWB is not set | 1147 | # CONFIG_UWB is not set |
1121 | # CONFIG_MMC is not set | 1148 | # CONFIG_MMC is not set |
1122 | # CONFIG_MEMSTICK is not set | 1149 | # CONFIG_MEMSTICK is not set |
@@ -1154,12 +1181,14 @@ CONFIG_RTC_DRV_DS1307=y | |||
1154 | # CONFIG_RTC_DRV_M41T80 is not set | 1181 | # CONFIG_RTC_DRV_M41T80 is not set |
1155 | # CONFIG_RTC_DRV_S35390A is not set | 1182 | # CONFIG_RTC_DRV_S35390A is not set |
1156 | # CONFIG_RTC_DRV_FM3130 is not set | 1183 | # CONFIG_RTC_DRV_FM3130 is not set |
1184 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1157 | 1185 | ||
1158 | # | 1186 | # |
1159 | # SPI RTC drivers | 1187 | # SPI RTC drivers |
1160 | # | 1188 | # |
1161 | # CONFIG_RTC_DRV_M41T94 is not set | 1189 | # CONFIG_RTC_DRV_M41T94 is not set |
1162 | # CONFIG_RTC_DRV_DS1305 is not set | 1190 | # CONFIG_RTC_DRV_DS1305 is not set |
1191 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1163 | # CONFIG_RTC_DRV_MAX6902 is not set | 1192 | # CONFIG_RTC_DRV_MAX6902 is not set |
1164 | # CONFIG_RTC_DRV_R9701 is not set | 1193 | # CONFIG_RTC_DRV_R9701 is not set |
1165 | # CONFIG_RTC_DRV_RS5C348 is not set | 1194 | # CONFIG_RTC_DRV_RS5C348 is not set |
@@ -1207,6 +1236,7 @@ CONFIG_FS_MBCACHE=y | |||
1207 | CONFIG_FILE_LOCKING=y | 1236 | CONFIG_FILE_LOCKING=y |
1208 | # CONFIG_XFS_FS is not set | 1237 | # CONFIG_XFS_FS is not set |
1209 | # CONFIG_OCFS2_FS is not set | 1238 | # CONFIG_OCFS2_FS is not set |
1239 | # CONFIG_BTRFS_FS is not set | ||
1210 | CONFIG_DNOTIFY=y | 1240 | CONFIG_DNOTIFY=y |
1211 | CONFIG_INOTIFY=y | 1241 | CONFIG_INOTIFY=y |
1212 | CONFIG_INOTIFY_USER=y | 1242 | CONFIG_INOTIFY_USER=y |
@@ -1243,10 +1273,7 @@ CONFIG_TMPFS=y | |||
1243 | # CONFIG_TMPFS_POSIX_ACL is not set | 1273 | # CONFIG_TMPFS_POSIX_ACL is not set |
1244 | # CONFIG_HUGETLB_PAGE is not set | 1274 | # CONFIG_HUGETLB_PAGE is not set |
1245 | # CONFIG_CONFIGFS_FS is not set | 1275 | # CONFIG_CONFIGFS_FS is not set |
1246 | 1276 | CONFIG_MISC_FILESYSTEMS=y | |
1247 | # | ||
1248 | # Miscellaneous filesystems | ||
1249 | # | ||
1250 | # CONFIG_ADFS_FS is not set | 1277 | # CONFIG_ADFS_FS is not set |
1251 | # CONFIG_AFFS_FS is not set | 1278 | # CONFIG_AFFS_FS is not set |
1252 | # CONFIG_HFS_FS is not set | 1279 | # CONFIG_HFS_FS is not set |
@@ -1256,6 +1283,7 @@ CONFIG_TMPFS=y | |||
1256 | # CONFIG_EFS_FS is not set | 1283 | # CONFIG_EFS_FS is not set |
1257 | # CONFIG_JFFS2_FS is not set | 1284 | # CONFIG_JFFS2_FS is not set |
1258 | # CONFIG_CRAMFS is not set | 1285 | # CONFIG_CRAMFS is not set |
1286 | # CONFIG_SQUASHFS is not set | ||
1259 | # CONFIG_VXFS_FS is not set | 1287 | # CONFIG_VXFS_FS is not set |
1260 | # CONFIG_MINIX_FS is not set | 1288 | # CONFIG_MINIX_FS is not set |
1261 | # CONFIG_OMFS_FS is not set | 1289 | # CONFIG_OMFS_FS is not set |
@@ -1352,6 +1380,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1352 | # Library routines | 1380 | # Library routines |
1353 | # | 1381 | # |
1354 | CONFIG_BITREVERSE=y | 1382 | CONFIG_BITREVERSE=y |
1383 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1355 | # CONFIG_CRC_CCITT is not set | 1384 | # CONFIG_CRC_CCITT is not set |
1356 | # CONFIG_CRC16 is not set | 1385 | # CONFIG_CRC16 is not set |
1357 | CONFIG_CRC_T10DIF=y | 1386 | CONFIG_CRC_T10DIF=y |
@@ -1385,6 +1414,8 @@ CONFIG_FRAME_WARN=1024 | |||
1385 | # CONFIG_LATENCYTOP is not set | 1414 | # CONFIG_LATENCYTOP is not set |
1386 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1415 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1387 | CONFIG_HAVE_FUNCTION_TRACER=y | 1416 | CONFIG_HAVE_FUNCTION_TRACER=y |
1417 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1418 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1388 | 1419 | ||
1389 | # | 1420 | # |
1390 | # Tracers | 1421 | # Tracers |
@@ -1392,6 +1423,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1392 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1423 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1393 | # CONFIG_SAMPLES is not set | 1424 | # CONFIG_SAMPLES is not set |
1394 | CONFIG_HAVE_ARCH_KGDB=y | 1425 | CONFIG_HAVE_ARCH_KGDB=y |
1426 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1395 | # CONFIG_IRQSTACKS is not set | 1427 | # CONFIG_IRQSTACKS is not set |
1396 | # CONFIG_BOOTX_TEXT is not set | 1428 | # CONFIG_BOOTX_TEXT is not set |
1397 | # CONFIG_PPC_EARLY_DEBUG is not set | 1429 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1410,11 +1442,15 @@ CONFIG_CRYPTO=y | |||
1410 | # | 1442 | # |
1411 | # CONFIG_CRYPTO_FIPS is not set | 1443 | # CONFIG_CRYPTO_FIPS is not set |
1412 | CONFIG_CRYPTO_ALGAPI=y | 1444 | CONFIG_CRYPTO_ALGAPI=y |
1413 | CONFIG_CRYPTO_AEAD=y | 1445 | CONFIG_CRYPTO_ALGAPI2=y |
1446 | CONFIG_CRYPTO_AEAD2=y | ||
1414 | CONFIG_CRYPTO_BLKCIPHER=y | 1447 | CONFIG_CRYPTO_BLKCIPHER=y |
1448 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1415 | CONFIG_CRYPTO_HASH=y | 1449 | CONFIG_CRYPTO_HASH=y |
1416 | CONFIG_CRYPTO_RNG=y | 1450 | CONFIG_CRYPTO_HASH2=y |
1451 | CONFIG_CRYPTO_RNG2=y | ||
1417 | CONFIG_CRYPTO_MANAGER=y | 1452 | CONFIG_CRYPTO_MANAGER=y |
1453 | CONFIG_CRYPTO_MANAGER2=y | ||
1418 | # CONFIG_CRYPTO_GF128MUL is not set | 1454 | # CONFIG_CRYPTO_GF128MUL is not set |
1419 | # CONFIG_CRYPTO_NULL is not set | 1455 | # CONFIG_CRYPTO_NULL is not set |
1420 | # CONFIG_CRYPTO_CRYPTD is not set | 1456 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig b/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig index 17c903b36576..9ba5518ce8df 100644 --- a/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:57 2008 | 4 | # Mon Jan 26 15:35:55 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -381,6 +390,7 @@ CONFIG_MTD=y | |||
381 | # CONFIG_MTD_DEBUG is not set | 390 | # CONFIG_MTD_DEBUG is not set |
382 | # CONFIG_MTD_CONCAT is not set | 391 | # CONFIG_MTD_CONCAT is not set |
383 | # CONFIG_MTD_PARTITIONS is not set | 392 | # CONFIG_MTD_PARTITIONS is not set |
393 | # CONFIG_MTD_TESTS is not set | ||
384 | 394 | ||
385 | # | 395 | # |
386 | # User Modules And Translation Layers | 396 | # User Modules And Translation Layers |
@@ -426,9 +436,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
426 | # | 436 | # |
427 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 437 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
428 | CONFIG_MTD_PHYSMAP=y | 438 | CONFIG_MTD_PHYSMAP=y |
429 | CONFIG_MTD_PHYSMAP_START=0xfe000000 | 439 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
430 | CONFIG_MTD_PHYSMAP_LEN=0x800000 | ||
431 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
432 | # CONFIG_MTD_PHYSMAP_OF is not set | 440 | # CONFIG_MTD_PHYSMAP_OF is not set |
433 | # CONFIG_MTD_INTEL_VR_NOR is not set | 441 | # CONFIG_MTD_INTEL_VR_NOR is not set |
434 | # CONFIG_MTD_PLATRAM is not set | 442 | # CONFIG_MTD_PLATRAM is not set |
@@ -454,6 +462,12 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
454 | # CONFIG_MTD_ONENAND is not set | 462 | # CONFIG_MTD_ONENAND is not set |
455 | 463 | ||
456 | # | 464 | # |
465 | # LPDDR flash memory drivers | ||
466 | # | ||
467 | # CONFIG_MTD_LPDDR is not set | ||
468 | # CONFIG_MTD_QINFO_PROBE is not set | ||
469 | |||
470 | # | ||
457 | # UBI - Unsorted block images | 471 | # UBI - Unsorted block images |
458 | # | 472 | # |
459 | # CONFIG_MTD_UBI is not set | 473 | # CONFIG_MTD_UBI is not set |
@@ -485,8 +499,10 @@ CONFIG_MISC_DEVICES=y | |||
485 | # CONFIG_EEPROM_93CX6 is not set | 499 | # CONFIG_EEPROM_93CX6 is not set |
486 | # CONFIG_SGI_IOC4 is not set | 500 | # CONFIG_SGI_IOC4 is not set |
487 | # CONFIG_TIFM_CORE is not set | 501 | # CONFIG_TIFM_CORE is not set |
502 | # CONFIG_ICS932S401 is not set | ||
488 | # CONFIG_ENCLOSURE_SERVICES is not set | 503 | # CONFIG_ENCLOSURE_SERVICES is not set |
489 | # CONFIG_HP_ILO is not set | 504 | # CONFIG_HP_ILO is not set |
505 | # CONFIG_C2PORT is not set | ||
490 | CONFIG_HAVE_IDE=y | 506 | CONFIG_HAVE_IDE=y |
491 | # CONFIG_IDE is not set | 507 | # CONFIG_IDE is not set |
492 | 508 | ||
@@ -529,6 +545,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
529 | # CONFIG_SCSI_SRP_ATTRS is not set | 545 | # CONFIG_SCSI_SRP_ATTRS is not set |
530 | CONFIG_SCSI_LOWLEVEL=y | 546 | CONFIG_SCSI_LOWLEVEL=y |
531 | # CONFIG_ISCSI_TCP is not set | 547 | # CONFIG_ISCSI_TCP is not set |
548 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
532 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 549 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
533 | # CONFIG_SCSI_3W_9XXX is not set | 550 | # CONFIG_SCSI_3W_9XXX is not set |
534 | # CONFIG_SCSI_ACARD is not set | 551 | # CONFIG_SCSI_ACARD is not set |
@@ -545,6 +562,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
545 | # CONFIG_MEGARAID_SAS is not set | 562 | # CONFIG_MEGARAID_SAS is not set |
546 | # CONFIG_SCSI_HPTIOP is not set | 563 | # CONFIG_SCSI_HPTIOP is not set |
547 | # CONFIG_SCSI_BUSLOGIC is not set | 564 | # CONFIG_SCSI_BUSLOGIC is not set |
565 | # CONFIG_LIBFC is not set | ||
566 | # CONFIG_FCOE is not set | ||
548 | # CONFIG_SCSI_DMX3191D is not set | 567 | # CONFIG_SCSI_DMX3191D is not set |
549 | # CONFIG_SCSI_EATA is not set | 568 | # CONFIG_SCSI_EATA is not set |
550 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 569 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -603,6 +622,9 @@ CONFIG_CICADA_PHY=y | |||
603 | # CONFIG_BROADCOM_PHY is not set | 622 | # CONFIG_BROADCOM_PHY is not set |
604 | # CONFIG_ICPLUS_PHY is not set | 623 | # CONFIG_ICPLUS_PHY is not set |
605 | # CONFIG_REALTEK_PHY is not set | 624 | # CONFIG_REALTEK_PHY is not set |
625 | # CONFIG_NATIONAL_PHY is not set | ||
626 | # CONFIG_STE10XP is not set | ||
627 | # CONFIG_LSI_ET1011C_PHY is not set | ||
606 | # CONFIG_FIXED_PHY is not set | 628 | # CONFIG_FIXED_PHY is not set |
607 | # CONFIG_MDIO_BITBANG is not set | 629 | # CONFIG_MDIO_BITBANG is not set |
608 | # CONFIG_NET_ETHERNET is not set | 630 | # CONFIG_NET_ETHERNET is not set |
@@ -631,6 +653,7 @@ CONFIG_GIANFAR=y | |||
631 | # CONFIG_JME is not set | 653 | # CONFIG_JME is not set |
632 | CONFIG_NETDEV_10000=y | 654 | CONFIG_NETDEV_10000=y |
633 | # CONFIG_CHELSIO_T1 is not set | 655 | # CONFIG_CHELSIO_T1 is not set |
656 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
634 | # CONFIG_CHELSIO_T3 is not set | 657 | # CONFIG_CHELSIO_T3 is not set |
635 | # CONFIG_ENIC is not set | 658 | # CONFIG_ENIC is not set |
636 | # CONFIG_IXGBE is not set | 659 | # CONFIG_IXGBE is not set |
@@ -655,6 +678,10 @@ CONFIG_NETDEV_10000=y | |||
655 | # CONFIG_IWLWIFI_LEDS is not set | 678 | # CONFIG_IWLWIFI_LEDS is not set |
656 | 679 | ||
657 | # | 680 | # |
681 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
682 | # | ||
683 | |||
684 | # | ||
658 | # USB Network Adapters | 685 | # USB Network Adapters |
659 | # | 686 | # |
660 | # CONFIG_USB_CATC is not set | 687 | # CONFIG_USB_CATC is not set |
@@ -712,8 +739,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
712 | # CONFIG_SERIAL_JSM is not set | 739 | # CONFIG_SERIAL_JSM is not set |
713 | # CONFIG_SERIAL_OF_PLATFORM is not set | 740 | # CONFIG_SERIAL_OF_PLATFORM is not set |
714 | CONFIG_UNIX98_PTYS=y | 741 | CONFIG_UNIX98_PTYS=y |
742 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
715 | CONFIG_LEGACY_PTYS=y | 743 | CONFIG_LEGACY_PTYS=y |
716 | CONFIG_LEGACY_PTY_COUNT=256 | 744 | CONFIG_LEGACY_PTY_COUNT=256 |
745 | # CONFIG_HVC_UDBG is not set | ||
717 | # CONFIG_IPMI_HANDLER is not set | 746 | # CONFIG_IPMI_HANDLER is not set |
718 | CONFIG_HW_RANDOM=y | 747 | CONFIG_HW_RANDOM=y |
719 | # CONFIG_NVRAM is not set | 748 | # CONFIG_NVRAM is not set |
@@ -786,7 +815,6 @@ CONFIG_SENSORS_PCF8574=y | |||
786 | # CONFIG_SENSORS_PCF8591 is not set | 815 | # CONFIG_SENSORS_PCF8591 is not set |
787 | # CONFIG_SENSORS_MAX6875 is not set | 816 | # CONFIG_SENSORS_MAX6875 is not set |
788 | # CONFIG_SENSORS_TSL2550 is not set | 817 | # CONFIG_SENSORS_TSL2550 is not set |
789 | # CONFIG_MCU_MPC8349EMITX is not set | ||
790 | # CONFIG_I2C_DEBUG_CORE is not set | 818 | # CONFIG_I2C_DEBUG_CORE is not set |
791 | # CONFIG_I2C_DEBUG_ALGO is not set | 819 | # CONFIG_I2C_DEBUG_ALGO is not set |
792 | # CONFIG_I2C_DEBUG_BUS is not set | 820 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -833,11 +861,11 @@ CONFIG_WATCHDOG=y | |||
833 | # USB-based Watchdog Cards | 861 | # USB-based Watchdog Cards |
834 | # | 862 | # |
835 | # CONFIG_USBPCWATCHDOG is not set | 863 | # CONFIG_USBPCWATCHDOG is not set |
864 | CONFIG_SSB_POSSIBLE=y | ||
836 | 865 | ||
837 | # | 866 | # |
838 | # Sonics Silicon Backplane | 867 | # Sonics Silicon Backplane |
839 | # | 868 | # |
840 | CONFIG_SSB_POSSIBLE=y | ||
841 | # CONFIG_SSB is not set | 869 | # CONFIG_SSB is not set |
842 | 870 | ||
843 | # | 871 | # |
@@ -846,18 +874,13 @@ CONFIG_SSB_POSSIBLE=y | |||
846 | # CONFIG_MFD_CORE is not set | 874 | # CONFIG_MFD_CORE is not set |
847 | # CONFIG_MFD_SM501 is not set | 875 | # CONFIG_MFD_SM501 is not set |
848 | # CONFIG_HTC_PASIC3 is not set | 876 | # CONFIG_HTC_PASIC3 is not set |
877 | # CONFIG_TWL4030_CORE is not set | ||
849 | # CONFIG_MFD_TMIO is not set | 878 | # CONFIG_MFD_TMIO is not set |
850 | # CONFIG_PMIC_DA903X is not set | 879 | # CONFIG_PMIC_DA903X is not set |
851 | # CONFIG_MFD_WM8400 is not set | 880 | # CONFIG_MFD_WM8400 is not set |
852 | # CONFIG_MFD_WM8350_I2C is not set | 881 | # CONFIG_MFD_WM8350_I2C is not set |
853 | 882 | # CONFIG_MFD_PCF50633 is not set | |
854 | # | ||
855 | # Voltage and Current regulators | ||
856 | # | ||
857 | # CONFIG_REGULATOR is not set | 883 | # CONFIG_REGULATOR is not set |
858 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
859 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
860 | # CONFIG_REGULATOR_BQ24022 is not set | ||
861 | 884 | ||
862 | # | 885 | # |
863 | # Multimedia devices | 886 | # Multimedia devices |
@@ -921,6 +944,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
921 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 944 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
922 | CONFIG_USB_EHCI_FSL=y | 945 | CONFIG_USB_EHCI_FSL=y |
923 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 946 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
947 | # CONFIG_USB_OXU210HP_HCD is not set | ||
924 | # CONFIG_USB_ISP116X_HCD is not set | 948 | # CONFIG_USB_ISP116X_HCD is not set |
925 | # CONFIG_USB_ISP1760_HCD is not set | 949 | # CONFIG_USB_ISP1760_HCD is not set |
926 | # CONFIG_USB_OHCI_HCD is not set | 950 | # CONFIG_USB_OHCI_HCD is not set |
@@ -939,18 +963,17 @@ CONFIG_USB_UHCI_HCD=y | |||
939 | # CONFIG_USB_TMC is not set | 963 | # CONFIG_USB_TMC is not set |
940 | 964 | ||
941 | # | 965 | # |
942 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 966 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
943 | # | 967 | # |
944 | 968 | ||
945 | # | 969 | # |
946 | # may also be needed; see USB_STORAGE Help for more information | 970 | # see USB_STORAGE Help for more information |
947 | # | 971 | # |
948 | CONFIG_USB_STORAGE=y | 972 | CONFIG_USB_STORAGE=y |
949 | # CONFIG_USB_STORAGE_DEBUG is not set | 973 | # CONFIG_USB_STORAGE_DEBUG is not set |
950 | # CONFIG_USB_STORAGE_DATAFAB is not set | 974 | # CONFIG_USB_STORAGE_DATAFAB is not set |
951 | # CONFIG_USB_STORAGE_FREECOM is not set | 975 | # CONFIG_USB_STORAGE_FREECOM is not set |
952 | # CONFIG_USB_STORAGE_ISD200 is not set | 976 | # CONFIG_USB_STORAGE_ISD200 is not set |
953 | # CONFIG_USB_STORAGE_DPCM is not set | ||
954 | # CONFIG_USB_STORAGE_USBAT is not set | 977 | # CONFIG_USB_STORAGE_USBAT is not set |
955 | # CONFIG_USB_STORAGE_SDDR09 is not set | 978 | # CONFIG_USB_STORAGE_SDDR09 is not set |
956 | # CONFIG_USB_STORAGE_SDDR55 is not set | 979 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -996,6 +1019,10 @@ CONFIG_USB_STORAGE=y | |||
996 | # CONFIG_USB_ISIGHTFW is not set | 1019 | # CONFIG_USB_ISIGHTFW is not set |
997 | # CONFIG_USB_VST is not set | 1020 | # CONFIG_USB_VST is not set |
998 | # CONFIG_USB_GADGET is not set | 1021 | # CONFIG_USB_GADGET is not set |
1022 | |||
1023 | # | ||
1024 | # OTG and related infrastructure | ||
1025 | # | ||
999 | # CONFIG_UWB is not set | 1026 | # CONFIG_UWB is not set |
1000 | # CONFIG_MMC is not set | 1027 | # CONFIG_MMC is not set |
1001 | # CONFIG_MEMSTICK is not set | 1028 | # CONFIG_MEMSTICK is not set |
@@ -1033,12 +1060,14 @@ CONFIG_RTC_DRV_DS1307=y | |||
1033 | # CONFIG_RTC_DRV_M41T80 is not set | 1060 | # CONFIG_RTC_DRV_M41T80 is not set |
1034 | # CONFIG_RTC_DRV_S35390A is not set | 1061 | # CONFIG_RTC_DRV_S35390A is not set |
1035 | # CONFIG_RTC_DRV_FM3130 is not set | 1062 | # CONFIG_RTC_DRV_FM3130 is not set |
1063 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1036 | 1064 | ||
1037 | # | 1065 | # |
1038 | # SPI RTC drivers | 1066 | # SPI RTC drivers |
1039 | # | 1067 | # |
1040 | # CONFIG_RTC_DRV_M41T94 is not set | 1068 | # CONFIG_RTC_DRV_M41T94 is not set |
1041 | # CONFIG_RTC_DRV_DS1305 is not set | 1069 | # CONFIG_RTC_DRV_DS1305 is not set |
1070 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1042 | # CONFIG_RTC_DRV_MAX6902 is not set | 1071 | # CONFIG_RTC_DRV_MAX6902 is not set |
1043 | # CONFIG_RTC_DRV_R9701 is not set | 1072 | # CONFIG_RTC_DRV_R9701 is not set |
1044 | # CONFIG_RTC_DRV_RS5C348 is not set | 1073 | # CONFIG_RTC_DRV_RS5C348 is not set |
@@ -1086,6 +1115,7 @@ CONFIG_FS_MBCACHE=y | |||
1086 | CONFIG_FILE_LOCKING=y | 1115 | CONFIG_FILE_LOCKING=y |
1087 | # CONFIG_XFS_FS is not set | 1116 | # CONFIG_XFS_FS is not set |
1088 | # CONFIG_OCFS2_FS is not set | 1117 | # CONFIG_OCFS2_FS is not set |
1118 | # CONFIG_BTRFS_FS is not set | ||
1089 | CONFIG_DNOTIFY=y | 1119 | CONFIG_DNOTIFY=y |
1090 | CONFIG_INOTIFY=y | 1120 | CONFIG_INOTIFY=y |
1091 | CONFIG_INOTIFY_USER=y | 1121 | CONFIG_INOTIFY_USER=y |
@@ -1122,10 +1152,7 @@ CONFIG_TMPFS=y | |||
1122 | # CONFIG_TMPFS_POSIX_ACL is not set | 1152 | # CONFIG_TMPFS_POSIX_ACL is not set |
1123 | # CONFIG_HUGETLB_PAGE is not set | 1153 | # CONFIG_HUGETLB_PAGE is not set |
1124 | # CONFIG_CONFIGFS_FS is not set | 1154 | # CONFIG_CONFIGFS_FS is not set |
1125 | 1155 | CONFIG_MISC_FILESYSTEMS=y | |
1126 | # | ||
1127 | # Miscellaneous filesystems | ||
1128 | # | ||
1129 | # CONFIG_ADFS_FS is not set | 1156 | # CONFIG_ADFS_FS is not set |
1130 | # CONFIG_AFFS_FS is not set | 1157 | # CONFIG_AFFS_FS is not set |
1131 | # CONFIG_HFS_FS is not set | 1158 | # CONFIG_HFS_FS is not set |
@@ -1135,6 +1162,7 @@ CONFIG_TMPFS=y | |||
1135 | # CONFIG_EFS_FS is not set | 1162 | # CONFIG_EFS_FS is not set |
1136 | # CONFIG_JFFS2_FS is not set | 1163 | # CONFIG_JFFS2_FS is not set |
1137 | # CONFIG_CRAMFS is not set | 1164 | # CONFIG_CRAMFS is not set |
1165 | # CONFIG_SQUASHFS is not set | ||
1138 | # CONFIG_VXFS_FS is not set | 1166 | # CONFIG_VXFS_FS is not set |
1139 | # CONFIG_MINIX_FS is not set | 1167 | # CONFIG_MINIX_FS is not set |
1140 | # CONFIG_OMFS_FS is not set | 1168 | # CONFIG_OMFS_FS is not set |
@@ -1231,6 +1259,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1231 | # Library routines | 1259 | # Library routines |
1232 | # | 1260 | # |
1233 | CONFIG_BITREVERSE=y | 1261 | CONFIG_BITREVERSE=y |
1262 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1234 | # CONFIG_CRC_CCITT is not set | 1263 | # CONFIG_CRC_CCITT is not set |
1235 | # CONFIG_CRC16 is not set | 1264 | # CONFIG_CRC16 is not set |
1236 | CONFIG_CRC_T10DIF=y | 1265 | CONFIG_CRC_T10DIF=y |
@@ -1264,6 +1293,8 @@ CONFIG_FRAME_WARN=1024 | |||
1264 | # CONFIG_LATENCYTOP is not set | 1293 | # CONFIG_LATENCYTOP is not set |
1265 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1294 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1266 | CONFIG_HAVE_FUNCTION_TRACER=y | 1295 | CONFIG_HAVE_FUNCTION_TRACER=y |
1296 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1297 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1267 | 1298 | ||
1268 | # | 1299 | # |
1269 | # Tracers | 1300 | # Tracers |
@@ -1271,6 +1302,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1271 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1302 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1272 | # CONFIG_SAMPLES is not set | 1303 | # CONFIG_SAMPLES is not set |
1273 | CONFIG_HAVE_ARCH_KGDB=y | 1304 | CONFIG_HAVE_ARCH_KGDB=y |
1305 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1274 | # CONFIG_IRQSTACKS is not set | 1306 | # CONFIG_IRQSTACKS is not set |
1275 | # CONFIG_BOOTX_TEXT is not set | 1307 | # CONFIG_BOOTX_TEXT is not set |
1276 | # CONFIG_PPC_EARLY_DEBUG is not set | 1308 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1289,11 +1321,15 @@ CONFIG_CRYPTO=y | |||
1289 | # | 1321 | # |
1290 | # CONFIG_CRYPTO_FIPS is not set | 1322 | # CONFIG_CRYPTO_FIPS is not set |
1291 | CONFIG_CRYPTO_ALGAPI=y | 1323 | CONFIG_CRYPTO_ALGAPI=y |
1292 | CONFIG_CRYPTO_AEAD=y | 1324 | CONFIG_CRYPTO_ALGAPI2=y |
1325 | CONFIG_CRYPTO_AEAD2=y | ||
1293 | CONFIG_CRYPTO_BLKCIPHER=y | 1326 | CONFIG_CRYPTO_BLKCIPHER=y |
1327 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1294 | CONFIG_CRYPTO_HASH=y | 1328 | CONFIG_CRYPTO_HASH=y |
1295 | CONFIG_CRYPTO_RNG=y | 1329 | CONFIG_CRYPTO_HASH2=y |
1330 | CONFIG_CRYPTO_RNG2=y | ||
1296 | CONFIG_CRYPTO_MANAGER=y | 1331 | CONFIG_CRYPTO_MANAGER=y |
1332 | CONFIG_CRYPTO_MANAGER2=y | ||
1297 | # CONFIG_CRYPTO_GF128MUL is not set | 1333 | # CONFIG_CRYPTO_GF128MUL is not set |
1298 | # CONFIG_CRYPTO_NULL is not set | 1334 | # CONFIG_CRYPTO_NULL is not set |
1299 | # CONFIG_CRYPTO_CRYPTD is not set | 1335 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_mds_defconfig b/arch/powerpc/configs/83xx/mpc834x_mds_defconfig index 728fc95d5870..18e4bc0b3c11 100644 --- a/arch/powerpc/configs/83xx/mpc834x_mds_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:58 2008 | 4 | # Mon Jan 26 15:35:56 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -404,8 +413,10 @@ CONFIG_MISC_DEVICES=y | |||
404 | # CONFIG_EEPROM_93CX6 is not set | 413 | # CONFIG_EEPROM_93CX6 is not set |
405 | # CONFIG_SGI_IOC4 is not set | 414 | # CONFIG_SGI_IOC4 is not set |
406 | # CONFIG_TIFM_CORE is not set | 415 | # CONFIG_TIFM_CORE is not set |
416 | # CONFIG_ICS932S401 is not set | ||
407 | # CONFIG_ENCLOSURE_SERVICES is not set | 417 | # CONFIG_ENCLOSURE_SERVICES is not set |
408 | # CONFIG_HP_ILO is not set | 418 | # CONFIG_HP_ILO is not set |
419 | # CONFIG_C2PORT is not set | ||
409 | CONFIG_HAVE_IDE=y | 420 | CONFIG_HAVE_IDE=y |
410 | # CONFIG_IDE is not set | 421 | # CONFIG_IDE is not set |
411 | 422 | ||
@@ -454,6 +465,9 @@ CONFIG_MARVELL_PHY=y | |||
454 | # CONFIG_BROADCOM_PHY is not set | 465 | # CONFIG_BROADCOM_PHY is not set |
455 | # CONFIG_ICPLUS_PHY is not set | 466 | # CONFIG_ICPLUS_PHY is not set |
456 | # CONFIG_REALTEK_PHY is not set | 467 | # CONFIG_REALTEK_PHY is not set |
468 | # CONFIG_NATIONAL_PHY is not set | ||
469 | # CONFIG_STE10XP is not set | ||
470 | # CONFIG_LSI_ET1011C_PHY is not set | ||
457 | # CONFIG_FIXED_PHY is not set | 471 | # CONFIG_FIXED_PHY is not set |
458 | # CONFIG_MDIO_BITBANG is not set | 472 | # CONFIG_MDIO_BITBANG is not set |
459 | CONFIG_NET_ETHERNET=y | 473 | CONFIG_NET_ETHERNET=y |
@@ -477,7 +491,6 @@ CONFIG_NET_PCI=y | |||
477 | # CONFIG_ADAPTEC_STARFIRE is not set | 491 | # CONFIG_ADAPTEC_STARFIRE is not set |
478 | # CONFIG_B44 is not set | 492 | # CONFIG_B44 is not set |
479 | # CONFIG_FORCEDETH is not set | 493 | # CONFIG_FORCEDETH is not set |
480 | # CONFIG_EEPRO100 is not set | ||
481 | CONFIG_E100=y | 494 | CONFIG_E100=y |
482 | # CONFIG_FEALNX is not set | 495 | # CONFIG_FEALNX is not set |
483 | # CONFIG_NATSEMI is not set | 496 | # CONFIG_NATSEMI is not set |
@@ -487,6 +500,7 @@ CONFIG_E100=y | |||
487 | # CONFIG_R6040 is not set | 500 | # CONFIG_R6040 is not set |
488 | # CONFIG_SIS900 is not set | 501 | # CONFIG_SIS900 is not set |
489 | # CONFIG_EPIC100 is not set | 502 | # CONFIG_EPIC100 is not set |
503 | # CONFIG_SMSC9420 is not set | ||
490 | # CONFIG_SUNDANCE is not set | 504 | # CONFIG_SUNDANCE is not set |
491 | # CONFIG_TLAN is not set | 505 | # CONFIG_TLAN is not set |
492 | # CONFIG_VIA_RHINE is not set | 506 | # CONFIG_VIA_RHINE is not set |
@@ -517,6 +531,7 @@ CONFIG_GIANFAR=y | |||
517 | # CONFIG_JME is not set | 531 | # CONFIG_JME is not set |
518 | CONFIG_NETDEV_10000=y | 532 | CONFIG_NETDEV_10000=y |
519 | # CONFIG_CHELSIO_T1 is not set | 533 | # CONFIG_CHELSIO_T1 is not set |
534 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
520 | # CONFIG_CHELSIO_T3 is not set | 535 | # CONFIG_CHELSIO_T3 is not set |
521 | # CONFIG_ENIC is not set | 536 | # CONFIG_ENIC is not set |
522 | # CONFIG_IXGBE is not set | 537 | # CONFIG_IXGBE is not set |
@@ -539,6 +554,10 @@ CONFIG_NETDEV_10000=y | |||
539 | # CONFIG_WLAN_PRE80211 is not set | 554 | # CONFIG_WLAN_PRE80211 is not set |
540 | # CONFIG_WLAN_80211 is not set | 555 | # CONFIG_WLAN_80211 is not set |
541 | # CONFIG_IWLWIFI_LEDS is not set | 556 | # CONFIG_IWLWIFI_LEDS is not set |
557 | |||
558 | # | ||
559 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
560 | # | ||
542 | # CONFIG_WAN is not set | 561 | # CONFIG_WAN is not set |
543 | # CONFIG_FDDI is not set | 562 | # CONFIG_FDDI is not set |
544 | # CONFIG_HIPPI is not set | 563 | # CONFIG_HIPPI is not set |
@@ -608,8 +627,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
608 | # CONFIG_SERIAL_JSM is not set | 627 | # CONFIG_SERIAL_JSM is not set |
609 | # CONFIG_SERIAL_OF_PLATFORM is not set | 628 | # CONFIG_SERIAL_OF_PLATFORM is not set |
610 | CONFIG_UNIX98_PTYS=y | 629 | CONFIG_UNIX98_PTYS=y |
630 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
611 | CONFIG_LEGACY_PTYS=y | 631 | CONFIG_LEGACY_PTYS=y |
612 | CONFIG_LEGACY_PTY_COUNT=256 | 632 | CONFIG_LEGACY_PTY_COUNT=256 |
633 | # CONFIG_HVC_UDBG is not set | ||
613 | # CONFIG_IPMI_HANDLER is not set | 634 | # CONFIG_IPMI_HANDLER is not set |
614 | # CONFIG_HW_RANDOM is not set | 635 | # CONFIG_HW_RANDOM is not set |
615 | # CONFIG_NVRAM is not set | 636 | # CONFIG_NVRAM is not set |
@@ -681,7 +702,6 @@ CONFIG_I2C_MPC=y | |||
681 | # CONFIG_SENSORS_PCF8591 is not set | 702 | # CONFIG_SENSORS_PCF8591 is not set |
682 | # CONFIG_SENSORS_MAX6875 is not set | 703 | # CONFIG_SENSORS_MAX6875 is not set |
683 | # CONFIG_SENSORS_TSL2550 is not set | 704 | # CONFIG_SENSORS_TSL2550 is not set |
684 | # CONFIG_MCU_MPC8349EMITX is not set | ||
685 | # CONFIG_I2C_DEBUG_CORE is not set | 705 | # CONFIG_I2C_DEBUG_CORE is not set |
686 | # CONFIG_I2C_DEBUG_ALGO is not set | 706 | # CONFIG_I2C_DEBUG_ALGO is not set |
687 | # CONFIG_I2C_DEBUG_BUS is not set | 707 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -701,8 +721,10 @@ CONFIG_HWMON=y | |||
701 | # CONFIG_SENSORS_ADM1029 is not set | 721 | # CONFIG_SENSORS_ADM1029 is not set |
702 | # CONFIG_SENSORS_ADM1031 is not set | 722 | # CONFIG_SENSORS_ADM1031 is not set |
703 | # CONFIG_SENSORS_ADM9240 is not set | 723 | # CONFIG_SENSORS_ADM9240 is not set |
724 | # CONFIG_SENSORS_ADT7462 is not set | ||
704 | # CONFIG_SENSORS_ADT7470 is not set | 725 | # CONFIG_SENSORS_ADT7470 is not set |
705 | # CONFIG_SENSORS_ADT7473 is not set | 726 | # CONFIG_SENSORS_ADT7473 is not set |
727 | # CONFIG_SENSORS_ADT7475 is not set | ||
706 | # CONFIG_SENSORS_ATXP1 is not set | 728 | # CONFIG_SENSORS_ATXP1 is not set |
707 | # CONFIG_SENSORS_DS1621 is not set | 729 | # CONFIG_SENSORS_DS1621 is not set |
708 | # CONFIG_SENSORS_I5K_AMB is not set | 730 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -723,6 +745,7 @@ CONFIG_HWMON=y | |||
723 | # CONFIG_SENSORS_LM90 is not set | 745 | # CONFIG_SENSORS_LM90 is not set |
724 | # CONFIG_SENSORS_LM92 is not set | 746 | # CONFIG_SENSORS_LM92 is not set |
725 | # CONFIG_SENSORS_LM93 is not set | 747 | # CONFIG_SENSORS_LM93 is not set |
748 | # CONFIG_SENSORS_LTC4245 is not set | ||
726 | # CONFIG_SENSORS_MAX1619 is not set | 749 | # CONFIG_SENSORS_MAX1619 is not set |
727 | # CONFIG_SENSORS_MAX6650 is not set | 750 | # CONFIG_SENSORS_MAX6650 is not set |
728 | # CONFIG_SENSORS_PC87360 is not set | 751 | # CONFIG_SENSORS_PC87360 is not set |
@@ -763,11 +786,11 @@ CONFIG_WATCHDOG=y | |||
763 | # | 786 | # |
764 | # CONFIG_PCIPCWATCHDOG is not set | 787 | # CONFIG_PCIPCWATCHDOG is not set |
765 | # CONFIG_WDTPCI is not set | 788 | # CONFIG_WDTPCI is not set |
789 | CONFIG_SSB_POSSIBLE=y | ||
766 | 790 | ||
767 | # | 791 | # |
768 | # Sonics Silicon Backplane | 792 | # Sonics Silicon Backplane |
769 | # | 793 | # |
770 | CONFIG_SSB_POSSIBLE=y | ||
771 | # CONFIG_SSB is not set | 794 | # CONFIG_SSB is not set |
772 | 795 | ||
773 | # | 796 | # |
@@ -776,18 +799,13 @@ CONFIG_SSB_POSSIBLE=y | |||
776 | # CONFIG_MFD_CORE is not set | 799 | # CONFIG_MFD_CORE is not set |
777 | # CONFIG_MFD_SM501 is not set | 800 | # CONFIG_MFD_SM501 is not set |
778 | # CONFIG_HTC_PASIC3 is not set | 801 | # CONFIG_HTC_PASIC3 is not set |
802 | # CONFIG_TWL4030_CORE is not set | ||
779 | # CONFIG_MFD_TMIO is not set | 803 | # CONFIG_MFD_TMIO is not set |
780 | # CONFIG_PMIC_DA903X is not set | 804 | # CONFIG_PMIC_DA903X is not set |
781 | # CONFIG_MFD_WM8400 is not set | 805 | # CONFIG_MFD_WM8400 is not set |
782 | # CONFIG_MFD_WM8350_I2C is not set | 806 | # CONFIG_MFD_WM8350_I2C is not set |
783 | 807 | # CONFIG_MFD_PCF50633 is not set | |
784 | # | ||
785 | # Voltage and Current regulators | ||
786 | # | ||
787 | # CONFIG_REGULATOR is not set | 808 | # CONFIG_REGULATOR is not set |
788 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
789 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
790 | # CONFIG_REGULATOR_BQ24022 is not set | ||
791 | 809 | ||
792 | # | 810 | # |
793 | # Multimedia devices | 811 | # Multimedia devices |
@@ -843,9 +861,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
843 | # | 861 | # |
844 | 862 | ||
845 | # | 863 | # |
846 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 864 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
847 | # | 865 | # |
848 | # CONFIG_USB_GADGET is not set | 866 | # CONFIG_USB_GADGET is not set |
867 | |||
868 | # | ||
869 | # OTG and related infrastructure | ||
870 | # | ||
849 | # CONFIG_UWB is not set | 871 | # CONFIG_UWB is not set |
850 | # CONFIG_MMC is not set | 872 | # CONFIG_MMC is not set |
851 | # CONFIG_MEMSTICK is not set | 873 | # CONFIG_MEMSTICK is not set |
@@ -883,6 +905,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
883 | # CONFIG_RTC_DRV_M41T80 is not set | 905 | # CONFIG_RTC_DRV_M41T80 is not set |
884 | # CONFIG_RTC_DRV_S35390A is not set | 906 | # CONFIG_RTC_DRV_S35390A is not set |
885 | # CONFIG_RTC_DRV_FM3130 is not set | 907 | # CONFIG_RTC_DRV_FM3130 is not set |
908 | # CONFIG_RTC_DRV_RX8581 is not set | ||
886 | 909 | ||
887 | # | 910 | # |
888 | # SPI RTC drivers | 911 | # SPI RTC drivers |
@@ -930,6 +953,7 @@ CONFIG_FS_MBCACHE=y | |||
930 | CONFIG_FILE_LOCKING=y | 953 | CONFIG_FILE_LOCKING=y |
931 | # CONFIG_XFS_FS is not set | 954 | # CONFIG_XFS_FS is not set |
932 | # CONFIG_OCFS2_FS is not set | 955 | # CONFIG_OCFS2_FS is not set |
956 | # CONFIG_BTRFS_FS is not set | ||
933 | CONFIG_DNOTIFY=y | 957 | CONFIG_DNOTIFY=y |
934 | CONFIG_INOTIFY=y | 958 | CONFIG_INOTIFY=y |
935 | CONFIG_INOTIFY_USER=y | 959 | CONFIG_INOTIFY_USER=y |
@@ -963,10 +987,7 @@ CONFIG_TMPFS=y | |||
963 | # CONFIG_TMPFS_POSIX_ACL is not set | 987 | # CONFIG_TMPFS_POSIX_ACL is not set |
964 | # CONFIG_HUGETLB_PAGE is not set | 988 | # CONFIG_HUGETLB_PAGE is not set |
965 | # CONFIG_CONFIGFS_FS is not set | 989 | # CONFIG_CONFIGFS_FS is not set |
966 | 990 | CONFIG_MISC_FILESYSTEMS=y | |
967 | # | ||
968 | # Miscellaneous filesystems | ||
969 | # | ||
970 | # CONFIG_ADFS_FS is not set | 991 | # CONFIG_ADFS_FS is not set |
971 | # CONFIG_AFFS_FS is not set | 992 | # CONFIG_AFFS_FS is not set |
972 | # CONFIG_HFS_FS is not set | 993 | # CONFIG_HFS_FS is not set |
@@ -975,6 +996,7 @@ CONFIG_TMPFS=y | |||
975 | # CONFIG_BFS_FS is not set | 996 | # CONFIG_BFS_FS is not set |
976 | # CONFIG_EFS_FS is not set | 997 | # CONFIG_EFS_FS is not set |
977 | # CONFIG_CRAMFS is not set | 998 | # CONFIG_CRAMFS is not set |
999 | # CONFIG_SQUASHFS is not set | ||
978 | # CONFIG_VXFS_FS is not set | 1000 | # CONFIG_VXFS_FS is not set |
979 | # CONFIG_MINIX_FS is not set | 1001 | # CONFIG_MINIX_FS is not set |
980 | # CONFIG_OMFS_FS is not set | 1002 | # CONFIG_OMFS_FS is not set |
@@ -1028,6 +1050,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1028 | # Library routines | 1050 | # Library routines |
1029 | # | 1051 | # |
1030 | CONFIG_BITREVERSE=y | 1052 | CONFIG_BITREVERSE=y |
1053 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1031 | # CONFIG_CRC_CCITT is not set | 1054 | # CONFIG_CRC_CCITT is not set |
1032 | # CONFIG_CRC16 is not set | 1055 | # CONFIG_CRC16 is not set |
1033 | # CONFIG_CRC_T10DIF is not set | 1056 | # CONFIG_CRC_T10DIF is not set |
@@ -1061,6 +1084,8 @@ CONFIG_FRAME_WARN=1024 | |||
1061 | # CONFIG_LATENCYTOP is not set | 1084 | # CONFIG_LATENCYTOP is not set |
1062 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1085 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1063 | CONFIG_HAVE_FUNCTION_TRACER=y | 1086 | CONFIG_HAVE_FUNCTION_TRACER=y |
1087 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1088 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1064 | 1089 | ||
1065 | # | 1090 | # |
1066 | # Tracers | 1091 | # Tracers |
@@ -1068,6 +1093,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1068 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1093 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1069 | # CONFIG_SAMPLES is not set | 1094 | # CONFIG_SAMPLES is not set |
1070 | CONFIG_HAVE_ARCH_KGDB=y | 1095 | CONFIG_HAVE_ARCH_KGDB=y |
1096 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1071 | # CONFIG_IRQSTACKS is not set | 1097 | # CONFIG_IRQSTACKS is not set |
1072 | # CONFIG_BOOTX_TEXT is not set | 1098 | # CONFIG_BOOTX_TEXT is not set |
1073 | # CONFIG_PPC_EARLY_DEBUG is not set | 1099 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1086,11 +1112,15 @@ CONFIG_CRYPTO=y | |||
1086 | # | 1112 | # |
1087 | # CONFIG_CRYPTO_FIPS is not set | 1113 | # CONFIG_CRYPTO_FIPS is not set |
1088 | CONFIG_CRYPTO_ALGAPI=y | 1114 | CONFIG_CRYPTO_ALGAPI=y |
1089 | CONFIG_CRYPTO_AEAD=y | 1115 | CONFIG_CRYPTO_ALGAPI2=y |
1116 | CONFIG_CRYPTO_AEAD2=y | ||
1090 | CONFIG_CRYPTO_BLKCIPHER=y | 1117 | CONFIG_CRYPTO_BLKCIPHER=y |
1118 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1091 | CONFIG_CRYPTO_HASH=y | 1119 | CONFIG_CRYPTO_HASH=y |
1092 | CONFIG_CRYPTO_RNG=y | 1120 | CONFIG_CRYPTO_HASH2=y |
1121 | CONFIG_CRYPTO_RNG2=y | ||
1093 | CONFIG_CRYPTO_MANAGER=y | 1122 | CONFIG_CRYPTO_MANAGER=y |
1123 | CONFIG_CRYPTO_MANAGER2=y | ||
1094 | # CONFIG_CRYPTO_GF128MUL is not set | 1124 | # CONFIG_CRYPTO_GF128MUL is not set |
1095 | # CONFIG_CRYPTO_NULL is not set | 1125 | # CONFIG_CRYPTO_NULL is not set |
1096 | # CONFIG_CRYPTO_CRYPTD is not set | 1126 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc836x_mds_defconfig b/arch/powerpc/configs/83xx/mpc836x_mds_defconfig index f7546e7cb762..76db8138eac7 100644 --- a/arch/powerpc/configs/83xx/mpc836x_mds_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:59 2008 | 4 | # Mon Jan 26 15:35:58 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +122,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 127 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +129,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 130 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 133 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 137 | ||
@@ -152,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
156 | 156 | ||
157 | # | 157 | # |
@@ -197,6 +197,8 @@ CONFIG_IPIC=y | |||
197 | CONFIG_QUICC_ENGINE=y | 197 | CONFIG_QUICC_ENGINE=y |
198 | # CONFIG_QE_GPIO is not set | 198 | # CONFIG_QE_GPIO is not set |
199 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
200 | # CONFIG_SIMPLE_GPIO is not set | ||
201 | # CONFIG_MCU_MPC8349EMITX is not set | ||
200 | 202 | ||
201 | # | 203 | # |
202 | # Kernel options | 204 | # Kernel options |
@@ -224,6 +226,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
224 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 226 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
225 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
226 | # CONFIG_KEXEC is not set | 228 | # CONFIG_KEXEC is not set |
229 | # CONFIG_CRASH_DUMP is not set | ||
227 | CONFIG_ARCH_FLATMEM_ENABLE=y | 230 | CONFIG_ARCH_FLATMEM_ENABLE=y |
228 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 231 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
229 | CONFIG_SELECT_MEMORY_MODEL=y | 232 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -235,12 +238,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
235 | CONFIG_PAGEFLAGS_EXTENDED=y | 238 | CONFIG_PAGEFLAGS_EXTENDED=y |
236 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 239 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
237 | CONFIG_MIGRATION=y | 240 | CONFIG_MIGRATION=y |
238 | # CONFIG_RESOURCES_64BIT is not set | ||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 241 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=1 | 242 | CONFIG_ZONE_DMA_FLAG=1 |
241 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
246 | CONFIG_PPC_4K_PAGES=y | ||
247 | # CONFIG_PPC_16K_PAGES is not set | ||
248 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 250 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
@@ -265,6 +270,7 @@ CONFIG_PCI_SYSCALL=y | |||
265 | CONFIG_ARCH_SUPPORTS_MSI=y | 270 | CONFIG_ARCH_SUPPORTS_MSI=y |
266 | # CONFIG_PCI_MSI is not set | 271 | # CONFIG_PCI_MSI is not set |
267 | # CONFIG_PCI_LEGACY is not set | 272 | # CONFIG_PCI_LEGACY is not set |
273 | # CONFIG_PCI_STUB is not set | ||
268 | # CONFIG_PCCARD is not set | 274 | # CONFIG_PCCARD is not set |
269 | # CONFIG_HOTPLUG_PCI is not set | 275 | # CONFIG_HOTPLUG_PCI is not set |
270 | # CONFIG_HAS_RAPIDIO is not set | 276 | # CONFIG_HAS_RAPIDIO is not set |
@@ -287,6 +293,7 @@ CONFIG_NET=y | |||
287 | # | 293 | # |
288 | # Networking options | 294 | # Networking options |
289 | # | 295 | # |
296 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
290 | CONFIG_PACKET=y | 297 | CONFIG_PACKET=y |
291 | # CONFIG_PACKET_MMAP is not set | 298 | # CONFIG_PACKET_MMAP is not set |
292 | CONFIG_UNIX=y | 299 | CONFIG_UNIX=y |
@@ -343,6 +350,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_ECONET is not set | 350 | # CONFIG_ECONET is not set |
344 | # CONFIG_WAN_ROUTER is not set | 351 | # CONFIG_WAN_ROUTER is not set |
345 | # CONFIG_NET_SCHED is not set | 352 | # CONFIG_NET_SCHED is not set |
353 | # CONFIG_DCB is not set | ||
346 | 354 | ||
347 | # | 355 | # |
348 | # Network testing | 356 | # Network testing |
@@ -358,8 +366,9 @@ CONFIG_WIRELESS=y | |||
358 | # CONFIG_CFG80211 is not set | 366 | # CONFIG_CFG80211 is not set |
359 | CONFIG_WIRELESS_OLD_REGULATORY=y | 367 | CONFIG_WIRELESS_OLD_REGULATORY=y |
360 | # CONFIG_WIRELESS_EXT is not set | 368 | # CONFIG_WIRELESS_EXT is not set |
369 | # CONFIG_LIB80211 is not set | ||
361 | # CONFIG_MAC80211 is not set | 370 | # CONFIG_MAC80211 is not set |
362 | # CONFIG_IEEE80211 is not set | 371 | # CONFIG_WIMAX is not set |
363 | # CONFIG_RFKILL is not set | 372 | # CONFIG_RFKILL is not set |
364 | # CONFIG_NET_9P is not set | 373 | # CONFIG_NET_9P is not set |
365 | 374 | ||
@@ -380,6 +389,7 @@ CONFIG_MTD=y | |||
380 | # CONFIG_MTD_DEBUG is not set | 389 | # CONFIG_MTD_DEBUG is not set |
381 | # CONFIG_MTD_CONCAT is not set | 390 | # CONFIG_MTD_CONCAT is not set |
382 | CONFIG_MTD_PARTITIONS=y | 391 | CONFIG_MTD_PARTITIONS=y |
392 | # CONFIG_MTD_TESTS is not set | ||
383 | # CONFIG_MTD_REDBOOT_PARTS is not set | 393 | # CONFIG_MTD_REDBOOT_PARTS is not set |
384 | CONFIG_MTD_CMDLINE_PARTS=y | 394 | CONFIG_MTD_CMDLINE_PARTS=y |
385 | # CONFIG_MTD_OF_PARTS is not set | 395 | # CONFIG_MTD_OF_PARTS is not set |
@@ -451,6 +461,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
451 | # CONFIG_MTD_ONENAND is not set | 461 | # CONFIG_MTD_ONENAND is not set |
452 | 462 | ||
453 | # | 463 | # |
464 | # LPDDR flash memory drivers | ||
465 | # | ||
466 | # CONFIG_MTD_LPDDR is not set | ||
467 | # CONFIG_MTD_QINFO_PROBE is not set | ||
468 | |||
469 | # | ||
454 | # UBI - Unsorted block images | 470 | # UBI - Unsorted block images |
455 | # | 471 | # |
456 | # CONFIG_MTD_UBI is not set | 472 | # CONFIG_MTD_UBI is not set |
@@ -480,8 +496,10 @@ CONFIG_MISC_DEVICES=y | |||
480 | # CONFIG_EEPROM_93CX6 is not set | 496 | # CONFIG_EEPROM_93CX6 is not set |
481 | # CONFIG_SGI_IOC4 is not set | 497 | # CONFIG_SGI_IOC4 is not set |
482 | # CONFIG_TIFM_CORE is not set | 498 | # CONFIG_TIFM_CORE is not set |
499 | # CONFIG_ICS932S401 is not set | ||
483 | # CONFIG_ENCLOSURE_SERVICES is not set | 500 | # CONFIG_ENCLOSURE_SERVICES is not set |
484 | # CONFIG_HP_ILO is not set | 501 | # CONFIG_HP_ILO is not set |
502 | # CONFIG_C2PORT is not set | ||
485 | CONFIG_HAVE_IDE=y | 503 | CONFIG_HAVE_IDE=y |
486 | # CONFIG_IDE is not set | 504 | # CONFIG_IDE is not set |
487 | 505 | ||
@@ -524,6 +542,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
524 | # CONFIG_SCSI_SRP_ATTRS is not set | 542 | # CONFIG_SCSI_SRP_ATTRS is not set |
525 | CONFIG_SCSI_LOWLEVEL=y | 543 | CONFIG_SCSI_LOWLEVEL=y |
526 | # CONFIG_ISCSI_TCP is not set | 544 | # CONFIG_ISCSI_TCP is not set |
545 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
527 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 546 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
528 | # CONFIG_SCSI_3W_9XXX is not set | 547 | # CONFIG_SCSI_3W_9XXX is not set |
529 | # CONFIG_SCSI_ACARD is not set | 548 | # CONFIG_SCSI_ACARD is not set |
@@ -540,6 +559,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
540 | # CONFIG_MEGARAID_SAS is not set | 559 | # CONFIG_MEGARAID_SAS is not set |
541 | # CONFIG_SCSI_HPTIOP is not set | 560 | # CONFIG_SCSI_HPTIOP is not set |
542 | # CONFIG_SCSI_BUSLOGIC is not set | 561 | # CONFIG_SCSI_BUSLOGIC is not set |
562 | # CONFIG_LIBFC is not set | ||
563 | # CONFIG_FCOE is not set | ||
543 | # CONFIG_SCSI_DMX3191D is not set | 564 | # CONFIG_SCSI_DMX3191D is not set |
544 | # CONFIG_SCSI_EATA is not set | 565 | # CONFIG_SCSI_EATA is not set |
545 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 566 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -598,6 +619,9 @@ CONFIG_MARVELL_PHY=y | |||
598 | # CONFIG_BROADCOM_PHY is not set | 619 | # CONFIG_BROADCOM_PHY is not set |
599 | # CONFIG_ICPLUS_PHY is not set | 620 | # CONFIG_ICPLUS_PHY is not set |
600 | # CONFIG_REALTEK_PHY is not set | 621 | # CONFIG_REALTEK_PHY is not set |
622 | # CONFIG_NATIONAL_PHY is not set | ||
623 | # CONFIG_STE10XP is not set | ||
624 | # CONFIG_LSI_ET1011C_PHY is not set | ||
601 | # CONFIG_FIXED_PHY is not set | 625 | # CONFIG_FIXED_PHY is not set |
602 | # CONFIG_MDIO_BITBANG is not set | 626 | # CONFIG_MDIO_BITBANG is not set |
603 | CONFIG_NET_ETHERNET=y | 627 | CONFIG_NET_ETHERNET=y |
@@ -638,7 +662,6 @@ CONFIG_NETDEV_1000=y | |||
638 | # CONFIG_GIANFAR is not set | 662 | # CONFIG_GIANFAR is not set |
639 | CONFIG_UCC_GETH=y | 663 | CONFIG_UCC_GETH=y |
640 | # CONFIG_UGETH_MAGIC_PACKET is not set | 664 | # CONFIG_UGETH_MAGIC_PACKET is not set |
641 | # CONFIG_UGETH_FILTERING is not set | ||
642 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 665 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
643 | # CONFIG_MV643XX_ETH is not set | 666 | # CONFIG_MV643XX_ETH is not set |
644 | # CONFIG_QLA3XXX is not set | 667 | # CONFIG_QLA3XXX is not set |
@@ -647,6 +670,7 @@ CONFIG_UCC_GETH=y | |||
647 | # CONFIG_JME is not set | 670 | # CONFIG_JME is not set |
648 | CONFIG_NETDEV_10000=y | 671 | CONFIG_NETDEV_10000=y |
649 | # CONFIG_CHELSIO_T1 is not set | 672 | # CONFIG_CHELSIO_T1 is not set |
673 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
650 | # CONFIG_CHELSIO_T3 is not set | 674 | # CONFIG_CHELSIO_T3 is not set |
651 | # CONFIG_ENIC is not set | 675 | # CONFIG_ENIC is not set |
652 | # CONFIG_IXGBE is not set | 676 | # CONFIG_IXGBE is not set |
@@ -669,6 +693,10 @@ CONFIG_NETDEV_10000=y | |||
669 | # CONFIG_WLAN_PRE80211 is not set | 693 | # CONFIG_WLAN_PRE80211 is not set |
670 | # CONFIG_WLAN_80211 is not set | 694 | # CONFIG_WLAN_80211 is not set |
671 | # CONFIG_IWLWIFI_LEDS is not set | 695 | # CONFIG_IWLWIFI_LEDS is not set |
696 | |||
697 | # | ||
698 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
699 | # | ||
672 | # CONFIG_WAN is not set | 700 | # CONFIG_WAN is not set |
673 | # CONFIG_FDDI is not set | 701 | # CONFIG_FDDI is not set |
674 | # CONFIG_HIPPI is not set | 702 | # CONFIG_HIPPI is not set |
@@ -740,8 +768,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
740 | # CONFIG_SERIAL_OF_PLATFORM is not set | 768 | # CONFIG_SERIAL_OF_PLATFORM is not set |
741 | # CONFIG_SERIAL_QE is not set | 769 | # CONFIG_SERIAL_QE is not set |
742 | CONFIG_UNIX98_PTYS=y | 770 | CONFIG_UNIX98_PTYS=y |
771 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
743 | CONFIG_LEGACY_PTYS=y | 772 | CONFIG_LEGACY_PTYS=y |
744 | CONFIG_LEGACY_PTY_COUNT=256 | 773 | CONFIG_LEGACY_PTY_COUNT=256 |
774 | # CONFIG_HVC_UDBG is not set | ||
745 | # CONFIG_IPMI_HANDLER is not set | 775 | # CONFIG_IPMI_HANDLER is not set |
746 | CONFIG_HW_RANDOM=y | 776 | CONFIG_HW_RANDOM=y |
747 | # CONFIG_NVRAM is not set | 777 | # CONFIG_NVRAM is not set |
@@ -813,7 +843,6 @@ CONFIG_I2C_MPC=y | |||
813 | # CONFIG_SENSORS_PCF8591 is not set | 843 | # CONFIG_SENSORS_PCF8591 is not set |
814 | # CONFIG_SENSORS_MAX6875 is not set | 844 | # CONFIG_SENSORS_MAX6875 is not set |
815 | # CONFIG_SENSORS_TSL2550 is not set | 845 | # CONFIG_SENSORS_TSL2550 is not set |
816 | # CONFIG_MCU_MPC8349EMITX is not set | ||
817 | # CONFIG_I2C_DEBUG_CORE is not set | 846 | # CONFIG_I2C_DEBUG_CORE is not set |
818 | # CONFIG_I2C_DEBUG_ALGO is not set | 847 | # CONFIG_I2C_DEBUG_ALGO is not set |
819 | # CONFIG_I2C_DEBUG_BUS is not set | 848 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -833,8 +862,10 @@ CONFIG_HWMON=y | |||
833 | # CONFIG_SENSORS_ADM1029 is not set | 862 | # CONFIG_SENSORS_ADM1029 is not set |
834 | # CONFIG_SENSORS_ADM1031 is not set | 863 | # CONFIG_SENSORS_ADM1031 is not set |
835 | # CONFIG_SENSORS_ADM9240 is not set | 864 | # CONFIG_SENSORS_ADM9240 is not set |
865 | # CONFIG_SENSORS_ADT7462 is not set | ||
836 | # CONFIG_SENSORS_ADT7470 is not set | 866 | # CONFIG_SENSORS_ADT7470 is not set |
837 | # CONFIG_SENSORS_ADT7473 is not set | 867 | # CONFIG_SENSORS_ADT7473 is not set |
868 | # CONFIG_SENSORS_ADT7475 is not set | ||
838 | # CONFIG_SENSORS_ATXP1 is not set | 869 | # CONFIG_SENSORS_ATXP1 is not set |
839 | # CONFIG_SENSORS_DS1621 is not set | 870 | # CONFIG_SENSORS_DS1621 is not set |
840 | # CONFIG_SENSORS_I5K_AMB is not set | 871 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -855,6 +886,7 @@ CONFIG_HWMON=y | |||
855 | # CONFIG_SENSORS_LM90 is not set | 886 | # CONFIG_SENSORS_LM90 is not set |
856 | # CONFIG_SENSORS_LM92 is not set | 887 | # CONFIG_SENSORS_LM92 is not set |
857 | # CONFIG_SENSORS_LM93 is not set | 888 | # CONFIG_SENSORS_LM93 is not set |
889 | # CONFIG_SENSORS_LTC4245 is not set | ||
858 | # CONFIG_SENSORS_MAX1619 is not set | 890 | # CONFIG_SENSORS_MAX1619 is not set |
859 | # CONFIG_SENSORS_MAX6650 is not set | 891 | # CONFIG_SENSORS_MAX6650 is not set |
860 | # CONFIG_SENSORS_PC87360 is not set | 892 | # CONFIG_SENSORS_PC87360 is not set |
@@ -895,11 +927,11 @@ CONFIG_WATCHDOG=y | |||
895 | # | 927 | # |
896 | # CONFIG_PCIPCWATCHDOG is not set | 928 | # CONFIG_PCIPCWATCHDOG is not set |
897 | # CONFIG_WDTPCI is not set | 929 | # CONFIG_WDTPCI is not set |
930 | CONFIG_SSB_POSSIBLE=y | ||
898 | 931 | ||
899 | # | 932 | # |
900 | # Sonics Silicon Backplane | 933 | # Sonics Silicon Backplane |
901 | # | 934 | # |
902 | CONFIG_SSB_POSSIBLE=y | ||
903 | # CONFIG_SSB is not set | 935 | # CONFIG_SSB is not set |
904 | 936 | ||
905 | # | 937 | # |
@@ -908,18 +940,13 @@ CONFIG_SSB_POSSIBLE=y | |||
908 | # CONFIG_MFD_CORE is not set | 940 | # CONFIG_MFD_CORE is not set |
909 | # CONFIG_MFD_SM501 is not set | 941 | # CONFIG_MFD_SM501 is not set |
910 | # CONFIG_HTC_PASIC3 is not set | 942 | # CONFIG_HTC_PASIC3 is not set |
943 | # CONFIG_TWL4030_CORE is not set | ||
911 | # CONFIG_MFD_TMIO is not set | 944 | # CONFIG_MFD_TMIO is not set |
912 | # CONFIG_PMIC_DA903X is not set | 945 | # CONFIG_PMIC_DA903X is not set |
913 | # CONFIG_MFD_WM8400 is not set | 946 | # CONFIG_MFD_WM8400 is not set |
914 | # CONFIG_MFD_WM8350_I2C is not set | 947 | # CONFIG_MFD_WM8350_I2C is not set |
915 | 948 | # CONFIG_MFD_PCF50633 is not set | |
916 | # | ||
917 | # Voltage and Current regulators | ||
918 | # | ||
919 | # CONFIG_REGULATOR is not set | 949 | # CONFIG_REGULATOR is not set |
920 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
921 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
922 | # CONFIG_REGULATOR_BQ24022 is not set | ||
923 | 950 | ||
924 | # | 951 | # |
925 | # Multimedia devices | 952 | # Multimedia devices |
@@ -975,9 +1002,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
975 | # | 1002 | # |
976 | 1003 | ||
977 | # | 1004 | # |
978 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
979 | # | 1006 | # |
980 | # CONFIG_USB_GADGET is not set | 1007 | # CONFIG_USB_GADGET is not set |
1008 | |||
1009 | # | ||
1010 | # OTG and related infrastructure | ||
1011 | # | ||
981 | # CONFIG_UWB is not set | 1012 | # CONFIG_UWB is not set |
982 | # CONFIG_MMC is not set | 1013 | # CONFIG_MMC is not set |
983 | # CONFIG_MEMSTICK is not set | 1014 | # CONFIG_MEMSTICK is not set |
@@ -1015,6 +1046,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
1015 | # CONFIG_RTC_DRV_M41T80 is not set | 1046 | # CONFIG_RTC_DRV_M41T80 is not set |
1016 | # CONFIG_RTC_DRV_S35390A is not set | 1047 | # CONFIG_RTC_DRV_S35390A is not set |
1017 | # CONFIG_RTC_DRV_FM3130 is not set | 1048 | # CONFIG_RTC_DRV_FM3130 is not set |
1049 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1018 | 1050 | ||
1019 | # | 1051 | # |
1020 | # SPI RTC drivers | 1052 | # SPI RTC drivers |
@@ -1062,6 +1094,7 @@ CONFIG_FS_MBCACHE=y | |||
1062 | CONFIG_FILE_LOCKING=y | 1094 | CONFIG_FILE_LOCKING=y |
1063 | # CONFIG_XFS_FS is not set | 1095 | # CONFIG_XFS_FS is not set |
1064 | # CONFIG_OCFS2_FS is not set | 1096 | # CONFIG_OCFS2_FS is not set |
1097 | # CONFIG_BTRFS_FS is not set | ||
1065 | CONFIG_DNOTIFY=y | 1098 | CONFIG_DNOTIFY=y |
1066 | CONFIG_INOTIFY=y | 1099 | CONFIG_INOTIFY=y |
1067 | CONFIG_INOTIFY_USER=y | 1100 | CONFIG_INOTIFY_USER=y |
@@ -1095,10 +1128,7 @@ CONFIG_TMPFS=y | |||
1095 | # CONFIG_TMPFS_POSIX_ACL is not set | 1128 | # CONFIG_TMPFS_POSIX_ACL is not set |
1096 | # CONFIG_HUGETLB_PAGE is not set | 1129 | # CONFIG_HUGETLB_PAGE is not set |
1097 | # CONFIG_CONFIGFS_FS is not set | 1130 | # CONFIG_CONFIGFS_FS is not set |
1098 | 1131 | CONFIG_MISC_FILESYSTEMS=y | |
1099 | # | ||
1100 | # Miscellaneous filesystems | ||
1101 | # | ||
1102 | # CONFIG_ADFS_FS is not set | 1132 | # CONFIG_ADFS_FS is not set |
1103 | # CONFIG_AFFS_FS is not set | 1133 | # CONFIG_AFFS_FS is not set |
1104 | # CONFIG_HFS_FS is not set | 1134 | # CONFIG_HFS_FS is not set |
@@ -1108,6 +1138,7 @@ CONFIG_TMPFS=y | |||
1108 | # CONFIG_EFS_FS is not set | 1138 | # CONFIG_EFS_FS is not set |
1109 | # CONFIG_JFFS2_FS is not set | 1139 | # CONFIG_JFFS2_FS is not set |
1110 | # CONFIG_CRAMFS is not set | 1140 | # CONFIG_CRAMFS is not set |
1141 | # CONFIG_SQUASHFS is not set | ||
1111 | # CONFIG_VXFS_FS is not set | 1142 | # CONFIG_VXFS_FS is not set |
1112 | # CONFIG_MINIX_FS is not set | 1143 | # CONFIG_MINIX_FS is not set |
1113 | # CONFIG_OMFS_FS is not set | 1144 | # CONFIG_OMFS_FS is not set |
@@ -1163,6 +1194,7 @@ CONFIG_UCC=y | |||
1163 | # Library routines | 1194 | # Library routines |
1164 | # | 1195 | # |
1165 | CONFIG_BITREVERSE=y | 1196 | CONFIG_BITREVERSE=y |
1197 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1166 | # CONFIG_CRC_CCITT is not set | 1198 | # CONFIG_CRC_CCITT is not set |
1167 | # CONFIG_CRC16 is not set | 1199 | # CONFIG_CRC16 is not set |
1168 | # CONFIG_CRC_T10DIF is not set | 1200 | # CONFIG_CRC_T10DIF is not set |
@@ -1196,6 +1228,8 @@ CONFIG_FRAME_WARN=1024 | |||
1196 | # CONFIG_LATENCYTOP is not set | 1228 | # CONFIG_LATENCYTOP is not set |
1197 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1229 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1198 | CONFIG_HAVE_FUNCTION_TRACER=y | 1230 | CONFIG_HAVE_FUNCTION_TRACER=y |
1231 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1232 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1199 | 1233 | ||
1200 | # | 1234 | # |
1201 | # Tracers | 1235 | # Tracers |
@@ -1203,6 +1237,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1203 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1237 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1204 | # CONFIG_SAMPLES is not set | 1238 | # CONFIG_SAMPLES is not set |
1205 | CONFIG_HAVE_ARCH_KGDB=y | 1239 | CONFIG_HAVE_ARCH_KGDB=y |
1240 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1206 | # CONFIG_IRQSTACKS is not set | 1241 | # CONFIG_IRQSTACKS is not set |
1207 | # CONFIG_BOOTX_TEXT is not set | 1242 | # CONFIG_BOOTX_TEXT is not set |
1208 | # CONFIG_PPC_EARLY_DEBUG is not set | 1243 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1221,11 +1256,15 @@ CONFIG_CRYPTO=y | |||
1221 | # | 1256 | # |
1222 | # CONFIG_CRYPTO_FIPS is not set | 1257 | # CONFIG_CRYPTO_FIPS is not set |
1223 | CONFIG_CRYPTO_ALGAPI=y | 1258 | CONFIG_CRYPTO_ALGAPI=y |
1224 | CONFIG_CRYPTO_AEAD=y | 1259 | CONFIG_CRYPTO_ALGAPI2=y |
1260 | CONFIG_CRYPTO_AEAD2=y | ||
1225 | CONFIG_CRYPTO_BLKCIPHER=y | 1261 | CONFIG_CRYPTO_BLKCIPHER=y |
1262 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1226 | CONFIG_CRYPTO_HASH=y | 1263 | CONFIG_CRYPTO_HASH=y |
1227 | CONFIG_CRYPTO_RNG=y | 1264 | CONFIG_CRYPTO_HASH2=y |
1265 | CONFIG_CRYPTO_RNG2=y | ||
1228 | CONFIG_CRYPTO_MANAGER=y | 1266 | CONFIG_CRYPTO_MANAGER=y |
1267 | CONFIG_CRYPTO_MANAGER2=y | ||
1229 | # CONFIG_CRYPTO_GF128MUL is not set | 1268 | # CONFIG_CRYPTO_GF128MUL is not set |
1230 | # CONFIG_CRYPTO_NULL is not set | 1269 | # CONFIG_CRYPTO_NULL is not set |
1231 | # CONFIG_CRYPTO_CRYPTD is not set | 1270 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig b/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig index b94972f52241..0dc11c44306b 100644 --- a/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig +++ b/arch/powerpc/configs/83xx/mpc836x_rdk_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:00 2008 | 4 | # Mon Jan 26 15:36:01 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_GPIO=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -76,12 +76,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 77 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 78 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 79 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 80 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 81 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 82 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 83 | # CONFIG_CGROUP_SCHED is not set |
84 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 85 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 86 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 87 | # CONFIG_RELAY is not set |
@@ -114,7 +114,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 114 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 119 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -124,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 138 | ||
@@ -153,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
157 | 157 | ||
158 | # | 158 | # |
@@ -198,6 +198,8 @@ CONFIG_IPIC=y | |||
198 | CONFIG_QUICC_ENGINE=y | 198 | CONFIG_QUICC_ENGINE=y |
199 | CONFIG_QE_GPIO=y | 199 | CONFIG_QE_GPIO=y |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | # CONFIG_MCU_MPC8349EMITX is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -224,6 +226,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
224 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 226 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
225 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
226 | # CONFIG_KEXEC is not set | 228 | # CONFIG_KEXEC is not set |
229 | # CONFIG_CRASH_DUMP is not set | ||
227 | CONFIG_ARCH_FLATMEM_ENABLE=y | 230 | CONFIG_ARCH_FLATMEM_ENABLE=y |
228 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 231 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
229 | CONFIG_SELECT_MEMORY_MODEL=y | 232 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -235,12 +238,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
235 | CONFIG_PAGEFLAGS_EXTENDED=y | 238 | CONFIG_PAGEFLAGS_EXTENDED=y |
236 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 239 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
237 | CONFIG_MIGRATION=y | 240 | CONFIG_MIGRATION=y |
238 | # CONFIG_RESOURCES_64BIT is not set | ||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 241 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=1 | 242 | CONFIG_ZONE_DMA_FLAG=1 |
241 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
246 | CONFIG_PPC_4K_PAGES=y | ||
247 | # CONFIG_PPC_16K_PAGES is not set | ||
248 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 250 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +272,7 @@ CONFIG_PCI_SYSCALL=y | |||
267 | CONFIG_ARCH_SUPPORTS_MSI=y | 272 | CONFIG_ARCH_SUPPORTS_MSI=y |
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
275 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +295,7 @@ CONFIG_NET=y | |||
289 | # | 295 | # |
290 | # Networking options | 296 | # Networking options |
291 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -345,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_ECONET is not set | 352 | # CONFIG_ECONET is not set |
346 | # CONFIG_WAN_ROUTER is not set | 353 | # CONFIG_WAN_ROUTER is not set |
347 | # CONFIG_NET_SCHED is not set | 354 | # CONFIG_NET_SCHED is not set |
355 | # CONFIG_DCB is not set | ||
348 | 356 | ||
349 | # | 357 | # |
350 | # Network testing | 358 | # Network testing |
@@ -360,8 +368,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 369 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 370 | # CONFIG_WIRELESS_EXT is not set |
371 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 372 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 373 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 374 | # CONFIG_RFKILL is not set |
366 | # CONFIG_NET_9P is not set | 375 | # CONFIG_NET_9P is not set |
367 | 376 | ||
@@ -384,6 +393,7 @@ CONFIG_MTD=y | |||
384 | # CONFIG_MTD_DEBUG is not set | 393 | # CONFIG_MTD_DEBUG is not set |
385 | # CONFIG_MTD_CONCAT is not set | 394 | # CONFIG_MTD_CONCAT is not set |
386 | CONFIG_MTD_PARTITIONS=y | 395 | CONFIG_MTD_PARTITIONS=y |
396 | # CONFIG_MTD_TESTS is not set | ||
387 | # CONFIG_MTD_REDBOOT_PARTS is not set | 397 | # CONFIG_MTD_REDBOOT_PARTS is not set |
388 | CONFIG_MTD_CMDLINE_PARTS=y | 398 | CONFIG_MTD_CMDLINE_PARTS=y |
389 | # CONFIG_MTD_OF_PARTS is not set | 399 | # CONFIG_MTD_OF_PARTS is not set |
@@ -462,6 +472,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
462 | # CONFIG_MTD_ONENAND is not set | 472 | # CONFIG_MTD_ONENAND is not set |
463 | 473 | ||
464 | # | 474 | # |
475 | # LPDDR flash memory drivers | ||
476 | # | ||
477 | # CONFIG_MTD_LPDDR is not set | ||
478 | # CONFIG_MTD_QINFO_PROBE is not set | ||
479 | |||
480 | # | ||
465 | # UBI - Unsorted block images | 481 | # UBI - Unsorted block images |
466 | # | 482 | # |
467 | # CONFIG_MTD_UBI is not set | 483 | # CONFIG_MTD_UBI is not set |
@@ -493,8 +509,10 @@ CONFIG_MISC_DEVICES=y | |||
493 | # CONFIG_EEPROM_93CX6 is not set | 509 | # CONFIG_EEPROM_93CX6 is not set |
494 | # CONFIG_SGI_IOC4 is not set | 510 | # CONFIG_SGI_IOC4 is not set |
495 | # CONFIG_TIFM_CORE is not set | 511 | # CONFIG_TIFM_CORE is not set |
512 | # CONFIG_ICS932S401 is not set | ||
496 | # CONFIG_ENCLOSURE_SERVICES is not set | 513 | # CONFIG_ENCLOSURE_SERVICES is not set |
497 | # CONFIG_HP_ILO is not set | 514 | # CONFIG_HP_ILO is not set |
515 | # CONFIG_C2PORT is not set | ||
498 | CONFIG_HAVE_IDE=y | 516 | CONFIG_HAVE_IDE=y |
499 | # CONFIG_IDE is not set | 517 | # CONFIG_IDE is not set |
500 | 518 | ||
@@ -543,6 +561,9 @@ CONFIG_PHYLIB=y | |||
543 | CONFIG_BROADCOM_PHY=y | 561 | CONFIG_BROADCOM_PHY=y |
544 | # CONFIG_ICPLUS_PHY is not set | 562 | # CONFIG_ICPLUS_PHY is not set |
545 | # CONFIG_REALTEK_PHY is not set | 563 | # CONFIG_REALTEK_PHY is not set |
564 | # CONFIG_NATIONAL_PHY is not set | ||
565 | # CONFIG_STE10XP is not set | ||
566 | # CONFIG_LSI_ET1011C_PHY is not set | ||
546 | # CONFIG_FIXED_PHY is not set | 567 | # CONFIG_FIXED_PHY is not set |
547 | # CONFIG_MDIO_BITBANG is not set | 568 | # CONFIG_MDIO_BITBANG is not set |
548 | # CONFIG_NET_ETHERNET is not set | 569 | # CONFIG_NET_ETHERNET is not set |
@@ -566,7 +587,6 @@ CONFIG_NETDEV_1000=y | |||
566 | # CONFIG_GIANFAR is not set | 587 | # CONFIG_GIANFAR is not set |
567 | CONFIG_UCC_GETH=y | 588 | CONFIG_UCC_GETH=y |
568 | # CONFIG_UGETH_MAGIC_PACKET is not set | 589 | # CONFIG_UGETH_MAGIC_PACKET is not set |
569 | # CONFIG_UGETH_FILTERING is not set | ||
570 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 590 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
571 | # CONFIG_MV643XX_ETH is not set | 591 | # CONFIG_MV643XX_ETH is not set |
572 | # CONFIG_QLA3XXX is not set | 592 | # CONFIG_QLA3XXX is not set |
@@ -582,6 +602,10 @@ CONFIG_UCC_GETH=y | |||
582 | # CONFIG_WLAN_PRE80211 is not set | 602 | # CONFIG_WLAN_PRE80211 is not set |
583 | # CONFIG_WLAN_80211 is not set | 603 | # CONFIG_WLAN_80211 is not set |
584 | # CONFIG_IWLWIFI_LEDS is not set | 604 | # CONFIG_IWLWIFI_LEDS is not set |
605 | |||
606 | # | ||
607 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
608 | # | ||
585 | # CONFIG_WAN is not set | 609 | # CONFIG_WAN is not set |
586 | # CONFIG_FDDI is not set | 610 | # CONFIG_FDDI is not set |
587 | # CONFIG_HIPPI is not set | 611 | # CONFIG_HIPPI is not set |
@@ -656,8 +680,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
656 | # CONFIG_SERIAL_OF_PLATFORM is not set | 680 | # CONFIG_SERIAL_OF_PLATFORM is not set |
657 | CONFIG_SERIAL_QE=y | 681 | CONFIG_SERIAL_QE=y |
658 | CONFIG_UNIX98_PTYS=y | 682 | CONFIG_UNIX98_PTYS=y |
683 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
659 | CONFIG_LEGACY_PTYS=y | 684 | CONFIG_LEGACY_PTYS=y |
660 | CONFIG_LEGACY_PTY_COUNT=256 | 685 | CONFIG_LEGACY_PTY_COUNT=256 |
686 | # CONFIG_HVC_UDBG is not set | ||
661 | # CONFIG_IPMI_HANDLER is not set | 687 | # CONFIG_IPMI_HANDLER is not set |
662 | CONFIG_HW_RANDOM=y | 688 | CONFIG_HW_RANDOM=y |
663 | # CONFIG_NVRAM is not set | 689 | # CONFIG_NVRAM is not set |
@@ -729,10 +755,8 @@ CONFIG_I2C_MPC=y | |||
729 | # CONFIG_PCF8575 is not set | 755 | # CONFIG_PCF8575 is not set |
730 | # CONFIG_SENSORS_PCA9539 is not set | 756 | # CONFIG_SENSORS_PCA9539 is not set |
731 | # CONFIG_SENSORS_PCF8591 is not set | 757 | # CONFIG_SENSORS_PCF8591 is not set |
732 | # CONFIG_TPS65010 is not set | ||
733 | # CONFIG_SENSORS_MAX6875 is not set | 758 | # CONFIG_SENSORS_MAX6875 is not set |
734 | # CONFIG_SENSORS_TSL2550 is not set | 759 | # CONFIG_SENSORS_TSL2550 is not set |
735 | # CONFIG_MCU_MPC8349EMITX is not set | ||
736 | # CONFIG_I2C_DEBUG_CORE is not set | 760 | # CONFIG_I2C_DEBUG_CORE is not set |
737 | # CONFIG_I2C_DEBUG_ALGO is not set | 761 | # CONFIG_I2C_DEBUG_ALGO is not set |
738 | # CONFIG_I2C_DEBUG_BUS is not set | 762 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -744,6 +768,7 @@ CONFIG_SPI_MASTER=y | |||
744 | # SPI Master Controller Drivers | 768 | # SPI Master Controller Drivers |
745 | # | 769 | # |
746 | CONFIG_SPI_BITBANG=y | 770 | CONFIG_SPI_BITBANG=y |
771 | # CONFIG_SPI_GPIO is not set | ||
747 | CONFIG_SPI_MPC83xx=y | 772 | CONFIG_SPI_MPC83xx=y |
748 | 773 | ||
749 | # | 774 | # |
@@ -758,6 +783,11 @@ CONFIG_GPIOLIB=y | |||
758 | # CONFIG_GPIO_SYSFS is not set | 783 | # CONFIG_GPIO_SYSFS is not set |
759 | 784 | ||
760 | # | 785 | # |
786 | # Memory mapped GPIO expanders: | ||
787 | # | ||
788 | # CONFIG_GPIO_XILINX is not set | ||
789 | |||
790 | # | ||
761 | # I2C GPIO expanders: | 791 | # I2C GPIO expanders: |
762 | # | 792 | # |
763 | # CONFIG_GPIO_MAX732X is not set | 793 | # CONFIG_GPIO_MAX732X is not set |
@@ -794,11 +824,11 @@ CONFIG_WATCHDOG=y | |||
794 | # | 824 | # |
795 | # CONFIG_PCIPCWATCHDOG is not set | 825 | # CONFIG_PCIPCWATCHDOG is not set |
796 | # CONFIG_WDTPCI is not set | 826 | # CONFIG_WDTPCI is not set |
827 | CONFIG_SSB_POSSIBLE=y | ||
797 | 828 | ||
798 | # | 829 | # |
799 | # Sonics Silicon Backplane | 830 | # Sonics Silicon Backplane |
800 | # | 831 | # |
801 | CONFIG_SSB_POSSIBLE=y | ||
802 | # CONFIG_SSB is not set | 832 | # CONFIG_SSB is not set |
803 | 833 | ||
804 | # | 834 | # |
@@ -807,18 +837,14 @@ CONFIG_SSB_POSSIBLE=y | |||
807 | # CONFIG_MFD_CORE is not set | 837 | # CONFIG_MFD_CORE is not set |
808 | # CONFIG_MFD_SM501 is not set | 838 | # CONFIG_MFD_SM501 is not set |
809 | # CONFIG_HTC_PASIC3 is not set | 839 | # CONFIG_HTC_PASIC3 is not set |
840 | # CONFIG_TPS65010 is not set | ||
841 | # CONFIG_TWL4030_CORE is not set | ||
810 | # CONFIG_MFD_TMIO is not set | 842 | # CONFIG_MFD_TMIO is not set |
811 | # CONFIG_PMIC_DA903X is not set | 843 | # CONFIG_PMIC_DA903X is not set |
812 | # CONFIG_MFD_WM8400 is not set | 844 | # CONFIG_MFD_WM8400 is not set |
813 | # CONFIG_MFD_WM8350_I2C is not set | 845 | # CONFIG_MFD_WM8350_I2C is not set |
814 | 846 | # CONFIG_MFD_PCF50633 is not set | |
815 | # | ||
816 | # Voltage and Current regulators | ||
817 | # | ||
818 | # CONFIG_REGULATOR is not set | 847 | # CONFIG_REGULATOR is not set |
819 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
820 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
821 | # CONFIG_REGULATOR_BQ24022 is not set | ||
822 | 848 | ||
823 | # | 849 | # |
824 | # Multimedia devices | 850 | # Multimedia devices |
@@ -897,6 +923,7 @@ CONFIG_FB_OF=y | |||
897 | # CONFIG_FB_IBM_GXT4500 is not set | 923 | # CONFIG_FB_IBM_GXT4500 is not set |
898 | # CONFIG_FB_VIRTUAL is not set | 924 | # CONFIG_FB_VIRTUAL is not set |
899 | # CONFIG_FB_METRONOME is not set | 925 | # CONFIG_FB_METRONOME is not set |
926 | # CONFIG_FB_MB862XX is not set | ||
900 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 927 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
901 | 928 | ||
902 | # | 929 | # |
@@ -962,6 +989,7 @@ CONFIG_FS_MBCACHE=y | |||
962 | CONFIG_FILE_LOCKING=y | 989 | CONFIG_FILE_LOCKING=y |
963 | # CONFIG_XFS_FS is not set | 990 | # CONFIG_XFS_FS is not set |
964 | # CONFIG_OCFS2_FS is not set | 991 | # CONFIG_OCFS2_FS is not set |
992 | # CONFIG_BTRFS_FS is not set | ||
965 | CONFIG_DNOTIFY=y | 993 | CONFIG_DNOTIFY=y |
966 | CONFIG_INOTIFY=y | 994 | CONFIG_INOTIFY=y |
967 | CONFIG_INOTIFY_USER=y | 995 | CONFIG_INOTIFY_USER=y |
@@ -995,10 +1023,7 @@ CONFIG_TMPFS=y | |||
995 | # CONFIG_TMPFS_POSIX_ACL is not set | 1023 | # CONFIG_TMPFS_POSIX_ACL is not set |
996 | # CONFIG_HUGETLB_PAGE is not set | 1024 | # CONFIG_HUGETLB_PAGE is not set |
997 | # CONFIG_CONFIGFS_FS is not set | 1025 | # CONFIG_CONFIGFS_FS is not set |
998 | 1026 | CONFIG_MISC_FILESYSTEMS=y | |
999 | # | ||
1000 | # Miscellaneous filesystems | ||
1001 | # | ||
1002 | # CONFIG_ADFS_FS is not set | 1027 | # CONFIG_ADFS_FS is not set |
1003 | # CONFIG_AFFS_FS is not set | 1028 | # CONFIG_AFFS_FS is not set |
1004 | # CONFIG_HFS_FS is not set | 1029 | # CONFIG_HFS_FS is not set |
@@ -1018,6 +1043,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1018 | CONFIG_JFFS2_RTIME=y | 1043 | CONFIG_JFFS2_RTIME=y |
1019 | # CONFIG_JFFS2_RUBIN is not set | 1044 | # CONFIG_JFFS2_RUBIN is not set |
1020 | # CONFIG_CRAMFS is not set | 1045 | # CONFIG_CRAMFS is not set |
1046 | # CONFIG_SQUASHFS is not set | ||
1021 | # CONFIG_VXFS_FS is not set | 1047 | # CONFIG_VXFS_FS is not set |
1022 | # CONFIG_MINIX_FS is not set | 1048 | # CONFIG_MINIX_FS is not set |
1023 | # CONFIG_OMFS_FS is not set | 1049 | # CONFIG_OMFS_FS is not set |
@@ -1074,6 +1100,7 @@ CONFIG_UCC=y | |||
1074 | # Library routines | 1100 | # Library routines |
1075 | # | 1101 | # |
1076 | CONFIG_BITREVERSE=y | 1102 | CONFIG_BITREVERSE=y |
1103 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1077 | # CONFIG_CRC_CCITT is not set | 1104 | # CONFIG_CRC_CCITT is not set |
1078 | # CONFIG_CRC16 is not set | 1105 | # CONFIG_CRC16 is not set |
1079 | # CONFIG_CRC_T10DIF is not set | 1106 | # CONFIG_CRC_T10DIF is not set |
@@ -1109,6 +1136,8 @@ CONFIG_FRAME_WARN=1024 | |||
1109 | # CONFIG_LATENCYTOP is not set | 1136 | # CONFIG_LATENCYTOP is not set |
1110 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1137 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1111 | CONFIG_HAVE_FUNCTION_TRACER=y | 1138 | CONFIG_HAVE_FUNCTION_TRACER=y |
1139 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1140 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1112 | 1141 | ||
1113 | # | 1142 | # |
1114 | # Tracers | 1143 | # Tracers |
@@ -1116,6 +1145,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1116 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1145 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1117 | # CONFIG_SAMPLES is not set | 1146 | # CONFIG_SAMPLES is not set |
1118 | CONFIG_HAVE_ARCH_KGDB=y | 1147 | CONFIG_HAVE_ARCH_KGDB=y |
1148 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1119 | # CONFIG_IRQSTACKS is not set | 1149 | # CONFIG_IRQSTACKS is not set |
1120 | # CONFIG_BOOTX_TEXT is not set | 1150 | # CONFIG_BOOTX_TEXT is not set |
1121 | CONFIG_PPC_EARLY_DEBUG=y | 1151 | CONFIG_PPC_EARLY_DEBUG=y |
@@ -1145,11 +1175,15 @@ CONFIG_CRYPTO=y | |||
1145 | # | 1175 | # |
1146 | # CONFIG_CRYPTO_FIPS is not set | 1176 | # CONFIG_CRYPTO_FIPS is not set |
1147 | CONFIG_CRYPTO_ALGAPI=y | 1177 | CONFIG_CRYPTO_ALGAPI=y |
1148 | CONFIG_CRYPTO_AEAD=y | 1178 | CONFIG_CRYPTO_ALGAPI2=y |
1179 | CONFIG_CRYPTO_AEAD2=y | ||
1149 | CONFIG_CRYPTO_BLKCIPHER=y | 1180 | CONFIG_CRYPTO_BLKCIPHER=y |
1181 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1150 | CONFIG_CRYPTO_HASH=y | 1182 | CONFIG_CRYPTO_HASH=y |
1151 | CONFIG_CRYPTO_RNG=y | 1183 | CONFIG_CRYPTO_HASH2=y |
1184 | CONFIG_CRYPTO_RNG2=y | ||
1152 | CONFIG_CRYPTO_MANAGER=y | 1185 | CONFIG_CRYPTO_MANAGER=y |
1186 | CONFIG_CRYPTO_MANAGER2=y | ||
1153 | # CONFIG_CRYPTO_GF128MUL is not set | 1187 | # CONFIG_CRYPTO_GF128MUL is not set |
1154 | # CONFIG_CRYPTO_NULL is not set | 1188 | # CONFIG_CRYPTO_NULL is not set |
1155 | # CONFIG_CRYPTO_CRYPTD is not set | 1189 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc837x_mds_defconfig b/arch/powerpc/configs/83xx/mpc837x_mds_defconfig index ad97649bdc73..e42f6b3917d2 100644 --- a/arch/powerpc/configs/83xx/mpc837x_mds_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:00 2008 | 4 | # Mon Jan 26 15:35:59 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 113 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -124,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 138 | ||
@@ -153,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
157 | 157 | ||
158 | # | 158 | # |
@@ -199,6 +199,8 @@ CONFIG_IPIC=y | |||
199 | # CONFIG_QUICC_ENGINE is not set | 199 | # CONFIG_QUICC_ENGINE is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_MPC8xxx_GPIO is not set | 201 | # CONFIG_MPC8xxx_GPIO is not set |
202 | # CONFIG_SIMPLE_GPIO is not set | ||
203 | # CONFIG_MCU_MPC8349EMITX is not set | ||
202 | 204 | ||
203 | # | 205 | # |
204 | # Kernel options | 206 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -404,8 +413,10 @@ CONFIG_MISC_DEVICES=y | |||
404 | # CONFIG_EEPROM_93CX6 is not set | 413 | # CONFIG_EEPROM_93CX6 is not set |
405 | # CONFIG_SGI_IOC4 is not set | 414 | # CONFIG_SGI_IOC4 is not set |
406 | # CONFIG_TIFM_CORE is not set | 415 | # CONFIG_TIFM_CORE is not set |
416 | # CONFIG_ICS932S401 is not set | ||
407 | # CONFIG_ENCLOSURE_SERVICES is not set | 417 | # CONFIG_ENCLOSURE_SERVICES is not set |
408 | # CONFIG_HP_ILO is not set | 418 | # CONFIG_HP_ILO is not set |
419 | # CONFIG_C2PORT is not set | ||
409 | CONFIG_HAVE_IDE=y | 420 | CONFIG_HAVE_IDE=y |
410 | # CONFIG_IDE is not set | 421 | # CONFIG_IDE is not set |
411 | 422 | ||
@@ -448,6 +459,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
448 | # CONFIG_SCSI_SRP_ATTRS is not set | 459 | # CONFIG_SCSI_SRP_ATTRS is not set |
449 | CONFIG_SCSI_LOWLEVEL=y | 460 | CONFIG_SCSI_LOWLEVEL=y |
450 | # CONFIG_ISCSI_TCP is not set | 461 | # CONFIG_ISCSI_TCP is not set |
462 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
451 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 463 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
452 | # CONFIG_SCSI_3W_9XXX is not set | 464 | # CONFIG_SCSI_3W_9XXX is not set |
453 | # CONFIG_SCSI_ACARD is not set | 465 | # CONFIG_SCSI_ACARD is not set |
@@ -464,6 +476,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
464 | # CONFIG_MEGARAID_SAS is not set | 476 | # CONFIG_MEGARAID_SAS is not set |
465 | # CONFIG_SCSI_HPTIOP is not set | 477 | # CONFIG_SCSI_HPTIOP is not set |
466 | # CONFIG_SCSI_BUSLOGIC is not set | 478 | # CONFIG_SCSI_BUSLOGIC is not set |
479 | # CONFIG_LIBFC is not set | ||
480 | # CONFIG_FCOE is not set | ||
467 | # CONFIG_SCSI_DMX3191D is not set | 481 | # CONFIG_SCSI_DMX3191D is not set |
468 | # CONFIG_SCSI_EATA is not set | 482 | # CONFIG_SCSI_EATA is not set |
469 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 483 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -583,6 +597,9 @@ CONFIG_MARVELL_PHY=y | |||
583 | # CONFIG_BROADCOM_PHY is not set | 597 | # CONFIG_BROADCOM_PHY is not set |
584 | # CONFIG_ICPLUS_PHY is not set | 598 | # CONFIG_ICPLUS_PHY is not set |
585 | # CONFIG_REALTEK_PHY is not set | 599 | # CONFIG_REALTEK_PHY is not set |
600 | # CONFIG_NATIONAL_PHY is not set | ||
601 | # CONFIG_STE10XP is not set | ||
602 | # CONFIG_LSI_ET1011C_PHY is not set | ||
586 | # CONFIG_FIXED_PHY is not set | 603 | # CONFIG_FIXED_PHY is not set |
587 | # CONFIG_MDIO_BITBANG is not set | 604 | # CONFIG_MDIO_BITBANG is not set |
588 | CONFIG_NET_ETHERNET=y | 605 | CONFIG_NET_ETHERNET=y |
@@ -628,6 +645,7 @@ CONFIG_GIANFAR=y | |||
628 | # CONFIG_JME is not set | 645 | # CONFIG_JME is not set |
629 | CONFIG_NETDEV_10000=y | 646 | CONFIG_NETDEV_10000=y |
630 | # CONFIG_CHELSIO_T1 is not set | 647 | # CONFIG_CHELSIO_T1 is not set |
648 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
631 | # CONFIG_CHELSIO_T3 is not set | 649 | # CONFIG_CHELSIO_T3 is not set |
632 | # CONFIG_ENIC is not set | 650 | # CONFIG_ENIC is not set |
633 | # CONFIG_IXGBE is not set | 651 | # CONFIG_IXGBE is not set |
@@ -650,6 +668,10 @@ CONFIG_NETDEV_10000=y | |||
650 | # CONFIG_WLAN_PRE80211 is not set | 668 | # CONFIG_WLAN_PRE80211 is not set |
651 | # CONFIG_WLAN_80211 is not set | 669 | # CONFIG_WLAN_80211 is not set |
652 | # CONFIG_IWLWIFI_LEDS is not set | 670 | # CONFIG_IWLWIFI_LEDS is not set |
671 | |||
672 | # | ||
673 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
674 | # | ||
653 | # CONFIG_WAN is not set | 675 | # CONFIG_WAN is not set |
654 | # CONFIG_FDDI is not set | 676 | # CONFIG_FDDI is not set |
655 | # CONFIG_HIPPI is not set | 677 | # CONFIG_HIPPI is not set |
@@ -720,8 +742,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
720 | # CONFIG_SERIAL_JSM is not set | 742 | # CONFIG_SERIAL_JSM is not set |
721 | # CONFIG_SERIAL_OF_PLATFORM is not set | 743 | # CONFIG_SERIAL_OF_PLATFORM is not set |
722 | CONFIG_UNIX98_PTYS=y | 744 | CONFIG_UNIX98_PTYS=y |
745 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
723 | CONFIG_LEGACY_PTYS=y | 746 | CONFIG_LEGACY_PTYS=y |
724 | CONFIG_LEGACY_PTY_COUNT=256 | 747 | CONFIG_LEGACY_PTY_COUNT=256 |
748 | # CONFIG_HVC_UDBG is not set | ||
725 | # CONFIG_IPMI_HANDLER is not set | 749 | # CONFIG_IPMI_HANDLER is not set |
726 | # CONFIG_HW_RANDOM is not set | 750 | # CONFIG_HW_RANDOM is not set |
727 | # CONFIG_NVRAM is not set | 751 | # CONFIG_NVRAM is not set |
@@ -795,7 +819,6 @@ CONFIG_I2C_MPC=y | |||
795 | # CONFIG_SENSORS_PCF8591 is not set | 819 | # CONFIG_SENSORS_PCF8591 is not set |
796 | # CONFIG_SENSORS_MAX6875 is not set | 820 | # CONFIG_SENSORS_MAX6875 is not set |
797 | # CONFIG_SENSORS_TSL2550 is not set | 821 | # CONFIG_SENSORS_TSL2550 is not set |
798 | # CONFIG_MCU_MPC8349EMITX is not set | ||
799 | # CONFIG_I2C_DEBUG_CORE is not set | 822 | # CONFIG_I2C_DEBUG_CORE is not set |
800 | # CONFIG_I2C_DEBUG_ALGO is not set | 823 | # CONFIG_I2C_DEBUG_ALGO is not set |
801 | # CONFIG_I2C_DEBUG_BUS is not set | 824 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -815,8 +838,10 @@ CONFIG_HWMON=y | |||
815 | # CONFIG_SENSORS_ADM1029 is not set | 838 | # CONFIG_SENSORS_ADM1029 is not set |
816 | # CONFIG_SENSORS_ADM1031 is not set | 839 | # CONFIG_SENSORS_ADM1031 is not set |
817 | # CONFIG_SENSORS_ADM9240 is not set | 840 | # CONFIG_SENSORS_ADM9240 is not set |
841 | # CONFIG_SENSORS_ADT7462 is not set | ||
818 | # CONFIG_SENSORS_ADT7470 is not set | 842 | # CONFIG_SENSORS_ADT7470 is not set |
819 | # CONFIG_SENSORS_ADT7473 is not set | 843 | # CONFIG_SENSORS_ADT7473 is not set |
844 | # CONFIG_SENSORS_ADT7475 is not set | ||
820 | # CONFIG_SENSORS_ATXP1 is not set | 845 | # CONFIG_SENSORS_ATXP1 is not set |
821 | # CONFIG_SENSORS_DS1621 is not set | 846 | # CONFIG_SENSORS_DS1621 is not set |
822 | # CONFIG_SENSORS_I5K_AMB is not set | 847 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -837,6 +862,7 @@ CONFIG_HWMON=y | |||
837 | # CONFIG_SENSORS_LM90 is not set | 862 | # CONFIG_SENSORS_LM90 is not set |
838 | # CONFIG_SENSORS_LM92 is not set | 863 | # CONFIG_SENSORS_LM92 is not set |
839 | # CONFIG_SENSORS_LM93 is not set | 864 | # CONFIG_SENSORS_LM93 is not set |
865 | # CONFIG_SENSORS_LTC4245 is not set | ||
840 | # CONFIG_SENSORS_MAX1619 is not set | 866 | # CONFIG_SENSORS_MAX1619 is not set |
841 | # CONFIG_SENSORS_MAX6650 is not set | 867 | # CONFIG_SENSORS_MAX6650 is not set |
842 | # CONFIG_SENSORS_PC87360 is not set | 868 | # CONFIG_SENSORS_PC87360 is not set |
@@ -877,11 +903,11 @@ CONFIG_WATCHDOG=y | |||
877 | # | 903 | # |
878 | # CONFIG_PCIPCWATCHDOG is not set | 904 | # CONFIG_PCIPCWATCHDOG is not set |
879 | # CONFIG_WDTPCI is not set | 905 | # CONFIG_WDTPCI is not set |
906 | CONFIG_SSB_POSSIBLE=y | ||
880 | 907 | ||
881 | # | 908 | # |
882 | # Sonics Silicon Backplane | 909 | # Sonics Silicon Backplane |
883 | # | 910 | # |
884 | CONFIG_SSB_POSSIBLE=y | ||
885 | # CONFIG_SSB is not set | 911 | # CONFIG_SSB is not set |
886 | 912 | ||
887 | # | 913 | # |
@@ -890,18 +916,13 @@ CONFIG_SSB_POSSIBLE=y | |||
890 | # CONFIG_MFD_CORE is not set | 916 | # CONFIG_MFD_CORE is not set |
891 | # CONFIG_MFD_SM501 is not set | 917 | # CONFIG_MFD_SM501 is not set |
892 | # CONFIG_HTC_PASIC3 is not set | 918 | # CONFIG_HTC_PASIC3 is not set |
919 | # CONFIG_TWL4030_CORE is not set | ||
893 | # CONFIG_MFD_TMIO is not set | 920 | # CONFIG_MFD_TMIO is not set |
894 | # CONFIG_PMIC_DA903X is not set | 921 | # CONFIG_PMIC_DA903X is not set |
895 | # CONFIG_MFD_WM8400 is not set | 922 | # CONFIG_MFD_WM8400 is not set |
896 | # CONFIG_MFD_WM8350_I2C is not set | 923 | # CONFIG_MFD_WM8350_I2C is not set |
897 | 924 | # CONFIG_MFD_PCF50633 is not set | |
898 | # | ||
899 | # Voltage and Current regulators | ||
900 | # | ||
901 | # CONFIG_REGULATOR is not set | 925 | # CONFIG_REGULATOR is not set |
902 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
903 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
904 | # CONFIG_REGULATOR_BQ24022 is not set | ||
905 | 926 | ||
906 | # | 927 | # |
907 | # Multimedia devices | 928 | # Multimedia devices |
@@ -957,9 +978,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
957 | # | 978 | # |
958 | 979 | ||
959 | # | 980 | # |
960 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 981 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
961 | # | 982 | # |
962 | # CONFIG_USB_GADGET is not set | 983 | # CONFIG_USB_GADGET is not set |
984 | |||
985 | # | ||
986 | # OTG and related infrastructure | ||
987 | # | ||
963 | # CONFIG_UWB is not set | 988 | # CONFIG_UWB is not set |
964 | # CONFIG_MMC is not set | 989 | # CONFIG_MMC is not set |
965 | # CONFIG_MEMSTICK is not set | 990 | # CONFIG_MEMSTICK is not set |
@@ -991,6 +1016,7 @@ CONFIG_FS_MBCACHE=y | |||
991 | CONFIG_FILE_LOCKING=y | 1016 | CONFIG_FILE_LOCKING=y |
992 | # CONFIG_XFS_FS is not set | 1017 | # CONFIG_XFS_FS is not set |
993 | # CONFIG_OCFS2_FS is not set | 1018 | # CONFIG_OCFS2_FS is not set |
1019 | # CONFIG_BTRFS_FS is not set | ||
994 | CONFIG_DNOTIFY=y | 1020 | CONFIG_DNOTIFY=y |
995 | CONFIG_INOTIFY=y | 1021 | CONFIG_INOTIFY=y |
996 | CONFIG_INOTIFY_USER=y | 1022 | CONFIG_INOTIFY_USER=y |
@@ -1024,10 +1050,7 @@ CONFIG_TMPFS=y | |||
1024 | # CONFIG_TMPFS_POSIX_ACL is not set | 1050 | # CONFIG_TMPFS_POSIX_ACL is not set |
1025 | # CONFIG_HUGETLB_PAGE is not set | 1051 | # CONFIG_HUGETLB_PAGE is not set |
1026 | # CONFIG_CONFIGFS_FS is not set | 1052 | # CONFIG_CONFIGFS_FS is not set |
1027 | 1053 | CONFIG_MISC_FILESYSTEMS=y | |
1028 | # | ||
1029 | # Miscellaneous filesystems | ||
1030 | # | ||
1031 | # CONFIG_ADFS_FS is not set | 1054 | # CONFIG_ADFS_FS is not set |
1032 | # CONFIG_AFFS_FS is not set | 1055 | # CONFIG_AFFS_FS is not set |
1033 | # CONFIG_HFS_FS is not set | 1056 | # CONFIG_HFS_FS is not set |
@@ -1036,6 +1059,7 @@ CONFIG_TMPFS=y | |||
1036 | # CONFIG_BFS_FS is not set | 1059 | # CONFIG_BFS_FS is not set |
1037 | # CONFIG_EFS_FS is not set | 1060 | # CONFIG_EFS_FS is not set |
1038 | # CONFIG_CRAMFS is not set | 1061 | # CONFIG_CRAMFS is not set |
1062 | # CONFIG_SQUASHFS is not set | ||
1039 | # CONFIG_VXFS_FS is not set | 1063 | # CONFIG_VXFS_FS is not set |
1040 | # CONFIG_MINIX_FS is not set | 1064 | # CONFIG_MINIX_FS is not set |
1041 | # CONFIG_OMFS_FS is not set | 1065 | # CONFIG_OMFS_FS is not set |
@@ -1093,6 +1117,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1093 | # Library routines | 1117 | # Library routines |
1094 | # | 1118 | # |
1095 | CONFIG_BITREVERSE=y | 1119 | CONFIG_BITREVERSE=y |
1120 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1096 | # CONFIG_CRC_CCITT is not set | 1121 | # CONFIG_CRC_CCITT is not set |
1097 | # CONFIG_CRC16 is not set | 1122 | # CONFIG_CRC16 is not set |
1098 | CONFIG_CRC_T10DIF=y | 1123 | CONFIG_CRC_T10DIF=y |
@@ -1124,6 +1149,8 @@ CONFIG_FRAME_WARN=1024 | |||
1124 | # CONFIG_LATENCYTOP is not set | 1149 | # CONFIG_LATENCYTOP is not set |
1125 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1150 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1126 | CONFIG_HAVE_FUNCTION_TRACER=y | 1151 | CONFIG_HAVE_FUNCTION_TRACER=y |
1152 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1153 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1127 | 1154 | ||
1128 | # | 1155 | # |
1129 | # Tracers | 1156 | # Tracers |
@@ -1131,6 +1158,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1131 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1158 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1132 | # CONFIG_SAMPLES is not set | 1159 | # CONFIG_SAMPLES is not set |
1133 | CONFIG_HAVE_ARCH_KGDB=y | 1160 | CONFIG_HAVE_ARCH_KGDB=y |
1161 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1134 | # CONFIG_IRQSTACKS is not set | 1162 | # CONFIG_IRQSTACKS is not set |
1135 | # CONFIG_BOOTX_TEXT is not set | 1163 | # CONFIG_BOOTX_TEXT is not set |
1136 | # CONFIG_PPC_EARLY_DEBUG is not set | 1164 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1149,11 +1177,15 @@ CONFIG_CRYPTO=y | |||
1149 | # | 1177 | # |
1150 | # CONFIG_CRYPTO_FIPS is not set | 1178 | # CONFIG_CRYPTO_FIPS is not set |
1151 | CONFIG_CRYPTO_ALGAPI=y | 1179 | CONFIG_CRYPTO_ALGAPI=y |
1152 | CONFIG_CRYPTO_AEAD=y | 1180 | CONFIG_CRYPTO_ALGAPI2=y |
1181 | CONFIG_CRYPTO_AEAD2=y | ||
1153 | CONFIG_CRYPTO_BLKCIPHER=y | 1182 | CONFIG_CRYPTO_BLKCIPHER=y |
1183 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1154 | CONFIG_CRYPTO_HASH=y | 1184 | CONFIG_CRYPTO_HASH=y |
1155 | CONFIG_CRYPTO_RNG=y | 1185 | CONFIG_CRYPTO_HASH2=y |
1186 | CONFIG_CRYPTO_RNG2=y | ||
1156 | CONFIG_CRYPTO_MANAGER=y | 1187 | CONFIG_CRYPTO_MANAGER=y |
1188 | CONFIG_CRYPTO_MANAGER2=y | ||
1157 | # CONFIG_CRYPTO_GF128MUL is not set | 1189 | # CONFIG_CRYPTO_GF128MUL is not set |
1158 | # CONFIG_CRYPTO_NULL is not set | 1190 | # CONFIG_CRYPTO_NULL is not set |
1159 | # CONFIG_CRYPTO_CRYPTD is not set | 1191 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig index 2e526beeeb90..408022f79a50 100644 --- a/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:01 2008 | 4 | # Mon Jan 26 15:36:01 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -113,7 +113,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 113 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
118 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -124,7 +123,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
129 | CONFIG_MODULES=y | 127 | CONFIG_MODULES=y |
130 | # CONFIG_MODULE_FORCE_LOAD is not set | 128 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -132,11 +130,9 @@ CONFIG_MODULE_UNLOAD=y | |||
132 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
133 | # CONFIG_MODVERSIONS is not set | 131 | # CONFIG_MODVERSIONS is not set |
134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
135 | CONFIG_KMOD=y | ||
136 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
137 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
139 | # CONFIG_LSF is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 138 | ||
@@ -153,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
153 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
154 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
155 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
156 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
157 | 157 | ||
158 | # | 158 | # |
@@ -199,6 +199,8 @@ CONFIG_IPIC=y | |||
199 | # CONFIG_QUICC_ENGINE is not set | 199 | # CONFIG_QUICC_ENGINE is not set |
200 | # CONFIG_FSL_ULI1575 is not set | 200 | # CONFIG_FSL_ULI1575 is not set |
201 | # CONFIG_MPC8xxx_GPIO is not set | 201 | # CONFIG_MPC8xxx_GPIO is not set |
202 | # CONFIG_SIMPLE_GPIO is not set | ||
203 | # CONFIG_MCU_MPC8349EMITX is not set | ||
202 | 204 | ||
203 | # | 205 | # |
204 | # Kernel options | 206 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
229 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
230 | CONFIG_SELECT_MEMORY_MODEL=y | 233 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -236,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
236 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
237 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
238 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
239 | # CONFIG_RESOURCES_64BIT is not set | ||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
242 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
246 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
247 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +271,7 @@ CONFIG_PCI_SYSCALL=y | |||
266 | CONFIG_ARCH_SUPPORTS_MSI=y | 271 | CONFIG_ARCH_SUPPORTS_MSI=y |
267 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
274 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -339,6 +346,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
339 | # CONFIG_ECONET is not set | 346 | # CONFIG_ECONET is not set |
340 | # CONFIG_WAN_ROUTER is not set | 347 | # CONFIG_WAN_ROUTER is not set |
341 | # CONFIG_NET_SCHED is not set | 348 | # CONFIG_NET_SCHED is not set |
349 | # CONFIG_DCB is not set | ||
342 | 350 | ||
343 | # | 351 | # |
344 | # Network testing | 352 | # Network testing |
@@ -354,8 +362,9 @@ CONFIG_WIRELESS=y | |||
354 | # CONFIG_CFG80211 is not set | 362 | # CONFIG_CFG80211 is not set |
355 | CONFIG_WIRELESS_OLD_REGULATORY=y | 363 | CONFIG_WIRELESS_OLD_REGULATORY=y |
356 | # CONFIG_WIRELESS_EXT is not set | 364 | # CONFIG_WIRELESS_EXT is not set |
365 | # CONFIG_LIB80211 is not set | ||
357 | # CONFIG_MAC80211 is not set | 366 | # CONFIG_MAC80211 is not set |
358 | # CONFIG_IEEE80211 is not set | 367 | # CONFIG_WIMAX is not set |
359 | # CONFIG_RFKILL is not set | 368 | # CONFIG_RFKILL is not set |
360 | # CONFIG_NET_9P is not set | 369 | # CONFIG_NET_9P is not set |
361 | 370 | ||
@@ -400,8 +409,10 @@ CONFIG_MISC_DEVICES=y | |||
400 | # CONFIG_EEPROM_93CX6 is not set | 409 | # CONFIG_EEPROM_93CX6 is not set |
401 | # CONFIG_SGI_IOC4 is not set | 410 | # CONFIG_SGI_IOC4 is not set |
402 | # CONFIG_TIFM_CORE is not set | 411 | # CONFIG_TIFM_CORE is not set |
412 | # CONFIG_ICS932S401 is not set | ||
403 | # CONFIG_ENCLOSURE_SERVICES is not set | 413 | # CONFIG_ENCLOSURE_SERVICES is not set |
404 | # CONFIG_HP_ILO is not set | 414 | # CONFIG_HP_ILO is not set |
415 | # CONFIG_C2PORT is not set | ||
405 | CONFIG_HAVE_IDE=y | 416 | CONFIG_HAVE_IDE=y |
406 | # CONFIG_IDE is not set | 417 | # CONFIG_IDE is not set |
407 | 418 | ||
@@ -460,6 +471,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
460 | # CONFIG_MEGARAID_SAS is not set | 471 | # CONFIG_MEGARAID_SAS is not set |
461 | # CONFIG_SCSI_HPTIOP is not set | 472 | # CONFIG_SCSI_HPTIOP is not set |
462 | # CONFIG_SCSI_BUSLOGIC is not set | 473 | # CONFIG_SCSI_BUSLOGIC is not set |
474 | # CONFIG_LIBFC is not set | ||
475 | # CONFIG_FCOE is not set | ||
463 | # CONFIG_SCSI_DMX3191D is not set | 476 | # CONFIG_SCSI_DMX3191D is not set |
464 | # CONFIG_SCSI_EATA is not set | 477 | # CONFIG_SCSI_EATA is not set |
465 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 478 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -590,6 +603,9 @@ CONFIG_MARVELL_PHY=y | |||
590 | # CONFIG_BROADCOM_PHY is not set | 603 | # CONFIG_BROADCOM_PHY is not set |
591 | # CONFIG_ICPLUS_PHY is not set | 604 | # CONFIG_ICPLUS_PHY is not set |
592 | # CONFIG_REALTEK_PHY is not set | 605 | # CONFIG_REALTEK_PHY is not set |
606 | # CONFIG_NATIONAL_PHY is not set | ||
607 | # CONFIG_STE10XP is not set | ||
608 | # CONFIG_LSI_ET1011C_PHY is not set | ||
593 | CONFIG_FIXED_PHY=y | 609 | CONFIG_FIXED_PHY=y |
594 | # CONFIG_MDIO_BITBANG is not set | 610 | # CONFIG_MDIO_BITBANG is not set |
595 | CONFIG_NET_ETHERNET=y | 611 | CONFIG_NET_ETHERNET=y |
@@ -644,6 +660,10 @@ CONFIG_GIANFAR=y | |||
644 | # CONFIG_IWLWIFI_LEDS is not set | 660 | # CONFIG_IWLWIFI_LEDS is not set |
645 | 661 | ||
646 | # | 662 | # |
663 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
664 | # | ||
665 | |||
666 | # | ||
647 | # USB Network Adapters | 667 | # USB Network Adapters |
648 | # | 668 | # |
649 | # CONFIG_USB_CATC is not set | 669 | # CONFIG_USB_CATC is not set |
@@ -721,8 +741,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
721 | # CONFIG_SERIAL_JSM is not set | 741 | # CONFIG_SERIAL_JSM is not set |
722 | # CONFIG_SERIAL_OF_PLATFORM is not set | 742 | # CONFIG_SERIAL_OF_PLATFORM is not set |
723 | CONFIG_UNIX98_PTYS=y | 743 | CONFIG_UNIX98_PTYS=y |
744 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
724 | CONFIG_LEGACY_PTYS=y | 745 | CONFIG_LEGACY_PTYS=y |
725 | CONFIG_LEGACY_PTY_COUNT=256 | 746 | CONFIG_LEGACY_PTY_COUNT=256 |
747 | # CONFIG_HVC_UDBG is not set | ||
726 | # CONFIG_IPMI_HANDLER is not set | 748 | # CONFIG_IPMI_HANDLER is not set |
727 | # CONFIG_HW_RANDOM is not set | 749 | # CONFIG_HW_RANDOM is not set |
728 | # CONFIG_NVRAM is not set | 750 | # CONFIG_NVRAM is not set |
@@ -797,7 +819,6 @@ CONFIG_I2C_MPC=y | |||
797 | # CONFIG_SENSORS_PCF8591 is not set | 819 | # CONFIG_SENSORS_PCF8591 is not set |
798 | # CONFIG_SENSORS_MAX6875 is not set | 820 | # CONFIG_SENSORS_MAX6875 is not set |
799 | # CONFIG_SENSORS_TSL2550 is not set | 821 | # CONFIG_SENSORS_TSL2550 is not set |
800 | # CONFIG_MCU_MPC8349EMITX is not set | ||
801 | # CONFIG_I2C_DEBUG_CORE is not set | 822 | # CONFIG_I2C_DEBUG_CORE is not set |
802 | # CONFIG_I2C_DEBUG_ALGO is not set | 823 | # CONFIG_I2C_DEBUG_ALGO is not set |
803 | # CONFIG_I2C_DEBUG_BUS is not set | 824 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -817,8 +838,10 @@ CONFIG_HWMON=y | |||
817 | # CONFIG_SENSORS_ADM1029 is not set | 838 | # CONFIG_SENSORS_ADM1029 is not set |
818 | # CONFIG_SENSORS_ADM1031 is not set | 839 | # CONFIG_SENSORS_ADM1031 is not set |
819 | # CONFIG_SENSORS_ADM9240 is not set | 840 | # CONFIG_SENSORS_ADM9240 is not set |
841 | # CONFIG_SENSORS_ADT7462 is not set | ||
820 | # CONFIG_SENSORS_ADT7470 is not set | 842 | # CONFIG_SENSORS_ADT7470 is not set |
821 | # CONFIG_SENSORS_ADT7473 is not set | 843 | # CONFIG_SENSORS_ADT7473 is not set |
844 | # CONFIG_SENSORS_ADT7475 is not set | ||
822 | # CONFIG_SENSORS_ATXP1 is not set | 845 | # CONFIG_SENSORS_ATXP1 is not set |
823 | # CONFIG_SENSORS_DS1621 is not set | 846 | # CONFIG_SENSORS_DS1621 is not set |
824 | # CONFIG_SENSORS_I5K_AMB is not set | 847 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -839,6 +862,7 @@ CONFIG_HWMON=y | |||
839 | # CONFIG_SENSORS_LM90 is not set | 862 | # CONFIG_SENSORS_LM90 is not set |
840 | # CONFIG_SENSORS_LM92 is not set | 863 | # CONFIG_SENSORS_LM92 is not set |
841 | # CONFIG_SENSORS_LM93 is not set | 864 | # CONFIG_SENSORS_LM93 is not set |
865 | # CONFIG_SENSORS_LTC4245 is not set | ||
842 | # CONFIG_SENSORS_MAX1619 is not set | 866 | # CONFIG_SENSORS_MAX1619 is not set |
843 | # CONFIG_SENSORS_MAX6650 is not set | 867 | # CONFIG_SENSORS_MAX6650 is not set |
844 | # CONFIG_SENSORS_PC87360 is not set | 868 | # CONFIG_SENSORS_PC87360 is not set |
@@ -884,11 +908,11 @@ CONFIG_WATCHDOG=y | |||
884 | # USB-based Watchdog Cards | 908 | # USB-based Watchdog Cards |
885 | # | 909 | # |
886 | # CONFIG_USBPCWATCHDOG is not set | 910 | # CONFIG_USBPCWATCHDOG is not set |
911 | CONFIG_SSB_POSSIBLE=y | ||
887 | 912 | ||
888 | # | 913 | # |
889 | # Sonics Silicon Backplane | 914 | # Sonics Silicon Backplane |
890 | # | 915 | # |
891 | CONFIG_SSB_POSSIBLE=y | ||
892 | # CONFIG_SSB is not set | 916 | # CONFIG_SSB is not set |
893 | 917 | ||
894 | # | 918 | # |
@@ -897,18 +921,13 @@ CONFIG_SSB_POSSIBLE=y | |||
897 | # CONFIG_MFD_CORE is not set | 921 | # CONFIG_MFD_CORE is not set |
898 | # CONFIG_MFD_SM501 is not set | 922 | # CONFIG_MFD_SM501 is not set |
899 | # CONFIG_HTC_PASIC3 is not set | 923 | # CONFIG_HTC_PASIC3 is not set |
924 | # CONFIG_TWL4030_CORE is not set | ||
900 | # CONFIG_MFD_TMIO is not set | 925 | # CONFIG_MFD_TMIO is not set |
901 | # CONFIG_PMIC_DA903X is not set | 926 | # CONFIG_PMIC_DA903X is not set |
902 | # CONFIG_MFD_WM8400 is not set | 927 | # CONFIG_MFD_WM8400 is not set |
903 | # CONFIG_MFD_WM8350_I2C is not set | 928 | # CONFIG_MFD_WM8350_I2C is not set |
904 | 929 | # CONFIG_MFD_PCF50633 is not set | |
905 | # | ||
906 | # Voltage and Current regulators | ||
907 | # | ||
908 | # CONFIG_REGULATOR is not set | 930 | # CONFIG_REGULATOR is not set |
909 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
910 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
911 | # CONFIG_REGULATOR_BQ24022 is not set | ||
912 | 931 | ||
913 | # | 932 | # |
914 | # Multimedia devices | 933 | # Multimedia devices |
@@ -961,11 +980,9 @@ CONFIG_HID_COMPAT=y | |||
961 | CONFIG_HID_A4TECH=y | 980 | CONFIG_HID_A4TECH=y |
962 | CONFIG_HID_APPLE=y | 981 | CONFIG_HID_APPLE=y |
963 | CONFIG_HID_BELKIN=y | 982 | CONFIG_HID_BELKIN=y |
964 | CONFIG_HID_BRIGHT=y | ||
965 | CONFIG_HID_CHERRY=y | 983 | CONFIG_HID_CHERRY=y |
966 | CONFIG_HID_CHICONY=y | 984 | CONFIG_HID_CHICONY=y |
967 | CONFIG_HID_CYPRESS=y | 985 | CONFIG_HID_CYPRESS=y |
968 | CONFIG_HID_DELL=y | ||
969 | CONFIG_HID_EZKEY=y | 986 | CONFIG_HID_EZKEY=y |
970 | CONFIG_HID_GYRATION=y | 987 | CONFIG_HID_GYRATION=y |
971 | CONFIG_HID_LOGITECH=y | 988 | CONFIG_HID_LOGITECH=y |
@@ -973,12 +990,15 @@ CONFIG_HID_LOGITECH=y | |||
973 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 990 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
974 | CONFIG_HID_MICROSOFT=y | 991 | CONFIG_HID_MICROSOFT=y |
975 | CONFIG_HID_MONTEREY=y | 992 | CONFIG_HID_MONTEREY=y |
993 | # CONFIG_HID_NTRIG is not set | ||
976 | CONFIG_HID_PANTHERLORD=y | 994 | CONFIG_HID_PANTHERLORD=y |
977 | # CONFIG_PANTHERLORD_FF is not set | 995 | # CONFIG_PANTHERLORD_FF is not set |
978 | CONFIG_HID_PETALYNX=y | 996 | CONFIG_HID_PETALYNX=y |
979 | CONFIG_HID_SAMSUNG=y | 997 | CONFIG_HID_SAMSUNG=y |
980 | CONFIG_HID_SONY=y | 998 | CONFIG_HID_SONY=y |
981 | CONFIG_HID_SUNPLUS=y | 999 | CONFIG_HID_SUNPLUS=y |
1000 | # CONFIG_GREENASIA_FF is not set | ||
1001 | # CONFIG_HID_TOPSEED is not set | ||
982 | CONFIG_THRUSTMASTER_FF=m | 1002 | CONFIG_THRUSTMASTER_FF=m |
983 | CONFIG_ZEROPLUS_FF=m | 1003 | CONFIG_ZEROPLUS_FF=m |
984 | CONFIG_USB_SUPPORT=y | 1004 | CONFIG_USB_SUPPORT=y |
@@ -1011,6 +1031,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1011 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1031 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1012 | CONFIG_USB_EHCI_FSL=y | 1032 | CONFIG_USB_EHCI_FSL=y |
1013 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1033 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1034 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1014 | # CONFIG_USB_ISP116X_HCD is not set | 1035 | # CONFIG_USB_ISP116X_HCD is not set |
1015 | # CONFIG_USB_ISP1760_HCD is not set | 1036 | # CONFIG_USB_ISP1760_HCD is not set |
1016 | # CONFIG_USB_OHCI_HCD is not set | 1037 | # CONFIG_USB_OHCI_HCD is not set |
@@ -1029,11 +1050,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
1029 | # CONFIG_USB_TMC is not set | 1050 | # CONFIG_USB_TMC is not set |
1030 | 1051 | ||
1031 | # | 1052 | # |
1032 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1053 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1033 | # | 1054 | # |
1034 | 1055 | ||
1035 | # | 1056 | # |
1036 | # may also be needed; see USB_STORAGE Help for more information | 1057 | # see USB_STORAGE Help for more information |
1037 | # | 1058 | # |
1038 | # CONFIG_USB_STORAGE is not set | 1059 | # CONFIG_USB_STORAGE is not set |
1039 | # CONFIG_USB_LIBUSUAL is not set | 1060 | # CONFIG_USB_LIBUSUAL is not set |
@@ -1074,6 +1095,10 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
1074 | # CONFIG_USB_ISIGHTFW is not set | 1095 | # CONFIG_USB_ISIGHTFW is not set |
1075 | # CONFIG_USB_VST is not set | 1096 | # CONFIG_USB_VST is not set |
1076 | # CONFIG_USB_GADGET is not set | 1097 | # CONFIG_USB_GADGET is not set |
1098 | |||
1099 | # | ||
1100 | # OTG and related infrastructure | ||
1101 | # | ||
1077 | # CONFIG_UWB is not set | 1102 | # CONFIG_UWB is not set |
1078 | # CONFIG_MMC is not set | 1103 | # CONFIG_MMC is not set |
1079 | # CONFIG_MEMSTICK is not set | 1104 | # CONFIG_MEMSTICK is not set |
@@ -1105,6 +1130,7 @@ CONFIG_FS_MBCACHE=y | |||
1105 | CONFIG_FILE_LOCKING=y | 1130 | CONFIG_FILE_LOCKING=y |
1106 | # CONFIG_XFS_FS is not set | 1131 | # CONFIG_XFS_FS is not set |
1107 | # CONFIG_OCFS2_FS is not set | 1132 | # CONFIG_OCFS2_FS is not set |
1133 | # CONFIG_BTRFS_FS is not set | ||
1108 | CONFIG_DNOTIFY=y | 1134 | CONFIG_DNOTIFY=y |
1109 | CONFIG_INOTIFY=y | 1135 | CONFIG_INOTIFY=y |
1110 | CONFIG_INOTIFY_USER=y | 1136 | CONFIG_INOTIFY_USER=y |
@@ -1138,10 +1164,7 @@ CONFIG_TMPFS=y | |||
1138 | # CONFIG_TMPFS_POSIX_ACL is not set | 1164 | # CONFIG_TMPFS_POSIX_ACL is not set |
1139 | # CONFIG_HUGETLB_PAGE is not set | 1165 | # CONFIG_HUGETLB_PAGE is not set |
1140 | # CONFIG_CONFIGFS_FS is not set | 1166 | # CONFIG_CONFIGFS_FS is not set |
1141 | 1167 | CONFIG_MISC_FILESYSTEMS=y | |
1142 | # | ||
1143 | # Miscellaneous filesystems | ||
1144 | # | ||
1145 | # CONFIG_ADFS_FS is not set | 1168 | # CONFIG_ADFS_FS is not set |
1146 | # CONFIG_AFFS_FS is not set | 1169 | # CONFIG_AFFS_FS is not set |
1147 | # CONFIG_HFS_FS is not set | 1170 | # CONFIG_HFS_FS is not set |
@@ -1150,6 +1173,7 @@ CONFIG_TMPFS=y | |||
1150 | # CONFIG_BFS_FS is not set | 1173 | # CONFIG_BFS_FS is not set |
1151 | # CONFIG_EFS_FS is not set | 1174 | # CONFIG_EFS_FS is not set |
1152 | # CONFIG_CRAMFS is not set | 1175 | # CONFIG_CRAMFS is not set |
1176 | # CONFIG_SQUASHFS is not set | ||
1153 | # CONFIG_VXFS_FS is not set | 1177 | # CONFIG_VXFS_FS is not set |
1154 | # CONFIG_MINIX_FS is not set | 1178 | # CONFIG_MINIX_FS is not set |
1155 | # CONFIG_OMFS_FS is not set | 1179 | # CONFIG_OMFS_FS is not set |
@@ -1207,6 +1231,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1207 | # Library routines | 1231 | # Library routines |
1208 | # | 1232 | # |
1209 | CONFIG_BITREVERSE=y | 1233 | CONFIG_BITREVERSE=y |
1234 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1210 | # CONFIG_CRC_CCITT is not set | 1235 | # CONFIG_CRC_CCITT is not set |
1211 | # CONFIG_CRC16 is not set | 1236 | # CONFIG_CRC16 is not set |
1212 | CONFIG_CRC_T10DIF=y | 1237 | CONFIG_CRC_T10DIF=y |
@@ -1238,6 +1263,8 @@ CONFIG_FRAME_WARN=1024 | |||
1238 | # CONFIG_LATENCYTOP is not set | 1263 | # CONFIG_LATENCYTOP is not set |
1239 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1264 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1240 | CONFIG_HAVE_FUNCTION_TRACER=y | 1265 | CONFIG_HAVE_FUNCTION_TRACER=y |
1266 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1267 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1241 | 1268 | ||
1242 | # | 1269 | # |
1243 | # Tracers | 1270 | # Tracers |
@@ -1245,6 +1272,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1245 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1272 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1246 | # CONFIG_SAMPLES is not set | 1273 | # CONFIG_SAMPLES is not set |
1247 | CONFIG_HAVE_ARCH_KGDB=y | 1274 | CONFIG_HAVE_ARCH_KGDB=y |
1275 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1248 | # CONFIG_IRQSTACKS is not set | 1276 | # CONFIG_IRQSTACKS is not set |
1249 | # CONFIG_BOOTX_TEXT is not set | 1277 | # CONFIG_BOOTX_TEXT is not set |
1250 | # CONFIG_PPC_EARLY_DEBUG is not set | 1278 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1267,11 +1295,15 @@ CONFIG_CRYPTO=y | |||
1267 | # | 1295 | # |
1268 | # CONFIG_CRYPTO_FIPS is not set | 1296 | # CONFIG_CRYPTO_FIPS is not set |
1269 | CONFIG_CRYPTO_ALGAPI=y | 1297 | CONFIG_CRYPTO_ALGAPI=y |
1270 | CONFIG_CRYPTO_AEAD=y | 1298 | CONFIG_CRYPTO_ALGAPI2=y |
1299 | CONFIG_CRYPTO_AEAD2=y | ||
1271 | CONFIG_CRYPTO_BLKCIPHER=y | 1300 | CONFIG_CRYPTO_BLKCIPHER=y |
1301 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1272 | CONFIG_CRYPTO_HASH=y | 1302 | CONFIG_CRYPTO_HASH=y |
1273 | CONFIG_CRYPTO_RNG=y | 1303 | CONFIG_CRYPTO_HASH2=y |
1304 | CONFIG_CRYPTO_RNG2=y | ||
1274 | CONFIG_CRYPTO_MANAGER=y | 1305 | CONFIG_CRYPTO_MANAGER=y |
1306 | CONFIG_CRYPTO_MANAGER2=y | ||
1275 | # CONFIG_CRYPTO_GF128MUL is not set | 1307 | # CONFIG_CRYPTO_GF128MUL is not set |
1276 | # CONFIG_CRYPTO_NULL is not set | 1308 | # CONFIG_CRYPTO_NULL is not set |
1277 | # CONFIG_CRYPTO_CRYPTD is not set | 1309 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/83xx/sbc834x_defconfig b/arch/powerpc/configs/83xx/sbc834x_defconfig index 54bb24a5e02a..a0c42fb65cb9 100644 --- a/arch/powerpc/configs/83xx/sbc834x_defconfig +++ b/arch/powerpc/configs/83xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:02 2008 | 4 | # Mon Jan 26 15:36:02 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 79 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -112,7 +112,6 @@ CONFIG_SLAB=y | |||
112 | # CONFIG_SLUB is not set | 112 | # CONFIG_SLUB is not set |
113 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
118 | CONFIG_HAVE_IOREMAP_PROT=y | 117 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -122,7 +121,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
127 | CONFIG_MODULES=y | 125 | CONFIG_MODULES=y |
128 | # CONFIG_MODULE_FORCE_LOAD is not set | 126 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -130,11 +128,9 @@ CONFIG_MODULE_UNLOAD=y | |||
130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 128 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
131 | # CONFIG_MODVERSIONS is not set | 129 | # CONFIG_MODVERSIONS is not set |
132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 130 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
133 | CONFIG_KMOD=y | ||
134 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
135 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 136 | ||
@@ -151,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
155 | 155 | ||
156 | # | 156 | # |
@@ -197,6 +197,8 @@ CONFIG_IPIC=y | |||
197 | # CONFIG_QUICC_ENGINE is not set | 197 | # CONFIG_QUICC_ENGINE is not set |
198 | # CONFIG_FSL_ULI1575 is not set | 198 | # CONFIG_FSL_ULI1575 is not set |
199 | # CONFIG_MPC8xxx_GPIO is not set | 199 | # CONFIG_MPC8xxx_GPIO is not set |
200 | # CONFIG_SIMPLE_GPIO is not set | ||
201 | # CONFIG_MCU_MPC8349EMITX is not set | ||
200 | 202 | ||
201 | # | 203 | # |
202 | # Kernel options | 204 | # Kernel options |
@@ -223,6 +225,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
223 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 225 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
225 | # CONFIG_KEXEC is not set | 227 | # CONFIG_KEXEC is not set |
228 | # CONFIG_CRASH_DUMP is not set | ||
226 | CONFIG_ARCH_FLATMEM_ENABLE=y | 229 | CONFIG_ARCH_FLATMEM_ENABLE=y |
227 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 230 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
228 | CONFIG_SELECT_MEMORY_MODEL=y | 231 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -234,12 +237,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
234 | CONFIG_PAGEFLAGS_EXTENDED=y | 237 | CONFIG_PAGEFLAGS_EXTENDED=y |
235 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 238 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
236 | CONFIG_MIGRATION=y | 239 | CONFIG_MIGRATION=y |
237 | # CONFIG_RESOURCES_64BIT is not set | ||
238 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 240 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
239 | CONFIG_ZONE_DMA_FLAG=1 | 241 | CONFIG_ZONE_DMA_FLAG=1 |
240 | CONFIG_BOUNCE=y | 242 | CONFIG_BOUNCE=y |
241 | CONFIG_VIRT_TO_BUS=y | 243 | CONFIG_VIRT_TO_BUS=y |
242 | CONFIG_UNEVICTABLE_LRU=y | 244 | CONFIG_UNEVICTABLE_LRU=y |
245 | CONFIG_PPC_4K_PAGES=y | ||
246 | # CONFIG_PPC_16K_PAGES is not set | ||
247 | # CONFIG_PPC_64K_PAGES is not set | ||
243 | CONFIG_FORCE_MAX_ZONEORDER=11 | 248 | CONFIG_FORCE_MAX_ZONEORDER=11 |
244 | CONFIG_PROC_DEVICETREE=y | 249 | CONFIG_PROC_DEVICETREE=y |
245 | # CONFIG_CMDLINE_BOOL is not set | 250 | # CONFIG_CMDLINE_BOOL is not set |
@@ -264,6 +269,7 @@ CONFIG_PCI_SYSCALL=y | |||
264 | CONFIG_ARCH_SUPPORTS_MSI=y | 269 | CONFIG_ARCH_SUPPORTS_MSI=y |
265 | # CONFIG_PCI_MSI is not set | 270 | # CONFIG_PCI_MSI is not set |
266 | # CONFIG_PCI_LEGACY is not set | 271 | # CONFIG_PCI_LEGACY is not set |
272 | # CONFIG_PCI_STUB is not set | ||
267 | # CONFIG_PCCARD is not set | 273 | # CONFIG_PCCARD is not set |
268 | # CONFIG_HOTPLUG_PCI is not set | 274 | # CONFIG_HOTPLUG_PCI is not set |
269 | # CONFIG_HAS_RAPIDIO is not set | 275 | # CONFIG_HAS_RAPIDIO is not set |
@@ -286,6 +292,7 @@ CONFIG_NET=y | |||
286 | # | 292 | # |
287 | # Networking options | 293 | # Networking options |
288 | # | 294 | # |
295 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
289 | CONFIG_PACKET=y | 296 | CONFIG_PACKET=y |
290 | # CONFIG_PACKET_MMAP is not set | 297 | # CONFIG_PACKET_MMAP is not set |
291 | CONFIG_UNIX=y | 298 | CONFIG_UNIX=y |
@@ -342,6 +349,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
342 | # CONFIG_ECONET is not set | 349 | # CONFIG_ECONET is not set |
343 | # CONFIG_WAN_ROUTER is not set | 350 | # CONFIG_WAN_ROUTER is not set |
344 | # CONFIG_NET_SCHED is not set | 351 | # CONFIG_NET_SCHED is not set |
352 | # CONFIG_DCB is not set | ||
345 | 353 | ||
346 | # | 354 | # |
347 | # Network testing | 355 | # Network testing |
@@ -357,8 +365,9 @@ CONFIG_WIRELESS=y | |||
357 | # CONFIG_CFG80211 is not set | 365 | # CONFIG_CFG80211 is not set |
358 | CONFIG_WIRELESS_OLD_REGULATORY=y | 366 | CONFIG_WIRELESS_OLD_REGULATORY=y |
359 | # CONFIG_WIRELESS_EXT is not set | 367 | # CONFIG_WIRELESS_EXT is not set |
368 | # CONFIG_LIB80211 is not set | ||
360 | # CONFIG_MAC80211 is not set | 369 | # CONFIG_MAC80211 is not set |
361 | # CONFIG_IEEE80211 is not set | 370 | # CONFIG_WIMAX is not set |
362 | # CONFIG_RFKILL is not set | 371 | # CONFIG_RFKILL is not set |
363 | # CONFIG_NET_9P is not set | 372 | # CONFIG_NET_9P is not set |
364 | 373 | ||
@@ -402,8 +411,10 @@ CONFIG_MISC_DEVICES=y | |||
402 | # CONFIG_EEPROM_93CX6 is not set | 411 | # CONFIG_EEPROM_93CX6 is not set |
403 | # CONFIG_SGI_IOC4 is not set | 412 | # CONFIG_SGI_IOC4 is not set |
404 | # CONFIG_TIFM_CORE is not set | 413 | # CONFIG_TIFM_CORE is not set |
414 | # CONFIG_ICS932S401 is not set | ||
405 | # CONFIG_ENCLOSURE_SERVICES is not set | 415 | # CONFIG_ENCLOSURE_SERVICES is not set |
406 | # CONFIG_HP_ILO is not set | 416 | # CONFIG_HP_ILO is not set |
417 | # CONFIG_C2PORT is not set | ||
407 | CONFIG_HAVE_IDE=y | 418 | CONFIG_HAVE_IDE=y |
408 | # CONFIG_IDE is not set | 419 | # CONFIG_IDE is not set |
409 | 420 | ||
@@ -452,6 +463,9 @@ CONFIG_PHYLIB=y | |||
452 | CONFIG_BROADCOM_PHY=y | 463 | CONFIG_BROADCOM_PHY=y |
453 | # CONFIG_ICPLUS_PHY is not set | 464 | # CONFIG_ICPLUS_PHY is not set |
454 | # CONFIG_REALTEK_PHY is not set | 465 | # CONFIG_REALTEK_PHY is not set |
466 | # CONFIG_NATIONAL_PHY is not set | ||
467 | # CONFIG_STE10XP is not set | ||
468 | # CONFIG_LSI_ET1011C_PHY is not set | ||
455 | # CONFIG_FIXED_PHY is not set | 469 | # CONFIG_FIXED_PHY is not set |
456 | # CONFIG_MDIO_BITBANG is not set | 470 | # CONFIG_MDIO_BITBANG is not set |
457 | CONFIG_NET_ETHERNET=y | 471 | CONFIG_NET_ETHERNET=y |
@@ -504,6 +518,10 @@ CONFIG_GIANFAR=y | |||
504 | # CONFIG_WLAN_PRE80211 is not set | 518 | # CONFIG_WLAN_PRE80211 is not set |
505 | # CONFIG_WLAN_80211 is not set | 519 | # CONFIG_WLAN_80211 is not set |
506 | # CONFIG_IWLWIFI_LEDS is not set | 520 | # CONFIG_IWLWIFI_LEDS is not set |
521 | |||
522 | # | ||
523 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
524 | # | ||
507 | # CONFIG_WAN is not set | 525 | # CONFIG_WAN is not set |
508 | # CONFIG_FDDI is not set | 526 | # CONFIG_FDDI is not set |
509 | # CONFIG_HIPPI is not set | 527 | # CONFIG_HIPPI is not set |
@@ -573,8 +591,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
573 | # CONFIG_SERIAL_JSM is not set | 591 | # CONFIG_SERIAL_JSM is not set |
574 | # CONFIG_SERIAL_OF_PLATFORM is not set | 592 | # CONFIG_SERIAL_OF_PLATFORM is not set |
575 | CONFIG_UNIX98_PTYS=y | 593 | CONFIG_UNIX98_PTYS=y |
594 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
576 | CONFIG_LEGACY_PTYS=y | 595 | CONFIG_LEGACY_PTYS=y |
577 | CONFIG_LEGACY_PTY_COUNT=256 | 596 | CONFIG_LEGACY_PTY_COUNT=256 |
597 | # CONFIG_HVC_UDBG is not set | ||
578 | # CONFIG_IPMI_HANDLER is not set | 598 | # CONFIG_IPMI_HANDLER is not set |
579 | # CONFIG_HW_RANDOM is not set | 599 | # CONFIG_HW_RANDOM is not set |
580 | # CONFIG_NVRAM is not set | 600 | # CONFIG_NVRAM is not set |
@@ -648,7 +668,6 @@ CONFIG_I2C_MPC=y | |||
648 | # CONFIG_SENSORS_PCF8591 is not set | 668 | # CONFIG_SENSORS_PCF8591 is not set |
649 | # CONFIG_SENSORS_MAX6875 is not set | 669 | # CONFIG_SENSORS_MAX6875 is not set |
650 | # CONFIG_SENSORS_TSL2550 is not set | 670 | # CONFIG_SENSORS_TSL2550 is not set |
651 | # CONFIG_MCU_MPC8349EMITX is not set | ||
652 | # CONFIG_I2C_DEBUG_CORE is not set | 671 | # CONFIG_I2C_DEBUG_CORE is not set |
653 | # CONFIG_I2C_DEBUG_ALGO is not set | 672 | # CONFIG_I2C_DEBUG_ALGO is not set |
654 | # CONFIG_I2C_DEBUG_BUS is not set | 673 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -668,8 +687,10 @@ CONFIG_HWMON=y | |||
668 | # CONFIG_SENSORS_ADM1029 is not set | 687 | # CONFIG_SENSORS_ADM1029 is not set |
669 | # CONFIG_SENSORS_ADM1031 is not set | 688 | # CONFIG_SENSORS_ADM1031 is not set |
670 | # CONFIG_SENSORS_ADM9240 is not set | 689 | # CONFIG_SENSORS_ADM9240 is not set |
690 | # CONFIG_SENSORS_ADT7462 is not set | ||
671 | # CONFIG_SENSORS_ADT7470 is not set | 691 | # CONFIG_SENSORS_ADT7470 is not set |
672 | # CONFIG_SENSORS_ADT7473 is not set | 692 | # CONFIG_SENSORS_ADT7473 is not set |
693 | # CONFIG_SENSORS_ADT7475 is not set | ||
673 | # CONFIG_SENSORS_ATXP1 is not set | 694 | # CONFIG_SENSORS_ATXP1 is not set |
674 | # CONFIG_SENSORS_DS1621 is not set | 695 | # CONFIG_SENSORS_DS1621 is not set |
675 | # CONFIG_SENSORS_I5K_AMB is not set | 696 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -690,6 +711,7 @@ CONFIG_HWMON=y | |||
690 | # CONFIG_SENSORS_LM90 is not set | 711 | # CONFIG_SENSORS_LM90 is not set |
691 | # CONFIG_SENSORS_LM92 is not set | 712 | # CONFIG_SENSORS_LM92 is not set |
692 | # CONFIG_SENSORS_LM93 is not set | 713 | # CONFIG_SENSORS_LM93 is not set |
714 | # CONFIG_SENSORS_LTC4245 is not set | ||
693 | # CONFIG_SENSORS_MAX1619 is not set | 715 | # CONFIG_SENSORS_MAX1619 is not set |
694 | # CONFIG_SENSORS_MAX6650 is not set | 716 | # CONFIG_SENSORS_MAX6650 is not set |
695 | # CONFIG_SENSORS_PC87360 is not set | 717 | # CONFIG_SENSORS_PC87360 is not set |
@@ -730,11 +752,11 @@ CONFIG_WATCHDOG=y | |||
730 | # | 752 | # |
731 | # CONFIG_PCIPCWATCHDOG is not set | 753 | # CONFIG_PCIPCWATCHDOG is not set |
732 | # CONFIG_WDTPCI is not set | 754 | # CONFIG_WDTPCI is not set |
755 | CONFIG_SSB_POSSIBLE=y | ||
733 | 756 | ||
734 | # | 757 | # |
735 | # Sonics Silicon Backplane | 758 | # Sonics Silicon Backplane |
736 | # | 759 | # |
737 | CONFIG_SSB_POSSIBLE=y | ||
738 | # CONFIG_SSB is not set | 760 | # CONFIG_SSB is not set |
739 | 761 | ||
740 | # | 762 | # |
@@ -743,18 +765,13 @@ CONFIG_SSB_POSSIBLE=y | |||
743 | # CONFIG_MFD_CORE is not set | 765 | # CONFIG_MFD_CORE is not set |
744 | # CONFIG_MFD_SM501 is not set | 766 | # CONFIG_MFD_SM501 is not set |
745 | # CONFIG_HTC_PASIC3 is not set | 767 | # CONFIG_HTC_PASIC3 is not set |
768 | # CONFIG_TWL4030_CORE is not set | ||
746 | # CONFIG_MFD_TMIO is not set | 769 | # CONFIG_MFD_TMIO is not set |
747 | # CONFIG_PMIC_DA903X is not set | 770 | # CONFIG_PMIC_DA903X is not set |
748 | # CONFIG_MFD_WM8400 is not set | 771 | # CONFIG_MFD_WM8400 is not set |
749 | # CONFIG_MFD_WM8350_I2C is not set | 772 | # CONFIG_MFD_WM8350_I2C is not set |
750 | 773 | # CONFIG_MFD_PCF50633 is not set | |
751 | # | ||
752 | # Voltage and Current regulators | ||
753 | # | ||
754 | # CONFIG_REGULATOR is not set | 774 | # CONFIG_REGULATOR is not set |
755 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
756 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
757 | # CONFIG_REGULATOR_BQ24022 is not set | ||
758 | 775 | ||
759 | # | 776 | # |
760 | # Multimedia devices | 777 | # Multimedia devices |
@@ -822,6 +839,7 @@ CONFIG_HID_COMPAT=y | |||
822 | CONFIG_FILE_LOCKING=y | 839 | CONFIG_FILE_LOCKING=y |
823 | # CONFIG_XFS_FS is not set | 840 | # CONFIG_XFS_FS is not set |
824 | # CONFIG_OCFS2_FS is not set | 841 | # CONFIG_OCFS2_FS is not set |
842 | # CONFIG_BTRFS_FS is not set | ||
825 | CONFIG_DNOTIFY=y | 843 | CONFIG_DNOTIFY=y |
826 | CONFIG_INOTIFY=y | 844 | CONFIG_INOTIFY=y |
827 | CONFIG_INOTIFY_USER=y | 845 | CONFIG_INOTIFY_USER=y |
@@ -855,10 +873,7 @@ CONFIG_TMPFS=y | |||
855 | # CONFIG_TMPFS_POSIX_ACL is not set | 873 | # CONFIG_TMPFS_POSIX_ACL is not set |
856 | # CONFIG_HUGETLB_PAGE is not set | 874 | # CONFIG_HUGETLB_PAGE is not set |
857 | # CONFIG_CONFIGFS_FS is not set | 875 | # CONFIG_CONFIGFS_FS is not set |
858 | 876 | CONFIG_MISC_FILESYSTEMS=y | |
859 | # | ||
860 | # Miscellaneous filesystems | ||
861 | # | ||
862 | # CONFIG_ADFS_FS is not set | 877 | # CONFIG_ADFS_FS is not set |
863 | # CONFIG_AFFS_FS is not set | 878 | # CONFIG_AFFS_FS is not set |
864 | # CONFIG_HFS_FS is not set | 879 | # CONFIG_HFS_FS is not set |
@@ -867,6 +882,7 @@ CONFIG_TMPFS=y | |||
867 | # CONFIG_BFS_FS is not set | 882 | # CONFIG_BFS_FS is not set |
868 | # CONFIG_EFS_FS is not set | 883 | # CONFIG_EFS_FS is not set |
869 | # CONFIG_CRAMFS is not set | 884 | # CONFIG_CRAMFS is not set |
885 | # CONFIG_SQUASHFS is not set | ||
870 | # CONFIG_VXFS_FS is not set | 886 | # CONFIG_VXFS_FS is not set |
871 | # CONFIG_MINIX_FS is not set | 887 | # CONFIG_MINIX_FS is not set |
872 | # CONFIG_OMFS_FS is not set | 888 | # CONFIG_OMFS_FS is not set |
@@ -908,6 +924,7 @@ CONFIG_MSDOS_PARTITION=y | |||
908 | # Library routines | 924 | # Library routines |
909 | # | 925 | # |
910 | CONFIG_BITREVERSE=y | 926 | CONFIG_BITREVERSE=y |
927 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
911 | # CONFIG_CRC_CCITT is not set | 928 | # CONFIG_CRC_CCITT is not set |
912 | # CONFIG_CRC16 is not set | 929 | # CONFIG_CRC16 is not set |
913 | # CONFIG_CRC_T10DIF is not set | 930 | # CONFIG_CRC_T10DIF is not set |
@@ -939,6 +956,8 @@ CONFIG_FRAME_WARN=1024 | |||
939 | # CONFIG_LATENCYTOP is not set | 956 | # CONFIG_LATENCYTOP is not set |
940 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
941 | CONFIG_HAVE_FUNCTION_TRACER=y | 958 | CONFIG_HAVE_FUNCTION_TRACER=y |
959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
942 | 961 | ||
943 | # | 962 | # |
944 | # Tracers | 963 | # Tracers |
@@ -946,6 +965,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
946 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 965 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
947 | # CONFIG_SAMPLES is not set | 966 | # CONFIG_SAMPLES is not set |
948 | CONFIG_HAVE_ARCH_KGDB=y | 967 | CONFIG_HAVE_ARCH_KGDB=y |
968 | CONFIG_PRINT_STACK_DEPTH=64 | ||
949 | # CONFIG_IRQSTACKS is not set | 969 | # CONFIG_IRQSTACKS is not set |
950 | # CONFIG_BOOTX_TEXT is not set | 970 | # CONFIG_BOOTX_TEXT is not set |
951 | # CONFIG_PPC_EARLY_DEBUG is not set | 971 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -964,11 +984,15 @@ CONFIG_CRYPTO=y | |||
964 | # | 984 | # |
965 | # CONFIG_CRYPTO_FIPS is not set | 985 | # CONFIG_CRYPTO_FIPS is not set |
966 | CONFIG_CRYPTO_ALGAPI=y | 986 | CONFIG_CRYPTO_ALGAPI=y |
967 | CONFIG_CRYPTO_AEAD=y | 987 | CONFIG_CRYPTO_ALGAPI2=y |
988 | CONFIG_CRYPTO_AEAD2=y | ||
968 | CONFIG_CRYPTO_BLKCIPHER=y | 989 | CONFIG_CRYPTO_BLKCIPHER=y |
990 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
969 | CONFIG_CRYPTO_HASH=y | 991 | CONFIG_CRYPTO_HASH=y |
970 | CONFIG_CRYPTO_RNG=y | 992 | CONFIG_CRYPTO_HASH2=y |
993 | CONFIG_CRYPTO_RNG2=y | ||
971 | CONFIG_CRYPTO_MANAGER=y | 994 | CONFIG_CRYPTO_MANAGER=y |
995 | CONFIG_CRYPTO_MANAGER2=y | ||
972 | # CONFIG_CRYPTO_GF128MUL is not set | 996 | # CONFIG_CRYPTO_GF128MUL is not set |
973 | # CONFIG_CRYPTO_NULL is not set | 997 | # CONFIG_CRYPTO_NULL is not set |
974 | # CONFIG_CRYPTO_CRYPTD is not set | 998 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/ksi8560_defconfig b/arch/powerpc/configs/85xx/ksi8560_defconfig index 1af7b9e37b61..6479bb9f3f57 100644 --- a/arch/powerpc/configs/85xx/ksi8560_defconfig +++ b/arch/powerpc/configs/85xx/ksi8560_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:03 2008 | 4 | # Mon Jan 26 15:36:03 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,8 +78,8 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | # CONFIG_GROUP_SCHED is not set | 81 | # CONFIG_GROUP_SCHED is not set |
82 | # CONFIG_CGROUPS is not set | ||
81 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
82 | CONFIG_SYSFS_DEPRECATED_V2=y | 84 | CONFIG_SYSFS_DEPRECATED_V2=y |
83 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
@@ -111,7 +113,6 @@ CONFIG_SLUB_DEBUG=y | |||
111 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
112 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
117 | CONFIG_HAVE_IOREMAP_PROT=y | 118 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -122,13 +123,11 @@ CONFIG_HAVE_CLK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 126 | CONFIG_BASE_SMALL=0 |
127 | # CONFIG_MODULES is not set | 127 | # CONFIG_MODULES is not set |
128 | CONFIG_BLOCK=y | 128 | CONFIG_BLOCK=y |
129 | # CONFIG_LBD is not set | 129 | # CONFIG_LBD is not set |
130 | # CONFIG_BLK_DEV_IO_TRACE is not set | 130 | # CONFIG_BLK_DEV_IO_TRACE is not set |
131 | # CONFIG_LSF is not set | ||
132 | # CONFIG_BLK_DEV_BSG is not set | 131 | # CONFIG_BLK_DEV_BSG is not set |
133 | # CONFIG_BLK_DEV_INTEGRITY is not set | 132 | # CONFIG_BLK_DEV_INTEGRITY is not set |
134 | 133 | ||
@@ -145,6 +144,10 @@ CONFIG_DEFAULT_AS=y | |||
145 | # CONFIG_DEFAULT_NOOP is not set | 144 | # CONFIG_DEFAULT_NOOP is not set |
146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 145 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
147 | CONFIG_CLASSIC_RCU=y | 146 | CONFIG_CLASSIC_RCU=y |
147 | # CONFIG_TREE_RCU is not set | ||
148 | # CONFIG_PREEMPT_RCU is not set | ||
149 | # CONFIG_TREE_RCU_TRACE is not set | ||
150 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
148 | # CONFIG_FREEZER is not set | 151 | # CONFIG_FREEZER is not set |
149 | 152 | ||
150 | # | 153 | # |
@@ -185,6 +188,7 @@ CONFIG_CPM2=y | |||
185 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
186 | CONFIG_CPM=y | 189 | CONFIG_CPM=y |
187 | # CONFIG_MPC8xxx_GPIO is not set | 190 | # CONFIG_MPC8xxx_GPIO is not set |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 192 | ||
189 | # | 193 | # |
190 | # Kernel options | 194 | # Kernel options |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | # CONFIG_PROC_DEVICETREE is not set | 238 | # CONFIG_PROC_DEVICETREE is not set |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -268,6 +274,7 @@ CONFIG_NET=y | |||
268 | # | 274 | # |
269 | # Networking options | 275 | # Networking options |
270 | # | 276 | # |
277 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
271 | CONFIG_PACKET=y | 278 | CONFIG_PACKET=y |
272 | # CONFIG_PACKET_MMAP is not set | 279 | # CONFIG_PACKET_MMAP is not set |
273 | CONFIG_UNIX=y | 280 | CONFIG_UNIX=y |
@@ -324,6 +331,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
324 | # CONFIG_ECONET is not set | 331 | # CONFIG_ECONET is not set |
325 | # CONFIG_WAN_ROUTER is not set | 332 | # CONFIG_WAN_ROUTER is not set |
326 | # CONFIG_NET_SCHED is not set | 333 | # CONFIG_NET_SCHED is not set |
334 | # CONFIG_DCB is not set | ||
327 | 335 | ||
328 | # | 336 | # |
329 | # Network testing | 337 | # Network testing |
@@ -339,8 +347,9 @@ CONFIG_WIRELESS=y | |||
339 | # CONFIG_CFG80211 is not set | 347 | # CONFIG_CFG80211 is not set |
340 | CONFIG_WIRELESS_OLD_REGULATORY=y | 348 | CONFIG_WIRELESS_OLD_REGULATORY=y |
341 | # CONFIG_WIRELESS_EXT is not set | 349 | # CONFIG_WIRELESS_EXT is not set |
350 | # CONFIG_LIB80211 is not set | ||
342 | # CONFIG_MAC80211 is not set | 351 | # CONFIG_MAC80211 is not set |
343 | # CONFIG_IEEE80211 is not set | 352 | # CONFIG_WIMAX is not set |
344 | # CONFIG_RFKILL is not set | 353 | # CONFIG_RFKILL is not set |
345 | # CONFIG_NET_9P is not set | 354 | # CONFIG_NET_9P is not set |
346 | 355 | ||
@@ -432,6 +441,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
432 | # CONFIG_MTD_ONENAND is not set | 441 | # CONFIG_MTD_ONENAND is not set |
433 | 442 | ||
434 | # | 443 | # |
444 | # LPDDR flash memory drivers | ||
445 | # | ||
446 | # CONFIG_MTD_LPDDR is not set | ||
447 | # CONFIG_MTD_QINFO_PROBE is not set | ||
448 | |||
449 | # | ||
435 | # UBI - Unsorted block images | 450 | # UBI - Unsorted block images |
436 | # | 451 | # |
437 | # CONFIG_MTD_UBI is not set | 452 | # CONFIG_MTD_UBI is not set |
@@ -454,6 +469,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
454 | CONFIG_MISC_DEVICES=y | 469 | CONFIG_MISC_DEVICES=y |
455 | # CONFIG_EEPROM_93CX6 is not set | 470 | # CONFIG_EEPROM_93CX6 is not set |
456 | # CONFIG_ENCLOSURE_SERVICES is not set | 471 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_C2PORT is not set | ||
457 | CONFIG_HAVE_IDE=y | 473 | CONFIG_HAVE_IDE=y |
458 | CONFIG_IDE=y | 474 | CONFIG_IDE=y |
459 | 475 | ||
@@ -507,9 +523,12 @@ CONFIG_MARVELL_PHY=y | |||
507 | # CONFIG_BROADCOM_PHY is not set | 523 | # CONFIG_BROADCOM_PHY is not set |
508 | # CONFIG_ICPLUS_PHY is not set | 524 | # CONFIG_ICPLUS_PHY is not set |
509 | # CONFIG_REALTEK_PHY is not set | 525 | # CONFIG_REALTEK_PHY is not set |
526 | # CONFIG_NATIONAL_PHY is not set | ||
527 | # CONFIG_STE10XP is not set | ||
528 | # CONFIG_LSI_ET1011C_PHY is not set | ||
510 | # CONFIG_FIXED_PHY is not set | 529 | # CONFIG_FIXED_PHY is not set |
511 | CONFIG_MDIO_BITBANG=y | 530 | CONFIG_MDIO_BITBANG=y |
512 | # CONFIG_MDIO_OF_GPIO is not set | 531 | # CONFIG_MDIO_GPIO is not set |
513 | CONFIG_NET_ETHERNET=y | 532 | CONFIG_NET_ETHERNET=y |
514 | CONFIG_MII=y | 533 | CONFIG_MII=y |
515 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 534 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -534,6 +553,10 @@ CONFIG_NETDEV_10000=y | |||
534 | # CONFIG_WLAN_PRE80211 is not set | 553 | # CONFIG_WLAN_PRE80211 is not set |
535 | # CONFIG_WLAN_80211 is not set | 554 | # CONFIG_WLAN_80211 is not set |
536 | # CONFIG_IWLWIFI_LEDS is not set | 555 | # CONFIG_IWLWIFI_LEDS is not set |
556 | |||
557 | # | ||
558 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
559 | # | ||
537 | # CONFIG_WAN is not set | 560 | # CONFIG_WAN is not set |
538 | # CONFIG_PPP is not set | 561 | # CONFIG_PPP is not set |
539 | # CONFIG_SLIP is not set | 562 | # CONFIG_SLIP is not set |
@@ -595,8 +618,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
595 | CONFIG_SERIAL_CPM=y | 618 | CONFIG_SERIAL_CPM=y |
596 | CONFIG_SERIAL_CPM_CONSOLE=y | 619 | CONFIG_SERIAL_CPM_CONSOLE=y |
597 | CONFIG_UNIX98_PTYS=y | 620 | CONFIG_UNIX98_PTYS=y |
621 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
598 | CONFIG_LEGACY_PTYS=y | 622 | CONFIG_LEGACY_PTYS=y |
599 | CONFIG_LEGACY_PTY_COUNT=256 | 623 | CONFIG_LEGACY_PTY_COUNT=256 |
624 | # CONFIG_HVC_UDBG is not set | ||
600 | # CONFIG_IPMI_HANDLER is not set | 625 | # CONFIG_IPMI_HANDLER is not set |
601 | CONFIG_HW_RANDOM=y | 626 | CONFIG_HW_RANDOM=y |
602 | # CONFIG_NVRAM is not set | 627 | # CONFIG_NVRAM is not set |
@@ -614,6 +639,11 @@ CONFIG_GPIOLIB=y | |||
614 | # CONFIG_GPIO_SYSFS is not set | 639 | # CONFIG_GPIO_SYSFS is not set |
615 | 640 | ||
616 | # | 641 | # |
642 | # Memory mapped GPIO expanders: | ||
643 | # | ||
644 | # CONFIG_GPIO_XILINX is not set | ||
645 | |||
646 | # | ||
617 | # I2C GPIO expanders: | 647 | # I2C GPIO expanders: |
618 | # | 648 | # |
619 | 649 | ||
@@ -642,11 +672,11 @@ CONFIG_HWMON=y | |||
642 | # CONFIG_THERMAL is not set | 672 | # CONFIG_THERMAL is not set |
643 | # CONFIG_THERMAL_HWMON is not set | 673 | # CONFIG_THERMAL_HWMON is not set |
644 | # CONFIG_WATCHDOG is not set | 674 | # CONFIG_WATCHDOG is not set |
675 | CONFIG_SSB_POSSIBLE=y | ||
645 | 676 | ||
646 | # | 677 | # |
647 | # Sonics Silicon Backplane | 678 | # Sonics Silicon Backplane |
648 | # | 679 | # |
649 | CONFIG_SSB_POSSIBLE=y | ||
650 | # CONFIG_SSB is not set | 680 | # CONFIG_SSB is not set |
651 | 681 | ||
652 | # | 682 | # |
@@ -656,14 +686,7 @@ CONFIG_SSB_POSSIBLE=y | |||
656 | # CONFIG_MFD_SM501 is not set | 686 | # CONFIG_MFD_SM501 is not set |
657 | # CONFIG_HTC_PASIC3 is not set | 687 | # CONFIG_HTC_PASIC3 is not set |
658 | # CONFIG_MFD_TMIO is not set | 688 | # CONFIG_MFD_TMIO is not set |
659 | |||
660 | # | ||
661 | # Voltage and Current regulators | ||
662 | # | ||
663 | # CONFIG_REGULATOR is not set | 689 | # CONFIG_REGULATOR is not set |
664 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
665 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
666 | # CONFIG_REGULATOR_BQ24022 is not set | ||
667 | 690 | ||
668 | # | 691 | # |
669 | # Multimedia devices | 692 | # Multimedia devices |
@@ -716,9 +739,13 @@ CONFIG_USB_SUPPORT=y | |||
716 | # | 739 | # |
717 | 740 | ||
718 | # | 741 | # |
719 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 742 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
720 | # | 743 | # |
721 | # CONFIG_USB_GADGET is not set | 744 | # CONFIG_USB_GADGET is not set |
745 | |||
746 | # | ||
747 | # OTG and related infrastructure | ||
748 | # | ||
722 | # CONFIG_MMC is not set | 749 | # CONFIG_MMC is not set |
723 | # CONFIG_MEMSTICK is not set | 750 | # CONFIG_MEMSTICK is not set |
724 | # CONFIG_NEW_LEDS is not set | 751 | # CONFIG_NEW_LEDS is not set |
@@ -749,6 +776,7 @@ CONFIG_FS_MBCACHE=y | |||
749 | CONFIG_FILE_LOCKING=y | 776 | CONFIG_FILE_LOCKING=y |
750 | # CONFIG_XFS_FS is not set | 777 | # CONFIG_XFS_FS is not set |
751 | # CONFIG_OCFS2_FS is not set | 778 | # CONFIG_OCFS2_FS is not set |
779 | # CONFIG_BTRFS_FS is not set | ||
752 | CONFIG_DNOTIFY=y | 780 | CONFIG_DNOTIFY=y |
753 | CONFIG_INOTIFY=y | 781 | CONFIG_INOTIFY=y |
754 | CONFIG_INOTIFY_USER=y | 782 | CONFIG_INOTIFY_USER=y |
@@ -782,10 +810,7 @@ CONFIG_TMPFS=y | |||
782 | # CONFIG_TMPFS_POSIX_ACL is not set | 810 | # CONFIG_TMPFS_POSIX_ACL is not set |
783 | # CONFIG_HUGETLB_PAGE is not set | 811 | # CONFIG_HUGETLB_PAGE is not set |
784 | # CONFIG_CONFIGFS_FS is not set | 812 | # CONFIG_CONFIGFS_FS is not set |
785 | 813 | CONFIG_MISC_FILESYSTEMS=y | |
786 | # | ||
787 | # Miscellaneous filesystems | ||
788 | # | ||
789 | # CONFIG_ADFS_FS is not set | 814 | # CONFIG_ADFS_FS is not set |
790 | # CONFIG_AFFS_FS is not set | 815 | # CONFIG_AFFS_FS is not set |
791 | # CONFIG_HFS_FS is not set | 816 | # CONFIG_HFS_FS is not set |
@@ -795,6 +820,7 @@ CONFIG_TMPFS=y | |||
795 | # CONFIG_EFS_FS is not set | 820 | # CONFIG_EFS_FS is not set |
796 | # CONFIG_JFFS2_FS is not set | 821 | # CONFIG_JFFS2_FS is not set |
797 | # CONFIG_CRAMFS is not set | 822 | # CONFIG_CRAMFS is not set |
823 | # CONFIG_SQUASHFS is not set | ||
798 | # CONFIG_VXFS_FS is not set | 824 | # CONFIG_VXFS_FS is not set |
799 | # CONFIG_MINIX_FS is not set | 825 | # CONFIG_MINIX_FS is not set |
800 | # CONFIG_OMFS_FS is not set | 826 | # CONFIG_OMFS_FS is not set |
@@ -845,6 +871,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
845 | # Library routines | 871 | # Library routines |
846 | # | 872 | # |
847 | CONFIG_BITREVERSE=y | 873 | CONFIG_BITREVERSE=y |
874 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
848 | # CONFIG_CRC_CCITT is not set | 875 | # CONFIG_CRC_CCITT is not set |
849 | # CONFIG_CRC16 is not set | 876 | # CONFIG_CRC16 is not set |
850 | # CONFIG_CRC_T10DIF is not set | 877 | # CONFIG_CRC_T10DIF is not set |
@@ -895,6 +922,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
895 | # CONFIG_DEBUG_MEMORY_INIT is not set | 922 | # CONFIG_DEBUG_MEMORY_INIT is not set |
896 | # CONFIG_DEBUG_LIST is not set | 923 | # CONFIG_DEBUG_LIST is not set |
897 | # CONFIG_DEBUG_SG is not set | 924 | # CONFIG_DEBUG_SG is not set |
925 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
898 | # CONFIG_BOOT_PRINTK_DELAY is not set | 926 | # CONFIG_BOOT_PRINTK_DELAY is not set |
899 | # CONFIG_RCU_TORTURE_TEST is not set | 927 | # CONFIG_RCU_TORTURE_TEST is not set |
900 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 928 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -904,6 +932,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
904 | # CONFIG_LATENCYTOP is not set | 932 | # CONFIG_LATENCYTOP is not set |
905 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 933 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
906 | CONFIG_HAVE_FUNCTION_TRACER=y | 934 | CONFIG_HAVE_FUNCTION_TRACER=y |
935 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
936 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
907 | 937 | ||
908 | # | 938 | # |
909 | # Tracers | 939 | # Tracers |
@@ -912,11 +942,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
912 | # CONFIG_SCHED_TRACER is not set | 942 | # CONFIG_SCHED_TRACER is not set |
913 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 943 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
914 | # CONFIG_BOOT_TRACER is not set | 944 | # CONFIG_BOOT_TRACER is not set |
945 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
915 | # CONFIG_STACK_TRACER is not set | 946 | # CONFIG_STACK_TRACER is not set |
916 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 947 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
917 | # CONFIG_SAMPLES is not set | 948 | # CONFIG_SAMPLES is not set |
918 | CONFIG_HAVE_ARCH_KGDB=y | 949 | CONFIG_HAVE_ARCH_KGDB=y |
919 | # CONFIG_KGDB is not set | 950 | # CONFIG_KGDB is not set |
951 | CONFIG_PRINT_STACK_DEPTH=64 | ||
920 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 952 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
921 | # CONFIG_DEBUG_STACK_USAGE is not set | 953 | # CONFIG_DEBUG_STACK_USAGE is not set |
922 | # CONFIG_DEBUG_PAGEALLOC is not set | 954 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -943,6 +975,7 @@ CONFIG_CRYPTO=y | |||
943 | # | 975 | # |
944 | # CONFIG_CRYPTO_FIPS is not set | 976 | # CONFIG_CRYPTO_FIPS is not set |
945 | # CONFIG_CRYPTO_MANAGER is not set | 977 | # CONFIG_CRYPTO_MANAGER is not set |
978 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
946 | # CONFIG_CRYPTO_GF128MUL is not set | 979 | # CONFIG_CRYPTO_GF128MUL is not set |
947 | # CONFIG_CRYPTO_NULL is not set | 980 | # CONFIG_CRYPTO_NULL is not set |
948 | # CONFIG_CRYPTO_CRYPTD is not set | 981 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8536_ds_defconfig b/arch/powerpc/configs/85xx/mpc8536_ds_defconfig index 256055cb6d2f..e31b6a4732ed 100644 --- a/arch/powerpc/configs/85xx/mpc8536_ds_defconfig +++ b/arch/powerpc/configs/85xx/mpc8536_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:05 2008 | 4 | # Mon Jan 26 15:36:04 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -78,12 +80,12 @@ CONFIG_AUDIT=y | |||
78 | CONFIG_IKCONFIG=y | 80 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 81 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 82 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 83 | CONFIG_GROUP_SCHED=y |
83 | # CONFIG_FAIR_GROUP_SCHED is not set | 84 | # CONFIG_FAIR_GROUP_SCHED is not set |
84 | # CONFIG_RT_GROUP_SCHED is not set | 85 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 86 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 87 | # CONFIG_CGROUP_SCHED is not set |
88 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 89 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 90 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 91 | # CONFIG_RELAY is not set |
@@ -96,6 +98,7 @@ CONFIG_EMBEDDED=y | |||
96 | CONFIG_SYSCTL_SYSCALL=y | 98 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 99 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 100 | CONFIG_KALLSYMS_ALL=y |
101 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 102 | CONFIG_KALLSYMS_EXTRA_PASS=y |
100 | CONFIG_HOTPLUG=y | 103 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 104 | CONFIG_PRINTK=y |
@@ -118,7 +121,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 121 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 122 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 123 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 124 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 125 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +131,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 134 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 135 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 136 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,11 +138,9 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | CONFIG_MODULE_FORCE_UNLOAD=y | 138 | CONFIG_MODULE_FORCE_UNLOAD=y |
138 | CONFIG_MODVERSIONS=y | 139 | CONFIG_MODVERSIONS=y |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 140 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
142 | CONFIG_LBD=y | 142 | CONFIG_LBD=y |
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
144 | # CONFIG_LSF is not set | ||
145 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
146 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
147 | 146 | ||
@@ -158,6 +157,10 @@ CONFIG_DEFAULT_CFQ=y | |||
158 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
159 | CONFIG_DEFAULT_IOSCHED="cfq" | 158 | CONFIG_DEFAULT_IOSCHED="cfq" |
160 | CONFIG_CLASSIC_RCU=y | 159 | CONFIG_CLASSIC_RCU=y |
160 | # CONFIG_TREE_RCU is not set | ||
161 | # CONFIG_PREEMPT_RCU is not set | ||
162 | # CONFIG_TREE_RCU_TRACE is not set | ||
163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
161 | # CONFIG_FREEZER is not set | 164 | # CONFIG_FREEZER is not set |
162 | 165 | ||
163 | # | 166 | # |
@@ -197,6 +200,7 @@ CONFIG_MPIC=y | |||
197 | # CONFIG_CPM2 is not set | 200 | # CONFIG_CPM2 is not set |
198 | # CONFIG_FSL_ULI1575 is not set | 201 | # CONFIG_FSL_ULI1575 is not set |
199 | # CONFIG_MPC8xxx_GPIO is not set | 202 | # CONFIG_MPC8xxx_GPIO is not set |
203 | # CONFIG_SIMPLE_GPIO is not set | ||
200 | 204 | ||
201 | # | 205 | # |
202 | # Kernel options | 206 | # Kernel options |
@@ -235,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
235 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
236 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
237 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
238 | # CONFIG_RESOURCES_64BIT is not set | ||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
241 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -265,6 +271,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
265 | # CONFIG_PCI_MSI is not set | 271 | # CONFIG_PCI_MSI is not set |
266 | # CONFIG_PCI_LEGACY is not set | 272 | # CONFIG_PCI_LEGACY is not set |
267 | # CONFIG_PCI_DEBUG is not set | 273 | # CONFIG_PCI_DEBUG is not set |
274 | # CONFIG_PCI_STUB is not set | ||
268 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
269 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
270 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +295,7 @@ CONFIG_NET=y | |||
288 | # | 295 | # |
289 | # Networking options | 296 | # Networking options |
290 | # | 297 | # |
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -376,6 +384,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
376 | # CONFIG_ECONET is not set | 384 | # CONFIG_ECONET is not set |
377 | # CONFIG_WAN_ROUTER is not set | 385 | # CONFIG_WAN_ROUTER is not set |
378 | # CONFIG_NET_SCHED is not set | 386 | # CONFIG_NET_SCHED is not set |
387 | # CONFIG_DCB is not set | ||
379 | 388 | ||
380 | # | 389 | # |
381 | # Network testing | 390 | # Network testing |
@@ -392,8 +401,9 @@ CONFIG_WIRELESS=y | |||
392 | # CONFIG_CFG80211 is not set | 401 | # CONFIG_CFG80211 is not set |
393 | CONFIG_WIRELESS_OLD_REGULATORY=y | 402 | CONFIG_WIRELESS_OLD_REGULATORY=y |
394 | # CONFIG_WIRELESS_EXT is not set | 403 | # CONFIG_WIRELESS_EXT is not set |
404 | # CONFIG_LIB80211 is not set | ||
395 | # CONFIG_MAC80211 is not set | 405 | # CONFIG_MAC80211 is not set |
396 | # CONFIG_IEEE80211 is not set | 406 | # CONFIG_WIMAX is not set |
397 | # CONFIG_RFKILL is not set | 407 | # CONFIG_RFKILL is not set |
398 | # CONFIG_NET_9P is not set | 408 | # CONFIG_NET_9P is not set |
399 | 409 | ||
@@ -442,8 +452,10 @@ CONFIG_MISC_DEVICES=y | |||
442 | # CONFIG_EEPROM_93CX6 is not set | 452 | # CONFIG_EEPROM_93CX6 is not set |
443 | # CONFIG_SGI_IOC4 is not set | 453 | # CONFIG_SGI_IOC4 is not set |
444 | # CONFIG_TIFM_CORE is not set | 454 | # CONFIG_TIFM_CORE is not set |
455 | # CONFIG_ICS932S401 is not set | ||
445 | # CONFIG_ENCLOSURE_SERVICES is not set | 456 | # CONFIG_ENCLOSURE_SERVICES is not set |
446 | # CONFIG_HP_ILO is not set | 457 | # CONFIG_HP_ILO is not set |
458 | # CONFIG_C2PORT is not set | ||
447 | CONFIG_HAVE_IDE=y | 459 | CONFIG_HAVE_IDE=y |
448 | # CONFIG_IDE is not set | 460 | # CONFIG_IDE is not set |
449 | 461 | ||
@@ -487,6 +499,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
487 | # CONFIG_SCSI_SRP_ATTRS is not set | 499 | # CONFIG_SCSI_SRP_ATTRS is not set |
488 | CONFIG_SCSI_LOWLEVEL=y | 500 | CONFIG_SCSI_LOWLEVEL=y |
489 | # CONFIG_ISCSI_TCP is not set | 501 | # CONFIG_ISCSI_TCP is not set |
502 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
490 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 503 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
491 | # CONFIG_SCSI_3W_9XXX is not set | 504 | # CONFIG_SCSI_3W_9XXX is not set |
492 | # CONFIG_SCSI_ACARD is not set | 505 | # CONFIG_SCSI_ACARD is not set |
@@ -503,6 +516,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
503 | # CONFIG_MEGARAID_SAS is not set | 516 | # CONFIG_MEGARAID_SAS is not set |
504 | # CONFIG_SCSI_HPTIOP is not set | 517 | # CONFIG_SCSI_HPTIOP is not set |
505 | # CONFIG_SCSI_BUSLOGIC is not set | 518 | # CONFIG_SCSI_BUSLOGIC is not set |
519 | # CONFIG_LIBFC is not set | ||
520 | # CONFIG_FCOE is not set | ||
506 | # CONFIG_SCSI_DMX3191D is not set | 521 | # CONFIG_SCSI_DMX3191D is not set |
507 | # CONFIG_SCSI_EATA is not set | 522 | # CONFIG_SCSI_EATA is not set |
508 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 523 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -622,6 +637,9 @@ CONFIG_VITESSE_PHY=y | |||
622 | # CONFIG_BROADCOM_PHY is not set | 637 | # CONFIG_BROADCOM_PHY is not set |
623 | # CONFIG_ICPLUS_PHY is not set | 638 | # CONFIG_ICPLUS_PHY is not set |
624 | # CONFIG_REALTEK_PHY is not set | 639 | # CONFIG_REALTEK_PHY is not set |
640 | # CONFIG_NATIONAL_PHY is not set | ||
641 | # CONFIG_STE10XP is not set | ||
642 | # CONFIG_LSI_ET1011C_PHY is not set | ||
625 | # CONFIG_FIXED_PHY is not set | 643 | # CONFIG_FIXED_PHY is not set |
626 | # CONFIG_MDIO_BITBANG is not set | 644 | # CONFIG_MDIO_BITBANG is not set |
627 | CONFIG_NET_ETHERNET=y | 645 | CONFIG_NET_ETHERNET=y |
@@ -668,6 +686,7 @@ CONFIG_GIANFAR=y | |||
668 | # CONFIG_JME is not set | 686 | # CONFIG_JME is not set |
669 | CONFIG_NETDEV_10000=y | 687 | CONFIG_NETDEV_10000=y |
670 | # CONFIG_CHELSIO_T1 is not set | 688 | # CONFIG_CHELSIO_T1 is not set |
689 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
671 | # CONFIG_CHELSIO_T3 is not set | 690 | # CONFIG_CHELSIO_T3 is not set |
672 | # CONFIG_ENIC is not set | 691 | # CONFIG_ENIC is not set |
673 | # CONFIG_IXGBE is not set | 692 | # CONFIG_IXGBE is not set |
@@ -692,6 +711,10 @@ CONFIG_NETDEV_10000=y | |||
692 | # CONFIG_IWLWIFI_LEDS is not set | 711 | # CONFIG_IWLWIFI_LEDS is not set |
693 | 712 | ||
694 | # | 713 | # |
714 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
715 | # | ||
716 | |||
717 | # | ||
695 | # USB Network Adapters | 718 | # USB Network Adapters |
696 | # | 719 | # |
697 | # CONFIG_USB_CATC is not set | 720 | # CONFIG_USB_CATC is not set |
@@ -783,8 +806,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
783 | # CONFIG_SERIAL_JSM is not set | 806 | # CONFIG_SERIAL_JSM is not set |
784 | # CONFIG_SERIAL_OF_PLATFORM is not set | 807 | # CONFIG_SERIAL_OF_PLATFORM is not set |
785 | CONFIG_UNIX98_PTYS=y | 808 | CONFIG_UNIX98_PTYS=y |
809 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
786 | CONFIG_LEGACY_PTYS=y | 810 | CONFIG_LEGACY_PTYS=y |
787 | CONFIG_LEGACY_PTY_COUNT=256 | 811 | CONFIG_LEGACY_PTY_COUNT=256 |
812 | # CONFIG_HVC_UDBG is not set | ||
788 | # CONFIG_IPMI_HANDLER is not set | 813 | # CONFIG_IPMI_HANDLER is not set |
789 | CONFIG_HW_RANDOM=y | 814 | CONFIG_HW_RANDOM=y |
790 | # CONFIG_NVRAM is not set | 815 | # CONFIG_NVRAM is not set |
@@ -869,11 +894,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
869 | # CONFIG_HWMON is not set | 894 | # CONFIG_HWMON is not set |
870 | CONFIG_THERMAL=y | 895 | CONFIG_THERMAL=y |
871 | # CONFIG_WATCHDOG is not set | 896 | # CONFIG_WATCHDOG is not set |
897 | CONFIG_SSB_POSSIBLE=y | ||
872 | 898 | ||
873 | # | 899 | # |
874 | # Sonics Silicon Backplane | 900 | # Sonics Silicon Backplane |
875 | # | 901 | # |
876 | CONFIG_SSB_POSSIBLE=y | ||
877 | # CONFIG_SSB is not set | 902 | # CONFIG_SSB is not set |
878 | 903 | ||
879 | # | 904 | # |
@@ -882,18 +907,13 @@ CONFIG_SSB_POSSIBLE=y | |||
882 | # CONFIG_MFD_CORE is not set | 907 | # CONFIG_MFD_CORE is not set |
883 | # CONFIG_MFD_SM501 is not set | 908 | # CONFIG_MFD_SM501 is not set |
884 | # CONFIG_HTC_PASIC3 is not set | 909 | # CONFIG_HTC_PASIC3 is not set |
910 | # CONFIG_TWL4030_CORE is not set | ||
885 | # CONFIG_MFD_TMIO is not set | 911 | # CONFIG_MFD_TMIO is not set |
886 | # CONFIG_PMIC_DA903X is not set | 912 | # CONFIG_PMIC_DA903X is not set |
887 | # CONFIG_MFD_WM8400 is not set | 913 | # CONFIG_MFD_WM8400 is not set |
888 | # CONFIG_MFD_WM8350_I2C is not set | 914 | # CONFIG_MFD_WM8350_I2C is not set |
889 | 915 | # CONFIG_MFD_PCF50633 is not set | |
890 | # | ||
891 | # Voltage and Current regulators | ||
892 | # | ||
893 | # CONFIG_REGULATOR is not set | 916 | # CONFIG_REGULATOR is not set |
894 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
895 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
896 | # CONFIG_REGULATOR_BQ24022 is not set | ||
897 | 917 | ||
898 | # | 918 | # |
899 | # Multimedia devices | 919 | # Multimedia devices |
@@ -920,6 +940,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
920 | CONFIG_MEDIA_TUNER_MT20XX=m | 940 | CONFIG_MEDIA_TUNER_MT20XX=m |
921 | CONFIG_MEDIA_TUNER_XC2028=m | 941 | CONFIG_MEDIA_TUNER_XC2028=m |
922 | CONFIG_MEDIA_TUNER_XC5000=m | 942 | CONFIG_MEDIA_TUNER_XC5000=m |
943 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
923 | CONFIG_DVB_CAPTURE_DRIVERS=y | 944 | CONFIG_DVB_CAPTURE_DRIVERS=y |
924 | 945 | ||
925 | # | 946 | # |
@@ -965,6 +986,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
965 | # CONFIG_DVB_FE_CUSTOMISE is not set | 986 | # CONFIG_DVB_FE_CUSTOMISE is not set |
966 | 987 | ||
967 | # | 988 | # |
989 | # Multistandard (satellite) frontends | ||
990 | # | ||
991 | # CONFIG_DVB_STB0899 is not set | ||
992 | # CONFIG_DVB_STB6100 is not set | ||
993 | |||
994 | # | ||
968 | # DVB-S (satellite) frontends | 995 | # DVB-S (satellite) frontends |
969 | # | 996 | # |
970 | # CONFIG_DVB_CX24110 is not set | 997 | # CONFIG_DVB_CX24110 is not set |
@@ -976,8 +1003,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
976 | # CONFIG_DVB_STV0299 is not set | 1003 | # CONFIG_DVB_STV0299 is not set |
977 | # CONFIG_DVB_TDA8083 is not set | 1004 | # CONFIG_DVB_TDA8083 is not set |
978 | # CONFIG_DVB_TDA10086 is not set | 1005 | # CONFIG_DVB_TDA10086 is not set |
1006 | # CONFIG_DVB_TDA8261 is not set | ||
979 | # CONFIG_DVB_VES1X93 is not set | 1007 | # CONFIG_DVB_VES1X93 is not set |
980 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1008 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1009 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
981 | # CONFIG_DVB_TDA826X is not set | 1010 | # CONFIG_DVB_TDA826X is not set |
982 | # CONFIG_DVB_TUA6100 is not set | 1011 | # CONFIG_DVB_TUA6100 is not set |
983 | # CONFIG_DVB_CX24116 is not set | 1012 | # CONFIG_DVB_CX24116 is not set |
@@ -1018,11 +1047,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1018 | # CONFIG_DVB_OR51132 is not set | 1047 | # CONFIG_DVB_OR51132 is not set |
1019 | # CONFIG_DVB_BCM3510 is not set | 1048 | # CONFIG_DVB_BCM3510 is not set |
1020 | # CONFIG_DVB_LGDT330X is not set | 1049 | # CONFIG_DVB_LGDT330X is not set |
1050 | # CONFIG_DVB_LGDT3304 is not set | ||
1021 | # CONFIG_DVB_S5H1409 is not set | 1051 | # CONFIG_DVB_S5H1409 is not set |
1022 | # CONFIG_DVB_AU8522 is not set | 1052 | # CONFIG_DVB_AU8522 is not set |
1023 | # CONFIG_DVB_S5H1411 is not set | 1053 | # CONFIG_DVB_S5H1411 is not set |
1024 | 1054 | ||
1025 | # | 1055 | # |
1056 | # ISDB-T (terrestrial) frontends | ||
1057 | # | ||
1058 | # CONFIG_DVB_S921 is not set | ||
1059 | |||
1060 | # | ||
1026 | # Digital terrestrial only tuners/PLL | 1061 | # Digital terrestrial only tuners/PLL |
1027 | # | 1062 | # |
1028 | # CONFIG_DVB_PLL is not set | 1063 | # CONFIG_DVB_PLL is not set |
@@ -1073,6 +1108,7 @@ CONFIG_SND_PCM=y | |||
1073 | # CONFIG_SND_SEQUENCER is not set | 1108 | # CONFIG_SND_SEQUENCER is not set |
1074 | # CONFIG_SND_MIXER_OSS is not set | 1109 | # CONFIG_SND_MIXER_OSS is not set |
1075 | # CONFIG_SND_PCM_OSS is not set | 1110 | # CONFIG_SND_PCM_OSS is not set |
1111 | # CONFIG_SND_HRTIMER is not set | ||
1076 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1112 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1077 | CONFIG_SND_SUPPORT_OLD_API=y | 1113 | CONFIG_SND_SUPPORT_OLD_API=y |
1078 | CONFIG_SND_VERBOSE_PROCFS=y | 1114 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1175,11 +1211,9 @@ CONFIG_HID_COMPAT=y | |||
1175 | CONFIG_HID_A4TECH=y | 1211 | CONFIG_HID_A4TECH=y |
1176 | CONFIG_HID_APPLE=y | 1212 | CONFIG_HID_APPLE=y |
1177 | CONFIG_HID_BELKIN=y | 1213 | CONFIG_HID_BELKIN=y |
1178 | CONFIG_HID_BRIGHT=y | ||
1179 | CONFIG_HID_CHERRY=y | 1214 | CONFIG_HID_CHERRY=y |
1180 | CONFIG_HID_CHICONY=y | 1215 | CONFIG_HID_CHICONY=y |
1181 | CONFIG_HID_CYPRESS=y | 1216 | CONFIG_HID_CYPRESS=y |
1182 | CONFIG_HID_DELL=y | ||
1183 | CONFIG_HID_EZKEY=y | 1217 | CONFIG_HID_EZKEY=y |
1184 | CONFIG_HID_GYRATION=y | 1218 | CONFIG_HID_GYRATION=y |
1185 | CONFIG_HID_LOGITECH=y | 1219 | CONFIG_HID_LOGITECH=y |
@@ -1187,12 +1221,15 @@ CONFIG_HID_LOGITECH=y | |||
1187 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1221 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1188 | CONFIG_HID_MICROSOFT=y | 1222 | CONFIG_HID_MICROSOFT=y |
1189 | CONFIG_HID_MONTEREY=y | 1223 | CONFIG_HID_MONTEREY=y |
1224 | # CONFIG_HID_NTRIG is not set | ||
1190 | CONFIG_HID_PANTHERLORD=y | 1225 | CONFIG_HID_PANTHERLORD=y |
1191 | # CONFIG_PANTHERLORD_FF is not set | 1226 | # CONFIG_PANTHERLORD_FF is not set |
1192 | CONFIG_HID_PETALYNX=y | 1227 | CONFIG_HID_PETALYNX=y |
1193 | CONFIG_HID_SAMSUNG=y | 1228 | CONFIG_HID_SAMSUNG=y |
1194 | CONFIG_HID_SONY=y | 1229 | CONFIG_HID_SONY=y |
1195 | CONFIG_HID_SUNPLUS=y | 1230 | CONFIG_HID_SUNPLUS=y |
1231 | # CONFIG_GREENASIA_FF is not set | ||
1232 | # CONFIG_HID_TOPSEED is not set | ||
1196 | CONFIG_THRUSTMASTER_FF=m | 1233 | CONFIG_THRUSTMASTER_FF=m |
1197 | CONFIG_ZEROPLUS_FF=m | 1234 | CONFIG_ZEROPLUS_FF=m |
1198 | CONFIG_USB_SUPPORT=y | 1235 | CONFIG_USB_SUPPORT=y |
@@ -1225,6 +1262,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1225 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1262 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1226 | CONFIG_USB_EHCI_FSL=y | 1263 | CONFIG_USB_EHCI_FSL=y |
1227 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1264 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1265 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1228 | # CONFIG_USB_ISP116X_HCD is not set | 1266 | # CONFIG_USB_ISP116X_HCD is not set |
1229 | # CONFIG_USB_ISP1760_HCD is not set | 1267 | # CONFIG_USB_ISP1760_HCD is not set |
1230 | CONFIG_USB_OHCI_HCD=y | 1268 | CONFIG_USB_OHCI_HCD=y |
@@ -1250,18 +1288,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1250 | # CONFIG_USB_TMC is not set | 1288 | # CONFIG_USB_TMC is not set |
1251 | 1289 | ||
1252 | # | 1290 | # |
1253 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1291 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1254 | # | 1292 | # |
1255 | 1293 | ||
1256 | # | 1294 | # |
1257 | # may also be needed; see USB_STORAGE Help for more information | 1295 | # see USB_STORAGE Help for more information |
1258 | # | 1296 | # |
1259 | CONFIG_USB_STORAGE=y | 1297 | CONFIG_USB_STORAGE=y |
1260 | # CONFIG_USB_STORAGE_DEBUG is not set | 1298 | # CONFIG_USB_STORAGE_DEBUG is not set |
1261 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1299 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1262 | # CONFIG_USB_STORAGE_FREECOM is not set | 1300 | # CONFIG_USB_STORAGE_FREECOM is not set |
1263 | # CONFIG_USB_STORAGE_ISD200 is not set | 1301 | # CONFIG_USB_STORAGE_ISD200 is not set |
1264 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1265 | # CONFIG_USB_STORAGE_USBAT is not set | 1302 | # CONFIG_USB_STORAGE_USBAT is not set |
1266 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1303 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1267 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1304 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1309,6 +1346,10 @@ CONFIG_USB_STORAGE=y | |||
1309 | # CONFIG_USB_ISIGHTFW is not set | 1346 | # CONFIG_USB_ISIGHTFW is not set |
1310 | # CONFIG_USB_VST is not set | 1347 | # CONFIG_USB_VST is not set |
1311 | # CONFIG_USB_GADGET is not set | 1348 | # CONFIG_USB_GADGET is not set |
1349 | |||
1350 | # | ||
1351 | # OTG and related infrastructure | ||
1352 | # | ||
1312 | # CONFIG_UWB is not set | 1353 | # CONFIG_UWB is not set |
1313 | # CONFIG_MMC is not set | 1354 | # CONFIG_MMC is not set |
1314 | # CONFIG_MEMSTICK is not set | 1355 | # CONFIG_MEMSTICK is not set |
@@ -1346,6 +1387,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1346 | # CONFIG_RTC_DRV_M41T80 is not set | 1387 | # CONFIG_RTC_DRV_M41T80 is not set |
1347 | # CONFIG_RTC_DRV_S35390A is not set | 1388 | # CONFIG_RTC_DRV_S35390A is not set |
1348 | # CONFIG_RTC_DRV_FM3130 is not set | 1389 | # CONFIG_RTC_DRV_FM3130 is not set |
1390 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1349 | 1391 | ||
1350 | # | 1392 | # |
1351 | # SPI RTC drivers | 1393 | # SPI RTC drivers |
@@ -1405,7 +1447,9 @@ CONFIG_FS_MBCACHE=y | |||
1405 | # CONFIG_FS_POSIX_ACL is not set | 1447 | # CONFIG_FS_POSIX_ACL is not set |
1406 | CONFIG_FILE_LOCKING=y | 1448 | CONFIG_FILE_LOCKING=y |
1407 | # CONFIG_XFS_FS is not set | 1449 | # CONFIG_XFS_FS is not set |
1450 | # CONFIG_GFS2_FS is not set | ||
1408 | # CONFIG_OCFS2_FS is not set | 1451 | # CONFIG_OCFS2_FS is not set |
1452 | # CONFIG_BTRFS_FS is not set | ||
1409 | CONFIG_DNOTIFY=y | 1453 | CONFIG_DNOTIFY=y |
1410 | CONFIG_INOTIFY=y | 1454 | CONFIG_INOTIFY=y |
1411 | CONFIG_INOTIFY_USER=y | 1455 | CONFIG_INOTIFY_USER=y |
@@ -1447,10 +1491,7 @@ CONFIG_TMPFS=y | |||
1447 | # CONFIG_TMPFS_POSIX_ACL is not set | 1491 | # CONFIG_TMPFS_POSIX_ACL is not set |
1448 | # CONFIG_HUGETLB_PAGE is not set | 1492 | # CONFIG_HUGETLB_PAGE is not set |
1449 | # CONFIG_CONFIGFS_FS is not set | 1493 | # CONFIG_CONFIGFS_FS is not set |
1450 | 1494 | CONFIG_MISC_FILESYSTEMS=y | |
1451 | # | ||
1452 | # Miscellaneous filesystems | ||
1453 | # | ||
1454 | CONFIG_ADFS_FS=m | 1495 | CONFIG_ADFS_FS=m |
1455 | # CONFIG_ADFS_FS_RW is not set | 1496 | # CONFIG_ADFS_FS_RW is not set |
1456 | CONFIG_AFFS_FS=m | 1497 | CONFIG_AFFS_FS=m |
@@ -1461,6 +1502,7 @@ CONFIG_BEFS_FS=m | |||
1461 | CONFIG_BFS_FS=m | 1502 | CONFIG_BFS_FS=m |
1462 | CONFIG_EFS_FS=m | 1503 | CONFIG_EFS_FS=m |
1463 | CONFIG_CRAMFS=y | 1504 | CONFIG_CRAMFS=y |
1505 | # CONFIG_SQUASHFS is not set | ||
1464 | CONFIG_VXFS_FS=m | 1506 | CONFIG_VXFS_FS=m |
1465 | # CONFIG_MINIX_FS is not set | 1507 | # CONFIG_MINIX_FS is not set |
1466 | # CONFIG_OMFS_FS is not set | 1508 | # CONFIG_OMFS_FS is not set |
@@ -1562,6 +1604,7 @@ CONFIG_NLS_UTF8=m | |||
1562 | # Library routines | 1604 | # Library routines |
1563 | # | 1605 | # |
1564 | CONFIG_BITREVERSE=y | 1606 | CONFIG_BITREVERSE=y |
1607 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1565 | # CONFIG_CRC_CCITT is not set | 1608 | # CONFIG_CRC_CCITT is not set |
1566 | # CONFIG_CRC16 is not set | 1609 | # CONFIG_CRC16 is not set |
1567 | CONFIG_CRC_T10DIF=y | 1610 | CONFIG_CRC_T10DIF=y |
@@ -1613,6 +1656,7 @@ CONFIG_DEBUG_INFO=y | |||
1613 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1656 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1614 | # CONFIG_DEBUG_LIST is not set | 1657 | # CONFIG_DEBUG_LIST is not set |
1615 | # CONFIG_DEBUG_SG is not set | 1658 | # CONFIG_DEBUG_SG is not set |
1659 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1616 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1660 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1617 | # CONFIG_RCU_TORTURE_TEST is not set | 1661 | # CONFIG_RCU_TORTURE_TEST is not set |
1618 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1662 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1622,6 +1666,8 @@ CONFIG_DEBUG_INFO=y | |||
1622 | # CONFIG_LATENCYTOP is not set | 1666 | # CONFIG_LATENCYTOP is not set |
1623 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1667 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1624 | CONFIG_HAVE_FUNCTION_TRACER=y | 1668 | CONFIG_HAVE_FUNCTION_TRACER=y |
1669 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1670 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1625 | 1671 | ||
1626 | # | 1672 | # |
1627 | # Tracers | 1673 | # Tracers |
@@ -1630,11 +1676,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1630 | # CONFIG_SCHED_TRACER is not set | 1676 | # CONFIG_SCHED_TRACER is not set |
1631 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1677 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1632 | # CONFIG_BOOT_TRACER is not set | 1678 | # CONFIG_BOOT_TRACER is not set |
1679 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1633 | # CONFIG_STACK_TRACER is not set | 1680 | # CONFIG_STACK_TRACER is not set |
1634 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1681 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1635 | # CONFIG_SAMPLES is not set | 1682 | # CONFIG_SAMPLES is not set |
1636 | CONFIG_HAVE_ARCH_KGDB=y | 1683 | CONFIG_HAVE_ARCH_KGDB=y |
1637 | # CONFIG_KGDB is not set | 1684 | # CONFIG_KGDB is not set |
1685 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1638 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1686 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1639 | # CONFIG_DEBUG_STACK_USAGE is not set | 1687 | # CONFIG_DEBUG_STACK_USAGE is not set |
1640 | # CONFIG_DEBUG_PAGEALLOC is not set | 1688 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1661,11 +1709,16 @@ CONFIG_CRYPTO=y | |||
1661 | # | 1709 | # |
1662 | # CONFIG_CRYPTO_FIPS is not set | 1710 | # CONFIG_CRYPTO_FIPS is not set |
1663 | CONFIG_CRYPTO_ALGAPI=y | 1711 | CONFIG_CRYPTO_ALGAPI=y |
1712 | CONFIG_CRYPTO_ALGAPI2=y | ||
1664 | CONFIG_CRYPTO_AEAD=y | 1713 | CONFIG_CRYPTO_AEAD=y |
1714 | CONFIG_CRYPTO_AEAD2=y | ||
1665 | CONFIG_CRYPTO_BLKCIPHER=y | 1715 | CONFIG_CRYPTO_BLKCIPHER=y |
1716 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1666 | CONFIG_CRYPTO_HASH=y | 1717 | CONFIG_CRYPTO_HASH=y |
1667 | CONFIG_CRYPTO_RNG=y | 1718 | CONFIG_CRYPTO_HASH2=y |
1719 | CONFIG_CRYPTO_RNG2=y | ||
1668 | CONFIG_CRYPTO_MANAGER=y | 1720 | CONFIG_CRYPTO_MANAGER=y |
1721 | CONFIG_CRYPTO_MANAGER2=y | ||
1669 | # CONFIG_CRYPTO_GF128MUL is not set | 1722 | # CONFIG_CRYPTO_GF128MUL is not set |
1670 | # CONFIG_CRYPTO_NULL is not set | 1723 | # CONFIG_CRYPTO_NULL is not set |
1671 | # CONFIG_CRYPTO_CRYPTD is not set | 1724 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1699,7 +1752,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1699 | # | 1752 | # |
1700 | # Digest | 1753 | # Digest |
1701 | # | 1754 | # |
1702 | # CONFIG_CRYPTO_CRC32C is not set | 1755 | CONFIG_CRYPTO_CRC32C=m |
1703 | # CONFIG_CRYPTO_MD4 is not set | 1756 | # CONFIG_CRYPTO_MD4 is not set |
1704 | CONFIG_CRYPTO_MD5=y | 1757 | CONFIG_CRYPTO_MD5=y |
1705 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1758 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8540_ads_defconfig b/arch/powerpc/configs/85xx/mpc8540_ads_defconfig index d790cbab80b8..905e8a3388d6 100644 --- a/arch/powerpc/configs/85xx/mpc8540_ads_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:06 2008 | 4 | # Mon Jan 26 15:36:05 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 81 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 121 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -124,13 +125,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
125 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
126 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
127 | # CONFIG_TINY_SHMEM is not set | ||
128 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
129 | # CONFIG_MODULES is not set | 129 | # CONFIG_MODULES is not set |
130 | CONFIG_BLOCK=y | 130 | CONFIG_BLOCK=y |
131 | # CONFIG_LBD is not set | 131 | # CONFIG_LBD is not set |
132 | # CONFIG_BLK_DEV_IO_TRACE is not set | 132 | # CONFIG_BLK_DEV_IO_TRACE is not set |
133 | # CONFIG_LSF is not set | ||
134 | # CONFIG_BLK_DEV_BSG is not set | 133 | # CONFIG_BLK_DEV_BSG is not set |
135 | # CONFIG_BLK_DEV_INTEGRITY is not set | 134 | # CONFIG_BLK_DEV_INTEGRITY is not set |
136 | 135 | ||
@@ -147,6 +146,10 @@ CONFIG_DEFAULT_AS=y | |||
147 | # CONFIG_DEFAULT_NOOP is not set | 146 | # CONFIG_DEFAULT_NOOP is not set |
148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 147 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
149 | CONFIG_CLASSIC_RCU=y | 148 | CONFIG_CLASSIC_RCU=y |
149 | # CONFIG_TREE_RCU is not set | ||
150 | # CONFIG_PREEMPT_RCU is not set | ||
151 | # CONFIG_TREE_RCU_TRACE is not set | ||
152 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
150 | # CONFIG_FREEZER is not set | 153 | # CONFIG_FREEZER is not set |
151 | 154 | ||
152 | # | 155 | # |
@@ -186,6 +189,7 @@ CONFIG_MPIC=y | |||
186 | # CONFIG_CPM2 is not set | 189 | # CONFIG_CPM2 is not set |
187 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
188 | # CONFIG_MPC8xxx_GPIO is not set | 191 | # CONFIG_MPC8xxx_GPIO is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
189 | 193 | ||
190 | # | 194 | # |
191 | # Kernel options | 195 | # Kernel options |
@@ -224,12 +228,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
224 | CONFIG_PAGEFLAGS_EXTENDED=y | 228 | CONFIG_PAGEFLAGS_EXTENDED=y |
225 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 229 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
226 | CONFIG_MIGRATION=y | 230 | CONFIG_MIGRATION=y |
227 | # CONFIG_RESOURCES_64BIT is not set | ||
228 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 231 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
229 | CONFIG_ZONE_DMA_FLAG=1 | 232 | CONFIG_ZONE_DMA_FLAG=1 |
230 | CONFIG_BOUNCE=y | 233 | CONFIG_BOUNCE=y |
231 | CONFIG_VIRT_TO_BUS=y | 234 | CONFIG_VIRT_TO_BUS=y |
232 | CONFIG_UNEVICTABLE_LRU=y | 235 | CONFIG_UNEVICTABLE_LRU=y |
236 | CONFIG_PPC_4K_PAGES=y | ||
237 | # CONFIG_PPC_16K_PAGES is not set | ||
238 | # CONFIG_PPC_64K_PAGES is not set | ||
233 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
234 | CONFIG_PROC_DEVICETREE=y | 240 | CONFIG_PROC_DEVICETREE=y |
235 | # CONFIG_CMDLINE_BOOL is not set | 241 | # CONFIG_CMDLINE_BOOL is not set |
@@ -270,6 +276,7 @@ CONFIG_NET=y | |||
270 | # | 276 | # |
271 | # Networking options | 277 | # Networking options |
272 | # | 278 | # |
279 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
273 | CONFIG_PACKET=y | 280 | CONFIG_PACKET=y |
274 | # CONFIG_PACKET_MMAP is not set | 281 | # CONFIG_PACKET_MMAP is not set |
275 | CONFIG_UNIX=y | 282 | CONFIG_UNIX=y |
@@ -326,6 +333,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
326 | # CONFIG_ECONET is not set | 333 | # CONFIG_ECONET is not set |
327 | # CONFIG_WAN_ROUTER is not set | 334 | # CONFIG_WAN_ROUTER is not set |
328 | # CONFIG_NET_SCHED is not set | 335 | # CONFIG_NET_SCHED is not set |
336 | # CONFIG_DCB is not set | ||
329 | 337 | ||
330 | # | 338 | # |
331 | # Network testing | 339 | # Network testing |
@@ -341,8 +349,9 @@ CONFIG_WIRELESS=y | |||
341 | # CONFIG_CFG80211 is not set | 349 | # CONFIG_CFG80211 is not set |
342 | CONFIG_WIRELESS_OLD_REGULATORY=y | 350 | CONFIG_WIRELESS_OLD_REGULATORY=y |
343 | # CONFIG_WIRELESS_EXT is not set | 351 | # CONFIG_WIRELESS_EXT is not set |
352 | # CONFIG_LIB80211 is not set | ||
344 | # CONFIG_MAC80211 is not set | 353 | # CONFIG_MAC80211 is not set |
345 | # CONFIG_IEEE80211 is not set | 354 | # CONFIG_WIMAX is not set |
346 | # CONFIG_RFKILL is not set | 355 | # CONFIG_RFKILL is not set |
347 | # CONFIG_NET_9P is not set | 356 | # CONFIG_NET_9P is not set |
348 | 357 | ||
@@ -380,6 +389,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
380 | CONFIG_MISC_DEVICES=y | 389 | CONFIG_MISC_DEVICES=y |
381 | # CONFIG_EEPROM_93CX6 is not set | 390 | # CONFIG_EEPROM_93CX6 is not set |
382 | # CONFIG_ENCLOSURE_SERVICES is not set | 391 | # CONFIG_ENCLOSURE_SERVICES is not set |
392 | # CONFIG_C2PORT is not set | ||
383 | CONFIG_HAVE_IDE=y | 393 | CONFIG_HAVE_IDE=y |
384 | # CONFIG_IDE is not set | 394 | # CONFIG_IDE is not set |
385 | 395 | ||
@@ -415,6 +425,9 @@ CONFIG_PHYLIB=y | |||
415 | # CONFIG_BROADCOM_PHY is not set | 425 | # CONFIG_BROADCOM_PHY is not set |
416 | # CONFIG_ICPLUS_PHY is not set | 426 | # CONFIG_ICPLUS_PHY is not set |
417 | # CONFIG_REALTEK_PHY is not set | 427 | # CONFIG_REALTEK_PHY is not set |
428 | # CONFIG_NATIONAL_PHY is not set | ||
429 | # CONFIG_STE10XP is not set | ||
430 | # CONFIG_LSI_ET1011C_PHY is not set | ||
418 | # CONFIG_FIXED_PHY is not set | 431 | # CONFIG_FIXED_PHY is not set |
419 | # CONFIG_MDIO_BITBANG is not set | 432 | # CONFIG_MDIO_BITBANG is not set |
420 | CONFIG_NET_ETHERNET=y | 433 | CONFIG_NET_ETHERNET=y |
@@ -437,6 +450,10 @@ CONFIG_NETDEV_10000=y | |||
437 | # CONFIG_WLAN_PRE80211 is not set | 450 | # CONFIG_WLAN_PRE80211 is not set |
438 | # CONFIG_WLAN_80211 is not set | 451 | # CONFIG_WLAN_80211 is not set |
439 | # CONFIG_IWLWIFI_LEDS is not set | 452 | # CONFIG_IWLWIFI_LEDS is not set |
453 | |||
454 | # | ||
455 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
456 | # | ||
440 | # CONFIG_WAN is not set | 457 | # CONFIG_WAN is not set |
441 | # CONFIG_PPP is not set | 458 | # CONFIG_PPP is not set |
442 | # CONFIG_SLIP is not set | 459 | # CONFIG_SLIP is not set |
@@ -502,8 +519,10 @@ CONFIG_SERIAL_CORE=y | |||
502 | CONFIG_SERIAL_CORE_CONSOLE=y | 519 | CONFIG_SERIAL_CORE_CONSOLE=y |
503 | # CONFIG_SERIAL_OF_PLATFORM is not set | 520 | # CONFIG_SERIAL_OF_PLATFORM is not set |
504 | CONFIG_UNIX98_PTYS=y | 521 | CONFIG_UNIX98_PTYS=y |
522 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
505 | CONFIG_LEGACY_PTYS=y | 523 | CONFIG_LEGACY_PTYS=y |
506 | CONFIG_LEGACY_PTY_COUNT=256 | 524 | CONFIG_LEGACY_PTY_COUNT=256 |
525 | # CONFIG_HVC_UDBG is not set | ||
507 | # CONFIG_IPMI_HANDLER is not set | 526 | # CONFIG_IPMI_HANDLER is not set |
508 | # CONFIG_HW_RANDOM is not set | 527 | # CONFIG_HW_RANDOM is not set |
509 | # CONFIG_NVRAM is not set | 528 | # CONFIG_NVRAM is not set |
@@ -534,11 +553,11 @@ CONFIG_HWMON=y | |||
534 | # CONFIG_THERMAL is not set | 553 | # CONFIG_THERMAL is not set |
535 | # CONFIG_THERMAL_HWMON is not set | 554 | # CONFIG_THERMAL_HWMON is not set |
536 | # CONFIG_WATCHDOG is not set | 555 | # CONFIG_WATCHDOG is not set |
556 | CONFIG_SSB_POSSIBLE=y | ||
537 | 557 | ||
538 | # | 558 | # |
539 | # Sonics Silicon Backplane | 559 | # Sonics Silicon Backplane |
540 | # | 560 | # |
541 | CONFIG_SSB_POSSIBLE=y | ||
542 | # CONFIG_SSB is not set | 561 | # CONFIG_SSB is not set |
543 | 562 | ||
544 | # | 563 | # |
@@ -548,14 +567,7 @@ CONFIG_SSB_POSSIBLE=y | |||
548 | # CONFIG_MFD_SM501 is not set | 567 | # CONFIG_MFD_SM501 is not set |
549 | # CONFIG_HTC_PASIC3 is not set | 568 | # CONFIG_HTC_PASIC3 is not set |
550 | # CONFIG_MFD_TMIO is not set | 569 | # CONFIG_MFD_TMIO is not set |
551 | |||
552 | # | ||
553 | # Voltage and Current regulators | ||
554 | # | ||
555 | # CONFIG_REGULATOR is not set | 570 | # CONFIG_REGULATOR is not set |
556 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
557 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
558 | # CONFIG_REGULATOR_BQ24022 is not set | ||
559 | 571 | ||
560 | # | 572 | # |
561 | # Multimedia devices | 573 | # Multimedia devices |
@@ -608,9 +620,13 @@ CONFIG_USB_SUPPORT=y | |||
608 | # | 620 | # |
609 | 621 | ||
610 | # | 622 | # |
611 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 623 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
612 | # | 624 | # |
613 | # CONFIG_USB_GADGET is not set | 625 | # CONFIG_USB_GADGET is not set |
626 | |||
627 | # | ||
628 | # OTG and related infrastructure | ||
629 | # | ||
614 | # CONFIG_MMC is not set | 630 | # CONFIG_MMC is not set |
615 | # CONFIG_MEMSTICK is not set | 631 | # CONFIG_MEMSTICK is not set |
616 | # CONFIG_NEW_LEDS is not set | 632 | # CONFIG_NEW_LEDS is not set |
@@ -640,6 +656,7 @@ CONFIG_FS_MBCACHE=y | |||
640 | CONFIG_FILE_LOCKING=y | 656 | CONFIG_FILE_LOCKING=y |
641 | # CONFIG_XFS_FS is not set | 657 | # CONFIG_XFS_FS is not set |
642 | # CONFIG_OCFS2_FS is not set | 658 | # CONFIG_OCFS2_FS is not set |
659 | # CONFIG_BTRFS_FS is not set | ||
643 | CONFIG_DNOTIFY=y | 660 | CONFIG_DNOTIFY=y |
644 | CONFIG_INOTIFY=y | 661 | CONFIG_INOTIFY=y |
645 | CONFIG_INOTIFY_USER=y | 662 | CONFIG_INOTIFY_USER=y |
@@ -673,10 +690,7 @@ CONFIG_TMPFS=y | |||
673 | # CONFIG_TMPFS_POSIX_ACL is not set | 690 | # CONFIG_TMPFS_POSIX_ACL is not set |
674 | # CONFIG_HUGETLB_PAGE is not set | 691 | # CONFIG_HUGETLB_PAGE is not set |
675 | # CONFIG_CONFIGFS_FS is not set | 692 | # CONFIG_CONFIGFS_FS is not set |
676 | 693 | CONFIG_MISC_FILESYSTEMS=y | |
677 | # | ||
678 | # Miscellaneous filesystems | ||
679 | # | ||
680 | # CONFIG_ADFS_FS is not set | 694 | # CONFIG_ADFS_FS is not set |
681 | # CONFIG_AFFS_FS is not set | 695 | # CONFIG_AFFS_FS is not set |
682 | # CONFIG_HFS_FS is not set | 696 | # CONFIG_HFS_FS is not set |
@@ -685,6 +699,7 @@ CONFIG_TMPFS=y | |||
685 | # CONFIG_BFS_FS is not set | 699 | # CONFIG_BFS_FS is not set |
686 | # CONFIG_EFS_FS is not set | 700 | # CONFIG_EFS_FS is not set |
687 | # CONFIG_CRAMFS is not set | 701 | # CONFIG_CRAMFS is not set |
702 | # CONFIG_SQUASHFS is not set | ||
688 | # CONFIG_VXFS_FS is not set | 703 | # CONFIG_VXFS_FS is not set |
689 | # CONFIG_MINIX_FS is not set | 704 | # CONFIG_MINIX_FS is not set |
690 | # CONFIG_OMFS_FS is not set | 705 | # CONFIG_OMFS_FS is not set |
@@ -735,6 +750,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
735 | # Library routines | 750 | # Library routines |
736 | # | 751 | # |
737 | CONFIG_BITREVERSE=y | 752 | CONFIG_BITREVERSE=y |
753 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
738 | # CONFIG_CRC_CCITT is not set | 754 | # CONFIG_CRC_CCITT is not set |
739 | # CONFIG_CRC16 is not set | 755 | # CONFIG_CRC16 is not set |
740 | # CONFIG_CRC_T10DIF is not set | 756 | # CONFIG_CRC_T10DIF is not set |
@@ -784,6 +800,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
784 | # CONFIG_DEBUG_MEMORY_INIT is not set | 800 | # CONFIG_DEBUG_MEMORY_INIT is not set |
785 | # CONFIG_DEBUG_LIST is not set | 801 | # CONFIG_DEBUG_LIST is not set |
786 | # CONFIG_DEBUG_SG is not set | 802 | # CONFIG_DEBUG_SG is not set |
803 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
787 | # CONFIG_BOOT_PRINTK_DELAY is not set | 804 | # CONFIG_BOOT_PRINTK_DELAY is not set |
788 | # CONFIG_RCU_TORTURE_TEST is not set | 805 | # CONFIG_RCU_TORTURE_TEST is not set |
789 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 806 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -793,6 +810,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
793 | # CONFIG_LATENCYTOP is not set | 810 | # CONFIG_LATENCYTOP is not set |
794 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 811 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
795 | CONFIG_HAVE_FUNCTION_TRACER=y | 812 | CONFIG_HAVE_FUNCTION_TRACER=y |
813 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
814 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
796 | 815 | ||
797 | # | 816 | # |
798 | # Tracers | 817 | # Tracers |
@@ -801,11 +820,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
801 | # CONFIG_SCHED_TRACER is not set | 820 | # CONFIG_SCHED_TRACER is not set |
802 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 821 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
803 | # CONFIG_BOOT_TRACER is not set | 822 | # CONFIG_BOOT_TRACER is not set |
823 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
804 | # CONFIG_STACK_TRACER is not set | 824 | # CONFIG_STACK_TRACER is not set |
805 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 825 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
806 | # CONFIG_SAMPLES is not set | 826 | # CONFIG_SAMPLES is not set |
807 | CONFIG_HAVE_ARCH_KGDB=y | 827 | CONFIG_HAVE_ARCH_KGDB=y |
808 | # CONFIG_KGDB is not set | 828 | # CONFIG_KGDB is not set |
829 | CONFIG_PRINT_STACK_DEPTH=64 | ||
809 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 830 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
810 | # CONFIG_DEBUG_STACK_USAGE is not set | 831 | # CONFIG_DEBUG_STACK_USAGE is not set |
811 | # CONFIG_DEBUG_PAGEALLOC is not set | 832 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -831,6 +852,7 @@ CONFIG_CRYPTO=y | |||
831 | # | 852 | # |
832 | # CONFIG_CRYPTO_FIPS is not set | 853 | # CONFIG_CRYPTO_FIPS is not set |
833 | # CONFIG_CRYPTO_MANAGER is not set | 854 | # CONFIG_CRYPTO_MANAGER is not set |
855 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
834 | # CONFIG_CRYPTO_GF128MUL is not set | 856 | # CONFIG_CRYPTO_GF128MUL is not set |
835 | # CONFIG_CRYPTO_NULL is not set | 857 | # CONFIG_CRYPTO_NULL is not set |
836 | # CONFIG_CRYPTO_CRYPTD is not set | 858 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8544_ds_defconfig b/arch/powerpc/configs/85xx/mpc8544_ds_defconfig index 5ac7e51e9f14..f6fa0b761cb3 100644 --- a/arch/powerpc/configs/85xx/mpc8544_ds_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:08 2008 | 4 | # Mon Jan 26 15:36:07 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -78,12 +80,12 @@ CONFIG_AUDIT=y | |||
78 | CONFIG_IKCONFIG=y | 80 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 81 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 82 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 83 | CONFIG_GROUP_SCHED=y |
83 | # CONFIG_FAIR_GROUP_SCHED is not set | 84 | # CONFIG_FAIR_GROUP_SCHED is not set |
84 | # CONFIG_RT_GROUP_SCHED is not set | 85 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 86 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 87 | # CONFIG_CGROUP_SCHED is not set |
88 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 89 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 90 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 91 | # CONFIG_RELAY is not set |
@@ -96,6 +98,7 @@ CONFIG_EMBEDDED=y | |||
96 | CONFIG_SYSCTL_SYSCALL=y | 98 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 99 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 100 | CONFIG_KALLSYMS_ALL=y |
101 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 102 | CONFIG_KALLSYMS_EXTRA_PASS=y |
100 | CONFIG_HOTPLUG=y | 103 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 104 | CONFIG_PRINTK=y |
@@ -118,7 +121,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 121 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 122 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 123 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 124 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 125 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +131,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 134 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 135 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 136 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,11 +138,9 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | CONFIG_MODULE_FORCE_UNLOAD=y | 138 | CONFIG_MODULE_FORCE_UNLOAD=y |
138 | CONFIG_MODVERSIONS=y | 139 | CONFIG_MODVERSIONS=y |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 140 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
142 | CONFIG_LBD=y | 142 | CONFIG_LBD=y |
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
144 | # CONFIG_LSF is not set | ||
145 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
146 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
147 | 146 | ||
@@ -158,6 +157,10 @@ CONFIG_DEFAULT_CFQ=y | |||
158 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
159 | CONFIG_DEFAULT_IOSCHED="cfq" | 158 | CONFIG_DEFAULT_IOSCHED="cfq" |
160 | CONFIG_CLASSIC_RCU=y | 159 | CONFIG_CLASSIC_RCU=y |
160 | # CONFIG_TREE_RCU is not set | ||
161 | # CONFIG_PREEMPT_RCU is not set | ||
162 | # CONFIG_TREE_RCU_TRACE is not set | ||
163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
161 | # CONFIG_FREEZER is not set | 164 | # CONFIG_FREEZER is not set |
162 | 165 | ||
163 | # | 166 | # |
@@ -197,6 +200,7 @@ CONFIG_PPC_I8259=y | |||
197 | # CONFIG_CPM2 is not set | 200 | # CONFIG_CPM2 is not set |
198 | CONFIG_FSL_ULI1575=y | 201 | CONFIG_FSL_ULI1575=y |
199 | # CONFIG_MPC8xxx_GPIO is not set | 202 | # CONFIG_MPC8xxx_GPIO is not set |
203 | # CONFIG_SIMPLE_GPIO is not set | ||
200 | 204 | ||
201 | # | 205 | # |
202 | # Kernel options | 206 | # Kernel options |
@@ -235,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
235 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
236 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
237 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
238 | # CONFIG_RESOURCES_64BIT is not set | ||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
241 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -266,6 +272,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
266 | # CONFIG_PCI_MSI is not set | 272 | # CONFIG_PCI_MSI is not set |
267 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
268 | # CONFIG_PCI_DEBUG is not set | 274 | # CONFIG_PCI_DEBUG is not set |
275 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
270 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
271 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +296,7 @@ CONFIG_NET=y | |||
289 | # | 296 | # |
290 | # Networking options | 297 | # Networking options |
291 | # | 298 | # |
299 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 300 | CONFIG_PACKET=y |
293 | # CONFIG_PACKET_MMAP is not set | 301 | # CONFIG_PACKET_MMAP is not set |
294 | CONFIG_UNIX=y | 302 | CONFIG_UNIX=y |
@@ -377,6 +385,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
377 | # CONFIG_ECONET is not set | 385 | # CONFIG_ECONET is not set |
378 | # CONFIG_WAN_ROUTER is not set | 386 | # CONFIG_WAN_ROUTER is not set |
379 | # CONFIG_NET_SCHED is not set | 387 | # CONFIG_NET_SCHED is not set |
388 | # CONFIG_DCB is not set | ||
380 | 389 | ||
381 | # | 390 | # |
382 | # Network testing | 391 | # Network testing |
@@ -393,8 +402,9 @@ CONFIG_WIRELESS=y | |||
393 | # CONFIG_CFG80211 is not set | 402 | # CONFIG_CFG80211 is not set |
394 | CONFIG_WIRELESS_OLD_REGULATORY=y | 403 | CONFIG_WIRELESS_OLD_REGULATORY=y |
395 | # CONFIG_WIRELESS_EXT is not set | 404 | # CONFIG_WIRELESS_EXT is not set |
405 | # CONFIG_LIB80211 is not set | ||
396 | # CONFIG_MAC80211 is not set | 406 | # CONFIG_MAC80211 is not set |
397 | # CONFIG_IEEE80211 is not set | 407 | # CONFIG_WIMAX is not set |
398 | # CONFIG_RFKILL is not set | 408 | # CONFIG_RFKILL is not set |
399 | # CONFIG_NET_9P is not set | 409 | # CONFIG_NET_9P is not set |
400 | 410 | ||
@@ -443,8 +453,10 @@ CONFIG_MISC_DEVICES=y | |||
443 | # CONFIG_EEPROM_93CX6 is not set | 453 | # CONFIG_EEPROM_93CX6 is not set |
444 | # CONFIG_SGI_IOC4 is not set | 454 | # CONFIG_SGI_IOC4 is not set |
445 | # CONFIG_TIFM_CORE is not set | 455 | # CONFIG_TIFM_CORE is not set |
456 | # CONFIG_ICS932S401 is not set | ||
446 | # CONFIG_ENCLOSURE_SERVICES is not set | 457 | # CONFIG_ENCLOSURE_SERVICES is not set |
447 | # CONFIG_HP_ILO is not set | 458 | # CONFIG_HP_ILO is not set |
459 | # CONFIG_C2PORT is not set | ||
448 | CONFIG_HAVE_IDE=y | 460 | CONFIG_HAVE_IDE=y |
449 | # CONFIG_IDE is not set | 461 | # CONFIG_IDE is not set |
450 | 462 | ||
@@ -488,6 +500,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
488 | # CONFIG_SCSI_SRP_ATTRS is not set | 500 | # CONFIG_SCSI_SRP_ATTRS is not set |
489 | CONFIG_SCSI_LOWLEVEL=y | 501 | CONFIG_SCSI_LOWLEVEL=y |
490 | # CONFIG_ISCSI_TCP is not set | 502 | # CONFIG_ISCSI_TCP is not set |
503 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
491 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 504 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
492 | # CONFIG_SCSI_3W_9XXX is not set | 505 | # CONFIG_SCSI_3W_9XXX is not set |
493 | # CONFIG_SCSI_ACARD is not set | 506 | # CONFIG_SCSI_ACARD is not set |
@@ -504,6 +517,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
504 | # CONFIG_MEGARAID_SAS is not set | 517 | # CONFIG_MEGARAID_SAS is not set |
505 | # CONFIG_SCSI_HPTIOP is not set | 518 | # CONFIG_SCSI_HPTIOP is not set |
506 | # CONFIG_SCSI_BUSLOGIC is not set | 519 | # CONFIG_SCSI_BUSLOGIC is not set |
520 | # CONFIG_LIBFC is not set | ||
521 | # CONFIG_FCOE is not set | ||
507 | # CONFIG_SCSI_DMX3191D is not set | 522 | # CONFIG_SCSI_DMX3191D is not set |
508 | # CONFIG_SCSI_EATA is not set | 523 | # CONFIG_SCSI_EATA is not set |
509 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 524 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -623,6 +638,9 @@ CONFIG_VITESSE_PHY=y | |||
623 | # CONFIG_BROADCOM_PHY is not set | 638 | # CONFIG_BROADCOM_PHY is not set |
624 | # CONFIG_ICPLUS_PHY is not set | 639 | # CONFIG_ICPLUS_PHY is not set |
625 | # CONFIG_REALTEK_PHY is not set | 640 | # CONFIG_REALTEK_PHY is not set |
641 | # CONFIG_NATIONAL_PHY is not set | ||
642 | # CONFIG_STE10XP is not set | ||
643 | # CONFIG_LSI_ET1011C_PHY is not set | ||
626 | # CONFIG_FIXED_PHY is not set | 644 | # CONFIG_FIXED_PHY is not set |
627 | # CONFIG_MDIO_BITBANG is not set | 645 | # CONFIG_MDIO_BITBANG is not set |
628 | CONFIG_NET_ETHERNET=y | 646 | CONFIG_NET_ETHERNET=y |
@@ -667,6 +685,7 @@ CONFIG_GIANFAR=y | |||
667 | # CONFIG_JME is not set | 685 | # CONFIG_JME is not set |
668 | CONFIG_NETDEV_10000=y | 686 | CONFIG_NETDEV_10000=y |
669 | # CONFIG_CHELSIO_T1 is not set | 687 | # CONFIG_CHELSIO_T1 is not set |
688 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
670 | # CONFIG_CHELSIO_T3 is not set | 689 | # CONFIG_CHELSIO_T3 is not set |
671 | # CONFIG_ENIC is not set | 690 | # CONFIG_ENIC is not set |
672 | # CONFIG_IXGBE is not set | 691 | # CONFIG_IXGBE is not set |
@@ -691,6 +710,10 @@ CONFIG_NETDEV_10000=y | |||
691 | # CONFIG_IWLWIFI_LEDS is not set | 710 | # CONFIG_IWLWIFI_LEDS is not set |
692 | 711 | ||
693 | # | 712 | # |
713 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
714 | # | ||
715 | |||
716 | # | ||
694 | # USB Network Adapters | 717 | # USB Network Adapters |
695 | # | 718 | # |
696 | # CONFIG_USB_CATC is not set | 719 | # CONFIG_USB_CATC is not set |
@@ -782,8 +805,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
782 | # CONFIG_SERIAL_JSM is not set | 805 | # CONFIG_SERIAL_JSM is not set |
783 | # CONFIG_SERIAL_OF_PLATFORM is not set | 806 | # CONFIG_SERIAL_OF_PLATFORM is not set |
784 | CONFIG_UNIX98_PTYS=y | 807 | CONFIG_UNIX98_PTYS=y |
808 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
785 | CONFIG_LEGACY_PTYS=y | 809 | CONFIG_LEGACY_PTYS=y |
786 | CONFIG_LEGACY_PTY_COUNT=256 | 810 | CONFIG_LEGACY_PTY_COUNT=256 |
811 | # CONFIG_HVC_UDBG is not set | ||
787 | # CONFIG_IPMI_HANDLER is not set | 812 | # CONFIG_IPMI_HANDLER is not set |
788 | CONFIG_HW_RANDOM=y | 813 | CONFIG_HW_RANDOM=y |
789 | CONFIG_NVRAM=y | 814 | CONFIG_NVRAM=y |
@@ -869,11 +894,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
869 | # CONFIG_THERMAL is not set | 894 | # CONFIG_THERMAL is not set |
870 | # CONFIG_THERMAL_HWMON is not set | 895 | # CONFIG_THERMAL_HWMON is not set |
871 | # CONFIG_WATCHDOG is not set | 896 | # CONFIG_WATCHDOG is not set |
897 | CONFIG_SSB_POSSIBLE=y | ||
872 | 898 | ||
873 | # | 899 | # |
874 | # Sonics Silicon Backplane | 900 | # Sonics Silicon Backplane |
875 | # | 901 | # |
876 | CONFIG_SSB_POSSIBLE=y | ||
877 | # CONFIG_SSB is not set | 902 | # CONFIG_SSB is not set |
878 | 903 | ||
879 | # | 904 | # |
@@ -882,18 +907,13 @@ CONFIG_SSB_POSSIBLE=y | |||
882 | # CONFIG_MFD_CORE is not set | 907 | # CONFIG_MFD_CORE is not set |
883 | # CONFIG_MFD_SM501 is not set | 908 | # CONFIG_MFD_SM501 is not set |
884 | # CONFIG_HTC_PASIC3 is not set | 909 | # CONFIG_HTC_PASIC3 is not set |
910 | # CONFIG_TWL4030_CORE is not set | ||
885 | # CONFIG_MFD_TMIO is not set | 911 | # CONFIG_MFD_TMIO is not set |
886 | # CONFIG_PMIC_DA903X is not set | 912 | # CONFIG_PMIC_DA903X is not set |
887 | # CONFIG_MFD_WM8400 is not set | 913 | # CONFIG_MFD_WM8400 is not set |
888 | # CONFIG_MFD_WM8350_I2C is not set | 914 | # CONFIG_MFD_WM8350_I2C is not set |
889 | 915 | # CONFIG_MFD_PCF50633 is not set | |
890 | # | ||
891 | # Voltage and Current regulators | ||
892 | # | ||
893 | # CONFIG_REGULATOR is not set | 916 | # CONFIG_REGULATOR is not set |
894 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
895 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
896 | # CONFIG_REGULATOR_BQ24022 is not set | ||
897 | 917 | ||
898 | # | 918 | # |
899 | # Multimedia devices | 919 | # Multimedia devices |
@@ -920,6 +940,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
920 | CONFIG_MEDIA_TUNER_MT20XX=m | 940 | CONFIG_MEDIA_TUNER_MT20XX=m |
921 | CONFIG_MEDIA_TUNER_XC2028=m | 941 | CONFIG_MEDIA_TUNER_XC2028=m |
922 | CONFIG_MEDIA_TUNER_XC5000=m | 942 | CONFIG_MEDIA_TUNER_XC5000=m |
943 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
923 | CONFIG_DVB_CAPTURE_DRIVERS=y | 944 | CONFIG_DVB_CAPTURE_DRIVERS=y |
924 | 945 | ||
925 | # | 946 | # |
@@ -965,6 +986,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
965 | # CONFIG_DVB_FE_CUSTOMISE is not set | 986 | # CONFIG_DVB_FE_CUSTOMISE is not set |
966 | 987 | ||
967 | # | 988 | # |
989 | # Multistandard (satellite) frontends | ||
990 | # | ||
991 | # CONFIG_DVB_STB0899 is not set | ||
992 | # CONFIG_DVB_STB6100 is not set | ||
993 | |||
994 | # | ||
968 | # DVB-S (satellite) frontends | 995 | # DVB-S (satellite) frontends |
969 | # | 996 | # |
970 | # CONFIG_DVB_CX24110 is not set | 997 | # CONFIG_DVB_CX24110 is not set |
@@ -976,8 +1003,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
976 | # CONFIG_DVB_STV0299 is not set | 1003 | # CONFIG_DVB_STV0299 is not set |
977 | # CONFIG_DVB_TDA8083 is not set | 1004 | # CONFIG_DVB_TDA8083 is not set |
978 | # CONFIG_DVB_TDA10086 is not set | 1005 | # CONFIG_DVB_TDA10086 is not set |
1006 | # CONFIG_DVB_TDA8261 is not set | ||
979 | # CONFIG_DVB_VES1X93 is not set | 1007 | # CONFIG_DVB_VES1X93 is not set |
980 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1008 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1009 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
981 | # CONFIG_DVB_TDA826X is not set | 1010 | # CONFIG_DVB_TDA826X is not set |
982 | # CONFIG_DVB_TUA6100 is not set | 1011 | # CONFIG_DVB_TUA6100 is not set |
983 | # CONFIG_DVB_CX24116 is not set | 1012 | # CONFIG_DVB_CX24116 is not set |
@@ -1018,11 +1047,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1018 | # CONFIG_DVB_OR51132 is not set | 1047 | # CONFIG_DVB_OR51132 is not set |
1019 | # CONFIG_DVB_BCM3510 is not set | 1048 | # CONFIG_DVB_BCM3510 is not set |
1020 | # CONFIG_DVB_LGDT330X is not set | 1049 | # CONFIG_DVB_LGDT330X is not set |
1050 | # CONFIG_DVB_LGDT3304 is not set | ||
1021 | # CONFIG_DVB_S5H1409 is not set | 1051 | # CONFIG_DVB_S5H1409 is not set |
1022 | # CONFIG_DVB_AU8522 is not set | 1052 | # CONFIG_DVB_AU8522 is not set |
1023 | # CONFIG_DVB_S5H1411 is not set | 1053 | # CONFIG_DVB_S5H1411 is not set |
1024 | 1054 | ||
1025 | # | 1055 | # |
1056 | # ISDB-T (terrestrial) frontends | ||
1057 | # | ||
1058 | # CONFIG_DVB_S921 is not set | ||
1059 | |||
1060 | # | ||
1026 | # Digital terrestrial only tuners/PLL | 1061 | # Digital terrestrial only tuners/PLL |
1027 | # | 1062 | # |
1028 | # CONFIG_DVB_PLL is not set | 1063 | # CONFIG_DVB_PLL is not set |
@@ -1075,6 +1110,7 @@ CONFIG_SND_OSSEMUL=y | |||
1075 | CONFIG_SND_MIXER_OSS=y | 1110 | CONFIG_SND_MIXER_OSS=y |
1076 | CONFIG_SND_PCM_OSS=y | 1111 | CONFIG_SND_PCM_OSS=y |
1077 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1112 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1113 | # CONFIG_SND_HRTIMER is not set | ||
1078 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1114 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1079 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1115 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1080 | CONFIG_SND_VERBOSE_PROCFS=y | 1116 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1177,11 +1213,9 @@ CONFIG_HID_COMPAT=y | |||
1177 | CONFIG_HID_A4TECH=y | 1213 | CONFIG_HID_A4TECH=y |
1178 | CONFIG_HID_APPLE=y | 1214 | CONFIG_HID_APPLE=y |
1179 | CONFIG_HID_BELKIN=y | 1215 | CONFIG_HID_BELKIN=y |
1180 | CONFIG_HID_BRIGHT=y | ||
1181 | CONFIG_HID_CHERRY=y | 1216 | CONFIG_HID_CHERRY=y |
1182 | CONFIG_HID_CHICONY=y | 1217 | CONFIG_HID_CHICONY=y |
1183 | CONFIG_HID_CYPRESS=y | 1218 | CONFIG_HID_CYPRESS=y |
1184 | CONFIG_HID_DELL=y | ||
1185 | CONFIG_HID_EZKEY=y | 1219 | CONFIG_HID_EZKEY=y |
1186 | CONFIG_HID_GYRATION=y | 1220 | CONFIG_HID_GYRATION=y |
1187 | CONFIG_HID_LOGITECH=y | 1221 | CONFIG_HID_LOGITECH=y |
@@ -1189,12 +1223,15 @@ CONFIG_HID_LOGITECH=y | |||
1189 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1223 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1190 | CONFIG_HID_MICROSOFT=y | 1224 | CONFIG_HID_MICROSOFT=y |
1191 | CONFIG_HID_MONTEREY=y | 1225 | CONFIG_HID_MONTEREY=y |
1226 | # CONFIG_HID_NTRIG is not set | ||
1192 | CONFIG_HID_PANTHERLORD=y | 1227 | CONFIG_HID_PANTHERLORD=y |
1193 | # CONFIG_PANTHERLORD_FF is not set | 1228 | # CONFIG_PANTHERLORD_FF is not set |
1194 | CONFIG_HID_PETALYNX=y | 1229 | CONFIG_HID_PETALYNX=y |
1195 | CONFIG_HID_SAMSUNG=y | 1230 | CONFIG_HID_SAMSUNG=y |
1196 | CONFIG_HID_SONY=y | 1231 | CONFIG_HID_SONY=y |
1197 | CONFIG_HID_SUNPLUS=y | 1232 | CONFIG_HID_SUNPLUS=y |
1233 | # CONFIG_GREENASIA_FF is not set | ||
1234 | # CONFIG_HID_TOPSEED is not set | ||
1198 | CONFIG_THRUSTMASTER_FF=m | 1235 | CONFIG_THRUSTMASTER_FF=m |
1199 | CONFIG_ZEROPLUS_FF=m | 1236 | CONFIG_ZEROPLUS_FF=m |
1200 | CONFIG_USB_SUPPORT=y | 1237 | CONFIG_USB_SUPPORT=y |
@@ -1227,6 +1264,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1227 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1264 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1228 | # CONFIG_USB_EHCI_FSL is not set | 1265 | # CONFIG_USB_EHCI_FSL is not set |
1229 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1266 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1267 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1230 | # CONFIG_USB_ISP116X_HCD is not set | 1268 | # CONFIG_USB_ISP116X_HCD is not set |
1231 | # CONFIG_USB_ISP1760_HCD is not set | 1269 | # CONFIG_USB_ISP1760_HCD is not set |
1232 | CONFIG_USB_OHCI_HCD=y | 1270 | CONFIG_USB_OHCI_HCD=y |
@@ -1252,18 +1290,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1252 | # CONFIG_USB_TMC is not set | 1290 | # CONFIG_USB_TMC is not set |
1253 | 1291 | ||
1254 | # | 1292 | # |
1255 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1293 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1256 | # | 1294 | # |
1257 | 1295 | ||
1258 | # | 1296 | # |
1259 | # may also be needed; see USB_STORAGE Help for more information | 1297 | # see USB_STORAGE Help for more information |
1260 | # | 1298 | # |
1261 | CONFIG_USB_STORAGE=y | 1299 | CONFIG_USB_STORAGE=y |
1262 | # CONFIG_USB_STORAGE_DEBUG is not set | 1300 | # CONFIG_USB_STORAGE_DEBUG is not set |
1263 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1301 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1264 | # CONFIG_USB_STORAGE_FREECOM is not set | 1302 | # CONFIG_USB_STORAGE_FREECOM is not set |
1265 | # CONFIG_USB_STORAGE_ISD200 is not set | 1303 | # CONFIG_USB_STORAGE_ISD200 is not set |
1266 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1267 | # CONFIG_USB_STORAGE_USBAT is not set | 1304 | # CONFIG_USB_STORAGE_USBAT is not set |
1268 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1305 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1269 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1306 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1311,6 +1348,10 @@ CONFIG_USB_STORAGE=y | |||
1311 | # CONFIG_USB_ISIGHTFW is not set | 1348 | # CONFIG_USB_ISIGHTFW is not set |
1312 | # CONFIG_USB_VST is not set | 1349 | # CONFIG_USB_VST is not set |
1313 | # CONFIG_USB_GADGET is not set | 1350 | # CONFIG_USB_GADGET is not set |
1351 | |||
1352 | # | ||
1353 | # OTG and related infrastructure | ||
1354 | # | ||
1314 | # CONFIG_UWB is not set | 1355 | # CONFIG_UWB is not set |
1315 | # CONFIG_MMC is not set | 1356 | # CONFIG_MMC is not set |
1316 | # CONFIG_MEMSTICK is not set | 1357 | # CONFIG_MEMSTICK is not set |
@@ -1348,6 +1389,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1348 | # CONFIG_RTC_DRV_M41T80 is not set | 1389 | # CONFIG_RTC_DRV_M41T80 is not set |
1349 | # CONFIG_RTC_DRV_S35390A is not set | 1390 | # CONFIG_RTC_DRV_S35390A is not set |
1350 | # CONFIG_RTC_DRV_FM3130 is not set | 1391 | # CONFIG_RTC_DRV_FM3130 is not set |
1392 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1351 | 1393 | ||
1352 | # | 1394 | # |
1353 | # SPI RTC drivers | 1395 | # SPI RTC drivers |
@@ -1406,7 +1448,9 @@ CONFIG_FS_MBCACHE=y | |||
1406 | # CONFIG_FS_POSIX_ACL is not set | 1448 | # CONFIG_FS_POSIX_ACL is not set |
1407 | CONFIG_FILE_LOCKING=y | 1449 | CONFIG_FILE_LOCKING=y |
1408 | # CONFIG_XFS_FS is not set | 1450 | # CONFIG_XFS_FS is not set |
1451 | # CONFIG_GFS2_FS is not set | ||
1409 | # CONFIG_OCFS2_FS is not set | 1452 | # CONFIG_OCFS2_FS is not set |
1453 | # CONFIG_BTRFS_FS is not set | ||
1410 | CONFIG_DNOTIFY=y | 1454 | CONFIG_DNOTIFY=y |
1411 | CONFIG_INOTIFY=y | 1455 | CONFIG_INOTIFY=y |
1412 | CONFIG_INOTIFY_USER=y | 1456 | CONFIG_INOTIFY_USER=y |
@@ -1448,10 +1492,7 @@ CONFIG_TMPFS=y | |||
1448 | # CONFIG_TMPFS_POSIX_ACL is not set | 1492 | # CONFIG_TMPFS_POSIX_ACL is not set |
1449 | # CONFIG_HUGETLB_PAGE is not set | 1493 | # CONFIG_HUGETLB_PAGE is not set |
1450 | # CONFIG_CONFIGFS_FS is not set | 1494 | # CONFIG_CONFIGFS_FS is not set |
1451 | 1495 | CONFIG_MISC_FILESYSTEMS=y | |
1452 | # | ||
1453 | # Miscellaneous filesystems | ||
1454 | # | ||
1455 | CONFIG_ADFS_FS=m | 1496 | CONFIG_ADFS_FS=m |
1456 | # CONFIG_ADFS_FS_RW is not set | 1497 | # CONFIG_ADFS_FS_RW is not set |
1457 | CONFIG_AFFS_FS=m | 1498 | CONFIG_AFFS_FS=m |
@@ -1462,6 +1503,7 @@ CONFIG_BEFS_FS=m | |||
1462 | CONFIG_BFS_FS=m | 1503 | CONFIG_BFS_FS=m |
1463 | CONFIG_EFS_FS=m | 1504 | CONFIG_EFS_FS=m |
1464 | CONFIG_CRAMFS=y | 1505 | CONFIG_CRAMFS=y |
1506 | # CONFIG_SQUASHFS is not set | ||
1465 | CONFIG_VXFS_FS=m | 1507 | CONFIG_VXFS_FS=m |
1466 | # CONFIG_MINIX_FS is not set | 1508 | # CONFIG_MINIX_FS is not set |
1467 | # CONFIG_OMFS_FS is not set | 1509 | # CONFIG_OMFS_FS is not set |
@@ -1563,6 +1605,7 @@ CONFIG_NLS_UTF8=m | |||
1563 | # Library routines | 1605 | # Library routines |
1564 | # | 1606 | # |
1565 | CONFIG_BITREVERSE=y | 1607 | CONFIG_BITREVERSE=y |
1608 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1566 | # CONFIG_CRC_CCITT is not set | 1609 | # CONFIG_CRC_CCITT is not set |
1567 | # CONFIG_CRC16 is not set | 1610 | # CONFIG_CRC16 is not set |
1568 | CONFIG_CRC_T10DIF=y | 1611 | CONFIG_CRC_T10DIF=y |
@@ -1614,6 +1657,7 @@ CONFIG_DEBUG_INFO=y | |||
1614 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1657 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1615 | # CONFIG_DEBUG_LIST is not set | 1658 | # CONFIG_DEBUG_LIST is not set |
1616 | # CONFIG_DEBUG_SG is not set | 1659 | # CONFIG_DEBUG_SG is not set |
1660 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1617 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1661 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1618 | # CONFIG_RCU_TORTURE_TEST is not set | 1662 | # CONFIG_RCU_TORTURE_TEST is not set |
1619 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1663 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1623,6 +1667,8 @@ CONFIG_DEBUG_INFO=y | |||
1623 | # CONFIG_LATENCYTOP is not set | 1667 | # CONFIG_LATENCYTOP is not set |
1624 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1668 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1625 | CONFIG_HAVE_FUNCTION_TRACER=y | 1669 | CONFIG_HAVE_FUNCTION_TRACER=y |
1670 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1671 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1626 | 1672 | ||
1627 | # | 1673 | # |
1628 | # Tracers | 1674 | # Tracers |
@@ -1631,11 +1677,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1631 | # CONFIG_SCHED_TRACER is not set | 1677 | # CONFIG_SCHED_TRACER is not set |
1632 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1678 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1633 | # CONFIG_BOOT_TRACER is not set | 1679 | # CONFIG_BOOT_TRACER is not set |
1680 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1634 | # CONFIG_STACK_TRACER is not set | 1681 | # CONFIG_STACK_TRACER is not set |
1635 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1682 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1636 | # CONFIG_SAMPLES is not set | 1683 | # CONFIG_SAMPLES is not set |
1637 | CONFIG_HAVE_ARCH_KGDB=y | 1684 | CONFIG_HAVE_ARCH_KGDB=y |
1638 | # CONFIG_KGDB is not set | 1685 | # CONFIG_KGDB is not set |
1686 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1639 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1687 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1640 | # CONFIG_DEBUG_STACK_USAGE is not set | 1688 | # CONFIG_DEBUG_STACK_USAGE is not set |
1641 | # CONFIG_DEBUG_PAGEALLOC is not set | 1689 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1661,11 +1709,16 @@ CONFIG_CRYPTO=y | |||
1661 | # | 1709 | # |
1662 | # CONFIG_CRYPTO_FIPS is not set | 1710 | # CONFIG_CRYPTO_FIPS is not set |
1663 | CONFIG_CRYPTO_ALGAPI=y | 1711 | CONFIG_CRYPTO_ALGAPI=y |
1712 | CONFIG_CRYPTO_ALGAPI2=y | ||
1664 | CONFIG_CRYPTO_AEAD=y | 1713 | CONFIG_CRYPTO_AEAD=y |
1714 | CONFIG_CRYPTO_AEAD2=y | ||
1665 | CONFIG_CRYPTO_BLKCIPHER=y | 1715 | CONFIG_CRYPTO_BLKCIPHER=y |
1716 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1666 | CONFIG_CRYPTO_HASH=y | 1717 | CONFIG_CRYPTO_HASH=y |
1667 | CONFIG_CRYPTO_RNG=y | 1718 | CONFIG_CRYPTO_HASH2=y |
1719 | CONFIG_CRYPTO_RNG2=y | ||
1668 | CONFIG_CRYPTO_MANAGER=y | 1720 | CONFIG_CRYPTO_MANAGER=y |
1721 | CONFIG_CRYPTO_MANAGER2=y | ||
1669 | # CONFIG_CRYPTO_GF128MUL is not set | 1722 | # CONFIG_CRYPTO_GF128MUL is not set |
1670 | # CONFIG_CRYPTO_NULL is not set | 1723 | # CONFIG_CRYPTO_NULL is not set |
1671 | # CONFIG_CRYPTO_CRYPTD is not set | 1724 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1699,7 +1752,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1699 | # | 1752 | # |
1700 | # Digest | 1753 | # Digest |
1701 | # | 1754 | # |
1702 | # CONFIG_CRYPTO_CRC32C is not set | 1755 | CONFIG_CRYPTO_CRC32C=m |
1703 | # CONFIG_CRYPTO_MD4 is not set | 1756 | # CONFIG_CRYPTO_MD4 is not set |
1704 | CONFIG_CRYPTO_MD5=y | 1757 | CONFIG_CRYPTO_MD5=y |
1705 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1758 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8560_ads_defconfig b/arch/powerpc/configs/85xx/mpc8560_ads_defconfig index 6cf929259ba7..095e2ded6e8b 100644 --- a/arch/powerpc/configs/85xx/mpc8560_ads_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:09 2008 | 4 | # Mon Jan 26 15:36:09 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | # CONFIG_FAIR_GROUP_SCHED is not set | 82 | # CONFIG_FAIR_GROUP_SCHED is not set |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -116,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
116 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
117 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
118 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
119 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
122 | CONFIG_HAVE_IOREMAP_PROT=y | 123 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -127,13 +128,11 @@ CONFIG_HAVE_CLK=y | |||
127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
128 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
129 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
130 | # CONFIG_TINY_SHMEM is not set | ||
131 | CONFIG_BASE_SMALL=0 | 131 | CONFIG_BASE_SMALL=0 |
132 | # CONFIG_MODULES is not set | 132 | # CONFIG_MODULES is not set |
133 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
134 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
135 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
136 | # CONFIG_LSF is not set | ||
137 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
138 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
139 | 138 | ||
@@ -150,6 +149,10 @@ CONFIG_DEFAULT_AS=y | |||
150 | # CONFIG_DEFAULT_NOOP is not set | 149 | # CONFIG_DEFAULT_NOOP is not set |
151 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
152 | CONFIG_CLASSIC_RCU=y | 151 | CONFIG_CLASSIC_RCU=y |
152 | # CONFIG_TREE_RCU is not set | ||
153 | # CONFIG_PREEMPT_RCU is not set | ||
154 | # CONFIG_TREE_RCU_TRACE is not set | ||
155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
153 | # CONFIG_FREEZER is not set | 156 | # CONFIG_FREEZER is not set |
154 | 157 | ||
155 | # | 158 | # |
@@ -190,6 +193,7 @@ CONFIG_CPM2=y | |||
190 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
191 | CONFIG_CPM=y | 194 | CONFIG_CPM=y |
192 | # CONFIG_MPC8xxx_GPIO is not set | 195 | # CONFIG_MPC8xxx_GPIO is not set |
196 | # CONFIG_SIMPLE_GPIO is not set | ||
193 | 197 | ||
194 | # | 198 | # |
195 | # Kernel options | 199 | # Kernel options |
@@ -227,12 +231,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
227 | CONFIG_PAGEFLAGS_EXTENDED=y | 231 | CONFIG_PAGEFLAGS_EXTENDED=y |
228 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
229 | CONFIG_MIGRATION=y | 233 | CONFIG_MIGRATION=y |
230 | # CONFIG_RESOURCES_64BIT is not set | ||
231 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 234 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
232 | CONFIG_ZONE_DMA_FLAG=1 | 235 | CONFIG_ZONE_DMA_FLAG=1 |
233 | CONFIG_BOUNCE=y | 236 | CONFIG_BOUNCE=y |
234 | CONFIG_VIRT_TO_BUS=y | 237 | CONFIG_VIRT_TO_BUS=y |
235 | CONFIG_UNEVICTABLE_LRU=y | 238 | CONFIG_UNEVICTABLE_LRU=y |
239 | CONFIG_PPC_4K_PAGES=y | ||
240 | # CONFIG_PPC_16K_PAGES is not set | ||
241 | # CONFIG_PPC_64K_PAGES is not set | ||
236 | CONFIG_FORCE_MAX_ZONEORDER=11 | 242 | CONFIG_FORCE_MAX_ZONEORDER=11 |
237 | # CONFIG_PROC_DEVICETREE is not set | 243 | # CONFIG_PROC_DEVICETREE is not set |
238 | # CONFIG_CMDLINE_BOOL is not set | 244 | # CONFIG_CMDLINE_BOOL is not set |
@@ -257,6 +263,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
257 | # CONFIG_PCI_MSI is not set | 263 | # CONFIG_PCI_MSI is not set |
258 | # CONFIG_PCI_LEGACY is not set | 264 | # CONFIG_PCI_LEGACY is not set |
259 | CONFIG_PCI_DEBUG=y | 265 | CONFIG_PCI_DEBUG=y |
266 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 267 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 268 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 269 | # CONFIG_HAS_RAPIDIO is not set |
@@ -280,6 +287,7 @@ CONFIG_NET=y | |||
280 | # | 287 | # |
281 | # Networking options | 288 | # Networking options |
282 | # | 289 | # |
290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
283 | CONFIG_PACKET=y | 291 | CONFIG_PACKET=y |
284 | # CONFIG_PACKET_MMAP is not set | 292 | # CONFIG_PACKET_MMAP is not set |
285 | CONFIG_UNIX=y | 293 | CONFIG_UNIX=y |
@@ -336,6 +344,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
336 | # CONFIG_ECONET is not set | 344 | # CONFIG_ECONET is not set |
337 | # CONFIG_WAN_ROUTER is not set | 345 | # CONFIG_WAN_ROUTER is not set |
338 | # CONFIG_NET_SCHED is not set | 346 | # CONFIG_NET_SCHED is not set |
347 | # CONFIG_DCB is not set | ||
339 | 348 | ||
340 | # | 349 | # |
341 | # Network testing | 350 | # Network testing |
@@ -351,8 +360,9 @@ CONFIG_WIRELESS=y | |||
351 | # CONFIG_CFG80211 is not set | 360 | # CONFIG_CFG80211 is not set |
352 | CONFIG_WIRELESS_OLD_REGULATORY=y | 361 | CONFIG_WIRELESS_OLD_REGULATORY=y |
353 | # CONFIG_WIRELESS_EXT is not set | 362 | # CONFIG_WIRELESS_EXT is not set |
363 | # CONFIG_LIB80211 is not set | ||
354 | # CONFIG_MAC80211 is not set | 364 | # CONFIG_MAC80211 is not set |
355 | # CONFIG_IEEE80211 is not set | 365 | # CONFIG_WIMAX is not set |
356 | # CONFIG_RFKILL is not set | 366 | # CONFIG_RFKILL is not set |
357 | # CONFIG_NET_9P is not set | 367 | # CONFIG_NET_9P is not set |
358 | 368 | ||
@@ -400,6 +410,7 @@ CONFIG_MISC_DEVICES=y | |||
400 | # CONFIG_TIFM_CORE is not set | 410 | # CONFIG_TIFM_CORE is not set |
401 | # CONFIG_ENCLOSURE_SERVICES is not set | 411 | # CONFIG_ENCLOSURE_SERVICES is not set |
402 | # CONFIG_HP_ILO is not set | 412 | # CONFIG_HP_ILO is not set |
413 | # CONFIG_C2PORT is not set | ||
403 | CONFIG_HAVE_IDE=y | 414 | CONFIG_HAVE_IDE=y |
404 | # CONFIG_IDE is not set | 415 | # CONFIG_IDE is not set |
405 | 416 | ||
@@ -448,6 +459,9 @@ CONFIG_DAVICOM_PHY=y | |||
448 | # CONFIG_BROADCOM_PHY is not set | 459 | # CONFIG_BROADCOM_PHY is not set |
449 | # CONFIG_ICPLUS_PHY is not set | 460 | # CONFIG_ICPLUS_PHY is not set |
450 | # CONFIG_REALTEK_PHY is not set | 461 | # CONFIG_REALTEK_PHY is not set |
462 | # CONFIG_NATIONAL_PHY is not set | ||
463 | # CONFIG_STE10XP is not set | ||
464 | # CONFIG_LSI_ET1011C_PHY is not set | ||
451 | # CONFIG_FIXED_PHY is not set | 465 | # CONFIG_FIXED_PHY is not set |
452 | # CONFIG_MDIO_BITBANG is not set | 466 | # CONFIG_MDIO_BITBANG is not set |
453 | CONFIG_NET_ETHERNET=y | 467 | CONFIG_NET_ETHERNET=y |
@@ -496,6 +510,7 @@ CONFIG_GIANFAR=y | |||
496 | # CONFIG_JME is not set | 510 | # CONFIG_JME is not set |
497 | CONFIG_NETDEV_10000=y | 511 | CONFIG_NETDEV_10000=y |
498 | # CONFIG_CHELSIO_T1 is not set | 512 | # CONFIG_CHELSIO_T1 is not set |
513 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
499 | # CONFIG_CHELSIO_T3 is not set | 514 | # CONFIG_CHELSIO_T3 is not set |
500 | # CONFIG_ENIC is not set | 515 | # CONFIG_ENIC is not set |
501 | # CONFIG_IXGBE is not set | 516 | # CONFIG_IXGBE is not set |
@@ -518,6 +533,10 @@ CONFIG_NETDEV_10000=y | |||
518 | # CONFIG_WLAN_PRE80211 is not set | 533 | # CONFIG_WLAN_PRE80211 is not set |
519 | # CONFIG_WLAN_80211 is not set | 534 | # CONFIG_WLAN_80211 is not set |
520 | # CONFIG_IWLWIFI_LEDS is not set | 535 | # CONFIG_IWLWIFI_LEDS is not set |
536 | |||
537 | # | ||
538 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
539 | # | ||
521 | # CONFIG_WAN is not set | 540 | # CONFIG_WAN is not set |
522 | # CONFIG_FDDI is not set | 541 | # CONFIG_FDDI is not set |
523 | # CONFIG_HIPPI is not set | 542 | # CONFIG_HIPPI is not set |
@@ -583,8 +602,10 @@ CONFIG_SERIAL_CPM=y | |||
583 | CONFIG_SERIAL_CPM_CONSOLE=y | 602 | CONFIG_SERIAL_CPM_CONSOLE=y |
584 | # CONFIG_SERIAL_JSM is not set | 603 | # CONFIG_SERIAL_JSM is not set |
585 | CONFIG_UNIX98_PTYS=y | 604 | CONFIG_UNIX98_PTYS=y |
605 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
586 | CONFIG_LEGACY_PTYS=y | 606 | CONFIG_LEGACY_PTYS=y |
587 | CONFIG_LEGACY_PTY_COUNT=256 | 607 | CONFIG_LEGACY_PTY_COUNT=256 |
608 | # CONFIG_HVC_UDBG is not set | ||
588 | # CONFIG_IPMI_HANDLER is not set | 609 | # CONFIG_IPMI_HANDLER is not set |
589 | CONFIG_HW_RANDOM=y | 610 | CONFIG_HW_RANDOM=y |
590 | # CONFIG_NVRAM is not set | 611 | # CONFIG_NVRAM is not set |
@@ -604,6 +625,11 @@ CONFIG_GPIOLIB=y | |||
604 | # CONFIG_GPIO_SYSFS is not set | 625 | # CONFIG_GPIO_SYSFS is not set |
605 | 626 | ||
606 | # | 627 | # |
628 | # Memory mapped GPIO expanders: | ||
629 | # | ||
630 | # CONFIG_GPIO_XILINX is not set | ||
631 | |||
632 | # | ||
607 | # I2C GPIO expanders: | 633 | # I2C GPIO expanders: |
608 | # | 634 | # |
609 | 635 | ||
@@ -637,11 +663,11 @@ CONFIG_HWMON=y | |||
637 | # CONFIG_THERMAL is not set | 663 | # CONFIG_THERMAL is not set |
638 | # CONFIG_THERMAL_HWMON is not set | 664 | # CONFIG_THERMAL_HWMON is not set |
639 | # CONFIG_WATCHDOG is not set | 665 | # CONFIG_WATCHDOG is not set |
666 | CONFIG_SSB_POSSIBLE=y | ||
640 | 667 | ||
641 | # | 668 | # |
642 | # Sonics Silicon Backplane | 669 | # Sonics Silicon Backplane |
643 | # | 670 | # |
644 | CONFIG_SSB_POSSIBLE=y | ||
645 | # CONFIG_SSB is not set | 671 | # CONFIG_SSB is not set |
646 | 672 | ||
647 | # | 673 | # |
@@ -651,14 +677,7 @@ CONFIG_SSB_POSSIBLE=y | |||
651 | # CONFIG_MFD_SM501 is not set | 677 | # CONFIG_MFD_SM501 is not set |
652 | # CONFIG_HTC_PASIC3 is not set | 678 | # CONFIG_HTC_PASIC3 is not set |
653 | # CONFIG_MFD_TMIO is not set | 679 | # CONFIG_MFD_TMIO is not set |
654 | |||
655 | # | ||
656 | # Voltage and Current regulators | ||
657 | # | ||
658 | # CONFIG_REGULATOR is not set | 680 | # CONFIG_REGULATOR is not set |
659 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
660 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
661 | # CONFIG_REGULATOR_BQ24022 is not set | ||
662 | 681 | ||
663 | # | 682 | # |
664 | # Multimedia devices | 683 | # Multimedia devices |
@@ -714,9 +733,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
714 | # | 733 | # |
715 | 734 | ||
716 | # | 735 | # |
717 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 736 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
718 | # | 737 | # |
719 | # CONFIG_USB_GADGET is not set | 738 | # CONFIG_USB_GADGET is not set |
739 | |||
740 | # | ||
741 | # OTG and related infrastructure | ||
742 | # | ||
720 | # CONFIG_UWB is not set | 743 | # CONFIG_UWB is not set |
721 | # CONFIG_MMC is not set | 744 | # CONFIG_MMC is not set |
722 | # CONFIG_MEMSTICK is not set | 745 | # CONFIG_MEMSTICK is not set |
@@ -748,6 +771,7 @@ CONFIG_FS_MBCACHE=y | |||
748 | CONFIG_FILE_LOCKING=y | 771 | CONFIG_FILE_LOCKING=y |
749 | # CONFIG_XFS_FS is not set | 772 | # CONFIG_XFS_FS is not set |
750 | # CONFIG_OCFS2_FS is not set | 773 | # CONFIG_OCFS2_FS is not set |
774 | # CONFIG_BTRFS_FS is not set | ||
751 | CONFIG_DNOTIFY=y | 775 | CONFIG_DNOTIFY=y |
752 | CONFIG_INOTIFY=y | 776 | CONFIG_INOTIFY=y |
753 | CONFIG_INOTIFY_USER=y | 777 | CONFIG_INOTIFY_USER=y |
@@ -781,10 +805,7 @@ CONFIG_TMPFS=y | |||
781 | # CONFIG_TMPFS_POSIX_ACL is not set | 805 | # CONFIG_TMPFS_POSIX_ACL is not set |
782 | # CONFIG_HUGETLB_PAGE is not set | 806 | # CONFIG_HUGETLB_PAGE is not set |
783 | # CONFIG_CONFIGFS_FS is not set | 807 | # CONFIG_CONFIGFS_FS is not set |
784 | 808 | CONFIG_MISC_FILESYSTEMS=y | |
785 | # | ||
786 | # Miscellaneous filesystems | ||
787 | # | ||
788 | # CONFIG_ADFS_FS is not set | 809 | # CONFIG_ADFS_FS is not set |
789 | # CONFIG_AFFS_FS is not set | 810 | # CONFIG_AFFS_FS is not set |
790 | # CONFIG_HFS_FS is not set | 811 | # CONFIG_HFS_FS is not set |
@@ -793,6 +814,7 @@ CONFIG_TMPFS=y | |||
793 | # CONFIG_BFS_FS is not set | 814 | # CONFIG_BFS_FS is not set |
794 | # CONFIG_EFS_FS is not set | 815 | # CONFIG_EFS_FS is not set |
795 | # CONFIG_CRAMFS is not set | 816 | # CONFIG_CRAMFS is not set |
817 | # CONFIG_SQUASHFS is not set | ||
796 | # CONFIG_VXFS_FS is not set | 818 | # CONFIG_VXFS_FS is not set |
797 | # CONFIG_MINIX_FS is not set | 819 | # CONFIG_MINIX_FS is not set |
798 | # CONFIG_OMFS_FS is not set | 820 | # CONFIG_OMFS_FS is not set |
@@ -843,6 +865,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
843 | # Library routines | 865 | # Library routines |
844 | # | 866 | # |
845 | CONFIG_BITREVERSE=y | 867 | CONFIG_BITREVERSE=y |
868 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
846 | # CONFIG_CRC_CCITT is not set | 869 | # CONFIG_CRC_CCITT is not set |
847 | # CONFIG_CRC16 is not set | 870 | # CONFIG_CRC16 is not set |
848 | # CONFIG_CRC_T10DIF is not set | 871 | # CONFIG_CRC_T10DIF is not set |
@@ -892,6 +915,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
892 | # CONFIG_DEBUG_MEMORY_INIT is not set | 915 | # CONFIG_DEBUG_MEMORY_INIT is not set |
893 | # CONFIG_DEBUG_LIST is not set | 916 | # CONFIG_DEBUG_LIST is not set |
894 | # CONFIG_DEBUG_SG is not set | 917 | # CONFIG_DEBUG_SG is not set |
918 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
895 | # CONFIG_BOOT_PRINTK_DELAY is not set | 919 | # CONFIG_BOOT_PRINTK_DELAY is not set |
896 | # CONFIG_RCU_TORTURE_TEST is not set | 920 | # CONFIG_RCU_TORTURE_TEST is not set |
897 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 921 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -901,6 +925,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
901 | # CONFIG_LATENCYTOP is not set | 925 | # CONFIG_LATENCYTOP is not set |
902 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 926 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
903 | CONFIG_HAVE_FUNCTION_TRACER=y | 927 | CONFIG_HAVE_FUNCTION_TRACER=y |
928 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
929 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
904 | 930 | ||
905 | # | 931 | # |
906 | # Tracers | 932 | # Tracers |
@@ -909,11 +935,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
909 | # CONFIG_SCHED_TRACER is not set | 935 | # CONFIG_SCHED_TRACER is not set |
910 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 936 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
911 | # CONFIG_BOOT_TRACER is not set | 937 | # CONFIG_BOOT_TRACER is not set |
938 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
912 | # CONFIG_STACK_TRACER is not set | 939 | # CONFIG_STACK_TRACER is not set |
913 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 940 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
914 | # CONFIG_SAMPLES is not set | 941 | # CONFIG_SAMPLES is not set |
915 | CONFIG_HAVE_ARCH_KGDB=y | 942 | CONFIG_HAVE_ARCH_KGDB=y |
916 | # CONFIG_KGDB is not set | 943 | # CONFIG_KGDB is not set |
944 | CONFIG_PRINT_STACK_DEPTH=64 | ||
917 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 945 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
918 | # CONFIG_DEBUG_STACK_USAGE is not set | 946 | # CONFIG_DEBUG_STACK_USAGE is not set |
919 | # CONFIG_DEBUG_PAGEALLOC is not set | 947 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -939,6 +967,7 @@ CONFIG_CRYPTO=y | |||
939 | # | 967 | # |
940 | # CONFIG_CRYPTO_FIPS is not set | 968 | # CONFIG_CRYPTO_FIPS is not set |
941 | # CONFIG_CRYPTO_MANAGER is not set | 969 | # CONFIG_CRYPTO_MANAGER is not set |
970 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
942 | # CONFIG_CRYPTO_GF128MUL is not set | 971 | # CONFIG_CRYPTO_GF128MUL is not set |
943 | # CONFIG_CRYPTO_NULL is not set | 972 | # CONFIG_CRYPTO_NULL is not set |
944 | # CONFIG_CRYPTO_CRYPTD is not set | 973 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8568mds_defconfig b/arch/powerpc/configs/85xx/mpc8568mds_defconfig index ab5b0b58924c..186c1010a135 100644 --- a/arch/powerpc/configs/85xx/mpc8568mds_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:11 2008 | 4 | # Mon Jan 26 15:36:10 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 81 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -113,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 120 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,7 +124,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 129 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +131,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 131 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 132 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 133 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 134 | CONFIG_BLOCK=y |
136 | # CONFIG_LBD is not set | 135 | # CONFIG_LBD is not set |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 139 | ||
@@ -152,6 +150,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 152 | CONFIG_CLASSIC_RCU=y |
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
156 | 158 | ||
157 | # | 159 | # |
@@ -192,6 +194,7 @@ CONFIG_QUICC_ENGINE=y | |||
192 | # CONFIG_CPM2 is not set | 194 | # CONFIG_CPM2 is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
194 | # CONFIG_MPC8xxx_GPIO is not set | 196 | # CONFIG_MPC8xxx_GPIO is not set |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
195 | 198 | ||
196 | # | 199 | # |
197 | # Kernel options | 200 | # Kernel options |
@@ -230,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
230 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
232 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
233 | # CONFIG_RESOURCES_64BIT is not set | ||
234 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 236 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
235 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
236 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
237 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
238 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
241 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
@@ -260,6 +265,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
260 | # CONFIG_PCI_MSI is not set | 265 | # CONFIG_PCI_MSI is not set |
261 | # CONFIG_PCI_LEGACY is not set | 266 | # CONFIG_PCI_LEGACY is not set |
262 | # CONFIG_PCI_DEBUG is not set | 267 | # CONFIG_PCI_DEBUG is not set |
268 | # CONFIG_PCI_STUB is not set | ||
263 | # CONFIG_PCCARD is not set | 269 | # CONFIG_PCCARD is not set |
264 | # CONFIG_HOTPLUG_PCI is not set | 270 | # CONFIG_HOTPLUG_PCI is not set |
265 | # CONFIG_HAS_RAPIDIO is not set | 271 | # CONFIG_HAS_RAPIDIO is not set |
@@ -283,6 +289,7 @@ CONFIG_NET=y | |||
283 | # | 289 | # |
284 | # Networking options | 290 | # Networking options |
285 | # | 291 | # |
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
286 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
287 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
288 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
@@ -339,6 +346,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
339 | # CONFIG_ECONET is not set | 346 | # CONFIG_ECONET is not set |
340 | # CONFIG_WAN_ROUTER is not set | 347 | # CONFIG_WAN_ROUTER is not set |
341 | # CONFIG_NET_SCHED is not set | 348 | # CONFIG_NET_SCHED is not set |
349 | # CONFIG_DCB is not set | ||
342 | 350 | ||
343 | # | 351 | # |
344 | # Network testing | 352 | # Network testing |
@@ -354,8 +362,9 @@ CONFIG_WIRELESS=y | |||
354 | # CONFIG_CFG80211 is not set | 362 | # CONFIG_CFG80211 is not set |
355 | CONFIG_WIRELESS_OLD_REGULATORY=y | 363 | CONFIG_WIRELESS_OLD_REGULATORY=y |
356 | # CONFIG_WIRELESS_EXT is not set | 364 | # CONFIG_WIRELESS_EXT is not set |
365 | # CONFIG_LIB80211 is not set | ||
357 | # CONFIG_MAC80211 is not set | 366 | # CONFIG_MAC80211 is not set |
358 | # CONFIG_IEEE80211 is not set | 367 | # CONFIG_WIMAX is not set |
359 | # CONFIG_RFKILL is not set | 368 | # CONFIG_RFKILL is not set |
360 | # CONFIG_NET_9P is not set | 369 | # CONFIG_NET_9P is not set |
361 | 370 | ||
@@ -401,8 +410,10 @@ CONFIG_MISC_DEVICES=y | |||
401 | # CONFIG_EEPROM_93CX6 is not set | 410 | # CONFIG_EEPROM_93CX6 is not set |
402 | # CONFIG_SGI_IOC4 is not set | 411 | # CONFIG_SGI_IOC4 is not set |
403 | # CONFIG_TIFM_CORE is not set | 412 | # CONFIG_TIFM_CORE is not set |
413 | # CONFIG_ICS932S401 is not set | ||
404 | # CONFIG_ENCLOSURE_SERVICES is not set | 414 | # CONFIG_ENCLOSURE_SERVICES is not set |
405 | # CONFIG_HP_ILO is not set | 415 | # CONFIG_HP_ILO is not set |
416 | # CONFIG_C2PORT is not set | ||
406 | CONFIG_HAVE_IDE=y | 417 | CONFIG_HAVE_IDE=y |
407 | # CONFIG_IDE is not set | 418 | # CONFIG_IDE is not set |
408 | 419 | ||
@@ -445,6 +456,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
445 | # CONFIG_SCSI_SRP_ATTRS is not set | 456 | # CONFIG_SCSI_SRP_ATTRS is not set |
446 | CONFIG_SCSI_LOWLEVEL=y | 457 | CONFIG_SCSI_LOWLEVEL=y |
447 | # CONFIG_ISCSI_TCP is not set | 458 | # CONFIG_ISCSI_TCP is not set |
459 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
448 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 460 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
449 | # CONFIG_SCSI_3W_9XXX is not set | 461 | # CONFIG_SCSI_3W_9XXX is not set |
450 | # CONFIG_SCSI_ACARD is not set | 462 | # CONFIG_SCSI_ACARD is not set |
@@ -461,6 +473,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
461 | # CONFIG_MEGARAID_SAS is not set | 473 | # CONFIG_MEGARAID_SAS is not set |
462 | # CONFIG_SCSI_HPTIOP is not set | 474 | # CONFIG_SCSI_HPTIOP is not set |
463 | # CONFIG_SCSI_BUSLOGIC is not set | 475 | # CONFIG_SCSI_BUSLOGIC is not set |
476 | # CONFIG_LIBFC is not set | ||
477 | # CONFIG_FCOE is not set | ||
464 | # CONFIG_SCSI_DMX3191D is not set | 478 | # CONFIG_SCSI_DMX3191D is not set |
465 | # CONFIG_SCSI_EATA is not set | 479 | # CONFIG_SCSI_EATA is not set |
466 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 480 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -519,6 +533,9 @@ CONFIG_MARVELL_PHY=y | |||
519 | # CONFIG_BROADCOM_PHY is not set | 533 | # CONFIG_BROADCOM_PHY is not set |
520 | # CONFIG_ICPLUS_PHY is not set | 534 | # CONFIG_ICPLUS_PHY is not set |
521 | # CONFIG_REALTEK_PHY is not set | 535 | # CONFIG_REALTEK_PHY is not set |
536 | # CONFIG_NATIONAL_PHY is not set | ||
537 | # CONFIG_STE10XP is not set | ||
538 | # CONFIG_LSI_ET1011C_PHY is not set | ||
522 | # CONFIG_FIXED_PHY is not set | 539 | # CONFIG_FIXED_PHY is not set |
523 | # CONFIG_MDIO_BITBANG is not set | 540 | # CONFIG_MDIO_BITBANG is not set |
524 | CONFIG_NET_ETHERNET=y | 541 | CONFIG_NET_ETHERNET=y |
@@ -564,6 +581,7 @@ CONFIG_GIANFAR=y | |||
564 | # CONFIG_JME is not set | 581 | # CONFIG_JME is not set |
565 | CONFIG_NETDEV_10000=y | 582 | CONFIG_NETDEV_10000=y |
566 | # CONFIG_CHELSIO_T1 is not set | 583 | # CONFIG_CHELSIO_T1 is not set |
584 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
567 | # CONFIG_CHELSIO_T3 is not set | 585 | # CONFIG_CHELSIO_T3 is not set |
568 | # CONFIG_ENIC is not set | 586 | # CONFIG_ENIC is not set |
569 | # CONFIG_IXGBE is not set | 587 | # CONFIG_IXGBE is not set |
@@ -586,6 +604,10 @@ CONFIG_NETDEV_10000=y | |||
586 | # CONFIG_WLAN_PRE80211 is not set | 604 | # CONFIG_WLAN_PRE80211 is not set |
587 | # CONFIG_WLAN_80211 is not set | 605 | # CONFIG_WLAN_80211 is not set |
588 | # CONFIG_IWLWIFI_LEDS is not set | 606 | # CONFIG_IWLWIFI_LEDS is not set |
607 | |||
608 | # | ||
609 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
610 | # | ||
589 | # CONFIG_WAN is not set | 611 | # CONFIG_WAN is not set |
590 | # CONFIG_FDDI is not set | 612 | # CONFIG_FDDI is not set |
591 | # CONFIG_HIPPI is not set | 613 | # CONFIG_HIPPI is not set |
@@ -658,8 +680,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
658 | # CONFIG_SERIAL_OF_PLATFORM is not set | 680 | # CONFIG_SERIAL_OF_PLATFORM is not set |
659 | # CONFIG_SERIAL_QE is not set | 681 | # CONFIG_SERIAL_QE is not set |
660 | CONFIG_UNIX98_PTYS=y | 682 | CONFIG_UNIX98_PTYS=y |
683 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
661 | CONFIG_LEGACY_PTYS=y | 684 | CONFIG_LEGACY_PTYS=y |
662 | CONFIG_LEGACY_PTY_COUNT=256 | 685 | CONFIG_LEGACY_PTY_COUNT=256 |
686 | # CONFIG_HVC_UDBG is not set | ||
663 | # CONFIG_IPMI_HANDLER is not set | 687 | # CONFIG_IPMI_HANDLER is not set |
664 | CONFIG_HW_RANDOM=y | 688 | CONFIG_HW_RANDOM=y |
665 | # CONFIG_NVRAM is not set | 689 | # CONFIG_NVRAM is not set |
@@ -750,8 +774,10 @@ CONFIG_HWMON=y | |||
750 | # CONFIG_SENSORS_ADM1029 is not set | 774 | # CONFIG_SENSORS_ADM1029 is not set |
751 | # CONFIG_SENSORS_ADM1031 is not set | 775 | # CONFIG_SENSORS_ADM1031 is not set |
752 | # CONFIG_SENSORS_ADM9240 is not set | 776 | # CONFIG_SENSORS_ADM9240 is not set |
777 | # CONFIG_SENSORS_ADT7462 is not set | ||
753 | # CONFIG_SENSORS_ADT7470 is not set | 778 | # CONFIG_SENSORS_ADT7470 is not set |
754 | # CONFIG_SENSORS_ADT7473 is not set | 779 | # CONFIG_SENSORS_ADT7473 is not set |
780 | # CONFIG_SENSORS_ADT7475 is not set | ||
755 | # CONFIG_SENSORS_ATXP1 is not set | 781 | # CONFIG_SENSORS_ATXP1 is not set |
756 | # CONFIG_SENSORS_DS1621 is not set | 782 | # CONFIG_SENSORS_DS1621 is not set |
757 | # CONFIG_SENSORS_I5K_AMB is not set | 783 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -772,6 +798,7 @@ CONFIG_HWMON=y | |||
772 | # CONFIG_SENSORS_LM90 is not set | 798 | # CONFIG_SENSORS_LM90 is not set |
773 | # CONFIG_SENSORS_LM92 is not set | 799 | # CONFIG_SENSORS_LM92 is not set |
774 | # CONFIG_SENSORS_LM93 is not set | 800 | # CONFIG_SENSORS_LM93 is not set |
801 | # CONFIG_SENSORS_LTC4245 is not set | ||
775 | # CONFIG_SENSORS_MAX1619 is not set | 802 | # CONFIG_SENSORS_MAX1619 is not set |
776 | # CONFIG_SENSORS_MAX6650 is not set | 803 | # CONFIG_SENSORS_MAX6650 is not set |
777 | # CONFIG_SENSORS_PC87360 is not set | 804 | # CONFIG_SENSORS_PC87360 is not set |
@@ -812,11 +839,11 @@ CONFIG_WATCHDOG=y | |||
812 | # | 839 | # |
813 | # CONFIG_PCIPCWATCHDOG is not set | 840 | # CONFIG_PCIPCWATCHDOG is not set |
814 | # CONFIG_WDTPCI is not set | 841 | # CONFIG_WDTPCI is not set |
842 | CONFIG_SSB_POSSIBLE=y | ||
815 | 843 | ||
816 | # | 844 | # |
817 | # Sonics Silicon Backplane | 845 | # Sonics Silicon Backplane |
818 | # | 846 | # |
819 | CONFIG_SSB_POSSIBLE=y | ||
820 | # CONFIG_SSB is not set | 847 | # CONFIG_SSB is not set |
821 | 848 | ||
822 | # | 849 | # |
@@ -825,18 +852,13 @@ CONFIG_SSB_POSSIBLE=y | |||
825 | # CONFIG_MFD_CORE is not set | 852 | # CONFIG_MFD_CORE is not set |
826 | # CONFIG_MFD_SM501 is not set | 853 | # CONFIG_MFD_SM501 is not set |
827 | # CONFIG_HTC_PASIC3 is not set | 854 | # CONFIG_HTC_PASIC3 is not set |
855 | # CONFIG_TWL4030_CORE is not set | ||
828 | # CONFIG_MFD_TMIO is not set | 856 | # CONFIG_MFD_TMIO is not set |
829 | # CONFIG_PMIC_DA903X is not set | 857 | # CONFIG_PMIC_DA903X is not set |
830 | # CONFIG_MFD_WM8400 is not set | 858 | # CONFIG_MFD_WM8400 is not set |
831 | # CONFIG_MFD_WM8350_I2C is not set | 859 | # CONFIG_MFD_WM8350_I2C is not set |
832 | 860 | # CONFIG_MFD_PCF50633 is not set | |
833 | # | ||
834 | # Voltage and Current regulators | ||
835 | # | ||
836 | # CONFIG_REGULATOR is not set | 861 | # CONFIG_REGULATOR is not set |
837 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
838 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
839 | # CONFIG_REGULATOR_BQ24022 is not set | ||
840 | 862 | ||
841 | # | 863 | # |
842 | # Multimedia devices | 864 | # Multimedia devices |
@@ -892,9 +914,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
892 | # | 914 | # |
893 | 915 | ||
894 | # | 916 | # |
895 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 917 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
896 | # | 918 | # |
897 | # CONFIG_USB_GADGET is not set | 919 | # CONFIG_USB_GADGET is not set |
920 | |||
921 | # | ||
922 | # OTG and related infrastructure | ||
923 | # | ||
898 | # CONFIG_UWB is not set | 924 | # CONFIG_UWB is not set |
899 | # CONFIG_MMC is not set | 925 | # CONFIG_MMC is not set |
900 | # CONFIG_MEMSTICK is not set | 926 | # CONFIG_MEMSTICK is not set |
@@ -932,6 +958,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
932 | # CONFIG_RTC_DRV_M41T80 is not set | 958 | # CONFIG_RTC_DRV_M41T80 is not set |
933 | # CONFIG_RTC_DRV_S35390A is not set | 959 | # CONFIG_RTC_DRV_S35390A is not set |
934 | # CONFIG_RTC_DRV_FM3130 is not set | 960 | # CONFIG_RTC_DRV_FM3130 is not set |
961 | # CONFIG_RTC_DRV_RX8581 is not set | ||
935 | 962 | ||
936 | # | 963 | # |
937 | # SPI RTC drivers | 964 | # SPI RTC drivers |
@@ -979,6 +1006,7 @@ CONFIG_FS_MBCACHE=y | |||
979 | CONFIG_FILE_LOCKING=y | 1006 | CONFIG_FILE_LOCKING=y |
980 | # CONFIG_XFS_FS is not set | 1007 | # CONFIG_XFS_FS is not set |
981 | # CONFIG_OCFS2_FS is not set | 1008 | # CONFIG_OCFS2_FS is not set |
1009 | # CONFIG_BTRFS_FS is not set | ||
982 | CONFIG_DNOTIFY=y | 1010 | CONFIG_DNOTIFY=y |
983 | CONFIG_INOTIFY=y | 1011 | CONFIG_INOTIFY=y |
984 | CONFIG_INOTIFY_USER=y | 1012 | CONFIG_INOTIFY_USER=y |
@@ -1012,10 +1040,7 @@ CONFIG_TMPFS=y | |||
1012 | # CONFIG_TMPFS_POSIX_ACL is not set | 1040 | # CONFIG_TMPFS_POSIX_ACL is not set |
1013 | # CONFIG_HUGETLB_PAGE is not set | 1041 | # CONFIG_HUGETLB_PAGE is not set |
1014 | # CONFIG_CONFIGFS_FS is not set | 1042 | # CONFIG_CONFIGFS_FS is not set |
1015 | 1043 | CONFIG_MISC_FILESYSTEMS=y | |
1016 | # | ||
1017 | # Miscellaneous filesystems | ||
1018 | # | ||
1019 | # CONFIG_ADFS_FS is not set | 1044 | # CONFIG_ADFS_FS is not set |
1020 | # CONFIG_AFFS_FS is not set | 1045 | # CONFIG_AFFS_FS is not set |
1021 | # CONFIG_HFS_FS is not set | 1046 | # CONFIG_HFS_FS is not set |
@@ -1024,6 +1049,7 @@ CONFIG_TMPFS=y | |||
1024 | # CONFIG_BFS_FS is not set | 1049 | # CONFIG_BFS_FS is not set |
1025 | # CONFIG_EFS_FS is not set | 1050 | # CONFIG_EFS_FS is not set |
1026 | # CONFIG_CRAMFS is not set | 1051 | # CONFIG_CRAMFS is not set |
1052 | # CONFIG_SQUASHFS is not set | ||
1027 | # CONFIG_VXFS_FS is not set | 1053 | # CONFIG_VXFS_FS is not set |
1028 | # CONFIG_MINIX_FS is not set | 1054 | # CONFIG_MINIX_FS is not set |
1029 | # CONFIG_OMFS_FS is not set | 1055 | # CONFIG_OMFS_FS is not set |
@@ -1077,6 +1103,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1077 | # Library routines | 1103 | # Library routines |
1078 | # | 1104 | # |
1079 | CONFIG_BITREVERSE=y | 1105 | CONFIG_BITREVERSE=y |
1106 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1080 | # CONFIG_CRC_CCITT is not set | 1107 | # CONFIG_CRC_CCITT is not set |
1081 | # CONFIG_CRC16 is not set | 1108 | # CONFIG_CRC16 is not set |
1082 | # CONFIG_CRC_T10DIF is not set | 1109 | # CONFIG_CRC_T10DIF is not set |
@@ -1126,6 +1153,7 @@ CONFIG_SCHED_DEBUG=y | |||
1126 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1153 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1127 | # CONFIG_DEBUG_LIST is not set | 1154 | # CONFIG_DEBUG_LIST is not set |
1128 | # CONFIG_DEBUG_SG is not set | 1155 | # CONFIG_DEBUG_SG is not set |
1156 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1129 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1157 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1130 | # CONFIG_RCU_TORTURE_TEST is not set | 1158 | # CONFIG_RCU_TORTURE_TEST is not set |
1131 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1159 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1135,6 +1163,8 @@ CONFIG_SCHED_DEBUG=y | |||
1135 | # CONFIG_LATENCYTOP is not set | 1163 | # CONFIG_LATENCYTOP is not set |
1136 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1164 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1137 | CONFIG_HAVE_FUNCTION_TRACER=y | 1165 | CONFIG_HAVE_FUNCTION_TRACER=y |
1166 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1167 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1138 | 1168 | ||
1139 | # | 1169 | # |
1140 | # Tracers | 1170 | # Tracers |
@@ -1143,11 +1173,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1143 | # CONFIG_SCHED_TRACER is not set | 1173 | # CONFIG_SCHED_TRACER is not set |
1144 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1174 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1145 | # CONFIG_BOOT_TRACER is not set | 1175 | # CONFIG_BOOT_TRACER is not set |
1176 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1146 | # CONFIG_STACK_TRACER is not set | 1177 | # CONFIG_STACK_TRACER is not set |
1147 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1178 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1148 | # CONFIG_SAMPLES is not set | 1179 | # CONFIG_SAMPLES is not set |
1149 | CONFIG_HAVE_ARCH_KGDB=y | 1180 | CONFIG_HAVE_ARCH_KGDB=y |
1150 | # CONFIG_KGDB is not set | 1181 | # CONFIG_KGDB is not set |
1182 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1151 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1183 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1152 | # CONFIG_DEBUG_STACK_USAGE is not set | 1184 | # CONFIG_DEBUG_STACK_USAGE is not set |
1153 | # CONFIG_DEBUG_PAGEALLOC is not set | 1185 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1184,11 +1216,15 @@ CONFIG_CRYPTO=y | |||
1184 | # | 1216 | # |
1185 | # CONFIG_CRYPTO_FIPS is not set | 1217 | # CONFIG_CRYPTO_FIPS is not set |
1186 | CONFIG_CRYPTO_ALGAPI=y | 1218 | CONFIG_CRYPTO_ALGAPI=y |
1187 | CONFIG_CRYPTO_AEAD=y | 1219 | CONFIG_CRYPTO_ALGAPI2=y |
1220 | CONFIG_CRYPTO_AEAD2=y | ||
1188 | CONFIG_CRYPTO_BLKCIPHER=y | 1221 | CONFIG_CRYPTO_BLKCIPHER=y |
1222 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1189 | CONFIG_CRYPTO_HASH=y | 1223 | CONFIG_CRYPTO_HASH=y |
1190 | CONFIG_CRYPTO_RNG=y | 1224 | CONFIG_CRYPTO_HASH2=y |
1225 | CONFIG_CRYPTO_RNG2=y | ||
1191 | CONFIG_CRYPTO_MANAGER=y | 1226 | CONFIG_CRYPTO_MANAGER=y |
1227 | CONFIG_CRYPTO_MANAGER2=y | ||
1192 | # CONFIG_CRYPTO_GF128MUL is not set | 1228 | # CONFIG_CRYPTO_GF128MUL is not set |
1193 | # CONFIG_CRYPTO_NULL is not set | 1229 | # CONFIG_CRYPTO_NULL is not set |
1194 | # CONFIG_CRYPTO_CRYPTD is not set | 1230 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8572_ds_defconfig b/arch/powerpc/configs/85xx/mpc8572_ds_defconfig index 65ef823e08c6..813223ae174d 100644 --- a/arch/powerpc/configs/85xx/mpc8572_ds_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc8 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Tue Dec 30 11:17:46 2008 | 4 | # Mon Jan 26 15:36:12 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -48,7 +48,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
48 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
49 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
50 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
51 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
53 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
54 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -81,12 +81,12 @@ CONFIG_AUDIT=y | |||
81 | CONFIG_IKCONFIG=y | 81 | CONFIG_IKCONFIG=y |
82 | CONFIG_IKCONFIG_PROC=y | 82 | CONFIG_IKCONFIG_PROC=y |
83 | CONFIG_LOG_BUF_SHIFT=14 | 83 | CONFIG_LOG_BUF_SHIFT=14 |
84 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_GROUP_SCHED=y | 84 | CONFIG_GROUP_SCHED=y |
86 | # CONFIG_FAIR_GROUP_SCHED is not set | 85 | # CONFIG_FAIR_GROUP_SCHED is not set |
87 | # CONFIG_RT_GROUP_SCHED is not set | 86 | # CONFIG_RT_GROUP_SCHED is not set |
88 | CONFIG_USER_SCHED=y | 87 | CONFIG_USER_SCHED=y |
89 | # CONFIG_CGROUP_SCHED is not set | 88 | # CONFIG_CGROUP_SCHED is not set |
89 | # CONFIG_CGROUPS is not set | ||
90 | CONFIG_SYSFS_DEPRECATED=y | 90 | CONFIG_SYSFS_DEPRECATED=y |
91 | CONFIG_SYSFS_DEPRECATED_V2=y | 91 | CONFIG_SYSFS_DEPRECATED_V2=y |
92 | # CONFIG_RELAY is not set | 92 | # CONFIG_RELAY is not set |
@@ -99,6 +99,7 @@ CONFIG_EMBEDDED=y | |||
99 | CONFIG_SYSCTL_SYSCALL=y | 99 | CONFIG_SYSCTL_SYSCALL=y |
100 | CONFIG_KALLSYMS=y | 100 | CONFIG_KALLSYMS=y |
101 | CONFIG_KALLSYMS_ALL=y | 101 | CONFIG_KALLSYMS_ALL=y |
102 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
102 | CONFIG_KALLSYMS_EXTRA_PASS=y | 103 | CONFIG_KALLSYMS_EXTRA_PASS=y |
103 | CONFIG_HOTPLUG=y | 104 | CONFIG_HOTPLUG=y |
104 | CONFIG_PRINTK=y | 105 | CONFIG_PRINTK=y |
@@ -121,7 +122,6 @@ CONFIG_SLUB_DEBUG=y | |||
121 | CONFIG_SLUB=y | 122 | CONFIG_SLUB=y |
122 | # CONFIG_SLOB is not set | 123 | # CONFIG_SLOB is not set |
123 | # CONFIG_PROFILING is not set | 124 | # CONFIG_PROFILING is not set |
124 | # CONFIG_MARKERS is not set | ||
125 | CONFIG_HAVE_OPROFILE=y | 125 | CONFIG_HAVE_OPROFILE=y |
126 | # CONFIG_KPROBES is not set | 126 | # CONFIG_KPROBES is not set |
127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -133,7 +133,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
134 | CONFIG_SLABINFO=y | 134 | CONFIG_SLABINFO=y |
135 | CONFIG_RT_MUTEXES=y | 135 | CONFIG_RT_MUTEXES=y |
136 | # CONFIG_TINY_SHMEM is not set | ||
137 | CONFIG_BASE_SMALL=0 | 136 | CONFIG_BASE_SMALL=0 |
138 | CONFIG_MODULES=y | 137 | CONFIG_MODULES=y |
139 | # CONFIG_MODULE_FORCE_LOAD is not set | 138 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -141,12 +140,10 @@ CONFIG_MODULE_UNLOAD=y | |||
141 | CONFIG_MODULE_FORCE_UNLOAD=y | 140 | CONFIG_MODULE_FORCE_UNLOAD=y |
142 | CONFIG_MODVERSIONS=y | 141 | CONFIG_MODVERSIONS=y |
143 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 142 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
144 | CONFIG_KMOD=y | ||
145 | CONFIG_STOP_MACHINE=y | 143 | CONFIG_STOP_MACHINE=y |
146 | CONFIG_BLOCK=y | 144 | CONFIG_BLOCK=y |
147 | CONFIG_LBD=y | 145 | CONFIG_LBD=y |
148 | # CONFIG_BLK_DEV_IO_TRACE is not set | 146 | # CONFIG_BLK_DEV_IO_TRACE is not set |
149 | # CONFIG_LSF is not set | ||
150 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
151 | # CONFIG_BLK_DEV_INTEGRITY is not set | 148 | # CONFIG_BLK_DEV_INTEGRITY is not set |
152 | 149 | ||
@@ -163,6 +160,10 @@ CONFIG_DEFAULT_CFQ=y | |||
163 | # CONFIG_DEFAULT_NOOP is not set | 160 | # CONFIG_DEFAULT_NOOP is not set |
164 | CONFIG_DEFAULT_IOSCHED="cfq" | 161 | CONFIG_DEFAULT_IOSCHED="cfq" |
165 | CONFIG_CLASSIC_RCU=y | 162 | CONFIG_CLASSIC_RCU=y |
163 | # CONFIG_TREE_RCU is not set | ||
164 | # CONFIG_PREEMPT_RCU is not set | ||
165 | # CONFIG_TREE_RCU_TRACE is not set | ||
166 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
166 | # CONFIG_FREEZER is not set | 167 | # CONFIG_FREEZER is not set |
167 | 168 | ||
168 | # | 169 | # |
@@ -242,7 +243,6 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
242 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
243 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
244 | CONFIG_MIGRATION=y | 245 | CONFIG_MIGRATION=y |
245 | # CONFIG_RESOURCES_64BIT is not set | ||
246 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 246 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
247 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
248 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
@@ -276,6 +276,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
276 | # CONFIG_PCI_MSI is not set | 276 | # CONFIG_PCI_MSI is not set |
277 | # CONFIG_PCI_LEGACY is not set | 277 | # CONFIG_PCI_LEGACY is not set |
278 | # CONFIG_PCI_DEBUG is not set | 278 | # CONFIG_PCI_DEBUG is not set |
279 | # CONFIG_PCI_STUB is not set | ||
279 | # CONFIG_PCCARD is not set | 280 | # CONFIG_PCCARD is not set |
280 | # CONFIG_HOTPLUG_PCI is not set | 281 | # CONFIG_HOTPLUG_PCI is not set |
281 | # CONFIG_HAS_RAPIDIO is not set | 282 | # CONFIG_HAS_RAPIDIO is not set |
@@ -299,6 +300,7 @@ CONFIG_NET=y | |||
299 | # | 300 | # |
300 | # Networking options | 301 | # Networking options |
301 | # | 302 | # |
303 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
302 | CONFIG_PACKET=y | 304 | CONFIG_PACKET=y |
303 | # CONFIG_PACKET_MMAP is not set | 305 | # CONFIG_PACKET_MMAP is not set |
304 | CONFIG_UNIX=y | 306 | CONFIG_UNIX=y |
@@ -387,6 +389,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
387 | # CONFIG_ECONET is not set | 389 | # CONFIG_ECONET is not set |
388 | # CONFIG_WAN_ROUTER is not set | 390 | # CONFIG_WAN_ROUTER is not set |
389 | # CONFIG_NET_SCHED is not set | 391 | # CONFIG_NET_SCHED is not set |
392 | # CONFIG_DCB is not set | ||
390 | 393 | ||
391 | # | 394 | # |
392 | # Network testing | 395 | # Network testing |
@@ -403,8 +406,9 @@ CONFIG_WIRELESS=y | |||
403 | # CONFIG_CFG80211 is not set | 406 | # CONFIG_CFG80211 is not set |
404 | CONFIG_WIRELESS_OLD_REGULATORY=y | 407 | CONFIG_WIRELESS_OLD_REGULATORY=y |
405 | # CONFIG_WIRELESS_EXT is not set | 408 | # CONFIG_WIRELESS_EXT is not set |
409 | # CONFIG_LIB80211 is not set | ||
406 | # CONFIG_MAC80211 is not set | 410 | # CONFIG_MAC80211 is not set |
407 | # CONFIG_IEEE80211 is not set | 411 | # CONFIG_WIMAX is not set |
408 | # CONFIG_RFKILL is not set | 412 | # CONFIG_RFKILL is not set |
409 | # CONFIG_NET_9P is not set | 413 | # CONFIG_NET_9P is not set |
410 | 414 | ||
@@ -500,6 +504,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
500 | # CONFIG_SCSI_SRP_ATTRS is not set | 504 | # CONFIG_SCSI_SRP_ATTRS is not set |
501 | CONFIG_SCSI_LOWLEVEL=y | 505 | CONFIG_SCSI_LOWLEVEL=y |
502 | # CONFIG_ISCSI_TCP is not set | 506 | # CONFIG_ISCSI_TCP is not set |
507 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
503 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 508 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
504 | # CONFIG_SCSI_3W_9XXX is not set | 509 | # CONFIG_SCSI_3W_9XXX is not set |
505 | # CONFIG_SCSI_ACARD is not set | 510 | # CONFIG_SCSI_ACARD is not set |
@@ -516,6 +521,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
516 | # CONFIG_MEGARAID_SAS is not set | 521 | # CONFIG_MEGARAID_SAS is not set |
517 | # CONFIG_SCSI_HPTIOP is not set | 522 | # CONFIG_SCSI_HPTIOP is not set |
518 | # CONFIG_SCSI_BUSLOGIC is not set | 523 | # CONFIG_SCSI_BUSLOGIC is not set |
524 | # CONFIG_LIBFC is not set | ||
525 | # CONFIG_FCOE is not set | ||
519 | # CONFIG_SCSI_DMX3191D is not set | 526 | # CONFIG_SCSI_DMX3191D is not set |
520 | # CONFIG_SCSI_EATA is not set | 527 | # CONFIG_SCSI_EATA is not set |
521 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 528 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -635,6 +642,9 @@ CONFIG_VITESSE_PHY=y | |||
635 | # CONFIG_BROADCOM_PHY is not set | 642 | # CONFIG_BROADCOM_PHY is not set |
636 | # CONFIG_ICPLUS_PHY is not set | 643 | # CONFIG_ICPLUS_PHY is not set |
637 | # CONFIG_REALTEK_PHY is not set | 644 | # CONFIG_REALTEK_PHY is not set |
645 | # CONFIG_NATIONAL_PHY is not set | ||
646 | # CONFIG_STE10XP is not set | ||
647 | # CONFIG_LSI_ET1011C_PHY is not set | ||
638 | # CONFIG_FIXED_PHY is not set | 648 | # CONFIG_FIXED_PHY is not set |
639 | # CONFIG_MDIO_BITBANG is not set | 649 | # CONFIG_MDIO_BITBANG is not set |
640 | CONFIG_NET_ETHERNET=y | 650 | CONFIG_NET_ETHERNET=y |
@@ -679,6 +689,7 @@ CONFIG_GIANFAR=y | |||
679 | # CONFIG_JME is not set | 689 | # CONFIG_JME is not set |
680 | CONFIG_NETDEV_10000=y | 690 | CONFIG_NETDEV_10000=y |
681 | # CONFIG_CHELSIO_T1 is not set | 691 | # CONFIG_CHELSIO_T1 is not set |
692 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
682 | # CONFIG_CHELSIO_T3 is not set | 693 | # CONFIG_CHELSIO_T3 is not set |
683 | # CONFIG_ENIC is not set | 694 | # CONFIG_ENIC is not set |
684 | # CONFIG_IXGBE is not set | 695 | # CONFIG_IXGBE is not set |
@@ -703,6 +714,10 @@ CONFIG_NETDEV_10000=y | |||
703 | # CONFIG_IWLWIFI_LEDS is not set | 714 | # CONFIG_IWLWIFI_LEDS is not set |
704 | 715 | ||
705 | # | 716 | # |
717 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
718 | # | ||
719 | |||
720 | # | ||
706 | # USB Network Adapters | 721 | # USB Network Adapters |
707 | # | 722 | # |
708 | # CONFIG_USB_CATC is not set | 723 | # CONFIG_USB_CATC is not set |
@@ -794,6 +809,7 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
794 | # CONFIG_SERIAL_JSM is not set | 809 | # CONFIG_SERIAL_JSM is not set |
795 | # CONFIG_SERIAL_OF_PLATFORM is not set | 810 | # CONFIG_SERIAL_OF_PLATFORM is not set |
796 | CONFIG_UNIX98_PTYS=y | 811 | CONFIG_UNIX98_PTYS=y |
812 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
797 | CONFIG_LEGACY_PTYS=y | 813 | CONFIG_LEGACY_PTYS=y |
798 | CONFIG_LEGACY_PTY_COUNT=256 | 814 | CONFIG_LEGACY_PTY_COUNT=256 |
799 | # CONFIG_HVC_UDBG is not set | 815 | # CONFIG_HVC_UDBG is not set |
@@ -895,10 +911,12 @@ CONFIG_SSB_POSSIBLE=y | |||
895 | # CONFIG_MFD_CORE is not set | 911 | # CONFIG_MFD_CORE is not set |
896 | # CONFIG_MFD_SM501 is not set | 912 | # CONFIG_MFD_SM501 is not set |
897 | # CONFIG_HTC_PASIC3 is not set | 913 | # CONFIG_HTC_PASIC3 is not set |
914 | # CONFIG_TWL4030_CORE is not set | ||
898 | # CONFIG_MFD_TMIO is not set | 915 | # CONFIG_MFD_TMIO is not set |
899 | # CONFIG_PMIC_DA903X is not set | 916 | # CONFIG_PMIC_DA903X is not set |
900 | # CONFIG_MFD_WM8400 is not set | 917 | # CONFIG_MFD_WM8400 is not set |
901 | # CONFIG_MFD_WM8350_I2C is not set | 918 | # CONFIG_MFD_WM8350_I2C is not set |
919 | # CONFIG_MFD_PCF50633 is not set | ||
902 | # CONFIG_REGULATOR is not set | 920 | # CONFIG_REGULATOR is not set |
903 | 921 | ||
904 | # | 922 | # |
@@ -926,6 +944,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
926 | CONFIG_MEDIA_TUNER_MT20XX=m | 944 | CONFIG_MEDIA_TUNER_MT20XX=m |
927 | CONFIG_MEDIA_TUNER_XC2028=m | 945 | CONFIG_MEDIA_TUNER_XC2028=m |
928 | CONFIG_MEDIA_TUNER_XC5000=m | 946 | CONFIG_MEDIA_TUNER_XC5000=m |
947 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
929 | CONFIG_DVB_CAPTURE_DRIVERS=y | 948 | CONFIG_DVB_CAPTURE_DRIVERS=y |
930 | 949 | ||
931 | # | 950 | # |
@@ -971,6 +990,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
971 | # CONFIG_DVB_FE_CUSTOMISE is not set | 990 | # CONFIG_DVB_FE_CUSTOMISE is not set |
972 | 991 | ||
973 | # | 992 | # |
993 | # Multistandard (satellite) frontends | ||
994 | # | ||
995 | # CONFIG_DVB_STB0899 is not set | ||
996 | # CONFIG_DVB_STB6100 is not set | ||
997 | |||
998 | # | ||
974 | # DVB-S (satellite) frontends | 999 | # DVB-S (satellite) frontends |
975 | # | 1000 | # |
976 | # CONFIG_DVB_CX24110 is not set | 1001 | # CONFIG_DVB_CX24110 is not set |
@@ -982,8 +1007,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
982 | # CONFIG_DVB_STV0299 is not set | 1007 | # CONFIG_DVB_STV0299 is not set |
983 | # CONFIG_DVB_TDA8083 is not set | 1008 | # CONFIG_DVB_TDA8083 is not set |
984 | # CONFIG_DVB_TDA10086 is not set | 1009 | # CONFIG_DVB_TDA10086 is not set |
1010 | # CONFIG_DVB_TDA8261 is not set | ||
985 | # CONFIG_DVB_VES1X93 is not set | 1011 | # CONFIG_DVB_VES1X93 is not set |
986 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1012 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1013 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
987 | # CONFIG_DVB_TDA826X is not set | 1014 | # CONFIG_DVB_TDA826X is not set |
988 | # CONFIG_DVB_TUA6100 is not set | 1015 | # CONFIG_DVB_TUA6100 is not set |
989 | # CONFIG_DVB_CX24116 is not set | 1016 | # CONFIG_DVB_CX24116 is not set |
@@ -1024,11 +1051,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1024 | # CONFIG_DVB_OR51132 is not set | 1051 | # CONFIG_DVB_OR51132 is not set |
1025 | # CONFIG_DVB_BCM3510 is not set | 1052 | # CONFIG_DVB_BCM3510 is not set |
1026 | # CONFIG_DVB_LGDT330X is not set | 1053 | # CONFIG_DVB_LGDT330X is not set |
1054 | # CONFIG_DVB_LGDT3304 is not set | ||
1027 | # CONFIG_DVB_S5H1409 is not set | 1055 | # CONFIG_DVB_S5H1409 is not set |
1028 | # CONFIG_DVB_AU8522 is not set | 1056 | # CONFIG_DVB_AU8522 is not set |
1029 | # CONFIG_DVB_S5H1411 is not set | 1057 | # CONFIG_DVB_S5H1411 is not set |
1030 | 1058 | ||
1031 | # | 1059 | # |
1060 | # ISDB-T (terrestrial) frontends | ||
1061 | # | ||
1062 | # CONFIG_DVB_S921 is not set | ||
1063 | |||
1064 | # | ||
1032 | # Digital terrestrial only tuners/PLL | 1065 | # Digital terrestrial only tuners/PLL |
1033 | # | 1066 | # |
1034 | # CONFIG_DVB_PLL is not set | 1067 | # CONFIG_DVB_PLL is not set |
@@ -1081,6 +1114,7 @@ CONFIG_SND_OSSEMUL=y | |||
1081 | CONFIG_SND_MIXER_OSS=y | 1114 | CONFIG_SND_MIXER_OSS=y |
1082 | CONFIG_SND_PCM_OSS=y | 1115 | CONFIG_SND_PCM_OSS=y |
1083 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1116 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1117 | # CONFIG_SND_HRTIMER is not set | ||
1084 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1118 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1085 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1119 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1086 | CONFIG_SND_VERBOSE_PROCFS=y | 1120 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1183,11 +1217,9 @@ CONFIG_HID_COMPAT=y | |||
1183 | CONFIG_HID_A4TECH=y | 1217 | CONFIG_HID_A4TECH=y |
1184 | CONFIG_HID_APPLE=y | 1218 | CONFIG_HID_APPLE=y |
1185 | CONFIG_HID_BELKIN=y | 1219 | CONFIG_HID_BELKIN=y |
1186 | CONFIG_HID_BRIGHT=y | ||
1187 | CONFIG_HID_CHERRY=y | 1220 | CONFIG_HID_CHERRY=y |
1188 | CONFIG_HID_CHICONY=y | 1221 | CONFIG_HID_CHICONY=y |
1189 | CONFIG_HID_CYPRESS=y | 1222 | CONFIG_HID_CYPRESS=y |
1190 | CONFIG_HID_DELL=y | ||
1191 | CONFIG_HID_EZKEY=y | 1223 | CONFIG_HID_EZKEY=y |
1192 | CONFIG_HID_GYRATION=y | 1224 | CONFIG_HID_GYRATION=y |
1193 | CONFIG_HID_LOGITECH=y | 1225 | CONFIG_HID_LOGITECH=y |
@@ -1195,12 +1227,15 @@ CONFIG_HID_LOGITECH=y | |||
1195 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1227 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1196 | CONFIG_HID_MICROSOFT=y | 1228 | CONFIG_HID_MICROSOFT=y |
1197 | CONFIG_HID_MONTEREY=y | 1229 | CONFIG_HID_MONTEREY=y |
1230 | # CONFIG_HID_NTRIG is not set | ||
1198 | CONFIG_HID_PANTHERLORD=y | 1231 | CONFIG_HID_PANTHERLORD=y |
1199 | # CONFIG_PANTHERLORD_FF is not set | 1232 | # CONFIG_PANTHERLORD_FF is not set |
1200 | CONFIG_HID_PETALYNX=y | 1233 | CONFIG_HID_PETALYNX=y |
1201 | CONFIG_HID_SAMSUNG=y | 1234 | CONFIG_HID_SAMSUNG=y |
1202 | CONFIG_HID_SONY=y | 1235 | CONFIG_HID_SONY=y |
1203 | CONFIG_HID_SUNPLUS=y | 1236 | CONFIG_HID_SUNPLUS=y |
1237 | # CONFIG_GREENASIA_FF is not set | ||
1238 | # CONFIG_HID_TOPSEED is not set | ||
1204 | CONFIG_THRUSTMASTER_FF=m | 1239 | CONFIG_THRUSTMASTER_FF=m |
1205 | CONFIG_ZEROPLUS_FF=m | 1240 | CONFIG_ZEROPLUS_FF=m |
1206 | CONFIG_USB_SUPPORT=y | 1241 | CONFIG_USB_SUPPORT=y |
@@ -1233,6 +1268,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1233 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1268 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1234 | # CONFIG_USB_EHCI_FSL is not set | 1269 | # CONFIG_USB_EHCI_FSL is not set |
1235 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1270 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1271 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1236 | # CONFIG_USB_ISP116X_HCD is not set | 1272 | # CONFIG_USB_ISP116X_HCD is not set |
1237 | # CONFIG_USB_ISP1760_HCD is not set | 1273 | # CONFIG_USB_ISP1760_HCD is not set |
1238 | CONFIG_USB_OHCI_HCD=y | 1274 | CONFIG_USB_OHCI_HCD=y |
@@ -1269,7 +1305,6 @@ CONFIG_USB_STORAGE=y | |||
1269 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1305 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1270 | # CONFIG_USB_STORAGE_FREECOM is not set | 1306 | # CONFIG_USB_STORAGE_FREECOM is not set |
1271 | # CONFIG_USB_STORAGE_ISD200 is not set | 1307 | # CONFIG_USB_STORAGE_ISD200 is not set |
1272 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1273 | # CONFIG_USB_STORAGE_USBAT is not set | 1308 | # CONFIG_USB_STORAGE_USBAT is not set |
1274 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1309 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1275 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1310 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1317,6 +1352,10 @@ CONFIG_USB_STORAGE=y | |||
1317 | # CONFIG_USB_ISIGHTFW is not set | 1352 | # CONFIG_USB_ISIGHTFW is not set |
1318 | # CONFIG_USB_VST is not set | 1353 | # CONFIG_USB_VST is not set |
1319 | # CONFIG_USB_GADGET is not set | 1354 | # CONFIG_USB_GADGET is not set |
1355 | |||
1356 | # | ||
1357 | # OTG and related infrastructure | ||
1358 | # | ||
1320 | # CONFIG_UWB is not set | 1359 | # CONFIG_UWB is not set |
1321 | # CONFIG_MMC is not set | 1360 | # CONFIG_MMC is not set |
1322 | # CONFIG_MEMSTICK is not set | 1361 | # CONFIG_MEMSTICK is not set |
@@ -1401,7 +1440,9 @@ CONFIG_FS_MBCACHE=y | |||
1401 | # CONFIG_FS_POSIX_ACL is not set | 1440 | # CONFIG_FS_POSIX_ACL is not set |
1402 | CONFIG_FILE_LOCKING=y | 1441 | CONFIG_FILE_LOCKING=y |
1403 | # CONFIG_XFS_FS is not set | 1442 | # CONFIG_XFS_FS is not set |
1443 | # CONFIG_GFS2_FS is not set | ||
1404 | # CONFIG_OCFS2_FS is not set | 1444 | # CONFIG_OCFS2_FS is not set |
1445 | # CONFIG_BTRFS_FS is not set | ||
1405 | CONFIG_DNOTIFY=y | 1446 | CONFIG_DNOTIFY=y |
1406 | CONFIG_INOTIFY=y | 1447 | CONFIG_INOTIFY=y |
1407 | CONFIG_INOTIFY_USER=y | 1448 | CONFIG_INOTIFY_USER=y |
@@ -1443,10 +1484,7 @@ CONFIG_TMPFS=y | |||
1443 | # CONFIG_TMPFS_POSIX_ACL is not set | 1484 | # CONFIG_TMPFS_POSIX_ACL is not set |
1444 | # CONFIG_HUGETLB_PAGE is not set | 1485 | # CONFIG_HUGETLB_PAGE is not set |
1445 | # CONFIG_CONFIGFS_FS is not set | 1486 | # CONFIG_CONFIGFS_FS is not set |
1446 | 1487 | CONFIG_MISC_FILESYSTEMS=y | |
1447 | # | ||
1448 | # Miscellaneous filesystems | ||
1449 | # | ||
1450 | CONFIG_ADFS_FS=m | 1488 | CONFIG_ADFS_FS=m |
1451 | # CONFIG_ADFS_FS_RW is not set | 1489 | # CONFIG_ADFS_FS_RW is not set |
1452 | CONFIG_AFFS_FS=m | 1490 | CONFIG_AFFS_FS=m |
@@ -1457,6 +1495,7 @@ CONFIG_BEFS_FS=m | |||
1457 | CONFIG_BFS_FS=m | 1495 | CONFIG_BFS_FS=m |
1458 | CONFIG_EFS_FS=m | 1496 | CONFIG_EFS_FS=m |
1459 | CONFIG_CRAMFS=y | 1497 | CONFIG_CRAMFS=y |
1498 | # CONFIG_SQUASHFS is not set | ||
1460 | CONFIG_VXFS_FS=m | 1499 | CONFIG_VXFS_FS=m |
1461 | # CONFIG_MINIX_FS is not set | 1500 | # CONFIG_MINIX_FS is not set |
1462 | # CONFIG_OMFS_FS is not set | 1501 | # CONFIG_OMFS_FS is not set |
@@ -1558,6 +1597,7 @@ CONFIG_NLS_UTF8=m | |||
1558 | # Library routines | 1597 | # Library routines |
1559 | # | 1598 | # |
1560 | CONFIG_BITREVERSE=y | 1599 | CONFIG_BITREVERSE=y |
1600 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1561 | # CONFIG_CRC_CCITT is not set | 1601 | # CONFIG_CRC_CCITT is not set |
1562 | # CONFIG_CRC16 is not set | 1602 | # CONFIG_CRC16 is not set |
1563 | CONFIG_CRC_T10DIF=y | 1603 | CONFIG_CRC_T10DIF=y |
@@ -1609,6 +1649,7 @@ CONFIG_DEBUG_INFO=y | |||
1609 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1649 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1610 | # CONFIG_DEBUG_LIST is not set | 1650 | # CONFIG_DEBUG_LIST is not set |
1611 | # CONFIG_DEBUG_SG is not set | 1651 | # CONFIG_DEBUG_SG is not set |
1652 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1612 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1653 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1613 | # CONFIG_RCU_TORTURE_TEST is not set | 1654 | # CONFIG_RCU_TORTURE_TEST is not set |
1614 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1655 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1618,6 +1659,8 @@ CONFIG_DEBUG_INFO=y | |||
1618 | # CONFIG_LATENCYTOP is not set | 1659 | # CONFIG_LATENCYTOP is not set |
1619 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1660 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1620 | CONFIG_HAVE_FUNCTION_TRACER=y | 1661 | CONFIG_HAVE_FUNCTION_TRACER=y |
1662 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1663 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1621 | 1664 | ||
1622 | # | 1665 | # |
1623 | # Tracers | 1666 | # Tracers |
@@ -1626,6 +1669,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1626 | # CONFIG_SCHED_TRACER is not set | 1669 | # CONFIG_SCHED_TRACER is not set |
1627 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1670 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1628 | # CONFIG_BOOT_TRACER is not set | 1671 | # CONFIG_BOOT_TRACER is not set |
1672 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1629 | # CONFIG_STACK_TRACER is not set | 1673 | # CONFIG_STACK_TRACER is not set |
1630 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1674 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1631 | # CONFIG_SAMPLES is not set | 1675 | # CONFIG_SAMPLES is not set |
@@ -1700,7 +1744,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1700 | # | 1744 | # |
1701 | # Digest | 1745 | # Digest |
1702 | # | 1746 | # |
1703 | # CONFIG_CRYPTO_CRC32C is not set | 1747 | CONFIG_CRYPTO_CRC32C=m |
1704 | # CONFIG_CRYPTO_MD4 is not set | 1748 | # CONFIG_CRYPTO_MD4 is not set |
1705 | CONFIG_CRYPTO_MD5=y | 1749 | CONFIG_CRYPTO_MD5=y |
1706 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1750 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig b/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig index 8769359dfe6a..f95961c04a20 100644 --- a/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:14 2008 | 4 | # Mon Jan 26 15:36:13 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 81 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -115,7 +117,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 117 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 118 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 119 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
121 | CONFIG_HAVE_IOREMAP_PROT=y | 122 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -125,13 +126,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | # CONFIG_MODULES is not set | 130 | # CONFIG_MODULES is not set |
131 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
132 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
133 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
134 | # CONFIG_LSF is not set | ||
135 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
137 | 136 | ||
@@ -148,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
148 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
151 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
152 | 155 | ||
153 | # | 156 | # |
@@ -187,6 +190,7 @@ CONFIG_PPC_I8259=y | |||
187 | # CONFIG_CPM2 is not set | 190 | # CONFIG_CPM2 is not set |
188 | # CONFIG_FSL_ULI1575 is not set | 191 | # CONFIG_FSL_ULI1575 is not set |
189 | # CONFIG_MPC8xxx_GPIO is not set | 192 | # CONFIG_MPC8xxx_GPIO is not set |
193 | # CONFIG_SIMPLE_GPIO is not set | ||
190 | 194 | ||
191 | # | 195 | # |
192 | # Kernel options | 196 | # Kernel options |
@@ -225,12 +229,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
225 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
226 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
227 | CONFIG_MIGRATION=y | 231 | CONFIG_MIGRATION=y |
228 | # CONFIG_RESOURCES_64BIT is not set | ||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 232 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
231 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
232 | CONFIG_VIRT_TO_BUS=y | 235 | CONFIG_VIRT_TO_BUS=y |
233 | CONFIG_UNEVICTABLE_LRU=y | 236 | CONFIG_UNEVICTABLE_LRU=y |
237 | CONFIG_PPC_4K_PAGES=y | ||
238 | # CONFIG_PPC_16K_PAGES is not set | ||
239 | # CONFIG_PPC_64K_PAGES is not set | ||
234 | CONFIG_FORCE_MAX_ZONEORDER=11 | 240 | CONFIG_FORCE_MAX_ZONEORDER=11 |
235 | CONFIG_PROC_DEVICETREE=y | 241 | CONFIG_PROC_DEVICETREE=y |
236 | # CONFIG_CMDLINE_BOOL is not set | 242 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
255 | # CONFIG_PCI_MSI is not set | 261 | # CONFIG_PCI_MSI is not set |
256 | # CONFIG_PCI_LEGACY is not set | 262 | # CONFIG_PCI_LEGACY is not set |
257 | # CONFIG_PCI_DEBUG is not set | 263 | # CONFIG_PCI_DEBUG is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_PCCARD is not set | 265 | # CONFIG_PCCARD is not set |
259 | # CONFIG_HOTPLUG_PCI is not set | 266 | # CONFIG_HOTPLUG_PCI is not set |
260 | # CONFIG_HAS_RAPIDIO is not set | 267 | # CONFIG_HAS_RAPIDIO is not set |
@@ -278,6 +285,7 @@ CONFIG_NET=y | |||
278 | # | 285 | # |
279 | # Networking options | 286 | # Networking options |
280 | # | 287 | # |
288 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
281 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
282 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
283 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
@@ -334,6 +342,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
334 | # CONFIG_ECONET is not set | 342 | # CONFIG_ECONET is not set |
335 | # CONFIG_WAN_ROUTER is not set | 343 | # CONFIG_WAN_ROUTER is not set |
336 | # CONFIG_NET_SCHED is not set | 344 | # CONFIG_NET_SCHED is not set |
345 | # CONFIG_DCB is not set | ||
337 | 346 | ||
338 | # | 347 | # |
339 | # Network testing | 348 | # Network testing |
@@ -349,8 +358,9 @@ CONFIG_WIRELESS=y | |||
349 | # CONFIG_CFG80211 is not set | 358 | # CONFIG_CFG80211 is not set |
350 | CONFIG_WIRELESS_OLD_REGULATORY=y | 359 | CONFIG_WIRELESS_OLD_REGULATORY=y |
351 | # CONFIG_WIRELESS_EXT is not set | 360 | # CONFIG_WIRELESS_EXT is not set |
361 | # CONFIG_LIB80211 is not set | ||
352 | # CONFIG_MAC80211 is not set | 362 | # CONFIG_MAC80211 is not set |
353 | # CONFIG_IEEE80211 is not set | 363 | # CONFIG_WIMAX is not set |
354 | # CONFIG_RFKILL is not set | 364 | # CONFIG_RFKILL is not set |
355 | # CONFIG_NET_9P is not set | 365 | # CONFIG_NET_9P is not set |
356 | 366 | ||
@@ -397,6 +407,7 @@ CONFIG_MISC_DEVICES=y | |||
397 | # CONFIG_TIFM_CORE is not set | 407 | # CONFIG_TIFM_CORE is not set |
398 | # CONFIG_ENCLOSURE_SERVICES is not set | 408 | # CONFIG_ENCLOSURE_SERVICES is not set |
399 | # CONFIG_HP_ILO is not set | 409 | # CONFIG_HP_ILO is not set |
410 | # CONFIG_C2PORT is not set | ||
400 | CONFIG_HAVE_IDE=y | 411 | CONFIG_HAVE_IDE=y |
401 | CONFIG_IDE=y | 412 | CONFIG_IDE=y |
402 | 413 | ||
@@ -439,6 +450,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
439 | # CONFIG_BLK_DEV_JMICRON is not set | 450 | # CONFIG_BLK_DEV_JMICRON is not set |
440 | # CONFIG_BLK_DEV_SC1200 is not set | 451 | # CONFIG_BLK_DEV_SC1200 is not set |
441 | # CONFIG_BLK_DEV_PIIX is not set | 452 | # CONFIG_BLK_DEV_PIIX is not set |
453 | # CONFIG_BLK_DEV_IT8172 is not set | ||
442 | # CONFIG_BLK_DEV_IT8213 is not set | 454 | # CONFIG_BLK_DEV_IT8213 is not set |
443 | # CONFIG_BLK_DEV_IT821X is not set | 455 | # CONFIG_BLK_DEV_IT821X is not set |
444 | # CONFIG_BLK_DEV_NS87415 is not set | 456 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -498,6 +510,9 @@ CONFIG_PHYLIB=y | |||
498 | # CONFIG_BROADCOM_PHY is not set | 510 | # CONFIG_BROADCOM_PHY is not set |
499 | # CONFIG_ICPLUS_PHY is not set | 511 | # CONFIG_ICPLUS_PHY is not set |
500 | # CONFIG_REALTEK_PHY is not set | 512 | # CONFIG_REALTEK_PHY is not set |
513 | # CONFIG_NATIONAL_PHY is not set | ||
514 | # CONFIG_STE10XP is not set | ||
515 | # CONFIG_LSI_ET1011C_PHY is not set | ||
501 | # CONFIG_FIXED_PHY is not set | 516 | # CONFIG_FIXED_PHY is not set |
502 | # CONFIG_MDIO_BITBANG is not set | 517 | # CONFIG_MDIO_BITBANG is not set |
503 | CONFIG_NET_ETHERNET=y | 518 | CONFIG_NET_ETHERNET=y |
@@ -542,6 +557,7 @@ CONFIG_GIANFAR=y | |||
542 | # CONFIG_JME is not set | 557 | # CONFIG_JME is not set |
543 | CONFIG_NETDEV_10000=y | 558 | CONFIG_NETDEV_10000=y |
544 | # CONFIG_CHELSIO_T1 is not set | 559 | # CONFIG_CHELSIO_T1 is not set |
560 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
545 | # CONFIG_CHELSIO_T3 is not set | 561 | # CONFIG_CHELSIO_T3 is not set |
546 | # CONFIG_ENIC is not set | 562 | # CONFIG_ENIC is not set |
547 | # CONFIG_IXGBE is not set | 563 | # CONFIG_IXGBE is not set |
@@ -564,6 +580,10 @@ CONFIG_NETDEV_10000=y | |||
564 | # CONFIG_WLAN_PRE80211 is not set | 580 | # CONFIG_WLAN_PRE80211 is not set |
565 | # CONFIG_WLAN_80211 is not set | 581 | # CONFIG_WLAN_80211 is not set |
566 | # CONFIG_IWLWIFI_LEDS is not set | 582 | # CONFIG_IWLWIFI_LEDS is not set |
583 | |||
584 | # | ||
585 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
586 | # | ||
567 | # CONFIG_WAN is not set | 587 | # CONFIG_WAN is not set |
568 | # CONFIG_FDDI is not set | 588 | # CONFIG_FDDI is not set |
569 | # CONFIG_HIPPI is not set | 589 | # CONFIG_HIPPI is not set |
@@ -634,8 +654,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
634 | # CONFIG_SERIAL_JSM is not set | 654 | # CONFIG_SERIAL_JSM is not set |
635 | # CONFIG_SERIAL_OF_PLATFORM is not set | 655 | # CONFIG_SERIAL_OF_PLATFORM is not set |
636 | CONFIG_UNIX98_PTYS=y | 656 | CONFIG_UNIX98_PTYS=y |
657 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
637 | CONFIG_LEGACY_PTYS=y | 658 | CONFIG_LEGACY_PTYS=y |
638 | CONFIG_LEGACY_PTY_COUNT=256 | 659 | CONFIG_LEGACY_PTY_COUNT=256 |
660 | # CONFIG_HVC_UDBG is not set | ||
639 | # CONFIG_IPMI_HANDLER is not set | 661 | # CONFIG_IPMI_HANDLER is not set |
640 | # CONFIG_HW_RANDOM is not set | 662 | # CONFIG_HW_RANDOM is not set |
641 | # CONFIG_NVRAM is not set | 663 | # CONFIG_NVRAM is not set |
@@ -672,11 +694,11 @@ CONFIG_HWMON=y | |||
672 | # CONFIG_THERMAL is not set | 694 | # CONFIG_THERMAL is not set |
673 | # CONFIG_THERMAL_HWMON is not set | 695 | # CONFIG_THERMAL_HWMON is not set |
674 | # CONFIG_WATCHDOG is not set | 696 | # CONFIG_WATCHDOG is not set |
697 | CONFIG_SSB_POSSIBLE=y | ||
675 | 698 | ||
676 | # | 699 | # |
677 | # Sonics Silicon Backplane | 700 | # Sonics Silicon Backplane |
678 | # | 701 | # |
679 | CONFIG_SSB_POSSIBLE=y | ||
680 | # CONFIG_SSB is not set | 702 | # CONFIG_SSB is not set |
681 | 703 | ||
682 | # | 704 | # |
@@ -686,14 +708,7 @@ CONFIG_SSB_POSSIBLE=y | |||
686 | # CONFIG_MFD_SM501 is not set | 708 | # CONFIG_MFD_SM501 is not set |
687 | # CONFIG_HTC_PASIC3 is not set | 709 | # CONFIG_HTC_PASIC3 is not set |
688 | # CONFIG_MFD_TMIO is not set | 710 | # CONFIG_MFD_TMIO is not set |
689 | |||
690 | # | ||
691 | # Voltage and Current regulators | ||
692 | # | ||
693 | # CONFIG_REGULATOR is not set | 711 | # CONFIG_REGULATOR is not set |
694 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
695 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
696 | # CONFIG_REGULATOR_BQ24022 is not set | ||
697 | 712 | ||
698 | # | 713 | # |
699 | # Multimedia devices | 714 | # Multimedia devices |
@@ -749,9 +764,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
749 | # | 764 | # |
750 | 765 | ||
751 | # | 766 | # |
752 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 767 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
753 | # | 768 | # |
754 | # CONFIG_USB_GADGET is not set | 769 | # CONFIG_USB_GADGET is not set |
770 | |||
771 | # | ||
772 | # OTG and related infrastructure | ||
773 | # | ||
755 | # CONFIG_UWB is not set | 774 | # CONFIG_UWB is not set |
756 | # CONFIG_MMC is not set | 775 | # CONFIG_MMC is not set |
757 | # CONFIG_MEMSTICK is not set | 776 | # CONFIG_MEMSTICK is not set |
@@ -783,6 +802,7 @@ CONFIG_FS_MBCACHE=y | |||
783 | CONFIG_FILE_LOCKING=y | 802 | CONFIG_FILE_LOCKING=y |
784 | # CONFIG_XFS_FS is not set | 803 | # CONFIG_XFS_FS is not set |
785 | # CONFIG_OCFS2_FS is not set | 804 | # CONFIG_OCFS2_FS is not set |
805 | # CONFIG_BTRFS_FS is not set | ||
786 | CONFIG_DNOTIFY=y | 806 | CONFIG_DNOTIFY=y |
787 | CONFIG_INOTIFY=y | 807 | CONFIG_INOTIFY=y |
788 | CONFIG_INOTIFY_USER=y | 808 | CONFIG_INOTIFY_USER=y |
@@ -816,10 +836,7 @@ CONFIG_TMPFS=y | |||
816 | # CONFIG_TMPFS_POSIX_ACL is not set | 836 | # CONFIG_TMPFS_POSIX_ACL is not set |
817 | # CONFIG_HUGETLB_PAGE is not set | 837 | # CONFIG_HUGETLB_PAGE is not set |
818 | # CONFIG_CONFIGFS_FS is not set | 838 | # CONFIG_CONFIGFS_FS is not set |
819 | 839 | CONFIG_MISC_FILESYSTEMS=y | |
820 | # | ||
821 | # Miscellaneous filesystems | ||
822 | # | ||
823 | # CONFIG_ADFS_FS is not set | 840 | # CONFIG_ADFS_FS is not set |
824 | # CONFIG_AFFS_FS is not set | 841 | # CONFIG_AFFS_FS is not set |
825 | # CONFIG_HFS_FS is not set | 842 | # CONFIG_HFS_FS is not set |
@@ -828,6 +845,7 @@ CONFIG_TMPFS=y | |||
828 | # CONFIG_BFS_FS is not set | 845 | # CONFIG_BFS_FS is not set |
829 | # CONFIG_EFS_FS is not set | 846 | # CONFIG_EFS_FS is not set |
830 | # CONFIG_CRAMFS is not set | 847 | # CONFIG_CRAMFS is not set |
848 | # CONFIG_SQUASHFS is not set | ||
831 | # CONFIG_VXFS_FS is not set | 849 | # CONFIG_VXFS_FS is not set |
832 | # CONFIG_MINIX_FS is not set | 850 | # CONFIG_MINIX_FS is not set |
833 | # CONFIG_OMFS_FS is not set | 851 | # CONFIG_OMFS_FS is not set |
@@ -878,6 +896,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
878 | # Library routines | 896 | # Library routines |
879 | # | 897 | # |
880 | CONFIG_BITREVERSE=y | 898 | CONFIG_BITREVERSE=y |
899 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
881 | # CONFIG_CRC_CCITT is not set | 900 | # CONFIG_CRC_CCITT is not set |
882 | # CONFIG_CRC16 is not set | 901 | # CONFIG_CRC16 is not set |
883 | # CONFIG_CRC_T10DIF is not set | 902 | # CONFIG_CRC_T10DIF is not set |
@@ -927,6 +946,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
927 | # CONFIG_DEBUG_MEMORY_INIT is not set | 946 | # CONFIG_DEBUG_MEMORY_INIT is not set |
928 | # CONFIG_DEBUG_LIST is not set | 947 | # CONFIG_DEBUG_LIST is not set |
929 | # CONFIG_DEBUG_SG is not set | 948 | # CONFIG_DEBUG_SG is not set |
949 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
930 | # CONFIG_BOOT_PRINTK_DELAY is not set | 950 | # CONFIG_BOOT_PRINTK_DELAY is not set |
931 | # CONFIG_RCU_TORTURE_TEST is not set | 951 | # CONFIG_RCU_TORTURE_TEST is not set |
932 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 952 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -936,6 +956,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
936 | # CONFIG_LATENCYTOP is not set | 956 | # CONFIG_LATENCYTOP is not set |
937 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
938 | CONFIG_HAVE_FUNCTION_TRACER=y | 958 | CONFIG_HAVE_FUNCTION_TRACER=y |
959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
939 | 961 | ||
940 | # | 962 | # |
941 | # Tracers | 963 | # Tracers |
@@ -944,11 +966,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
944 | # CONFIG_SCHED_TRACER is not set | 966 | # CONFIG_SCHED_TRACER is not set |
945 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 967 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
946 | # CONFIG_BOOT_TRACER is not set | 968 | # CONFIG_BOOT_TRACER is not set |
969 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
947 | # CONFIG_STACK_TRACER is not set | 970 | # CONFIG_STACK_TRACER is not set |
948 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 971 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
949 | # CONFIG_SAMPLES is not set | 972 | # CONFIG_SAMPLES is not set |
950 | CONFIG_HAVE_ARCH_KGDB=y | 973 | CONFIG_HAVE_ARCH_KGDB=y |
951 | # CONFIG_KGDB is not set | 974 | # CONFIG_KGDB is not set |
975 | CONFIG_PRINT_STACK_DEPTH=64 | ||
952 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 976 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
953 | # CONFIG_DEBUG_STACK_USAGE is not set | 977 | # CONFIG_DEBUG_STACK_USAGE is not set |
954 | # CONFIG_DEBUG_PAGEALLOC is not set | 978 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -974,6 +998,7 @@ CONFIG_CRYPTO=y | |||
974 | # | 998 | # |
975 | # CONFIG_CRYPTO_FIPS is not set | 999 | # CONFIG_CRYPTO_FIPS is not set |
976 | # CONFIG_CRYPTO_MANAGER is not set | 1000 | # CONFIG_CRYPTO_MANAGER is not set |
1001 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
977 | # CONFIG_CRYPTO_GF128MUL is not set | 1002 | # CONFIG_CRYPTO_GF128MUL is not set |
978 | # CONFIG_CRYPTO_NULL is not set | 1003 | # CONFIG_CRYPTO_NULL is not set |
979 | # CONFIG_CRYPTO_CRYPTD is not set | 1004 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/sbc8548_defconfig b/arch/powerpc/configs/85xx/sbc8548_defconfig index bfe3c9731573..e68e80987aa9 100644 --- a/arch/powerpc/configs/85xx/sbc8548_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:16 2008 | 4 | # Mon Jan 26 15:36:15 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -113,7 +115,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 115 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 120 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,13 +124,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | # CONFIG_MODULES is not set | 128 | # CONFIG_MODULES is not set |
129 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
130 | # CONFIG_LBD is not set | 130 | # CONFIG_LBD is not set |
131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
132 | # CONFIG_LSF is not set | ||
133 | # CONFIG_BLK_DEV_BSG is not set | 132 | # CONFIG_BLK_DEV_BSG is not set |
134 | # CONFIG_BLK_DEV_INTEGRITY is not set | 133 | # CONFIG_BLK_DEV_INTEGRITY is not set |
135 | 134 | ||
@@ -146,6 +145,10 @@ CONFIG_DEFAULT_AS=y | |||
146 | # CONFIG_DEFAULT_NOOP is not set | 145 | # CONFIG_DEFAULT_NOOP is not set |
147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
148 | CONFIG_CLASSIC_RCU=y | 147 | CONFIG_CLASSIC_RCU=y |
148 | # CONFIG_TREE_RCU is not set | ||
149 | # CONFIG_PREEMPT_RCU is not set | ||
150 | # CONFIG_TREE_RCU_TRACE is not set | ||
151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
149 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
150 | 153 | ||
151 | # | 154 | # |
@@ -185,6 +188,7 @@ CONFIG_MPIC=y | |||
185 | # CONFIG_CPM2 is not set | 188 | # CONFIG_CPM2 is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_MPC8xxx_GPIO is not set | 190 | # CONFIG_MPC8xxx_GPIO is not set |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 192 | ||
189 | # | 193 | # |
190 | # Kernel options | 194 | # Kernel options |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -251,6 +257,7 @@ CONFIG_PCI_SYSCALL=y | |||
251 | CONFIG_ARCH_SUPPORTS_MSI=y | 257 | CONFIG_ARCH_SUPPORTS_MSI=y |
252 | # CONFIG_PCI_MSI is not set | 258 | # CONFIG_PCI_MSI is not set |
253 | # CONFIG_PCI_LEGACY is not set | 259 | # CONFIG_PCI_LEGACY is not set |
260 | # CONFIG_PCI_STUB is not set | ||
254 | # CONFIG_PCCARD is not set | 261 | # CONFIG_PCCARD is not set |
255 | # CONFIG_HOTPLUG_PCI is not set | 262 | # CONFIG_HOTPLUG_PCI is not set |
256 | # CONFIG_HAS_RAPIDIO is not set | 263 | # CONFIG_HAS_RAPIDIO is not set |
@@ -274,6 +281,7 @@ CONFIG_NET=y | |||
274 | # | 281 | # |
275 | # Networking options | 282 | # Networking options |
276 | # | 283 | # |
284 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
277 | CONFIG_PACKET=y | 285 | CONFIG_PACKET=y |
278 | # CONFIG_PACKET_MMAP is not set | 286 | # CONFIG_PACKET_MMAP is not set |
279 | CONFIG_UNIX=y | 287 | CONFIG_UNIX=y |
@@ -330,6 +338,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
330 | # CONFIG_ECONET is not set | 338 | # CONFIG_ECONET is not set |
331 | # CONFIG_WAN_ROUTER is not set | 339 | # CONFIG_WAN_ROUTER is not set |
332 | # CONFIG_NET_SCHED is not set | 340 | # CONFIG_NET_SCHED is not set |
341 | # CONFIG_DCB is not set | ||
333 | 342 | ||
334 | # | 343 | # |
335 | # Network testing | 344 | # Network testing |
@@ -345,8 +354,9 @@ CONFIG_WIRELESS=y | |||
345 | # CONFIG_CFG80211 is not set | 354 | # CONFIG_CFG80211 is not set |
346 | CONFIG_WIRELESS_OLD_REGULATORY=y | 355 | CONFIG_WIRELESS_OLD_REGULATORY=y |
347 | # CONFIG_WIRELESS_EXT is not set | 356 | # CONFIG_WIRELESS_EXT is not set |
357 | # CONFIG_LIB80211 is not set | ||
348 | # CONFIG_MAC80211 is not set | 358 | # CONFIG_MAC80211 is not set |
349 | # CONFIG_IEEE80211 is not set | 359 | # CONFIG_WIMAX is not set |
350 | # CONFIG_RFKILL is not set | 360 | # CONFIG_RFKILL is not set |
351 | # CONFIG_NET_9P is not set | 361 | # CONFIG_NET_9P is not set |
352 | 362 | ||
@@ -391,6 +401,7 @@ CONFIG_MISC_DEVICES=y | |||
391 | # CONFIG_TIFM_CORE is not set | 401 | # CONFIG_TIFM_CORE is not set |
392 | # CONFIG_ENCLOSURE_SERVICES is not set | 402 | # CONFIG_ENCLOSURE_SERVICES is not set |
393 | # CONFIG_HP_ILO is not set | 403 | # CONFIG_HP_ILO is not set |
404 | # CONFIG_C2PORT is not set | ||
394 | CONFIG_HAVE_IDE=y | 405 | CONFIG_HAVE_IDE=y |
395 | # CONFIG_IDE is not set | 406 | # CONFIG_IDE is not set |
396 | 407 | ||
@@ -439,6 +450,9 @@ CONFIG_PHYLIB=y | |||
439 | CONFIG_BROADCOM_PHY=y | 450 | CONFIG_BROADCOM_PHY=y |
440 | # CONFIG_ICPLUS_PHY is not set | 451 | # CONFIG_ICPLUS_PHY is not set |
441 | # CONFIG_REALTEK_PHY is not set | 452 | # CONFIG_REALTEK_PHY is not set |
453 | # CONFIG_NATIONAL_PHY is not set | ||
454 | # CONFIG_STE10XP is not set | ||
455 | # CONFIG_LSI_ET1011C_PHY is not set | ||
442 | # CONFIG_FIXED_PHY is not set | 456 | # CONFIG_FIXED_PHY is not set |
443 | # CONFIG_MDIO_BITBANG is not set | 457 | # CONFIG_MDIO_BITBANG is not set |
444 | CONFIG_NET_ETHERNET=y | 458 | CONFIG_NET_ETHERNET=y |
@@ -483,6 +497,7 @@ CONFIG_GIANFAR=y | |||
483 | # CONFIG_JME is not set | 497 | # CONFIG_JME is not set |
484 | CONFIG_NETDEV_10000=y | 498 | CONFIG_NETDEV_10000=y |
485 | # CONFIG_CHELSIO_T1 is not set | 499 | # CONFIG_CHELSIO_T1 is not set |
500 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
486 | # CONFIG_CHELSIO_T3 is not set | 501 | # CONFIG_CHELSIO_T3 is not set |
487 | # CONFIG_ENIC is not set | 502 | # CONFIG_ENIC is not set |
488 | # CONFIG_IXGBE is not set | 503 | # CONFIG_IXGBE is not set |
@@ -505,6 +520,10 @@ CONFIG_NETDEV_10000=y | |||
505 | # CONFIG_WLAN_PRE80211 is not set | 520 | # CONFIG_WLAN_PRE80211 is not set |
506 | # CONFIG_WLAN_80211 is not set | 521 | # CONFIG_WLAN_80211 is not set |
507 | # CONFIG_IWLWIFI_LEDS is not set | 522 | # CONFIG_IWLWIFI_LEDS is not set |
523 | |||
524 | # | ||
525 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
526 | # | ||
508 | # CONFIG_WAN is not set | 527 | # CONFIG_WAN is not set |
509 | # CONFIG_FDDI is not set | 528 | # CONFIG_FDDI is not set |
510 | # CONFIG_HIPPI is not set | 529 | # CONFIG_HIPPI is not set |
@@ -575,8 +594,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
575 | # CONFIG_SERIAL_JSM is not set | 594 | # CONFIG_SERIAL_JSM is not set |
576 | # CONFIG_SERIAL_OF_PLATFORM is not set | 595 | # CONFIG_SERIAL_OF_PLATFORM is not set |
577 | CONFIG_UNIX98_PTYS=y | 596 | CONFIG_UNIX98_PTYS=y |
597 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
578 | CONFIG_LEGACY_PTYS=y | 598 | CONFIG_LEGACY_PTYS=y |
579 | CONFIG_LEGACY_PTY_COUNT=256 | 599 | CONFIG_LEGACY_PTY_COUNT=256 |
600 | # CONFIG_HVC_UDBG is not set | ||
580 | # CONFIG_IPMI_HANDLER is not set | 601 | # CONFIG_IPMI_HANDLER is not set |
581 | # CONFIG_HW_RANDOM is not set | 602 | # CONFIG_HW_RANDOM is not set |
582 | # CONFIG_NVRAM is not set | 603 | # CONFIG_NVRAM is not set |
@@ -613,11 +634,11 @@ CONFIG_HWMON=y | |||
613 | # CONFIG_THERMAL is not set | 634 | # CONFIG_THERMAL is not set |
614 | # CONFIG_THERMAL_HWMON is not set | 635 | # CONFIG_THERMAL_HWMON is not set |
615 | # CONFIG_WATCHDOG is not set | 636 | # CONFIG_WATCHDOG is not set |
637 | CONFIG_SSB_POSSIBLE=y | ||
616 | 638 | ||
617 | # | 639 | # |
618 | # Sonics Silicon Backplane | 640 | # Sonics Silicon Backplane |
619 | # | 641 | # |
620 | CONFIG_SSB_POSSIBLE=y | ||
621 | # CONFIG_SSB is not set | 642 | # CONFIG_SSB is not set |
622 | 643 | ||
623 | # | 644 | # |
@@ -627,14 +648,7 @@ CONFIG_SSB_POSSIBLE=y | |||
627 | # CONFIG_MFD_SM501 is not set | 648 | # CONFIG_MFD_SM501 is not set |
628 | # CONFIG_HTC_PASIC3 is not set | 649 | # CONFIG_HTC_PASIC3 is not set |
629 | # CONFIG_MFD_TMIO is not set | 650 | # CONFIG_MFD_TMIO is not set |
630 | |||
631 | # | ||
632 | # Voltage and Current regulators | ||
633 | # | ||
634 | # CONFIG_REGULATOR is not set | 651 | # CONFIG_REGULATOR is not set |
635 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
636 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
637 | # CONFIG_REGULATOR_BQ24022 is not set | ||
638 | 652 | ||
639 | # | 653 | # |
640 | # Multimedia devices | 654 | # Multimedia devices |
@@ -693,6 +707,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
693 | CONFIG_FILE_LOCKING=y | 707 | CONFIG_FILE_LOCKING=y |
694 | # CONFIG_XFS_FS is not set | 708 | # CONFIG_XFS_FS is not set |
695 | # CONFIG_OCFS2_FS is not set | 709 | # CONFIG_OCFS2_FS is not set |
710 | # CONFIG_BTRFS_FS is not set | ||
696 | CONFIG_DNOTIFY=y | 711 | CONFIG_DNOTIFY=y |
697 | CONFIG_INOTIFY=y | 712 | CONFIG_INOTIFY=y |
698 | CONFIG_INOTIFY_USER=y | 713 | CONFIG_INOTIFY_USER=y |
@@ -726,10 +741,7 @@ CONFIG_TMPFS=y | |||
726 | # CONFIG_TMPFS_POSIX_ACL is not set | 741 | # CONFIG_TMPFS_POSIX_ACL is not set |
727 | # CONFIG_HUGETLB_PAGE is not set | 742 | # CONFIG_HUGETLB_PAGE is not set |
728 | # CONFIG_CONFIGFS_FS is not set | 743 | # CONFIG_CONFIGFS_FS is not set |
729 | 744 | CONFIG_MISC_FILESYSTEMS=y | |
730 | # | ||
731 | # Miscellaneous filesystems | ||
732 | # | ||
733 | # CONFIG_ADFS_FS is not set | 745 | # CONFIG_ADFS_FS is not set |
734 | # CONFIG_AFFS_FS is not set | 746 | # CONFIG_AFFS_FS is not set |
735 | # CONFIG_HFS_FS is not set | 747 | # CONFIG_HFS_FS is not set |
@@ -738,6 +750,7 @@ CONFIG_TMPFS=y | |||
738 | # CONFIG_BFS_FS is not set | 750 | # CONFIG_BFS_FS is not set |
739 | # CONFIG_EFS_FS is not set | 751 | # CONFIG_EFS_FS is not set |
740 | # CONFIG_CRAMFS is not set | 752 | # CONFIG_CRAMFS is not set |
753 | # CONFIG_SQUASHFS is not set | ||
741 | # CONFIG_VXFS_FS is not set | 754 | # CONFIG_VXFS_FS is not set |
742 | # CONFIG_MINIX_FS is not set | 755 | # CONFIG_MINIX_FS is not set |
743 | # CONFIG_OMFS_FS is not set | 756 | # CONFIG_OMFS_FS is not set |
@@ -776,6 +789,7 @@ CONFIG_MSDOS_PARTITION=y | |||
776 | # Library routines | 789 | # Library routines |
777 | # | 790 | # |
778 | CONFIG_BITREVERSE=y | 791 | CONFIG_BITREVERSE=y |
792 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
779 | # CONFIG_CRC_CCITT is not set | 793 | # CONFIG_CRC_CCITT is not set |
780 | # CONFIG_CRC16 is not set | 794 | # CONFIG_CRC16 is not set |
781 | # CONFIG_CRC_T10DIF is not set | 795 | # CONFIG_CRC_T10DIF is not set |
@@ -807,6 +821,8 @@ CONFIG_FRAME_WARN=1024 | |||
807 | # CONFIG_LATENCYTOP is not set | 821 | # CONFIG_LATENCYTOP is not set |
808 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 822 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
809 | CONFIG_HAVE_FUNCTION_TRACER=y | 823 | CONFIG_HAVE_FUNCTION_TRACER=y |
824 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
825 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
810 | 826 | ||
811 | # | 827 | # |
812 | # Tracers | 828 | # Tracers |
@@ -814,6 +830,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
814 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 830 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
815 | # CONFIG_SAMPLES is not set | 831 | # CONFIG_SAMPLES is not set |
816 | CONFIG_HAVE_ARCH_KGDB=y | 832 | CONFIG_HAVE_ARCH_KGDB=y |
833 | CONFIG_PRINT_STACK_DEPTH=64 | ||
817 | # CONFIG_IRQSTACKS is not set | 834 | # CONFIG_IRQSTACKS is not set |
818 | # CONFIG_PPC_EARLY_DEBUG is not set | 835 | # CONFIG_PPC_EARLY_DEBUG is not set |
819 | 836 | ||
@@ -831,6 +848,7 @@ CONFIG_CRYPTO=y | |||
831 | # | 848 | # |
832 | # CONFIG_CRYPTO_FIPS is not set | 849 | # CONFIG_CRYPTO_FIPS is not set |
833 | # CONFIG_CRYPTO_MANAGER is not set | 850 | # CONFIG_CRYPTO_MANAGER is not set |
851 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
834 | # CONFIG_CRYPTO_GF128MUL is not set | 852 | # CONFIG_CRYPTO_GF128MUL is not set |
835 | # CONFIG_CRYPTO_NULL is not set | 853 | # CONFIG_CRYPTO_NULL is not set |
836 | # CONFIG_CRYPTO_CRYPTD is not set | 854 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/sbc8560_defconfig b/arch/powerpc/configs/85xx/sbc8560_defconfig index 8c507f8d15a8..b1c766ef7e2e 100644 --- a/arch/powerpc/configs/85xx/sbc8560_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:17 2008 | 4 | # Mon Jan 26 15:36:17 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -113,7 +115,6 @@ CONFIG_SLAB=y | |||
113 | # CONFIG_SLUB is not set | 115 | # CONFIG_SLUB is not set |
114 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 120 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,13 +124,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | # CONFIG_MODULES is not set | 128 | # CONFIG_MODULES is not set |
129 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
130 | # CONFIG_LBD is not set | 130 | # CONFIG_LBD is not set |
131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
132 | # CONFIG_LSF is not set | ||
133 | # CONFIG_BLK_DEV_BSG is not set | 132 | # CONFIG_BLK_DEV_BSG is not set |
134 | # CONFIG_BLK_DEV_INTEGRITY is not set | 133 | # CONFIG_BLK_DEV_INTEGRITY is not set |
135 | 134 | ||
@@ -146,6 +145,10 @@ CONFIG_DEFAULT_AS=y | |||
146 | # CONFIG_DEFAULT_NOOP is not set | 145 | # CONFIG_DEFAULT_NOOP is not set |
147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
148 | CONFIG_CLASSIC_RCU=y | 147 | CONFIG_CLASSIC_RCU=y |
148 | # CONFIG_TREE_RCU is not set | ||
149 | # CONFIG_PREEMPT_RCU is not set | ||
150 | # CONFIG_TREE_RCU_TRACE is not set | ||
151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
149 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
150 | 153 | ||
151 | # | 154 | # |
@@ -185,6 +188,7 @@ CONFIG_MPIC=y | |||
185 | # CONFIG_CPM2 is not set | 188 | # CONFIG_CPM2 is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
187 | # CONFIG_MPC8xxx_GPIO is not set | 190 | # CONFIG_MPC8xxx_GPIO is not set |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 192 | ||
189 | # | 193 | # |
190 | # Kernel options | 194 | # Kernel options |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -268,6 +274,7 @@ CONFIG_NET=y | |||
268 | # | 274 | # |
269 | # Networking options | 275 | # Networking options |
270 | # | 276 | # |
277 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
271 | CONFIG_PACKET=y | 278 | CONFIG_PACKET=y |
272 | # CONFIG_PACKET_MMAP is not set | 279 | # CONFIG_PACKET_MMAP is not set |
273 | CONFIG_UNIX=y | 280 | CONFIG_UNIX=y |
@@ -324,6 +331,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
324 | # CONFIG_ECONET is not set | 331 | # CONFIG_ECONET is not set |
325 | # CONFIG_WAN_ROUTER is not set | 332 | # CONFIG_WAN_ROUTER is not set |
326 | # CONFIG_NET_SCHED is not set | 333 | # CONFIG_NET_SCHED is not set |
334 | # CONFIG_DCB is not set | ||
327 | 335 | ||
328 | # | 336 | # |
329 | # Network testing | 337 | # Network testing |
@@ -339,8 +347,9 @@ CONFIG_WIRELESS=y | |||
339 | # CONFIG_CFG80211 is not set | 347 | # CONFIG_CFG80211 is not set |
340 | CONFIG_WIRELESS_OLD_REGULATORY=y | 348 | CONFIG_WIRELESS_OLD_REGULATORY=y |
341 | # CONFIG_WIRELESS_EXT is not set | 349 | # CONFIG_WIRELESS_EXT is not set |
350 | # CONFIG_LIB80211 is not set | ||
342 | # CONFIG_MAC80211 is not set | 351 | # CONFIG_MAC80211 is not set |
343 | # CONFIG_IEEE80211 is not set | 352 | # CONFIG_WIMAX is not set |
344 | # CONFIG_RFKILL is not set | 353 | # CONFIG_RFKILL is not set |
345 | # CONFIG_NET_9P is not set | 354 | # CONFIG_NET_9P is not set |
346 | 355 | ||
@@ -378,6 +387,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
378 | CONFIG_MISC_DEVICES=y | 387 | CONFIG_MISC_DEVICES=y |
379 | # CONFIG_EEPROM_93CX6 is not set | 388 | # CONFIG_EEPROM_93CX6 is not set |
380 | # CONFIG_ENCLOSURE_SERVICES is not set | 389 | # CONFIG_ENCLOSURE_SERVICES is not set |
390 | # CONFIG_C2PORT is not set | ||
381 | CONFIG_HAVE_IDE=y | 391 | CONFIG_HAVE_IDE=y |
382 | # CONFIG_IDE is not set | 392 | # CONFIG_IDE is not set |
383 | 393 | ||
@@ -413,6 +423,9 @@ CONFIG_PHYLIB=y | |||
413 | CONFIG_BROADCOM_PHY=y | 423 | CONFIG_BROADCOM_PHY=y |
414 | # CONFIG_ICPLUS_PHY is not set | 424 | # CONFIG_ICPLUS_PHY is not set |
415 | # CONFIG_REALTEK_PHY is not set | 425 | # CONFIG_REALTEK_PHY is not set |
426 | # CONFIG_NATIONAL_PHY is not set | ||
427 | # CONFIG_STE10XP is not set | ||
428 | # CONFIG_LSI_ET1011C_PHY is not set | ||
416 | # CONFIG_FIXED_PHY is not set | 429 | # CONFIG_FIXED_PHY is not set |
417 | # CONFIG_MDIO_BITBANG is not set | 430 | # CONFIG_MDIO_BITBANG is not set |
418 | CONFIG_NET_ETHERNET=y | 431 | CONFIG_NET_ETHERNET=y |
@@ -435,6 +448,10 @@ CONFIG_NETDEV_10000=y | |||
435 | # CONFIG_WLAN_PRE80211 is not set | 448 | # CONFIG_WLAN_PRE80211 is not set |
436 | # CONFIG_WLAN_80211 is not set | 449 | # CONFIG_WLAN_80211 is not set |
437 | # CONFIG_IWLWIFI_LEDS is not set | 450 | # CONFIG_IWLWIFI_LEDS is not set |
451 | |||
452 | # | ||
453 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
454 | # | ||
438 | # CONFIG_WAN is not set | 455 | # CONFIG_WAN is not set |
439 | # CONFIG_PPP is not set | 456 | # CONFIG_PPP is not set |
440 | # CONFIG_SLIP is not set | 457 | # CONFIG_SLIP is not set |
@@ -500,8 +517,10 @@ CONFIG_SERIAL_CORE=y | |||
500 | CONFIG_SERIAL_CORE_CONSOLE=y | 517 | CONFIG_SERIAL_CORE_CONSOLE=y |
501 | # CONFIG_SERIAL_OF_PLATFORM is not set | 518 | # CONFIG_SERIAL_OF_PLATFORM is not set |
502 | CONFIG_UNIX98_PTYS=y | 519 | CONFIG_UNIX98_PTYS=y |
520 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
503 | CONFIG_LEGACY_PTYS=y | 521 | CONFIG_LEGACY_PTYS=y |
504 | CONFIG_LEGACY_PTY_COUNT=256 | 522 | CONFIG_LEGACY_PTY_COUNT=256 |
523 | # CONFIG_HVC_UDBG is not set | ||
505 | # CONFIG_IPMI_HANDLER is not set | 524 | # CONFIG_IPMI_HANDLER is not set |
506 | # CONFIG_HW_RANDOM is not set | 525 | # CONFIG_HW_RANDOM is not set |
507 | # CONFIG_NVRAM is not set | 526 | # CONFIG_NVRAM is not set |
@@ -530,11 +549,11 @@ CONFIG_HWMON=y | |||
530 | # CONFIG_THERMAL is not set | 549 | # CONFIG_THERMAL is not set |
531 | # CONFIG_THERMAL_HWMON is not set | 550 | # CONFIG_THERMAL_HWMON is not set |
532 | # CONFIG_WATCHDOG is not set | 551 | # CONFIG_WATCHDOG is not set |
552 | CONFIG_SSB_POSSIBLE=y | ||
533 | 553 | ||
534 | # | 554 | # |
535 | # Sonics Silicon Backplane | 555 | # Sonics Silicon Backplane |
536 | # | 556 | # |
537 | CONFIG_SSB_POSSIBLE=y | ||
538 | # CONFIG_SSB is not set | 557 | # CONFIG_SSB is not set |
539 | 558 | ||
540 | # | 559 | # |
@@ -544,14 +563,7 @@ CONFIG_SSB_POSSIBLE=y | |||
544 | # CONFIG_MFD_SM501 is not set | 563 | # CONFIG_MFD_SM501 is not set |
545 | # CONFIG_HTC_PASIC3 is not set | 564 | # CONFIG_HTC_PASIC3 is not set |
546 | # CONFIG_MFD_TMIO is not set | 565 | # CONFIG_MFD_TMIO is not set |
547 | |||
548 | # | ||
549 | # Voltage and Current regulators | ||
550 | # | ||
551 | # CONFIG_REGULATOR is not set | 566 | # CONFIG_REGULATOR is not set |
552 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
553 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
554 | # CONFIG_REGULATOR_BQ24022 is not set | ||
555 | 567 | ||
556 | # | 568 | # |
557 | # Multimedia devices | 569 | # Multimedia devices |
@@ -604,9 +616,13 @@ CONFIG_USB_SUPPORT=y | |||
604 | # | 616 | # |
605 | 617 | ||
606 | # | 618 | # |
607 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 619 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
608 | # | 620 | # |
609 | # CONFIG_USB_GADGET is not set | 621 | # CONFIG_USB_GADGET is not set |
622 | |||
623 | # | ||
624 | # OTG and related infrastructure | ||
625 | # | ||
610 | # CONFIG_MMC is not set | 626 | # CONFIG_MMC is not set |
611 | # CONFIG_MEMSTICK is not set | 627 | # CONFIG_MEMSTICK is not set |
612 | # CONFIG_NEW_LEDS is not set | 628 | # CONFIG_NEW_LEDS is not set |
@@ -666,6 +682,7 @@ CONFIG_RTC_DRV_M48T59=y | |||
666 | CONFIG_FILE_LOCKING=y | 682 | CONFIG_FILE_LOCKING=y |
667 | # CONFIG_XFS_FS is not set | 683 | # CONFIG_XFS_FS is not set |
668 | # CONFIG_OCFS2_FS is not set | 684 | # CONFIG_OCFS2_FS is not set |
685 | # CONFIG_BTRFS_FS is not set | ||
669 | CONFIG_DNOTIFY=y | 686 | CONFIG_DNOTIFY=y |
670 | CONFIG_INOTIFY=y | 687 | CONFIG_INOTIFY=y |
671 | CONFIG_INOTIFY_USER=y | 688 | CONFIG_INOTIFY_USER=y |
@@ -699,10 +716,7 @@ CONFIG_TMPFS=y | |||
699 | # CONFIG_TMPFS_POSIX_ACL is not set | 716 | # CONFIG_TMPFS_POSIX_ACL is not set |
700 | # CONFIG_HUGETLB_PAGE is not set | 717 | # CONFIG_HUGETLB_PAGE is not set |
701 | # CONFIG_CONFIGFS_FS is not set | 718 | # CONFIG_CONFIGFS_FS is not set |
702 | 719 | CONFIG_MISC_FILESYSTEMS=y | |
703 | # | ||
704 | # Miscellaneous filesystems | ||
705 | # | ||
706 | # CONFIG_ADFS_FS is not set | 720 | # CONFIG_ADFS_FS is not set |
707 | # CONFIG_AFFS_FS is not set | 721 | # CONFIG_AFFS_FS is not set |
708 | # CONFIG_HFS_FS is not set | 722 | # CONFIG_HFS_FS is not set |
@@ -711,6 +725,7 @@ CONFIG_TMPFS=y | |||
711 | # CONFIG_BFS_FS is not set | 725 | # CONFIG_BFS_FS is not set |
712 | # CONFIG_EFS_FS is not set | 726 | # CONFIG_EFS_FS is not set |
713 | # CONFIG_CRAMFS is not set | 727 | # CONFIG_CRAMFS is not set |
728 | # CONFIG_SQUASHFS is not set | ||
714 | # CONFIG_VXFS_FS is not set | 729 | # CONFIG_VXFS_FS is not set |
715 | # CONFIG_MINIX_FS is not set | 730 | # CONFIG_MINIX_FS is not set |
716 | # CONFIG_OMFS_FS is not set | 731 | # CONFIG_OMFS_FS is not set |
@@ -761,6 +776,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
761 | # Library routines | 776 | # Library routines |
762 | # | 777 | # |
763 | CONFIG_BITREVERSE=y | 778 | CONFIG_BITREVERSE=y |
779 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
764 | # CONFIG_CRC_CCITT is not set | 780 | # CONFIG_CRC_CCITT is not set |
765 | # CONFIG_CRC16 is not set | 781 | # CONFIG_CRC16 is not set |
766 | # CONFIG_CRC_T10DIF is not set | 782 | # CONFIG_CRC_T10DIF is not set |
@@ -809,6 +825,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
809 | # CONFIG_DEBUG_MEMORY_INIT is not set | 825 | # CONFIG_DEBUG_MEMORY_INIT is not set |
810 | # CONFIG_DEBUG_LIST is not set | 826 | # CONFIG_DEBUG_LIST is not set |
811 | # CONFIG_DEBUG_SG is not set | 827 | # CONFIG_DEBUG_SG is not set |
828 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
812 | # CONFIG_BOOT_PRINTK_DELAY is not set | 829 | # CONFIG_BOOT_PRINTK_DELAY is not set |
813 | # CONFIG_RCU_TORTURE_TEST is not set | 830 | # CONFIG_RCU_TORTURE_TEST is not set |
814 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 831 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -818,6 +835,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
818 | # CONFIG_LATENCYTOP is not set | 835 | # CONFIG_LATENCYTOP is not set |
819 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 836 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
820 | CONFIG_HAVE_FUNCTION_TRACER=y | 837 | CONFIG_HAVE_FUNCTION_TRACER=y |
838 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
839 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
821 | 840 | ||
822 | # | 841 | # |
823 | # Tracers | 842 | # Tracers |
@@ -826,11 +845,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
826 | # CONFIG_SCHED_TRACER is not set | 845 | # CONFIG_SCHED_TRACER is not set |
827 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 846 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
828 | # CONFIG_BOOT_TRACER is not set | 847 | # CONFIG_BOOT_TRACER is not set |
848 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
829 | # CONFIG_STACK_TRACER is not set | 849 | # CONFIG_STACK_TRACER is not set |
830 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 850 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
831 | # CONFIG_SAMPLES is not set | 851 | # CONFIG_SAMPLES is not set |
832 | CONFIG_HAVE_ARCH_KGDB=y | 852 | CONFIG_HAVE_ARCH_KGDB=y |
833 | # CONFIG_KGDB is not set | 853 | # CONFIG_KGDB is not set |
854 | CONFIG_PRINT_STACK_DEPTH=64 | ||
834 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 855 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
835 | # CONFIG_DEBUG_STACK_USAGE is not set | 856 | # CONFIG_DEBUG_STACK_USAGE is not set |
836 | # CONFIG_DEBUG_PAGEALLOC is not set | 857 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -867,6 +888,7 @@ CONFIG_CRYPTO=y | |||
867 | # | 888 | # |
868 | # CONFIG_CRYPTO_FIPS is not set | 889 | # CONFIG_CRYPTO_FIPS is not set |
869 | # CONFIG_CRYPTO_MANAGER is not set | 890 | # CONFIG_CRYPTO_MANAGER is not set |
891 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
870 | # CONFIG_CRYPTO_GF128MUL is not set | 892 | # CONFIG_CRYPTO_GF128MUL is not set |
871 | # CONFIG_CRYPTO_NULL is not set | 893 | # CONFIG_CRYPTO_NULL is not set |
872 | # CONFIG_CRYPTO_CRYPTD is not set | 894 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/stx_gp3_defconfig b/arch/powerpc/configs/85xx/stx_gp3_defconfig index f1288a0c3040..eb4ba7a5f41f 100644 --- a/arch/powerpc/configs/85xx/stx_gp3_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:19 2008 | 4 | # Mon Jan 26 15:36:18 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -116,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
116 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
117 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
118 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
119 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
121 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -128,18 +129,15 @@ CONFIG_HAVE_CLK=y | |||
128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
129 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
130 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
131 | # CONFIG_TINY_SHMEM is not set | ||
132 | CONFIG_BASE_SMALL=0 | 132 | CONFIG_BASE_SMALL=0 |
133 | CONFIG_MODULES=y | 133 | CONFIG_MODULES=y |
134 | # CONFIG_MODULE_FORCE_LOAD is not set | 134 | # CONFIG_MODULE_FORCE_LOAD is not set |
135 | # CONFIG_MODULE_UNLOAD is not set | 135 | # CONFIG_MODULE_UNLOAD is not set |
136 | CONFIG_MODVERSIONS=y | 136 | CONFIG_MODVERSIONS=y |
137 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
138 | CONFIG_KMOD=y | ||
139 | CONFIG_BLOCK=y | 138 | CONFIG_BLOCK=y |
140 | # CONFIG_LBD is not set | 139 | # CONFIG_LBD is not set |
141 | # CONFIG_BLK_DEV_IO_TRACE is not set | 140 | # CONFIG_BLK_DEV_IO_TRACE is not set |
142 | # CONFIG_LSF is not set | ||
143 | # CONFIG_BLK_DEV_BSG is not set | 141 | # CONFIG_BLK_DEV_BSG is not set |
144 | # CONFIG_BLK_DEV_INTEGRITY is not set | 142 | # CONFIG_BLK_DEV_INTEGRITY is not set |
145 | 143 | ||
@@ -156,6 +154,10 @@ CONFIG_DEFAULT_CFQ=y | |||
156 | # CONFIG_DEFAULT_NOOP is not set | 154 | # CONFIG_DEFAULT_NOOP is not set |
157 | CONFIG_DEFAULT_IOSCHED="cfq" | 155 | CONFIG_DEFAULT_IOSCHED="cfq" |
158 | CONFIG_CLASSIC_RCU=y | 156 | CONFIG_CLASSIC_RCU=y |
157 | # CONFIG_TREE_RCU is not set | ||
158 | # CONFIG_PREEMPT_RCU is not set | ||
159 | # CONFIG_TREE_RCU_TRACE is not set | ||
160 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
159 | # CONFIG_FREEZER is not set | 161 | # CONFIG_FREEZER is not set |
160 | 162 | ||
161 | # | 163 | # |
@@ -196,6 +198,7 @@ CONFIG_CPM2=y | |||
196 | # CONFIG_FSL_ULI1575 is not set | 198 | # CONFIG_FSL_ULI1575 is not set |
197 | CONFIG_CPM=y | 199 | CONFIG_CPM=y |
198 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
199 | 202 | ||
200 | # | 203 | # |
201 | # Kernel options | 204 | # Kernel options |
@@ -233,12 +236,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
233 | CONFIG_PAGEFLAGS_EXTENDED=y | 236 | CONFIG_PAGEFLAGS_EXTENDED=y |
234 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 237 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
235 | CONFIG_MIGRATION=y | 238 | CONFIG_MIGRATION=y |
236 | # CONFIG_RESOURCES_64BIT is not set | ||
237 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 239 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
238 | CONFIG_ZONE_DMA_FLAG=1 | 240 | CONFIG_ZONE_DMA_FLAG=1 |
239 | CONFIG_BOUNCE=y | 241 | CONFIG_BOUNCE=y |
240 | CONFIG_VIRT_TO_BUS=y | 242 | CONFIG_VIRT_TO_BUS=y |
241 | CONFIG_UNEVICTABLE_LRU=y | 243 | CONFIG_UNEVICTABLE_LRU=y |
244 | CONFIG_PPC_4K_PAGES=y | ||
245 | # CONFIG_PPC_16K_PAGES is not set | ||
246 | # CONFIG_PPC_64K_PAGES is not set | ||
242 | CONFIG_FORCE_MAX_ZONEORDER=11 | 247 | CONFIG_FORCE_MAX_ZONEORDER=11 |
243 | CONFIG_PROC_DEVICETREE=y | 248 | CONFIG_PROC_DEVICETREE=y |
244 | # CONFIG_CMDLINE_BOOL is not set | 249 | # CONFIG_CMDLINE_BOOL is not set |
@@ -263,6 +268,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
263 | # CONFIG_PCI_MSI is not set | 268 | # CONFIG_PCI_MSI is not set |
264 | # CONFIG_PCI_LEGACY is not set | 269 | # CONFIG_PCI_LEGACY is not set |
265 | # CONFIG_PCI_DEBUG is not set | 270 | # CONFIG_PCI_DEBUG is not set |
271 | # CONFIG_PCI_STUB is not set | ||
266 | # CONFIG_PCCARD is not set | 272 | # CONFIG_PCCARD is not set |
267 | # CONFIG_HOTPLUG_PCI is not set | 273 | # CONFIG_HOTPLUG_PCI is not set |
268 | # CONFIG_HAS_RAPIDIO is not set | 274 | # CONFIG_HAS_RAPIDIO is not set |
@@ -286,6 +292,7 @@ CONFIG_NET=y | |||
286 | # | 292 | # |
287 | # Networking options | 293 | # Networking options |
288 | # | 294 | # |
295 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
289 | CONFIG_PACKET=y | 296 | CONFIG_PACKET=y |
290 | # CONFIG_PACKET_MMAP is not set | 297 | # CONFIG_PACKET_MMAP is not set |
291 | CONFIG_UNIX=y | 298 | CONFIG_UNIX=y |
@@ -400,6 +407,7 @@ CONFIG_IP_NF_FILTER=m | |||
400 | # CONFIG_ECONET is not set | 407 | # CONFIG_ECONET is not set |
401 | # CONFIG_WAN_ROUTER is not set | 408 | # CONFIG_WAN_ROUTER is not set |
402 | # CONFIG_NET_SCHED is not set | 409 | # CONFIG_NET_SCHED is not set |
410 | # CONFIG_DCB is not set | ||
403 | 411 | ||
404 | # | 412 | # |
405 | # Network testing | 413 | # Network testing |
@@ -415,8 +423,9 @@ CONFIG_WIRELESS=y | |||
415 | # CONFIG_CFG80211 is not set | 423 | # CONFIG_CFG80211 is not set |
416 | CONFIG_WIRELESS_OLD_REGULATORY=y | 424 | CONFIG_WIRELESS_OLD_REGULATORY=y |
417 | # CONFIG_WIRELESS_EXT is not set | 425 | # CONFIG_WIRELESS_EXT is not set |
426 | # CONFIG_LIB80211 is not set | ||
418 | # CONFIG_MAC80211 is not set | 427 | # CONFIG_MAC80211 is not set |
419 | # CONFIG_IEEE80211 is not set | 428 | # CONFIG_WIMAX is not set |
420 | # CONFIG_RFKILL is not set | 429 | # CONFIG_RFKILL is not set |
421 | # CONFIG_NET_9P is not set | 430 | # CONFIG_NET_9P is not set |
422 | 431 | ||
@@ -470,14 +479,17 @@ CONFIG_MISC_DEVICES=y | |||
470 | # CONFIG_EEPROM_93CX6 is not set | 479 | # CONFIG_EEPROM_93CX6 is not set |
471 | # CONFIG_SGI_IOC4 is not set | 480 | # CONFIG_SGI_IOC4 is not set |
472 | # CONFIG_TIFM_CORE is not set | 481 | # CONFIG_TIFM_CORE is not set |
482 | # CONFIG_ICS932S401 is not set | ||
473 | # CONFIG_ENCLOSURE_SERVICES is not set | 483 | # CONFIG_ENCLOSURE_SERVICES is not set |
474 | # CONFIG_HP_ILO is not set | 484 | # CONFIG_HP_ILO is not set |
485 | # CONFIG_C2PORT is not set | ||
475 | CONFIG_HAVE_IDE=y | 486 | CONFIG_HAVE_IDE=y |
476 | CONFIG_IDE=y | 487 | CONFIG_IDE=y |
477 | 488 | ||
478 | # | 489 | # |
479 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 490 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
480 | # | 491 | # |
492 | CONFIG_IDE_ATAPI=y | ||
481 | # CONFIG_BLK_DEV_IDE_SATA is not set | 493 | # CONFIG_BLK_DEV_IDE_SATA is not set |
482 | CONFIG_IDE_GD=y | 494 | CONFIG_IDE_GD=y |
483 | CONFIG_IDE_GD_ATA=y | 495 | CONFIG_IDE_GD_ATA=y |
@@ -485,7 +497,6 @@ CONFIG_IDE_GD_ATA=y | |||
485 | CONFIG_BLK_DEV_IDECD=m | 497 | CONFIG_BLK_DEV_IDECD=m |
486 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 498 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
487 | # CONFIG_BLK_DEV_IDETAPE is not set | 499 | # CONFIG_BLK_DEV_IDETAPE is not set |
488 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
489 | # CONFIG_IDE_TASK_IOCTL is not set | 500 | # CONFIG_IDE_TASK_IOCTL is not set |
490 | CONFIG_IDE_PROC_FS=y | 501 | CONFIG_IDE_PROC_FS=y |
491 | 502 | ||
@@ -510,6 +521,7 @@ CONFIG_IDE_PROC_FS=y | |||
510 | # CONFIG_BLK_DEV_JMICRON is not set | 521 | # CONFIG_BLK_DEV_JMICRON is not set |
511 | # CONFIG_BLK_DEV_SC1200 is not set | 522 | # CONFIG_BLK_DEV_SC1200 is not set |
512 | # CONFIG_BLK_DEV_PIIX is not set | 523 | # CONFIG_BLK_DEV_PIIX is not set |
524 | # CONFIG_BLK_DEV_IT8172 is not set | ||
513 | # CONFIG_BLK_DEV_IT8213 is not set | 525 | # CONFIG_BLK_DEV_IT8213 is not set |
514 | # CONFIG_BLK_DEV_IT821X is not set | 526 | # CONFIG_BLK_DEV_IT821X is not set |
515 | # CONFIG_BLK_DEV_NS87415 is not set | 527 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -564,6 +576,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
564 | # CONFIG_SCSI_SRP_ATTRS is not set | 576 | # CONFIG_SCSI_SRP_ATTRS is not set |
565 | CONFIG_SCSI_LOWLEVEL=y | 577 | CONFIG_SCSI_LOWLEVEL=y |
566 | # CONFIG_ISCSI_TCP is not set | 578 | # CONFIG_ISCSI_TCP is not set |
579 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
567 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 580 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
568 | # CONFIG_SCSI_3W_9XXX is not set | 581 | # CONFIG_SCSI_3W_9XXX is not set |
569 | # CONFIG_SCSI_ACARD is not set | 582 | # CONFIG_SCSI_ACARD is not set |
@@ -580,6 +593,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
580 | # CONFIG_MEGARAID_SAS is not set | 593 | # CONFIG_MEGARAID_SAS is not set |
581 | # CONFIG_SCSI_HPTIOP is not set | 594 | # CONFIG_SCSI_HPTIOP is not set |
582 | # CONFIG_SCSI_BUSLOGIC is not set | 595 | # CONFIG_SCSI_BUSLOGIC is not set |
596 | # CONFIG_LIBFC is not set | ||
597 | # CONFIG_FCOE is not set | ||
583 | # CONFIG_SCSI_DMX3191D is not set | 598 | # CONFIG_SCSI_DMX3191D is not set |
584 | # CONFIG_SCSI_EATA is not set | 599 | # CONFIG_SCSI_EATA is not set |
585 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 600 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -640,6 +655,9 @@ CONFIG_MARVELL_PHY=y | |||
640 | # CONFIG_BROADCOM_PHY is not set | 655 | # CONFIG_BROADCOM_PHY is not set |
641 | # CONFIG_ICPLUS_PHY is not set | 656 | # CONFIG_ICPLUS_PHY is not set |
642 | # CONFIG_REALTEK_PHY is not set | 657 | # CONFIG_REALTEK_PHY is not set |
658 | # CONFIG_NATIONAL_PHY is not set | ||
659 | # CONFIG_STE10XP is not set | ||
660 | # CONFIG_LSI_ET1011C_PHY is not set | ||
643 | # CONFIG_FIXED_PHY is not set | 661 | # CONFIG_FIXED_PHY is not set |
644 | # CONFIG_MDIO_BITBANG is not set | 662 | # CONFIG_MDIO_BITBANG is not set |
645 | CONFIG_NET_ETHERNET=y | 663 | CONFIG_NET_ETHERNET=y |
@@ -686,6 +704,7 @@ CONFIG_GIANFAR=y | |||
686 | # CONFIG_JME is not set | 704 | # CONFIG_JME is not set |
687 | CONFIG_NETDEV_10000=y | 705 | CONFIG_NETDEV_10000=y |
688 | # CONFIG_CHELSIO_T1 is not set | 706 | # CONFIG_CHELSIO_T1 is not set |
707 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
689 | # CONFIG_CHELSIO_T3 is not set | 708 | # CONFIG_CHELSIO_T3 is not set |
690 | # CONFIG_ENIC is not set | 709 | # CONFIG_ENIC is not set |
691 | # CONFIG_IXGBE is not set | 710 | # CONFIG_IXGBE is not set |
@@ -708,6 +727,10 @@ CONFIG_NETDEV_10000=y | |||
708 | # CONFIG_WLAN_PRE80211 is not set | 727 | # CONFIG_WLAN_PRE80211 is not set |
709 | # CONFIG_WLAN_80211 is not set | 728 | # CONFIG_WLAN_80211 is not set |
710 | # CONFIG_IWLWIFI_LEDS is not set | 729 | # CONFIG_IWLWIFI_LEDS is not set |
730 | |||
731 | # | ||
732 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
733 | # | ||
711 | # CONFIG_WAN is not set | 734 | # CONFIG_WAN is not set |
712 | # CONFIG_FDDI is not set | 735 | # CONFIG_FDDI is not set |
713 | # CONFIG_HIPPI is not set | 736 | # CONFIG_HIPPI is not set |
@@ -805,11 +828,13 @@ CONFIG_SERIAL_CPM=y | |||
805 | CONFIG_SERIAL_CPM_CONSOLE=y | 828 | CONFIG_SERIAL_CPM_CONSOLE=y |
806 | # CONFIG_SERIAL_JSM is not set | 829 | # CONFIG_SERIAL_JSM is not set |
807 | CONFIG_UNIX98_PTYS=y | 830 | CONFIG_UNIX98_PTYS=y |
831 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
808 | CONFIG_LEGACY_PTYS=y | 832 | CONFIG_LEGACY_PTYS=y |
809 | CONFIG_LEGACY_PTY_COUNT=256 | 833 | CONFIG_LEGACY_PTY_COUNT=256 |
810 | CONFIG_PRINTER=m | 834 | CONFIG_PRINTER=m |
811 | # CONFIG_LP_CONSOLE is not set | 835 | # CONFIG_LP_CONSOLE is not set |
812 | # CONFIG_PPDEV is not set | 836 | # CONFIG_PPDEV is not set |
837 | # CONFIG_HVC_UDBG is not set | ||
813 | # CONFIG_IPMI_HANDLER is not set | 838 | # CONFIG_IPMI_HANDLER is not set |
814 | CONFIG_HW_RANDOM=m | 839 | CONFIG_HW_RANDOM=m |
815 | # CONFIG_NVRAM is not set | 840 | # CONFIG_NVRAM is not set |
@@ -823,6 +848,7 @@ CONFIG_I2C=m | |||
823 | CONFIG_I2C_BOARDINFO=y | 848 | CONFIG_I2C_BOARDINFO=y |
824 | CONFIG_I2C_CHARDEV=m | 849 | CONFIG_I2C_CHARDEV=m |
825 | CONFIG_I2C_HELPER_AUTO=y | 850 | CONFIG_I2C_HELPER_AUTO=y |
851 | CONFIG_I2C_ALGOBIT=m | ||
826 | 852 | ||
827 | # | 853 | # |
828 | # I2C Hardware Bus support | 854 | # I2C Hardware Bus support |
@@ -883,7 +909,6 @@ CONFIG_I2C_HELPER_AUTO=y | |||
883 | # CONFIG_PCF8575 is not set | 909 | # CONFIG_PCF8575 is not set |
884 | # CONFIG_SENSORS_PCA9539 is not set | 910 | # CONFIG_SENSORS_PCA9539 is not set |
885 | # CONFIG_SENSORS_PCF8591 is not set | 911 | # CONFIG_SENSORS_PCF8591 is not set |
886 | # CONFIG_TPS65010 is not set | ||
887 | # CONFIG_SENSORS_MAX6875 is not set | 912 | # CONFIG_SENSORS_MAX6875 is not set |
888 | # CONFIG_SENSORS_TSL2550 is not set | 913 | # CONFIG_SENSORS_TSL2550 is not set |
889 | # CONFIG_I2C_DEBUG_CORE is not set | 914 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -898,6 +923,11 @@ CONFIG_GPIOLIB=y | |||
898 | # CONFIG_GPIO_SYSFS is not set | 923 | # CONFIG_GPIO_SYSFS is not set |
899 | 924 | ||
900 | # | 925 | # |
926 | # Memory mapped GPIO expanders: | ||
927 | # | ||
928 | # CONFIG_GPIO_XILINX is not set | ||
929 | |||
930 | # | ||
901 | # I2C GPIO expanders: | 931 | # I2C GPIO expanders: |
902 | # | 932 | # |
903 | # CONFIG_GPIO_MAX732X is not set | 933 | # CONFIG_GPIO_MAX732X is not set |
@@ -924,8 +954,10 @@ CONFIG_HWMON=y | |||
924 | # CONFIG_SENSORS_ADM1029 is not set | 954 | # CONFIG_SENSORS_ADM1029 is not set |
925 | # CONFIG_SENSORS_ADM1031 is not set | 955 | # CONFIG_SENSORS_ADM1031 is not set |
926 | # CONFIG_SENSORS_ADM9240 is not set | 956 | # CONFIG_SENSORS_ADM9240 is not set |
957 | # CONFIG_SENSORS_ADT7462 is not set | ||
927 | # CONFIG_SENSORS_ADT7470 is not set | 958 | # CONFIG_SENSORS_ADT7470 is not set |
928 | # CONFIG_SENSORS_ADT7473 is not set | 959 | # CONFIG_SENSORS_ADT7473 is not set |
960 | # CONFIG_SENSORS_ADT7475 is not set | ||
929 | # CONFIG_SENSORS_ATXP1 is not set | 961 | # CONFIG_SENSORS_ATXP1 is not set |
930 | # CONFIG_SENSORS_DS1621 is not set | 962 | # CONFIG_SENSORS_DS1621 is not set |
931 | # CONFIG_SENSORS_I5K_AMB is not set | 963 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -946,6 +978,7 @@ CONFIG_HWMON=y | |||
946 | # CONFIG_SENSORS_LM90 is not set | 978 | # CONFIG_SENSORS_LM90 is not set |
947 | # CONFIG_SENSORS_LM92 is not set | 979 | # CONFIG_SENSORS_LM92 is not set |
948 | # CONFIG_SENSORS_LM93 is not set | 980 | # CONFIG_SENSORS_LM93 is not set |
981 | # CONFIG_SENSORS_LTC4245 is not set | ||
949 | # CONFIG_SENSORS_MAX1619 is not set | 982 | # CONFIG_SENSORS_MAX1619 is not set |
950 | # CONFIG_SENSORS_MAX6650 is not set | 983 | # CONFIG_SENSORS_MAX6650 is not set |
951 | # CONFIG_SENSORS_PC87360 is not set | 984 | # CONFIG_SENSORS_PC87360 is not set |
@@ -972,11 +1005,11 @@ CONFIG_HWMON=y | |||
972 | # CONFIG_THERMAL is not set | 1005 | # CONFIG_THERMAL is not set |
973 | # CONFIG_THERMAL_HWMON is not set | 1006 | # CONFIG_THERMAL_HWMON is not set |
974 | # CONFIG_WATCHDOG is not set | 1007 | # CONFIG_WATCHDOG is not set |
1008 | CONFIG_SSB_POSSIBLE=y | ||
975 | 1009 | ||
976 | # | 1010 | # |
977 | # Sonics Silicon Backplane | 1011 | # Sonics Silicon Backplane |
978 | # | 1012 | # |
979 | CONFIG_SSB_POSSIBLE=y | ||
980 | # CONFIG_SSB is not set | 1013 | # CONFIG_SSB is not set |
981 | 1014 | ||
982 | # | 1015 | # |
@@ -985,17 +1018,12 @@ CONFIG_SSB_POSSIBLE=y | |||
985 | # CONFIG_MFD_CORE is not set | 1018 | # CONFIG_MFD_CORE is not set |
986 | # CONFIG_MFD_SM501 is not set | 1019 | # CONFIG_MFD_SM501 is not set |
987 | # CONFIG_HTC_PASIC3 is not set | 1020 | # CONFIG_HTC_PASIC3 is not set |
1021 | # CONFIG_TPS65010 is not set | ||
988 | # CONFIG_MFD_TMIO is not set | 1022 | # CONFIG_MFD_TMIO is not set |
989 | # CONFIG_MFD_WM8400 is not set | 1023 | # CONFIG_MFD_WM8400 is not set |
990 | # CONFIG_MFD_WM8350_I2C is not set | 1024 | # CONFIG_MFD_WM8350_I2C is not set |
991 | 1025 | # CONFIG_MFD_PCF50633 is not set | |
992 | # | ||
993 | # Voltage and Current regulators | ||
994 | # | ||
995 | # CONFIG_REGULATOR is not set | 1026 | # CONFIG_REGULATOR is not set |
996 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
997 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
998 | # CONFIG_REGULATOR_BQ24022 is not set | ||
999 | 1027 | ||
1000 | # | 1028 | # |
1001 | # Multimedia devices | 1029 | # Multimedia devices |
@@ -1061,9 +1089,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
1061 | # | 1089 | # |
1062 | 1090 | ||
1063 | # | 1091 | # |
1064 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1092 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1065 | # | 1093 | # |
1066 | # CONFIG_USB_GADGET is not set | 1094 | # CONFIG_USB_GADGET is not set |
1095 | |||
1096 | # | ||
1097 | # OTG and related infrastructure | ||
1098 | # | ||
1067 | # CONFIG_UWB is not set | 1099 | # CONFIG_UWB is not set |
1068 | # CONFIG_MMC is not set | 1100 | # CONFIG_MMC is not set |
1069 | # CONFIG_MEMSTICK is not set | 1101 | # CONFIG_MEMSTICK is not set |
@@ -1096,6 +1128,7 @@ CONFIG_FS_MBCACHE=y | |||
1096 | CONFIG_FILE_LOCKING=y | 1128 | CONFIG_FILE_LOCKING=y |
1097 | # CONFIG_XFS_FS is not set | 1129 | # CONFIG_XFS_FS is not set |
1098 | # CONFIG_OCFS2_FS is not set | 1130 | # CONFIG_OCFS2_FS is not set |
1131 | # CONFIG_BTRFS_FS is not set | ||
1099 | CONFIG_DNOTIFY=y | 1132 | CONFIG_DNOTIFY=y |
1100 | CONFIG_INOTIFY=y | 1133 | CONFIG_INOTIFY=y |
1101 | CONFIG_INOTIFY_USER=y | 1134 | CONFIG_INOTIFY_USER=y |
@@ -1135,10 +1168,7 @@ CONFIG_TMPFS=y | |||
1135 | # CONFIG_TMPFS_POSIX_ACL is not set | 1168 | # CONFIG_TMPFS_POSIX_ACL is not set |
1136 | # CONFIG_HUGETLB_PAGE is not set | 1169 | # CONFIG_HUGETLB_PAGE is not set |
1137 | # CONFIG_CONFIGFS_FS is not set | 1170 | # CONFIG_CONFIGFS_FS is not set |
1138 | 1171 | CONFIG_MISC_FILESYSTEMS=y | |
1139 | # | ||
1140 | # Miscellaneous filesystems | ||
1141 | # | ||
1142 | # CONFIG_ADFS_FS is not set | 1172 | # CONFIG_ADFS_FS is not set |
1143 | # CONFIG_AFFS_FS is not set | 1173 | # CONFIG_AFFS_FS is not set |
1144 | # CONFIG_HFS_FS is not set | 1174 | # CONFIG_HFS_FS is not set |
@@ -1147,6 +1177,7 @@ CONFIG_TMPFS=y | |||
1147 | # CONFIG_BFS_FS is not set | 1177 | # CONFIG_BFS_FS is not set |
1148 | # CONFIG_EFS_FS is not set | 1178 | # CONFIG_EFS_FS is not set |
1149 | CONFIG_CRAMFS=m | 1179 | CONFIG_CRAMFS=m |
1180 | # CONFIG_SQUASHFS is not set | ||
1150 | # CONFIG_VXFS_FS is not set | 1181 | # CONFIG_VXFS_FS is not set |
1151 | # CONFIG_MINIX_FS is not set | 1182 | # CONFIG_MINIX_FS is not set |
1152 | # CONFIG_OMFS_FS is not set | 1183 | # CONFIG_OMFS_FS is not set |
@@ -1227,6 +1258,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1227 | # Library routines | 1258 | # Library routines |
1228 | # | 1259 | # |
1229 | CONFIG_BITREVERSE=y | 1260 | CONFIG_BITREVERSE=y |
1261 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1230 | CONFIG_CRC_CCITT=y | 1262 | CONFIG_CRC_CCITT=y |
1231 | # CONFIG_CRC16 is not set | 1263 | # CONFIG_CRC16 is not set |
1232 | CONFIG_CRC_T10DIF=m | 1264 | CONFIG_CRC_T10DIF=m |
@@ -1278,6 +1310,7 @@ CONFIG_SCHED_DEBUG=y | |||
1278 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1310 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1279 | # CONFIG_DEBUG_LIST is not set | 1311 | # CONFIG_DEBUG_LIST is not set |
1280 | # CONFIG_DEBUG_SG is not set | 1312 | # CONFIG_DEBUG_SG is not set |
1313 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1281 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1314 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1282 | # CONFIG_RCU_TORTURE_TEST is not set | 1315 | # CONFIG_RCU_TORTURE_TEST is not set |
1283 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1316 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1287,6 +1320,8 @@ CONFIG_SCHED_DEBUG=y | |||
1287 | # CONFIG_LATENCYTOP is not set | 1320 | # CONFIG_LATENCYTOP is not set |
1288 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1321 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1289 | CONFIG_HAVE_FUNCTION_TRACER=y | 1322 | CONFIG_HAVE_FUNCTION_TRACER=y |
1323 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1324 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1290 | 1325 | ||
1291 | # | 1326 | # |
1292 | # Tracers | 1327 | # Tracers |
@@ -1295,11 +1330,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1295 | # CONFIG_SCHED_TRACER is not set | 1330 | # CONFIG_SCHED_TRACER is not set |
1296 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1331 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1297 | # CONFIG_BOOT_TRACER is not set | 1332 | # CONFIG_BOOT_TRACER is not set |
1333 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1298 | # CONFIG_STACK_TRACER is not set | 1334 | # CONFIG_STACK_TRACER is not set |
1299 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1335 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1300 | # CONFIG_SAMPLES is not set | 1336 | # CONFIG_SAMPLES is not set |
1301 | CONFIG_HAVE_ARCH_KGDB=y | 1337 | CONFIG_HAVE_ARCH_KGDB=y |
1302 | # CONFIG_KGDB is not set | 1338 | # CONFIG_KGDB is not set |
1339 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1303 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1340 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1304 | # CONFIG_DEBUG_STACK_USAGE is not set | 1341 | # CONFIG_DEBUG_STACK_USAGE is not set |
1305 | # CONFIG_DEBUG_PAGEALLOC is not set | 1342 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1325,6 +1362,7 @@ CONFIG_CRYPTO=y | |||
1325 | # | 1362 | # |
1326 | # CONFIG_CRYPTO_FIPS is not set | 1363 | # CONFIG_CRYPTO_FIPS is not set |
1327 | # CONFIG_CRYPTO_MANAGER is not set | 1364 | # CONFIG_CRYPTO_MANAGER is not set |
1365 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1328 | # CONFIG_CRYPTO_GF128MUL is not set | 1366 | # CONFIG_CRYPTO_GF128MUL is not set |
1329 | # CONFIG_CRYPTO_NULL is not set | 1367 | # CONFIG_CRYPTO_NULL is not set |
1330 | # CONFIG_CRYPTO_CRYPTD is not set | 1368 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8540_defconfig b/arch/powerpc/configs/85xx/tqm8540_defconfig index b3b1de6a6a85..f4379b1cf841 100644 --- a/arch/powerpc/configs/85xx/tqm8540_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:20 2008 | 4 | # Mon Jan 26 15:36:19 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -113,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
113 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
114 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
115 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
116 | # CONFIG_MARKERS is not set | ||
117 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
119 | CONFIG_HAVE_IOREMAP_PROT=y | 120 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -123,13 +124,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | # CONFIG_MODULES is not set | 128 | # CONFIG_MODULES is not set |
129 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
130 | # CONFIG_LBD is not set | 130 | # CONFIG_LBD is not set |
131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
132 | # CONFIG_LSF is not set | ||
133 | # CONFIG_BLK_DEV_BSG is not set | 132 | # CONFIG_BLK_DEV_BSG is not set |
134 | # CONFIG_BLK_DEV_INTEGRITY is not set | 133 | # CONFIG_BLK_DEV_INTEGRITY is not set |
135 | 134 | ||
@@ -146,6 +145,10 @@ CONFIG_DEFAULT_AS=y | |||
146 | # CONFIG_DEFAULT_NOOP is not set | 145 | # CONFIG_DEFAULT_NOOP is not set |
147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
148 | CONFIG_CLASSIC_RCU=y | 147 | CONFIG_CLASSIC_RCU=y |
148 | # CONFIG_TREE_RCU is not set | ||
149 | # CONFIG_PREEMPT_RCU is not set | ||
150 | # CONFIG_TREE_RCU_TRACE is not set | ||
151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
149 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
150 | 153 | ||
151 | # | 154 | # |
@@ -186,6 +189,7 @@ CONFIG_MPIC=y | |||
186 | # CONFIG_CPM2 is not set | 189 | # CONFIG_CPM2 is not set |
187 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
188 | # CONFIG_MPC8xxx_GPIO is not set | 191 | # CONFIG_MPC8xxx_GPIO is not set |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
189 | 193 | ||
190 | # | 194 | # |
191 | # Kernel options | 195 | # Kernel options |
@@ -223,12 +227,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
223 | CONFIG_PAGEFLAGS_EXTENDED=y | 227 | CONFIG_PAGEFLAGS_EXTENDED=y |
224 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
225 | CONFIG_MIGRATION=y | 229 | CONFIG_MIGRATION=y |
226 | # CONFIG_RESOURCES_64BIT is not set | ||
227 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 230 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
228 | CONFIG_ZONE_DMA_FLAG=1 | 231 | CONFIG_ZONE_DMA_FLAG=1 |
229 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
230 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
231 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
235 | CONFIG_PPC_4K_PAGES=y | ||
236 | # CONFIG_PPC_16K_PAGES is not set | ||
237 | # CONFIG_PPC_64K_PAGES is not set | ||
232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
233 | # CONFIG_PROC_DEVICETREE is not set | 239 | # CONFIG_PROC_DEVICETREE is not set |
234 | # CONFIG_CMDLINE_BOOL is not set | 240 | # CONFIG_CMDLINE_BOOL is not set |
@@ -252,6 +258,7 @@ CONFIG_PCI_SYSCALL=y | |||
252 | CONFIG_ARCH_SUPPORTS_MSI=y | 258 | CONFIG_ARCH_SUPPORTS_MSI=y |
253 | # CONFIG_PCI_MSI is not set | 259 | # CONFIG_PCI_MSI is not set |
254 | # CONFIG_PCI_LEGACY is not set | 260 | # CONFIG_PCI_LEGACY is not set |
261 | # CONFIG_PCI_STUB is not set | ||
255 | # CONFIG_HAS_RAPIDIO is not set | 262 | # CONFIG_HAS_RAPIDIO is not set |
256 | 263 | ||
257 | # | 264 | # |
@@ -273,6 +280,7 @@ CONFIG_NET=y | |||
273 | # | 280 | # |
274 | # Networking options | 281 | # Networking options |
275 | # | 282 | # |
283 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
276 | CONFIG_PACKET=y | 284 | CONFIG_PACKET=y |
277 | # CONFIG_PACKET_MMAP is not set | 285 | # CONFIG_PACKET_MMAP is not set |
278 | CONFIG_UNIX=y | 286 | CONFIG_UNIX=y |
@@ -329,6 +337,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
329 | # CONFIG_ECONET is not set | 337 | # CONFIG_ECONET is not set |
330 | # CONFIG_WAN_ROUTER is not set | 338 | # CONFIG_WAN_ROUTER is not set |
331 | # CONFIG_NET_SCHED is not set | 339 | # CONFIG_NET_SCHED is not set |
340 | # CONFIG_DCB is not set | ||
332 | 341 | ||
333 | # | 342 | # |
334 | # Network testing | 343 | # Network testing |
@@ -344,8 +353,9 @@ CONFIG_WIRELESS=y | |||
344 | # CONFIG_CFG80211 is not set | 353 | # CONFIG_CFG80211 is not set |
345 | CONFIG_WIRELESS_OLD_REGULATORY=y | 354 | CONFIG_WIRELESS_OLD_REGULATORY=y |
346 | # CONFIG_WIRELESS_EXT is not set | 355 | # CONFIG_WIRELESS_EXT is not set |
356 | # CONFIG_LIB80211 is not set | ||
347 | # CONFIG_MAC80211 is not set | 357 | # CONFIG_MAC80211 is not set |
348 | # CONFIG_IEEE80211 is not set | 358 | # CONFIG_WIMAX is not set |
349 | # CONFIG_RFKILL is not set | 359 | # CONFIG_RFKILL is not set |
350 | # CONFIG_NET_9P is not set | 360 | # CONFIG_NET_9P is not set |
351 | 361 | ||
@@ -435,6 +445,12 @@ CONFIG_MTD_CFI_UTIL=y | |||
435 | # CONFIG_MTD_ONENAND is not set | 445 | # CONFIG_MTD_ONENAND is not set |
436 | 446 | ||
437 | # | 447 | # |
448 | # LPDDR flash memory drivers | ||
449 | # | ||
450 | # CONFIG_MTD_LPDDR is not set | ||
451 | # CONFIG_MTD_QINFO_PROBE is not set | ||
452 | |||
453 | # | ||
438 | # UBI - Unsorted block images | 454 | # UBI - Unsorted block images |
439 | # | 455 | # |
440 | # CONFIG_MTD_UBI is not set | 456 | # CONFIG_MTD_UBI is not set |
@@ -464,8 +480,10 @@ CONFIG_MISC_DEVICES=y | |||
464 | # CONFIG_EEPROM_93CX6 is not set | 480 | # CONFIG_EEPROM_93CX6 is not set |
465 | # CONFIG_SGI_IOC4 is not set | 481 | # CONFIG_SGI_IOC4 is not set |
466 | # CONFIG_TIFM_CORE is not set | 482 | # CONFIG_TIFM_CORE is not set |
483 | # CONFIG_ICS932S401 is not set | ||
467 | # CONFIG_ENCLOSURE_SERVICES is not set | 484 | # CONFIG_ENCLOSURE_SERVICES is not set |
468 | # CONFIG_HP_ILO is not set | 485 | # CONFIG_HP_ILO is not set |
486 | # CONFIG_C2PORT is not set | ||
469 | CONFIG_HAVE_IDE=y | 487 | CONFIG_HAVE_IDE=y |
470 | CONFIG_IDE=y | 488 | CONFIG_IDE=y |
471 | 489 | ||
@@ -508,6 +526,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
508 | # CONFIG_BLK_DEV_JMICRON is not set | 526 | # CONFIG_BLK_DEV_JMICRON is not set |
509 | # CONFIG_BLK_DEV_SC1200 is not set | 527 | # CONFIG_BLK_DEV_SC1200 is not set |
510 | # CONFIG_BLK_DEV_PIIX is not set | 528 | # CONFIG_BLK_DEV_PIIX is not set |
529 | # CONFIG_BLK_DEV_IT8172 is not set | ||
511 | # CONFIG_BLK_DEV_IT8213 is not set | 530 | # CONFIG_BLK_DEV_IT8213 is not set |
512 | # CONFIG_BLK_DEV_IT821X is not set | 531 | # CONFIG_BLK_DEV_IT821X is not set |
513 | # CONFIG_BLK_DEV_NS87415 is not set | 532 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -567,6 +586,9 @@ CONFIG_PHYLIB=y | |||
567 | # CONFIG_BROADCOM_PHY is not set | 586 | # CONFIG_BROADCOM_PHY is not set |
568 | # CONFIG_ICPLUS_PHY is not set | 587 | # CONFIG_ICPLUS_PHY is not set |
569 | # CONFIG_REALTEK_PHY is not set | 588 | # CONFIG_REALTEK_PHY is not set |
589 | # CONFIG_NATIONAL_PHY is not set | ||
590 | # CONFIG_STE10XP is not set | ||
591 | # CONFIG_LSI_ET1011C_PHY is not set | ||
570 | # CONFIG_FIXED_PHY is not set | 592 | # CONFIG_FIXED_PHY is not set |
571 | # CONFIG_MDIO_BITBANG is not set | 593 | # CONFIG_MDIO_BITBANG is not set |
572 | CONFIG_NET_ETHERNET=y | 594 | CONFIG_NET_ETHERNET=y |
@@ -590,7 +612,6 @@ CONFIG_NET_PCI=y | |||
590 | # CONFIG_ADAPTEC_STARFIRE is not set | 612 | # CONFIG_ADAPTEC_STARFIRE is not set |
591 | # CONFIG_B44 is not set | 613 | # CONFIG_B44 is not set |
592 | # CONFIG_FORCEDETH is not set | 614 | # CONFIG_FORCEDETH is not set |
593 | # CONFIG_EEPRO100 is not set | ||
594 | CONFIG_E100=y | 615 | CONFIG_E100=y |
595 | # CONFIG_FEALNX is not set | 616 | # CONFIG_FEALNX is not set |
596 | # CONFIG_NATSEMI is not set | 617 | # CONFIG_NATSEMI is not set |
@@ -600,6 +621,7 @@ CONFIG_E100=y | |||
600 | # CONFIG_R6040 is not set | 621 | # CONFIG_R6040 is not set |
601 | # CONFIG_SIS900 is not set | 622 | # CONFIG_SIS900 is not set |
602 | # CONFIG_EPIC100 is not set | 623 | # CONFIG_EPIC100 is not set |
624 | # CONFIG_SMSC9420 is not set | ||
603 | # CONFIG_SUNDANCE is not set | 625 | # CONFIG_SUNDANCE is not set |
604 | # CONFIG_TLAN is not set | 626 | # CONFIG_TLAN is not set |
605 | # CONFIG_VIA_RHINE is not set | 627 | # CONFIG_VIA_RHINE is not set |
@@ -629,6 +651,7 @@ CONFIG_GIANFAR=y | |||
629 | # CONFIG_JME is not set | 651 | # CONFIG_JME is not set |
630 | CONFIG_NETDEV_10000=y | 652 | CONFIG_NETDEV_10000=y |
631 | # CONFIG_CHELSIO_T1 is not set | 653 | # CONFIG_CHELSIO_T1 is not set |
654 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
632 | # CONFIG_CHELSIO_T3 is not set | 655 | # CONFIG_CHELSIO_T3 is not set |
633 | # CONFIG_ENIC is not set | 656 | # CONFIG_ENIC is not set |
634 | # CONFIG_IXGBE is not set | 657 | # CONFIG_IXGBE is not set |
@@ -651,6 +674,10 @@ CONFIG_NETDEV_10000=y | |||
651 | # CONFIG_WLAN_PRE80211 is not set | 674 | # CONFIG_WLAN_PRE80211 is not set |
652 | # CONFIG_WLAN_80211 is not set | 675 | # CONFIG_WLAN_80211 is not set |
653 | # CONFIG_IWLWIFI_LEDS is not set | 676 | # CONFIG_IWLWIFI_LEDS is not set |
677 | |||
678 | # | ||
679 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
680 | # | ||
654 | # CONFIG_WAN is not set | 681 | # CONFIG_WAN is not set |
655 | # CONFIG_FDDI is not set | 682 | # CONFIG_FDDI is not set |
656 | # CONFIG_HIPPI is not set | 683 | # CONFIG_HIPPI is not set |
@@ -721,8 +748,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
721 | # CONFIG_SERIAL_JSM is not set | 748 | # CONFIG_SERIAL_JSM is not set |
722 | # CONFIG_SERIAL_OF_PLATFORM is not set | 749 | # CONFIG_SERIAL_OF_PLATFORM is not set |
723 | CONFIG_UNIX98_PTYS=y | 750 | CONFIG_UNIX98_PTYS=y |
751 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
724 | CONFIG_LEGACY_PTYS=y | 752 | CONFIG_LEGACY_PTYS=y |
725 | CONFIG_LEGACY_PTY_COUNT=256 | 753 | CONFIG_LEGACY_PTY_COUNT=256 |
754 | # CONFIG_HVC_UDBG is not set | ||
726 | # CONFIG_IPMI_HANDLER is not set | 755 | # CONFIG_IPMI_HANDLER is not set |
727 | CONFIG_HW_RANDOM=y | 756 | CONFIG_HW_RANDOM=y |
728 | # CONFIG_NVRAM is not set | 757 | # CONFIG_NVRAM is not set |
@@ -814,8 +843,10 @@ CONFIG_HWMON=y | |||
814 | # CONFIG_SENSORS_ADM1029 is not set | 843 | # CONFIG_SENSORS_ADM1029 is not set |
815 | # CONFIG_SENSORS_ADM1031 is not set | 844 | # CONFIG_SENSORS_ADM1031 is not set |
816 | # CONFIG_SENSORS_ADM9240 is not set | 845 | # CONFIG_SENSORS_ADM9240 is not set |
846 | # CONFIG_SENSORS_ADT7462 is not set | ||
817 | # CONFIG_SENSORS_ADT7470 is not set | 847 | # CONFIG_SENSORS_ADT7470 is not set |
818 | # CONFIG_SENSORS_ADT7473 is not set | 848 | # CONFIG_SENSORS_ADT7473 is not set |
849 | # CONFIG_SENSORS_ADT7475 is not set | ||
819 | # CONFIG_SENSORS_ATXP1 is not set | 850 | # CONFIG_SENSORS_ATXP1 is not set |
820 | # CONFIG_SENSORS_DS1621 is not set | 851 | # CONFIG_SENSORS_DS1621 is not set |
821 | # CONFIG_SENSORS_I5K_AMB is not set | 852 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -836,6 +867,7 @@ CONFIG_SENSORS_LM75=y | |||
836 | # CONFIG_SENSORS_LM90 is not set | 867 | # CONFIG_SENSORS_LM90 is not set |
837 | # CONFIG_SENSORS_LM92 is not set | 868 | # CONFIG_SENSORS_LM92 is not set |
838 | # CONFIG_SENSORS_LM93 is not set | 869 | # CONFIG_SENSORS_LM93 is not set |
870 | # CONFIG_SENSORS_LTC4245 is not set | ||
839 | # CONFIG_SENSORS_MAX1619 is not set | 871 | # CONFIG_SENSORS_MAX1619 is not set |
840 | # CONFIG_SENSORS_MAX6650 is not set | 872 | # CONFIG_SENSORS_MAX6650 is not set |
841 | # CONFIG_SENSORS_PC87360 is not set | 873 | # CONFIG_SENSORS_PC87360 is not set |
@@ -862,11 +894,11 @@ CONFIG_HWMON_DEBUG_CHIP=y | |||
862 | # CONFIG_THERMAL is not set | 894 | # CONFIG_THERMAL is not set |
863 | # CONFIG_THERMAL_HWMON is not set | 895 | # CONFIG_THERMAL_HWMON is not set |
864 | # CONFIG_WATCHDOG is not set | 896 | # CONFIG_WATCHDOG is not set |
897 | CONFIG_SSB_POSSIBLE=y | ||
865 | 898 | ||
866 | # | 899 | # |
867 | # Sonics Silicon Backplane | 900 | # Sonics Silicon Backplane |
868 | # | 901 | # |
869 | CONFIG_SSB_POSSIBLE=y | ||
870 | # CONFIG_SSB is not set | 902 | # CONFIG_SSB is not set |
871 | 903 | ||
872 | # | 904 | # |
@@ -875,18 +907,13 @@ CONFIG_SSB_POSSIBLE=y | |||
875 | # CONFIG_MFD_CORE is not set | 907 | # CONFIG_MFD_CORE is not set |
876 | # CONFIG_MFD_SM501 is not set | 908 | # CONFIG_MFD_SM501 is not set |
877 | # CONFIG_HTC_PASIC3 is not set | 909 | # CONFIG_HTC_PASIC3 is not set |
910 | # CONFIG_TWL4030_CORE is not set | ||
878 | # CONFIG_MFD_TMIO is not set | 911 | # CONFIG_MFD_TMIO is not set |
879 | # CONFIG_PMIC_DA903X is not set | 912 | # CONFIG_PMIC_DA903X is not set |
880 | # CONFIG_MFD_WM8400 is not set | 913 | # CONFIG_MFD_WM8400 is not set |
881 | # CONFIG_MFD_WM8350_I2C is not set | 914 | # CONFIG_MFD_WM8350_I2C is not set |
882 | 915 | # CONFIG_MFD_PCF50633 is not set | |
883 | # | ||
884 | # Voltage and Current regulators | ||
885 | # | ||
886 | # CONFIG_REGULATOR is not set | 916 | # CONFIG_REGULATOR is not set |
887 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
888 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
889 | # CONFIG_REGULATOR_BQ24022 is not set | ||
890 | 917 | ||
891 | # | 918 | # |
892 | # Multimedia devices | 919 | # Multimedia devices |
@@ -942,9 +969,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
942 | # | 969 | # |
943 | 970 | ||
944 | # | 971 | # |
945 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 972 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
946 | # | 973 | # |
947 | # CONFIG_USB_GADGET is not set | 974 | # CONFIG_USB_GADGET is not set |
975 | |||
976 | # | ||
977 | # OTG and related infrastructure | ||
978 | # | ||
948 | # CONFIG_UWB is not set | 979 | # CONFIG_UWB is not set |
949 | # CONFIG_MMC is not set | 980 | # CONFIG_MMC is not set |
950 | # CONFIG_MEMSTICK is not set | 981 | # CONFIG_MEMSTICK is not set |
@@ -976,6 +1007,7 @@ CONFIG_FS_MBCACHE=y | |||
976 | CONFIG_FILE_LOCKING=y | 1007 | CONFIG_FILE_LOCKING=y |
977 | # CONFIG_XFS_FS is not set | 1008 | # CONFIG_XFS_FS is not set |
978 | # CONFIG_OCFS2_FS is not set | 1009 | # CONFIG_OCFS2_FS is not set |
1010 | # CONFIG_BTRFS_FS is not set | ||
979 | CONFIG_DNOTIFY=y | 1011 | CONFIG_DNOTIFY=y |
980 | CONFIG_INOTIFY=y | 1012 | CONFIG_INOTIFY=y |
981 | CONFIG_INOTIFY_USER=y | 1013 | CONFIG_INOTIFY_USER=y |
@@ -1009,10 +1041,7 @@ CONFIG_TMPFS=y | |||
1009 | # CONFIG_TMPFS_POSIX_ACL is not set | 1041 | # CONFIG_TMPFS_POSIX_ACL is not set |
1010 | # CONFIG_HUGETLB_PAGE is not set | 1042 | # CONFIG_HUGETLB_PAGE is not set |
1011 | # CONFIG_CONFIGFS_FS is not set | 1043 | # CONFIG_CONFIGFS_FS is not set |
1012 | 1044 | CONFIG_MISC_FILESYSTEMS=y | |
1013 | # | ||
1014 | # Miscellaneous filesystems | ||
1015 | # | ||
1016 | # CONFIG_ADFS_FS is not set | 1045 | # CONFIG_ADFS_FS is not set |
1017 | # CONFIG_AFFS_FS is not set | 1046 | # CONFIG_AFFS_FS is not set |
1018 | # CONFIG_HFS_FS is not set | 1047 | # CONFIG_HFS_FS is not set |
@@ -1032,6 +1061,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1032 | CONFIG_JFFS2_RTIME=y | 1061 | CONFIG_JFFS2_RTIME=y |
1033 | # CONFIG_JFFS2_RUBIN is not set | 1062 | # CONFIG_JFFS2_RUBIN is not set |
1034 | CONFIG_CRAMFS=y | 1063 | CONFIG_CRAMFS=y |
1064 | # CONFIG_SQUASHFS is not set | ||
1035 | # CONFIG_VXFS_FS is not set | 1065 | # CONFIG_VXFS_FS is not set |
1036 | # CONFIG_MINIX_FS is not set | 1066 | # CONFIG_MINIX_FS is not set |
1037 | # CONFIG_OMFS_FS is not set | 1067 | # CONFIG_OMFS_FS is not set |
@@ -1082,6 +1112,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1082 | # Library routines | 1112 | # Library routines |
1083 | # | 1113 | # |
1084 | CONFIG_BITREVERSE=y | 1114 | CONFIG_BITREVERSE=y |
1115 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1085 | # CONFIG_CRC_CCITT is not set | 1116 | # CONFIG_CRC_CCITT is not set |
1086 | # CONFIG_CRC16 is not set | 1117 | # CONFIG_CRC16 is not set |
1087 | # CONFIG_CRC_T10DIF is not set | 1118 | # CONFIG_CRC_T10DIF is not set |
@@ -1117,6 +1148,8 @@ CONFIG_FRAME_WARN=1024 | |||
1117 | # CONFIG_LATENCYTOP is not set | 1148 | # CONFIG_LATENCYTOP is not set |
1118 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1149 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1119 | CONFIG_HAVE_FUNCTION_TRACER=y | 1150 | CONFIG_HAVE_FUNCTION_TRACER=y |
1151 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1152 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1120 | 1153 | ||
1121 | # | 1154 | # |
1122 | # Tracers | 1155 | # Tracers |
@@ -1124,6 +1157,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1124 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1157 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1125 | # CONFIG_SAMPLES is not set | 1158 | # CONFIG_SAMPLES is not set |
1126 | CONFIG_HAVE_ARCH_KGDB=y | 1159 | CONFIG_HAVE_ARCH_KGDB=y |
1160 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1127 | # CONFIG_IRQSTACKS is not set | 1161 | # CONFIG_IRQSTACKS is not set |
1128 | # CONFIG_PPC_EARLY_DEBUG is not set | 1162 | # CONFIG_PPC_EARLY_DEBUG is not set |
1129 | 1163 | ||
@@ -1141,6 +1175,7 @@ CONFIG_CRYPTO=y | |||
1141 | # | 1175 | # |
1142 | # CONFIG_CRYPTO_FIPS is not set | 1176 | # CONFIG_CRYPTO_FIPS is not set |
1143 | # CONFIG_CRYPTO_MANAGER is not set | 1177 | # CONFIG_CRYPTO_MANAGER is not set |
1178 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1144 | # CONFIG_CRYPTO_GF128MUL is not set | 1179 | # CONFIG_CRYPTO_GF128MUL is not set |
1145 | # CONFIG_CRYPTO_NULL is not set | 1180 | # CONFIG_CRYPTO_NULL is not set |
1146 | # CONFIG_CRYPTO_CRYPTD is not set | 1181 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8541_defconfig b/arch/powerpc/configs/85xx/tqm8541_defconfig index a92a639cdf8a..b8669231c1fe 100644 --- a/arch/powerpc/configs/85xx/tqm8541_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:21 2008 | 4 | # Mon Jan 26 15:36:20 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 121 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -125,13 +126,11 @@ CONFIG_HAVE_CLK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | # CONFIG_MODULES is not set | 130 | # CONFIG_MODULES is not set |
131 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
132 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
133 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
134 | # CONFIG_LSF is not set | ||
135 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
137 | 136 | ||
@@ -148,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
148 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
151 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
152 | 155 | ||
153 | # | 156 | # |
@@ -189,6 +192,7 @@ CONFIG_CPM2=y | |||
189 | # CONFIG_FSL_ULI1575 is not set | 192 | # CONFIG_FSL_ULI1575 is not set |
190 | CONFIG_CPM=y | 193 | CONFIG_CPM=y |
191 | # CONFIG_MPC8xxx_GPIO is not set | 194 | # CONFIG_MPC8xxx_GPIO is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
192 | 196 | ||
193 | # | 197 | # |
194 | # Kernel options | 198 | # Kernel options |
@@ -226,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
229 | # CONFIG_RESOURCES_64BIT is not set | ||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | # CONFIG_PROC_DEVICETREE is not set | 242 | # CONFIG_PROC_DEVICETREE is not set |
237 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
255 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
256 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
257 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_HAS_RAPIDIO is not set | 265 | # CONFIG_HAS_RAPIDIO is not set |
259 | 266 | ||
260 | # | 267 | # |
@@ -276,6 +283,7 @@ CONFIG_NET=y | |||
276 | # | 283 | # |
277 | # Networking options | 284 | # Networking options |
278 | # | 285 | # |
286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
279 | CONFIG_PACKET=y | 287 | CONFIG_PACKET=y |
280 | # CONFIG_PACKET_MMAP is not set | 288 | # CONFIG_PACKET_MMAP is not set |
281 | CONFIG_UNIX=y | 289 | CONFIG_UNIX=y |
@@ -332,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
334 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
335 | 344 | ||
336 | # | 345 | # |
337 | # Network testing | 346 | # Network testing |
@@ -347,8 +356,9 @@ CONFIG_WIRELESS=y | |||
347 | # CONFIG_CFG80211 is not set | 356 | # CONFIG_CFG80211 is not set |
348 | CONFIG_WIRELESS_OLD_REGULATORY=y | 357 | CONFIG_WIRELESS_OLD_REGULATORY=y |
349 | # CONFIG_WIRELESS_EXT is not set | 358 | # CONFIG_WIRELESS_EXT is not set |
359 | # CONFIG_LIB80211 is not set | ||
350 | # CONFIG_MAC80211 is not set | 360 | # CONFIG_MAC80211 is not set |
351 | # CONFIG_IEEE80211 is not set | 361 | # CONFIG_WIMAX is not set |
352 | # CONFIG_RFKILL is not set | 362 | # CONFIG_RFKILL is not set |
353 | # CONFIG_NET_9P is not set | 363 | # CONFIG_NET_9P is not set |
354 | 364 | ||
@@ -438,6 +448,12 @@ CONFIG_MTD_CFI_UTIL=y | |||
438 | # CONFIG_MTD_ONENAND is not set | 448 | # CONFIG_MTD_ONENAND is not set |
439 | 449 | ||
440 | # | 450 | # |
451 | # LPDDR flash memory drivers | ||
452 | # | ||
453 | # CONFIG_MTD_LPDDR is not set | ||
454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
455 | |||
456 | # | ||
441 | # UBI - Unsorted block images | 457 | # UBI - Unsorted block images |
442 | # | 458 | # |
443 | # CONFIG_MTD_UBI is not set | 459 | # CONFIG_MTD_UBI is not set |
@@ -468,8 +484,10 @@ CONFIG_MISC_DEVICES=y | |||
468 | # CONFIG_EEPROM_93CX6 is not set | 484 | # CONFIG_EEPROM_93CX6 is not set |
469 | # CONFIG_SGI_IOC4 is not set | 485 | # CONFIG_SGI_IOC4 is not set |
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
487 | # CONFIG_ICS932S401 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 488 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 489 | # CONFIG_HP_ILO is not set |
490 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 491 | CONFIG_HAVE_IDE=y |
474 | CONFIG_IDE=y | 492 | CONFIG_IDE=y |
475 | 493 | ||
@@ -512,6 +530,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
512 | # CONFIG_BLK_DEV_JMICRON is not set | 530 | # CONFIG_BLK_DEV_JMICRON is not set |
513 | # CONFIG_BLK_DEV_SC1200 is not set | 531 | # CONFIG_BLK_DEV_SC1200 is not set |
514 | # CONFIG_BLK_DEV_PIIX is not set | 532 | # CONFIG_BLK_DEV_PIIX is not set |
533 | # CONFIG_BLK_DEV_IT8172 is not set | ||
515 | # CONFIG_BLK_DEV_IT8213 is not set | 534 | # CONFIG_BLK_DEV_IT8213 is not set |
516 | # CONFIG_BLK_DEV_IT821X is not set | 535 | # CONFIG_BLK_DEV_IT821X is not set |
517 | # CONFIG_BLK_DEV_NS87415 is not set | 536 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -571,6 +590,9 @@ CONFIG_PHYLIB=y | |||
571 | # CONFIG_BROADCOM_PHY is not set | 590 | # CONFIG_BROADCOM_PHY is not set |
572 | # CONFIG_ICPLUS_PHY is not set | 591 | # CONFIG_ICPLUS_PHY is not set |
573 | # CONFIG_REALTEK_PHY is not set | 592 | # CONFIG_REALTEK_PHY is not set |
593 | # CONFIG_NATIONAL_PHY is not set | ||
594 | # CONFIG_STE10XP is not set | ||
595 | # CONFIG_LSI_ET1011C_PHY is not set | ||
574 | # CONFIG_FIXED_PHY is not set | 596 | # CONFIG_FIXED_PHY is not set |
575 | # CONFIG_MDIO_BITBANG is not set | 597 | # CONFIG_MDIO_BITBANG is not set |
576 | CONFIG_NET_ETHERNET=y | 598 | CONFIG_NET_ETHERNET=y |
@@ -594,7 +616,6 @@ CONFIG_NET_PCI=y | |||
594 | # CONFIG_ADAPTEC_STARFIRE is not set | 616 | # CONFIG_ADAPTEC_STARFIRE is not set |
595 | # CONFIG_B44 is not set | 617 | # CONFIG_B44 is not set |
596 | # CONFIG_FORCEDETH is not set | 618 | # CONFIG_FORCEDETH is not set |
597 | # CONFIG_EEPRO100 is not set | ||
598 | CONFIG_E100=y | 619 | CONFIG_E100=y |
599 | # CONFIG_FEALNX is not set | 620 | # CONFIG_FEALNX is not set |
600 | # CONFIG_NATSEMI is not set | 621 | # CONFIG_NATSEMI is not set |
@@ -604,6 +625,7 @@ CONFIG_E100=y | |||
604 | # CONFIG_R6040 is not set | 625 | # CONFIG_R6040 is not set |
605 | # CONFIG_SIS900 is not set | 626 | # CONFIG_SIS900 is not set |
606 | # CONFIG_EPIC100 is not set | 627 | # CONFIG_EPIC100 is not set |
628 | # CONFIG_SMSC9420 is not set | ||
607 | # CONFIG_SUNDANCE is not set | 629 | # CONFIG_SUNDANCE is not set |
608 | # CONFIG_TLAN is not set | 630 | # CONFIG_TLAN is not set |
609 | # CONFIG_VIA_RHINE is not set | 631 | # CONFIG_VIA_RHINE is not set |
@@ -634,6 +656,7 @@ CONFIG_GIANFAR=y | |||
634 | # CONFIG_JME is not set | 656 | # CONFIG_JME is not set |
635 | CONFIG_NETDEV_10000=y | 657 | CONFIG_NETDEV_10000=y |
636 | # CONFIG_CHELSIO_T1 is not set | 658 | # CONFIG_CHELSIO_T1 is not set |
659 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
637 | # CONFIG_CHELSIO_T3 is not set | 660 | # CONFIG_CHELSIO_T3 is not set |
638 | # CONFIG_ENIC is not set | 661 | # CONFIG_ENIC is not set |
639 | # CONFIG_IXGBE is not set | 662 | # CONFIG_IXGBE is not set |
@@ -656,6 +679,10 @@ CONFIG_NETDEV_10000=y | |||
656 | # CONFIG_WLAN_PRE80211 is not set | 679 | # CONFIG_WLAN_PRE80211 is not set |
657 | # CONFIG_WLAN_80211 is not set | 680 | # CONFIG_WLAN_80211 is not set |
658 | # CONFIG_IWLWIFI_LEDS is not set | 681 | # CONFIG_IWLWIFI_LEDS is not set |
682 | |||
683 | # | ||
684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
685 | # | ||
659 | # CONFIG_WAN is not set | 686 | # CONFIG_WAN is not set |
660 | # CONFIG_FDDI is not set | 687 | # CONFIG_FDDI is not set |
661 | # CONFIG_HIPPI is not set | 688 | # CONFIG_HIPPI is not set |
@@ -728,8 +755,10 @@ CONFIG_SERIAL_CPM_CONSOLE=y | |||
728 | # CONFIG_SERIAL_JSM is not set | 755 | # CONFIG_SERIAL_JSM is not set |
729 | # CONFIG_SERIAL_OF_PLATFORM is not set | 756 | # CONFIG_SERIAL_OF_PLATFORM is not set |
730 | CONFIG_UNIX98_PTYS=y | 757 | CONFIG_UNIX98_PTYS=y |
758 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
731 | CONFIG_LEGACY_PTYS=y | 759 | CONFIG_LEGACY_PTYS=y |
732 | CONFIG_LEGACY_PTY_COUNT=256 | 760 | CONFIG_LEGACY_PTY_COUNT=256 |
761 | # CONFIG_HVC_UDBG is not set | ||
733 | # CONFIG_IPMI_HANDLER is not set | 762 | # CONFIG_IPMI_HANDLER is not set |
734 | CONFIG_HW_RANDOM=y | 763 | CONFIG_HW_RANDOM=y |
735 | # CONFIG_NVRAM is not set | 764 | # CONFIG_NVRAM is not set |
@@ -802,7 +831,6 @@ CONFIG_I2C_MPC=y | |||
802 | # CONFIG_PCF8575 is not set | 831 | # CONFIG_PCF8575 is not set |
803 | # CONFIG_SENSORS_PCA9539 is not set | 832 | # CONFIG_SENSORS_PCA9539 is not set |
804 | # CONFIG_SENSORS_PCF8591 is not set | 833 | # CONFIG_SENSORS_PCF8591 is not set |
805 | # CONFIG_TPS65010 is not set | ||
806 | # CONFIG_SENSORS_MAX6875 is not set | 834 | # CONFIG_SENSORS_MAX6875 is not set |
807 | # CONFIG_SENSORS_TSL2550 is not set | 835 | # CONFIG_SENSORS_TSL2550 is not set |
808 | # CONFIG_I2C_DEBUG_CORE is not set | 836 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -816,6 +844,11 @@ CONFIG_GPIOLIB=y | |||
816 | # CONFIG_GPIO_SYSFS is not set | 844 | # CONFIG_GPIO_SYSFS is not set |
817 | 845 | ||
818 | # | 846 | # |
847 | # Memory mapped GPIO expanders: | ||
848 | # | ||
849 | # CONFIG_GPIO_XILINX is not set | ||
850 | |||
851 | # | ||
819 | # I2C GPIO expanders: | 852 | # I2C GPIO expanders: |
820 | # | 853 | # |
821 | # CONFIG_GPIO_MAX732X is not set | 854 | # CONFIG_GPIO_MAX732X is not set |
@@ -842,8 +875,10 @@ CONFIG_HWMON=y | |||
842 | # CONFIG_SENSORS_ADM1029 is not set | 875 | # CONFIG_SENSORS_ADM1029 is not set |
843 | # CONFIG_SENSORS_ADM1031 is not set | 876 | # CONFIG_SENSORS_ADM1031 is not set |
844 | # CONFIG_SENSORS_ADM9240 is not set | 877 | # CONFIG_SENSORS_ADM9240 is not set |
878 | # CONFIG_SENSORS_ADT7462 is not set | ||
845 | # CONFIG_SENSORS_ADT7470 is not set | 879 | # CONFIG_SENSORS_ADT7470 is not set |
846 | # CONFIG_SENSORS_ADT7473 is not set | 880 | # CONFIG_SENSORS_ADT7473 is not set |
881 | # CONFIG_SENSORS_ADT7475 is not set | ||
847 | # CONFIG_SENSORS_ATXP1 is not set | 882 | # CONFIG_SENSORS_ATXP1 is not set |
848 | # CONFIG_SENSORS_DS1621 is not set | 883 | # CONFIG_SENSORS_DS1621 is not set |
849 | # CONFIG_SENSORS_I5K_AMB is not set | 884 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -864,6 +899,7 @@ CONFIG_SENSORS_LM75=y | |||
864 | # CONFIG_SENSORS_LM90 is not set | 899 | # CONFIG_SENSORS_LM90 is not set |
865 | # CONFIG_SENSORS_LM92 is not set | 900 | # CONFIG_SENSORS_LM92 is not set |
866 | # CONFIG_SENSORS_LM93 is not set | 901 | # CONFIG_SENSORS_LM93 is not set |
902 | # CONFIG_SENSORS_LTC4245 is not set | ||
867 | # CONFIG_SENSORS_MAX1619 is not set | 903 | # CONFIG_SENSORS_MAX1619 is not set |
868 | # CONFIG_SENSORS_MAX6650 is not set | 904 | # CONFIG_SENSORS_MAX6650 is not set |
869 | # CONFIG_SENSORS_PC87360 is not set | 905 | # CONFIG_SENSORS_PC87360 is not set |
@@ -890,11 +926,11 @@ CONFIG_HWMON_DEBUG_CHIP=y | |||
890 | # CONFIG_THERMAL is not set | 926 | # CONFIG_THERMAL is not set |
891 | # CONFIG_THERMAL_HWMON is not set | 927 | # CONFIG_THERMAL_HWMON is not set |
892 | # CONFIG_WATCHDOG is not set | 928 | # CONFIG_WATCHDOG is not set |
929 | CONFIG_SSB_POSSIBLE=y | ||
893 | 930 | ||
894 | # | 931 | # |
895 | # Sonics Silicon Backplane | 932 | # Sonics Silicon Backplane |
896 | # | 933 | # |
897 | CONFIG_SSB_POSSIBLE=y | ||
898 | # CONFIG_SSB is not set | 934 | # CONFIG_SSB is not set |
899 | 935 | ||
900 | # | 936 | # |
@@ -903,18 +939,14 @@ CONFIG_SSB_POSSIBLE=y | |||
903 | # CONFIG_MFD_CORE is not set | 939 | # CONFIG_MFD_CORE is not set |
904 | # CONFIG_MFD_SM501 is not set | 940 | # CONFIG_MFD_SM501 is not set |
905 | # CONFIG_HTC_PASIC3 is not set | 941 | # CONFIG_HTC_PASIC3 is not set |
942 | # CONFIG_TPS65010 is not set | ||
943 | # CONFIG_TWL4030_CORE is not set | ||
906 | # CONFIG_MFD_TMIO is not set | 944 | # CONFIG_MFD_TMIO is not set |
907 | # CONFIG_PMIC_DA903X is not set | 945 | # CONFIG_PMIC_DA903X is not set |
908 | # CONFIG_MFD_WM8400 is not set | 946 | # CONFIG_MFD_WM8400 is not set |
909 | # CONFIG_MFD_WM8350_I2C is not set | 947 | # CONFIG_MFD_WM8350_I2C is not set |
910 | 948 | # CONFIG_MFD_PCF50633 is not set | |
911 | # | ||
912 | # Voltage and Current regulators | ||
913 | # | ||
914 | # CONFIG_REGULATOR is not set | 949 | # CONFIG_REGULATOR is not set |
915 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
916 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
917 | # CONFIG_REGULATOR_BQ24022 is not set | ||
918 | 950 | ||
919 | # | 951 | # |
920 | # Multimedia devices | 952 | # Multimedia devices |
@@ -970,9 +1002,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
970 | # | 1002 | # |
971 | 1003 | ||
972 | # | 1004 | # |
973 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
974 | # | 1006 | # |
975 | # CONFIG_USB_GADGET is not set | 1007 | # CONFIG_USB_GADGET is not set |
1008 | |||
1009 | # | ||
1010 | # OTG and related infrastructure | ||
1011 | # | ||
976 | # CONFIG_UWB is not set | 1012 | # CONFIG_UWB is not set |
977 | # CONFIG_MMC is not set | 1013 | # CONFIG_MMC is not set |
978 | # CONFIG_MEMSTICK is not set | 1014 | # CONFIG_MEMSTICK is not set |
@@ -1004,6 +1040,7 @@ CONFIG_FS_MBCACHE=y | |||
1004 | CONFIG_FILE_LOCKING=y | 1040 | CONFIG_FILE_LOCKING=y |
1005 | # CONFIG_XFS_FS is not set | 1041 | # CONFIG_XFS_FS is not set |
1006 | # CONFIG_OCFS2_FS is not set | 1042 | # CONFIG_OCFS2_FS is not set |
1043 | # CONFIG_BTRFS_FS is not set | ||
1007 | CONFIG_DNOTIFY=y | 1044 | CONFIG_DNOTIFY=y |
1008 | CONFIG_INOTIFY=y | 1045 | CONFIG_INOTIFY=y |
1009 | CONFIG_INOTIFY_USER=y | 1046 | CONFIG_INOTIFY_USER=y |
@@ -1037,10 +1074,7 @@ CONFIG_TMPFS=y | |||
1037 | # CONFIG_TMPFS_POSIX_ACL is not set | 1074 | # CONFIG_TMPFS_POSIX_ACL is not set |
1038 | # CONFIG_HUGETLB_PAGE is not set | 1075 | # CONFIG_HUGETLB_PAGE is not set |
1039 | # CONFIG_CONFIGFS_FS is not set | 1076 | # CONFIG_CONFIGFS_FS is not set |
1040 | 1077 | CONFIG_MISC_FILESYSTEMS=y | |
1041 | # | ||
1042 | # Miscellaneous filesystems | ||
1043 | # | ||
1044 | # CONFIG_ADFS_FS is not set | 1078 | # CONFIG_ADFS_FS is not set |
1045 | # CONFIG_AFFS_FS is not set | 1079 | # CONFIG_AFFS_FS is not set |
1046 | # CONFIG_HFS_FS is not set | 1080 | # CONFIG_HFS_FS is not set |
@@ -1060,6 +1094,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1060 | CONFIG_JFFS2_RTIME=y | 1094 | CONFIG_JFFS2_RTIME=y |
1061 | # CONFIG_JFFS2_RUBIN is not set | 1095 | # CONFIG_JFFS2_RUBIN is not set |
1062 | CONFIG_CRAMFS=y | 1096 | CONFIG_CRAMFS=y |
1097 | # CONFIG_SQUASHFS is not set | ||
1063 | # CONFIG_VXFS_FS is not set | 1098 | # CONFIG_VXFS_FS is not set |
1064 | # CONFIG_MINIX_FS is not set | 1099 | # CONFIG_MINIX_FS is not set |
1065 | # CONFIG_OMFS_FS is not set | 1100 | # CONFIG_OMFS_FS is not set |
@@ -1110,6 +1145,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1110 | # Library routines | 1145 | # Library routines |
1111 | # | 1146 | # |
1112 | CONFIG_BITREVERSE=y | 1147 | CONFIG_BITREVERSE=y |
1148 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1113 | # CONFIG_CRC_CCITT is not set | 1149 | # CONFIG_CRC_CCITT is not set |
1114 | # CONFIG_CRC16 is not set | 1150 | # CONFIG_CRC16 is not set |
1115 | # CONFIG_CRC_T10DIF is not set | 1151 | # CONFIG_CRC_T10DIF is not set |
@@ -1145,6 +1181,8 @@ CONFIG_FRAME_WARN=1024 | |||
1145 | # CONFIG_LATENCYTOP is not set | 1181 | # CONFIG_LATENCYTOP is not set |
1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1147 | CONFIG_HAVE_FUNCTION_TRACER=y | 1183 | CONFIG_HAVE_FUNCTION_TRACER=y |
1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1148 | 1186 | ||
1149 | # | 1187 | # |
1150 | # Tracers | 1188 | # Tracers |
@@ -1152,6 +1190,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1152 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1153 | # CONFIG_SAMPLES is not set | 1191 | # CONFIG_SAMPLES is not set |
1154 | CONFIG_HAVE_ARCH_KGDB=y | 1192 | CONFIG_HAVE_ARCH_KGDB=y |
1193 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1155 | # CONFIG_IRQSTACKS is not set | 1194 | # CONFIG_IRQSTACKS is not set |
1156 | # CONFIG_PPC_EARLY_DEBUG is not set | 1195 | # CONFIG_PPC_EARLY_DEBUG is not set |
1157 | 1196 | ||
@@ -1169,6 +1208,7 @@ CONFIG_CRYPTO=y | |||
1169 | # | 1208 | # |
1170 | # CONFIG_CRYPTO_FIPS is not set | 1209 | # CONFIG_CRYPTO_FIPS is not set |
1171 | # CONFIG_CRYPTO_MANAGER is not set | 1210 | # CONFIG_CRYPTO_MANAGER is not set |
1211 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1172 | # CONFIG_CRYPTO_GF128MUL is not set | 1212 | # CONFIG_CRYPTO_GF128MUL is not set |
1173 | # CONFIG_CRYPTO_NULL is not set | 1213 | # CONFIG_CRYPTO_NULL is not set |
1174 | # CONFIG_CRYPTO_CRYPTD is not set | 1214 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8548_defconfig b/arch/powerpc/configs/85xx/tqm8548_defconfig index 397d37fbe7e3..0bc45975911a 100644 --- a/arch/powerpc/configs/85xx/tqm8548_defconfig +++ b/arch/powerpc/configs/85xx/tqm8548_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:22 2008 | 4 | # Mon Jan 26 15:36:20 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -45,7 +47,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -75,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 81 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -115,7 +117,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 117 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 118 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 119 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 121 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +127,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 130 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 131 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 132 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +134,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 134 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 135 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 136 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 137 | CONFIG_BLOCK=y |
139 | # CONFIG_LBD is not set | 138 | # CONFIG_LBD is not set |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 139 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 140 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 141 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 142 | ||
@@ -155,6 +153,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 153 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 154 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 155 | CONFIG_CLASSIC_RCU=y |
156 | # CONFIG_TREE_RCU is not set | ||
157 | # CONFIG_PREEMPT_RCU is not set | ||
158 | # CONFIG_TREE_RCU_TRACE is not set | ||
159 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 160 | # CONFIG_FREEZER is not set |
159 | 161 | ||
160 | # | 162 | # |
@@ -195,6 +197,7 @@ CONFIG_MPIC=y | |||
195 | # CONFIG_CPM2 is not set | 197 | # CONFIG_CPM2 is not set |
196 | # CONFIG_FSL_ULI1575 is not set | 198 | # CONFIG_FSL_ULI1575 is not set |
197 | # CONFIG_MPC8xxx_GPIO is not set | 199 | # CONFIG_MPC8xxx_GPIO is not set |
200 | # CONFIG_SIMPLE_GPIO is not set | ||
198 | 201 | ||
199 | # | 202 | # |
200 | # Kernel options | 203 | # Kernel options |
@@ -233,12 +236,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
233 | CONFIG_PAGEFLAGS_EXTENDED=y | 236 | CONFIG_PAGEFLAGS_EXTENDED=y |
234 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 237 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
235 | CONFIG_MIGRATION=y | 238 | CONFIG_MIGRATION=y |
236 | # CONFIG_RESOURCES_64BIT is not set | ||
237 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 239 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
238 | CONFIG_ZONE_DMA_FLAG=1 | 240 | CONFIG_ZONE_DMA_FLAG=1 |
239 | CONFIG_BOUNCE=y | 241 | CONFIG_BOUNCE=y |
240 | CONFIG_VIRT_TO_BUS=y | 242 | CONFIG_VIRT_TO_BUS=y |
241 | CONFIG_UNEVICTABLE_LRU=y | 243 | CONFIG_UNEVICTABLE_LRU=y |
244 | CONFIG_PPC_4K_PAGES=y | ||
245 | # CONFIG_PPC_16K_PAGES is not set | ||
246 | # CONFIG_PPC_64K_PAGES is not set | ||
242 | CONFIG_FORCE_MAX_ZONEORDER=11 | 247 | CONFIG_FORCE_MAX_ZONEORDER=11 |
243 | CONFIG_PROC_DEVICETREE=y | 248 | CONFIG_PROC_DEVICETREE=y |
244 | # CONFIG_CMDLINE_BOOL is not set | 249 | # CONFIG_CMDLINE_BOOL is not set |
@@ -265,6 +270,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
265 | # CONFIG_PCI_MSI is not set | 270 | # CONFIG_PCI_MSI is not set |
266 | # CONFIG_PCI_LEGACY is not set | 271 | # CONFIG_PCI_LEGACY is not set |
267 | # CONFIG_PCI_DEBUG is not set | 272 | # CONFIG_PCI_DEBUG is not set |
273 | # CONFIG_PCI_STUB is not set | ||
268 | # CONFIG_PCCARD is not set | 274 | # CONFIG_PCCARD is not set |
269 | # CONFIG_HOTPLUG_PCI is not set | 275 | # CONFIG_HOTPLUG_PCI is not set |
270 | # CONFIG_HAS_RAPIDIO is not set | 276 | # CONFIG_HAS_RAPIDIO is not set |
@@ -288,6 +294,7 @@ CONFIG_NET=y | |||
288 | # | 294 | # |
289 | # Networking options | 295 | # Networking options |
290 | # | 296 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
291 | CONFIG_PACKET=y | 298 | CONFIG_PACKET=y |
292 | # CONFIG_PACKET_MMAP is not set | 299 | # CONFIG_PACKET_MMAP is not set |
293 | CONFIG_UNIX=y | 300 | CONFIG_UNIX=y |
@@ -344,6 +351,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
345 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
346 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | ||
347 | 355 | ||
348 | # | 356 | # |
349 | # Network testing | 357 | # Network testing |
@@ -359,8 +367,9 @@ CONFIG_WIRELESS=y | |||
359 | # CONFIG_CFG80211 is not set | 367 | # CONFIG_CFG80211 is not set |
360 | CONFIG_WIRELESS_OLD_REGULATORY=y | 368 | CONFIG_WIRELESS_OLD_REGULATORY=y |
361 | # CONFIG_WIRELESS_EXT is not set | 369 | # CONFIG_WIRELESS_EXT is not set |
370 | # CONFIG_LIB80211 is not set | ||
362 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
363 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_WIMAX is not set |
364 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
365 | # CONFIG_NET_9P is not set | 374 | # CONFIG_NET_9P is not set |
366 | 375 | ||
@@ -383,6 +392,7 @@ CONFIG_MTD=y | |||
383 | # CONFIG_MTD_DEBUG is not set | 392 | # CONFIG_MTD_DEBUG is not set |
384 | # CONFIG_MTD_CONCAT is not set | 393 | # CONFIG_MTD_CONCAT is not set |
385 | CONFIG_MTD_PARTITIONS=y | 394 | CONFIG_MTD_PARTITIONS=y |
395 | # CONFIG_MTD_TESTS is not set | ||
386 | # CONFIG_MTD_REDBOOT_PARTS is not set | 396 | # CONFIG_MTD_REDBOOT_PARTS is not set |
387 | # CONFIG_MTD_CMDLINE_PARTS is not set | 397 | # CONFIG_MTD_CMDLINE_PARTS is not set |
388 | CONFIG_MTD_OF_PARTS=y | 398 | CONFIG_MTD_OF_PARTS=y |
@@ -465,6 +475,12 @@ CONFIG_MTD_NAND_IDS=y | |||
465 | # CONFIG_MTD_ONENAND is not set | 475 | # CONFIG_MTD_ONENAND is not set |
466 | 476 | ||
467 | # | 477 | # |
478 | # LPDDR flash memory drivers | ||
479 | # | ||
480 | # CONFIG_MTD_LPDDR is not set | ||
481 | # CONFIG_MTD_QINFO_PROBE is not set | ||
482 | |||
483 | # | ||
468 | # UBI - Unsorted block images | 484 | # UBI - Unsorted block images |
469 | # | 485 | # |
470 | CONFIG_MTD_UBI=m | 486 | CONFIG_MTD_UBI=m |
@@ -502,8 +518,10 @@ CONFIG_MISC_DEVICES=y | |||
502 | # CONFIG_EEPROM_93CX6 is not set | 518 | # CONFIG_EEPROM_93CX6 is not set |
503 | # CONFIG_SGI_IOC4 is not set | 519 | # CONFIG_SGI_IOC4 is not set |
504 | # CONFIG_TIFM_CORE is not set | 520 | # CONFIG_TIFM_CORE is not set |
521 | # CONFIG_ICS932S401 is not set | ||
505 | # CONFIG_ENCLOSURE_SERVICES is not set | 522 | # CONFIG_ENCLOSURE_SERVICES is not set |
506 | # CONFIG_HP_ILO is not set | 523 | # CONFIG_HP_ILO is not set |
524 | # CONFIG_C2PORT is not set | ||
507 | CONFIG_HAVE_IDE=y | 525 | CONFIG_HAVE_IDE=y |
508 | CONFIG_IDE=y | 526 | CONFIG_IDE=y |
509 | 527 | ||
@@ -546,6 +564,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
546 | # CONFIG_BLK_DEV_JMICRON is not set | 564 | # CONFIG_BLK_DEV_JMICRON is not set |
547 | # CONFIG_BLK_DEV_SC1200 is not set | 565 | # CONFIG_BLK_DEV_SC1200 is not set |
548 | # CONFIG_BLK_DEV_PIIX is not set | 566 | # CONFIG_BLK_DEV_PIIX is not set |
567 | # CONFIG_BLK_DEV_IT8172 is not set | ||
549 | # CONFIG_BLK_DEV_IT8213 is not set | 568 | # CONFIG_BLK_DEV_IT8213 is not set |
550 | # CONFIG_BLK_DEV_IT821X is not set | 569 | # CONFIG_BLK_DEV_IT821X is not set |
551 | # CONFIG_BLK_DEV_NS87415 is not set | 570 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -605,6 +624,9 @@ CONFIG_PHYLIB=y | |||
605 | # CONFIG_BROADCOM_PHY is not set | 624 | # CONFIG_BROADCOM_PHY is not set |
606 | # CONFIG_ICPLUS_PHY is not set | 625 | # CONFIG_ICPLUS_PHY is not set |
607 | # CONFIG_REALTEK_PHY is not set | 626 | # CONFIG_REALTEK_PHY is not set |
627 | # CONFIG_NATIONAL_PHY is not set | ||
628 | # CONFIG_STE10XP is not set | ||
629 | # CONFIG_LSI_ET1011C_PHY is not set | ||
608 | # CONFIG_FIXED_PHY is not set | 630 | # CONFIG_FIXED_PHY is not set |
609 | # CONFIG_MDIO_BITBANG is not set | 631 | # CONFIG_MDIO_BITBANG is not set |
610 | CONFIG_NET_ETHERNET=y | 632 | CONFIG_NET_ETHERNET=y |
@@ -649,6 +671,7 @@ CONFIG_GIANFAR=y | |||
649 | # CONFIG_JME is not set | 671 | # CONFIG_JME is not set |
650 | CONFIG_NETDEV_10000=y | 672 | CONFIG_NETDEV_10000=y |
651 | # CONFIG_CHELSIO_T1 is not set | 673 | # CONFIG_CHELSIO_T1 is not set |
674 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
652 | # CONFIG_CHELSIO_T3 is not set | 675 | # CONFIG_CHELSIO_T3 is not set |
653 | # CONFIG_ENIC is not set | 676 | # CONFIG_ENIC is not set |
654 | # CONFIG_IXGBE is not set | 677 | # CONFIG_IXGBE is not set |
@@ -671,6 +694,10 @@ CONFIG_NETDEV_10000=y | |||
671 | # CONFIG_WLAN_PRE80211 is not set | 694 | # CONFIG_WLAN_PRE80211 is not set |
672 | # CONFIG_WLAN_80211 is not set | 695 | # CONFIG_WLAN_80211 is not set |
673 | # CONFIG_IWLWIFI_LEDS is not set | 696 | # CONFIG_IWLWIFI_LEDS is not set |
697 | |||
698 | # | ||
699 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
700 | # | ||
674 | # CONFIG_WAN is not set | 701 | # CONFIG_WAN is not set |
675 | # CONFIG_FDDI is not set | 702 | # CONFIG_FDDI is not set |
676 | # CONFIG_HIPPI is not set | 703 | # CONFIG_HIPPI is not set |
@@ -741,8 +768,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
741 | # CONFIG_SERIAL_JSM is not set | 768 | # CONFIG_SERIAL_JSM is not set |
742 | # CONFIG_SERIAL_OF_PLATFORM is not set | 769 | # CONFIG_SERIAL_OF_PLATFORM is not set |
743 | CONFIG_UNIX98_PTYS=y | 770 | CONFIG_UNIX98_PTYS=y |
771 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
744 | CONFIG_LEGACY_PTYS=y | 772 | CONFIG_LEGACY_PTYS=y |
745 | CONFIG_LEGACY_PTY_COUNT=256 | 773 | CONFIG_LEGACY_PTY_COUNT=256 |
774 | # CONFIG_HVC_UDBG is not set | ||
746 | # CONFIG_IPMI_HANDLER is not set | 775 | # CONFIG_IPMI_HANDLER is not set |
747 | # CONFIG_HW_RANDOM is not set | 776 | # CONFIG_HW_RANDOM is not set |
748 | # CONFIG_NVRAM is not set | 777 | # CONFIG_NVRAM is not set |
@@ -833,8 +862,10 @@ CONFIG_HWMON=y | |||
833 | # CONFIG_SENSORS_ADM1029 is not set | 862 | # CONFIG_SENSORS_ADM1029 is not set |
834 | # CONFIG_SENSORS_ADM1031 is not set | 863 | # CONFIG_SENSORS_ADM1031 is not set |
835 | # CONFIG_SENSORS_ADM9240 is not set | 864 | # CONFIG_SENSORS_ADM9240 is not set |
865 | # CONFIG_SENSORS_ADT7462 is not set | ||
836 | # CONFIG_SENSORS_ADT7470 is not set | 866 | # CONFIG_SENSORS_ADT7470 is not set |
837 | # CONFIG_SENSORS_ADT7473 is not set | 867 | # CONFIG_SENSORS_ADT7473 is not set |
868 | # CONFIG_SENSORS_ADT7475 is not set | ||
838 | # CONFIG_SENSORS_ATXP1 is not set | 869 | # CONFIG_SENSORS_ATXP1 is not set |
839 | # CONFIG_SENSORS_DS1621 is not set | 870 | # CONFIG_SENSORS_DS1621 is not set |
840 | # CONFIG_SENSORS_I5K_AMB is not set | 871 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -855,6 +886,7 @@ CONFIG_SENSORS_LM75=y | |||
855 | # CONFIG_SENSORS_LM90 is not set | 886 | # CONFIG_SENSORS_LM90 is not set |
856 | # CONFIG_SENSORS_LM92 is not set | 887 | # CONFIG_SENSORS_LM92 is not set |
857 | # CONFIG_SENSORS_LM93 is not set | 888 | # CONFIG_SENSORS_LM93 is not set |
889 | # CONFIG_SENSORS_LTC4245 is not set | ||
858 | # CONFIG_SENSORS_MAX1619 is not set | 890 | # CONFIG_SENSORS_MAX1619 is not set |
859 | # CONFIG_SENSORS_MAX6650 is not set | 891 | # CONFIG_SENSORS_MAX6650 is not set |
860 | # CONFIG_SENSORS_PC87360 is not set | 892 | # CONFIG_SENSORS_PC87360 is not set |
@@ -881,11 +913,11 @@ CONFIG_SENSORS_LM75=y | |||
881 | # CONFIG_THERMAL is not set | 913 | # CONFIG_THERMAL is not set |
882 | # CONFIG_THERMAL_HWMON is not set | 914 | # CONFIG_THERMAL_HWMON is not set |
883 | # CONFIG_WATCHDOG is not set | 915 | # CONFIG_WATCHDOG is not set |
916 | CONFIG_SSB_POSSIBLE=y | ||
884 | 917 | ||
885 | # | 918 | # |
886 | # Sonics Silicon Backplane | 919 | # Sonics Silicon Backplane |
887 | # | 920 | # |
888 | CONFIG_SSB_POSSIBLE=y | ||
889 | # CONFIG_SSB is not set | 921 | # CONFIG_SSB is not set |
890 | 922 | ||
891 | # | 923 | # |
@@ -894,18 +926,13 @@ CONFIG_SSB_POSSIBLE=y | |||
894 | # CONFIG_MFD_CORE is not set | 926 | # CONFIG_MFD_CORE is not set |
895 | # CONFIG_MFD_SM501 is not set | 927 | # CONFIG_MFD_SM501 is not set |
896 | # CONFIG_HTC_PASIC3 is not set | 928 | # CONFIG_HTC_PASIC3 is not set |
929 | # CONFIG_TWL4030_CORE is not set | ||
897 | # CONFIG_MFD_TMIO is not set | 930 | # CONFIG_MFD_TMIO is not set |
898 | # CONFIG_PMIC_DA903X is not set | 931 | # CONFIG_PMIC_DA903X is not set |
899 | # CONFIG_MFD_WM8400 is not set | 932 | # CONFIG_MFD_WM8400 is not set |
900 | # CONFIG_MFD_WM8350_I2C is not set | 933 | # CONFIG_MFD_WM8350_I2C is not set |
901 | 934 | # CONFIG_MFD_PCF50633 is not set | |
902 | # | ||
903 | # Voltage and Current regulators | ||
904 | # | ||
905 | # CONFIG_REGULATOR is not set | 935 | # CONFIG_REGULATOR is not set |
906 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
907 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
908 | # CONFIG_REGULATOR_BQ24022 is not set | ||
909 | 936 | ||
910 | # | 937 | # |
911 | # Multimedia devices | 938 | # Multimedia devices |
@@ -961,9 +988,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
961 | # | 988 | # |
962 | 989 | ||
963 | # | 990 | # |
964 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 991 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
965 | # | 992 | # |
966 | # CONFIG_USB_GADGET is not set | 993 | # CONFIG_USB_GADGET is not set |
994 | |||
995 | # | ||
996 | # OTG and related infrastructure | ||
997 | # | ||
967 | # CONFIG_UWB is not set | 998 | # CONFIG_UWB is not set |
968 | # CONFIG_MMC is not set | 999 | # CONFIG_MMC is not set |
969 | # CONFIG_MEMSTICK is not set | 1000 | # CONFIG_MEMSTICK is not set |
@@ -1001,6 +1032,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
1001 | # CONFIG_RTC_DRV_M41T80 is not set | 1032 | # CONFIG_RTC_DRV_M41T80 is not set |
1002 | # CONFIG_RTC_DRV_S35390A is not set | 1033 | # CONFIG_RTC_DRV_S35390A is not set |
1003 | # CONFIG_RTC_DRV_FM3130 is not set | 1034 | # CONFIG_RTC_DRV_FM3130 is not set |
1035 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1004 | 1036 | ||
1005 | # | 1037 | # |
1006 | # SPI RTC drivers | 1038 | # SPI RTC drivers |
@@ -1048,6 +1080,7 @@ CONFIG_FS_MBCACHE=y | |||
1048 | CONFIG_FILE_LOCKING=y | 1080 | CONFIG_FILE_LOCKING=y |
1049 | # CONFIG_XFS_FS is not set | 1081 | # CONFIG_XFS_FS is not set |
1050 | # CONFIG_OCFS2_FS is not set | 1082 | # CONFIG_OCFS2_FS is not set |
1083 | # CONFIG_BTRFS_FS is not set | ||
1051 | CONFIG_DNOTIFY=y | 1084 | CONFIG_DNOTIFY=y |
1052 | CONFIG_INOTIFY=y | 1085 | CONFIG_INOTIFY=y |
1053 | CONFIG_INOTIFY_USER=y | 1086 | CONFIG_INOTIFY_USER=y |
@@ -1081,10 +1114,7 @@ CONFIG_TMPFS=y | |||
1081 | # CONFIG_TMPFS_POSIX_ACL is not set | 1114 | # CONFIG_TMPFS_POSIX_ACL is not set |
1082 | # CONFIG_HUGETLB_PAGE is not set | 1115 | # CONFIG_HUGETLB_PAGE is not set |
1083 | # CONFIG_CONFIGFS_FS is not set | 1116 | # CONFIG_CONFIGFS_FS is not set |
1084 | 1117 | CONFIG_MISC_FILESYSTEMS=y | |
1085 | # | ||
1086 | # Miscellaneous filesystems | ||
1087 | # | ||
1088 | # CONFIG_ADFS_FS is not set | 1118 | # CONFIG_ADFS_FS is not set |
1089 | # CONFIG_AFFS_FS is not set | 1119 | # CONFIG_AFFS_FS is not set |
1090 | # CONFIG_HFS_FS is not set | 1120 | # CONFIG_HFS_FS is not set |
@@ -1095,6 +1125,7 @@ CONFIG_TMPFS=y | |||
1095 | # CONFIG_JFFS2_FS is not set | 1125 | # CONFIG_JFFS2_FS is not set |
1096 | # CONFIG_UBIFS_FS is not set | 1126 | # CONFIG_UBIFS_FS is not set |
1097 | # CONFIG_CRAMFS is not set | 1127 | # CONFIG_CRAMFS is not set |
1128 | # CONFIG_SQUASHFS is not set | ||
1098 | # CONFIG_VXFS_FS is not set | 1129 | # CONFIG_VXFS_FS is not set |
1099 | # CONFIG_MINIX_FS is not set | 1130 | # CONFIG_MINIX_FS is not set |
1100 | # CONFIG_OMFS_FS is not set | 1131 | # CONFIG_OMFS_FS is not set |
@@ -1145,6 +1176,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1145 | # Library routines | 1176 | # Library routines |
1146 | # | 1177 | # |
1147 | CONFIG_BITREVERSE=y | 1178 | CONFIG_BITREVERSE=y |
1179 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1148 | # CONFIG_CRC_CCITT is not set | 1180 | # CONFIG_CRC_CCITT is not set |
1149 | # CONFIG_CRC16 is not set | 1181 | # CONFIG_CRC16 is not set |
1150 | # CONFIG_CRC_T10DIF is not set | 1182 | # CONFIG_CRC_T10DIF is not set |
@@ -1194,6 +1226,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
1194 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1226 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1195 | # CONFIG_DEBUG_LIST is not set | 1227 | # CONFIG_DEBUG_LIST is not set |
1196 | # CONFIG_DEBUG_SG is not set | 1228 | # CONFIG_DEBUG_SG is not set |
1229 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1197 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1230 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1198 | # CONFIG_RCU_TORTURE_TEST is not set | 1231 | # CONFIG_RCU_TORTURE_TEST is not set |
1199 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1232 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1203,6 +1236,8 @@ CONFIG_DEBUG_MUTEXES=y | |||
1203 | # CONFIG_LATENCYTOP is not set | 1236 | # CONFIG_LATENCYTOP is not set |
1204 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1237 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1205 | CONFIG_HAVE_FUNCTION_TRACER=y | 1238 | CONFIG_HAVE_FUNCTION_TRACER=y |
1239 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1240 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1206 | 1241 | ||
1207 | # | 1242 | # |
1208 | # Tracers | 1243 | # Tracers |
@@ -1211,11 +1246,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1211 | # CONFIG_SCHED_TRACER is not set | 1246 | # CONFIG_SCHED_TRACER is not set |
1212 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1247 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1213 | # CONFIG_BOOT_TRACER is not set | 1248 | # CONFIG_BOOT_TRACER is not set |
1249 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1214 | # CONFIG_STACK_TRACER is not set | 1250 | # CONFIG_STACK_TRACER is not set |
1215 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1251 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1216 | # CONFIG_SAMPLES is not set | 1252 | # CONFIG_SAMPLES is not set |
1217 | CONFIG_HAVE_ARCH_KGDB=y | 1253 | CONFIG_HAVE_ARCH_KGDB=y |
1218 | # CONFIG_KGDB is not set | 1254 | # CONFIG_KGDB is not set |
1255 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1219 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1256 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1220 | # CONFIG_DEBUG_STACK_USAGE is not set | 1257 | # CONFIG_DEBUG_STACK_USAGE is not set |
1221 | # CONFIG_DEBUG_PAGEALLOC is not set | 1258 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1241,6 +1278,7 @@ CONFIG_CRYPTO=y | |||
1241 | # | 1278 | # |
1242 | # CONFIG_CRYPTO_FIPS is not set | 1279 | # CONFIG_CRYPTO_FIPS is not set |
1243 | # CONFIG_CRYPTO_MANAGER is not set | 1280 | # CONFIG_CRYPTO_MANAGER is not set |
1281 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1244 | # CONFIG_CRYPTO_GF128MUL is not set | 1282 | # CONFIG_CRYPTO_GF128MUL is not set |
1245 | # CONFIG_CRYPTO_NULL is not set | 1283 | # CONFIG_CRYPTO_NULL is not set |
1246 | # CONFIG_CRYPTO_CRYPTD is not set | 1284 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8555_defconfig b/arch/powerpc/configs/85xx/tqm8555_defconfig index 856ca6ab37b7..d5a864d74461 100644 --- a/arch/powerpc/configs/85xx/tqm8555_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:23 2008 | 4 | # Mon Jan 26 15:36:21 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 121 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -125,13 +126,11 @@ CONFIG_HAVE_CLK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | # CONFIG_MODULES is not set | 130 | # CONFIG_MODULES is not set |
131 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
132 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
133 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
134 | # CONFIG_LSF is not set | ||
135 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
137 | 136 | ||
@@ -148,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
148 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
151 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
152 | 155 | ||
153 | # | 156 | # |
@@ -189,6 +192,7 @@ CONFIG_CPM2=y | |||
189 | # CONFIG_FSL_ULI1575 is not set | 192 | # CONFIG_FSL_ULI1575 is not set |
190 | CONFIG_CPM=y | 193 | CONFIG_CPM=y |
191 | # CONFIG_MPC8xxx_GPIO is not set | 194 | # CONFIG_MPC8xxx_GPIO is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
192 | 196 | ||
193 | # | 197 | # |
194 | # Kernel options | 198 | # Kernel options |
@@ -226,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
229 | # CONFIG_RESOURCES_64BIT is not set | ||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | # CONFIG_PROC_DEVICETREE is not set | 242 | # CONFIG_PROC_DEVICETREE is not set |
237 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
255 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
256 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
257 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_HAS_RAPIDIO is not set | 265 | # CONFIG_HAS_RAPIDIO is not set |
259 | 266 | ||
260 | # | 267 | # |
@@ -276,6 +283,7 @@ CONFIG_NET=y | |||
276 | # | 283 | # |
277 | # Networking options | 284 | # Networking options |
278 | # | 285 | # |
286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
279 | CONFIG_PACKET=y | 287 | CONFIG_PACKET=y |
280 | # CONFIG_PACKET_MMAP is not set | 288 | # CONFIG_PACKET_MMAP is not set |
281 | CONFIG_UNIX=y | 289 | CONFIG_UNIX=y |
@@ -332,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
334 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
335 | 344 | ||
336 | # | 345 | # |
337 | # Network testing | 346 | # Network testing |
@@ -347,8 +356,9 @@ CONFIG_WIRELESS=y | |||
347 | # CONFIG_CFG80211 is not set | 356 | # CONFIG_CFG80211 is not set |
348 | CONFIG_WIRELESS_OLD_REGULATORY=y | 357 | CONFIG_WIRELESS_OLD_REGULATORY=y |
349 | # CONFIG_WIRELESS_EXT is not set | 358 | # CONFIG_WIRELESS_EXT is not set |
359 | # CONFIG_LIB80211 is not set | ||
350 | # CONFIG_MAC80211 is not set | 360 | # CONFIG_MAC80211 is not set |
351 | # CONFIG_IEEE80211 is not set | 361 | # CONFIG_WIMAX is not set |
352 | # CONFIG_RFKILL is not set | 362 | # CONFIG_RFKILL is not set |
353 | # CONFIG_NET_9P is not set | 363 | # CONFIG_NET_9P is not set |
354 | 364 | ||
@@ -438,6 +448,12 @@ CONFIG_MTD_CFI_UTIL=y | |||
438 | # CONFIG_MTD_ONENAND is not set | 448 | # CONFIG_MTD_ONENAND is not set |
439 | 449 | ||
440 | # | 450 | # |
451 | # LPDDR flash memory drivers | ||
452 | # | ||
453 | # CONFIG_MTD_LPDDR is not set | ||
454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
455 | |||
456 | # | ||
441 | # UBI - Unsorted block images | 457 | # UBI - Unsorted block images |
442 | # | 458 | # |
443 | # CONFIG_MTD_UBI is not set | 459 | # CONFIG_MTD_UBI is not set |
@@ -468,8 +484,10 @@ CONFIG_MISC_DEVICES=y | |||
468 | # CONFIG_EEPROM_93CX6 is not set | 484 | # CONFIG_EEPROM_93CX6 is not set |
469 | # CONFIG_SGI_IOC4 is not set | 485 | # CONFIG_SGI_IOC4 is not set |
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
487 | # CONFIG_ICS932S401 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 488 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 489 | # CONFIG_HP_ILO is not set |
490 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 491 | CONFIG_HAVE_IDE=y |
474 | CONFIG_IDE=y | 492 | CONFIG_IDE=y |
475 | 493 | ||
@@ -512,6 +530,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
512 | # CONFIG_BLK_DEV_JMICRON is not set | 530 | # CONFIG_BLK_DEV_JMICRON is not set |
513 | # CONFIG_BLK_DEV_SC1200 is not set | 531 | # CONFIG_BLK_DEV_SC1200 is not set |
514 | # CONFIG_BLK_DEV_PIIX is not set | 532 | # CONFIG_BLK_DEV_PIIX is not set |
533 | # CONFIG_BLK_DEV_IT8172 is not set | ||
515 | # CONFIG_BLK_DEV_IT8213 is not set | 534 | # CONFIG_BLK_DEV_IT8213 is not set |
516 | # CONFIG_BLK_DEV_IT821X is not set | 535 | # CONFIG_BLK_DEV_IT821X is not set |
517 | # CONFIG_BLK_DEV_NS87415 is not set | 536 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -571,6 +590,9 @@ CONFIG_PHYLIB=y | |||
571 | # CONFIG_BROADCOM_PHY is not set | 590 | # CONFIG_BROADCOM_PHY is not set |
572 | # CONFIG_ICPLUS_PHY is not set | 591 | # CONFIG_ICPLUS_PHY is not set |
573 | # CONFIG_REALTEK_PHY is not set | 592 | # CONFIG_REALTEK_PHY is not set |
593 | # CONFIG_NATIONAL_PHY is not set | ||
594 | # CONFIG_STE10XP is not set | ||
595 | # CONFIG_LSI_ET1011C_PHY is not set | ||
574 | # CONFIG_FIXED_PHY is not set | 596 | # CONFIG_FIXED_PHY is not set |
575 | # CONFIG_MDIO_BITBANG is not set | 597 | # CONFIG_MDIO_BITBANG is not set |
576 | CONFIG_NET_ETHERNET=y | 598 | CONFIG_NET_ETHERNET=y |
@@ -594,7 +616,6 @@ CONFIG_NET_PCI=y | |||
594 | # CONFIG_ADAPTEC_STARFIRE is not set | 616 | # CONFIG_ADAPTEC_STARFIRE is not set |
595 | # CONFIG_B44 is not set | 617 | # CONFIG_B44 is not set |
596 | # CONFIG_FORCEDETH is not set | 618 | # CONFIG_FORCEDETH is not set |
597 | # CONFIG_EEPRO100 is not set | ||
598 | CONFIG_E100=y | 619 | CONFIG_E100=y |
599 | # CONFIG_FEALNX is not set | 620 | # CONFIG_FEALNX is not set |
600 | # CONFIG_NATSEMI is not set | 621 | # CONFIG_NATSEMI is not set |
@@ -604,6 +625,7 @@ CONFIG_E100=y | |||
604 | # CONFIG_R6040 is not set | 625 | # CONFIG_R6040 is not set |
605 | # CONFIG_SIS900 is not set | 626 | # CONFIG_SIS900 is not set |
606 | # CONFIG_EPIC100 is not set | 627 | # CONFIG_EPIC100 is not set |
628 | # CONFIG_SMSC9420 is not set | ||
607 | # CONFIG_SUNDANCE is not set | 629 | # CONFIG_SUNDANCE is not set |
608 | # CONFIG_TLAN is not set | 630 | # CONFIG_TLAN is not set |
609 | # CONFIG_VIA_RHINE is not set | 631 | # CONFIG_VIA_RHINE is not set |
@@ -634,6 +656,7 @@ CONFIG_GIANFAR=y | |||
634 | # CONFIG_JME is not set | 656 | # CONFIG_JME is not set |
635 | CONFIG_NETDEV_10000=y | 657 | CONFIG_NETDEV_10000=y |
636 | # CONFIG_CHELSIO_T1 is not set | 658 | # CONFIG_CHELSIO_T1 is not set |
659 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
637 | # CONFIG_CHELSIO_T3 is not set | 660 | # CONFIG_CHELSIO_T3 is not set |
638 | # CONFIG_ENIC is not set | 661 | # CONFIG_ENIC is not set |
639 | # CONFIG_IXGBE is not set | 662 | # CONFIG_IXGBE is not set |
@@ -656,6 +679,10 @@ CONFIG_NETDEV_10000=y | |||
656 | # CONFIG_WLAN_PRE80211 is not set | 679 | # CONFIG_WLAN_PRE80211 is not set |
657 | # CONFIG_WLAN_80211 is not set | 680 | # CONFIG_WLAN_80211 is not set |
658 | # CONFIG_IWLWIFI_LEDS is not set | 681 | # CONFIG_IWLWIFI_LEDS is not set |
682 | |||
683 | # | ||
684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
685 | # | ||
659 | # CONFIG_WAN is not set | 686 | # CONFIG_WAN is not set |
660 | # CONFIG_FDDI is not set | 687 | # CONFIG_FDDI is not set |
661 | # CONFIG_HIPPI is not set | 688 | # CONFIG_HIPPI is not set |
@@ -728,8 +755,10 @@ CONFIG_SERIAL_CPM_CONSOLE=y | |||
728 | # CONFIG_SERIAL_JSM is not set | 755 | # CONFIG_SERIAL_JSM is not set |
729 | # CONFIG_SERIAL_OF_PLATFORM is not set | 756 | # CONFIG_SERIAL_OF_PLATFORM is not set |
730 | CONFIG_UNIX98_PTYS=y | 757 | CONFIG_UNIX98_PTYS=y |
758 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
731 | CONFIG_LEGACY_PTYS=y | 759 | CONFIG_LEGACY_PTYS=y |
732 | CONFIG_LEGACY_PTY_COUNT=256 | 760 | CONFIG_LEGACY_PTY_COUNT=256 |
761 | # CONFIG_HVC_UDBG is not set | ||
733 | # CONFIG_IPMI_HANDLER is not set | 762 | # CONFIG_IPMI_HANDLER is not set |
734 | CONFIG_HW_RANDOM=y | 763 | CONFIG_HW_RANDOM=y |
735 | # CONFIG_NVRAM is not set | 764 | # CONFIG_NVRAM is not set |
@@ -802,7 +831,6 @@ CONFIG_I2C_MPC=y | |||
802 | # CONFIG_PCF8575 is not set | 831 | # CONFIG_PCF8575 is not set |
803 | # CONFIG_SENSORS_PCA9539 is not set | 832 | # CONFIG_SENSORS_PCA9539 is not set |
804 | # CONFIG_SENSORS_PCF8591 is not set | 833 | # CONFIG_SENSORS_PCF8591 is not set |
805 | # CONFIG_TPS65010 is not set | ||
806 | # CONFIG_SENSORS_MAX6875 is not set | 834 | # CONFIG_SENSORS_MAX6875 is not set |
807 | # CONFIG_SENSORS_TSL2550 is not set | 835 | # CONFIG_SENSORS_TSL2550 is not set |
808 | # CONFIG_I2C_DEBUG_CORE is not set | 836 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -816,6 +844,11 @@ CONFIG_GPIOLIB=y | |||
816 | # CONFIG_GPIO_SYSFS is not set | 844 | # CONFIG_GPIO_SYSFS is not set |
817 | 845 | ||
818 | # | 846 | # |
847 | # Memory mapped GPIO expanders: | ||
848 | # | ||
849 | # CONFIG_GPIO_XILINX is not set | ||
850 | |||
851 | # | ||
819 | # I2C GPIO expanders: | 852 | # I2C GPIO expanders: |
820 | # | 853 | # |
821 | # CONFIG_GPIO_MAX732X is not set | 854 | # CONFIG_GPIO_MAX732X is not set |
@@ -842,8 +875,10 @@ CONFIG_HWMON=y | |||
842 | # CONFIG_SENSORS_ADM1029 is not set | 875 | # CONFIG_SENSORS_ADM1029 is not set |
843 | # CONFIG_SENSORS_ADM1031 is not set | 876 | # CONFIG_SENSORS_ADM1031 is not set |
844 | # CONFIG_SENSORS_ADM9240 is not set | 877 | # CONFIG_SENSORS_ADM9240 is not set |
878 | # CONFIG_SENSORS_ADT7462 is not set | ||
845 | # CONFIG_SENSORS_ADT7470 is not set | 879 | # CONFIG_SENSORS_ADT7470 is not set |
846 | # CONFIG_SENSORS_ADT7473 is not set | 880 | # CONFIG_SENSORS_ADT7473 is not set |
881 | # CONFIG_SENSORS_ADT7475 is not set | ||
847 | # CONFIG_SENSORS_ATXP1 is not set | 882 | # CONFIG_SENSORS_ATXP1 is not set |
848 | # CONFIG_SENSORS_DS1621 is not set | 883 | # CONFIG_SENSORS_DS1621 is not set |
849 | # CONFIG_SENSORS_I5K_AMB is not set | 884 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -864,6 +899,7 @@ CONFIG_SENSORS_LM75=y | |||
864 | # CONFIG_SENSORS_LM90 is not set | 899 | # CONFIG_SENSORS_LM90 is not set |
865 | # CONFIG_SENSORS_LM92 is not set | 900 | # CONFIG_SENSORS_LM92 is not set |
866 | # CONFIG_SENSORS_LM93 is not set | 901 | # CONFIG_SENSORS_LM93 is not set |
902 | # CONFIG_SENSORS_LTC4245 is not set | ||
867 | # CONFIG_SENSORS_MAX1619 is not set | 903 | # CONFIG_SENSORS_MAX1619 is not set |
868 | # CONFIG_SENSORS_MAX6650 is not set | 904 | # CONFIG_SENSORS_MAX6650 is not set |
869 | # CONFIG_SENSORS_PC87360 is not set | 905 | # CONFIG_SENSORS_PC87360 is not set |
@@ -890,11 +926,11 @@ CONFIG_HWMON_DEBUG_CHIP=y | |||
890 | # CONFIG_THERMAL is not set | 926 | # CONFIG_THERMAL is not set |
891 | # CONFIG_THERMAL_HWMON is not set | 927 | # CONFIG_THERMAL_HWMON is not set |
892 | # CONFIG_WATCHDOG is not set | 928 | # CONFIG_WATCHDOG is not set |
929 | CONFIG_SSB_POSSIBLE=y | ||
893 | 930 | ||
894 | # | 931 | # |
895 | # Sonics Silicon Backplane | 932 | # Sonics Silicon Backplane |
896 | # | 933 | # |
897 | CONFIG_SSB_POSSIBLE=y | ||
898 | # CONFIG_SSB is not set | 934 | # CONFIG_SSB is not set |
899 | 935 | ||
900 | # | 936 | # |
@@ -903,18 +939,14 @@ CONFIG_SSB_POSSIBLE=y | |||
903 | # CONFIG_MFD_CORE is not set | 939 | # CONFIG_MFD_CORE is not set |
904 | # CONFIG_MFD_SM501 is not set | 940 | # CONFIG_MFD_SM501 is not set |
905 | # CONFIG_HTC_PASIC3 is not set | 941 | # CONFIG_HTC_PASIC3 is not set |
942 | # CONFIG_TPS65010 is not set | ||
943 | # CONFIG_TWL4030_CORE is not set | ||
906 | # CONFIG_MFD_TMIO is not set | 944 | # CONFIG_MFD_TMIO is not set |
907 | # CONFIG_PMIC_DA903X is not set | 945 | # CONFIG_PMIC_DA903X is not set |
908 | # CONFIG_MFD_WM8400 is not set | 946 | # CONFIG_MFD_WM8400 is not set |
909 | # CONFIG_MFD_WM8350_I2C is not set | 947 | # CONFIG_MFD_WM8350_I2C is not set |
910 | 948 | # CONFIG_MFD_PCF50633 is not set | |
911 | # | ||
912 | # Voltage and Current regulators | ||
913 | # | ||
914 | # CONFIG_REGULATOR is not set | 949 | # CONFIG_REGULATOR is not set |
915 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
916 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
917 | # CONFIG_REGULATOR_BQ24022 is not set | ||
918 | 950 | ||
919 | # | 951 | # |
920 | # Multimedia devices | 952 | # Multimedia devices |
@@ -970,9 +1002,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
970 | # | 1002 | # |
971 | 1003 | ||
972 | # | 1004 | # |
973 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
974 | # | 1006 | # |
975 | # CONFIG_USB_GADGET is not set | 1007 | # CONFIG_USB_GADGET is not set |
1008 | |||
1009 | # | ||
1010 | # OTG and related infrastructure | ||
1011 | # | ||
976 | # CONFIG_UWB is not set | 1012 | # CONFIG_UWB is not set |
977 | # CONFIG_MMC is not set | 1013 | # CONFIG_MMC is not set |
978 | # CONFIG_MEMSTICK is not set | 1014 | # CONFIG_MEMSTICK is not set |
@@ -1004,6 +1040,7 @@ CONFIG_FS_MBCACHE=y | |||
1004 | CONFIG_FILE_LOCKING=y | 1040 | CONFIG_FILE_LOCKING=y |
1005 | # CONFIG_XFS_FS is not set | 1041 | # CONFIG_XFS_FS is not set |
1006 | # CONFIG_OCFS2_FS is not set | 1042 | # CONFIG_OCFS2_FS is not set |
1043 | # CONFIG_BTRFS_FS is not set | ||
1007 | CONFIG_DNOTIFY=y | 1044 | CONFIG_DNOTIFY=y |
1008 | CONFIG_INOTIFY=y | 1045 | CONFIG_INOTIFY=y |
1009 | CONFIG_INOTIFY_USER=y | 1046 | CONFIG_INOTIFY_USER=y |
@@ -1037,10 +1074,7 @@ CONFIG_TMPFS=y | |||
1037 | # CONFIG_TMPFS_POSIX_ACL is not set | 1074 | # CONFIG_TMPFS_POSIX_ACL is not set |
1038 | # CONFIG_HUGETLB_PAGE is not set | 1075 | # CONFIG_HUGETLB_PAGE is not set |
1039 | # CONFIG_CONFIGFS_FS is not set | 1076 | # CONFIG_CONFIGFS_FS is not set |
1040 | 1077 | CONFIG_MISC_FILESYSTEMS=y | |
1041 | # | ||
1042 | # Miscellaneous filesystems | ||
1043 | # | ||
1044 | # CONFIG_ADFS_FS is not set | 1078 | # CONFIG_ADFS_FS is not set |
1045 | # CONFIG_AFFS_FS is not set | 1079 | # CONFIG_AFFS_FS is not set |
1046 | # CONFIG_HFS_FS is not set | 1080 | # CONFIG_HFS_FS is not set |
@@ -1060,6 +1094,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1060 | CONFIG_JFFS2_RTIME=y | 1094 | CONFIG_JFFS2_RTIME=y |
1061 | # CONFIG_JFFS2_RUBIN is not set | 1095 | # CONFIG_JFFS2_RUBIN is not set |
1062 | CONFIG_CRAMFS=y | 1096 | CONFIG_CRAMFS=y |
1097 | # CONFIG_SQUASHFS is not set | ||
1063 | # CONFIG_VXFS_FS is not set | 1098 | # CONFIG_VXFS_FS is not set |
1064 | # CONFIG_MINIX_FS is not set | 1099 | # CONFIG_MINIX_FS is not set |
1065 | # CONFIG_OMFS_FS is not set | 1100 | # CONFIG_OMFS_FS is not set |
@@ -1110,6 +1145,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1110 | # Library routines | 1145 | # Library routines |
1111 | # | 1146 | # |
1112 | CONFIG_BITREVERSE=y | 1147 | CONFIG_BITREVERSE=y |
1148 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1113 | # CONFIG_CRC_CCITT is not set | 1149 | # CONFIG_CRC_CCITT is not set |
1114 | # CONFIG_CRC16 is not set | 1150 | # CONFIG_CRC16 is not set |
1115 | # CONFIG_CRC_T10DIF is not set | 1151 | # CONFIG_CRC_T10DIF is not set |
@@ -1145,6 +1181,8 @@ CONFIG_FRAME_WARN=1024 | |||
1145 | # CONFIG_LATENCYTOP is not set | 1181 | # CONFIG_LATENCYTOP is not set |
1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1147 | CONFIG_HAVE_FUNCTION_TRACER=y | 1183 | CONFIG_HAVE_FUNCTION_TRACER=y |
1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1148 | 1186 | ||
1149 | # | 1187 | # |
1150 | # Tracers | 1188 | # Tracers |
@@ -1152,6 +1190,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1152 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1153 | # CONFIG_SAMPLES is not set | 1191 | # CONFIG_SAMPLES is not set |
1154 | CONFIG_HAVE_ARCH_KGDB=y | 1192 | CONFIG_HAVE_ARCH_KGDB=y |
1193 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1155 | # CONFIG_IRQSTACKS is not set | 1194 | # CONFIG_IRQSTACKS is not set |
1156 | # CONFIG_PPC_EARLY_DEBUG is not set | 1195 | # CONFIG_PPC_EARLY_DEBUG is not set |
1157 | 1196 | ||
@@ -1169,6 +1208,7 @@ CONFIG_CRYPTO=y | |||
1169 | # | 1208 | # |
1170 | # CONFIG_CRYPTO_FIPS is not set | 1209 | # CONFIG_CRYPTO_FIPS is not set |
1171 | # CONFIG_CRYPTO_MANAGER is not set | 1210 | # CONFIG_CRYPTO_MANAGER is not set |
1211 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1172 | # CONFIG_CRYPTO_GF128MUL is not set | 1212 | # CONFIG_CRYPTO_GF128MUL is not set |
1173 | # CONFIG_CRYPTO_NULL is not set | 1213 | # CONFIG_CRYPTO_NULL is not set |
1174 | # CONFIG_CRYPTO_CRYPTD is not set | 1214 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8560_defconfig b/arch/powerpc/configs/85xx/tqm8560_defconfig index 56ed4213609c..a25009174f37 100644 --- a/arch/powerpc/configs/85xx/tqm8560_defconfig +++ b/arch/powerpc/configs/85xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:25 2008 | 4 | # Mon Jan 26 15:36:22 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -76,12 +78,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -114,7 +116,6 @@ CONFIG_SLUB_DEBUG=y | |||
114 | CONFIG_SLUB=y | 116 | CONFIG_SLUB=y |
115 | # CONFIG_SLOB is not set | 117 | # CONFIG_SLOB is not set |
116 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
117 | # CONFIG_MARKERS is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
120 | CONFIG_HAVE_IOREMAP_PROT=y | 121 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -125,13 +126,11 @@ CONFIG_HAVE_CLK=y | |||
125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
126 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
127 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
128 | # CONFIG_TINY_SHMEM is not set | ||
129 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
130 | # CONFIG_MODULES is not set | 130 | # CONFIG_MODULES is not set |
131 | CONFIG_BLOCK=y | 131 | CONFIG_BLOCK=y |
132 | # CONFIG_LBD is not set | 132 | # CONFIG_LBD is not set |
133 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
134 | # CONFIG_LSF is not set | ||
135 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 135 | # CONFIG_BLK_DEV_INTEGRITY is not set |
137 | 136 | ||
@@ -148,6 +147,10 @@ CONFIG_DEFAULT_AS=y | |||
148 | # CONFIG_DEFAULT_NOOP is not set | 147 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
150 | CONFIG_CLASSIC_RCU=y | 149 | CONFIG_CLASSIC_RCU=y |
150 | # CONFIG_TREE_RCU is not set | ||
151 | # CONFIG_PREEMPT_RCU is not set | ||
152 | # CONFIG_TREE_RCU_TRACE is not set | ||
153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
151 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
152 | 155 | ||
153 | # | 156 | # |
@@ -189,6 +192,7 @@ CONFIG_CPM2=y | |||
189 | # CONFIG_FSL_ULI1575 is not set | 192 | # CONFIG_FSL_ULI1575 is not set |
190 | CONFIG_CPM=y | 193 | CONFIG_CPM=y |
191 | # CONFIG_MPC8xxx_GPIO is not set | 194 | # CONFIG_MPC8xxx_GPIO is not set |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
192 | 196 | ||
193 | # | 197 | # |
194 | # Kernel options | 198 | # Kernel options |
@@ -226,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
226 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
228 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
229 | # CONFIG_RESOURCES_64BIT is not set | ||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
232 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
236 | # CONFIG_PROC_DEVICETREE is not set | 242 | # CONFIG_PROC_DEVICETREE is not set |
237 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
255 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
256 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
257 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_HAS_RAPIDIO is not set | 265 | # CONFIG_HAS_RAPIDIO is not set |
259 | 266 | ||
260 | # | 267 | # |
@@ -276,6 +283,7 @@ CONFIG_NET=y | |||
276 | # | 283 | # |
277 | # Networking options | 284 | # Networking options |
278 | # | 285 | # |
286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
279 | CONFIG_PACKET=y | 287 | CONFIG_PACKET=y |
280 | # CONFIG_PACKET_MMAP is not set | 288 | # CONFIG_PACKET_MMAP is not set |
281 | CONFIG_UNIX=y | 289 | CONFIG_UNIX=y |
@@ -332,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_ECONET is not set | 340 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 341 | # CONFIG_WAN_ROUTER is not set |
334 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
343 | # CONFIG_DCB is not set | ||
335 | 344 | ||
336 | # | 345 | # |
337 | # Network testing | 346 | # Network testing |
@@ -347,8 +356,9 @@ CONFIG_WIRELESS=y | |||
347 | # CONFIG_CFG80211 is not set | 356 | # CONFIG_CFG80211 is not set |
348 | CONFIG_WIRELESS_OLD_REGULATORY=y | 357 | CONFIG_WIRELESS_OLD_REGULATORY=y |
349 | # CONFIG_WIRELESS_EXT is not set | 358 | # CONFIG_WIRELESS_EXT is not set |
359 | # CONFIG_LIB80211 is not set | ||
350 | # CONFIG_MAC80211 is not set | 360 | # CONFIG_MAC80211 is not set |
351 | # CONFIG_IEEE80211 is not set | 361 | # CONFIG_WIMAX is not set |
352 | # CONFIG_RFKILL is not set | 362 | # CONFIG_RFKILL is not set |
353 | # CONFIG_NET_9P is not set | 363 | # CONFIG_NET_9P is not set |
354 | 364 | ||
@@ -438,6 +448,12 @@ CONFIG_MTD_CFI_UTIL=y | |||
438 | # CONFIG_MTD_ONENAND is not set | 448 | # CONFIG_MTD_ONENAND is not set |
439 | 449 | ||
440 | # | 450 | # |
451 | # LPDDR flash memory drivers | ||
452 | # | ||
453 | # CONFIG_MTD_LPDDR is not set | ||
454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
455 | |||
456 | # | ||
441 | # UBI - Unsorted block images | 457 | # UBI - Unsorted block images |
442 | # | 458 | # |
443 | # CONFIG_MTD_UBI is not set | 459 | # CONFIG_MTD_UBI is not set |
@@ -468,8 +484,10 @@ CONFIG_MISC_DEVICES=y | |||
468 | # CONFIG_EEPROM_93CX6 is not set | 484 | # CONFIG_EEPROM_93CX6 is not set |
469 | # CONFIG_SGI_IOC4 is not set | 485 | # CONFIG_SGI_IOC4 is not set |
470 | # CONFIG_TIFM_CORE is not set | 486 | # CONFIG_TIFM_CORE is not set |
487 | # CONFIG_ICS932S401 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 488 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 489 | # CONFIG_HP_ILO is not set |
490 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 491 | CONFIG_HAVE_IDE=y |
474 | CONFIG_IDE=y | 492 | CONFIG_IDE=y |
475 | 493 | ||
@@ -512,6 +530,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
512 | # CONFIG_BLK_DEV_JMICRON is not set | 530 | # CONFIG_BLK_DEV_JMICRON is not set |
513 | # CONFIG_BLK_DEV_SC1200 is not set | 531 | # CONFIG_BLK_DEV_SC1200 is not set |
514 | # CONFIG_BLK_DEV_PIIX is not set | 532 | # CONFIG_BLK_DEV_PIIX is not set |
533 | # CONFIG_BLK_DEV_IT8172 is not set | ||
515 | # CONFIG_BLK_DEV_IT8213 is not set | 534 | # CONFIG_BLK_DEV_IT8213 is not set |
516 | # CONFIG_BLK_DEV_IT821X is not set | 535 | # CONFIG_BLK_DEV_IT821X is not set |
517 | # CONFIG_BLK_DEV_NS87415 is not set | 536 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -571,6 +590,9 @@ CONFIG_PHYLIB=y | |||
571 | # CONFIG_BROADCOM_PHY is not set | 590 | # CONFIG_BROADCOM_PHY is not set |
572 | # CONFIG_ICPLUS_PHY is not set | 591 | # CONFIG_ICPLUS_PHY is not set |
573 | # CONFIG_REALTEK_PHY is not set | 592 | # CONFIG_REALTEK_PHY is not set |
593 | # CONFIG_NATIONAL_PHY is not set | ||
594 | # CONFIG_STE10XP is not set | ||
595 | # CONFIG_LSI_ET1011C_PHY is not set | ||
574 | # CONFIG_FIXED_PHY is not set | 596 | # CONFIG_FIXED_PHY is not set |
575 | # CONFIG_MDIO_BITBANG is not set | 597 | # CONFIG_MDIO_BITBANG is not set |
576 | CONFIG_NET_ETHERNET=y | 598 | CONFIG_NET_ETHERNET=y |
@@ -594,7 +616,6 @@ CONFIG_NET_PCI=y | |||
594 | # CONFIG_ADAPTEC_STARFIRE is not set | 616 | # CONFIG_ADAPTEC_STARFIRE is not set |
595 | # CONFIG_B44 is not set | 617 | # CONFIG_B44 is not set |
596 | # CONFIG_FORCEDETH is not set | 618 | # CONFIG_FORCEDETH is not set |
597 | # CONFIG_EEPRO100 is not set | ||
598 | CONFIG_E100=y | 619 | CONFIG_E100=y |
599 | # CONFIG_FEALNX is not set | 620 | # CONFIG_FEALNX is not set |
600 | # CONFIG_NATSEMI is not set | 621 | # CONFIG_NATSEMI is not set |
@@ -604,6 +625,7 @@ CONFIG_E100=y | |||
604 | # CONFIG_R6040 is not set | 625 | # CONFIG_R6040 is not set |
605 | # CONFIG_SIS900 is not set | 626 | # CONFIG_SIS900 is not set |
606 | # CONFIG_EPIC100 is not set | 627 | # CONFIG_EPIC100 is not set |
628 | # CONFIG_SMSC9420 is not set | ||
607 | # CONFIG_SUNDANCE is not set | 629 | # CONFIG_SUNDANCE is not set |
608 | # CONFIG_TLAN is not set | 630 | # CONFIG_TLAN is not set |
609 | # CONFIG_VIA_RHINE is not set | 631 | # CONFIG_VIA_RHINE is not set |
@@ -634,6 +656,7 @@ CONFIG_GIANFAR=y | |||
634 | # CONFIG_JME is not set | 656 | # CONFIG_JME is not set |
635 | CONFIG_NETDEV_10000=y | 657 | CONFIG_NETDEV_10000=y |
636 | # CONFIG_CHELSIO_T1 is not set | 658 | # CONFIG_CHELSIO_T1 is not set |
659 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
637 | # CONFIG_CHELSIO_T3 is not set | 660 | # CONFIG_CHELSIO_T3 is not set |
638 | # CONFIG_ENIC is not set | 661 | # CONFIG_ENIC is not set |
639 | # CONFIG_IXGBE is not set | 662 | # CONFIG_IXGBE is not set |
@@ -656,6 +679,10 @@ CONFIG_NETDEV_10000=y | |||
656 | # CONFIG_WLAN_PRE80211 is not set | 679 | # CONFIG_WLAN_PRE80211 is not set |
657 | # CONFIG_WLAN_80211 is not set | 680 | # CONFIG_WLAN_80211 is not set |
658 | # CONFIG_IWLWIFI_LEDS is not set | 681 | # CONFIG_IWLWIFI_LEDS is not set |
682 | |||
683 | # | ||
684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
685 | # | ||
659 | # CONFIG_WAN is not set | 686 | # CONFIG_WAN is not set |
660 | # CONFIG_FDDI is not set | 687 | # CONFIG_FDDI is not set |
661 | # CONFIG_HIPPI is not set | 688 | # CONFIG_HIPPI is not set |
@@ -728,8 +755,10 @@ CONFIG_SERIAL_CPM_CONSOLE=y | |||
728 | # CONFIG_SERIAL_JSM is not set | 755 | # CONFIG_SERIAL_JSM is not set |
729 | # CONFIG_SERIAL_OF_PLATFORM is not set | 756 | # CONFIG_SERIAL_OF_PLATFORM is not set |
730 | CONFIG_UNIX98_PTYS=y | 757 | CONFIG_UNIX98_PTYS=y |
758 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
731 | CONFIG_LEGACY_PTYS=y | 759 | CONFIG_LEGACY_PTYS=y |
732 | CONFIG_LEGACY_PTY_COUNT=256 | 760 | CONFIG_LEGACY_PTY_COUNT=256 |
761 | # CONFIG_HVC_UDBG is not set | ||
733 | # CONFIG_IPMI_HANDLER is not set | 762 | # CONFIG_IPMI_HANDLER is not set |
734 | CONFIG_HW_RANDOM=y | 763 | CONFIG_HW_RANDOM=y |
735 | # CONFIG_NVRAM is not set | 764 | # CONFIG_NVRAM is not set |
@@ -802,7 +831,6 @@ CONFIG_I2C_MPC=y | |||
802 | # CONFIG_PCF8575 is not set | 831 | # CONFIG_PCF8575 is not set |
803 | # CONFIG_SENSORS_PCA9539 is not set | 832 | # CONFIG_SENSORS_PCA9539 is not set |
804 | # CONFIG_SENSORS_PCF8591 is not set | 833 | # CONFIG_SENSORS_PCF8591 is not set |
805 | # CONFIG_TPS65010 is not set | ||
806 | # CONFIG_SENSORS_MAX6875 is not set | 834 | # CONFIG_SENSORS_MAX6875 is not set |
807 | # CONFIG_SENSORS_TSL2550 is not set | 835 | # CONFIG_SENSORS_TSL2550 is not set |
808 | # CONFIG_I2C_DEBUG_CORE is not set | 836 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -816,6 +844,11 @@ CONFIG_GPIOLIB=y | |||
816 | # CONFIG_GPIO_SYSFS is not set | 844 | # CONFIG_GPIO_SYSFS is not set |
817 | 845 | ||
818 | # | 846 | # |
847 | # Memory mapped GPIO expanders: | ||
848 | # | ||
849 | # CONFIG_GPIO_XILINX is not set | ||
850 | |||
851 | # | ||
819 | # I2C GPIO expanders: | 852 | # I2C GPIO expanders: |
820 | # | 853 | # |
821 | # CONFIG_GPIO_MAX732X is not set | 854 | # CONFIG_GPIO_MAX732X is not set |
@@ -842,8 +875,10 @@ CONFIG_HWMON=y | |||
842 | # CONFIG_SENSORS_ADM1029 is not set | 875 | # CONFIG_SENSORS_ADM1029 is not set |
843 | # CONFIG_SENSORS_ADM1031 is not set | 876 | # CONFIG_SENSORS_ADM1031 is not set |
844 | # CONFIG_SENSORS_ADM9240 is not set | 877 | # CONFIG_SENSORS_ADM9240 is not set |
878 | # CONFIG_SENSORS_ADT7462 is not set | ||
845 | # CONFIG_SENSORS_ADT7470 is not set | 879 | # CONFIG_SENSORS_ADT7470 is not set |
846 | # CONFIG_SENSORS_ADT7473 is not set | 880 | # CONFIG_SENSORS_ADT7473 is not set |
881 | # CONFIG_SENSORS_ADT7475 is not set | ||
847 | # CONFIG_SENSORS_ATXP1 is not set | 882 | # CONFIG_SENSORS_ATXP1 is not set |
848 | # CONFIG_SENSORS_DS1621 is not set | 883 | # CONFIG_SENSORS_DS1621 is not set |
849 | # CONFIG_SENSORS_I5K_AMB is not set | 884 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -864,6 +899,7 @@ CONFIG_SENSORS_LM75=y | |||
864 | # CONFIG_SENSORS_LM90 is not set | 899 | # CONFIG_SENSORS_LM90 is not set |
865 | # CONFIG_SENSORS_LM92 is not set | 900 | # CONFIG_SENSORS_LM92 is not set |
866 | # CONFIG_SENSORS_LM93 is not set | 901 | # CONFIG_SENSORS_LM93 is not set |
902 | # CONFIG_SENSORS_LTC4245 is not set | ||
867 | # CONFIG_SENSORS_MAX1619 is not set | 903 | # CONFIG_SENSORS_MAX1619 is not set |
868 | # CONFIG_SENSORS_MAX6650 is not set | 904 | # CONFIG_SENSORS_MAX6650 is not set |
869 | # CONFIG_SENSORS_PC87360 is not set | 905 | # CONFIG_SENSORS_PC87360 is not set |
@@ -890,11 +926,11 @@ CONFIG_HWMON_DEBUG_CHIP=y | |||
890 | # CONFIG_THERMAL is not set | 926 | # CONFIG_THERMAL is not set |
891 | # CONFIG_THERMAL_HWMON is not set | 927 | # CONFIG_THERMAL_HWMON is not set |
892 | # CONFIG_WATCHDOG is not set | 928 | # CONFIG_WATCHDOG is not set |
929 | CONFIG_SSB_POSSIBLE=y | ||
893 | 930 | ||
894 | # | 931 | # |
895 | # Sonics Silicon Backplane | 932 | # Sonics Silicon Backplane |
896 | # | 933 | # |
897 | CONFIG_SSB_POSSIBLE=y | ||
898 | # CONFIG_SSB is not set | 934 | # CONFIG_SSB is not set |
899 | 935 | ||
900 | # | 936 | # |
@@ -903,18 +939,14 @@ CONFIG_SSB_POSSIBLE=y | |||
903 | # CONFIG_MFD_CORE is not set | 939 | # CONFIG_MFD_CORE is not set |
904 | # CONFIG_MFD_SM501 is not set | 940 | # CONFIG_MFD_SM501 is not set |
905 | # CONFIG_HTC_PASIC3 is not set | 941 | # CONFIG_HTC_PASIC3 is not set |
942 | # CONFIG_TPS65010 is not set | ||
943 | # CONFIG_TWL4030_CORE is not set | ||
906 | # CONFIG_MFD_TMIO is not set | 944 | # CONFIG_MFD_TMIO is not set |
907 | # CONFIG_PMIC_DA903X is not set | 945 | # CONFIG_PMIC_DA903X is not set |
908 | # CONFIG_MFD_WM8400 is not set | 946 | # CONFIG_MFD_WM8400 is not set |
909 | # CONFIG_MFD_WM8350_I2C is not set | 947 | # CONFIG_MFD_WM8350_I2C is not set |
910 | 948 | # CONFIG_MFD_PCF50633 is not set | |
911 | # | ||
912 | # Voltage and Current regulators | ||
913 | # | ||
914 | # CONFIG_REGULATOR is not set | 949 | # CONFIG_REGULATOR is not set |
915 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
916 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
917 | # CONFIG_REGULATOR_BQ24022 is not set | ||
918 | 950 | ||
919 | # | 951 | # |
920 | # Multimedia devices | 952 | # Multimedia devices |
@@ -970,9 +1002,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
970 | # | 1002 | # |
971 | 1003 | ||
972 | # | 1004 | # |
973 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
974 | # | 1006 | # |
975 | # CONFIG_USB_GADGET is not set | 1007 | # CONFIG_USB_GADGET is not set |
1008 | |||
1009 | # | ||
1010 | # OTG and related infrastructure | ||
1011 | # | ||
976 | # CONFIG_UWB is not set | 1012 | # CONFIG_UWB is not set |
977 | # CONFIG_MMC is not set | 1013 | # CONFIG_MMC is not set |
978 | # CONFIG_MEMSTICK is not set | 1014 | # CONFIG_MEMSTICK is not set |
@@ -1004,6 +1040,7 @@ CONFIG_FS_MBCACHE=y | |||
1004 | CONFIG_FILE_LOCKING=y | 1040 | CONFIG_FILE_LOCKING=y |
1005 | # CONFIG_XFS_FS is not set | 1041 | # CONFIG_XFS_FS is not set |
1006 | # CONFIG_OCFS2_FS is not set | 1042 | # CONFIG_OCFS2_FS is not set |
1043 | # CONFIG_BTRFS_FS is not set | ||
1007 | CONFIG_DNOTIFY=y | 1044 | CONFIG_DNOTIFY=y |
1008 | CONFIG_INOTIFY=y | 1045 | CONFIG_INOTIFY=y |
1009 | CONFIG_INOTIFY_USER=y | 1046 | CONFIG_INOTIFY_USER=y |
@@ -1037,10 +1074,7 @@ CONFIG_TMPFS=y | |||
1037 | # CONFIG_TMPFS_POSIX_ACL is not set | 1074 | # CONFIG_TMPFS_POSIX_ACL is not set |
1038 | # CONFIG_HUGETLB_PAGE is not set | 1075 | # CONFIG_HUGETLB_PAGE is not set |
1039 | # CONFIG_CONFIGFS_FS is not set | 1076 | # CONFIG_CONFIGFS_FS is not set |
1040 | 1077 | CONFIG_MISC_FILESYSTEMS=y | |
1041 | # | ||
1042 | # Miscellaneous filesystems | ||
1043 | # | ||
1044 | # CONFIG_ADFS_FS is not set | 1078 | # CONFIG_ADFS_FS is not set |
1045 | # CONFIG_AFFS_FS is not set | 1079 | # CONFIG_AFFS_FS is not set |
1046 | # CONFIG_HFS_FS is not set | 1080 | # CONFIG_HFS_FS is not set |
@@ -1060,6 +1094,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1060 | CONFIG_JFFS2_RTIME=y | 1094 | CONFIG_JFFS2_RTIME=y |
1061 | # CONFIG_JFFS2_RUBIN is not set | 1095 | # CONFIG_JFFS2_RUBIN is not set |
1062 | CONFIG_CRAMFS=y | 1096 | CONFIG_CRAMFS=y |
1097 | # CONFIG_SQUASHFS is not set | ||
1063 | # CONFIG_VXFS_FS is not set | 1098 | # CONFIG_VXFS_FS is not set |
1064 | # CONFIG_MINIX_FS is not set | 1099 | # CONFIG_MINIX_FS is not set |
1065 | # CONFIG_OMFS_FS is not set | 1100 | # CONFIG_OMFS_FS is not set |
@@ -1110,6 +1145,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
1110 | # Library routines | 1145 | # Library routines |
1111 | # | 1146 | # |
1112 | CONFIG_BITREVERSE=y | 1147 | CONFIG_BITREVERSE=y |
1148 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1113 | # CONFIG_CRC_CCITT is not set | 1149 | # CONFIG_CRC_CCITT is not set |
1114 | # CONFIG_CRC16 is not set | 1150 | # CONFIG_CRC16 is not set |
1115 | # CONFIG_CRC_T10DIF is not set | 1151 | # CONFIG_CRC_T10DIF is not set |
@@ -1145,6 +1181,8 @@ CONFIG_FRAME_WARN=1024 | |||
1145 | # CONFIG_LATENCYTOP is not set | 1181 | # CONFIG_LATENCYTOP is not set |
1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1147 | CONFIG_HAVE_FUNCTION_TRACER=y | 1183 | CONFIG_HAVE_FUNCTION_TRACER=y |
1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1148 | 1186 | ||
1149 | # | 1187 | # |
1150 | # Tracers | 1188 | # Tracers |
@@ -1152,6 +1190,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1152 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1153 | # CONFIG_SAMPLES is not set | 1191 | # CONFIG_SAMPLES is not set |
1154 | CONFIG_HAVE_ARCH_KGDB=y | 1192 | CONFIG_HAVE_ARCH_KGDB=y |
1193 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1155 | # CONFIG_IRQSTACKS is not set | 1194 | # CONFIG_IRQSTACKS is not set |
1156 | # CONFIG_PPC_EARLY_DEBUG is not set | 1195 | # CONFIG_PPC_EARLY_DEBUG is not set |
1157 | 1196 | ||
@@ -1169,6 +1208,7 @@ CONFIG_CRYPTO=y | |||
1169 | # | 1208 | # |
1170 | # CONFIG_CRYPTO_FIPS is not set | 1209 | # CONFIG_CRYPTO_FIPS is not set |
1171 | # CONFIG_CRYPTO_MANAGER is not set | 1210 | # CONFIG_CRYPTO_MANAGER is not set |
1211 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1172 | # CONFIG_CRYPTO_GF128MUL is not set | 1212 | # CONFIG_CRYPTO_GF128MUL is not set |
1173 | # CONFIG_CRYPTO_NULL is not set | 1213 | # CONFIG_CRYPTO_NULL is not set |
1174 | # CONFIG_CRYPTO_CRYPTD is not set | 1214 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/86xx/gef_sbc610_defconfig b/arch/powerpc/configs/86xx/gef_sbc610_defconfig index 840b09a07282..1ab5abae00a2 100644 --- a/arch/powerpc/configs/86xx/gef_sbc610_defconfig +++ b/arch/powerpc/configs/86xx/gef_sbc610_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:30 2008 | 4 | # Mon Jan 26 15:36:26 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -42,11 +42,12 @@ CONFIG_ARCH_HAS_ILOG2_U32=y | |||
42 | CONFIG_GENERIC_HWEIGHT=y | 42 | CONFIG_GENERIC_HWEIGHT=y |
43 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 43 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
44 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 44 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
45 | CONFIG_GENERIC_GPIO=y | ||
45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 46 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
46 | CONFIG_PPC=y | 47 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 48 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 49 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 52 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 53 | CONFIG_OF=y |
@@ -78,12 +79,12 @@ CONFIG_BSD_PROCESS_ACCT_V3=y | |||
78 | CONFIG_IKCONFIG=y | 79 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 80 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 81 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 82 | CONFIG_GROUP_SCHED=y |
83 | CONFIG_FAIR_GROUP_SCHED=y | 83 | CONFIG_FAIR_GROUP_SCHED=y |
84 | # CONFIG_RT_GROUP_SCHED is not set | 84 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 85 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 86 | # CONFIG_CGROUP_SCHED is not set |
87 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 88 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 89 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | CONFIG_RELAY=y | 90 | CONFIG_RELAY=y |
@@ -117,7 +118,6 @@ CONFIG_SLAB=y | |||
117 | # CONFIG_SLUB is not set | 118 | # CONFIG_SLUB is not set |
118 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
119 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
120 | # CONFIG_MARKERS is not set | ||
121 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
122 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +129,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 132 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 133 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 134 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,12 +136,10 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
138 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_STOP_MACHINE=y | 139 | CONFIG_STOP_MACHINE=y |
142 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
143 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
144 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
145 | # CONFIG_LSF is not set | ||
146 | # CONFIG_BLK_DEV_BSG is not set | 143 | # CONFIG_BLK_DEV_BSG is not set |
147 | # CONFIG_BLK_DEV_INTEGRITY is not set | 144 | # CONFIG_BLK_DEV_INTEGRITY is not set |
148 | 145 | ||
@@ -159,6 +156,10 @@ CONFIG_DEFAULT_CFQ=y | |||
159 | # CONFIG_DEFAULT_NOOP is not set | 156 | # CONFIG_DEFAULT_NOOP is not set |
160 | CONFIG_DEFAULT_IOSCHED="cfq" | 157 | CONFIG_DEFAULT_IOSCHED="cfq" |
161 | CONFIG_CLASSIC_RCU=y | 158 | CONFIG_CLASSIC_RCU=y |
159 | # CONFIG_TREE_RCU is not set | ||
160 | # CONFIG_PREEMPT_RCU is not set | ||
161 | # CONFIG_TREE_RCU_TRACE is not set | ||
162 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
162 | # CONFIG_FREEZER is not set | 163 | # CONFIG_FREEZER is not set |
163 | 164 | ||
164 | # | 165 | # |
@@ -197,6 +198,7 @@ CONFIG_MPIC=y | |||
197 | # CONFIG_QUICC_ENGINE is not set | 198 | # CONFIG_QUICC_ENGINE is not set |
198 | # CONFIG_FSL_ULI1575 is not set | 199 | # CONFIG_FSL_ULI1575 is not set |
199 | # CONFIG_MPC8xxx_GPIO is not set | 200 | # CONFIG_MPC8xxx_GPIO is not set |
201 | # CONFIG_SIMPLE_GPIO is not set | ||
200 | 202 | ||
201 | # | 203 | # |
202 | # Kernel options | 204 | # Kernel options |
@@ -215,7 +217,6 @@ CONFIG_SCHED_HRTICK=y | |||
215 | # CONFIG_PREEMPT_NONE is not set | 217 | # CONFIG_PREEMPT_NONE is not set |
216 | # CONFIG_PREEMPT_VOLUNTARY is not set | 218 | # CONFIG_PREEMPT_VOLUNTARY is not set |
217 | CONFIG_PREEMPT=y | 219 | CONFIG_PREEMPT=y |
218 | # CONFIG_PREEMPT_RCU is not set | ||
219 | CONFIG_BINFMT_ELF=y | 220 | CONFIG_BINFMT_ELF=y |
220 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 221 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
221 | # CONFIG_HAVE_AOUT is not set | 222 | # CONFIG_HAVE_AOUT is not set |
@@ -225,6 +226,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 226 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 228 | # CONFIG_KEXEC is not set |
229 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_IRQ_ALL_CPUS=y | 230 | CONFIG_IRQ_ALL_CPUS=y |
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 231 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 232 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -237,12 +239,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 239 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 241 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 242 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | # CONFIG_PROC_DEVICETREE is not set | 251 | # CONFIG_PROC_DEVICETREE is not set |
248 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -270,6 +274,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
270 | # CONFIG_PCI_MSI is not set | 274 | # CONFIG_PCI_MSI is not set |
271 | # CONFIG_PCI_LEGACY is not set | 275 | # CONFIG_PCI_LEGACY is not set |
272 | CONFIG_PCI_DEBUG=y | 276 | CONFIG_PCI_DEBUG=y |
277 | # CONFIG_PCI_STUB is not set | ||
273 | # CONFIG_PCCARD is not set | 278 | # CONFIG_PCCARD is not set |
274 | # CONFIG_HOTPLUG_PCI is not set | 279 | # CONFIG_HOTPLUG_PCI is not set |
275 | CONFIG_HAS_RAPIDIO=y | 280 | CONFIG_HAS_RAPIDIO=y |
@@ -293,6 +298,7 @@ CONFIG_NET=y | |||
293 | # | 298 | # |
294 | # Networking options | 299 | # Networking options |
295 | # | 300 | # |
301 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
296 | CONFIG_PACKET=y | 302 | CONFIG_PACKET=y |
297 | CONFIG_PACKET_MMAP=y | 303 | CONFIG_PACKET_MMAP=y |
298 | CONFIG_UNIX=y | 304 | CONFIG_UNIX=y |
@@ -502,6 +508,7 @@ CONFIG_NET_SCH_TBF=m | |||
502 | CONFIG_NET_SCH_GRED=m | 508 | CONFIG_NET_SCH_GRED=m |
503 | CONFIG_NET_SCH_DSMARK=m | 509 | CONFIG_NET_SCH_DSMARK=m |
504 | CONFIG_NET_SCH_NETEM=m | 510 | CONFIG_NET_SCH_NETEM=m |
511 | # CONFIG_NET_SCH_DRR is not set | ||
505 | 512 | ||
506 | # | 513 | # |
507 | # Classification | 514 | # Classification |
@@ -522,6 +529,7 @@ CONFIG_NET_CLS_RSVP6=m | |||
522 | # CONFIG_NET_CLS_ACT is not set | 529 | # CONFIG_NET_CLS_ACT is not set |
523 | # CONFIG_NET_CLS_IND is not set | 530 | # CONFIG_NET_CLS_IND is not set |
524 | CONFIG_NET_SCH_FIFO=y | 531 | CONFIG_NET_SCH_FIFO=y |
532 | # CONFIG_DCB is not set | ||
525 | 533 | ||
526 | # | 534 | # |
527 | # Network testing | 535 | # Network testing |
@@ -538,8 +546,9 @@ CONFIG_WIRELESS=y | |||
538 | # CONFIG_CFG80211 is not set | 546 | # CONFIG_CFG80211 is not set |
539 | CONFIG_WIRELESS_OLD_REGULATORY=y | 547 | CONFIG_WIRELESS_OLD_REGULATORY=y |
540 | # CONFIG_WIRELESS_EXT is not set | 548 | # CONFIG_WIRELESS_EXT is not set |
549 | # CONFIG_LIB80211 is not set | ||
541 | # CONFIG_MAC80211 is not set | 550 | # CONFIG_MAC80211 is not set |
542 | # CONFIG_IEEE80211 is not set | 551 | # CONFIG_WIMAX is not set |
543 | # CONFIG_RFKILL is not set | 552 | # CONFIG_RFKILL is not set |
544 | # CONFIG_NET_9P is not set | 553 | # CONFIG_NET_9P is not set |
545 | 554 | ||
@@ -562,6 +571,7 @@ CONFIG_MTD=y | |||
562 | # CONFIG_MTD_DEBUG is not set | 571 | # CONFIG_MTD_DEBUG is not set |
563 | CONFIG_MTD_CONCAT=y | 572 | CONFIG_MTD_CONCAT=y |
564 | CONFIG_MTD_PARTITIONS=y | 573 | CONFIG_MTD_PARTITIONS=y |
574 | # CONFIG_MTD_TESTS is not set | ||
565 | # CONFIG_MTD_REDBOOT_PARTS is not set | 575 | # CONFIG_MTD_REDBOOT_PARTS is not set |
566 | # CONFIG_MTD_CMDLINE_PARTS is not set | 576 | # CONFIG_MTD_CMDLINE_PARTS is not set |
567 | # CONFIG_MTD_OF_PARTS is not set | 577 | # CONFIG_MTD_OF_PARTS is not set |
@@ -638,10 +648,17 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
638 | # CONFIG_MTD_ONENAND is not set | 648 | # CONFIG_MTD_ONENAND is not set |
639 | 649 | ||
640 | # | 650 | # |
651 | # LPDDR flash memory drivers | ||
652 | # | ||
653 | # CONFIG_MTD_LPDDR is not set | ||
654 | # CONFIG_MTD_QINFO_PROBE is not set | ||
655 | |||
656 | # | ||
641 | # UBI - Unsorted block images | 657 | # UBI - Unsorted block images |
642 | # | 658 | # |
643 | # CONFIG_MTD_UBI is not set | 659 | # CONFIG_MTD_UBI is not set |
644 | CONFIG_OF_DEVICE=y | 660 | CONFIG_OF_DEVICE=y |
661 | CONFIG_OF_GPIO=y | ||
645 | CONFIG_OF_I2C=y | 662 | CONFIG_OF_I2C=y |
646 | # CONFIG_PARPORT is not set | 663 | # CONFIG_PARPORT is not set |
647 | CONFIG_BLK_DEV=y | 664 | CONFIG_BLK_DEV=y |
@@ -668,8 +685,10 @@ CONFIG_MISC_DEVICES=y | |||
668 | # CONFIG_EEPROM_93CX6 is not set | 685 | # CONFIG_EEPROM_93CX6 is not set |
669 | # CONFIG_SGI_IOC4 is not set | 686 | # CONFIG_SGI_IOC4 is not set |
670 | # CONFIG_TIFM_CORE is not set | 687 | # CONFIG_TIFM_CORE is not set |
688 | # CONFIG_ICS932S401 is not set | ||
671 | # CONFIG_ENCLOSURE_SERVICES is not set | 689 | # CONFIG_ENCLOSURE_SERVICES is not set |
672 | # CONFIG_HP_ILO is not set | 690 | # CONFIG_HP_ILO is not set |
691 | # CONFIG_C2PORT is not set | ||
673 | CONFIG_HAVE_IDE=y | 692 | CONFIG_HAVE_IDE=y |
674 | # CONFIG_IDE is not set | 693 | # CONFIG_IDE is not set |
675 | 694 | ||
@@ -729,6 +748,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
729 | # CONFIG_MEGARAID_SAS is not set | 748 | # CONFIG_MEGARAID_SAS is not set |
730 | # CONFIG_SCSI_HPTIOP is not set | 749 | # CONFIG_SCSI_HPTIOP is not set |
731 | # CONFIG_SCSI_BUSLOGIC is not set | 750 | # CONFIG_SCSI_BUSLOGIC is not set |
751 | # CONFIG_LIBFC is not set | ||
752 | # CONFIG_FCOE is not set | ||
732 | # CONFIG_SCSI_DMX3191D is not set | 753 | # CONFIG_SCSI_DMX3191D is not set |
733 | # CONFIG_SCSI_EATA is not set | 754 | # CONFIG_SCSI_EATA is not set |
734 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 755 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -848,6 +869,9 @@ CONFIG_PHYLIB=y | |||
848 | # CONFIG_BROADCOM_PHY is not set | 869 | # CONFIG_BROADCOM_PHY is not set |
849 | # CONFIG_ICPLUS_PHY is not set | 870 | # CONFIG_ICPLUS_PHY is not set |
850 | # CONFIG_REALTEK_PHY is not set | 871 | # CONFIG_REALTEK_PHY is not set |
872 | # CONFIG_NATIONAL_PHY is not set | ||
873 | # CONFIG_STE10XP is not set | ||
874 | # CONFIG_LSI_ET1011C_PHY is not set | ||
851 | # CONFIG_FIXED_PHY is not set | 875 | # CONFIG_FIXED_PHY is not set |
852 | # CONFIG_MDIO_BITBANG is not set | 876 | # CONFIG_MDIO_BITBANG is not set |
853 | CONFIG_NET_ETHERNET=y | 877 | CONFIG_NET_ETHERNET=y |
@@ -902,6 +926,10 @@ CONFIG_GIANFAR=y | |||
902 | # CONFIG_IWLWIFI_LEDS is not set | 926 | # CONFIG_IWLWIFI_LEDS is not set |
903 | 927 | ||
904 | # | 928 | # |
929 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
930 | # | ||
931 | |||
932 | # | ||
905 | # USB Network Adapters | 933 | # USB Network Adapters |
906 | # | 934 | # |
907 | # CONFIG_USB_CATC is not set | 935 | # CONFIG_USB_CATC is not set |
@@ -924,6 +952,7 @@ CONFIG_ATM_DRIVERS=y | |||
924 | # CONFIG_ATM_IA is not set | 952 | # CONFIG_ATM_IA is not set |
925 | # CONFIG_ATM_FORE200E is not set | 953 | # CONFIG_ATM_FORE200E is not set |
926 | # CONFIG_ATM_HE is not set | 954 | # CONFIG_ATM_HE is not set |
955 | # CONFIG_ATM_SOLOS is not set | ||
927 | # CONFIG_FDDI is not set | 956 | # CONFIG_FDDI is not set |
928 | # CONFIG_HIPPI is not set | 957 | # CONFIG_HIPPI is not set |
929 | CONFIG_PPP=m | 958 | CONFIG_PPP=m |
@@ -1016,7 +1045,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
1016 | # CONFIG_SERIAL_JSM is not set | 1045 | # CONFIG_SERIAL_JSM is not set |
1017 | # CONFIG_SERIAL_OF_PLATFORM is not set | 1046 | # CONFIG_SERIAL_OF_PLATFORM is not set |
1018 | CONFIG_UNIX98_PTYS=y | 1047 | CONFIG_UNIX98_PTYS=y |
1048 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
1019 | # CONFIG_LEGACY_PTYS is not set | 1049 | # CONFIG_LEGACY_PTYS is not set |
1050 | # CONFIG_HVC_UDBG is not set | ||
1020 | # CONFIG_IPMI_HANDLER is not set | 1051 | # CONFIG_IPMI_HANDLER is not set |
1021 | CONFIG_HW_RANDOM=y | 1052 | CONFIG_HW_RANDOM=y |
1022 | # CONFIG_NVRAM is not set | 1053 | # CONFIG_NVRAM is not set |
@@ -1055,6 +1086,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
1055 | # | 1086 | # |
1056 | # I2C system bus drivers (mostly embedded / system-on-chip) | 1087 | # I2C system bus drivers (mostly embedded / system-on-chip) |
1057 | # | 1088 | # |
1089 | # CONFIG_I2C_GPIO is not set | ||
1058 | CONFIG_I2C_MPC=y | 1090 | CONFIG_I2C_MPC=y |
1059 | # CONFIG_I2C_OCORES is not set | 1091 | # CONFIG_I2C_OCORES is not set |
1060 | # CONFIG_I2C_SIMTEC is not set | 1092 | # CONFIG_I2C_SIMTEC is not set |
@@ -1095,7 +1127,31 @@ CONFIG_DS1682=y | |||
1095 | # CONFIG_I2C_DEBUG_CHIP is not set | 1127 | # CONFIG_I2C_DEBUG_CHIP is not set |
1096 | # CONFIG_SPI is not set | 1128 | # CONFIG_SPI is not set |
1097 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 1129 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
1098 | # CONFIG_GPIOLIB is not set | 1130 | CONFIG_ARCH_REQUIRE_GPIOLIB=y |
1131 | CONFIG_GPIOLIB=y | ||
1132 | # CONFIG_DEBUG_GPIO is not set | ||
1133 | # CONFIG_GPIO_SYSFS is not set | ||
1134 | |||
1135 | # | ||
1136 | # Memory mapped GPIO expanders: | ||
1137 | # | ||
1138 | # CONFIG_GPIO_XILINX is not set | ||
1139 | |||
1140 | # | ||
1141 | # I2C GPIO expanders: | ||
1142 | # | ||
1143 | # CONFIG_GPIO_MAX732X is not set | ||
1144 | # CONFIG_GPIO_PCA953X is not set | ||
1145 | # CONFIG_GPIO_PCF857X is not set | ||
1146 | |||
1147 | # | ||
1148 | # PCI GPIO expanders: | ||
1149 | # | ||
1150 | # CONFIG_GPIO_BT8XX is not set | ||
1151 | |||
1152 | # | ||
1153 | # SPI GPIO expanders: | ||
1154 | # | ||
1099 | # CONFIG_W1 is not set | 1155 | # CONFIG_W1 is not set |
1100 | # CONFIG_POWER_SUPPLY is not set | 1156 | # CONFIG_POWER_SUPPLY is not set |
1101 | CONFIG_HWMON=y | 1157 | CONFIG_HWMON=y |
@@ -1108,8 +1164,10 @@ CONFIG_HWMON=y | |||
1108 | # CONFIG_SENSORS_ADM1029 is not set | 1164 | # CONFIG_SENSORS_ADM1029 is not set |
1109 | # CONFIG_SENSORS_ADM1031 is not set | 1165 | # CONFIG_SENSORS_ADM1031 is not set |
1110 | # CONFIG_SENSORS_ADM9240 is not set | 1166 | # CONFIG_SENSORS_ADM9240 is not set |
1167 | # CONFIG_SENSORS_ADT7462 is not set | ||
1111 | # CONFIG_SENSORS_ADT7470 is not set | 1168 | # CONFIG_SENSORS_ADT7470 is not set |
1112 | # CONFIG_SENSORS_ADT7473 is not set | 1169 | # CONFIG_SENSORS_ADT7473 is not set |
1170 | # CONFIG_SENSORS_ADT7475 is not set | ||
1113 | # CONFIG_SENSORS_ATXP1 is not set | 1171 | # CONFIG_SENSORS_ATXP1 is not set |
1114 | # CONFIG_SENSORS_DS1621 is not set | 1172 | # CONFIG_SENSORS_DS1621 is not set |
1115 | # CONFIG_SENSORS_I5K_AMB is not set | 1173 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -1130,6 +1188,7 @@ CONFIG_HWMON=y | |||
1130 | CONFIG_SENSORS_LM90=y | 1188 | CONFIG_SENSORS_LM90=y |
1131 | CONFIG_SENSORS_LM92=y | 1189 | CONFIG_SENSORS_LM92=y |
1132 | # CONFIG_SENSORS_LM93 is not set | 1190 | # CONFIG_SENSORS_LM93 is not set |
1191 | # CONFIG_SENSORS_LTC4245 is not set | ||
1133 | # CONFIG_SENSORS_MAX1619 is not set | 1192 | # CONFIG_SENSORS_MAX1619 is not set |
1134 | # CONFIG_SENSORS_MAX6650 is not set | 1193 | # CONFIG_SENSORS_MAX6650 is not set |
1135 | # CONFIG_SENSORS_PC87360 is not set | 1194 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1163,8 +1222,8 @@ CONFIG_WATCHDOG=y | |||
1163 | # | 1222 | # |
1164 | # CONFIG_SOFT_WATCHDOG is not set | 1223 | # CONFIG_SOFT_WATCHDOG is not set |
1165 | # CONFIG_ALIM7101_WDT is not set | 1224 | # CONFIG_ALIM7101_WDT is not set |
1166 | # CONFIG_8xxx_WDT is not set | ||
1167 | CONFIG_GEF_WDT=y | 1225 | CONFIG_GEF_WDT=y |
1226 | # CONFIG_8xxx_WDT is not set | ||
1168 | 1227 | ||
1169 | # | 1228 | # |
1170 | # PCI-based Watchdog Cards | 1229 | # PCI-based Watchdog Cards |
@@ -1176,11 +1235,11 @@ CONFIG_GEF_WDT=y | |||
1176 | # USB-based Watchdog Cards | 1235 | # USB-based Watchdog Cards |
1177 | # | 1236 | # |
1178 | # CONFIG_USBPCWATCHDOG is not set | 1237 | # CONFIG_USBPCWATCHDOG is not set |
1238 | CONFIG_SSB_POSSIBLE=y | ||
1179 | 1239 | ||
1180 | # | 1240 | # |
1181 | # Sonics Silicon Backplane | 1241 | # Sonics Silicon Backplane |
1182 | # | 1242 | # |
1183 | CONFIG_SSB_POSSIBLE=y | ||
1184 | # CONFIG_SSB is not set | 1243 | # CONFIG_SSB is not set |
1185 | 1244 | ||
1186 | # | 1245 | # |
@@ -1189,18 +1248,14 @@ CONFIG_SSB_POSSIBLE=y | |||
1189 | # CONFIG_MFD_CORE is not set | 1248 | # CONFIG_MFD_CORE is not set |
1190 | # CONFIG_MFD_SM501 is not set | 1249 | # CONFIG_MFD_SM501 is not set |
1191 | # CONFIG_HTC_PASIC3 is not set | 1250 | # CONFIG_HTC_PASIC3 is not set |
1251 | # CONFIG_TPS65010 is not set | ||
1252 | # CONFIG_TWL4030_CORE is not set | ||
1192 | # CONFIG_MFD_TMIO is not set | 1253 | # CONFIG_MFD_TMIO is not set |
1193 | # CONFIG_PMIC_DA903X is not set | 1254 | # CONFIG_PMIC_DA903X is not set |
1194 | # CONFIG_MFD_WM8400 is not set | 1255 | # CONFIG_MFD_WM8400 is not set |
1195 | # CONFIG_MFD_WM8350_I2C is not set | 1256 | # CONFIG_MFD_WM8350_I2C is not set |
1196 | 1257 | # CONFIG_MFD_PCF50633 is not set | |
1197 | # | ||
1198 | # Voltage and Current regulators | ||
1199 | # | ||
1200 | # CONFIG_REGULATOR is not set | 1258 | # CONFIG_REGULATOR is not set |
1201 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1202 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1203 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1204 | 1259 | ||
1205 | # | 1260 | # |
1206 | # Multimedia devices | 1261 | # Multimedia devices |
@@ -1260,11 +1315,9 @@ CONFIG_HID_COMPAT=y | |||
1260 | CONFIG_HID_A4TECH=y | 1315 | CONFIG_HID_A4TECH=y |
1261 | CONFIG_HID_APPLE=y | 1316 | CONFIG_HID_APPLE=y |
1262 | CONFIG_HID_BELKIN=y | 1317 | CONFIG_HID_BELKIN=y |
1263 | CONFIG_HID_BRIGHT=y | ||
1264 | CONFIG_HID_CHERRY=y | 1318 | CONFIG_HID_CHERRY=y |
1265 | CONFIG_HID_CHICONY=y | 1319 | CONFIG_HID_CHICONY=y |
1266 | CONFIG_HID_CYPRESS=y | 1320 | CONFIG_HID_CYPRESS=y |
1267 | CONFIG_HID_DELL=y | ||
1268 | CONFIG_HID_EZKEY=y | 1321 | CONFIG_HID_EZKEY=y |
1269 | CONFIG_HID_GYRATION=y | 1322 | CONFIG_HID_GYRATION=y |
1270 | CONFIG_HID_LOGITECH=y | 1323 | CONFIG_HID_LOGITECH=y |
@@ -1272,12 +1325,15 @@ CONFIG_HID_LOGITECH=y | |||
1272 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1325 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1273 | CONFIG_HID_MICROSOFT=y | 1326 | CONFIG_HID_MICROSOFT=y |
1274 | CONFIG_HID_MONTEREY=y | 1327 | CONFIG_HID_MONTEREY=y |
1328 | # CONFIG_HID_NTRIG is not set | ||
1275 | CONFIG_HID_PANTHERLORD=y | 1329 | CONFIG_HID_PANTHERLORD=y |
1276 | # CONFIG_PANTHERLORD_FF is not set | 1330 | # CONFIG_PANTHERLORD_FF is not set |
1277 | CONFIG_HID_PETALYNX=y | 1331 | CONFIG_HID_PETALYNX=y |
1278 | CONFIG_HID_SAMSUNG=y | 1332 | CONFIG_HID_SAMSUNG=y |
1279 | CONFIG_HID_SONY=y | 1333 | CONFIG_HID_SONY=y |
1280 | CONFIG_HID_SUNPLUS=y | 1334 | CONFIG_HID_SUNPLUS=y |
1335 | # CONFIG_GREENASIA_FF is not set | ||
1336 | # CONFIG_HID_TOPSEED is not set | ||
1281 | CONFIG_THRUSTMASTER_FF=m | 1337 | CONFIG_THRUSTMASTER_FF=m |
1282 | CONFIG_ZEROPLUS_FF=m | 1338 | CONFIG_ZEROPLUS_FF=m |
1283 | CONFIG_USB_SUPPORT=y | 1339 | CONFIG_USB_SUPPORT=y |
@@ -1310,6 +1366,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1310 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1366 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1311 | # CONFIG_USB_EHCI_FSL is not set | 1367 | # CONFIG_USB_EHCI_FSL is not set |
1312 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set | 1368 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set |
1369 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1313 | # CONFIG_USB_ISP116X_HCD is not set | 1370 | # CONFIG_USB_ISP116X_HCD is not set |
1314 | # CONFIG_USB_ISP1760_HCD is not set | 1371 | # CONFIG_USB_ISP1760_HCD is not set |
1315 | CONFIG_USB_OHCI_HCD=y | 1372 | CONFIG_USB_OHCI_HCD=y |
@@ -1332,18 +1389,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1332 | # CONFIG_USB_TMC is not set | 1389 | # CONFIG_USB_TMC is not set |
1333 | 1390 | ||
1334 | # | 1391 | # |
1335 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1392 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1336 | # | 1393 | # |
1337 | 1394 | ||
1338 | # | 1395 | # |
1339 | # may also be needed; see USB_STORAGE Help for more information | 1396 | # see USB_STORAGE Help for more information |
1340 | # | 1397 | # |
1341 | CONFIG_USB_STORAGE=y | 1398 | CONFIG_USB_STORAGE=y |
1342 | # CONFIG_USB_STORAGE_DEBUG is not set | 1399 | # CONFIG_USB_STORAGE_DEBUG is not set |
1343 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1400 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1344 | # CONFIG_USB_STORAGE_FREECOM is not set | 1401 | # CONFIG_USB_STORAGE_FREECOM is not set |
1345 | # CONFIG_USB_STORAGE_ISD200 is not set | 1402 | # CONFIG_USB_STORAGE_ISD200 is not set |
1346 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1347 | # CONFIG_USB_STORAGE_USBAT is not set | 1403 | # CONFIG_USB_STORAGE_USBAT is not set |
1348 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1404 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1349 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1405 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1391,6 +1447,11 @@ CONFIG_USB_STORAGE=y | |||
1391 | # CONFIG_USB_VST is not set | 1447 | # CONFIG_USB_VST is not set |
1392 | # CONFIG_USB_ATM is not set | 1448 | # CONFIG_USB_ATM is not set |
1393 | # CONFIG_USB_GADGET is not set | 1449 | # CONFIG_USB_GADGET is not set |
1450 | |||
1451 | # | ||
1452 | # OTG and related infrastructure | ||
1453 | # | ||
1454 | # CONFIG_USB_GPIO_VBUS is not set | ||
1394 | # CONFIG_UWB is not set | 1455 | # CONFIG_UWB is not set |
1395 | # CONFIG_MMC is not set | 1456 | # CONFIG_MMC is not set |
1396 | # CONFIG_MEMSTICK is not set | 1457 | # CONFIG_MEMSTICK is not set |
@@ -1478,6 +1539,7 @@ CONFIG_FS_POSIX_ACL=y | |||
1478 | CONFIG_FILE_LOCKING=y | 1539 | CONFIG_FILE_LOCKING=y |
1479 | # CONFIG_XFS_FS is not set | 1540 | # CONFIG_XFS_FS is not set |
1480 | # CONFIG_OCFS2_FS is not set | 1541 | # CONFIG_OCFS2_FS is not set |
1542 | # CONFIG_BTRFS_FS is not set | ||
1481 | CONFIG_DNOTIFY=y | 1543 | CONFIG_DNOTIFY=y |
1482 | CONFIG_INOTIFY=y | 1544 | CONFIG_INOTIFY=y |
1483 | CONFIG_INOTIFY_USER=y | 1545 | CONFIG_INOTIFY_USER=y |
@@ -1514,10 +1576,7 @@ CONFIG_TMPFS=y | |||
1514 | # CONFIG_TMPFS_POSIX_ACL is not set | 1576 | # CONFIG_TMPFS_POSIX_ACL is not set |
1515 | # CONFIG_HUGETLB_PAGE is not set | 1577 | # CONFIG_HUGETLB_PAGE is not set |
1516 | # CONFIG_CONFIGFS_FS is not set | 1578 | # CONFIG_CONFIGFS_FS is not set |
1517 | 1579 | CONFIG_MISC_FILESYSTEMS=y | |
1518 | # | ||
1519 | # Miscellaneous filesystems | ||
1520 | # | ||
1521 | # CONFIG_ADFS_FS is not set | 1580 | # CONFIG_ADFS_FS is not set |
1522 | # CONFIG_AFFS_FS is not set | 1581 | # CONFIG_AFFS_FS is not set |
1523 | # CONFIG_HFS_FS is not set | 1582 | # CONFIG_HFS_FS is not set |
@@ -1527,6 +1586,7 @@ CONFIG_TMPFS=y | |||
1527 | # CONFIG_EFS_FS is not set | 1586 | # CONFIG_EFS_FS is not set |
1528 | # CONFIG_JFFS2_FS is not set | 1587 | # CONFIG_JFFS2_FS is not set |
1529 | # CONFIG_CRAMFS is not set | 1588 | # CONFIG_CRAMFS is not set |
1589 | # CONFIG_SQUASHFS is not set | ||
1530 | # CONFIG_VXFS_FS is not set | 1590 | # CONFIG_VXFS_FS is not set |
1531 | # CONFIG_MINIX_FS is not set | 1591 | # CONFIG_MINIX_FS is not set |
1532 | # CONFIG_OMFS_FS is not set | 1592 | # CONFIG_OMFS_FS is not set |
@@ -1613,6 +1673,7 @@ CONFIG_NLS_UTF8=m | |||
1613 | # Library routines | 1673 | # Library routines |
1614 | # | 1674 | # |
1615 | CONFIG_BITREVERSE=y | 1675 | CONFIG_BITREVERSE=y |
1676 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1616 | CONFIG_CRC_CCITT=m | 1677 | CONFIG_CRC_CCITT=m |
1617 | # CONFIG_CRC16 is not set | 1678 | # CONFIG_CRC16 is not set |
1618 | # CONFIG_CRC_T10DIF is not set | 1679 | # CONFIG_CRC_T10DIF is not set |
@@ -1663,6 +1724,7 @@ CONFIG_DEBUG_INFO=y | |||
1663 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1724 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1664 | # CONFIG_DEBUG_LIST is not set | 1725 | # CONFIG_DEBUG_LIST is not set |
1665 | # CONFIG_DEBUG_SG is not set | 1726 | # CONFIG_DEBUG_SG is not set |
1727 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1666 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1728 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1667 | # CONFIG_RCU_TORTURE_TEST is not set | 1729 | # CONFIG_RCU_TORTURE_TEST is not set |
1668 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1730 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1672,6 +1734,8 @@ CONFIG_DEBUG_INFO=y | |||
1672 | # CONFIG_LATENCYTOP is not set | 1734 | # CONFIG_LATENCYTOP is not set |
1673 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1735 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1674 | CONFIG_HAVE_FUNCTION_TRACER=y | 1736 | CONFIG_HAVE_FUNCTION_TRACER=y |
1737 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1738 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1675 | 1739 | ||
1676 | # | 1740 | # |
1677 | # Tracers | 1741 | # Tracers |
@@ -1681,11 +1745,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1681 | # CONFIG_SCHED_TRACER is not set | 1745 | # CONFIG_SCHED_TRACER is not set |
1682 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1746 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1683 | # CONFIG_BOOT_TRACER is not set | 1747 | # CONFIG_BOOT_TRACER is not set |
1748 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1684 | # CONFIG_STACK_TRACER is not set | 1749 | # CONFIG_STACK_TRACER is not set |
1685 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1750 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1686 | # CONFIG_SAMPLES is not set | 1751 | # CONFIG_SAMPLES is not set |
1687 | CONFIG_HAVE_ARCH_KGDB=y | 1752 | CONFIG_HAVE_ARCH_KGDB=y |
1688 | # CONFIG_KGDB is not set | 1753 | # CONFIG_KGDB is not set |
1754 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1689 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1755 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1690 | # CONFIG_DEBUG_STACK_USAGE is not set | 1756 | # CONFIG_DEBUG_STACK_USAGE is not set |
1691 | # CONFIG_DEBUG_PAGEALLOC is not set | 1757 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1706,6 +1772,7 @@ CONFIG_SECURITY=y | |||
1706 | # CONFIG_SECURITYFS is not set | 1772 | # CONFIG_SECURITYFS is not set |
1707 | CONFIG_SECURITY_NETWORK=y | 1773 | CONFIG_SECURITY_NETWORK=y |
1708 | # CONFIG_SECURITY_NETWORK_XFRM is not set | 1774 | # CONFIG_SECURITY_NETWORK_XFRM is not set |
1775 | # CONFIG_SECURITY_PATH is not set | ||
1709 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1776 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1710 | # CONFIG_SECURITY_ROOTPLUG is not set | 1777 | # CONFIG_SECURITY_ROOTPLUG is not set |
1711 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1778 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
@@ -1716,11 +1783,16 @@ CONFIG_CRYPTO=y | |||
1716 | # | 1783 | # |
1717 | # CONFIG_CRYPTO_FIPS is not set | 1784 | # CONFIG_CRYPTO_FIPS is not set |
1718 | CONFIG_CRYPTO_ALGAPI=y | 1785 | CONFIG_CRYPTO_ALGAPI=y |
1719 | CONFIG_CRYPTO_AEAD=y | 1786 | CONFIG_CRYPTO_ALGAPI2=y |
1787 | CONFIG_CRYPTO_AEAD=m | ||
1788 | CONFIG_CRYPTO_AEAD2=y | ||
1720 | CONFIG_CRYPTO_BLKCIPHER=y | 1789 | CONFIG_CRYPTO_BLKCIPHER=y |
1790 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1721 | CONFIG_CRYPTO_HASH=y | 1791 | CONFIG_CRYPTO_HASH=y |
1722 | CONFIG_CRYPTO_RNG=y | 1792 | CONFIG_CRYPTO_HASH2=y |
1793 | CONFIG_CRYPTO_RNG2=y | ||
1723 | CONFIG_CRYPTO_MANAGER=y | 1794 | CONFIG_CRYPTO_MANAGER=y |
1795 | CONFIG_CRYPTO_MANAGER2=y | ||
1724 | # CONFIG_CRYPTO_GF128MUL is not set | 1796 | # CONFIG_CRYPTO_GF128MUL is not set |
1725 | CONFIG_CRYPTO_NULL=m | 1797 | CONFIG_CRYPTO_NULL=m |
1726 | # CONFIG_CRYPTO_CRYPTD is not set | 1798 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig b/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig index 25bf4e95acb8..bbdf4bfc4327 100644 --- a/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig +++ b/arch/powerpc/configs/86xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:28 2008 | 4 | # Mon Jan 26 15:36:24 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
75 | CONFIG_IKCONFIG=y | 75 | CONFIG_IKCONFIG=y |
76 | CONFIG_IKCONFIG_PROC=y | 76 | CONFIG_IKCONFIG_PROC=y |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -115,7 +115,6 @@ CONFIG_SLUB_DEBUG=y | |||
115 | CONFIG_SLUB=y | 115 | CONFIG_SLUB=y |
116 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +125,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 130 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +132,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 132 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 133 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
139 | # CONFIG_LBD is not set | 136 | # CONFIG_LBD is not set |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 137 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 140 | ||
@@ -155,6 +151,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="deadline" | 152 | CONFIG_DEFAULT_IOSCHED="deadline" |
157 | CONFIG_CLASSIC_RCU=y | 153 | CONFIG_CLASSIC_RCU=y |
154 | # CONFIG_TREE_RCU is not set | ||
155 | # CONFIG_PREEMPT_RCU is not set | ||
156 | # CONFIG_TREE_RCU_TRACE is not set | ||
157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
159 | 159 | ||
160 | # | 160 | # |
@@ -194,6 +194,7 @@ CONFIG_MPIC=y | |||
194 | # CONFIG_QUICC_ENGINE is not set | 194 | # CONFIG_QUICC_ENGINE is not set |
195 | CONFIG_FSL_ULI1575=y | 195 | CONFIG_FSL_ULI1575=y |
196 | # CONFIG_MPC8xxx_GPIO is not set | 196 | # CONFIG_MPC8xxx_GPIO is not set |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
197 | 198 | ||
198 | # | 199 | # |
199 | # Kernel options | 200 | # Kernel options |
@@ -213,7 +214,6 @@ CONFIG_PREEMPT_NONE=y | |||
213 | # CONFIG_PREEMPT_VOLUNTARY is not set | 214 | # CONFIG_PREEMPT_VOLUNTARY is not set |
214 | # CONFIG_PREEMPT is not set | 215 | # CONFIG_PREEMPT is not set |
215 | CONFIG_BINFMT_ELF=y | 216 | CONFIG_BINFMT_ELF=y |
216 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
217 | # CONFIG_HAVE_AOUT is not set | 217 | # CONFIG_HAVE_AOUT is not set |
218 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
219 | # CONFIG_IOMMU_HELPER is not set | 219 | # CONFIG_IOMMU_HELPER is not set |
@@ -221,6 +221,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
221 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 221 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
223 | # CONFIG_KEXEC is not set | 223 | # CONFIG_KEXEC is not set |
224 | # CONFIG_CRASH_DUMP is not set | ||
224 | CONFIG_ARCH_FLATMEM_ENABLE=y | 225 | CONFIG_ARCH_FLATMEM_ENABLE=y |
225 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 226 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
226 | CONFIG_SELECT_MEMORY_MODEL=y | 227 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -232,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
232 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
233 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
234 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
235 | # CONFIG_RESOURCES_64BIT is not set | ||
236 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 236 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
237 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
238 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
239 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
240 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
241 | CONFIG_FORCE_MAX_ZONEORDER=12 | 244 | CONFIG_FORCE_MAX_ZONEORDER=12 |
242 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
243 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
@@ -265,6 +268,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
265 | # CONFIG_PCI_MSI is not set | 268 | # CONFIG_PCI_MSI is not set |
266 | # CONFIG_PCI_LEGACY is not set | 269 | # CONFIG_PCI_LEGACY is not set |
267 | CONFIG_PCI_DEBUG=y | 270 | CONFIG_PCI_DEBUG=y |
271 | # CONFIG_PCI_STUB is not set | ||
268 | # CONFIG_PCCARD is not set | 272 | # CONFIG_PCCARD is not set |
269 | # CONFIG_HOTPLUG_PCI is not set | 273 | # CONFIG_HOTPLUG_PCI is not set |
270 | # CONFIG_HAS_RAPIDIO is not set | 274 | # CONFIG_HAS_RAPIDIO is not set |
@@ -287,6 +291,7 @@ CONFIG_NET=y | |||
287 | # | 291 | # |
288 | # Networking options | 292 | # Networking options |
289 | # | 293 | # |
294 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
290 | CONFIG_PACKET=y | 295 | CONFIG_PACKET=y |
291 | # CONFIG_PACKET_MMAP is not set | 296 | # CONFIG_PACKET_MMAP is not set |
292 | CONFIG_UNIX=y | 297 | CONFIG_UNIX=y |
@@ -360,6 +365,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
360 | # CONFIG_ECONET is not set | 365 | # CONFIG_ECONET is not set |
361 | # CONFIG_WAN_ROUTER is not set | 366 | # CONFIG_WAN_ROUTER is not set |
362 | # CONFIG_NET_SCHED is not set | 367 | # CONFIG_NET_SCHED is not set |
368 | # CONFIG_DCB is not set | ||
363 | 369 | ||
364 | # | 370 | # |
365 | # Network testing | 371 | # Network testing |
@@ -375,8 +381,9 @@ CONFIG_WIRELESS=y | |||
375 | # CONFIG_CFG80211 is not set | 381 | # CONFIG_CFG80211 is not set |
376 | CONFIG_WIRELESS_OLD_REGULATORY=y | 382 | CONFIG_WIRELESS_OLD_REGULATORY=y |
377 | # CONFIG_WIRELESS_EXT is not set | 383 | # CONFIG_WIRELESS_EXT is not set |
384 | # CONFIG_LIB80211 is not set | ||
378 | # CONFIG_MAC80211 is not set | 385 | # CONFIG_MAC80211 is not set |
379 | # CONFIG_IEEE80211 is not set | 386 | # CONFIG_WIMAX is not set |
380 | # CONFIG_RFKILL is not set | 387 | # CONFIG_RFKILL is not set |
381 | # CONFIG_NET_9P is not set | 388 | # CONFIG_NET_9P is not set |
382 | 389 | ||
@@ -401,6 +408,7 @@ CONFIG_MTD=y | |||
401 | # CONFIG_MTD_DEBUG is not set | 408 | # CONFIG_MTD_DEBUG is not set |
402 | # CONFIG_MTD_CONCAT is not set | 409 | # CONFIG_MTD_CONCAT is not set |
403 | CONFIG_MTD_PARTITIONS=y | 410 | CONFIG_MTD_PARTITIONS=y |
411 | # CONFIG_MTD_TESTS is not set | ||
404 | # CONFIG_MTD_REDBOOT_PARTS is not set | 412 | # CONFIG_MTD_REDBOOT_PARTS is not set |
405 | CONFIG_MTD_CMDLINE_PARTS=y | 413 | CONFIG_MTD_CMDLINE_PARTS=y |
406 | # CONFIG_MTD_OF_PARTS is not set | 414 | # CONFIG_MTD_OF_PARTS is not set |
@@ -481,6 +489,12 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
481 | # CONFIG_MTD_ONENAND is not set | 489 | # CONFIG_MTD_ONENAND is not set |
482 | 490 | ||
483 | # | 491 | # |
492 | # LPDDR flash memory drivers | ||
493 | # | ||
494 | # CONFIG_MTD_LPDDR is not set | ||
495 | # CONFIG_MTD_QINFO_PROBE is not set | ||
496 | |||
497 | # | ||
484 | # UBI - Unsorted block images | 498 | # UBI - Unsorted block images |
485 | # | 499 | # |
486 | # CONFIG_MTD_UBI is not set | 500 | # CONFIG_MTD_UBI is not set |
@@ -510,8 +524,10 @@ CONFIG_MISC_DEVICES=y | |||
510 | # CONFIG_EEPROM_93CX6 is not set | 524 | # CONFIG_EEPROM_93CX6 is not set |
511 | # CONFIG_SGI_IOC4 is not set | 525 | # CONFIG_SGI_IOC4 is not set |
512 | # CONFIG_TIFM_CORE is not set | 526 | # CONFIG_TIFM_CORE is not set |
527 | # CONFIG_ICS932S401 is not set | ||
513 | # CONFIG_ENCLOSURE_SERVICES is not set | 528 | # CONFIG_ENCLOSURE_SERVICES is not set |
514 | # CONFIG_HP_ILO is not set | 529 | # CONFIG_HP_ILO is not set |
530 | # CONFIG_C2PORT is not set | ||
515 | CONFIG_HAVE_IDE=y | 531 | CONFIG_HAVE_IDE=y |
516 | CONFIG_IDE=y | 532 | CONFIG_IDE=y |
517 | 533 | ||
@@ -524,7 +540,6 @@ CONFIG_IDE_GD_ATA=y | |||
524 | # CONFIG_IDE_GD_ATAPI is not set | 540 | # CONFIG_IDE_GD_ATAPI is not set |
525 | # CONFIG_BLK_DEV_IDECD is not set | 541 | # CONFIG_BLK_DEV_IDECD is not set |
526 | # CONFIG_BLK_DEV_IDETAPE is not set | 542 | # CONFIG_BLK_DEV_IDETAPE is not set |
527 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
528 | # CONFIG_IDE_TASK_IOCTL is not set | 543 | # CONFIG_IDE_TASK_IOCTL is not set |
529 | CONFIG_IDE_PROC_FS=y | 544 | CONFIG_IDE_PROC_FS=y |
530 | 545 | ||
@@ -549,6 +564,7 @@ CONFIG_IDE_PROC_FS=y | |||
549 | # CONFIG_BLK_DEV_JMICRON is not set | 564 | # CONFIG_BLK_DEV_JMICRON is not set |
550 | # CONFIG_BLK_DEV_SC1200 is not set | 565 | # CONFIG_BLK_DEV_SC1200 is not set |
551 | # CONFIG_BLK_DEV_PIIX is not set | 566 | # CONFIG_BLK_DEV_PIIX is not set |
567 | # CONFIG_BLK_DEV_IT8172 is not set | ||
552 | # CONFIG_BLK_DEV_IT8213 is not set | 568 | # CONFIG_BLK_DEV_IT8213 is not set |
553 | # CONFIG_BLK_DEV_IT821X is not set | 569 | # CONFIG_BLK_DEV_IT821X is not set |
554 | # CONFIG_BLK_DEV_NS87415 is not set | 570 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -618,6 +634,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
618 | # CONFIG_MEGARAID_SAS is not set | 634 | # CONFIG_MEGARAID_SAS is not set |
619 | # CONFIG_SCSI_HPTIOP is not set | 635 | # CONFIG_SCSI_HPTIOP is not set |
620 | # CONFIG_SCSI_BUSLOGIC is not set | 636 | # CONFIG_SCSI_BUSLOGIC is not set |
637 | # CONFIG_LIBFC is not set | ||
638 | # CONFIG_FCOE is not set | ||
621 | # CONFIG_SCSI_DMX3191D is not set | 639 | # CONFIG_SCSI_DMX3191D is not set |
622 | # CONFIG_SCSI_EATA is not set | 640 | # CONFIG_SCSI_EATA is not set |
623 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 641 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -757,6 +775,10 @@ CONFIG_ULI526X=y | |||
757 | # CONFIG_WLAN_PRE80211 is not set | 775 | # CONFIG_WLAN_PRE80211 is not set |
758 | # CONFIG_WLAN_80211 is not set | 776 | # CONFIG_WLAN_80211 is not set |
759 | # CONFIG_IWLWIFI_LEDS is not set | 777 | # CONFIG_IWLWIFI_LEDS is not set |
778 | |||
779 | # | ||
780 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
781 | # | ||
760 | # CONFIG_WAN is not set | 782 | # CONFIG_WAN is not set |
761 | # CONFIG_FDDI is not set | 783 | # CONFIG_FDDI is not set |
762 | # CONFIG_HIPPI is not set | 784 | # CONFIG_HIPPI is not set |
@@ -841,7 +863,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
841 | # CONFIG_SERIAL_JSM is not set | 863 | # CONFIG_SERIAL_JSM is not set |
842 | # CONFIG_SERIAL_OF_PLATFORM is not set | 864 | # CONFIG_SERIAL_OF_PLATFORM is not set |
843 | CONFIG_UNIX98_PTYS=y | 865 | CONFIG_UNIX98_PTYS=y |
866 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
844 | # CONFIG_LEGACY_PTYS is not set | 867 | # CONFIG_LEGACY_PTYS is not set |
868 | # CONFIG_HVC_UDBG is not set | ||
845 | # CONFIG_IPMI_HANDLER is not set | 869 | # CONFIG_IPMI_HANDLER is not set |
846 | # CONFIG_HW_RANDOM is not set | 870 | # CONFIG_HW_RANDOM is not set |
847 | # CONFIG_NVRAM is not set | 871 | # CONFIG_NVRAM is not set |
@@ -926,11 +950,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
926 | # CONFIG_THERMAL is not set | 950 | # CONFIG_THERMAL is not set |
927 | # CONFIG_THERMAL_HWMON is not set | 951 | # CONFIG_THERMAL_HWMON is not set |
928 | # CONFIG_WATCHDOG is not set | 952 | # CONFIG_WATCHDOG is not set |
953 | CONFIG_SSB_POSSIBLE=y | ||
929 | 954 | ||
930 | # | 955 | # |
931 | # Sonics Silicon Backplane | 956 | # Sonics Silicon Backplane |
932 | # | 957 | # |
933 | CONFIG_SSB_POSSIBLE=y | ||
934 | # CONFIG_SSB is not set | 958 | # CONFIG_SSB is not set |
935 | 959 | ||
936 | # | 960 | # |
@@ -939,18 +963,13 @@ CONFIG_SSB_POSSIBLE=y | |||
939 | # CONFIG_MFD_CORE is not set | 963 | # CONFIG_MFD_CORE is not set |
940 | # CONFIG_MFD_SM501 is not set | 964 | # CONFIG_MFD_SM501 is not set |
941 | # CONFIG_HTC_PASIC3 is not set | 965 | # CONFIG_HTC_PASIC3 is not set |
966 | # CONFIG_TWL4030_CORE is not set | ||
942 | # CONFIG_MFD_TMIO is not set | 967 | # CONFIG_MFD_TMIO is not set |
943 | # CONFIG_PMIC_DA903X is not set | 968 | # CONFIG_PMIC_DA903X is not set |
944 | # CONFIG_MFD_WM8400 is not set | 969 | # CONFIG_MFD_WM8400 is not set |
945 | # CONFIG_MFD_WM8350_I2C is not set | 970 | # CONFIG_MFD_WM8350_I2C is not set |
946 | 971 | # CONFIG_MFD_PCF50633 is not set | |
947 | # | ||
948 | # Voltage and Current regulators | ||
949 | # | ||
950 | # CONFIG_REGULATOR is not set | 972 | # CONFIG_REGULATOR is not set |
951 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
952 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
953 | # CONFIG_REGULATOR_BQ24022 is not set | ||
954 | 973 | ||
955 | # | 974 | # |
956 | # Multimedia devices | 975 | # Multimedia devices |
@@ -1029,6 +1048,7 @@ CONFIG_FB_FSL_DIU=y | |||
1029 | # CONFIG_FB_IBM_GXT4500 is not set | 1048 | # CONFIG_FB_IBM_GXT4500 is not set |
1030 | # CONFIG_FB_VIRTUAL is not set | 1049 | # CONFIG_FB_VIRTUAL is not set |
1031 | # CONFIG_FB_METRONOME is not set | 1050 | # CONFIG_FB_METRONOME is not set |
1051 | # CONFIG_FB_MB862XX is not set | ||
1032 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1052 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
1033 | 1053 | ||
1034 | # | 1054 | # |
@@ -1054,6 +1074,7 @@ CONFIG_SND_OSSEMUL=y | |||
1054 | CONFIG_SND_MIXER_OSS=y | 1074 | CONFIG_SND_MIXER_OSS=y |
1055 | CONFIG_SND_PCM_OSS=y | 1075 | CONFIG_SND_PCM_OSS=y |
1056 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1076 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1077 | # CONFIG_SND_HRTIMER is not set | ||
1057 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1078 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1058 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1079 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1059 | CONFIG_SND_VERBOSE_PROCFS=y | 1080 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1130,6 +1151,7 @@ CONFIG_SND_PPC=y | |||
1130 | CONFIG_SND_SOC=y | 1151 | CONFIG_SND_SOC=y |
1131 | CONFIG_SND_SOC_MPC8610=y | 1152 | CONFIG_SND_SOC_MPC8610=y |
1132 | CONFIG_SND_SOC_MPC8610_HPCD=y | 1153 | CONFIG_SND_SOC_MPC8610_HPCD=y |
1154 | CONFIG_SND_SOC_I2C_AND_SPI=y | ||
1133 | # CONFIG_SND_SOC_ALL_CODECS is not set | 1155 | # CONFIG_SND_SOC_ALL_CODECS is not set |
1134 | CONFIG_SND_SOC_CS4270=y | 1156 | CONFIG_SND_SOC_CS4270=y |
1135 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y | 1157 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y |
@@ -1157,9 +1179,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
1157 | # | 1179 | # |
1158 | 1180 | ||
1159 | # | 1181 | # |
1160 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1182 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1161 | # | 1183 | # |
1162 | # CONFIG_USB_GADGET is not set | 1184 | # CONFIG_USB_GADGET is not set |
1185 | |||
1186 | # | ||
1187 | # OTG and related infrastructure | ||
1188 | # | ||
1163 | # CONFIG_UWB is not set | 1189 | # CONFIG_UWB is not set |
1164 | # CONFIG_MMC is not set | 1190 | # CONFIG_MMC is not set |
1165 | # CONFIG_MEMSTICK is not set | 1191 | # CONFIG_MEMSTICK is not set |
@@ -1197,6 +1223,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1197 | # CONFIG_RTC_DRV_M41T80 is not set | 1223 | # CONFIG_RTC_DRV_M41T80 is not set |
1198 | # CONFIG_RTC_DRV_S35390A is not set | 1224 | # CONFIG_RTC_DRV_S35390A is not set |
1199 | # CONFIG_RTC_DRV_FM3130 is not set | 1225 | # CONFIG_RTC_DRV_FM3130 is not set |
1226 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1200 | 1227 | ||
1201 | # | 1228 | # |
1202 | # SPI RTC drivers | 1229 | # SPI RTC drivers |
@@ -1244,6 +1271,7 @@ CONFIG_FS_MBCACHE=y | |||
1244 | CONFIG_FILE_LOCKING=y | 1271 | CONFIG_FILE_LOCKING=y |
1245 | # CONFIG_XFS_FS is not set | 1272 | # CONFIG_XFS_FS is not set |
1246 | # CONFIG_OCFS2_FS is not set | 1273 | # CONFIG_OCFS2_FS is not set |
1274 | # CONFIG_BTRFS_FS is not set | ||
1247 | # CONFIG_DNOTIFY is not set | 1275 | # CONFIG_DNOTIFY is not set |
1248 | # CONFIG_INOTIFY is not set | 1276 | # CONFIG_INOTIFY is not set |
1249 | # CONFIG_QUOTA is not set | 1277 | # CONFIG_QUOTA is not set |
@@ -1276,10 +1304,7 @@ CONFIG_TMPFS=y | |||
1276 | # CONFIG_TMPFS_POSIX_ACL is not set | 1304 | # CONFIG_TMPFS_POSIX_ACL is not set |
1277 | # CONFIG_HUGETLB_PAGE is not set | 1305 | # CONFIG_HUGETLB_PAGE is not set |
1278 | # CONFIG_CONFIGFS_FS is not set | 1306 | # CONFIG_CONFIGFS_FS is not set |
1279 | 1307 | CONFIG_MISC_FILESYSTEMS=y | |
1280 | # | ||
1281 | # Miscellaneous filesystems | ||
1282 | # | ||
1283 | # CONFIG_ADFS_FS is not set | 1308 | # CONFIG_ADFS_FS is not set |
1284 | # CONFIG_AFFS_FS is not set | 1309 | # CONFIG_AFFS_FS is not set |
1285 | # CONFIG_HFS_FS is not set | 1310 | # CONFIG_HFS_FS is not set |
@@ -1289,6 +1314,7 @@ CONFIG_TMPFS=y | |||
1289 | # CONFIG_EFS_FS is not set | 1314 | # CONFIG_EFS_FS is not set |
1290 | # CONFIG_JFFS2_FS is not set | 1315 | # CONFIG_JFFS2_FS is not set |
1291 | # CONFIG_CRAMFS is not set | 1316 | # CONFIG_CRAMFS is not set |
1317 | # CONFIG_SQUASHFS is not set | ||
1292 | # CONFIG_VXFS_FS is not set | 1318 | # CONFIG_VXFS_FS is not set |
1293 | # CONFIG_MINIX_FS is not set | 1319 | # CONFIG_MINIX_FS is not set |
1294 | # CONFIG_OMFS_FS is not set | 1320 | # CONFIG_OMFS_FS is not set |
@@ -1388,6 +1414,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1388 | # Library routines | 1414 | # Library routines |
1389 | # | 1415 | # |
1390 | CONFIG_BITREVERSE=y | 1416 | CONFIG_BITREVERSE=y |
1417 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1391 | # CONFIG_CRC_CCITT is not set | 1418 | # CONFIG_CRC_CCITT is not set |
1392 | # CONFIG_CRC16 is not set | 1419 | # CONFIG_CRC16 is not set |
1393 | CONFIG_CRC_T10DIF=y | 1420 | CONFIG_CRC_T10DIF=y |
@@ -1438,6 +1465,7 @@ CONFIG_DEBUG_INFO=y | |||
1438 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1465 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1439 | # CONFIG_DEBUG_LIST is not set | 1466 | # CONFIG_DEBUG_LIST is not set |
1440 | # CONFIG_DEBUG_SG is not set | 1467 | # CONFIG_DEBUG_SG is not set |
1468 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1441 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1469 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1442 | # CONFIG_RCU_TORTURE_TEST is not set | 1470 | # CONFIG_RCU_TORTURE_TEST is not set |
1443 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1471 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1447,6 +1475,8 @@ CONFIG_DEBUG_INFO=y | |||
1447 | # CONFIG_LATENCYTOP is not set | 1475 | # CONFIG_LATENCYTOP is not set |
1448 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1476 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1449 | CONFIG_HAVE_FUNCTION_TRACER=y | 1477 | CONFIG_HAVE_FUNCTION_TRACER=y |
1478 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1479 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1450 | 1480 | ||
1451 | # | 1481 | # |
1452 | # Tracers | 1482 | # Tracers |
@@ -1455,11 +1485,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1455 | # CONFIG_SCHED_TRACER is not set | 1485 | # CONFIG_SCHED_TRACER is not set |
1456 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1486 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1457 | # CONFIG_BOOT_TRACER is not set | 1487 | # CONFIG_BOOT_TRACER is not set |
1488 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1458 | # CONFIG_STACK_TRACER is not set | 1489 | # CONFIG_STACK_TRACER is not set |
1459 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1490 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1460 | # CONFIG_SAMPLES is not set | 1491 | # CONFIG_SAMPLES is not set |
1461 | CONFIG_HAVE_ARCH_KGDB=y | 1492 | CONFIG_HAVE_ARCH_KGDB=y |
1462 | # CONFIG_KGDB is not set | 1493 | # CONFIG_KGDB is not set |
1494 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1463 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1495 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1464 | # CONFIG_DEBUG_STACK_USAGE is not set | 1496 | # CONFIG_DEBUG_STACK_USAGE is not set |
1465 | # CONFIG_DEBUG_PAGEALLOC is not set | 1497 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1486,6 +1518,7 @@ CONFIG_CRYPTO=y | |||
1486 | # | 1518 | # |
1487 | # CONFIG_CRYPTO_FIPS is not set | 1519 | # CONFIG_CRYPTO_FIPS is not set |
1488 | # CONFIG_CRYPTO_MANAGER is not set | 1520 | # CONFIG_CRYPTO_MANAGER is not set |
1521 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1489 | # CONFIG_CRYPTO_GF128MUL is not set | 1522 | # CONFIG_CRYPTO_GF128MUL is not set |
1490 | # CONFIG_CRYPTO_NULL is not set | 1523 | # CONFIG_CRYPTO_NULL is not set |
1491 | # CONFIG_CRYPTO_CRYPTD is not set | 1524 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig b/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig index 8e0f0e5180a4..92acfdf3540a 100644 --- a/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig +++ b/arch/powerpc/configs/86xx/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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:29 2008 | 4 | # Mon Jan 26 15:36:25 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -78,12 +78,12 @@ CONFIG_AUDIT=y | |||
78 | CONFIG_IKCONFIG=y | 78 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 79 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
83 | # CONFIG_FAIR_GROUP_SCHED is not set | 82 | # CONFIG_FAIR_GROUP_SCHED is not set |
84 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -96,6 +96,7 @@ CONFIG_EMBEDDED=y | |||
96 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 97 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 98 | CONFIG_KALLSYMS_ALL=y |
99 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 100 | CONFIG_KALLSYMS_EXTRA_PASS=y |
100 | CONFIG_HOTPLUG=y | 101 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 102 | CONFIG_PRINTK=y |
@@ -118,7 +119,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 119 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 120 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 121 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 122 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 123 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -130,7 +130,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
131 | CONFIG_SLABINFO=y | 131 | CONFIG_SLABINFO=y |
132 | CONFIG_RT_MUTEXES=y | 132 | CONFIG_RT_MUTEXES=y |
133 | # CONFIG_TINY_SHMEM is not set | ||
134 | CONFIG_BASE_SMALL=0 | 133 | CONFIG_BASE_SMALL=0 |
135 | CONFIG_MODULES=y | 134 | CONFIG_MODULES=y |
136 | # CONFIG_MODULE_FORCE_LOAD is not set | 135 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -138,12 +137,10 @@ CONFIG_MODULE_UNLOAD=y | |||
138 | CONFIG_MODULE_FORCE_UNLOAD=y | 137 | CONFIG_MODULE_FORCE_UNLOAD=y |
139 | CONFIG_MODVERSIONS=y | 138 | CONFIG_MODVERSIONS=y |
140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 139 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
141 | CONFIG_KMOD=y | ||
142 | CONFIG_STOP_MACHINE=y | 140 | CONFIG_STOP_MACHINE=y |
143 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
144 | CONFIG_LBD=y | 142 | CONFIG_LBD=y |
145 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
146 | # CONFIG_LSF is not set | ||
147 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
148 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
149 | 146 | ||
@@ -160,6 +157,10 @@ CONFIG_DEFAULT_CFQ=y | |||
160 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
161 | CONFIG_DEFAULT_IOSCHED="cfq" | 158 | CONFIG_DEFAULT_IOSCHED="cfq" |
162 | CONFIG_CLASSIC_RCU=y | 159 | CONFIG_CLASSIC_RCU=y |
160 | # CONFIG_TREE_RCU is not set | ||
161 | # CONFIG_PREEMPT_RCU is not set | ||
162 | # CONFIG_TREE_RCU_TRACE is not set | ||
163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
163 | # CONFIG_FREEZER is not set | 164 | # CONFIG_FREEZER is not set |
164 | 165 | ||
165 | # | 166 | # |
@@ -198,6 +199,7 @@ CONFIG_PPC_I8259=y | |||
198 | # CONFIG_QUICC_ENGINE is not set | 199 | # CONFIG_QUICC_ENGINE is not set |
199 | CONFIG_FSL_ULI1575=y | 200 | CONFIG_FSL_ULI1575=y |
200 | # CONFIG_MPC8xxx_GPIO is not set | 201 | # CONFIG_MPC8xxx_GPIO is not set |
202 | # CONFIG_SIMPLE_GPIO is not set | ||
201 | 203 | ||
202 | # | 204 | # |
203 | # Kernel options | 205 | # Kernel options |
@@ -225,6 +227,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 227 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 229 | # CONFIG_KEXEC is not set |
230 | # CONFIG_CRASH_DUMP is not set | ||
228 | # CONFIG_IRQ_ALL_CPUS is not set | 231 | # CONFIG_IRQ_ALL_CPUS is not set |
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -237,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
248 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -268,6 +273,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
268 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
269 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
270 | # CONFIG_PCI_DEBUG is not set | 275 | # CONFIG_PCI_DEBUG is not set |
276 | # CONFIG_PCI_STUB is not set | ||
271 | # CONFIG_PCCARD is not set | 277 | # CONFIG_PCCARD is not set |
272 | # CONFIG_HOTPLUG_PCI is not set | 278 | # CONFIG_HOTPLUG_PCI is not set |
273 | CONFIG_HAS_RAPIDIO=y | 279 | CONFIG_HAS_RAPIDIO=y |
@@ -291,6 +297,7 @@ CONFIG_NET=y | |||
291 | # | 297 | # |
292 | # Networking options | 298 | # Networking options |
293 | # | 299 | # |
300 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
294 | CONFIG_PACKET=y | 301 | CONFIG_PACKET=y |
295 | # CONFIG_PACKET_MMAP is not set | 302 | # CONFIG_PACKET_MMAP is not set |
296 | CONFIG_UNIX=y | 303 | CONFIG_UNIX=y |
@@ -379,6 +386,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
379 | # CONFIG_ECONET is not set | 386 | # CONFIG_ECONET is not set |
380 | # CONFIG_WAN_ROUTER is not set | 387 | # CONFIG_WAN_ROUTER is not set |
381 | # CONFIG_NET_SCHED is not set | 388 | # CONFIG_NET_SCHED is not set |
389 | # CONFIG_DCB is not set | ||
382 | 390 | ||
383 | # | 391 | # |
384 | # Network testing | 392 | # Network testing |
@@ -395,8 +403,9 @@ CONFIG_WIRELESS=y | |||
395 | # CONFIG_CFG80211 is not set | 403 | # CONFIG_CFG80211 is not set |
396 | CONFIG_WIRELESS_OLD_REGULATORY=y | 404 | CONFIG_WIRELESS_OLD_REGULATORY=y |
397 | # CONFIG_WIRELESS_EXT is not set | 405 | # CONFIG_WIRELESS_EXT is not set |
406 | # CONFIG_LIB80211 is not set | ||
398 | # CONFIG_MAC80211 is not set | 407 | # CONFIG_MAC80211 is not set |
399 | # CONFIG_IEEE80211 is not set | 408 | # CONFIG_WIMAX is not set |
400 | # CONFIG_RFKILL is not set | 409 | # CONFIG_RFKILL is not set |
401 | # CONFIG_NET_9P is not set | 410 | # CONFIG_NET_9P is not set |
402 | 411 | ||
@@ -445,8 +454,10 @@ CONFIG_MISC_DEVICES=y | |||
445 | # CONFIG_EEPROM_93CX6 is not set | 454 | # CONFIG_EEPROM_93CX6 is not set |
446 | # CONFIG_SGI_IOC4 is not set | 455 | # CONFIG_SGI_IOC4 is not set |
447 | # CONFIG_TIFM_CORE is not set | 456 | # CONFIG_TIFM_CORE is not set |
457 | # CONFIG_ICS932S401 is not set | ||
448 | # CONFIG_ENCLOSURE_SERVICES is not set | 458 | # CONFIG_ENCLOSURE_SERVICES is not set |
449 | # CONFIG_HP_ILO is not set | 459 | # CONFIG_HP_ILO is not set |
460 | # CONFIG_C2PORT is not set | ||
450 | CONFIG_HAVE_IDE=y | 461 | CONFIG_HAVE_IDE=y |
451 | # CONFIG_IDE is not set | 462 | # CONFIG_IDE is not set |
452 | 463 | ||
@@ -490,6 +501,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
490 | # CONFIG_SCSI_SRP_ATTRS is not set | 501 | # CONFIG_SCSI_SRP_ATTRS is not set |
491 | CONFIG_SCSI_LOWLEVEL=y | 502 | CONFIG_SCSI_LOWLEVEL=y |
492 | # CONFIG_ISCSI_TCP is not set | 503 | # CONFIG_ISCSI_TCP is not set |
504 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
493 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 505 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
494 | # CONFIG_SCSI_3W_9XXX is not set | 506 | # CONFIG_SCSI_3W_9XXX is not set |
495 | # CONFIG_SCSI_ACARD is not set | 507 | # CONFIG_SCSI_ACARD is not set |
@@ -506,6 +518,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
506 | # CONFIG_MEGARAID_SAS is not set | 518 | # CONFIG_MEGARAID_SAS is not set |
507 | # CONFIG_SCSI_HPTIOP is not set | 519 | # CONFIG_SCSI_HPTIOP is not set |
508 | # CONFIG_SCSI_BUSLOGIC is not set | 520 | # CONFIG_SCSI_BUSLOGIC is not set |
521 | # CONFIG_LIBFC is not set | ||
522 | # CONFIG_FCOE is not set | ||
509 | # CONFIG_SCSI_DMX3191D is not set | 523 | # CONFIG_SCSI_DMX3191D is not set |
510 | # CONFIG_SCSI_EATA is not set | 524 | # CONFIG_SCSI_EATA is not set |
511 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 525 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -625,6 +639,9 @@ CONFIG_VITESSE_PHY=y | |||
625 | # CONFIG_BROADCOM_PHY is not set | 639 | # CONFIG_BROADCOM_PHY is not set |
626 | # CONFIG_ICPLUS_PHY is not set | 640 | # CONFIG_ICPLUS_PHY is not set |
627 | # CONFIG_REALTEK_PHY is not set | 641 | # CONFIG_REALTEK_PHY is not set |
642 | # CONFIG_NATIONAL_PHY is not set | ||
643 | # CONFIG_STE10XP is not set | ||
644 | # CONFIG_LSI_ET1011C_PHY is not set | ||
628 | # CONFIG_FIXED_PHY is not set | 645 | # CONFIG_FIXED_PHY is not set |
629 | # CONFIG_MDIO_BITBANG is not set | 646 | # CONFIG_MDIO_BITBANG is not set |
630 | CONFIG_NET_ETHERNET=y | 647 | CONFIG_NET_ETHERNET=y |
@@ -670,6 +687,7 @@ CONFIG_GIANFAR=y | |||
670 | # CONFIG_JME is not set | 687 | # CONFIG_JME is not set |
671 | CONFIG_NETDEV_10000=y | 688 | CONFIG_NETDEV_10000=y |
672 | # CONFIG_CHELSIO_T1 is not set | 689 | # CONFIG_CHELSIO_T1 is not set |
690 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
673 | # CONFIG_CHELSIO_T3 is not set | 691 | # CONFIG_CHELSIO_T3 is not set |
674 | # CONFIG_ENIC is not set | 692 | # CONFIG_ENIC is not set |
675 | # CONFIG_IXGBE is not set | 693 | # CONFIG_IXGBE is not set |
@@ -694,6 +712,10 @@ CONFIG_NETDEV_10000=y | |||
694 | # CONFIG_IWLWIFI_LEDS is not set | 712 | # CONFIG_IWLWIFI_LEDS is not set |
695 | 713 | ||
696 | # | 714 | # |
715 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
716 | # | ||
717 | |||
718 | # | ||
697 | # USB Network Adapters | 719 | # USB Network Adapters |
698 | # | 720 | # |
699 | # CONFIG_USB_CATC is not set | 721 | # CONFIG_USB_CATC is not set |
@@ -785,8 +807,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
785 | # CONFIG_SERIAL_JSM is not set | 807 | # CONFIG_SERIAL_JSM is not set |
786 | # CONFIG_SERIAL_OF_PLATFORM is not set | 808 | # CONFIG_SERIAL_OF_PLATFORM is not set |
787 | CONFIG_UNIX98_PTYS=y | 809 | CONFIG_UNIX98_PTYS=y |
810 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
788 | CONFIG_LEGACY_PTYS=y | 811 | CONFIG_LEGACY_PTYS=y |
789 | CONFIG_LEGACY_PTY_COUNT=256 | 812 | CONFIG_LEGACY_PTY_COUNT=256 |
813 | # CONFIG_HVC_UDBG is not set | ||
790 | # CONFIG_IPMI_HANDLER is not set | 814 | # CONFIG_IPMI_HANDLER is not set |
791 | # CONFIG_HW_RANDOM is not set | 815 | # CONFIG_HW_RANDOM is not set |
792 | CONFIG_NVRAM=y | 816 | CONFIG_NVRAM=y |
@@ -872,11 +896,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
872 | # CONFIG_THERMAL is not set | 896 | # CONFIG_THERMAL is not set |
873 | # CONFIG_THERMAL_HWMON is not set | 897 | # CONFIG_THERMAL_HWMON is not set |
874 | # CONFIG_WATCHDOG is not set | 898 | # CONFIG_WATCHDOG is not set |
899 | CONFIG_SSB_POSSIBLE=y | ||
875 | 900 | ||
876 | # | 901 | # |
877 | # Sonics Silicon Backplane | 902 | # Sonics Silicon Backplane |
878 | # | 903 | # |
879 | CONFIG_SSB_POSSIBLE=y | ||
880 | # CONFIG_SSB is not set | 904 | # CONFIG_SSB is not set |
881 | 905 | ||
882 | # | 906 | # |
@@ -885,18 +909,13 @@ CONFIG_SSB_POSSIBLE=y | |||
885 | # CONFIG_MFD_CORE is not set | 909 | # CONFIG_MFD_CORE is not set |
886 | # CONFIG_MFD_SM501 is not set | 910 | # CONFIG_MFD_SM501 is not set |
887 | # CONFIG_HTC_PASIC3 is not set | 911 | # CONFIG_HTC_PASIC3 is not set |
912 | # CONFIG_TWL4030_CORE is not set | ||
888 | # CONFIG_MFD_TMIO is not set | 913 | # CONFIG_MFD_TMIO is not set |
889 | # CONFIG_PMIC_DA903X is not set | 914 | # CONFIG_PMIC_DA903X is not set |
890 | # CONFIG_MFD_WM8400 is not set | 915 | # CONFIG_MFD_WM8400 is not set |
891 | # CONFIG_MFD_WM8350_I2C is not set | 916 | # CONFIG_MFD_WM8350_I2C is not set |
892 | 917 | # CONFIG_MFD_PCF50633 is not set | |
893 | # | ||
894 | # Voltage and Current regulators | ||
895 | # | ||
896 | # CONFIG_REGULATOR is not set | 918 | # CONFIG_REGULATOR is not set |
897 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
898 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
899 | # CONFIG_REGULATOR_BQ24022 is not set | ||
900 | 919 | ||
901 | # | 920 | # |
902 | # Multimedia devices | 921 | # Multimedia devices |
@@ -923,6 +942,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
923 | CONFIG_MEDIA_TUNER_MT20XX=m | 942 | CONFIG_MEDIA_TUNER_MT20XX=m |
924 | CONFIG_MEDIA_TUNER_XC2028=m | 943 | CONFIG_MEDIA_TUNER_XC2028=m |
925 | CONFIG_MEDIA_TUNER_XC5000=m | 944 | CONFIG_MEDIA_TUNER_XC5000=m |
945 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
926 | CONFIG_DVB_CAPTURE_DRIVERS=y | 946 | CONFIG_DVB_CAPTURE_DRIVERS=y |
927 | 947 | ||
928 | # | 948 | # |
@@ -968,6 +988,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
968 | # CONFIG_DVB_FE_CUSTOMISE is not set | 988 | # CONFIG_DVB_FE_CUSTOMISE is not set |
969 | 989 | ||
970 | # | 990 | # |
991 | # Multistandard (satellite) frontends | ||
992 | # | ||
993 | # CONFIG_DVB_STB0899 is not set | ||
994 | # CONFIG_DVB_STB6100 is not set | ||
995 | |||
996 | # | ||
971 | # DVB-S (satellite) frontends | 997 | # DVB-S (satellite) frontends |
972 | # | 998 | # |
973 | # CONFIG_DVB_CX24110 is not set | 999 | # CONFIG_DVB_CX24110 is not set |
@@ -979,8 +1005,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
979 | # CONFIG_DVB_STV0299 is not set | 1005 | # CONFIG_DVB_STV0299 is not set |
980 | # CONFIG_DVB_TDA8083 is not set | 1006 | # CONFIG_DVB_TDA8083 is not set |
981 | # CONFIG_DVB_TDA10086 is not set | 1007 | # CONFIG_DVB_TDA10086 is not set |
1008 | # CONFIG_DVB_TDA8261 is not set | ||
982 | # CONFIG_DVB_VES1X93 is not set | 1009 | # CONFIG_DVB_VES1X93 is not set |
983 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1010 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1011 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
984 | # CONFIG_DVB_TDA826X is not set | 1012 | # CONFIG_DVB_TDA826X is not set |
985 | # CONFIG_DVB_TUA6100 is not set | 1013 | # CONFIG_DVB_TUA6100 is not set |
986 | # CONFIG_DVB_CX24116 is not set | 1014 | # CONFIG_DVB_CX24116 is not set |
@@ -1021,11 +1049,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1021 | # CONFIG_DVB_OR51132 is not set | 1049 | # CONFIG_DVB_OR51132 is not set |
1022 | # CONFIG_DVB_BCM3510 is not set | 1050 | # CONFIG_DVB_BCM3510 is not set |
1023 | # CONFIG_DVB_LGDT330X is not set | 1051 | # CONFIG_DVB_LGDT330X is not set |
1052 | # CONFIG_DVB_LGDT3304 is not set | ||
1024 | # CONFIG_DVB_S5H1409 is not set | 1053 | # CONFIG_DVB_S5H1409 is not set |
1025 | # CONFIG_DVB_AU8522 is not set | 1054 | # CONFIG_DVB_AU8522 is not set |
1026 | # CONFIG_DVB_S5H1411 is not set | 1055 | # CONFIG_DVB_S5H1411 is not set |
1027 | 1056 | ||
1028 | # | 1057 | # |
1058 | # ISDB-T (terrestrial) frontends | ||
1059 | # | ||
1060 | # CONFIG_DVB_S921 is not set | ||
1061 | |||
1062 | # | ||
1029 | # Digital terrestrial only tuners/PLL | 1063 | # Digital terrestrial only tuners/PLL |
1030 | # | 1064 | # |
1031 | # CONFIG_DVB_PLL is not set | 1065 | # CONFIG_DVB_PLL is not set |
@@ -1078,6 +1112,7 @@ CONFIG_SND_OSSEMUL=y | |||
1078 | CONFIG_SND_MIXER_OSS=y | 1112 | CONFIG_SND_MIXER_OSS=y |
1079 | CONFIG_SND_PCM_OSS=y | 1113 | CONFIG_SND_PCM_OSS=y |
1080 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1114 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1115 | # CONFIG_SND_HRTIMER is not set | ||
1081 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1116 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1082 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1117 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1083 | CONFIG_SND_VERBOSE_PROCFS=y | 1118 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1180,11 +1215,9 @@ CONFIG_HID_COMPAT=y | |||
1180 | CONFIG_HID_A4TECH=y | 1215 | CONFIG_HID_A4TECH=y |
1181 | CONFIG_HID_APPLE=y | 1216 | CONFIG_HID_APPLE=y |
1182 | CONFIG_HID_BELKIN=y | 1217 | CONFIG_HID_BELKIN=y |
1183 | CONFIG_HID_BRIGHT=y | ||
1184 | CONFIG_HID_CHERRY=y | 1218 | CONFIG_HID_CHERRY=y |
1185 | CONFIG_HID_CHICONY=y | 1219 | CONFIG_HID_CHICONY=y |
1186 | CONFIG_HID_CYPRESS=y | 1220 | CONFIG_HID_CYPRESS=y |
1187 | CONFIG_HID_DELL=y | ||
1188 | CONFIG_HID_EZKEY=y | 1221 | CONFIG_HID_EZKEY=y |
1189 | CONFIG_HID_GYRATION=y | 1222 | CONFIG_HID_GYRATION=y |
1190 | CONFIG_HID_LOGITECH=y | 1223 | CONFIG_HID_LOGITECH=y |
@@ -1192,12 +1225,15 @@ CONFIG_HID_LOGITECH=y | |||
1192 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1225 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1193 | CONFIG_HID_MICROSOFT=y | 1226 | CONFIG_HID_MICROSOFT=y |
1194 | CONFIG_HID_MONTEREY=y | 1227 | CONFIG_HID_MONTEREY=y |
1228 | # CONFIG_HID_NTRIG is not set | ||
1195 | CONFIG_HID_PANTHERLORD=y | 1229 | CONFIG_HID_PANTHERLORD=y |
1196 | # CONFIG_PANTHERLORD_FF is not set | 1230 | # CONFIG_PANTHERLORD_FF is not set |
1197 | CONFIG_HID_PETALYNX=y | 1231 | CONFIG_HID_PETALYNX=y |
1198 | CONFIG_HID_SAMSUNG=y | 1232 | CONFIG_HID_SAMSUNG=y |
1199 | CONFIG_HID_SONY=y | 1233 | CONFIG_HID_SONY=y |
1200 | CONFIG_HID_SUNPLUS=y | 1234 | CONFIG_HID_SUNPLUS=y |
1235 | # CONFIG_GREENASIA_FF is not set | ||
1236 | # CONFIG_HID_TOPSEED is not set | ||
1201 | CONFIG_THRUSTMASTER_FF=m | 1237 | CONFIG_THRUSTMASTER_FF=m |
1202 | CONFIG_ZEROPLUS_FF=m | 1238 | CONFIG_ZEROPLUS_FF=m |
1203 | CONFIG_USB_SUPPORT=y | 1239 | CONFIG_USB_SUPPORT=y |
@@ -1230,6 +1266,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1230 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1266 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1231 | # CONFIG_USB_EHCI_FSL is not set | 1267 | # CONFIG_USB_EHCI_FSL is not set |
1232 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1268 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1269 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1233 | # CONFIG_USB_ISP116X_HCD is not set | 1270 | # CONFIG_USB_ISP116X_HCD is not set |
1234 | # CONFIG_USB_ISP1760_HCD is not set | 1271 | # CONFIG_USB_ISP1760_HCD is not set |
1235 | CONFIG_USB_OHCI_HCD=y | 1272 | CONFIG_USB_OHCI_HCD=y |
@@ -1255,18 +1292,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1255 | # CONFIG_USB_TMC is not set | 1292 | # CONFIG_USB_TMC is not set |
1256 | 1293 | ||
1257 | # | 1294 | # |
1258 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1295 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1259 | # | 1296 | # |
1260 | 1297 | ||
1261 | # | 1298 | # |
1262 | # may also be needed; see USB_STORAGE Help for more information | 1299 | # see USB_STORAGE Help for more information |
1263 | # | 1300 | # |
1264 | CONFIG_USB_STORAGE=y | 1301 | CONFIG_USB_STORAGE=y |
1265 | # CONFIG_USB_STORAGE_DEBUG is not set | 1302 | # CONFIG_USB_STORAGE_DEBUG is not set |
1266 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1303 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1267 | # CONFIG_USB_STORAGE_FREECOM is not set | 1304 | # CONFIG_USB_STORAGE_FREECOM is not set |
1268 | # CONFIG_USB_STORAGE_ISD200 is not set | 1305 | # CONFIG_USB_STORAGE_ISD200 is not set |
1269 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1270 | # CONFIG_USB_STORAGE_USBAT is not set | 1306 | # CONFIG_USB_STORAGE_USBAT is not set |
1271 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1307 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1272 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1308 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1314,6 +1350,10 @@ CONFIG_USB_STORAGE=y | |||
1314 | # CONFIG_USB_ISIGHTFW is not set | 1350 | # CONFIG_USB_ISIGHTFW is not set |
1315 | # CONFIG_USB_VST is not set | 1351 | # CONFIG_USB_VST is not set |
1316 | # CONFIG_USB_GADGET is not set | 1352 | # CONFIG_USB_GADGET is not set |
1353 | |||
1354 | # | ||
1355 | # OTG and related infrastructure | ||
1356 | # | ||
1317 | # CONFIG_UWB is not set | 1357 | # CONFIG_UWB is not set |
1318 | # CONFIG_MMC is not set | 1358 | # CONFIG_MMC is not set |
1319 | # CONFIG_MEMSTICK is not set | 1359 | # CONFIG_MEMSTICK is not set |
@@ -1351,6 +1391,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1351 | # CONFIG_RTC_DRV_M41T80 is not set | 1391 | # CONFIG_RTC_DRV_M41T80 is not set |
1352 | # CONFIG_RTC_DRV_S35390A is not set | 1392 | # CONFIG_RTC_DRV_S35390A is not set |
1353 | # CONFIG_RTC_DRV_FM3130 is not set | 1393 | # CONFIG_RTC_DRV_FM3130 is not set |
1394 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1354 | 1395 | ||
1355 | # | 1396 | # |
1356 | # SPI RTC drivers | 1397 | # SPI RTC drivers |
@@ -1397,7 +1438,9 @@ CONFIG_FS_MBCACHE=y | |||
1397 | # CONFIG_FS_POSIX_ACL is not set | 1438 | # CONFIG_FS_POSIX_ACL is not set |
1398 | CONFIG_FILE_LOCKING=y | 1439 | CONFIG_FILE_LOCKING=y |
1399 | # CONFIG_XFS_FS is not set | 1440 | # CONFIG_XFS_FS is not set |
1441 | # CONFIG_GFS2_FS is not set | ||
1400 | # CONFIG_OCFS2_FS is not set | 1442 | # CONFIG_OCFS2_FS is not set |
1443 | # CONFIG_BTRFS_FS is not set | ||
1401 | CONFIG_DNOTIFY=y | 1444 | CONFIG_DNOTIFY=y |
1402 | CONFIG_INOTIFY=y | 1445 | CONFIG_INOTIFY=y |
1403 | CONFIG_INOTIFY_USER=y | 1446 | CONFIG_INOTIFY_USER=y |
@@ -1439,10 +1482,7 @@ CONFIG_TMPFS=y | |||
1439 | # CONFIG_TMPFS_POSIX_ACL is not set | 1482 | # CONFIG_TMPFS_POSIX_ACL is not set |
1440 | # CONFIG_HUGETLB_PAGE is not set | 1483 | # CONFIG_HUGETLB_PAGE is not set |
1441 | # CONFIG_CONFIGFS_FS is not set | 1484 | # CONFIG_CONFIGFS_FS is not set |
1442 | 1485 | CONFIG_MISC_FILESYSTEMS=y | |
1443 | # | ||
1444 | # Miscellaneous filesystems | ||
1445 | # | ||
1446 | CONFIG_ADFS_FS=m | 1486 | CONFIG_ADFS_FS=m |
1447 | # CONFIG_ADFS_FS_RW is not set | 1487 | # CONFIG_ADFS_FS_RW is not set |
1448 | CONFIG_AFFS_FS=m | 1488 | CONFIG_AFFS_FS=m |
@@ -1453,6 +1493,7 @@ CONFIG_BEFS_FS=m | |||
1453 | CONFIG_BFS_FS=m | 1493 | CONFIG_BFS_FS=m |
1454 | CONFIG_EFS_FS=m | 1494 | CONFIG_EFS_FS=m |
1455 | CONFIG_CRAMFS=y | 1495 | CONFIG_CRAMFS=y |
1496 | # CONFIG_SQUASHFS is not set | ||
1456 | CONFIG_VXFS_FS=m | 1497 | CONFIG_VXFS_FS=m |
1457 | # CONFIG_MINIX_FS is not set | 1498 | # CONFIG_MINIX_FS is not set |
1458 | # CONFIG_OMFS_FS is not set | 1499 | # CONFIG_OMFS_FS is not set |
@@ -1554,6 +1595,7 @@ CONFIG_NLS_UTF8=m | |||
1554 | # Library routines | 1595 | # Library routines |
1555 | # | 1596 | # |
1556 | CONFIG_BITREVERSE=y | 1597 | CONFIG_BITREVERSE=y |
1598 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1557 | # CONFIG_CRC_CCITT is not set | 1599 | # CONFIG_CRC_CCITT is not set |
1558 | # CONFIG_CRC16 is not set | 1600 | # CONFIG_CRC16 is not set |
1559 | CONFIG_CRC_T10DIF=y | 1601 | CONFIG_CRC_T10DIF=y |
@@ -1605,6 +1647,7 @@ CONFIG_DEBUG_INFO=y | |||
1605 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1647 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1606 | # CONFIG_DEBUG_LIST is not set | 1648 | # CONFIG_DEBUG_LIST is not set |
1607 | # CONFIG_DEBUG_SG is not set | 1649 | # CONFIG_DEBUG_SG is not set |
1650 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1608 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1651 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1609 | # CONFIG_RCU_TORTURE_TEST is not set | 1652 | # CONFIG_RCU_TORTURE_TEST is not set |
1610 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1653 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1614,6 +1657,8 @@ CONFIG_DEBUG_INFO=y | |||
1614 | # CONFIG_LATENCYTOP is not set | 1657 | # CONFIG_LATENCYTOP is not set |
1615 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1658 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1616 | CONFIG_HAVE_FUNCTION_TRACER=y | 1659 | CONFIG_HAVE_FUNCTION_TRACER=y |
1660 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1661 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1617 | 1662 | ||
1618 | # | 1663 | # |
1619 | # Tracers | 1664 | # Tracers |
@@ -1622,11 +1667,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1622 | # CONFIG_SCHED_TRACER is not set | 1667 | # CONFIG_SCHED_TRACER is not set |
1623 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1668 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1624 | # CONFIG_BOOT_TRACER is not set | 1669 | # CONFIG_BOOT_TRACER is not set |
1670 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1625 | # CONFIG_STACK_TRACER is not set | 1671 | # CONFIG_STACK_TRACER is not set |
1626 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1672 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1627 | # CONFIG_SAMPLES is not set | 1673 | # CONFIG_SAMPLES is not set |
1628 | CONFIG_HAVE_ARCH_KGDB=y | 1674 | CONFIG_HAVE_ARCH_KGDB=y |
1629 | # CONFIG_KGDB is not set | 1675 | # CONFIG_KGDB is not set |
1676 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1630 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1677 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1631 | # CONFIG_DEBUG_STACK_USAGE is not set | 1678 | # CONFIG_DEBUG_STACK_USAGE is not set |
1632 | # CONFIG_DEBUG_PAGEALLOC is not set | 1679 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1653,11 +1700,15 @@ CONFIG_CRYPTO=y | |||
1653 | # | 1700 | # |
1654 | # CONFIG_CRYPTO_FIPS is not set | 1701 | # CONFIG_CRYPTO_FIPS is not set |
1655 | CONFIG_CRYPTO_ALGAPI=y | 1702 | CONFIG_CRYPTO_ALGAPI=y |
1656 | CONFIG_CRYPTO_AEAD=y | 1703 | CONFIG_CRYPTO_ALGAPI2=y |
1704 | CONFIG_CRYPTO_AEAD2=y | ||
1657 | CONFIG_CRYPTO_BLKCIPHER=y | 1705 | CONFIG_CRYPTO_BLKCIPHER=y |
1706 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1658 | CONFIG_CRYPTO_HASH=y | 1707 | CONFIG_CRYPTO_HASH=y |
1659 | CONFIG_CRYPTO_RNG=y | 1708 | CONFIG_CRYPTO_HASH2=y |
1709 | CONFIG_CRYPTO_RNG2=y | ||
1660 | CONFIG_CRYPTO_MANAGER=y | 1710 | CONFIG_CRYPTO_MANAGER=y |
1711 | CONFIG_CRYPTO_MANAGER2=y | ||
1661 | # CONFIG_CRYPTO_GF128MUL is not set | 1712 | # CONFIG_CRYPTO_GF128MUL is not set |
1662 | # CONFIG_CRYPTO_NULL is not set | 1713 | # CONFIG_CRYPTO_NULL is not set |
1663 | # CONFIG_CRYPTO_CRYPTD is not set | 1714 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1691,7 +1742,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1691 | # | 1742 | # |
1692 | # Digest | 1743 | # Digest |
1693 | # | 1744 | # |
1694 | # CONFIG_CRYPTO_CRC32C is not set | 1745 | CONFIG_CRYPTO_CRC32C=m |
1695 | # CONFIG_CRYPTO_MD4 is not set | 1746 | # CONFIG_CRYPTO_MD4 is not set |
1696 | CONFIG_CRYPTO_MD5=y | 1747 | CONFIG_CRYPTO_MD5=y |
1697 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1748 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/86xx/sbc8641d_defconfig b/arch/powerpc/configs/86xx/sbc8641d_defconfig index 37d9f4ed80f5..04797e730c5a 100644 --- a/arch/powerpc/configs/86xx/sbc8641d_defconfig +++ b/arch/powerpc/configs/86xx/sbc8641d_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:40:26 2008 | 4 | # Mon Jan 26 15:36:23 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -46,7 +46,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
46 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 48 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 49 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 51 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 52 | CONFIG_OF=y |
@@ -78,12 +78,12 @@ CONFIG_BSD_PROCESS_ACCT_V3=y | |||
78 | CONFIG_IKCONFIG=y | 78 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 79 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 80 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
83 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
84 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | CONFIG_RELAY=y | 89 | CONFIG_RELAY=y |
@@ -117,7 +117,6 @@ CONFIG_SLAB=y | |||
117 | # CONFIG_SLUB is not set | 117 | # CONFIG_SLUB is not set |
118 | # CONFIG_SLOB is not set | 118 | # CONFIG_SLOB is not set |
119 | # CONFIG_PROFILING is not set | 119 | # CONFIG_PROFILING is not set |
120 | # CONFIG_MARKERS is not set | ||
121 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
122 | # CONFIG_KPROBES is not set | 121 | # CONFIG_KPROBES is not set |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +128,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 131 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 132 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 133 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,12 +135,10 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 135 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
138 | # CONFIG_MODVERSIONS is not set | 136 | # CONFIG_MODVERSIONS is not set |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_STOP_MACHINE=y | 138 | CONFIG_STOP_MACHINE=y |
142 | CONFIG_BLOCK=y | 139 | CONFIG_BLOCK=y |
143 | # CONFIG_LBD is not set | 140 | # CONFIG_LBD is not set |
144 | # CONFIG_BLK_DEV_IO_TRACE is not set | 141 | # CONFIG_BLK_DEV_IO_TRACE is not set |
145 | # CONFIG_LSF is not set | ||
146 | # CONFIG_BLK_DEV_BSG is not set | 142 | # CONFIG_BLK_DEV_BSG is not set |
147 | # CONFIG_BLK_DEV_INTEGRITY is not set | 143 | # CONFIG_BLK_DEV_INTEGRITY is not set |
148 | 144 | ||
@@ -159,6 +155,10 @@ CONFIG_DEFAULT_CFQ=y | |||
159 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
160 | CONFIG_DEFAULT_IOSCHED="cfq" | 156 | CONFIG_DEFAULT_IOSCHED="cfq" |
161 | CONFIG_CLASSIC_RCU=y | 157 | CONFIG_CLASSIC_RCU=y |
158 | # CONFIG_TREE_RCU is not set | ||
159 | # CONFIG_PREEMPT_RCU is not set | ||
160 | # CONFIG_TREE_RCU_TRACE is not set | ||
161 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
162 | # CONFIG_FREEZER is not set | 162 | # CONFIG_FREEZER is not set |
163 | 163 | ||
164 | # | 164 | # |
@@ -197,6 +197,7 @@ CONFIG_MPIC=y | |||
197 | # CONFIG_QUICC_ENGINE is not set | 197 | # CONFIG_QUICC_ENGINE is not set |
198 | # CONFIG_FSL_ULI1575 is not set | 198 | # CONFIG_FSL_ULI1575 is not set |
199 | # CONFIG_MPC8xxx_GPIO is not set | 199 | # CONFIG_MPC8xxx_GPIO is not set |
200 | # CONFIG_SIMPLE_GPIO is not set | ||
200 | 201 | ||
201 | # | 202 | # |
202 | # Kernel options | 203 | # Kernel options |
@@ -215,7 +216,6 @@ CONFIG_SCHED_HRTICK=y | |||
215 | # CONFIG_PREEMPT_NONE is not set | 216 | # CONFIG_PREEMPT_NONE is not set |
216 | # CONFIG_PREEMPT_VOLUNTARY is not set | 217 | # CONFIG_PREEMPT_VOLUNTARY is not set |
217 | CONFIG_PREEMPT=y | 218 | CONFIG_PREEMPT=y |
218 | # CONFIG_PREEMPT_RCU is not set | ||
219 | CONFIG_BINFMT_ELF=y | 219 | CONFIG_BINFMT_ELF=y |
220 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 220 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
221 | # CONFIG_HAVE_AOUT is not set | 221 | # CONFIG_HAVE_AOUT is not set |
@@ -225,6 +225,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
225 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 225 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
227 | # CONFIG_KEXEC is not set | 227 | # CONFIG_KEXEC is not set |
228 | # CONFIG_CRASH_DUMP is not set | ||
228 | CONFIG_IRQ_ALL_CPUS=y | 229 | CONFIG_IRQ_ALL_CPUS=y |
229 | CONFIG_ARCH_FLATMEM_ENABLE=y | 230 | CONFIG_ARCH_FLATMEM_ENABLE=y |
230 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 231 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -237,12 +238,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
237 | CONFIG_PAGEFLAGS_EXTENDED=y | 238 | CONFIG_PAGEFLAGS_EXTENDED=y |
238 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 239 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
239 | CONFIG_MIGRATION=y | 240 | CONFIG_MIGRATION=y |
240 | # CONFIG_RESOURCES_64BIT is not set | ||
241 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 241 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
242 | CONFIG_ZONE_DMA_FLAG=1 | 242 | CONFIG_ZONE_DMA_FLAG=1 |
243 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
244 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
245 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
246 | CONFIG_PPC_4K_PAGES=y | ||
247 | # CONFIG_PPC_16K_PAGES is not set | ||
248 | # CONFIG_PPC_64K_PAGES is not set | ||
246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
247 | # CONFIG_PROC_DEVICETREE is not set | 250 | # CONFIG_PROC_DEVICETREE is not set |
248 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
@@ -270,6 +273,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
270 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
271 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
272 | # CONFIG_PCI_DEBUG is not set | 275 | # CONFIG_PCI_DEBUG is not set |
276 | # CONFIG_PCI_STUB is not set | ||
273 | # CONFIG_PCCARD is not set | 277 | # CONFIG_PCCARD is not set |
274 | # CONFIG_HOTPLUG_PCI is not set | 278 | # CONFIG_HOTPLUG_PCI is not set |
275 | # CONFIG_HAS_RAPIDIO is not set | 279 | # CONFIG_HAS_RAPIDIO is not set |
@@ -292,6 +296,7 @@ CONFIG_NET=y | |||
292 | # | 296 | # |
293 | # Networking options | 297 | # Networking options |
294 | # | 298 | # |
299 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
295 | CONFIG_PACKET=y | 300 | CONFIG_PACKET=y |
296 | CONFIG_PACKET_MMAP=y | 301 | CONFIG_PACKET_MMAP=y |
297 | CONFIG_UNIX=y | 302 | CONFIG_UNIX=y |
@@ -501,6 +506,7 @@ CONFIG_NET_SCH_TBF=m | |||
501 | CONFIG_NET_SCH_GRED=m | 506 | CONFIG_NET_SCH_GRED=m |
502 | CONFIG_NET_SCH_DSMARK=m | 507 | CONFIG_NET_SCH_DSMARK=m |
503 | CONFIG_NET_SCH_NETEM=m | 508 | CONFIG_NET_SCH_NETEM=m |
509 | # CONFIG_NET_SCH_DRR is not set | ||
504 | 510 | ||
505 | # | 511 | # |
506 | # Classification | 512 | # Classification |
@@ -521,6 +527,7 @@ CONFIG_NET_CLS_RSVP6=m | |||
521 | # CONFIG_NET_CLS_ACT is not set | 527 | # CONFIG_NET_CLS_ACT is not set |
522 | # CONFIG_NET_CLS_IND is not set | 528 | # CONFIG_NET_CLS_IND is not set |
523 | CONFIG_NET_SCH_FIFO=y | 529 | CONFIG_NET_SCH_FIFO=y |
530 | # CONFIG_DCB is not set | ||
524 | 531 | ||
525 | # | 532 | # |
526 | # Network testing | 533 | # Network testing |
@@ -537,8 +544,9 @@ CONFIG_WIRELESS=y | |||
537 | # CONFIG_CFG80211 is not set | 544 | # CONFIG_CFG80211 is not set |
538 | CONFIG_WIRELESS_OLD_REGULATORY=y | 545 | CONFIG_WIRELESS_OLD_REGULATORY=y |
539 | # CONFIG_WIRELESS_EXT is not set | 546 | # CONFIG_WIRELESS_EXT is not set |
547 | # CONFIG_LIB80211 is not set | ||
540 | # CONFIG_MAC80211 is not set | 548 | # CONFIG_MAC80211 is not set |
541 | # CONFIG_IEEE80211 is not set | 549 | # CONFIG_WIMAX is not set |
542 | # CONFIG_RFKILL is not set | 550 | # CONFIG_RFKILL is not set |
543 | # CONFIG_NET_9P is not set | 551 | # CONFIG_NET_9P is not set |
544 | 552 | ||
@@ -561,6 +569,7 @@ CONFIG_MTD=y | |||
561 | # CONFIG_MTD_DEBUG is not set | 569 | # CONFIG_MTD_DEBUG is not set |
562 | CONFIG_MTD_CONCAT=y | 570 | CONFIG_MTD_CONCAT=y |
563 | CONFIG_MTD_PARTITIONS=y | 571 | CONFIG_MTD_PARTITIONS=y |
572 | # CONFIG_MTD_TESTS is not set | ||
564 | # CONFIG_MTD_REDBOOT_PARTS is not set | 573 | # CONFIG_MTD_REDBOOT_PARTS is not set |
565 | # CONFIG_MTD_CMDLINE_PARTS is not set | 574 | # CONFIG_MTD_CMDLINE_PARTS is not set |
566 | # CONFIG_MTD_OF_PARTS is not set | 575 | # CONFIG_MTD_OF_PARTS is not set |
@@ -637,6 +646,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
637 | # CONFIG_MTD_ONENAND is not set | 646 | # CONFIG_MTD_ONENAND is not set |
638 | 647 | ||
639 | # | 648 | # |
649 | # LPDDR flash memory drivers | ||
650 | # | ||
651 | # CONFIG_MTD_LPDDR is not set | ||
652 | # CONFIG_MTD_QINFO_PROBE is not set | ||
653 | |||
654 | # | ||
640 | # UBI - Unsorted block images | 655 | # UBI - Unsorted block images |
641 | # | 656 | # |
642 | # CONFIG_MTD_UBI is not set | 657 | # CONFIG_MTD_UBI is not set |
@@ -666,8 +681,10 @@ CONFIG_MISC_DEVICES=y | |||
666 | # CONFIG_EEPROM_93CX6 is not set | 681 | # CONFIG_EEPROM_93CX6 is not set |
667 | # CONFIG_SGI_IOC4 is not set | 682 | # CONFIG_SGI_IOC4 is not set |
668 | # CONFIG_TIFM_CORE is not set | 683 | # CONFIG_TIFM_CORE is not set |
684 | # CONFIG_ICS932S401 is not set | ||
669 | # CONFIG_ENCLOSURE_SERVICES is not set | 685 | # CONFIG_ENCLOSURE_SERVICES is not set |
670 | # CONFIG_HP_ILO is not set | 686 | # CONFIG_HP_ILO is not set |
687 | # CONFIG_C2PORT is not set | ||
671 | CONFIG_HAVE_IDE=y | 688 | CONFIG_HAVE_IDE=y |
672 | # CONFIG_IDE is not set | 689 | # CONFIG_IDE is not set |
673 | 690 | ||
@@ -734,6 +751,9 @@ CONFIG_PHYLIB=y | |||
734 | CONFIG_BROADCOM_PHY=y | 751 | CONFIG_BROADCOM_PHY=y |
735 | # CONFIG_ICPLUS_PHY is not set | 752 | # CONFIG_ICPLUS_PHY is not set |
736 | # CONFIG_REALTEK_PHY is not set | 753 | # CONFIG_REALTEK_PHY is not set |
754 | # CONFIG_NATIONAL_PHY is not set | ||
755 | # CONFIG_STE10XP is not set | ||
756 | # CONFIG_LSI_ET1011C_PHY is not set | ||
737 | # CONFIG_FIXED_PHY is not set | 757 | # CONFIG_FIXED_PHY is not set |
738 | # CONFIG_MDIO_BITBANG is not set | 758 | # CONFIG_MDIO_BITBANG is not set |
739 | CONFIG_NET_ETHERNET=y | 759 | CONFIG_NET_ETHERNET=y |
@@ -786,6 +806,10 @@ CONFIG_GIANFAR=y | |||
786 | # CONFIG_WLAN_PRE80211 is not set | 806 | # CONFIG_WLAN_PRE80211 is not set |
787 | # CONFIG_WLAN_80211 is not set | 807 | # CONFIG_WLAN_80211 is not set |
788 | # CONFIG_IWLWIFI_LEDS is not set | 808 | # CONFIG_IWLWIFI_LEDS is not set |
809 | |||
810 | # | ||
811 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
812 | # | ||
789 | # CONFIG_WAN is not set | 813 | # CONFIG_WAN is not set |
790 | CONFIG_ATM_DRIVERS=y | 814 | CONFIG_ATM_DRIVERS=y |
791 | # CONFIG_ATM_DUMMY is not set | 815 | # CONFIG_ATM_DUMMY is not set |
@@ -801,6 +825,7 @@ CONFIG_ATM_DRIVERS=y | |||
801 | # CONFIG_ATM_IA is not set | 825 | # CONFIG_ATM_IA is not set |
802 | # CONFIG_ATM_FORE200E is not set | 826 | # CONFIG_ATM_FORE200E is not set |
803 | # CONFIG_ATM_HE is not set | 827 | # CONFIG_ATM_HE is not set |
828 | # CONFIG_ATM_SOLOS is not set | ||
804 | # CONFIG_FDDI is not set | 829 | # CONFIG_FDDI is not set |
805 | # CONFIG_HIPPI is not set | 830 | # CONFIG_HIPPI is not set |
806 | CONFIG_PPP=m | 831 | CONFIG_PPP=m |
@@ -892,8 +917,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
892 | # CONFIG_SERIAL_JSM is not set | 917 | # CONFIG_SERIAL_JSM is not set |
893 | # CONFIG_SERIAL_OF_PLATFORM is not set | 918 | # CONFIG_SERIAL_OF_PLATFORM is not set |
894 | CONFIG_UNIX98_PTYS=y | 919 | CONFIG_UNIX98_PTYS=y |
920 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
895 | CONFIG_LEGACY_PTYS=y | 921 | CONFIG_LEGACY_PTYS=y |
896 | CONFIG_LEGACY_PTY_COUNT=256 | 922 | CONFIG_LEGACY_PTY_COUNT=256 |
923 | # CONFIG_HVC_UDBG is not set | ||
897 | # CONFIG_IPMI_HANDLER is not set | 924 | # CONFIG_IPMI_HANDLER is not set |
898 | CONFIG_HW_RANDOM=m | 925 | CONFIG_HW_RANDOM=m |
899 | # CONFIG_NVRAM is not set | 926 | # CONFIG_NVRAM is not set |
@@ -985,8 +1012,10 @@ CONFIG_HWMON=y | |||
985 | # CONFIG_SENSORS_ADM1029 is not set | 1012 | # CONFIG_SENSORS_ADM1029 is not set |
986 | # CONFIG_SENSORS_ADM1031 is not set | 1013 | # CONFIG_SENSORS_ADM1031 is not set |
987 | # CONFIG_SENSORS_ADM9240 is not set | 1014 | # CONFIG_SENSORS_ADM9240 is not set |
1015 | # CONFIG_SENSORS_ADT7462 is not set | ||
988 | # CONFIG_SENSORS_ADT7470 is not set | 1016 | # CONFIG_SENSORS_ADT7470 is not set |
989 | # CONFIG_SENSORS_ADT7473 is not set | 1017 | # CONFIG_SENSORS_ADT7473 is not set |
1018 | # CONFIG_SENSORS_ADT7475 is not set | ||
990 | # CONFIG_SENSORS_ATXP1 is not set | 1019 | # CONFIG_SENSORS_ATXP1 is not set |
991 | # CONFIG_SENSORS_DS1621 is not set | 1020 | # CONFIG_SENSORS_DS1621 is not set |
992 | # CONFIG_SENSORS_I5K_AMB is not set | 1021 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -1007,6 +1036,7 @@ CONFIG_HWMON=y | |||
1007 | # CONFIG_SENSORS_LM90 is not set | 1036 | # CONFIG_SENSORS_LM90 is not set |
1008 | # CONFIG_SENSORS_LM92 is not set | 1037 | # CONFIG_SENSORS_LM92 is not set |
1009 | # CONFIG_SENSORS_LM93 is not set | 1038 | # CONFIG_SENSORS_LM93 is not set |
1039 | # CONFIG_SENSORS_LTC4245 is not set | ||
1010 | # CONFIG_SENSORS_MAX1619 is not set | 1040 | # CONFIG_SENSORS_MAX1619 is not set |
1011 | # CONFIG_SENSORS_MAX6650 is not set | 1041 | # CONFIG_SENSORS_MAX6650 is not set |
1012 | # CONFIG_SENSORS_PC87360 is not set | 1042 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1047,11 +1077,11 @@ CONFIG_SOFT_WATCHDOG=m | |||
1047 | # | 1077 | # |
1048 | # CONFIG_PCIPCWATCHDOG is not set | 1078 | # CONFIG_PCIPCWATCHDOG is not set |
1049 | # CONFIG_WDTPCI is not set | 1079 | # CONFIG_WDTPCI is not set |
1080 | CONFIG_SSB_POSSIBLE=y | ||
1050 | 1081 | ||
1051 | # | 1082 | # |
1052 | # Sonics Silicon Backplane | 1083 | # Sonics Silicon Backplane |
1053 | # | 1084 | # |
1054 | CONFIG_SSB_POSSIBLE=y | ||
1055 | # CONFIG_SSB is not set | 1085 | # CONFIG_SSB is not set |
1056 | 1086 | ||
1057 | # | 1087 | # |
@@ -1060,18 +1090,13 @@ CONFIG_SSB_POSSIBLE=y | |||
1060 | # CONFIG_MFD_CORE is not set | 1090 | # CONFIG_MFD_CORE is not set |
1061 | # CONFIG_MFD_SM501 is not set | 1091 | # CONFIG_MFD_SM501 is not set |
1062 | # CONFIG_HTC_PASIC3 is not set | 1092 | # CONFIG_HTC_PASIC3 is not set |
1093 | # CONFIG_TWL4030_CORE is not set | ||
1063 | # CONFIG_MFD_TMIO is not set | 1094 | # CONFIG_MFD_TMIO is not set |
1064 | # CONFIG_PMIC_DA903X is not set | 1095 | # CONFIG_PMIC_DA903X is not set |
1065 | # CONFIG_MFD_WM8400 is not set | 1096 | # CONFIG_MFD_WM8400 is not set |
1066 | # CONFIG_MFD_WM8350_I2C is not set | 1097 | # CONFIG_MFD_WM8350_I2C is not set |
1067 | 1098 | # CONFIG_MFD_PCF50633 is not set | |
1068 | # | ||
1069 | # Voltage and Current regulators | ||
1070 | # | ||
1071 | # CONFIG_REGULATOR is not set | 1099 | # CONFIG_REGULATOR is not set |
1072 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1073 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1074 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1075 | 1100 | ||
1076 | # | 1101 | # |
1077 | # Multimedia devices | 1102 | # Multimedia devices |
@@ -1134,9 +1159,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
1134 | # | 1159 | # |
1135 | 1160 | ||
1136 | # | 1161 | # |
1137 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1162 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1138 | # | 1163 | # |
1139 | # CONFIG_USB_GADGET is not set | 1164 | # CONFIG_USB_GADGET is not set |
1165 | |||
1166 | # | ||
1167 | # OTG and related infrastructure | ||
1168 | # | ||
1140 | # CONFIG_UWB is not set | 1169 | # CONFIG_UWB is not set |
1141 | # CONFIG_MMC is not set | 1170 | # CONFIG_MMC is not set |
1142 | # CONFIG_MEMSTICK is not set | 1171 | # CONFIG_MEMSTICK is not set |
@@ -1182,11 +1211,18 @@ CONFIG_OCFS2_FS_O2CB=m | |||
1182 | CONFIG_OCFS2_FS_STATS=y | 1211 | CONFIG_OCFS2_FS_STATS=y |
1183 | CONFIG_OCFS2_DEBUG_MASKLOG=y | 1212 | CONFIG_OCFS2_DEBUG_MASKLOG=y |
1184 | # CONFIG_OCFS2_DEBUG_FS is not set | 1213 | # CONFIG_OCFS2_DEBUG_FS is not set |
1185 | # CONFIG_OCFS2_COMPAT_JBD is not set | 1214 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
1215 | # CONFIG_BTRFS_FS is not set | ||
1186 | CONFIG_DNOTIFY=y | 1216 | CONFIG_DNOTIFY=y |
1187 | CONFIG_INOTIFY=y | 1217 | CONFIG_INOTIFY=y |
1188 | CONFIG_INOTIFY_USER=y | 1218 | CONFIG_INOTIFY_USER=y |
1189 | # CONFIG_QUOTA is not set | 1219 | CONFIG_QUOTA=y |
1220 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set | ||
1221 | CONFIG_PRINT_QUOTA_WARNING=y | ||
1222 | CONFIG_QUOTA_TREE=m | ||
1223 | # CONFIG_QFMT_V1 is not set | ||
1224 | # CONFIG_QFMT_V2 is not set | ||
1225 | CONFIG_QUOTACTL=y | ||
1190 | CONFIG_AUTOFS_FS=m | 1226 | CONFIG_AUTOFS_FS=m |
1191 | CONFIG_AUTOFS4_FS=m | 1227 | CONFIG_AUTOFS4_FS=m |
1192 | # CONFIG_FUSE_FS is not set | 1228 | # CONFIG_FUSE_FS is not set |
@@ -1216,10 +1252,7 @@ CONFIG_TMPFS=y | |||
1216 | # CONFIG_TMPFS_POSIX_ACL is not set | 1252 | # CONFIG_TMPFS_POSIX_ACL is not set |
1217 | # CONFIG_HUGETLB_PAGE is not set | 1253 | # CONFIG_HUGETLB_PAGE is not set |
1218 | CONFIG_CONFIGFS_FS=m | 1254 | CONFIG_CONFIGFS_FS=m |
1219 | 1255 | CONFIG_MISC_FILESYSTEMS=y | |
1220 | # | ||
1221 | # Miscellaneous filesystems | ||
1222 | # | ||
1223 | # CONFIG_ADFS_FS is not set | 1256 | # CONFIG_ADFS_FS is not set |
1224 | # CONFIG_AFFS_FS is not set | 1257 | # CONFIG_AFFS_FS is not set |
1225 | # CONFIG_HFS_FS is not set | 1258 | # CONFIG_HFS_FS is not set |
@@ -1229,6 +1262,7 @@ CONFIG_CONFIGFS_FS=m | |||
1229 | # CONFIG_EFS_FS is not set | 1262 | # CONFIG_EFS_FS is not set |
1230 | # CONFIG_JFFS2_FS is not set | 1263 | # CONFIG_JFFS2_FS is not set |
1231 | # CONFIG_CRAMFS is not set | 1264 | # CONFIG_CRAMFS is not set |
1265 | # CONFIG_SQUASHFS is not set | ||
1232 | # CONFIG_VXFS_FS is not set | 1266 | # CONFIG_VXFS_FS is not set |
1233 | CONFIG_MINIX_FS=m | 1267 | CONFIG_MINIX_FS=m |
1234 | # CONFIG_OMFS_FS is not set | 1268 | # CONFIG_OMFS_FS is not set |
@@ -1317,6 +1351,7 @@ CONFIG_NLS_UTF8=m | |||
1317 | # Library routines | 1351 | # Library routines |
1318 | # | 1352 | # |
1319 | CONFIG_BITREVERSE=y | 1353 | CONFIG_BITREVERSE=y |
1354 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1320 | CONFIG_CRC_CCITT=m | 1355 | CONFIG_CRC_CCITT=m |
1321 | # CONFIG_CRC16 is not set | 1356 | # CONFIG_CRC16 is not set |
1322 | # CONFIG_CRC_T10DIF is not set | 1357 | # CONFIG_CRC_T10DIF is not set |
@@ -1367,6 +1402,7 @@ CONFIG_DEBUG_INFO=y | |||
1367 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1402 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1368 | # CONFIG_DEBUG_LIST is not set | 1403 | # CONFIG_DEBUG_LIST is not set |
1369 | # CONFIG_DEBUG_SG is not set | 1404 | # CONFIG_DEBUG_SG is not set |
1405 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1370 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1406 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1371 | # CONFIG_RCU_TORTURE_TEST is not set | 1407 | # CONFIG_RCU_TORTURE_TEST is not set |
1372 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1408 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1376,6 +1412,8 @@ CONFIG_DEBUG_INFO=y | |||
1376 | # CONFIG_LATENCYTOP is not set | 1412 | # CONFIG_LATENCYTOP is not set |
1377 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1413 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1378 | CONFIG_HAVE_FUNCTION_TRACER=y | 1414 | CONFIG_HAVE_FUNCTION_TRACER=y |
1415 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1416 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1379 | 1417 | ||
1380 | # | 1418 | # |
1381 | # Tracers | 1419 | # Tracers |
@@ -1385,11 +1423,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1385 | # CONFIG_SCHED_TRACER is not set | 1423 | # CONFIG_SCHED_TRACER is not set |
1386 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1424 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1387 | # CONFIG_BOOT_TRACER is not set | 1425 | # CONFIG_BOOT_TRACER is not set |
1426 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1388 | # CONFIG_STACK_TRACER is not set | 1427 | # CONFIG_STACK_TRACER is not set |
1389 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1428 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1390 | # CONFIG_SAMPLES is not set | 1429 | # CONFIG_SAMPLES is not set |
1391 | CONFIG_HAVE_ARCH_KGDB=y | 1430 | CONFIG_HAVE_ARCH_KGDB=y |
1392 | # CONFIG_KGDB is not set | 1431 | # CONFIG_KGDB is not set |
1432 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1393 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1433 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1394 | # CONFIG_DEBUG_STACK_USAGE is not set | 1434 | # CONFIG_DEBUG_STACK_USAGE is not set |
1395 | # CONFIG_DEBUG_PAGEALLOC is not set | 1435 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1411,6 +1451,7 @@ CONFIG_SECURITY=y | |||
1411 | # CONFIG_SECURITYFS is not set | 1451 | # CONFIG_SECURITYFS is not set |
1412 | CONFIG_SECURITY_NETWORK=y | 1452 | CONFIG_SECURITY_NETWORK=y |
1413 | # CONFIG_SECURITY_NETWORK_XFRM is not set | 1453 | # CONFIG_SECURITY_NETWORK_XFRM is not set |
1454 | # CONFIG_SECURITY_PATH is not set | ||
1414 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1455 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1415 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1456 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
1416 | CONFIG_CRYPTO=y | 1457 | CONFIG_CRYPTO=y |
@@ -1420,11 +1461,16 @@ CONFIG_CRYPTO=y | |||
1420 | # | 1461 | # |
1421 | # CONFIG_CRYPTO_FIPS is not set | 1462 | # CONFIG_CRYPTO_FIPS is not set |
1422 | CONFIG_CRYPTO_ALGAPI=y | 1463 | CONFIG_CRYPTO_ALGAPI=y |
1423 | CONFIG_CRYPTO_AEAD=y | 1464 | CONFIG_CRYPTO_ALGAPI2=y |
1465 | CONFIG_CRYPTO_AEAD=m | ||
1466 | CONFIG_CRYPTO_AEAD2=y | ||
1424 | CONFIG_CRYPTO_BLKCIPHER=y | 1467 | CONFIG_CRYPTO_BLKCIPHER=y |
1468 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1425 | CONFIG_CRYPTO_HASH=y | 1469 | CONFIG_CRYPTO_HASH=y |
1426 | CONFIG_CRYPTO_RNG=y | 1470 | CONFIG_CRYPTO_HASH2=y |
1471 | CONFIG_CRYPTO_RNG2=y | ||
1427 | CONFIG_CRYPTO_MANAGER=y | 1472 | CONFIG_CRYPTO_MANAGER=y |
1473 | CONFIG_CRYPTO_MANAGER2=y | ||
1428 | # CONFIG_CRYPTO_GF128MUL is not set | 1474 | # CONFIG_CRYPTO_GF128MUL is not set |
1429 | CONFIG_CRYPTO_NULL=m | 1475 | CONFIG_CRYPTO_NULL=m |
1430 | # CONFIG_CRYPTO_CRYPTD is not set | 1476 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/adder875_defconfig b/arch/powerpc/configs/adder875_defconfig index 024f279af90a..aaab5cc3751c 100644 --- a/arch/powerpc/configs/adder875_defconfig +++ b/arch/powerpc/configs/adder875_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:32 2008 | 4 | # Mon Jan 26 15:35:24 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=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_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -71,12 +72,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
72 | # CONFIG_IKCONFIG is not set | 73 | # CONFIG_IKCONFIG is not set |
73 | CONFIG_LOG_BUF_SHIFT=14 | 74 | CONFIG_LOG_BUF_SHIFT=14 |
74 | # CONFIG_CGROUPS is not set | ||
75 | CONFIG_GROUP_SCHED=y | 75 | CONFIG_GROUP_SCHED=y |
76 | CONFIG_FAIR_GROUP_SCHED=y | 76 | CONFIG_FAIR_GROUP_SCHED=y |
77 | # CONFIG_RT_GROUP_SCHED is not set | 77 | # CONFIG_RT_GROUP_SCHED is not set |
78 | CONFIG_USER_SCHED=y | 78 | CONFIG_USER_SCHED=y |
79 | # CONFIG_CGROUP_SCHED is not set | 79 | # CONFIG_CGROUP_SCHED is not set |
80 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
81 | CONFIG_SYSFS_DEPRECATED_V2=y | 82 | CONFIG_SYSFS_DEPRECATED_V2=y |
82 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
@@ -109,7 +110,6 @@ CONFIG_SLUB_DEBUG=y | |||
109 | CONFIG_SLUB=y | 110 | CONFIG_SLUB=y |
110 | # CONFIG_SLOB is not set | 111 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
115 | CONFIG_HAVE_IOREMAP_PROT=y | 115 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -119,13 +119,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
119 | CONFIG_HAVE_CLK=y | 119 | CONFIG_HAVE_CLK=y |
120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
121 | CONFIG_SLABINFO=y | 121 | CONFIG_SLABINFO=y |
122 | # CONFIG_TINY_SHMEM is not set | ||
123 | CONFIG_BASE_SMALL=1 | 122 | CONFIG_BASE_SMALL=1 |
124 | # CONFIG_MODULES is not set | 123 | # CONFIG_MODULES is not set |
125 | CONFIG_BLOCK=y | 124 | CONFIG_BLOCK=y |
126 | # CONFIG_LBD is not set | 125 | # CONFIG_LBD is not set |
127 | # CONFIG_BLK_DEV_IO_TRACE is not set | 126 | # CONFIG_BLK_DEV_IO_TRACE is not set |
128 | # CONFIG_LSF is not set | ||
129 | # CONFIG_BLK_DEV_BSG is not set | 127 | # CONFIG_BLK_DEV_BSG is not set |
130 | # CONFIG_BLK_DEV_INTEGRITY is not set | 128 | # CONFIG_BLK_DEV_INTEGRITY is not set |
131 | 129 | ||
@@ -142,6 +140,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
142 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
143 | CONFIG_DEFAULT_IOSCHED="deadline" | 141 | CONFIG_DEFAULT_IOSCHED="deadline" |
144 | CONFIG_CLASSIC_RCU=y | 142 | CONFIG_CLASSIC_RCU=y |
143 | # CONFIG_TREE_RCU is not set | ||
144 | # CONFIG_PREEMPT_RCU is not set | ||
145 | # CONFIG_TREE_RCU_TRACE is not set | ||
146 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
145 | # CONFIG_FREEZER is not set | 147 | # CONFIG_FREEZER is not set |
146 | 148 | ||
147 | # | 149 | # |
@@ -187,6 +189,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
187 | # CONFIG_QUICC_ENGINE is not set | 189 | # CONFIG_QUICC_ENGINE is not set |
188 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
189 | CONFIG_CPM=y | 191 | CONFIG_CPM=y |
192 | # CONFIG_SIMPLE_GPIO is not set | ||
190 | 193 | ||
191 | # | 194 | # |
192 | # Kernel options | 195 | # Kernel options |
@@ -205,12 +208,12 @@ CONFIG_PREEMPT_NONE=y | |||
205 | # CONFIG_PREEMPT_VOLUNTARY is not set | 208 | # CONFIG_PREEMPT_VOLUNTARY is not set |
206 | # CONFIG_PREEMPT is not set | 209 | # CONFIG_PREEMPT is not set |
207 | CONFIG_BINFMT_ELF=y | 210 | CONFIG_BINFMT_ELF=y |
208 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
209 | # CONFIG_HAVE_AOUT is not set | 211 | # CONFIG_HAVE_AOUT is not set |
210 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
211 | # CONFIG_MATH_EMULATION is not set | 213 | # CONFIG_MATH_EMULATION is not set |
212 | # CONFIG_8XX_MINIMAL_FPEMU is not set | 214 | # CONFIG_8XX_MINIMAL_FPEMU is not set |
213 | # CONFIG_IOMMU_HELPER is not set | 215 | # CONFIG_IOMMU_HELPER is not set |
216 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
215 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 218 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
216 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -225,12 +228,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
225 | CONFIG_PAGEFLAGS_EXTENDED=y | 228 | CONFIG_PAGEFLAGS_EXTENDED=y |
226 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 229 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
227 | CONFIG_MIGRATION=y | 230 | CONFIG_MIGRATION=y |
228 | # CONFIG_RESOURCES_64BIT is not set | ||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 231 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=1 | 232 | CONFIG_ZONE_DMA_FLAG=1 |
231 | CONFIG_BOUNCE=y | 233 | CONFIG_BOUNCE=y |
232 | CONFIG_VIRT_TO_BUS=y | 234 | CONFIG_VIRT_TO_BUS=y |
233 | CONFIG_UNEVICTABLE_LRU=y | 235 | CONFIG_UNEVICTABLE_LRU=y |
236 | CONFIG_PPC_4K_PAGES=y | ||
237 | # CONFIG_PPC_16K_PAGES is not set | ||
238 | # CONFIG_PPC_64K_PAGES is not set | ||
234 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
235 | # CONFIG_PROC_DEVICETREE is not set | 240 | # CONFIG_PROC_DEVICETREE is not set |
236 | # CONFIG_CMDLINE_BOOL is not set | 241 | # CONFIG_CMDLINE_BOOL is not set |
@@ -272,6 +277,7 @@ CONFIG_NET=y | |||
272 | # | 277 | # |
273 | # Networking options | 278 | # Networking options |
274 | # | 279 | # |
280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 281 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 282 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 283 | CONFIG_UNIX=y |
@@ -323,6 +329,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
323 | # CONFIG_ECONET is not set | 329 | # CONFIG_ECONET is not set |
324 | # CONFIG_WAN_ROUTER is not set | 330 | # CONFIG_WAN_ROUTER is not set |
325 | # CONFIG_NET_SCHED is not set | 331 | # CONFIG_NET_SCHED is not set |
332 | # CONFIG_DCB is not set | ||
326 | 333 | ||
327 | # | 334 | # |
328 | # Network testing | 335 | # Network testing |
@@ -338,8 +345,9 @@ CONFIG_WIRELESS=y | |||
338 | # CONFIG_CFG80211 is not set | 345 | # CONFIG_CFG80211 is not set |
339 | CONFIG_WIRELESS_OLD_REGULATORY=y | 346 | CONFIG_WIRELESS_OLD_REGULATORY=y |
340 | # CONFIG_WIRELESS_EXT is not set | 347 | # CONFIG_WIRELESS_EXT is not set |
348 | # CONFIG_LIB80211 is not set | ||
341 | # CONFIG_MAC80211 is not set | 349 | # CONFIG_MAC80211 is not set |
342 | # CONFIG_IEEE80211 is not set | 350 | # CONFIG_WIMAX is not set |
343 | # CONFIG_RFKILL is not set | 351 | # CONFIG_RFKILL is not set |
344 | # CONFIG_NET_9P is not set | 352 | # CONFIG_NET_9P is not set |
345 | 353 | ||
@@ -428,6 +436,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
428 | # CONFIG_MTD_ONENAND is not set | 436 | # CONFIG_MTD_ONENAND is not set |
429 | 437 | ||
430 | # | 438 | # |
439 | # LPDDR flash memory drivers | ||
440 | # | ||
441 | # CONFIG_MTD_LPDDR is not set | ||
442 | # CONFIG_MTD_QINFO_PROBE is not set | ||
443 | |||
444 | # | ||
431 | # UBI - Unsorted block images | 445 | # UBI - Unsorted block images |
432 | # | 446 | # |
433 | # CONFIG_MTD_UBI is not set | 447 | # CONFIG_MTD_UBI is not set |
@@ -470,6 +484,9 @@ CONFIG_DAVICOM_PHY=y | |||
470 | # CONFIG_BROADCOM_PHY is not set | 484 | # CONFIG_BROADCOM_PHY is not set |
471 | # CONFIG_ICPLUS_PHY is not set | 485 | # CONFIG_ICPLUS_PHY is not set |
472 | # CONFIG_REALTEK_PHY is not set | 486 | # CONFIG_REALTEK_PHY is not set |
487 | # CONFIG_NATIONAL_PHY is not set | ||
488 | # CONFIG_STE10XP is not set | ||
489 | # CONFIG_LSI_ET1011C_PHY is not set | ||
473 | # CONFIG_FIXED_PHY is not set | 490 | # CONFIG_FIXED_PHY is not set |
474 | # CONFIG_MDIO_BITBANG is not set | 491 | # CONFIG_MDIO_BITBANG is not set |
475 | CONFIG_NET_ETHERNET=y | 492 | CONFIG_NET_ETHERNET=y |
@@ -495,6 +512,10 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
495 | # CONFIG_WLAN_PRE80211 is not set | 512 | # CONFIG_WLAN_PRE80211 is not set |
496 | # CONFIG_WLAN_80211 is not set | 513 | # CONFIG_WLAN_80211 is not set |
497 | # CONFIG_IWLWIFI_LEDS is not set | 514 | # CONFIG_IWLWIFI_LEDS is not set |
515 | |||
516 | # | ||
517 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
518 | # | ||
498 | # CONFIG_WAN is not set | 519 | # CONFIG_WAN is not set |
499 | # CONFIG_PPP is not set | 520 | # CONFIG_PPP is not set |
500 | # CONFIG_SLIP is not set | 521 | # CONFIG_SLIP is not set |
@@ -580,7 +601,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
580 | CONFIG_SERIAL_CPM=y | 601 | CONFIG_SERIAL_CPM=y |
581 | CONFIG_SERIAL_CPM_CONSOLE=y | 602 | CONFIG_SERIAL_CPM_CONSOLE=y |
582 | CONFIG_UNIX98_PTYS=y | 603 | CONFIG_UNIX98_PTYS=y |
604 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
583 | # CONFIG_LEGACY_PTYS is not set | 605 | # CONFIG_LEGACY_PTYS is not set |
606 | # CONFIG_HVC_UDBG is not set | ||
584 | # CONFIG_IPMI_HANDLER is not set | 607 | # CONFIG_IPMI_HANDLER is not set |
585 | CONFIG_HW_RANDOM=y | 608 | CONFIG_HW_RANDOM=y |
586 | # CONFIG_NVRAM is not set | 609 | # CONFIG_NVRAM is not set |
@@ -598,11 +621,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
598 | # CONFIG_HWMON is not set | 621 | # CONFIG_HWMON is not set |
599 | CONFIG_THERMAL=y | 622 | CONFIG_THERMAL=y |
600 | # CONFIG_WATCHDOG is not set | 623 | # CONFIG_WATCHDOG is not set |
624 | CONFIG_SSB_POSSIBLE=y | ||
601 | 625 | ||
602 | # | 626 | # |
603 | # Sonics Silicon Backplane | 627 | # Sonics Silicon Backplane |
604 | # | 628 | # |
605 | CONFIG_SSB_POSSIBLE=y | ||
606 | # CONFIG_SSB is not set | 629 | # CONFIG_SSB is not set |
607 | 630 | ||
608 | # | 631 | # |
@@ -612,14 +635,7 @@ CONFIG_SSB_POSSIBLE=y | |||
612 | # CONFIG_MFD_SM501 is not set | 635 | # CONFIG_MFD_SM501 is not set |
613 | # CONFIG_HTC_PASIC3 is not set | 636 | # CONFIG_HTC_PASIC3 is not set |
614 | # CONFIG_MFD_TMIO is not set | 637 | # CONFIG_MFD_TMIO is not set |
615 | |||
616 | # | ||
617 | # Voltage and Current regulators | ||
618 | # | ||
619 | # CONFIG_REGULATOR is not set | 638 | # CONFIG_REGULATOR is not set |
620 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
621 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
622 | # CONFIG_REGULATOR_BQ24022 is not set | ||
623 | 639 | ||
624 | # | 640 | # |
625 | # Multimedia devices | 641 | # Multimedia devices |
@@ -674,6 +690,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
674 | CONFIG_FILE_LOCKING=y | 690 | CONFIG_FILE_LOCKING=y |
675 | # CONFIG_XFS_FS is not set | 691 | # CONFIG_XFS_FS is not set |
676 | # CONFIG_OCFS2_FS is not set | 692 | # CONFIG_OCFS2_FS is not set |
693 | # CONFIG_BTRFS_FS is not set | ||
677 | # CONFIG_DNOTIFY is not set | 694 | # CONFIG_DNOTIFY is not set |
678 | # CONFIG_INOTIFY is not set | 695 | # CONFIG_INOTIFY is not set |
679 | # CONFIG_QUOTA is not set | 696 | # CONFIG_QUOTA is not set |
@@ -706,10 +723,7 @@ CONFIG_TMPFS=y | |||
706 | # CONFIG_TMPFS_POSIX_ACL is not set | 723 | # CONFIG_TMPFS_POSIX_ACL is not set |
707 | # CONFIG_HUGETLB_PAGE is not set | 724 | # CONFIG_HUGETLB_PAGE is not set |
708 | # CONFIG_CONFIGFS_FS is not set | 725 | # CONFIG_CONFIGFS_FS is not set |
709 | 726 | CONFIG_MISC_FILESYSTEMS=y | |
710 | # | ||
711 | # Miscellaneous filesystems | ||
712 | # | ||
713 | # CONFIG_ADFS_FS is not set | 727 | # CONFIG_ADFS_FS is not set |
714 | # CONFIG_AFFS_FS is not set | 728 | # CONFIG_AFFS_FS is not set |
715 | # CONFIG_HFS_FS is not set | 729 | # CONFIG_HFS_FS is not set |
@@ -719,6 +733,7 @@ CONFIG_TMPFS=y | |||
719 | # CONFIG_EFS_FS is not set | 733 | # CONFIG_EFS_FS is not set |
720 | # CONFIG_JFFS2_FS is not set | 734 | # CONFIG_JFFS2_FS is not set |
721 | CONFIG_CRAMFS=y | 735 | CONFIG_CRAMFS=y |
736 | # CONFIG_SQUASHFS is not set | ||
722 | # CONFIG_VXFS_FS is not set | 737 | # CONFIG_VXFS_FS is not set |
723 | # CONFIG_MINIX_FS is not set | 738 | # CONFIG_MINIX_FS is not set |
724 | # CONFIG_OMFS_FS is not set | 739 | # CONFIG_OMFS_FS is not set |
@@ -774,6 +789,7 @@ CONFIG_MSDOS_PARTITION=y | |||
774 | # | 789 | # |
775 | # Library routines | 790 | # Library routines |
776 | # | 791 | # |
792 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
777 | # CONFIG_CRC_CCITT is not set | 793 | # CONFIG_CRC_CCITT is not set |
778 | # CONFIG_CRC16 is not set | 794 | # CONFIG_CRC16 is not set |
779 | # CONFIG_CRC_T10DIF is not set | 795 | # CONFIG_CRC_T10DIF is not set |
@@ -821,6 +837,7 @@ CONFIG_DEBUG_INFO=y | |||
821 | # CONFIG_DEBUG_MEMORY_INIT is not set | 837 | # CONFIG_DEBUG_MEMORY_INIT is not set |
822 | # CONFIG_DEBUG_LIST is not set | 838 | # CONFIG_DEBUG_LIST is not set |
823 | # CONFIG_DEBUG_SG is not set | 839 | # CONFIG_DEBUG_SG is not set |
840 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
824 | # CONFIG_BOOT_PRINTK_DELAY is not set | 841 | # CONFIG_BOOT_PRINTK_DELAY is not set |
825 | # CONFIG_RCU_TORTURE_TEST is not set | 842 | # CONFIG_RCU_TORTURE_TEST is not set |
826 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 843 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -829,6 +846,8 @@ CONFIG_DEBUG_INFO=y | |||
829 | # CONFIG_FAULT_INJECTION is not set | 846 | # CONFIG_FAULT_INJECTION is not set |
830 | # CONFIG_LATENCYTOP is not set | 847 | # CONFIG_LATENCYTOP is not set |
831 | CONFIG_HAVE_FUNCTION_TRACER=y | 848 | CONFIG_HAVE_FUNCTION_TRACER=y |
849 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
850 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
832 | 851 | ||
833 | # | 852 | # |
834 | # Tracers | 853 | # Tracers |
@@ -837,11 +856,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
837 | # CONFIG_SCHED_TRACER is not set | 856 | # CONFIG_SCHED_TRACER is not set |
838 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 857 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
839 | # CONFIG_BOOT_TRACER is not set | 858 | # CONFIG_BOOT_TRACER is not set |
859 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
840 | # CONFIG_STACK_TRACER is not set | 860 | # CONFIG_STACK_TRACER is not set |
841 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 861 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
842 | # CONFIG_SAMPLES is not set | 862 | # CONFIG_SAMPLES is not set |
843 | CONFIG_HAVE_ARCH_KGDB=y | 863 | CONFIG_HAVE_ARCH_KGDB=y |
844 | # CONFIG_KGDB is not set | 864 | # CONFIG_KGDB is not set |
865 | CONFIG_PRINT_STACK_DEPTH=64 | ||
845 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 866 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
846 | # CONFIG_DEBUG_STACK_USAGE is not set | 867 | # CONFIG_DEBUG_STACK_USAGE is not set |
847 | # CONFIG_DEBUG_PAGEALLOC is not set | 868 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/c2k_defconfig b/arch/powerpc/configs/c2k_defconfig index 74c6feabdd77..5103319a7f56 100644 --- a/arch/powerpc/configs/c2k_defconfig +++ b/arch/powerpc/configs/c2k_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:34 2008 | 4 | # Mon Jan 26 15:35:26 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -78,12 +78,12 @@ CONFIG_AUDITSYSCALL=y | |||
78 | CONFIG_AUDIT_TREE=y | 78 | CONFIG_AUDIT_TREE=y |
79 | # CONFIG_IKCONFIG is not set | 79 | # CONFIG_IKCONFIG is not set |
80 | CONFIG_LOG_BUF_SHIFT=17 | 80 | CONFIG_LOG_BUF_SHIFT=17 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 81 | CONFIG_GROUP_SCHED=y |
83 | CONFIG_FAIR_GROUP_SCHED=y | 82 | CONFIG_FAIR_GROUP_SCHED=y |
84 | # CONFIG_RT_GROUP_SCHED is not set | 83 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 84 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 85 | # CONFIG_CGROUP_SCHED is not set |
86 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 87 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 88 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 89 | # CONFIG_RELAY is not set |
@@ -122,6 +122,7 @@ CONFIG_SLUB_DEBUG=y | |||
122 | CONFIG_SLUB=y | 122 | CONFIG_SLUB=y |
123 | # CONFIG_SLOB is not set | 123 | # CONFIG_SLOB is not set |
124 | CONFIG_PROFILING=y | 124 | CONFIG_PROFILING=y |
125 | CONFIG_TRACEPOINTS=y | ||
125 | # CONFIG_MARKERS is not set | 126 | # CONFIG_MARKERS is not set |
126 | CONFIG_OPROFILE=m | 127 | CONFIG_OPROFILE=m |
127 | CONFIG_HAVE_OPROFILE=y | 128 | CONFIG_HAVE_OPROFILE=y |
@@ -135,7 +136,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
135 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 136 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
136 | CONFIG_SLABINFO=y | 137 | CONFIG_SLABINFO=y |
137 | CONFIG_RT_MUTEXES=y | 138 | CONFIG_RT_MUTEXES=y |
138 | # CONFIG_TINY_SHMEM is not set | ||
139 | CONFIG_BASE_SMALL=0 | 139 | CONFIG_BASE_SMALL=0 |
140 | CONFIG_MODULES=y | 140 | CONFIG_MODULES=y |
141 | # CONFIG_MODULE_FORCE_LOAD is not set | 141 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -143,11 +143,9 @@ CONFIG_MODULE_UNLOAD=y | |||
143 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 143 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
144 | CONFIG_MODVERSIONS=y | 144 | CONFIG_MODVERSIONS=y |
145 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 145 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
146 | CONFIG_KMOD=y | ||
147 | CONFIG_BLOCK=y | 146 | CONFIG_BLOCK=y |
148 | CONFIG_LBD=y | 147 | CONFIG_LBD=y |
149 | # CONFIG_BLK_DEV_IO_TRACE is not set | 148 | # CONFIG_BLK_DEV_IO_TRACE is not set |
150 | # CONFIG_LSF is not set | ||
151 | # CONFIG_BLK_DEV_BSG is not set | 149 | # CONFIG_BLK_DEV_BSG is not set |
152 | # CONFIG_BLK_DEV_INTEGRITY is not set | 150 | # CONFIG_BLK_DEV_INTEGRITY is not set |
153 | 151 | ||
@@ -164,6 +162,10 @@ CONFIG_DEFAULT_CFQ=y | |||
164 | # CONFIG_DEFAULT_NOOP is not set | 162 | # CONFIG_DEFAULT_NOOP is not set |
165 | CONFIG_DEFAULT_IOSCHED="cfq" | 163 | CONFIG_DEFAULT_IOSCHED="cfq" |
166 | CONFIG_CLASSIC_RCU=y | 164 | CONFIG_CLASSIC_RCU=y |
165 | # CONFIG_TREE_RCU is not set | ||
166 | # CONFIG_PREEMPT_RCU is not set | ||
167 | # CONFIG_TREE_RCU_TRACE is not set | ||
168 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
167 | # CONFIG_FREEZER is not set | 169 | # CONFIG_FREEZER is not set |
168 | 170 | ||
169 | # | 171 | # |
@@ -221,6 +223,7 @@ CONFIG_CPU_FREQ_GOV_ONDEMAND=m | |||
221 | # | 223 | # |
222 | # CONFIG_TAU is not set | 224 | # CONFIG_TAU is not set |
223 | # CONFIG_FSL_ULI1575 is not set | 225 | # CONFIG_FSL_ULI1575 is not set |
226 | # CONFIG_SIMPLE_GPIO is not set | ||
224 | 227 | ||
225 | # | 228 | # |
226 | # Kernel options | 229 | # Kernel options |
@@ -243,10 +246,12 @@ CONFIG_BINFMT_ELF=y | |||
243 | # CONFIG_HAVE_AOUT is not set | 246 | # CONFIG_HAVE_AOUT is not set |
244 | CONFIG_BINFMT_MISC=y | 247 | CONFIG_BINFMT_MISC=y |
245 | # CONFIG_IOMMU_HELPER is not set | 248 | # CONFIG_IOMMU_HELPER is not set |
249 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
246 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 250 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
247 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 251 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
248 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 252 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
249 | # CONFIG_KEXEC is not set | 253 | # CONFIG_KEXEC is not set |
254 | # CONFIG_CRASH_DUMP is not set | ||
250 | CONFIG_ARCH_FLATMEM_ENABLE=y | 255 | CONFIG_ARCH_FLATMEM_ENABLE=y |
251 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 256 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
252 | CONFIG_SELECT_MEMORY_MODEL=y | 257 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -258,12 +263,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
258 | CONFIG_PAGEFLAGS_EXTENDED=y | 263 | CONFIG_PAGEFLAGS_EXTENDED=y |
259 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 264 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
260 | CONFIG_MIGRATION=y | 265 | CONFIG_MIGRATION=y |
261 | # CONFIG_RESOURCES_64BIT is not set | ||
262 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 266 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
263 | CONFIG_ZONE_DMA_FLAG=1 | 267 | CONFIG_ZONE_DMA_FLAG=1 |
264 | CONFIG_BOUNCE=y | 268 | CONFIG_BOUNCE=y |
265 | CONFIG_VIRT_TO_BUS=y | 269 | CONFIG_VIRT_TO_BUS=y |
266 | CONFIG_UNEVICTABLE_LRU=y | 270 | CONFIG_UNEVICTABLE_LRU=y |
271 | CONFIG_PPC_4K_PAGES=y | ||
272 | # CONFIG_PPC_16K_PAGES is not set | ||
273 | # CONFIG_PPC_64K_PAGES is not set | ||
267 | CONFIG_FORCE_MAX_ZONEORDER=11 | 274 | CONFIG_FORCE_MAX_ZONEORDER=11 |
268 | # CONFIG_PROC_DEVICETREE is not set | 275 | # CONFIG_PROC_DEVICETREE is not set |
269 | # CONFIG_CMDLINE_BOOL is not set | 276 | # CONFIG_CMDLINE_BOOL is not set |
@@ -287,6 +294,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
287 | CONFIG_PCI_MSI=y | 294 | CONFIG_PCI_MSI=y |
288 | # CONFIG_PCI_LEGACY is not set | 295 | # CONFIG_PCI_LEGACY is not set |
289 | # CONFIG_PCI_DEBUG is not set | 296 | # CONFIG_PCI_DEBUG is not set |
297 | # CONFIG_PCI_STUB is not set | ||
290 | # CONFIG_PCCARD is not set | 298 | # CONFIG_PCCARD is not set |
291 | CONFIG_HOTPLUG_PCI=y | 299 | CONFIG_HOTPLUG_PCI=y |
292 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 300 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
@@ -314,6 +322,8 @@ CONFIG_NET=y | |||
314 | # | 322 | # |
315 | # Networking options | 323 | # Networking options |
316 | # | 324 | # |
325 | # CONFIG_NET_NS is not set | ||
326 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
317 | CONFIG_PACKET=y | 327 | CONFIG_PACKET=y |
318 | CONFIG_PACKET_MMAP=y | 328 | CONFIG_PACKET_MMAP=y |
319 | CONFIG_UNIX=y | 329 | CONFIG_UNIX=y |
@@ -574,6 +584,7 @@ CONFIG_NET_SCH_TBF=m | |||
574 | CONFIG_NET_SCH_GRED=m | 584 | CONFIG_NET_SCH_GRED=m |
575 | CONFIG_NET_SCH_DSMARK=m | 585 | CONFIG_NET_SCH_DSMARK=m |
576 | CONFIG_NET_SCH_NETEM=m | 586 | CONFIG_NET_SCH_NETEM=m |
587 | # CONFIG_NET_SCH_DRR is not set | ||
577 | 588 | ||
578 | # | 589 | # |
579 | # Classification | 590 | # Classification |
@@ -594,6 +605,7 @@ CONFIG_NET_CLS_RSVP6=m | |||
594 | # CONFIG_NET_CLS_ACT is not set | 605 | # CONFIG_NET_CLS_ACT is not set |
595 | CONFIG_NET_CLS_IND=y | 606 | CONFIG_NET_CLS_IND=y |
596 | CONFIG_NET_SCH_FIFO=y | 607 | CONFIG_NET_SCH_FIFO=y |
608 | # CONFIG_DCB is not set | ||
597 | 609 | ||
598 | # | 610 | # |
599 | # Network testing | 611 | # Network testing |
@@ -616,8 +628,6 @@ CONFIG_BT_HIDP=m | |||
616 | # | 628 | # |
617 | # Bluetooth device drivers | 629 | # Bluetooth device drivers |
618 | # | 630 | # |
619 | CONFIG_BT_HCIUSB=m | ||
620 | CONFIG_BT_HCIUSB_SCO=y | ||
621 | # CONFIG_BT_HCIBTUSB is not set | 631 | # CONFIG_BT_HCIBTUSB is not set |
622 | CONFIG_BT_HCIUART=m | 632 | CONFIG_BT_HCIUART=m |
623 | CONFIG_BT_HCIUART_H4=y | 633 | CONFIG_BT_HCIUART_H4=y |
@@ -635,12 +645,9 @@ CONFIG_WIRELESS=y | |||
635 | CONFIG_WIRELESS_OLD_REGULATORY=y | 645 | CONFIG_WIRELESS_OLD_REGULATORY=y |
636 | CONFIG_WIRELESS_EXT=y | 646 | CONFIG_WIRELESS_EXT=y |
637 | CONFIG_WIRELESS_EXT_SYSFS=y | 647 | CONFIG_WIRELESS_EXT_SYSFS=y |
648 | # CONFIG_LIB80211 is not set | ||
638 | # CONFIG_MAC80211 is not set | 649 | # CONFIG_MAC80211 is not set |
639 | CONFIG_IEEE80211=m | 650 | # CONFIG_WIMAX is not set |
640 | # CONFIG_IEEE80211_DEBUG is not set | ||
641 | CONFIG_IEEE80211_CRYPT_WEP=m | ||
642 | CONFIG_IEEE80211_CRYPT_CCMP=m | ||
643 | CONFIG_IEEE80211_CRYPT_TKIP=m | ||
644 | # CONFIG_RFKILL is not set | 651 | # CONFIG_RFKILL is not set |
645 | # CONFIG_NET_9P is not set | 652 | # CONFIG_NET_9P is not set |
646 | 653 | ||
@@ -665,6 +672,7 @@ CONFIG_MTD=y | |||
665 | # CONFIG_MTD_DEBUG is not set | 672 | # CONFIG_MTD_DEBUG is not set |
666 | CONFIG_MTD_CONCAT=m | 673 | CONFIG_MTD_CONCAT=m |
667 | CONFIG_MTD_PARTITIONS=y | 674 | CONFIG_MTD_PARTITIONS=y |
675 | # CONFIG_MTD_TESTS is not set | ||
668 | # CONFIG_MTD_REDBOOT_PARTS is not set | 676 | # CONFIG_MTD_REDBOOT_PARTS is not set |
669 | # CONFIG_MTD_CMDLINE_PARTS is not set | 677 | # CONFIG_MTD_CMDLINE_PARTS is not set |
670 | CONFIG_MTD_OF_PARTS=y | 678 | CONFIG_MTD_OF_PARTS=y |
@@ -737,6 +745,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
737 | # CONFIG_MTD_ONENAND is not set | 745 | # CONFIG_MTD_ONENAND is not set |
738 | 746 | ||
739 | # | 747 | # |
748 | # LPDDR flash memory drivers | ||
749 | # | ||
750 | # CONFIG_MTD_LPDDR is not set | ||
751 | # CONFIG_MTD_QINFO_PROBE is not set | ||
752 | |||
753 | # | ||
740 | # UBI - Unsorted block images | 754 | # UBI - Unsorted block images |
741 | # | 755 | # |
742 | # CONFIG_MTD_UBI is not set | 756 | # CONFIG_MTD_UBI is not set |
@@ -834,6 +848,8 @@ CONFIG_MEGARAID_MAILBOX=m | |||
834 | CONFIG_MEGARAID_SAS=m | 848 | CONFIG_MEGARAID_SAS=m |
835 | # CONFIG_SCSI_HPTIOP is not set | 849 | # CONFIG_SCSI_HPTIOP is not set |
836 | # CONFIG_SCSI_BUSLOGIC is not set | 850 | # CONFIG_SCSI_BUSLOGIC is not set |
851 | # CONFIG_LIBFC is not set | ||
852 | # CONFIG_FCOE is not set | ||
837 | # CONFIG_SCSI_DMX3191D is not set | 853 | # CONFIG_SCSI_DMX3191D is not set |
838 | # CONFIG_SCSI_EATA is not set | 854 | # CONFIG_SCSI_EATA is not set |
839 | CONFIG_SCSI_FUTURE_DOMAIN=m | 855 | CONFIG_SCSI_FUTURE_DOMAIN=m |
@@ -852,6 +868,7 @@ CONFIG_SCSI_QLOGIC_1280=m | |||
852 | # CONFIG_SCSI_QLA_FC is not set | 868 | # CONFIG_SCSI_QLA_FC is not set |
853 | # CONFIG_SCSI_QLA_ISCSI is not set | 869 | # CONFIG_SCSI_QLA_ISCSI is not set |
854 | CONFIG_SCSI_LPFC=m | 870 | CONFIG_SCSI_LPFC=m |
871 | # CONFIG_SCSI_LPFC_DEBUG_FS is not set | ||
855 | # CONFIG_SCSI_DC395x is not set | 872 | # CONFIG_SCSI_DC395x is not set |
856 | # CONFIG_SCSI_DC390T is not set | 873 | # CONFIG_SCSI_DC390T is not set |
857 | # CONFIG_SCSI_NSP32 is not set | 874 | # CONFIG_SCSI_NSP32 is not set |
@@ -896,6 +913,9 @@ CONFIG_VITESSE_PHY=y | |||
896 | # CONFIG_BROADCOM_PHY is not set | 913 | # CONFIG_BROADCOM_PHY is not set |
897 | # CONFIG_ICPLUS_PHY is not set | 914 | # CONFIG_ICPLUS_PHY is not set |
898 | # CONFIG_REALTEK_PHY is not set | 915 | # CONFIG_REALTEK_PHY is not set |
916 | # CONFIG_NATIONAL_PHY is not set | ||
917 | # CONFIG_STE10XP is not set | ||
918 | # CONFIG_LSI_ET1011C_PHY is not set | ||
899 | # CONFIG_FIXED_PHY is not set | 919 | # CONFIG_FIXED_PHY is not set |
900 | # CONFIG_MDIO_BITBANG is not set | 920 | # CONFIG_MDIO_BITBANG is not set |
901 | CONFIG_NET_ETHERNET=y | 921 | CONFIG_NET_ETHERNET=y |
@@ -949,6 +969,10 @@ CONFIG_MV643XX_ETH=y | |||
949 | # CONFIG_IWLWIFI_LEDS is not set | 969 | # CONFIG_IWLWIFI_LEDS is not set |
950 | 970 | ||
951 | # | 971 | # |
972 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
973 | # | ||
974 | |||
975 | # | ||
952 | # USB Network Adapters | 976 | # USB Network Adapters |
953 | # | 977 | # |
954 | # CONFIG_USB_CATC is not set | 978 | # CONFIG_USB_CATC is not set |
@@ -1055,7 +1079,9 @@ CONFIG_SERIAL_CORE=y | |||
1055 | CONFIG_SERIAL_CORE_CONSOLE=y | 1079 | CONFIG_SERIAL_CORE_CONSOLE=y |
1056 | # CONFIG_SERIAL_JSM is not set | 1080 | # CONFIG_SERIAL_JSM is not set |
1057 | CONFIG_UNIX98_PTYS=y | 1081 | CONFIG_UNIX98_PTYS=y |
1082 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
1058 | # CONFIG_LEGACY_PTYS is not set | 1083 | # CONFIG_LEGACY_PTYS is not set |
1084 | # CONFIG_HVC_UDBG is not set | ||
1059 | # CONFIG_IPMI_HANDLER is not set | 1085 | # CONFIG_IPMI_HANDLER is not set |
1060 | CONFIG_HW_RANDOM=m | 1086 | CONFIG_HW_RANDOM=m |
1061 | CONFIG_NVRAM=m | 1087 | CONFIG_NVRAM=m |
@@ -1151,8 +1177,10 @@ CONFIG_SENSORS_ADM1026=m | |||
1151 | # CONFIG_SENSORS_ADM1029 is not set | 1177 | # CONFIG_SENSORS_ADM1029 is not set |
1152 | CONFIG_SENSORS_ADM1031=m | 1178 | CONFIG_SENSORS_ADM1031=m |
1153 | # CONFIG_SENSORS_ADM9240 is not set | 1179 | # CONFIG_SENSORS_ADM9240 is not set |
1180 | # CONFIG_SENSORS_ADT7462 is not set | ||
1154 | # CONFIG_SENSORS_ADT7470 is not set | 1181 | # CONFIG_SENSORS_ADT7470 is not set |
1155 | # CONFIG_SENSORS_ADT7473 is not set | 1182 | # CONFIG_SENSORS_ADT7473 is not set |
1183 | # CONFIG_SENSORS_ADT7475 is not set | ||
1156 | # CONFIG_SENSORS_ATXP1 is not set | 1184 | # CONFIG_SENSORS_ATXP1 is not set |
1157 | CONFIG_SENSORS_DS1621=m | 1185 | CONFIG_SENSORS_DS1621=m |
1158 | # CONFIG_SENSORS_I5K_AMB is not set | 1186 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -1173,6 +1201,7 @@ CONFIG_SENSORS_LM87=m | |||
1173 | CONFIG_SENSORS_LM90=m | 1201 | CONFIG_SENSORS_LM90=m |
1174 | # CONFIG_SENSORS_LM92 is not set | 1202 | # CONFIG_SENSORS_LM92 is not set |
1175 | # CONFIG_SENSORS_LM93 is not set | 1203 | # CONFIG_SENSORS_LM93 is not set |
1204 | # CONFIG_SENSORS_LTC4245 is not set | ||
1176 | CONFIG_SENSORS_MAX1619=m | 1205 | CONFIG_SENSORS_MAX1619=m |
1177 | # CONFIG_SENSORS_MAX6650 is not set | 1206 | # CONFIG_SENSORS_MAX6650 is not set |
1178 | # CONFIG_SENSORS_PC87360 is not set | 1207 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1218,11 +1247,11 @@ CONFIG_WDT_501_PCI=y | |||
1218 | # USB-based Watchdog Cards | 1247 | # USB-based Watchdog Cards |
1219 | # | 1248 | # |
1220 | CONFIG_USBPCWATCHDOG=m | 1249 | CONFIG_USBPCWATCHDOG=m |
1250 | CONFIG_SSB_POSSIBLE=y | ||
1221 | 1251 | ||
1222 | # | 1252 | # |
1223 | # Sonics Silicon Backplane | 1253 | # Sonics Silicon Backplane |
1224 | # | 1254 | # |
1225 | CONFIG_SSB_POSSIBLE=y | ||
1226 | # CONFIG_SSB is not set | 1255 | # CONFIG_SSB is not set |
1227 | 1256 | ||
1228 | # | 1257 | # |
@@ -1234,14 +1263,8 @@ CONFIG_SSB_POSSIBLE=y | |||
1234 | # CONFIG_MFD_TMIO is not set | 1263 | # CONFIG_MFD_TMIO is not set |
1235 | # CONFIG_MFD_WM8400 is not set | 1264 | # CONFIG_MFD_WM8400 is not set |
1236 | # CONFIG_MFD_WM8350_I2C is not set | 1265 | # CONFIG_MFD_WM8350_I2C is not set |
1237 | 1266 | # CONFIG_MFD_PCF50633 is not set | |
1238 | # | ||
1239 | # Voltage and Current regulators | ||
1240 | # | ||
1241 | # CONFIG_REGULATOR is not set | 1267 | # CONFIG_REGULATOR is not set |
1242 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1243 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1244 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1245 | 1268 | ||
1246 | # | 1269 | # |
1247 | # Multimedia devices | 1270 | # Multimedia devices |
@@ -1298,7 +1321,7 @@ CONFIG_USB_DEVICEFS=y | |||
1298 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1321 | # CONFIG_USB_DYNAMIC_MINORS is not set |
1299 | CONFIG_USB_SUSPEND=y | 1322 | CONFIG_USB_SUSPEND=y |
1300 | # CONFIG_USB_OTG is not set | 1323 | # CONFIG_USB_OTG is not set |
1301 | CONFIG_USB_MON=y | 1324 | CONFIG_USB_MON=m |
1302 | # CONFIG_USB_WUSB is not set | 1325 | # CONFIG_USB_WUSB is not set |
1303 | # CONFIG_USB_WUSB_CBAF is not set | 1326 | # CONFIG_USB_WUSB_CBAF is not set |
1304 | 1327 | ||
@@ -1310,6 +1333,7 @@ CONFIG_USB_EHCI_HCD=m | |||
1310 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 1333 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
1311 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1334 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1312 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1335 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1336 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1313 | # CONFIG_USB_ISP116X_HCD is not set | 1337 | # CONFIG_USB_ISP116X_HCD is not set |
1314 | # CONFIG_USB_ISP1760_HCD is not set | 1338 | # CONFIG_USB_ISP1760_HCD is not set |
1315 | CONFIG_USB_OHCI_HCD=m | 1339 | CONFIG_USB_OHCI_HCD=m |
@@ -1339,18 +1363,17 @@ CONFIG_USB_PRINTER=m | |||
1339 | # CONFIG_USB_TMC is not set | 1363 | # CONFIG_USB_TMC is not set |
1340 | 1364 | ||
1341 | # | 1365 | # |
1342 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1366 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1343 | # | 1367 | # |
1344 | 1368 | ||
1345 | # | 1369 | # |
1346 | # may also be needed; see USB_STORAGE Help for more information | 1370 | # see USB_STORAGE Help for more information |
1347 | # | 1371 | # |
1348 | CONFIG_USB_STORAGE=m | 1372 | CONFIG_USB_STORAGE=m |
1349 | # CONFIG_USB_STORAGE_DEBUG is not set | 1373 | # CONFIG_USB_STORAGE_DEBUG is not set |
1350 | CONFIG_USB_STORAGE_DATAFAB=y | 1374 | CONFIG_USB_STORAGE_DATAFAB=y |
1351 | CONFIG_USB_STORAGE_FREECOM=y | 1375 | CONFIG_USB_STORAGE_FREECOM=y |
1352 | CONFIG_USB_STORAGE_ISD200=y | 1376 | CONFIG_USB_STORAGE_ISD200=y |
1353 | CONFIG_USB_STORAGE_DPCM=y | ||
1354 | # CONFIG_USB_STORAGE_USBAT is not set | 1377 | # CONFIG_USB_STORAGE_USBAT is not set |
1355 | CONFIG_USB_STORAGE_SDDR09=y | 1378 | CONFIG_USB_STORAGE_SDDR09=y |
1356 | CONFIG_USB_STORAGE_SDDR55=y | 1379 | CONFIG_USB_STORAGE_SDDR55=y |
@@ -1419,12 +1442,14 @@ CONFIG_USB_SERIAL_PL2303=m | |||
1419 | # CONFIG_USB_SERIAL_HP4X is not set | 1442 | # CONFIG_USB_SERIAL_HP4X is not set |
1420 | CONFIG_USB_SERIAL_SAFE=m | 1443 | CONFIG_USB_SERIAL_SAFE=m |
1421 | CONFIG_USB_SERIAL_SAFE_PADDED=y | 1444 | CONFIG_USB_SERIAL_SAFE_PADDED=y |
1445 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | ||
1422 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1446 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
1423 | # CONFIG_USB_SERIAL_TI is not set | 1447 | # CONFIG_USB_SERIAL_TI is not set |
1424 | CONFIG_USB_SERIAL_CYBERJACK=m | 1448 | CONFIG_USB_SERIAL_CYBERJACK=m |
1425 | CONFIG_USB_SERIAL_XIRCOM=m | 1449 | CONFIG_USB_SERIAL_XIRCOM=m |
1426 | # CONFIG_USB_SERIAL_OPTION is not set | 1450 | # CONFIG_USB_SERIAL_OPTION is not set |
1427 | CONFIG_USB_SERIAL_OMNINET=m | 1451 | CONFIG_USB_SERIAL_OMNINET=m |
1452 | # CONFIG_USB_SERIAL_OPTICON is not set | ||
1428 | # CONFIG_USB_SERIAL_DEBUG is not set | 1453 | # CONFIG_USB_SERIAL_DEBUG is not set |
1429 | 1454 | ||
1430 | # | 1455 | # |
@@ -1458,6 +1483,10 @@ CONFIG_USB_SPEEDTOUCH=m | |||
1458 | # CONFIG_USB_UEAGLEATM is not set | 1483 | # CONFIG_USB_UEAGLEATM is not set |
1459 | # CONFIG_USB_XUSBATM is not set | 1484 | # CONFIG_USB_XUSBATM is not set |
1460 | # CONFIG_USB_GADGET is not set | 1485 | # CONFIG_USB_GADGET is not set |
1486 | |||
1487 | # | ||
1488 | # OTG and related infrastructure | ||
1489 | # | ||
1461 | # CONFIG_UWB is not set | 1490 | # CONFIG_UWB is not set |
1462 | # CONFIG_MMC is not set | 1491 | # CONFIG_MMC is not set |
1463 | # CONFIG_MEMSTICK is not set | 1492 | # CONFIG_MEMSTICK is not set |
@@ -1500,19 +1529,23 @@ CONFIG_EXT3_FS_POSIX_ACL=y | |||
1500 | CONFIG_EXT3_FS_SECURITY=y | 1529 | CONFIG_EXT3_FS_SECURITY=y |
1501 | # CONFIG_EXT4_FS is not set | 1530 | # CONFIG_EXT4_FS is not set |
1502 | CONFIG_JBD=m | 1531 | CONFIG_JBD=m |
1532 | # CONFIG_JBD_DEBUG is not set | ||
1503 | CONFIG_FS_MBCACHE=m | 1533 | CONFIG_FS_MBCACHE=m |
1504 | # CONFIG_REISERFS_FS is not set | 1534 | # CONFIG_REISERFS_FS is not set |
1505 | # CONFIG_JFS_FS is not set | 1535 | # CONFIG_JFS_FS is not set |
1506 | CONFIG_FS_POSIX_ACL=y | 1536 | CONFIG_FS_POSIX_ACL=y |
1507 | CONFIG_FILE_LOCKING=y | 1537 | CONFIG_FILE_LOCKING=y |
1508 | # CONFIG_XFS_FS is not set | 1538 | # CONFIG_XFS_FS is not set |
1539 | # CONFIG_GFS2_FS is not set | ||
1509 | # CONFIG_OCFS2_FS is not set | 1540 | # CONFIG_OCFS2_FS is not set |
1541 | # CONFIG_BTRFS_FS is not set | ||
1510 | CONFIG_DNOTIFY=y | 1542 | CONFIG_DNOTIFY=y |
1511 | CONFIG_INOTIFY=y | 1543 | CONFIG_INOTIFY=y |
1512 | CONFIG_INOTIFY_USER=y | 1544 | CONFIG_INOTIFY_USER=y |
1513 | CONFIG_QUOTA=y | 1545 | CONFIG_QUOTA=y |
1514 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set | 1546 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set |
1515 | CONFIG_PRINT_QUOTA_WARNING=y | 1547 | CONFIG_PRINT_QUOTA_WARNING=y |
1548 | CONFIG_QUOTA_TREE=y | ||
1516 | # CONFIG_QFMT_V1 is not set | 1549 | # CONFIG_QFMT_V1 is not set |
1517 | CONFIG_QFMT_V2=y | 1550 | CONFIG_QFMT_V2=y |
1518 | CONFIG_QUOTACTL=y | 1551 | CONFIG_QUOTACTL=y |
@@ -1549,10 +1582,7 @@ CONFIG_TMPFS=y | |||
1549 | # CONFIG_TMPFS_POSIX_ACL is not set | 1582 | # CONFIG_TMPFS_POSIX_ACL is not set |
1550 | # CONFIG_HUGETLB_PAGE is not set | 1583 | # CONFIG_HUGETLB_PAGE is not set |
1551 | # CONFIG_CONFIGFS_FS is not set | 1584 | # CONFIG_CONFIGFS_FS is not set |
1552 | 1585 | CONFIG_MISC_FILESYSTEMS=y | |
1553 | # | ||
1554 | # Miscellaneous filesystems | ||
1555 | # | ||
1556 | # CONFIG_ADFS_FS is not set | 1586 | # CONFIG_ADFS_FS is not set |
1557 | # CONFIG_AFFS_FS is not set | 1587 | # CONFIG_AFFS_FS is not set |
1558 | # CONFIG_ECRYPT_FS is not set | 1588 | # CONFIG_ECRYPT_FS is not set |
@@ -1573,6 +1603,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1573 | CONFIG_JFFS2_RTIME=y | 1603 | CONFIG_JFFS2_RTIME=y |
1574 | # CONFIG_JFFS2_RUBIN is not set | 1604 | # CONFIG_JFFS2_RUBIN is not set |
1575 | CONFIG_CRAMFS=m | 1605 | CONFIG_CRAMFS=m |
1606 | # CONFIG_SQUASHFS is not set | ||
1576 | CONFIG_VXFS_FS=m | 1607 | CONFIG_VXFS_FS=m |
1577 | # CONFIG_MINIX_FS is not set | 1608 | # CONFIG_MINIX_FS is not set |
1578 | # CONFIG_OMFS_FS is not set | 1609 | # CONFIG_OMFS_FS is not set |
@@ -1678,6 +1709,7 @@ CONFIG_NLS_UTF8=m | |||
1678 | # Library routines | 1709 | # Library routines |
1679 | # | 1710 | # |
1680 | CONFIG_BITREVERSE=y | 1711 | CONFIG_BITREVERSE=y |
1712 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1681 | CONFIG_CRC_CCITT=m | 1713 | CONFIG_CRC_CCITT=m |
1682 | # CONFIG_CRC16 is not set | 1714 | # CONFIG_CRC16 is not set |
1683 | CONFIG_CRC_T10DIF=m | 1715 | CONFIG_CRC_T10DIF=m |
@@ -1703,7 +1735,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1703 | CONFIG_FRAME_WARN=1024 | 1735 | CONFIG_FRAME_WARN=1024 |
1704 | CONFIG_MAGIC_SYSRQ=y | 1736 | CONFIG_MAGIC_SYSRQ=y |
1705 | # CONFIG_UNUSED_SYMBOLS is not set | 1737 | # CONFIG_UNUSED_SYMBOLS is not set |
1706 | # CONFIG_DEBUG_FS is not set | 1738 | CONFIG_DEBUG_FS=y |
1707 | # CONFIG_HEADERS_CHECK is not set | 1739 | # CONFIG_HEADERS_CHECK is not set |
1708 | CONFIG_DEBUG_KERNEL=y | 1740 | CONFIG_DEBUG_KERNEL=y |
1709 | # CONFIG_DEBUG_SHIRQ is not set | 1741 | # CONFIG_DEBUG_SHIRQ is not set |
@@ -1722,6 +1754,7 @@ CONFIG_DEBUG_SPINLOCK=y | |||
1722 | # CONFIG_DEBUG_MUTEXES is not set | 1754 | # CONFIG_DEBUG_MUTEXES is not set |
1723 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | 1755 | CONFIG_DEBUG_SPINLOCK_SLEEP=y |
1724 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1756 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
1757 | CONFIG_STACKTRACE=y | ||
1725 | # CONFIG_DEBUG_KOBJECT is not set | 1758 | # CONFIG_DEBUG_KOBJECT is not set |
1726 | CONFIG_DEBUG_HIGHMEM=y | 1759 | CONFIG_DEBUG_HIGHMEM=y |
1727 | CONFIG_DEBUG_BUGVERBOSE=y | 1760 | CONFIG_DEBUG_BUGVERBOSE=y |
@@ -1731,6 +1764,7 @@ CONFIG_DEBUG_INFO=y | |||
1731 | CONFIG_DEBUG_MEMORY_INIT=y | 1764 | CONFIG_DEBUG_MEMORY_INIT=y |
1732 | # CONFIG_DEBUG_LIST is not set | 1765 | # CONFIG_DEBUG_LIST is not set |
1733 | # CONFIG_DEBUG_SG is not set | 1766 | # CONFIG_DEBUG_SG is not set |
1767 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1734 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1768 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1735 | # CONFIG_RCU_TORTURE_TEST is not set | 1769 | # CONFIG_RCU_TORTURE_TEST is not set |
1736 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1770 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1741,7 +1775,12 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1741 | # CONFIG_FAULT_INJECTION is not set | 1775 | # CONFIG_FAULT_INJECTION is not set |
1742 | # CONFIG_LATENCYTOP is not set | 1776 | # CONFIG_LATENCYTOP is not set |
1743 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1777 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1778 | CONFIG_NOP_TRACER=y | ||
1744 | CONFIG_HAVE_FUNCTION_TRACER=y | 1779 | CONFIG_HAVE_FUNCTION_TRACER=y |
1780 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1781 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1782 | CONFIG_RING_BUFFER=y | ||
1783 | CONFIG_TRACING=y | ||
1745 | 1784 | ||
1746 | # | 1785 | # |
1747 | # Tracers | 1786 | # Tracers |
@@ -1750,11 +1789,14 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1750 | # CONFIG_SCHED_TRACER is not set | 1789 | # CONFIG_SCHED_TRACER is not set |
1751 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1790 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1752 | # CONFIG_BOOT_TRACER is not set | 1791 | # CONFIG_BOOT_TRACER is not set |
1792 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1753 | # CONFIG_STACK_TRACER is not set | 1793 | # CONFIG_STACK_TRACER is not set |
1794 | # CONFIG_FTRACE_STARTUP_TEST is not set | ||
1754 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1795 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1755 | # CONFIG_SAMPLES is not set | 1796 | # CONFIG_SAMPLES is not set |
1756 | CONFIG_HAVE_ARCH_KGDB=y | 1797 | CONFIG_HAVE_ARCH_KGDB=y |
1757 | # CONFIG_KGDB is not set | 1798 | # CONFIG_KGDB is not set |
1799 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1758 | CONFIG_DEBUG_STACKOVERFLOW=y | 1800 | CONFIG_DEBUG_STACKOVERFLOW=y |
1759 | CONFIG_DEBUG_STACK_USAGE=y | 1801 | CONFIG_DEBUG_STACK_USAGE=y |
1760 | # CONFIG_DEBUG_PAGEALLOC is not set | 1802 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1763,6 +1805,7 @@ CONFIG_DEBUG_STACK_USAGE=y | |||
1763 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1805 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
1764 | # CONFIG_XMON is not set | 1806 | # CONFIG_XMON is not set |
1765 | # CONFIG_IRQSTACKS is not set | 1807 | # CONFIG_IRQSTACKS is not set |
1808 | # CONFIG_VIRQ_DEBUG is not set | ||
1766 | # CONFIG_BDI_SWITCH is not set | 1809 | # CONFIG_BDI_SWITCH is not set |
1767 | CONFIG_BOOTX_TEXT=y | 1810 | CONFIG_BOOTX_TEXT=y |
1768 | # CONFIG_PPC_EARLY_DEBUG is not set | 1811 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1776,6 +1819,7 @@ CONFIG_SECURITY=y | |||
1776 | # CONFIG_SECURITYFS is not set | 1819 | # CONFIG_SECURITYFS is not set |
1777 | CONFIG_SECURITY_NETWORK=y | 1820 | CONFIG_SECURITY_NETWORK=y |
1778 | # CONFIG_SECURITY_NETWORK_XFRM is not set | 1821 | # CONFIG_SECURITY_NETWORK_XFRM is not set |
1822 | # CONFIG_SECURITY_PATH is not set | ||
1779 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1823 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1780 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1824 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
1781 | CONFIG_SECURITY_SELINUX=y | 1825 | CONFIG_SECURITY_SELINUX=y |
@@ -1785,7 +1829,6 @@ CONFIG_SECURITY_SELINUX_DISABLE=y | |||
1785 | CONFIG_SECURITY_SELINUX_DEVELOP=y | 1829 | CONFIG_SECURITY_SELINUX_DEVELOP=y |
1786 | CONFIG_SECURITY_SELINUX_AVC_STATS=y | 1830 | CONFIG_SECURITY_SELINUX_AVC_STATS=y |
1787 | CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 | 1831 | CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 |
1788 | # CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT is not set | ||
1789 | # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set | 1832 | # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set |
1790 | CONFIG_CRYPTO=y | 1833 | CONFIG_CRYPTO=y |
1791 | 1834 | ||
@@ -1794,11 +1837,16 @@ CONFIG_CRYPTO=y | |||
1794 | # | 1837 | # |
1795 | # CONFIG_CRYPTO_FIPS is not set | 1838 | # CONFIG_CRYPTO_FIPS is not set |
1796 | CONFIG_CRYPTO_ALGAPI=y | 1839 | CONFIG_CRYPTO_ALGAPI=y |
1797 | CONFIG_CRYPTO_AEAD=y | 1840 | CONFIG_CRYPTO_ALGAPI2=y |
1841 | CONFIG_CRYPTO_AEAD=m | ||
1842 | CONFIG_CRYPTO_AEAD2=y | ||
1798 | CONFIG_CRYPTO_BLKCIPHER=y | 1843 | CONFIG_CRYPTO_BLKCIPHER=y |
1844 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1799 | CONFIG_CRYPTO_HASH=y | 1845 | CONFIG_CRYPTO_HASH=y |
1800 | CONFIG_CRYPTO_RNG=y | 1846 | CONFIG_CRYPTO_HASH2=y |
1847 | CONFIG_CRYPTO_RNG2=y | ||
1801 | CONFIG_CRYPTO_MANAGER=y | 1848 | CONFIG_CRYPTO_MANAGER=y |
1849 | CONFIG_CRYPTO_MANAGER2=y | ||
1802 | # CONFIG_CRYPTO_GF128MUL is not set | 1850 | # CONFIG_CRYPTO_GF128MUL is not set |
1803 | CONFIG_CRYPTO_NULL=m | 1851 | CONFIG_CRYPTO_NULL=m |
1804 | # CONFIG_CRYPTO_CRYPTD is not set | 1852 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/ep8248e_defconfig b/arch/powerpc/configs/ep8248e_defconfig index a6f1cff564e6..add6419c15d9 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:36 2008 | 4 | # Mon Jan 26 15:35:27 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -86,6 +86,7 @@ CONFIG_EMBEDDED=y | |||
86 | CONFIG_SYSCTL_SYSCALL=y | 86 | CONFIG_SYSCTL_SYSCALL=y |
87 | CONFIG_KALLSYMS=y | 87 | CONFIG_KALLSYMS=y |
88 | CONFIG_KALLSYMS_ALL=y | 88 | CONFIG_KALLSYMS_ALL=y |
89 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
89 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
90 | CONFIG_HOTPLUG=y | 91 | CONFIG_HOTPLUG=y |
91 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
@@ -107,7 +108,6 @@ CONFIG_SLAB=y | |||
107 | # CONFIG_SLUB is not set | 108 | # CONFIG_SLUB is not set |
108 | # CONFIG_SLOB is not set | 109 | # CONFIG_SLOB is not set |
109 | # CONFIG_PROFILING is not set | 110 | # CONFIG_PROFILING is not set |
110 | # CONFIG_MARKERS is not set | ||
111 | CONFIG_HAVE_OPROFILE=y | 111 | CONFIG_HAVE_OPROFILE=y |
112 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 112 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
113 | CONFIG_HAVE_IOREMAP_PROT=y | 113 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -118,13 +118,11 @@ CONFIG_HAVE_CLK=y | |||
118 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 118 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
119 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
120 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
121 | # CONFIG_TINY_SHMEM is not set | ||
122 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
123 | # CONFIG_MODULES is not set | 122 | # CONFIG_MODULES is not set |
124 | CONFIG_BLOCK=y | 123 | CONFIG_BLOCK=y |
125 | # CONFIG_LBD is not set | 124 | # CONFIG_LBD is not set |
126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 125 | # CONFIG_BLK_DEV_IO_TRACE is not set |
127 | # CONFIG_LSF is not set | ||
128 | # CONFIG_BLK_DEV_INTEGRITY is not set | 126 | # CONFIG_BLK_DEV_INTEGRITY is not set |
129 | 127 | ||
130 | # | 128 | # |
@@ -140,6 +138,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
140 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
141 | CONFIG_DEFAULT_IOSCHED="deadline" | 139 | CONFIG_DEFAULT_IOSCHED="deadline" |
142 | CONFIG_CLASSIC_RCU=y | 140 | CONFIG_CLASSIC_RCU=y |
141 | # CONFIG_TREE_RCU is not set | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
143 | # CONFIG_TREE_RCU_TRACE is not set | ||
144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
143 | # CONFIG_FREEZER is not set | 145 | # CONFIG_FREEZER is not set |
144 | 146 | ||
145 | # | 147 | # |
@@ -181,6 +183,7 @@ CONFIG_8272=y | |||
181 | CONFIG_CPM2=y | 183 | CONFIG_CPM2=y |
182 | # CONFIG_FSL_ULI1575 is not set | 184 | # CONFIG_FSL_ULI1575 is not set |
183 | CONFIG_CPM=y | 185 | CONFIG_CPM=y |
186 | # CONFIG_SIMPLE_GPIO is not set | ||
184 | 187 | ||
185 | # | 188 | # |
186 | # Kernel options | 189 | # Kernel options |
@@ -206,6 +209,7 @@ CONFIG_BINFMT_MISC=y | |||
206 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 209 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
207 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 210 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
208 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 211 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
212 | # CONFIG_CRASH_DUMP is not set | ||
209 | CONFIG_ARCH_FLATMEM_ENABLE=y | 213 | CONFIG_ARCH_FLATMEM_ENABLE=y |
210 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 214 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
211 | CONFIG_FLATMEM=y | 215 | CONFIG_FLATMEM=y |
@@ -213,12 +217,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
213 | CONFIG_PAGEFLAGS_EXTENDED=y | 217 | CONFIG_PAGEFLAGS_EXTENDED=y |
214 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
215 | CONFIG_MIGRATION=y | 219 | CONFIG_MIGRATION=y |
216 | # CONFIG_RESOURCES_64BIT is not set | ||
217 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 220 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
218 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
219 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
220 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
221 | CONFIG_UNEVICTABLE_LRU=y | 224 | CONFIG_UNEVICTABLE_LRU=y |
225 | CONFIG_PPC_4K_PAGES=y | ||
226 | # CONFIG_PPC_16K_PAGES is not set | ||
227 | # CONFIG_PPC_64K_PAGES is not set | ||
222 | CONFIG_FORCE_MAX_ZONEORDER=11 | 228 | CONFIG_FORCE_MAX_ZONEORDER=11 |
223 | CONFIG_PROC_DEVICETREE=y | 229 | CONFIG_PROC_DEVICETREE=y |
224 | # CONFIG_CMDLINE_BOOL is not set | 230 | # CONFIG_CMDLINE_BOOL is not set |
@@ -243,6 +249,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
243 | # CONFIG_PCI_MSI is not set | 249 | # CONFIG_PCI_MSI is not set |
244 | # CONFIG_PCI_LEGACY is not set | 250 | # CONFIG_PCI_LEGACY is not set |
245 | # CONFIG_PCI_DEBUG is not set | 251 | # CONFIG_PCI_DEBUG is not set |
252 | # CONFIG_PCI_STUB is not set | ||
246 | # CONFIG_PCCARD is not set | 253 | # CONFIG_PCCARD is not set |
247 | # CONFIG_HOTPLUG_PCI is not set | 254 | # CONFIG_HOTPLUG_PCI is not set |
248 | # CONFIG_HAS_RAPIDIO is not set | 255 | # CONFIG_HAS_RAPIDIO is not set |
@@ -265,6 +272,7 @@ CONFIG_NET=y | |||
265 | # | 272 | # |
266 | # Networking options | 273 | # Networking options |
267 | # | 274 | # |
275 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
268 | CONFIG_PACKET=y | 276 | CONFIG_PACKET=y |
269 | # CONFIG_PACKET_MMAP is not set | 277 | # CONFIG_PACKET_MMAP is not set |
270 | CONFIG_UNIX=y | 278 | CONFIG_UNIX=y |
@@ -346,6 +354,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
346 | # CONFIG_IPX is not set | 354 | # CONFIG_IPX is not set |
347 | # CONFIG_ATALK is not set | 355 | # CONFIG_ATALK is not set |
348 | # CONFIG_NET_SCHED is not set | 356 | # CONFIG_NET_SCHED is not set |
357 | # CONFIG_DCB is not set | ||
349 | 358 | ||
350 | # | 359 | # |
351 | # Network testing | 360 | # Network testing |
@@ -360,8 +369,9 @@ CONFIG_WIRELESS=y | |||
360 | # CONFIG_CFG80211 is not set | 369 | # CONFIG_CFG80211 is not set |
361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 370 | CONFIG_WIRELESS_OLD_REGULATORY=y |
362 | # CONFIG_WIRELESS_EXT is not set | 371 | # CONFIG_WIRELESS_EXT is not set |
372 | # CONFIG_LIB80211 is not set | ||
363 | # CONFIG_MAC80211 is not set | 373 | # CONFIG_MAC80211 is not set |
364 | # CONFIG_IEEE80211 is not set | 374 | # CONFIG_WIMAX is not set |
365 | # CONFIG_RFKILL is not set | 375 | # CONFIG_RFKILL is not set |
366 | 376 | ||
367 | # | 377 | # |
@@ -455,6 +465,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
455 | # CONFIG_MTD_ONENAND is not set | 465 | # CONFIG_MTD_ONENAND is not set |
456 | 466 | ||
457 | # | 467 | # |
468 | # LPDDR flash memory drivers | ||
469 | # | ||
470 | # CONFIG_MTD_LPDDR is not set | ||
471 | # CONFIG_MTD_QINFO_PROBE is not set | ||
472 | |||
473 | # | ||
458 | # UBI - Unsorted block images | 474 | # UBI - Unsorted block images |
459 | # | 475 | # |
460 | # CONFIG_MTD_UBI is not set | 476 | # CONFIG_MTD_UBI is not set |
@@ -522,9 +538,12 @@ CONFIG_DAVICOM_PHY=y | |||
522 | # CONFIG_BROADCOM_PHY is not set | 538 | # CONFIG_BROADCOM_PHY is not set |
523 | # CONFIG_ICPLUS_PHY is not set | 539 | # CONFIG_ICPLUS_PHY is not set |
524 | # CONFIG_REALTEK_PHY is not set | 540 | # CONFIG_REALTEK_PHY is not set |
541 | # CONFIG_NATIONAL_PHY is not set | ||
542 | # CONFIG_STE10XP is not set | ||
543 | # CONFIG_LSI_ET1011C_PHY is not set | ||
525 | # CONFIG_FIXED_PHY is not set | 544 | # CONFIG_FIXED_PHY is not set |
526 | CONFIG_MDIO_BITBANG=y | 545 | CONFIG_MDIO_BITBANG=y |
527 | # CONFIG_MDIO_OF_GPIO is not set | 546 | # CONFIG_MDIO_GPIO is not set |
528 | CONFIG_NET_ETHERNET=y | 547 | CONFIG_NET_ETHERNET=y |
529 | CONFIG_MII=y | 548 | CONFIG_MII=y |
530 | # CONFIG_HAPPYMEAL is not set | 549 | # CONFIG_HAPPYMEAL is not set |
@@ -569,6 +588,7 @@ CONFIG_NETDEV_1000=y | |||
569 | # CONFIG_JME is not set | 588 | # CONFIG_JME is not set |
570 | CONFIG_NETDEV_10000=y | 589 | CONFIG_NETDEV_10000=y |
571 | # CONFIG_CHELSIO_T1 is not set | 590 | # CONFIG_CHELSIO_T1 is not set |
591 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
572 | # CONFIG_CHELSIO_T3 is not set | 592 | # CONFIG_CHELSIO_T3 is not set |
573 | # CONFIG_ENIC is not set | 593 | # CONFIG_ENIC is not set |
574 | # CONFIG_IXGBE is not set | 594 | # CONFIG_IXGBE is not set |
@@ -591,6 +611,10 @@ CONFIG_NETDEV_10000=y | |||
591 | # CONFIG_WLAN_PRE80211 is not set | 611 | # CONFIG_WLAN_PRE80211 is not set |
592 | # CONFIG_WLAN_80211 is not set | 612 | # CONFIG_WLAN_80211 is not set |
593 | # CONFIG_IWLWIFI_LEDS is not set | 613 | # CONFIG_IWLWIFI_LEDS is not set |
614 | |||
615 | # | ||
616 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
617 | # | ||
594 | # CONFIG_WAN is not set | 618 | # CONFIG_WAN is not set |
595 | # CONFIG_FDDI is not set | 619 | # CONFIG_FDDI is not set |
596 | # CONFIG_PPP is not set | 620 | # CONFIG_PPP is not set |
@@ -633,6 +657,7 @@ CONFIG_SERIAL_CPM=y | |||
633 | CONFIG_SERIAL_CPM_CONSOLE=y | 657 | CONFIG_SERIAL_CPM_CONSOLE=y |
634 | # CONFIG_SERIAL_JSM is not set | 658 | # CONFIG_SERIAL_JSM is not set |
635 | CONFIG_UNIX98_PTYS=y | 659 | CONFIG_UNIX98_PTYS=y |
660 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
636 | CONFIG_LEGACY_PTYS=y | 661 | CONFIG_LEGACY_PTYS=y |
637 | CONFIG_LEGACY_PTY_COUNT=256 | 662 | CONFIG_LEGACY_PTY_COUNT=256 |
638 | # CONFIG_IPMI_HANDLER is not set | 663 | # CONFIG_IPMI_HANDLER is not set |
@@ -651,6 +676,11 @@ CONFIG_GPIOLIB=y | |||
651 | # CONFIG_DEBUG_GPIO is not set | 676 | # CONFIG_DEBUG_GPIO is not set |
652 | 677 | ||
653 | # | 678 | # |
679 | # Memory mapped GPIO expanders: | ||
680 | # | ||
681 | # CONFIG_GPIO_XILINX is not set | ||
682 | |||
683 | # | ||
654 | # I2C GPIO expanders: | 684 | # I2C GPIO expanders: |
655 | # | 685 | # |
656 | 686 | ||
@@ -668,11 +698,11 @@ CONFIG_GPIOLIB=y | |||
668 | # CONFIG_THERMAL is not set | 698 | # CONFIG_THERMAL is not set |
669 | # CONFIG_THERMAL_HWMON is not set | 699 | # CONFIG_THERMAL_HWMON is not set |
670 | # CONFIG_WATCHDOG is not set | 700 | # CONFIG_WATCHDOG is not set |
701 | CONFIG_SSB_POSSIBLE=y | ||
671 | 702 | ||
672 | # | 703 | # |
673 | # Sonics Silicon Backplane | 704 | # Sonics Silicon Backplane |
674 | # | 705 | # |
675 | CONFIG_SSB_POSSIBLE=y | ||
676 | # CONFIG_SSB is not set | 706 | # CONFIG_SSB is not set |
677 | 707 | ||
678 | # | 708 | # |
@@ -682,14 +712,7 @@ CONFIG_SSB_POSSIBLE=y | |||
682 | # CONFIG_MFD_SM501 is not set | 712 | # CONFIG_MFD_SM501 is not set |
683 | # CONFIG_HTC_PASIC3 is not set | 713 | # CONFIG_HTC_PASIC3 is not set |
684 | # CONFIG_MFD_TMIO is not set | 714 | # CONFIG_MFD_TMIO is not set |
685 | |||
686 | # | ||
687 | # Voltage and Current regulators | ||
688 | # | ||
689 | # CONFIG_REGULATOR is not set | 715 | # CONFIG_REGULATOR is not set |
690 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
691 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
692 | # CONFIG_REGULATOR_BQ24022 is not set | ||
693 | 716 | ||
694 | # | 717 | # |
695 | # Multimedia devices | 718 | # Multimedia devices |
@@ -782,13 +805,11 @@ CONFIG_TMPFS=y | |||
782 | # CONFIG_TMPFS_POSIX_ACL is not set | 805 | # CONFIG_TMPFS_POSIX_ACL is not set |
783 | # CONFIG_HUGETLB_PAGE is not set | 806 | # CONFIG_HUGETLB_PAGE is not set |
784 | # CONFIG_CONFIGFS_FS is not set | 807 | # CONFIG_CONFIGFS_FS is not set |
785 | 808 | CONFIG_MISC_FILESYSTEMS=y | |
786 | # | ||
787 | # Miscellaneous filesystems | ||
788 | # | ||
789 | # CONFIG_HFSPLUS_FS is not set | 809 | # CONFIG_HFSPLUS_FS is not set |
790 | # CONFIG_JFFS2_FS is not set | 810 | # CONFIG_JFFS2_FS is not set |
791 | CONFIG_CRAMFS=y | 811 | CONFIG_CRAMFS=y |
812 | # CONFIG_SQUASHFS is not set | ||
792 | # CONFIG_VXFS_FS is not set | 813 | # CONFIG_VXFS_FS is not set |
793 | # CONFIG_MINIX_FS is not set | 814 | # CONFIG_MINIX_FS is not set |
794 | # CONFIG_OMFS_FS is not set | 815 | # CONFIG_OMFS_FS is not set |
@@ -877,6 +898,7 @@ CONFIG_NLS_UTF8=y | |||
877 | # | 898 | # |
878 | # Library routines | 899 | # Library routines |
879 | # | 900 | # |
901 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
880 | # CONFIG_CRC_CCITT is not set | 902 | # CONFIG_CRC_CCITT is not set |
881 | # CONFIG_CRC16 is not set | 903 | # CONFIG_CRC16 is not set |
882 | # CONFIG_CRC_T10DIF is not set | 904 | # CONFIG_CRC_T10DIF is not set |
@@ -924,6 +946,7 @@ CONFIG_DEBUG_INFO=y | |||
924 | # CONFIG_DEBUG_MEMORY_INIT is not set | 946 | # CONFIG_DEBUG_MEMORY_INIT is not set |
925 | # CONFIG_DEBUG_LIST is not set | 947 | # CONFIG_DEBUG_LIST is not set |
926 | # CONFIG_DEBUG_SG is not set | 948 | # CONFIG_DEBUG_SG is not set |
949 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
927 | # CONFIG_BOOT_PRINTK_DELAY is not set | 950 | # CONFIG_BOOT_PRINTK_DELAY is not set |
928 | # CONFIG_RCU_TORTURE_TEST is not set | 951 | # CONFIG_RCU_TORTURE_TEST is not set |
929 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 952 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -933,6 +956,8 @@ CONFIG_DEBUG_INFO=y | |||
933 | # CONFIG_LATENCYTOP is not set | 956 | # CONFIG_LATENCYTOP is not set |
934 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
935 | CONFIG_HAVE_FUNCTION_TRACER=y | 958 | CONFIG_HAVE_FUNCTION_TRACER=y |
959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
936 | 961 | ||
937 | # | 962 | # |
938 | # Tracers | 963 | # Tracers |
@@ -941,10 +966,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
941 | # CONFIG_SCHED_TRACER is not set | 966 | # CONFIG_SCHED_TRACER is not set |
942 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 967 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
943 | # CONFIG_BOOT_TRACER is not set | 968 | # CONFIG_BOOT_TRACER is not set |
969 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
944 | # CONFIG_STACK_TRACER is not set | 970 | # CONFIG_STACK_TRACER is not set |
945 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 971 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
946 | # CONFIG_SAMPLES is not set | 972 | # CONFIG_SAMPLES is not set |
947 | CONFIG_HAVE_ARCH_KGDB=y | 973 | CONFIG_HAVE_ARCH_KGDB=y |
974 | CONFIG_PRINT_STACK_DEPTH=64 | ||
948 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 975 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
949 | # CONFIG_DEBUG_STACK_USAGE is not set | 976 | # CONFIG_DEBUG_STACK_USAGE is not set |
950 | # CONFIG_DEBUG_PAGEALLOC is not set | 977 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -971,11 +998,15 @@ CONFIG_CRYPTO=y | |||
971 | # | 998 | # |
972 | # CONFIG_CRYPTO_FIPS is not set | 999 | # CONFIG_CRYPTO_FIPS is not set |
973 | CONFIG_CRYPTO_ALGAPI=y | 1000 | CONFIG_CRYPTO_ALGAPI=y |
974 | CONFIG_CRYPTO_AEAD=y | 1001 | CONFIG_CRYPTO_ALGAPI2=y |
1002 | CONFIG_CRYPTO_AEAD2=y | ||
975 | CONFIG_CRYPTO_BLKCIPHER=y | 1003 | CONFIG_CRYPTO_BLKCIPHER=y |
1004 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
976 | CONFIG_CRYPTO_HASH=y | 1005 | CONFIG_CRYPTO_HASH=y |
977 | CONFIG_CRYPTO_RNG=y | 1006 | CONFIG_CRYPTO_HASH2=y |
1007 | CONFIG_CRYPTO_RNG2=y | ||
978 | CONFIG_CRYPTO_MANAGER=y | 1008 | CONFIG_CRYPTO_MANAGER=y |
1009 | CONFIG_CRYPTO_MANAGER2=y | ||
979 | # CONFIG_CRYPTO_NULL is not set | 1010 | # CONFIG_CRYPTO_NULL is not set |
980 | # CONFIG_CRYPTO_CRYPTD is not set | 1011 | # CONFIG_CRYPTO_CRYPTD is not set |
981 | # CONFIG_CRYPTO_AUTHENC is not set | 1012 | # CONFIG_CRYPTO_AUTHENC is not set |
diff --git a/arch/powerpc/configs/ep88xc_defconfig b/arch/powerpc/configs/ep88xc_defconfig index 870d28976a44..b2fdfd9e183c 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:37 2008 | 4 | # Mon Jan 26 15:35:28 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=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_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -70,12 +71,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
70 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
71 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
72 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
73 | # CONFIG_CGROUPS is not set | ||
74 | CONFIG_GROUP_SCHED=y | 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 | 76 | # CONFIG_RT_GROUP_SCHED is not set |
77 | CONFIG_USER_SCHED=y | 77 | CONFIG_USER_SCHED=y |
78 | # CONFIG_CGROUP_SCHED is not set | 78 | # CONFIG_CGROUP_SCHED is not set |
79 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
@@ -108,7 +109,6 @@ CONFIG_SLUB_DEBUG=y | |||
108 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
109 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | 111 | # CONFIG_PROFILING is not set |
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
114 | CONFIG_HAVE_IOREMAP_PROT=y | 114 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -118,13 +118,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
118 | CONFIG_HAVE_CLK=y | 118 | CONFIG_HAVE_CLK=y |
119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
120 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
121 | # CONFIG_TINY_SHMEM is not set | ||
122 | CONFIG_BASE_SMALL=1 | 121 | CONFIG_BASE_SMALL=1 |
123 | # CONFIG_MODULES is not set | 122 | # CONFIG_MODULES is not set |
124 | CONFIG_BLOCK=y | 123 | CONFIG_BLOCK=y |
125 | # CONFIG_LBD is not set | 124 | # CONFIG_LBD is not set |
126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 125 | # CONFIG_BLK_DEV_IO_TRACE is not set |
127 | # CONFIG_LSF is not set | ||
128 | # CONFIG_BLK_DEV_BSG is not set | 126 | # CONFIG_BLK_DEV_BSG is not set |
129 | # CONFIG_BLK_DEV_INTEGRITY is not set | 127 | # CONFIG_BLK_DEV_INTEGRITY is not set |
130 | 128 | ||
@@ -141,6 +139,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
141 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
142 | CONFIG_DEFAULT_IOSCHED="deadline" | 140 | CONFIG_DEFAULT_IOSCHED="deadline" |
143 | CONFIG_CLASSIC_RCU=y | 141 | CONFIG_CLASSIC_RCU=y |
142 | # CONFIG_TREE_RCU is not set | ||
143 | # CONFIG_PREEMPT_RCU is not set | ||
144 | # CONFIG_TREE_RCU_TRACE is not set | ||
145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
144 | # CONFIG_FREEZER is not set | 146 | # CONFIG_FREEZER is not set |
145 | 147 | ||
146 | # | 148 | # |
@@ -186,6 +188,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
186 | # CONFIG_QUICC_ENGINE is not set | 188 | # CONFIG_QUICC_ENGINE is not set |
187 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
188 | CONFIG_CPM=y | 190 | CONFIG_CPM=y |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
189 | 192 | ||
190 | # | 193 | # |
191 | # Kernel options | 194 | # Kernel options |
@@ -205,12 +208,12 @@ CONFIG_PREEMPT_NONE=y | |||
205 | # CONFIG_PREEMPT_VOLUNTARY is not set | 208 | # CONFIG_PREEMPT_VOLUNTARY is not set |
206 | # CONFIG_PREEMPT is not set | 209 | # CONFIG_PREEMPT is not set |
207 | CONFIG_BINFMT_ELF=y | 210 | CONFIG_BINFMT_ELF=y |
208 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
209 | # CONFIG_HAVE_AOUT is not set | 211 | # CONFIG_HAVE_AOUT is not set |
210 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
211 | # CONFIG_MATH_EMULATION is not set | 213 | # CONFIG_MATH_EMULATION is not set |
212 | CONFIG_8XX_MINIMAL_FPEMU=y | 214 | CONFIG_8XX_MINIMAL_FPEMU=y |
213 | # CONFIG_IOMMU_HELPER is not set | 215 | # CONFIG_IOMMU_HELPER is not set |
216 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 217 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
215 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 218 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
216 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -225,12 +228,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
225 | CONFIG_PAGEFLAGS_EXTENDED=y | 228 | CONFIG_PAGEFLAGS_EXTENDED=y |
226 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 229 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
227 | CONFIG_MIGRATION=y | 230 | CONFIG_MIGRATION=y |
228 | # CONFIG_RESOURCES_64BIT is not set | ||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 231 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=1 | 232 | CONFIG_ZONE_DMA_FLAG=1 |
231 | CONFIG_BOUNCE=y | 233 | CONFIG_BOUNCE=y |
232 | CONFIG_VIRT_TO_BUS=y | 234 | CONFIG_VIRT_TO_BUS=y |
233 | CONFIG_UNEVICTABLE_LRU=y | 235 | CONFIG_UNEVICTABLE_LRU=y |
236 | CONFIG_PPC_4K_PAGES=y | ||
237 | # CONFIG_PPC_16K_PAGES is not set | ||
238 | # CONFIG_PPC_64K_PAGES is not set | ||
234 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
235 | CONFIG_PROC_DEVICETREE=y | 240 | CONFIG_PROC_DEVICETREE=y |
236 | # CONFIG_CMDLINE_BOOL is not set | 241 | # CONFIG_CMDLINE_BOOL is not set |
@@ -272,6 +277,7 @@ CONFIG_NET=y | |||
272 | # | 277 | # |
273 | # Networking options | 278 | # Networking options |
274 | # | 279 | # |
280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
275 | CONFIG_PACKET=y | 281 | CONFIG_PACKET=y |
276 | # CONFIG_PACKET_MMAP is not set | 282 | # CONFIG_PACKET_MMAP is not set |
277 | CONFIG_UNIX=y | 283 | CONFIG_UNIX=y |
@@ -323,6 +329,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
323 | # CONFIG_ECONET is not set | 329 | # CONFIG_ECONET is not set |
324 | # CONFIG_WAN_ROUTER is not set | 330 | # CONFIG_WAN_ROUTER is not set |
325 | # CONFIG_NET_SCHED is not set | 331 | # CONFIG_NET_SCHED is not set |
332 | # CONFIG_DCB is not set | ||
326 | 333 | ||
327 | # | 334 | # |
328 | # Network testing | 335 | # Network testing |
@@ -338,8 +345,9 @@ CONFIG_WIRELESS=y | |||
338 | # CONFIG_CFG80211 is not set | 345 | # CONFIG_CFG80211 is not set |
339 | CONFIG_WIRELESS_OLD_REGULATORY=y | 346 | CONFIG_WIRELESS_OLD_REGULATORY=y |
340 | # CONFIG_WIRELESS_EXT is not set | 347 | # CONFIG_WIRELESS_EXT is not set |
348 | # CONFIG_LIB80211 is not set | ||
341 | # CONFIG_MAC80211 is not set | 349 | # CONFIG_MAC80211 is not set |
342 | # CONFIG_IEEE80211 is not set | 350 | # CONFIG_WIMAX is not set |
343 | # CONFIG_RFKILL is not set | 351 | # CONFIG_RFKILL is not set |
344 | # CONFIG_NET_9P is not set | 352 | # CONFIG_NET_9P is not set |
345 | 353 | ||
@@ -428,6 +436,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
428 | # CONFIG_MTD_ONENAND is not set | 436 | # CONFIG_MTD_ONENAND is not set |
429 | 437 | ||
430 | # | 438 | # |
439 | # LPDDR flash memory drivers | ||
440 | # | ||
441 | # CONFIG_MTD_LPDDR is not set | ||
442 | # CONFIG_MTD_QINFO_PROBE is not set | ||
443 | |||
444 | # | ||
431 | # UBI - Unsorted block images | 445 | # UBI - Unsorted block images |
432 | # | 446 | # |
433 | # CONFIG_MTD_UBI is not set | 447 | # CONFIG_MTD_UBI is not set |
@@ -470,6 +484,9 @@ CONFIG_LXT_PHY=y | |||
470 | # CONFIG_BROADCOM_PHY is not set | 484 | # CONFIG_BROADCOM_PHY is not set |
471 | # CONFIG_ICPLUS_PHY is not set | 485 | # CONFIG_ICPLUS_PHY is not set |
472 | # CONFIG_REALTEK_PHY is not set | 486 | # CONFIG_REALTEK_PHY is not set |
487 | # CONFIG_NATIONAL_PHY is not set | ||
488 | # CONFIG_STE10XP is not set | ||
489 | # CONFIG_LSI_ET1011C_PHY is not set | ||
473 | # CONFIG_FIXED_PHY is not set | 490 | # CONFIG_FIXED_PHY is not set |
474 | # CONFIG_MDIO_BITBANG is not set | 491 | # CONFIG_MDIO_BITBANG is not set |
475 | CONFIG_NET_ETHERNET=y | 492 | CONFIG_NET_ETHERNET=y |
@@ -495,6 +512,10 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
495 | # CONFIG_WLAN_PRE80211 is not set | 512 | # CONFIG_WLAN_PRE80211 is not set |
496 | # CONFIG_WLAN_80211 is not set | 513 | # CONFIG_WLAN_80211 is not set |
497 | # CONFIG_IWLWIFI_LEDS is not set | 514 | # CONFIG_IWLWIFI_LEDS is not set |
515 | |||
516 | # | ||
517 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
518 | # | ||
498 | # CONFIG_WAN is not set | 519 | # CONFIG_WAN is not set |
499 | # CONFIG_PPP is not set | 520 | # CONFIG_PPP is not set |
500 | # CONFIG_SLIP is not set | 521 | # CONFIG_SLIP is not set |
@@ -536,7 +557,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
536 | CONFIG_SERIAL_CPM=y | 557 | CONFIG_SERIAL_CPM=y |
537 | CONFIG_SERIAL_CPM_CONSOLE=y | 558 | CONFIG_SERIAL_CPM_CONSOLE=y |
538 | CONFIG_UNIX98_PTYS=y | 559 | CONFIG_UNIX98_PTYS=y |
560 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
539 | # CONFIG_LEGACY_PTYS is not set | 561 | # CONFIG_LEGACY_PTYS is not set |
562 | # CONFIG_HVC_UDBG is not set | ||
540 | # CONFIG_IPMI_HANDLER is not set | 563 | # CONFIG_IPMI_HANDLER is not set |
541 | CONFIG_HW_RANDOM=y | 564 | CONFIG_HW_RANDOM=y |
542 | # CONFIG_NVRAM is not set | 565 | # CONFIG_NVRAM is not set |
@@ -555,11 +578,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
555 | # CONFIG_THERMAL is not set | 578 | # CONFIG_THERMAL is not set |
556 | # CONFIG_THERMAL_HWMON is not set | 579 | # CONFIG_THERMAL_HWMON is not set |
557 | # CONFIG_WATCHDOG is not set | 580 | # CONFIG_WATCHDOG is not set |
581 | CONFIG_SSB_POSSIBLE=y | ||
558 | 582 | ||
559 | # | 583 | # |
560 | # Sonics Silicon Backplane | 584 | # Sonics Silicon Backplane |
561 | # | 585 | # |
562 | CONFIG_SSB_POSSIBLE=y | ||
563 | # CONFIG_SSB is not set | 586 | # CONFIG_SSB is not set |
564 | 587 | ||
565 | # | 588 | # |
@@ -569,14 +592,7 @@ CONFIG_SSB_POSSIBLE=y | |||
569 | # CONFIG_MFD_SM501 is not set | 592 | # CONFIG_MFD_SM501 is not set |
570 | # CONFIG_HTC_PASIC3 is not set | 593 | # CONFIG_HTC_PASIC3 is not set |
571 | # CONFIG_MFD_TMIO is not set | 594 | # CONFIG_MFD_TMIO is not set |
572 | |||
573 | # | ||
574 | # Voltage and Current regulators | ||
575 | # | ||
576 | # CONFIG_REGULATOR is not set | 595 | # CONFIG_REGULATOR is not set |
577 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
578 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
579 | # CONFIG_REGULATOR_BQ24022 is not set | ||
580 | 596 | ||
581 | # | 597 | # |
582 | # Multimedia devices | 598 | # Multimedia devices |
@@ -630,6 +646,7 @@ CONFIG_DAB=y | |||
630 | CONFIG_FILE_LOCKING=y | 646 | CONFIG_FILE_LOCKING=y |
631 | # CONFIG_XFS_FS is not set | 647 | # CONFIG_XFS_FS is not set |
632 | # CONFIG_OCFS2_FS is not set | 648 | # CONFIG_OCFS2_FS is not set |
649 | # CONFIG_BTRFS_FS is not set | ||
633 | # CONFIG_DNOTIFY is not set | 650 | # CONFIG_DNOTIFY is not set |
634 | # CONFIG_INOTIFY is not set | 651 | # CONFIG_INOTIFY is not set |
635 | # CONFIG_QUOTA is not set | 652 | # CONFIG_QUOTA is not set |
@@ -662,10 +679,7 @@ CONFIG_TMPFS=y | |||
662 | # CONFIG_TMPFS_POSIX_ACL is not set | 679 | # CONFIG_TMPFS_POSIX_ACL is not set |
663 | # CONFIG_HUGETLB_PAGE is not set | 680 | # CONFIG_HUGETLB_PAGE is not set |
664 | # CONFIG_CONFIGFS_FS is not set | 681 | # CONFIG_CONFIGFS_FS is not set |
665 | 682 | CONFIG_MISC_FILESYSTEMS=y | |
666 | # | ||
667 | # Miscellaneous filesystems | ||
668 | # | ||
669 | # CONFIG_ADFS_FS is not set | 683 | # CONFIG_ADFS_FS is not set |
670 | # CONFIG_AFFS_FS is not set | 684 | # CONFIG_AFFS_FS is not set |
671 | # CONFIG_HFS_FS is not set | 685 | # CONFIG_HFS_FS is not set |
@@ -675,6 +689,7 @@ CONFIG_TMPFS=y | |||
675 | # CONFIG_EFS_FS is not set | 689 | # CONFIG_EFS_FS is not set |
676 | # CONFIG_JFFS2_FS is not set | 690 | # CONFIG_JFFS2_FS is not set |
677 | CONFIG_CRAMFS=y | 691 | CONFIG_CRAMFS=y |
692 | # CONFIG_SQUASHFS is not set | ||
678 | # CONFIG_VXFS_FS is not set | 693 | # CONFIG_VXFS_FS is not set |
679 | # CONFIG_MINIX_FS is not set | 694 | # CONFIG_MINIX_FS is not set |
680 | # CONFIG_OMFS_FS is not set | 695 | # CONFIG_OMFS_FS is not set |
@@ -730,6 +745,7 @@ CONFIG_MSDOS_PARTITION=y | |||
730 | # | 745 | # |
731 | # Library routines | 746 | # Library routines |
732 | # | 747 | # |
748 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
733 | # CONFIG_CRC_CCITT is not set | 749 | # CONFIG_CRC_CCITT is not set |
734 | # CONFIG_CRC16 is not set | 750 | # CONFIG_CRC16 is not set |
735 | # CONFIG_CRC_T10DIF is not set | 751 | # CONFIG_CRC_T10DIF is not set |
@@ -777,6 +793,7 @@ CONFIG_DEBUG_INFO=y | |||
777 | # CONFIG_DEBUG_MEMORY_INIT is not set | 793 | # CONFIG_DEBUG_MEMORY_INIT is not set |
778 | # CONFIG_DEBUG_LIST is not set | 794 | # CONFIG_DEBUG_LIST is not set |
779 | # CONFIG_DEBUG_SG is not set | 795 | # CONFIG_DEBUG_SG is not set |
796 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
780 | # CONFIG_BOOT_PRINTK_DELAY is not set | 797 | # CONFIG_BOOT_PRINTK_DELAY is not set |
781 | # CONFIG_RCU_TORTURE_TEST is not set | 798 | # CONFIG_RCU_TORTURE_TEST is not set |
782 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 799 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -785,6 +802,8 @@ CONFIG_DEBUG_INFO=y | |||
785 | # CONFIG_FAULT_INJECTION is not set | 802 | # CONFIG_FAULT_INJECTION is not set |
786 | # CONFIG_LATENCYTOP is not set | 803 | # CONFIG_LATENCYTOP is not set |
787 | CONFIG_HAVE_FUNCTION_TRACER=y | 804 | CONFIG_HAVE_FUNCTION_TRACER=y |
805 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
806 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
788 | 807 | ||
789 | # | 808 | # |
790 | # Tracers | 809 | # Tracers |
@@ -793,11 +812,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
793 | # CONFIG_SCHED_TRACER is not set | 812 | # CONFIG_SCHED_TRACER is not set |
794 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 813 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
795 | # CONFIG_BOOT_TRACER is not set | 814 | # CONFIG_BOOT_TRACER is not set |
815 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
796 | # CONFIG_STACK_TRACER is not set | 816 | # CONFIG_STACK_TRACER is not set |
797 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 817 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
798 | # CONFIG_SAMPLES is not set | 818 | # CONFIG_SAMPLES is not set |
799 | CONFIG_HAVE_ARCH_KGDB=y | 819 | CONFIG_HAVE_ARCH_KGDB=y |
800 | # CONFIG_KGDB is not set | 820 | # CONFIG_KGDB is not set |
821 | CONFIG_PRINT_STACK_DEPTH=64 | ||
801 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 822 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
802 | # CONFIG_DEBUG_STACK_USAGE is not set | 823 | # CONFIG_DEBUG_STACK_USAGE is not set |
803 | # CONFIG_DEBUG_PAGEALLOC is not set | 824 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/linkstation_defconfig b/arch/powerpc/configs/linkstation_defconfig index 3a0ffd73b65c..aa5855a156de 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:38 2008 | 4 | # Mon Jan 26 15:35:29 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -43,7 +43,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 43 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 44 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 45 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 46 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 48 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 49 | CONFIG_OF=y |
@@ -74,12 +74,12 @@ CONFIG_POSIX_MQUEUE=y | |||
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 | ||
78 | CONFIG_GROUP_SCHED=y | 77 | CONFIG_GROUP_SCHED=y |
79 | # CONFIG_FAIR_GROUP_SCHED is not set | 78 | # CONFIG_FAIR_GROUP_SCHED is not set |
80 | # CONFIG_RT_GROUP_SCHED is not set | 79 | # CONFIG_RT_GROUP_SCHED is not set |
81 | CONFIG_USER_SCHED=y | 80 | CONFIG_USER_SCHED=y |
82 | # CONFIG_CGROUP_SCHED is not set | 81 | # CONFIG_CGROUP_SCHED is not set |
82 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 83 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 84 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 85 | # CONFIG_RELAY is not set |
@@ -118,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,7 +128,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
132 | # CONFIG_TINY_SHMEM is not set | ||
133 | CONFIG_BASE_SMALL=0 | 131 | CONFIG_BASE_SMALL=0 |
134 | CONFIG_MODULES=y | 132 | CONFIG_MODULES=y |
135 | # CONFIG_MODULE_FORCE_LOAD is not set | 133 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -137,11 +135,9 @@ CONFIG_MODULE_UNLOAD=y | |||
137 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 135 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
138 | # CONFIG_MODVERSIONS is not set | 136 | # CONFIG_MODVERSIONS is not set |
139 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
140 | CONFIG_KMOD=y | ||
141 | CONFIG_BLOCK=y | 138 | CONFIG_BLOCK=y |
142 | # CONFIG_LBD is not set | 139 | # CONFIG_LBD is not set |
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | 140 | # CONFIG_BLK_DEV_IO_TRACE is not set |
144 | # CONFIG_LSF is not set | ||
145 | # CONFIG_BLK_DEV_BSG is not set | 141 | # CONFIG_BLK_DEV_BSG is not set |
146 | # CONFIG_BLK_DEV_INTEGRITY is not set | 142 | # CONFIG_BLK_DEV_INTEGRITY is not set |
147 | 143 | ||
@@ -158,6 +154,10 @@ CONFIG_DEFAULT_AS=y | |||
158 | # CONFIG_DEFAULT_NOOP is not set | 154 | # CONFIG_DEFAULT_NOOP is not set |
159 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 155 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
160 | CONFIG_CLASSIC_RCU=y | 156 | CONFIG_CLASSIC_RCU=y |
157 | # CONFIG_TREE_RCU is not set | ||
158 | # CONFIG_PREEMPT_RCU is not set | ||
159 | # CONFIG_TREE_RCU_TRACE is not set | ||
160 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
161 | # CONFIG_FREEZER is not set | 161 | # CONFIG_FREEZER is not set |
162 | 162 | ||
163 | # | 163 | # |
@@ -200,6 +200,7 @@ CONFIG_MPIC=y | |||
200 | # CONFIG_TAU is not set | 200 | # CONFIG_TAU is not set |
201 | # CONFIG_QUICC_ENGINE is not set | 201 | # CONFIG_QUICC_ENGINE is not set |
202 | # CONFIG_FSL_ULI1575 is not set | 202 | # CONFIG_FSL_ULI1575 is not set |
203 | # CONFIG_SIMPLE_GPIO is not set | ||
203 | 204 | ||
204 | # | 205 | # |
205 | # Kernel options | 206 | # Kernel options |
@@ -227,6 +228,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
227 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 228 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
228 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
229 | # CONFIG_KEXEC is not set | 230 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | ||
230 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
231 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
232 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -238,12 +240,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
238 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
239 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
240 | CONFIG_MIGRATION=y | 242 | CONFIG_MIGRATION=y |
241 | # CONFIG_RESOURCES_64BIT is not set | ||
242 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 243 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
243 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
244 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
245 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
246 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
248 | CONFIG_PPC_4K_PAGES=y | ||
249 | # CONFIG_PPC_16K_PAGES is not set | ||
250 | # CONFIG_PPC_64K_PAGES is not set | ||
247 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
248 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
249 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
@@ -267,6 +271,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
267 | # CONFIG_PCI_MSI is not set | 271 | # CONFIG_PCI_MSI is not set |
268 | # CONFIG_PCI_LEGACY is not set | 272 | # CONFIG_PCI_LEGACY is not set |
269 | # CONFIG_PCI_DEBUG is not set | 273 | # CONFIG_PCI_DEBUG is not set |
274 | # CONFIG_PCI_STUB is not set | ||
270 | # CONFIG_PCCARD is not set | 275 | # CONFIG_PCCARD is not set |
271 | # CONFIG_HOTPLUG_PCI is not set | 276 | # CONFIG_HOTPLUG_PCI is not set |
272 | # CONFIG_HAS_RAPIDIO is not set | 277 | # CONFIG_HAS_RAPIDIO is not set |
@@ -289,6 +294,8 @@ CONFIG_NET=y | |||
289 | # | 294 | # |
290 | # Networking options | 295 | # Networking options |
291 | # | 296 | # |
297 | # CONFIG_NET_NS is not set | ||
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
292 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
293 | CONFIG_PACKET_MMAP=y | 300 | CONFIG_PACKET_MMAP=y |
294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
@@ -455,6 +462,7 @@ CONFIG_IP_NF_ARP_MANGLE=m | |||
455 | # CONFIG_ECONET is not set | 462 | # CONFIG_ECONET is not set |
456 | # CONFIG_WAN_ROUTER is not set | 463 | # CONFIG_WAN_ROUTER is not set |
457 | # CONFIG_NET_SCHED is not set | 464 | # CONFIG_NET_SCHED is not set |
465 | # CONFIG_DCB is not set | ||
458 | 466 | ||
459 | # | 467 | # |
460 | # Network testing | 468 | # Network testing |
@@ -471,12 +479,9 @@ CONFIG_WIRELESS=y | |||
471 | CONFIG_WIRELESS_OLD_REGULATORY=y | 479 | CONFIG_WIRELESS_OLD_REGULATORY=y |
472 | CONFIG_WIRELESS_EXT=y | 480 | CONFIG_WIRELESS_EXT=y |
473 | CONFIG_WIRELESS_EXT_SYSFS=y | 481 | CONFIG_WIRELESS_EXT_SYSFS=y |
482 | # CONFIG_LIB80211 is not set | ||
474 | # CONFIG_MAC80211 is not set | 483 | # CONFIG_MAC80211 is not set |
475 | CONFIG_IEEE80211=m | 484 | # CONFIG_WIMAX is not set |
476 | CONFIG_IEEE80211_DEBUG=y | ||
477 | CONFIG_IEEE80211_CRYPT_WEP=m | ||
478 | CONFIG_IEEE80211_CRYPT_CCMP=m | ||
479 | CONFIG_IEEE80211_CRYPT_TKIP=m | ||
480 | # CONFIG_RFKILL is not set | 485 | # CONFIG_RFKILL is not set |
481 | # CONFIG_NET_9P is not set | 486 | # CONFIG_NET_9P is not set |
482 | 487 | ||
@@ -501,6 +506,7 @@ CONFIG_MTD=y | |||
501 | # CONFIG_MTD_DEBUG is not set | 506 | # CONFIG_MTD_DEBUG is not set |
502 | CONFIG_MTD_CONCAT=y | 507 | CONFIG_MTD_CONCAT=y |
503 | CONFIG_MTD_PARTITIONS=y | 508 | CONFIG_MTD_PARTITIONS=y |
509 | # CONFIG_MTD_TESTS is not set | ||
504 | # CONFIG_MTD_REDBOOT_PARTS is not set | 510 | # CONFIG_MTD_REDBOOT_PARTS is not set |
505 | # CONFIG_MTD_CMDLINE_PARTS is not set | 511 | # CONFIG_MTD_CMDLINE_PARTS is not set |
506 | # CONFIG_MTD_OF_PARTS is not set | 512 | # CONFIG_MTD_OF_PARTS is not set |
@@ -554,9 +560,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
554 | # | 560 | # |
555 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 561 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
556 | CONFIG_MTD_PHYSMAP=y | 562 | CONFIG_MTD_PHYSMAP=y |
557 | CONFIG_MTD_PHYSMAP_START=0xffc00000 | 563 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
558 | CONFIG_MTD_PHYSMAP_LEN=0x400000 | ||
559 | CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | ||
560 | # CONFIG_MTD_PHYSMAP_OF is not set | 564 | # CONFIG_MTD_PHYSMAP_OF is not set |
561 | # CONFIG_MTD_INTEL_VR_NOR is not set | 565 | # CONFIG_MTD_INTEL_VR_NOR is not set |
562 | # CONFIG_MTD_PLATRAM is not set | 566 | # CONFIG_MTD_PLATRAM is not set |
@@ -580,6 +584,12 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | |||
580 | # CONFIG_MTD_ONENAND is not set | 584 | # CONFIG_MTD_ONENAND is not set |
581 | 585 | ||
582 | # | 586 | # |
587 | # LPDDR flash memory drivers | ||
588 | # | ||
589 | # CONFIG_MTD_LPDDR is not set | ||
590 | # CONFIG_MTD_QINFO_PROBE is not set | ||
591 | |||
592 | # | ||
583 | # UBI - Unsorted block images | 593 | # UBI - Unsorted block images |
584 | # | 594 | # |
585 | # CONFIG_MTD_UBI is not set | 595 | # CONFIG_MTD_UBI is not set |
@@ -610,8 +620,10 @@ CONFIG_MISC_DEVICES=y | |||
610 | # CONFIG_EEPROM_93CX6 is not set | 620 | # CONFIG_EEPROM_93CX6 is not set |
611 | # CONFIG_SGI_IOC4 is not set | 621 | # CONFIG_SGI_IOC4 is not set |
612 | # CONFIG_TIFM_CORE is not set | 622 | # CONFIG_TIFM_CORE is not set |
623 | # CONFIG_ICS932S401 is not set | ||
613 | # CONFIG_ENCLOSURE_SERVICES is not set | 624 | # CONFIG_ENCLOSURE_SERVICES is not set |
614 | # CONFIG_HP_ILO is not set | 625 | # CONFIG_HP_ILO is not set |
626 | # CONFIG_C2PORT is not set | ||
615 | CONFIG_HAVE_IDE=y | 627 | CONFIG_HAVE_IDE=y |
616 | # CONFIG_IDE is not set | 628 | # CONFIG_IDE is not set |
617 | 629 | ||
@@ -654,6 +666,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
654 | # CONFIG_SCSI_SRP_ATTRS is not set | 666 | # CONFIG_SCSI_SRP_ATTRS is not set |
655 | CONFIG_SCSI_LOWLEVEL=y | 667 | CONFIG_SCSI_LOWLEVEL=y |
656 | # CONFIG_ISCSI_TCP is not set | 668 | # CONFIG_ISCSI_TCP is not set |
669 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
657 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 670 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
658 | # CONFIG_SCSI_3W_9XXX is not set | 671 | # CONFIG_SCSI_3W_9XXX is not set |
659 | # CONFIG_SCSI_ACARD is not set | 672 | # CONFIG_SCSI_ACARD is not set |
@@ -670,6 +683,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
670 | # CONFIG_MEGARAID_SAS is not set | 683 | # CONFIG_MEGARAID_SAS is not set |
671 | # CONFIG_SCSI_HPTIOP is not set | 684 | # CONFIG_SCSI_HPTIOP is not set |
672 | # CONFIG_SCSI_BUSLOGIC is not set | 685 | # CONFIG_SCSI_BUSLOGIC is not set |
686 | # CONFIG_LIBFC is not set | ||
687 | # CONFIG_FCOE is not set | ||
673 | # CONFIG_SCSI_DMX3191D is not set | 688 | # CONFIG_SCSI_DMX3191D is not set |
674 | # CONFIG_SCSI_EATA is not set | 689 | # CONFIG_SCSI_EATA is not set |
675 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 690 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -827,6 +842,7 @@ CONFIG_R8169=y | |||
827 | # CONFIG_JME is not set | 842 | # CONFIG_JME is not set |
828 | CONFIG_NETDEV_10000=y | 843 | CONFIG_NETDEV_10000=y |
829 | # CONFIG_CHELSIO_T1 is not set | 844 | # CONFIG_CHELSIO_T1 is not set |
845 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
830 | # CONFIG_CHELSIO_T3 is not set | 846 | # CONFIG_CHELSIO_T3 is not set |
831 | # CONFIG_ENIC is not set | 847 | # CONFIG_ENIC is not set |
832 | # CONFIG_IXGBE is not set | 848 | # CONFIG_IXGBE is not set |
@@ -851,6 +867,10 @@ CONFIG_NETDEV_10000=y | |||
851 | # CONFIG_IWLWIFI_LEDS is not set | 867 | # CONFIG_IWLWIFI_LEDS is not set |
852 | 868 | ||
853 | # | 869 | # |
870 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
871 | # | ||
872 | |||
873 | # | ||
854 | # USB Network Adapters | 874 | # USB Network Adapters |
855 | # | 875 | # |
856 | # CONFIG_USB_CATC is not set | 876 | # CONFIG_USB_CATC is not set |
@@ -949,8 +969,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
949 | # CONFIG_SERIAL_JSM is not set | 969 | # CONFIG_SERIAL_JSM is not set |
950 | # CONFIG_SERIAL_OF_PLATFORM is not set | 970 | # CONFIG_SERIAL_OF_PLATFORM is not set |
951 | CONFIG_UNIX98_PTYS=y | 971 | CONFIG_UNIX98_PTYS=y |
972 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
952 | CONFIG_LEGACY_PTYS=y | 973 | CONFIG_LEGACY_PTYS=y |
953 | CONFIG_LEGACY_PTY_COUNT=256 | 974 | CONFIG_LEGACY_PTY_COUNT=256 |
975 | # CONFIG_HVC_UDBG is not set | ||
954 | # CONFIG_IPMI_HANDLER is not set | 976 | # CONFIG_IPMI_HANDLER is not set |
955 | CONFIG_HW_RANDOM=y | 977 | CONFIG_HW_RANDOM=y |
956 | # CONFIG_NVRAM is not set | 978 | # CONFIG_NVRAM is not set |
@@ -1042,8 +1064,10 @@ CONFIG_HWMON=y | |||
1042 | # CONFIG_SENSORS_ADM1029 is not set | 1064 | # CONFIG_SENSORS_ADM1029 is not set |
1043 | # CONFIG_SENSORS_ADM1031 is not set | 1065 | # CONFIG_SENSORS_ADM1031 is not set |
1044 | # CONFIG_SENSORS_ADM9240 is not set | 1066 | # CONFIG_SENSORS_ADM9240 is not set |
1067 | # CONFIG_SENSORS_ADT7462 is not set | ||
1045 | # CONFIG_SENSORS_ADT7470 is not set | 1068 | # CONFIG_SENSORS_ADT7470 is not set |
1046 | # CONFIG_SENSORS_ADT7473 is not set | 1069 | # CONFIG_SENSORS_ADT7473 is not set |
1070 | # CONFIG_SENSORS_ADT7475 is not set | ||
1047 | # CONFIG_SENSORS_ATXP1 is not set | 1071 | # CONFIG_SENSORS_ATXP1 is not set |
1048 | # CONFIG_SENSORS_DS1621 is not set | 1072 | # CONFIG_SENSORS_DS1621 is not set |
1049 | # CONFIG_SENSORS_I5K_AMB is not set | 1073 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -1064,6 +1088,7 @@ CONFIG_HWMON=y | |||
1064 | # CONFIG_SENSORS_LM90 is not set | 1088 | # CONFIG_SENSORS_LM90 is not set |
1065 | # CONFIG_SENSORS_LM92 is not set | 1089 | # CONFIG_SENSORS_LM92 is not set |
1066 | # CONFIG_SENSORS_LM93 is not set | 1090 | # CONFIG_SENSORS_LM93 is not set |
1091 | # CONFIG_SENSORS_LTC4245 is not set | ||
1067 | # CONFIG_SENSORS_MAX1619 is not set | 1092 | # CONFIG_SENSORS_MAX1619 is not set |
1068 | # CONFIG_SENSORS_MAX6650 is not set | 1093 | # CONFIG_SENSORS_MAX6650 is not set |
1069 | # CONFIG_SENSORS_PC87360 is not set | 1094 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1090,11 +1115,11 @@ CONFIG_HWMON=y | |||
1090 | # CONFIG_THERMAL is not set | 1115 | # CONFIG_THERMAL is not set |
1091 | # CONFIG_THERMAL_HWMON is not set | 1116 | # CONFIG_THERMAL_HWMON is not set |
1092 | # CONFIG_WATCHDOG is not set | 1117 | # CONFIG_WATCHDOG is not set |
1118 | CONFIG_SSB_POSSIBLE=y | ||
1093 | 1119 | ||
1094 | # | 1120 | # |
1095 | # Sonics Silicon Backplane | 1121 | # Sonics Silicon Backplane |
1096 | # | 1122 | # |
1097 | CONFIG_SSB_POSSIBLE=y | ||
1098 | # CONFIG_SSB is not set | 1123 | # CONFIG_SSB is not set |
1099 | 1124 | ||
1100 | # | 1125 | # |
@@ -1103,18 +1128,13 @@ CONFIG_SSB_POSSIBLE=y | |||
1103 | # CONFIG_MFD_CORE is not set | 1128 | # CONFIG_MFD_CORE is not set |
1104 | # CONFIG_MFD_SM501 is not set | 1129 | # CONFIG_MFD_SM501 is not set |
1105 | # CONFIG_HTC_PASIC3 is not set | 1130 | # CONFIG_HTC_PASIC3 is not set |
1131 | # CONFIG_TWL4030_CORE is not set | ||
1106 | # CONFIG_MFD_TMIO is not set | 1132 | # CONFIG_MFD_TMIO is not set |
1107 | # CONFIG_PMIC_DA903X is not set | 1133 | # CONFIG_PMIC_DA903X is not set |
1108 | # CONFIG_MFD_WM8400 is not set | 1134 | # CONFIG_MFD_WM8400 is not set |
1109 | # CONFIG_MFD_WM8350_I2C is not set | 1135 | # CONFIG_MFD_WM8350_I2C is not set |
1110 | 1136 | # CONFIG_MFD_PCF50633 is not set | |
1111 | # | ||
1112 | # Voltage and Current regulators | ||
1113 | # | ||
1114 | # CONFIG_REGULATOR is not set | 1137 | # CONFIG_REGULATOR is not set |
1115 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1116 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1117 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1118 | 1138 | ||
1119 | # | 1139 | # |
1120 | # Multimedia devices | 1140 | # Multimedia devices |
@@ -1165,12 +1185,6 @@ CONFIG_HID=m | |||
1165 | # CONFIG_HID_PID is not set | 1185 | # CONFIG_HID_PID is not set |
1166 | 1186 | ||
1167 | # | 1187 | # |
1168 | # USB HID Boot Protocol drivers | ||
1169 | # | ||
1170 | # CONFIG_USB_KBD is not set | ||
1171 | # CONFIG_USB_MOUSE is not set | ||
1172 | |||
1173 | # | ||
1174 | # Special HID drivers | 1188 | # Special HID drivers |
1175 | # | 1189 | # |
1176 | CONFIG_HID_COMPAT=y | 1190 | CONFIG_HID_COMPAT=y |
@@ -1202,6 +1216,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1202 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1216 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1203 | # CONFIG_USB_EHCI_FSL is not set | 1217 | # CONFIG_USB_EHCI_FSL is not set |
1204 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1218 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1219 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1205 | # CONFIG_USB_ISP116X_HCD is not set | 1220 | # CONFIG_USB_ISP116X_HCD is not set |
1206 | # CONFIG_USB_ISP1760_HCD is not set | 1221 | # CONFIG_USB_ISP1760_HCD is not set |
1207 | CONFIG_USB_OHCI_HCD=y | 1222 | CONFIG_USB_OHCI_HCD=y |
@@ -1227,18 +1242,17 @@ CONFIG_USB_PRINTER=m | |||
1227 | # CONFIG_USB_TMC is not set | 1242 | # CONFIG_USB_TMC is not set |
1228 | 1243 | ||
1229 | # | 1244 | # |
1230 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1245 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1231 | # | 1246 | # |
1232 | 1247 | ||
1233 | # | 1248 | # |
1234 | # may also be needed; see USB_STORAGE Help for more information | 1249 | # see USB_STORAGE Help for more information |
1235 | # | 1250 | # |
1236 | CONFIG_USB_STORAGE=m | 1251 | CONFIG_USB_STORAGE=m |
1237 | # CONFIG_USB_STORAGE_DEBUG is not set | 1252 | # CONFIG_USB_STORAGE_DEBUG is not set |
1238 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1253 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1239 | # CONFIG_USB_STORAGE_FREECOM is not set | 1254 | # CONFIG_USB_STORAGE_FREECOM is not set |
1240 | # CONFIG_USB_STORAGE_ISD200 is not set | 1255 | # CONFIG_USB_STORAGE_ISD200 is not set |
1241 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1242 | # CONFIG_USB_STORAGE_USBAT is not set | 1256 | # CONFIG_USB_STORAGE_USBAT is not set |
1243 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1257 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1244 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1258 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1295,12 +1309,14 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
1295 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | 1309 | # CONFIG_USB_SERIAL_SPCP8X5 is not set |
1296 | # CONFIG_USB_SERIAL_HP4X is not set | 1310 | # CONFIG_USB_SERIAL_HP4X is not set |
1297 | # CONFIG_USB_SERIAL_SAFE is not set | 1311 | # CONFIG_USB_SERIAL_SAFE is not set |
1312 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | ||
1298 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1313 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
1299 | # CONFIG_USB_SERIAL_TI is not set | 1314 | # CONFIG_USB_SERIAL_TI is not set |
1300 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1315 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
1301 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1316 | # CONFIG_USB_SERIAL_XIRCOM is not set |
1302 | # CONFIG_USB_SERIAL_OPTION is not set | 1317 | # CONFIG_USB_SERIAL_OPTION is not set |
1303 | # CONFIG_USB_SERIAL_OMNINET is not set | 1318 | # CONFIG_USB_SERIAL_OMNINET is not set |
1319 | # CONFIG_USB_SERIAL_OPTICON is not set | ||
1304 | # CONFIG_USB_SERIAL_DEBUG is not set | 1320 | # CONFIG_USB_SERIAL_DEBUG is not set |
1305 | 1321 | ||
1306 | # | 1322 | # |
@@ -1329,6 +1345,10 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
1329 | # CONFIG_USB_ISIGHTFW is not set | 1345 | # CONFIG_USB_ISIGHTFW is not set |
1330 | # CONFIG_USB_VST is not set | 1346 | # CONFIG_USB_VST is not set |
1331 | # CONFIG_USB_GADGET is not set | 1347 | # CONFIG_USB_GADGET is not set |
1348 | |||
1349 | # | ||
1350 | # OTG and related infrastructure | ||
1351 | # | ||
1332 | # CONFIG_UWB is not set | 1352 | # CONFIG_UWB is not set |
1333 | # CONFIG_MMC is not set | 1353 | # CONFIG_MMC is not set |
1334 | # CONFIG_MEMSTICK is not set | 1354 | # CONFIG_MEMSTICK is not set |
@@ -1366,6 +1386,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1366 | # CONFIG_RTC_DRV_M41T80 is not set | 1386 | # CONFIG_RTC_DRV_M41T80 is not set |
1367 | # CONFIG_RTC_DRV_S35390A is not set | 1387 | # CONFIG_RTC_DRV_S35390A is not set |
1368 | # CONFIG_RTC_DRV_FM3130 is not set | 1388 | # CONFIG_RTC_DRV_FM3130 is not set |
1389 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1369 | 1390 | ||
1370 | # | 1391 | # |
1371 | # SPI RTC drivers | 1392 | # SPI RTC drivers |
@@ -1417,6 +1438,7 @@ CONFIG_XFS_FS=m | |||
1417 | # CONFIG_XFS_RT is not set | 1438 | # CONFIG_XFS_RT is not set |
1418 | # CONFIG_XFS_DEBUG is not set | 1439 | # CONFIG_XFS_DEBUG is not set |
1419 | # CONFIG_OCFS2_FS is not set | 1440 | # CONFIG_OCFS2_FS is not set |
1441 | # CONFIG_BTRFS_FS is not set | ||
1420 | CONFIG_DNOTIFY=y | 1442 | CONFIG_DNOTIFY=y |
1421 | CONFIG_INOTIFY=y | 1443 | CONFIG_INOTIFY=y |
1422 | CONFIG_INOTIFY_USER=y | 1444 | CONFIG_INOTIFY_USER=y |
@@ -1458,10 +1480,7 @@ CONFIG_TMPFS=y | |||
1458 | # CONFIG_TMPFS_POSIX_ACL is not set | 1480 | # CONFIG_TMPFS_POSIX_ACL is not set |
1459 | # CONFIG_HUGETLB_PAGE is not set | 1481 | # CONFIG_HUGETLB_PAGE is not set |
1460 | # CONFIG_CONFIGFS_FS is not set | 1482 | # CONFIG_CONFIGFS_FS is not set |
1461 | 1483 | CONFIG_MISC_FILESYSTEMS=y | |
1462 | # | ||
1463 | # Miscellaneous filesystems | ||
1464 | # | ||
1465 | # CONFIG_ADFS_FS is not set | 1484 | # CONFIG_ADFS_FS is not set |
1466 | # CONFIG_AFFS_FS is not set | 1485 | # CONFIG_AFFS_FS is not set |
1467 | # CONFIG_HFS_FS is not set | 1486 | # CONFIG_HFS_FS is not set |
@@ -1471,6 +1490,7 @@ CONFIG_TMPFS=y | |||
1471 | # CONFIG_EFS_FS is not set | 1490 | # CONFIG_EFS_FS is not set |
1472 | # CONFIG_JFFS2_FS is not set | 1491 | # CONFIG_JFFS2_FS is not set |
1473 | # CONFIG_CRAMFS is not set | 1492 | # CONFIG_CRAMFS is not set |
1493 | # CONFIG_SQUASHFS is not set | ||
1474 | # CONFIG_VXFS_FS is not set | 1494 | # CONFIG_VXFS_FS is not set |
1475 | # CONFIG_MINIX_FS is not set | 1495 | # CONFIG_MINIX_FS is not set |
1476 | # CONFIG_OMFS_FS is not set | 1496 | # CONFIG_OMFS_FS is not set |
@@ -1561,6 +1581,7 @@ CONFIG_NLS_UTF8=m | |||
1561 | # Library routines | 1581 | # Library routines |
1562 | # | 1582 | # |
1563 | CONFIG_BITREVERSE=y | 1583 | CONFIG_BITREVERSE=y |
1584 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1564 | CONFIG_CRC_CCITT=m | 1585 | CONFIG_CRC_CCITT=m |
1565 | # CONFIG_CRC16 is not set | 1586 | # CONFIG_CRC16 is not set |
1566 | CONFIG_CRC_T10DIF=y | 1587 | CONFIG_CRC_T10DIF=y |
@@ -1614,6 +1635,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1614 | CONFIG_DEBUG_MEMORY_INIT=y | 1635 | CONFIG_DEBUG_MEMORY_INIT=y |
1615 | # CONFIG_DEBUG_LIST is not set | 1636 | # CONFIG_DEBUG_LIST is not set |
1616 | # CONFIG_DEBUG_SG is not set | 1637 | # CONFIG_DEBUG_SG is not set |
1638 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1617 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1639 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1618 | # CONFIG_RCU_TORTURE_TEST is not set | 1640 | # CONFIG_RCU_TORTURE_TEST is not set |
1619 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1641 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1623,6 +1645,8 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1623 | # CONFIG_LATENCYTOP is not set | 1645 | # CONFIG_LATENCYTOP is not set |
1624 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1646 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1625 | CONFIG_HAVE_FUNCTION_TRACER=y | 1647 | CONFIG_HAVE_FUNCTION_TRACER=y |
1648 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1649 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1626 | 1650 | ||
1627 | # | 1651 | # |
1628 | # Tracers | 1652 | # Tracers |
@@ -1631,11 +1655,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1631 | # CONFIG_SCHED_TRACER is not set | 1655 | # CONFIG_SCHED_TRACER is not set |
1632 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1656 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1633 | # CONFIG_BOOT_TRACER is not set | 1657 | # CONFIG_BOOT_TRACER is not set |
1658 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1634 | # CONFIG_STACK_TRACER is not set | 1659 | # CONFIG_STACK_TRACER is not set |
1635 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1660 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1636 | # CONFIG_SAMPLES is not set | 1661 | # CONFIG_SAMPLES is not set |
1637 | CONFIG_HAVE_ARCH_KGDB=y | 1662 | CONFIG_HAVE_ARCH_KGDB=y |
1638 | # CONFIG_KGDB is not set | 1663 | # CONFIG_KGDB is not set |
1664 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1639 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1665 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1640 | # CONFIG_DEBUG_STACK_USAGE is not set | 1666 | # CONFIG_DEBUG_STACK_USAGE is not set |
1641 | # CONFIG_DEBUG_PAGEALLOC is not set | 1667 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1662,11 +1688,15 @@ CONFIG_CRYPTO=y | |||
1662 | # | 1688 | # |
1663 | # CONFIG_CRYPTO_FIPS is not set | 1689 | # CONFIG_CRYPTO_FIPS is not set |
1664 | CONFIG_CRYPTO_ALGAPI=y | 1690 | CONFIG_CRYPTO_ALGAPI=y |
1665 | CONFIG_CRYPTO_AEAD=y | 1691 | CONFIG_CRYPTO_ALGAPI2=y |
1692 | CONFIG_CRYPTO_AEAD2=y | ||
1666 | CONFIG_CRYPTO_BLKCIPHER=y | 1693 | CONFIG_CRYPTO_BLKCIPHER=y |
1694 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1667 | CONFIG_CRYPTO_HASH=y | 1695 | CONFIG_CRYPTO_HASH=y |
1668 | CONFIG_CRYPTO_RNG=y | 1696 | CONFIG_CRYPTO_HASH2=y |
1697 | CONFIG_CRYPTO_RNG2=y | ||
1669 | CONFIG_CRYPTO_MANAGER=y | 1698 | CONFIG_CRYPTO_MANAGER=y |
1699 | CONFIG_CRYPTO_MANAGER2=y | ||
1670 | # CONFIG_CRYPTO_GF128MUL is not set | 1700 | # CONFIG_CRYPTO_GF128MUL is not set |
1671 | # CONFIG_CRYPTO_NULL is not set | 1701 | # CONFIG_CRYPTO_NULL is not set |
1672 | # CONFIG_CRYPTO_CRYPTD is not set | 1702 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mgcoge_defconfig b/arch/powerpc/configs/mgcoge_defconfig index 8d3c62324009..c58c38d5b7a6 100644 --- a/arch/powerpc/configs/mgcoge_defconfig +++ b/arch/powerpc/configs/mgcoge_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:38 2008 | 4 | # Mon Jan 26 15:35:30 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -89,6 +89,7 @@ CONFIG_EMBEDDED=y | |||
89 | CONFIG_SYSCTL_SYSCALL=y | 89 | CONFIG_SYSCTL_SYSCALL=y |
90 | CONFIG_KALLSYMS=y | 90 | CONFIG_KALLSYMS=y |
91 | CONFIG_KALLSYMS_ALL=y | 91 | CONFIG_KALLSYMS_ALL=y |
92 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
93 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
94 | CONFIG_PRINTK=y | 95 | CONFIG_PRINTK=y |
@@ -111,7 +112,6 @@ CONFIG_SLAB=y | |||
111 | # CONFIG_SLUB is not set | 112 | # CONFIG_SLUB is not set |
112 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
113 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
114 | # CONFIG_MARKERS is not set | ||
115 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
117 | CONFIG_HAVE_IOREMAP_PROT=y | 117 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -122,13 +122,11 @@ CONFIG_HAVE_CLK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
127 | # CONFIG_MODULES is not set | 126 | # CONFIG_MODULES is not set |
128 | CONFIG_BLOCK=y | 127 | CONFIG_BLOCK=y |
129 | # CONFIG_LBD is not set | 128 | # CONFIG_LBD is not set |
130 | # CONFIG_BLK_DEV_IO_TRACE is not set | 129 | # CONFIG_BLK_DEV_IO_TRACE is not set |
131 | # CONFIG_LSF is not set | ||
132 | # CONFIG_BLK_DEV_INTEGRITY is not set | 130 | # CONFIG_BLK_DEV_INTEGRITY is not set |
133 | 131 | ||
134 | # | 132 | # |
@@ -144,6 +142,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
144 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
145 | CONFIG_DEFAULT_IOSCHED="deadline" | 143 | CONFIG_DEFAULT_IOSCHED="deadline" |
146 | CONFIG_CLASSIC_RCU=y | 144 | CONFIG_CLASSIC_RCU=y |
145 | # CONFIG_TREE_RCU is not set | ||
146 | # CONFIG_PREEMPT_RCU is not set | ||
147 | # CONFIG_TREE_RCU_TRACE is not set | ||
148 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
147 | # CONFIG_FREEZER is not set | 149 | # CONFIG_FREEZER is not set |
148 | 150 | ||
149 | # | 151 | # |
@@ -190,6 +192,7 @@ CONFIG_PPC_MPC106=y | |||
190 | CONFIG_CPM2=y | 192 | CONFIG_CPM2=y |
191 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
192 | CONFIG_CPM=y | 194 | CONFIG_CPM=y |
195 | # CONFIG_SIMPLE_GPIO is not set | ||
193 | 196 | ||
194 | # | 197 | # |
195 | # Kernel options | 198 | # Kernel options |
@@ -215,6 +218,7 @@ CONFIG_BINFMT_MISC=y | |||
215 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
216 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 219 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
217 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
221 | # CONFIG_CRASH_DUMP is not set | ||
218 | CONFIG_ARCH_FLATMEM_ENABLE=y | 222 | CONFIG_ARCH_FLATMEM_ENABLE=y |
219 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 223 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
220 | CONFIG_FLATMEM=y | 224 | CONFIG_FLATMEM=y |
@@ -222,12 +226,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 228 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 229 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 232 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 233 | CONFIG_UNEVICTABLE_LRU=y |
234 | CONFIG_PPC_4K_PAGES=y | ||
235 | # CONFIG_PPC_16K_PAGES is not set | ||
236 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 237 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
@@ -253,6 +259,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
253 | # CONFIG_PCI_MSI is not set | 259 | # CONFIG_PCI_MSI is not set |
254 | # CONFIG_PCI_LEGACY is not set | 260 | # CONFIG_PCI_LEGACY is not set |
255 | # CONFIG_PCI_DEBUG is not set | 261 | # CONFIG_PCI_DEBUG is not set |
262 | # CONFIG_PCI_STUB is not set | ||
256 | # CONFIG_PCCARD is not set | 263 | # CONFIG_PCCARD is not set |
257 | # CONFIG_HOTPLUG_PCI is not set | 264 | # CONFIG_HOTPLUG_PCI is not set |
258 | # CONFIG_HAS_RAPIDIO is not set | 265 | # CONFIG_HAS_RAPIDIO is not set |
@@ -275,6 +282,7 @@ CONFIG_NET=y | |||
275 | # | 282 | # |
276 | # Networking options | 283 | # Networking options |
277 | # | 284 | # |
285 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
278 | CONFIG_PACKET=y | 286 | CONFIG_PACKET=y |
279 | # CONFIG_PACKET_MMAP is not set | 287 | # CONFIG_PACKET_MMAP is not set |
280 | CONFIG_UNIX=y | 288 | CONFIG_UNIX=y |
@@ -337,6 +345,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
337 | # CONFIG_IPX is not set | 345 | # CONFIG_IPX is not set |
338 | # CONFIG_ATALK is not set | 346 | # CONFIG_ATALK is not set |
339 | # CONFIG_NET_SCHED is not set | 347 | # CONFIG_NET_SCHED is not set |
348 | # CONFIG_DCB is not set | ||
340 | 349 | ||
341 | # | 350 | # |
342 | # Network testing | 351 | # Network testing |
@@ -351,8 +360,9 @@ CONFIG_WIRELESS=y | |||
351 | # CONFIG_CFG80211 is not set | 360 | # CONFIG_CFG80211 is not set |
352 | CONFIG_WIRELESS_OLD_REGULATORY=y | 361 | CONFIG_WIRELESS_OLD_REGULATORY=y |
353 | # CONFIG_WIRELESS_EXT is not set | 362 | # CONFIG_WIRELESS_EXT is not set |
363 | # CONFIG_LIB80211 is not set | ||
354 | # CONFIG_MAC80211 is not set | 364 | # CONFIG_MAC80211 is not set |
355 | # CONFIG_IEEE80211 is not set | 365 | # CONFIG_WIMAX is not set |
356 | # CONFIG_RFKILL is not set | 366 | # CONFIG_RFKILL is not set |
357 | 367 | ||
358 | # | 368 | # |
@@ -451,6 +461,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
451 | # CONFIG_MTD_ONENAND is not set | 461 | # CONFIG_MTD_ONENAND is not set |
452 | 462 | ||
453 | # | 463 | # |
464 | # LPDDR flash memory drivers | ||
465 | # | ||
466 | # CONFIG_MTD_LPDDR is not set | ||
467 | # CONFIG_MTD_QINFO_PROBE is not set | ||
468 | |||
469 | # | ||
454 | # UBI - Unsorted block images | 470 | # UBI - Unsorted block images |
455 | # | 471 | # |
456 | # CONFIG_MTD_UBI is not set | 472 | # CONFIG_MTD_UBI is not set |
@@ -522,6 +538,9 @@ CONFIG_PHYLIB=y | |||
522 | # CONFIG_BROADCOM_PHY is not set | 538 | # CONFIG_BROADCOM_PHY is not set |
523 | # CONFIG_ICPLUS_PHY is not set | 539 | # CONFIG_ICPLUS_PHY is not set |
524 | # CONFIG_REALTEK_PHY is not set | 540 | # CONFIG_REALTEK_PHY is not set |
541 | # CONFIG_NATIONAL_PHY is not set | ||
542 | # CONFIG_STE10XP is not set | ||
543 | # CONFIG_LSI_ET1011C_PHY is not set | ||
525 | CONFIG_FIXED_PHY=y | 544 | CONFIG_FIXED_PHY=y |
526 | # CONFIG_MDIO_BITBANG is not set | 545 | # CONFIG_MDIO_BITBANG is not set |
527 | CONFIG_NET_ETHERNET=y | 546 | CONFIG_NET_ETHERNET=y |
@@ -558,6 +577,10 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
558 | # CONFIG_WLAN_PRE80211 is not set | 577 | # CONFIG_WLAN_PRE80211 is not set |
559 | # CONFIG_WLAN_80211 is not set | 578 | # CONFIG_WLAN_80211 is not set |
560 | # CONFIG_IWLWIFI_LEDS is not set | 579 | # CONFIG_IWLWIFI_LEDS is not set |
580 | |||
581 | # | ||
582 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
583 | # | ||
561 | # CONFIG_WAN is not set | 584 | # CONFIG_WAN is not set |
562 | # CONFIG_FDDI is not set | 585 | # CONFIG_FDDI is not set |
563 | # CONFIG_PPP is not set | 586 | # CONFIG_PPP is not set |
@@ -601,6 +624,7 @@ CONFIG_SERIAL_CPM=y | |||
601 | CONFIG_SERIAL_CPM_CONSOLE=y | 624 | CONFIG_SERIAL_CPM_CONSOLE=y |
602 | # CONFIG_SERIAL_JSM is not set | 625 | # CONFIG_SERIAL_JSM is not set |
603 | CONFIG_UNIX98_PTYS=y | 626 | CONFIG_UNIX98_PTYS=y |
627 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
604 | CONFIG_LEGACY_PTYS=y | 628 | CONFIG_LEGACY_PTYS=y |
605 | CONFIG_LEGACY_PTY_COUNT=256 | 629 | CONFIG_LEGACY_PTY_COUNT=256 |
606 | # CONFIG_BRIQ_PANEL is not set | 630 | # CONFIG_BRIQ_PANEL is not set |
@@ -621,6 +645,11 @@ CONFIG_GPIOLIB=y | |||
621 | # CONFIG_DEBUG_GPIO is not set | 645 | # CONFIG_DEBUG_GPIO is not set |
622 | 646 | ||
623 | # | 647 | # |
648 | # Memory mapped GPIO expanders: | ||
649 | # | ||
650 | # CONFIG_GPIO_XILINX is not set | ||
651 | |||
652 | # | ||
624 | # I2C GPIO expanders: | 653 | # I2C GPIO expanders: |
625 | # | 654 | # |
626 | 655 | ||
@@ -638,11 +667,11 @@ CONFIG_GPIOLIB=y | |||
638 | # CONFIG_THERMAL is not set | 667 | # CONFIG_THERMAL is not set |
639 | # CONFIG_THERMAL_HWMON is not set | 668 | # CONFIG_THERMAL_HWMON is not set |
640 | # CONFIG_WATCHDOG is not set | 669 | # CONFIG_WATCHDOG is not set |
670 | CONFIG_SSB_POSSIBLE=y | ||
641 | 671 | ||
642 | # | 672 | # |
643 | # Sonics Silicon Backplane | 673 | # Sonics Silicon Backplane |
644 | # | 674 | # |
645 | CONFIG_SSB_POSSIBLE=y | ||
646 | # CONFIG_SSB is not set | 675 | # CONFIG_SSB is not set |
647 | 676 | ||
648 | # | 677 | # |
@@ -652,14 +681,7 @@ CONFIG_SSB_POSSIBLE=y | |||
652 | # CONFIG_MFD_SM501 is not set | 681 | # CONFIG_MFD_SM501 is not set |
653 | # CONFIG_HTC_PASIC3 is not set | 682 | # CONFIG_HTC_PASIC3 is not set |
654 | # CONFIG_MFD_TMIO is not set | 683 | # CONFIG_MFD_TMIO is not set |
655 | |||
656 | # | ||
657 | # Voltage and Current regulators | ||
658 | # | ||
659 | # CONFIG_REGULATOR is not set | 684 | # CONFIG_REGULATOR is not set |
660 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
661 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
662 | # CONFIG_REGULATOR_BQ24022 is not set | ||
663 | 685 | ||
664 | # | 686 | # |
665 | # Multimedia devices | 687 | # Multimedia devices |
@@ -753,10 +775,7 @@ CONFIG_TMPFS=y | |||
753 | # CONFIG_TMPFS_POSIX_ACL is not set | 775 | # CONFIG_TMPFS_POSIX_ACL is not set |
754 | # CONFIG_HUGETLB_PAGE is not set | 776 | # CONFIG_HUGETLB_PAGE is not set |
755 | # CONFIG_CONFIGFS_FS is not set | 777 | # CONFIG_CONFIGFS_FS is not set |
756 | 778 | CONFIG_MISC_FILESYSTEMS=y | |
757 | # | ||
758 | # Miscellaneous filesystems | ||
759 | # | ||
760 | # CONFIG_HFSPLUS_FS is not set | 779 | # CONFIG_HFSPLUS_FS is not set |
761 | CONFIG_JFFS2_FS=y | 780 | CONFIG_JFFS2_FS=y |
762 | CONFIG_JFFS2_FS_DEBUG=0 | 781 | CONFIG_JFFS2_FS_DEBUG=0 |
@@ -768,6 +787,7 @@ CONFIG_JFFS2_ZLIB=y | |||
768 | CONFIG_JFFS2_RTIME=y | 787 | CONFIG_JFFS2_RTIME=y |
769 | # CONFIG_JFFS2_RUBIN is not set | 788 | # CONFIG_JFFS2_RUBIN is not set |
770 | CONFIG_CRAMFS=y | 789 | CONFIG_CRAMFS=y |
790 | # CONFIG_SQUASHFS is not set | ||
771 | # CONFIG_VXFS_FS is not set | 791 | # CONFIG_VXFS_FS is not set |
772 | # CONFIG_MINIX_FS is not set | 792 | # CONFIG_MINIX_FS is not set |
773 | # CONFIG_OMFS_FS is not set | 793 | # CONFIG_OMFS_FS is not set |
@@ -857,6 +877,7 @@ CONFIG_NLS_UTF8=y | |||
857 | # Library routines | 877 | # Library routines |
858 | # | 878 | # |
859 | CONFIG_BITREVERSE=y | 879 | CONFIG_BITREVERSE=y |
880 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
860 | # CONFIG_CRC_CCITT is not set | 881 | # CONFIG_CRC_CCITT is not set |
861 | # CONFIG_CRC16 is not set | 882 | # CONFIG_CRC16 is not set |
862 | # CONFIG_CRC_T10DIF is not set | 883 | # CONFIG_CRC_T10DIF is not set |
@@ -905,6 +926,7 @@ CONFIG_DEBUG_INFO=y | |||
905 | # CONFIG_DEBUG_MEMORY_INIT is not set | 926 | # CONFIG_DEBUG_MEMORY_INIT is not set |
906 | # CONFIG_DEBUG_LIST is not set | 927 | # CONFIG_DEBUG_LIST is not set |
907 | # CONFIG_DEBUG_SG is not set | 928 | # CONFIG_DEBUG_SG is not set |
929 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
908 | # CONFIG_BOOT_PRINTK_DELAY is not set | 930 | # CONFIG_BOOT_PRINTK_DELAY is not set |
909 | # CONFIG_RCU_TORTURE_TEST is not set | 931 | # CONFIG_RCU_TORTURE_TEST is not set |
910 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 932 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -914,6 +936,8 @@ CONFIG_DEBUG_INFO=y | |||
914 | # CONFIG_LATENCYTOP is not set | 936 | # CONFIG_LATENCYTOP is not set |
915 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 937 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
916 | CONFIG_HAVE_FUNCTION_TRACER=y | 938 | CONFIG_HAVE_FUNCTION_TRACER=y |
939 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
940 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
917 | 941 | ||
918 | # | 942 | # |
919 | # Tracers | 943 | # Tracers |
@@ -922,10 +946,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
922 | # CONFIG_SCHED_TRACER is not set | 946 | # CONFIG_SCHED_TRACER is not set |
923 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 947 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
924 | # CONFIG_BOOT_TRACER is not set | 948 | # CONFIG_BOOT_TRACER is not set |
949 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
925 | # CONFIG_STACK_TRACER is not set | 950 | # CONFIG_STACK_TRACER is not set |
926 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 951 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
927 | # CONFIG_SAMPLES is not set | 952 | # CONFIG_SAMPLES is not set |
928 | CONFIG_HAVE_ARCH_KGDB=y | 953 | CONFIG_HAVE_ARCH_KGDB=y |
954 | CONFIG_PRINT_STACK_DEPTH=64 | ||
929 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 955 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
930 | # CONFIG_DEBUG_STACK_USAGE is not set | 956 | # CONFIG_DEBUG_STACK_USAGE is not set |
931 | # CONFIG_DEBUG_PAGEALLOC is not set | 957 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -953,11 +979,15 @@ CONFIG_CRYPTO=y | |||
953 | # | 979 | # |
954 | # CONFIG_CRYPTO_FIPS is not set | 980 | # CONFIG_CRYPTO_FIPS is not set |
955 | CONFIG_CRYPTO_ALGAPI=y | 981 | CONFIG_CRYPTO_ALGAPI=y |
956 | CONFIG_CRYPTO_AEAD=y | 982 | CONFIG_CRYPTO_ALGAPI2=y |
983 | CONFIG_CRYPTO_AEAD2=y | ||
957 | CONFIG_CRYPTO_BLKCIPHER=y | 984 | CONFIG_CRYPTO_BLKCIPHER=y |
985 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
958 | CONFIG_CRYPTO_HASH=y | 986 | CONFIG_CRYPTO_HASH=y |
959 | CONFIG_CRYPTO_RNG=y | 987 | CONFIG_CRYPTO_HASH2=y |
988 | CONFIG_CRYPTO_RNG2=y | ||
960 | CONFIG_CRYPTO_MANAGER=y | 989 | CONFIG_CRYPTO_MANAGER=y |
990 | CONFIG_CRYPTO_MANAGER2=y | ||
961 | # CONFIG_CRYPTO_NULL is not set | 991 | # CONFIG_CRYPTO_NULL is not set |
962 | # CONFIG_CRYPTO_CRYPTD is not set | 992 | # CONFIG_CRYPTO_CRYPTD is not set |
963 | # CONFIG_CRYPTO_AUTHENC is not set | 993 | # CONFIG_CRYPTO_AUTHENC is not set |
diff --git a/arch/powerpc/configs/mgsuvd_defconfig b/arch/powerpc/configs/mgsuvd_defconfig index fbaa67f7b0ef..297b5d5042be 100644 --- a/arch/powerpc/configs/mgsuvd_defconfig +++ b/arch/powerpc/configs/mgsuvd_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:39 2008 | 4 | # Mon Jan 26 15:35:32 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=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_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -69,12 +70,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
69 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
70 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
71 | CONFIG_LOG_BUF_SHIFT=17 | 72 | CONFIG_LOG_BUF_SHIFT=17 |
72 | # CONFIG_CGROUPS is not set | ||
73 | CONFIG_GROUP_SCHED=y | 73 | CONFIG_GROUP_SCHED=y |
74 | CONFIG_FAIR_GROUP_SCHED=y | 74 | CONFIG_FAIR_GROUP_SCHED=y |
75 | # CONFIG_RT_GROUP_SCHED is not set | 75 | # CONFIG_RT_GROUP_SCHED is not set |
76 | CONFIG_USER_SCHED=y | 76 | CONFIG_USER_SCHED=y |
77 | # CONFIG_CGROUP_SCHED is not set | 77 | # CONFIG_CGROUP_SCHED is not set |
78 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
79 | CONFIG_SYSFS_DEPRECATED_V2=y | 80 | CONFIG_SYSFS_DEPRECATED_V2=y |
80 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
@@ -106,7 +107,6 @@ CONFIG_SLAB=y | |||
106 | # CONFIG_SLUB is not set | 107 | # CONFIG_SLUB is not set |
107 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | 109 | # CONFIG_PROFILING is not set |
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | 110 | CONFIG_HAVE_OPROFILE=y |
111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
112 | CONFIG_HAVE_IOREMAP_PROT=y | 112 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -117,13 +117,11 @@ CONFIG_HAVE_CLK=y | |||
117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
118 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
119 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
120 | # CONFIG_TINY_SHMEM is not set | ||
121 | CONFIG_BASE_SMALL=1 | 120 | CONFIG_BASE_SMALL=1 |
122 | # CONFIG_MODULES is not set | 121 | # CONFIG_MODULES is not set |
123 | CONFIG_BLOCK=y | 122 | CONFIG_BLOCK=y |
124 | # CONFIG_LBD is not set | 123 | # CONFIG_LBD is not set |
125 | # CONFIG_BLK_DEV_IO_TRACE is not set | 124 | # CONFIG_BLK_DEV_IO_TRACE is not set |
126 | # CONFIG_LSF is not set | ||
127 | # CONFIG_BLK_DEV_BSG is not set | 125 | # CONFIG_BLK_DEV_BSG is not set |
128 | # CONFIG_BLK_DEV_INTEGRITY is not set | 126 | # CONFIG_BLK_DEV_INTEGRITY is not set |
129 | 127 | ||
@@ -140,6 +138,10 @@ CONFIG_DEFAULT_AS=y | |||
140 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
141 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | 140 | CONFIG_CLASSIC_RCU=y |
141 | # CONFIG_TREE_RCU is not set | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
143 | # CONFIG_TREE_RCU_TRACE is not set | ||
144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
143 | # CONFIG_FREEZER is not set | 145 | # CONFIG_FREEZER is not set |
144 | 146 | ||
145 | # | 147 | # |
@@ -186,6 +188,7 @@ CONFIG_UCODE_PATCH=y | |||
186 | # CONFIG_QUICC_ENGINE is not set | 188 | # CONFIG_QUICC_ENGINE is not set |
187 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
188 | CONFIG_CPM=y | 190 | CONFIG_CPM=y |
191 | # CONFIG_SIMPLE_GPIO is not set | ||
189 | 192 | ||
190 | # | 193 | # |
191 | # Kernel options | 194 | # Kernel options |
@@ -209,6 +212,7 @@ CONFIG_BINFMT_ELF=y | |||
209 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
210 | CONFIG_MATH_EMULATION=y | 213 | CONFIG_MATH_EMULATION=y |
211 | # CONFIG_IOMMU_HELPER is not set | 214 | # CONFIG_IOMMU_HELPER is not set |
215 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
213 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 217 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -223,12 +227,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
223 | CONFIG_PAGEFLAGS_EXTENDED=y | 227 | CONFIG_PAGEFLAGS_EXTENDED=y |
224 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
225 | CONFIG_MIGRATION=y | 229 | CONFIG_MIGRATION=y |
226 | # CONFIG_RESOURCES_64BIT is not set | ||
227 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 230 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
228 | CONFIG_ZONE_DMA_FLAG=1 | 231 | CONFIG_ZONE_DMA_FLAG=1 |
229 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
230 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
231 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
235 | CONFIG_PPC_4K_PAGES=y | ||
236 | # CONFIG_PPC_16K_PAGES is not set | ||
237 | # CONFIG_PPC_64K_PAGES is not set | ||
232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
233 | # CONFIG_PROC_DEVICETREE is not set | 239 | # CONFIG_PROC_DEVICETREE is not set |
234 | # CONFIG_CMDLINE_BOOL is not set | 240 | # CONFIG_CMDLINE_BOOL is not set |
@@ -269,6 +275,7 @@ CONFIG_NET=y | |||
269 | # | 275 | # |
270 | # Networking options | 276 | # Networking options |
271 | # | 277 | # |
278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
272 | CONFIG_PACKET=y | 279 | CONFIG_PACKET=y |
273 | # CONFIG_PACKET_MMAP is not set | 280 | # CONFIG_PACKET_MMAP is not set |
274 | CONFIG_UNIX=y | 281 | CONFIG_UNIX=y |
@@ -325,6 +332,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
325 | # CONFIG_ECONET is not set | 332 | # CONFIG_ECONET is not set |
326 | # CONFIG_WAN_ROUTER is not set | 333 | # CONFIG_WAN_ROUTER is not set |
327 | # CONFIG_NET_SCHED is not set | 334 | # CONFIG_NET_SCHED is not set |
335 | # CONFIG_DCB is not set | ||
328 | 336 | ||
329 | # | 337 | # |
330 | # Network testing | 338 | # Network testing |
@@ -340,8 +348,9 @@ CONFIG_WIRELESS=y | |||
340 | # CONFIG_CFG80211 is not set | 348 | # CONFIG_CFG80211 is not set |
341 | CONFIG_WIRELESS_OLD_REGULATORY=y | 349 | CONFIG_WIRELESS_OLD_REGULATORY=y |
342 | # CONFIG_WIRELESS_EXT is not set | 350 | # CONFIG_WIRELESS_EXT is not set |
351 | # CONFIG_LIB80211 is not set | ||
343 | # CONFIG_MAC80211 is not set | 352 | # CONFIG_MAC80211 is not set |
344 | # CONFIG_IEEE80211 is not set | 353 | # CONFIG_WIMAX is not set |
345 | # CONFIG_RFKILL is not set | 354 | # CONFIG_RFKILL is not set |
346 | # CONFIG_NET_9P is not set | 355 | # CONFIG_NET_9P is not set |
347 | 356 | ||
@@ -435,6 +444,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
435 | # CONFIG_MTD_ONENAND is not set | 444 | # CONFIG_MTD_ONENAND is not set |
436 | 445 | ||
437 | # | 446 | # |
447 | # LPDDR flash memory drivers | ||
448 | # | ||
449 | # CONFIG_MTD_LPDDR is not set | ||
450 | # CONFIG_MTD_QINFO_PROBE is not set | ||
451 | |||
452 | # | ||
438 | # UBI - Unsorted block images | 453 | # UBI - Unsorted block images |
439 | # | 454 | # |
440 | # CONFIG_MTD_UBI is not set | 455 | # CONFIG_MTD_UBI is not set |
@@ -489,6 +504,9 @@ CONFIG_PHYLIB=y | |||
489 | # CONFIG_BROADCOM_PHY is not set | 504 | # CONFIG_BROADCOM_PHY is not set |
490 | # CONFIG_ICPLUS_PHY is not set | 505 | # CONFIG_ICPLUS_PHY is not set |
491 | # CONFIG_REALTEK_PHY is not set | 506 | # CONFIG_REALTEK_PHY is not set |
507 | # CONFIG_NATIONAL_PHY is not set | ||
508 | # CONFIG_STE10XP is not set | ||
509 | # CONFIG_LSI_ET1011C_PHY is not set | ||
492 | CONFIG_FIXED_PHY=y | 510 | CONFIG_FIXED_PHY=y |
493 | # CONFIG_MDIO_BITBANG is not set | 511 | # CONFIG_MDIO_BITBANG is not set |
494 | CONFIG_NET_ETHERNET=y | 512 | CONFIG_NET_ETHERNET=y |
@@ -514,6 +532,10 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
514 | # CONFIG_WLAN_PRE80211 is not set | 532 | # CONFIG_WLAN_PRE80211 is not set |
515 | # CONFIG_WLAN_80211 is not set | 533 | # CONFIG_WLAN_80211 is not set |
516 | # CONFIG_IWLWIFI_LEDS is not set | 534 | # CONFIG_IWLWIFI_LEDS is not set |
535 | |||
536 | # | ||
537 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
538 | # | ||
517 | # CONFIG_WAN is not set | 539 | # CONFIG_WAN is not set |
518 | # CONFIG_PPP is not set | 540 | # CONFIG_PPP is not set |
519 | # CONFIG_SLIP is not set | 541 | # CONFIG_SLIP is not set |
@@ -555,7 +577,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
555 | CONFIG_SERIAL_CPM=y | 577 | CONFIG_SERIAL_CPM=y |
556 | CONFIG_SERIAL_CPM_CONSOLE=y | 578 | CONFIG_SERIAL_CPM_CONSOLE=y |
557 | CONFIG_UNIX98_PTYS=y | 579 | CONFIG_UNIX98_PTYS=y |
580 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
558 | # CONFIG_LEGACY_PTYS is not set | 581 | # CONFIG_LEGACY_PTYS is not set |
582 | # CONFIG_HVC_UDBG is not set | ||
559 | # CONFIG_IPMI_HANDLER is not set | 583 | # CONFIG_IPMI_HANDLER is not set |
560 | CONFIG_HW_RANDOM=y | 584 | CONFIG_HW_RANDOM=y |
561 | # CONFIG_NVRAM is not set | 585 | # CONFIG_NVRAM is not set |
@@ -574,11 +598,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
574 | # CONFIG_THERMAL is not set | 598 | # CONFIG_THERMAL is not set |
575 | # CONFIG_THERMAL_HWMON is not set | 599 | # CONFIG_THERMAL_HWMON is not set |
576 | # CONFIG_WATCHDOG is not set | 600 | # CONFIG_WATCHDOG is not set |
601 | CONFIG_SSB_POSSIBLE=y | ||
577 | 602 | ||
578 | # | 603 | # |
579 | # Sonics Silicon Backplane | 604 | # Sonics Silicon Backplane |
580 | # | 605 | # |
581 | CONFIG_SSB_POSSIBLE=y | ||
582 | # CONFIG_SSB is not set | 606 | # CONFIG_SSB is not set |
583 | 607 | ||
584 | # | 608 | # |
@@ -588,14 +612,7 @@ CONFIG_SSB_POSSIBLE=y | |||
588 | # CONFIG_MFD_SM501 is not set | 612 | # CONFIG_MFD_SM501 is not set |
589 | # CONFIG_HTC_PASIC3 is not set | 613 | # CONFIG_HTC_PASIC3 is not set |
590 | # CONFIG_MFD_TMIO is not set | 614 | # CONFIG_MFD_TMIO is not set |
591 | |||
592 | # | ||
593 | # Voltage and Current regulators | ||
594 | # | ||
595 | # CONFIG_REGULATOR is not set | 615 | # CONFIG_REGULATOR is not set |
596 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
597 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
598 | # CONFIG_REGULATOR_BQ24022 is not set | ||
599 | 616 | ||
600 | # | 617 | # |
601 | # Multimedia devices | 618 | # Multimedia devices |
@@ -659,6 +676,7 @@ CONFIG_FS_MBCACHE=y | |||
659 | CONFIG_FILE_LOCKING=y | 676 | CONFIG_FILE_LOCKING=y |
660 | # CONFIG_XFS_FS is not set | 677 | # CONFIG_XFS_FS is not set |
661 | # CONFIG_OCFS2_FS is not set | 678 | # CONFIG_OCFS2_FS is not set |
679 | # CONFIG_BTRFS_FS is not set | ||
662 | CONFIG_DNOTIFY=y | 680 | CONFIG_DNOTIFY=y |
663 | CONFIG_INOTIFY=y | 681 | CONFIG_INOTIFY=y |
664 | CONFIG_INOTIFY_USER=y | 682 | CONFIG_INOTIFY_USER=y |
@@ -692,10 +710,7 @@ CONFIG_TMPFS=y | |||
692 | # CONFIG_TMPFS_POSIX_ACL is not set | 710 | # CONFIG_TMPFS_POSIX_ACL is not set |
693 | # CONFIG_HUGETLB_PAGE is not set | 711 | # CONFIG_HUGETLB_PAGE is not set |
694 | # CONFIG_CONFIGFS_FS is not set | 712 | # CONFIG_CONFIGFS_FS is not set |
695 | 713 | CONFIG_MISC_FILESYSTEMS=y | |
696 | # | ||
697 | # Miscellaneous filesystems | ||
698 | # | ||
699 | # CONFIG_ADFS_FS is not set | 714 | # CONFIG_ADFS_FS is not set |
700 | # CONFIG_AFFS_FS is not set | 715 | # CONFIG_AFFS_FS is not set |
701 | # CONFIG_HFS_FS is not set | 716 | # CONFIG_HFS_FS is not set |
@@ -715,6 +730,7 @@ CONFIG_JFFS2_ZLIB=y | |||
715 | CONFIG_JFFS2_RTIME=y | 730 | CONFIG_JFFS2_RTIME=y |
716 | # CONFIG_JFFS2_RUBIN is not set | 731 | # CONFIG_JFFS2_RUBIN is not set |
717 | CONFIG_CRAMFS=y | 732 | CONFIG_CRAMFS=y |
733 | # CONFIG_SQUASHFS is not set | ||
718 | # CONFIG_VXFS_FS is not set | 734 | # CONFIG_VXFS_FS is not set |
719 | # CONFIG_MINIX_FS is not set | 735 | # CONFIG_MINIX_FS is not set |
720 | # CONFIG_OMFS_FS is not set | 736 | # CONFIG_OMFS_FS is not set |
@@ -771,6 +787,7 @@ CONFIG_MSDOS_PARTITION=y | |||
771 | # Library routines | 787 | # Library routines |
772 | # | 788 | # |
773 | CONFIG_BITREVERSE=y | 789 | CONFIG_BITREVERSE=y |
790 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
774 | CONFIG_CRC_CCITT=y | 791 | CONFIG_CRC_CCITT=y |
775 | # CONFIG_CRC16 is not set | 792 | # CONFIG_CRC16 is not set |
776 | # CONFIG_CRC_T10DIF is not set | 793 | # CONFIG_CRC_T10DIF is not set |
@@ -802,6 +819,8 @@ CONFIG_DEBUG_FS=y | |||
802 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 819 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
803 | # CONFIG_LATENCYTOP is not set | 820 | # CONFIG_LATENCYTOP is not set |
804 | CONFIG_HAVE_FUNCTION_TRACER=y | 821 | CONFIG_HAVE_FUNCTION_TRACER=y |
822 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
823 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
805 | 824 | ||
806 | # | 825 | # |
807 | # Tracers | 826 | # Tracers |
@@ -809,6 +828,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
809 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 828 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
810 | # CONFIG_SAMPLES is not set | 829 | # CONFIG_SAMPLES is not set |
811 | CONFIG_HAVE_ARCH_KGDB=y | 830 | CONFIG_HAVE_ARCH_KGDB=y |
831 | CONFIG_PRINT_STACK_DEPTH=64 | ||
812 | # CONFIG_IRQSTACKS is not set | 832 | # CONFIG_IRQSTACKS is not set |
813 | # CONFIG_VIRQ_DEBUG is not set | 833 | # CONFIG_VIRQ_DEBUG is not set |
814 | # CONFIG_PPC_EARLY_DEBUG is not set | 834 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -827,6 +847,7 @@ CONFIG_CRYPTO=y | |||
827 | # | 847 | # |
828 | # CONFIG_CRYPTO_FIPS is not set | 848 | # CONFIG_CRYPTO_FIPS is not set |
829 | # CONFIG_CRYPTO_MANAGER is not set | 849 | # CONFIG_CRYPTO_MANAGER is not set |
850 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
830 | # CONFIG_CRYPTO_GF128MUL is not set | 851 | # CONFIG_CRYPTO_GF128MUL is not set |
831 | # CONFIG_CRYPTO_NULL is not set | 852 | # CONFIG_CRYPTO_NULL is not set |
832 | # CONFIG_CRYPTO_CRYPTD is not set | 853 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mpc7448_hpc2_defconfig b/arch/powerpc/configs/mpc7448_hpc2_defconfig index f80b1ca43afb..38712e861c46 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:40 2008 | 4 | # Mon Jan 26 15:35:33 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -43,7 +43,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 43 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 44 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 45 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 46 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 48 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 49 | CONFIG_OF=y |
@@ -73,12 +73,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
73 | # CONFIG_AUDIT is not set | 73 | # CONFIG_AUDIT is not set |
74 | # CONFIG_IKCONFIG is not set | 74 | # CONFIG_IKCONFIG is not set |
75 | CONFIG_LOG_BUF_SHIFT=14 | 75 | CONFIG_LOG_BUF_SHIFT=14 |
76 | # CONFIG_CGROUPS is not set | ||
77 | CONFIG_GROUP_SCHED=y | 76 | CONFIG_GROUP_SCHED=y |
78 | # CONFIG_FAIR_GROUP_SCHED is not set | 77 | # CONFIG_FAIR_GROUP_SCHED is not set |
79 | # CONFIG_RT_GROUP_SCHED is not set | 78 | # CONFIG_RT_GROUP_SCHED is not set |
80 | CONFIG_USER_SCHED=y | 79 | CONFIG_USER_SCHED=y |
81 | # CONFIG_CGROUP_SCHED is not set | 80 | # CONFIG_CGROUP_SCHED is not set |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_SYSFS_DEPRECATED=y | 82 | CONFIG_SYSFS_DEPRECATED=y |
83 | CONFIG_SYSFS_DEPRECATED_V2=y | 83 | CONFIG_SYSFS_DEPRECATED_V2=y |
84 | # CONFIG_RELAY is not set | 84 | # CONFIG_RELAY is not set |
@@ -112,7 +112,6 @@ CONFIG_SLUB_DEBUG=y | |||
112 | CONFIG_SLUB=y | 112 | CONFIG_SLUB=y |
113 | # CONFIG_SLOB is not set | 113 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
118 | CONFIG_HAVE_IOREMAP_PROT=y | 117 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -122,13 +121,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
123 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
124 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
125 | # CONFIG_TINY_SHMEM is not set | ||
126 | CONFIG_BASE_SMALL=0 | 124 | CONFIG_BASE_SMALL=0 |
127 | # CONFIG_MODULES is not set | 125 | # CONFIG_MODULES is not set |
128 | CONFIG_BLOCK=y | 126 | CONFIG_BLOCK=y |
129 | CONFIG_LBD=y | 127 | CONFIG_LBD=y |
130 | # CONFIG_BLK_DEV_IO_TRACE is not set | 128 | # CONFIG_BLK_DEV_IO_TRACE is not set |
131 | # CONFIG_LSF is not set | ||
132 | # CONFIG_BLK_DEV_BSG is not set | 129 | # CONFIG_BLK_DEV_BSG is not set |
133 | # CONFIG_BLK_DEV_INTEGRITY is not set | 130 | # CONFIG_BLK_DEV_INTEGRITY is not set |
134 | 131 | ||
@@ -145,6 +142,10 @@ CONFIG_DEFAULT_AS=y | |||
145 | # CONFIG_DEFAULT_NOOP is not set | 142 | # CONFIG_DEFAULT_NOOP is not set |
146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 143 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
147 | CONFIG_CLASSIC_RCU=y | 144 | CONFIG_CLASSIC_RCU=y |
145 | # CONFIG_TREE_RCU is not set | ||
146 | # CONFIG_PREEMPT_RCU is not set | ||
147 | # CONFIG_TREE_RCU_TRACE is not set | ||
148 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
148 | # CONFIG_FREEZER is not set | 149 | # CONFIG_FREEZER is not set |
149 | 150 | ||
150 | # | 151 | # |
@@ -184,6 +185,7 @@ CONFIG_MPIC_WEIRD=y | |||
184 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
185 | # CONFIG_TAU is not set | 186 | # CONFIG_TAU is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 187 | # CONFIG_FSL_ULI1575 is not set |
188 | # CONFIG_SIMPLE_GPIO is not set | ||
187 | 189 | ||
188 | # | 190 | # |
189 | # Kernel options | 191 | # Kernel options |
@@ -211,6 +213,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
211 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
212 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
213 | # CONFIG_KEXEC is not set | 215 | # CONFIG_KEXEC is not set |
216 | # CONFIG_CRASH_DUMP is not set | ||
214 | CONFIG_ARCH_FLATMEM_ENABLE=y | 217 | CONFIG_ARCH_FLATMEM_ENABLE=y |
215 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 218 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
216 | CONFIG_SELECT_MEMORY_MODEL=y | 219 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -222,12 +225,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
222 | CONFIG_PAGEFLAGS_EXTENDED=y | 225 | CONFIG_PAGEFLAGS_EXTENDED=y |
223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
224 | CONFIG_MIGRATION=y | 227 | CONFIG_MIGRATION=y |
225 | # CONFIG_RESOURCES_64BIT is not set | ||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 228 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
228 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
229 | CONFIG_VIRT_TO_BUS=y | 231 | CONFIG_VIRT_TO_BUS=y |
230 | CONFIG_UNEVICTABLE_LRU=y | 232 | CONFIG_UNEVICTABLE_LRU=y |
233 | CONFIG_PPC_4K_PAGES=y | ||
234 | # CONFIG_PPC_16K_PAGES is not set | ||
235 | # CONFIG_PPC_64K_PAGES is not set | ||
231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 236 | CONFIG_FORCE_MAX_ZONEORDER=11 |
232 | CONFIG_PROC_DEVICETREE=y | 237 | CONFIG_PROC_DEVICETREE=y |
233 | # CONFIG_CMDLINE_BOOL is not set | 238 | # CONFIG_CMDLINE_BOOL is not set |
@@ -249,6 +254,7 @@ CONFIG_PCI_SYSCALL=y | |||
249 | CONFIG_ARCH_SUPPORTS_MSI=y | 254 | CONFIG_ARCH_SUPPORTS_MSI=y |
250 | # CONFIG_PCI_MSI is not set | 255 | # CONFIG_PCI_MSI is not set |
251 | # CONFIG_PCI_LEGACY is not set | 256 | # CONFIG_PCI_LEGACY is not set |
257 | # CONFIG_PCI_STUB is not set | ||
252 | # CONFIG_PCCARD is not set | 258 | # CONFIG_PCCARD is not set |
253 | # CONFIG_HOTPLUG_PCI is not set | 259 | # CONFIG_HOTPLUG_PCI is not set |
254 | # CONFIG_HAS_RAPIDIO is not set | 260 | # CONFIG_HAS_RAPIDIO is not set |
@@ -271,6 +277,7 @@ CONFIG_NET=y | |||
271 | # | 277 | # |
272 | # Networking options | 278 | # Networking options |
273 | # | 279 | # |
280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
274 | CONFIG_PACKET=y | 281 | CONFIG_PACKET=y |
275 | # CONFIG_PACKET_MMAP is not set | 282 | # CONFIG_PACKET_MMAP is not set |
276 | CONFIG_UNIX=y | 283 | CONFIG_UNIX=y |
@@ -327,6 +334,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
327 | # CONFIG_ECONET is not set | 334 | # CONFIG_ECONET is not set |
328 | # CONFIG_WAN_ROUTER is not set | 335 | # CONFIG_WAN_ROUTER is not set |
329 | # CONFIG_NET_SCHED is not set | 336 | # CONFIG_NET_SCHED is not set |
337 | # CONFIG_DCB is not set | ||
330 | 338 | ||
331 | # | 339 | # |
332 | # Network testing | 340 | # Network testing |
@@ -342,8 +350,9 @@ CONFIG_WIRELESS=y | |||
342 | # CONFIG_CFG80211 is not set | 350 | # CONFIG_CFG80211 is not set |
343 | CONFIG_WIRELESS_OLD_REGULATORY=y | 351 | CONFIG_WIRELESS_OLD_REGULATORY=y |
344 | # CONFIG_WIRELESS_EXT is not set | 352 | # CONFIG_WIRELESS_EXT is not set |
353 | # CONFIG_LIB80211 is not set | ||
345 | # CONFIG_MAC80211 is not set | 354 | # CONFIG_MAC80211 is not set |
346 | # CONFIG_IEEE80211 is not set | 355 | # CONFIG_WIMAX is not set |
347 | # CONFIG_RFKILL is not set | 356 | # CONFIG_RFKILL is not set |
348 | # CONFIG_NET_9P is not set | 357 | # CONFIG_NET_9P is not set |
349 | 358 | ||
@@ -388,6 +397,7 @@ CONFIG_MISC_DEVICES=y | |||
388 | # CONFIG_TIFM_CORE is not set | 397 | # CONFIG_TIFM_CORE is not set |
389 | # CONFIG_ENCLOSURE_SERVICES is not set | 398 | # CONFIG_ENCLOSURE_SERVICES is not set |
390 | # CONFIG_HP_ILO is not set | 399 | # CONFIG_HP_ILO is not set |
400 | # CONFIG_C2PORT is not set | ||
391 | CONFIG_HAVE_IDE=y | 401 | CONFIG_HAVE_IDE=y |
392 | # CONFIG_IDE is not set | 402 | # CONFIG_IDE is not set |
393 | 403 | ||
@@ -429,6 +439,7 @@ CONFIG_BLK_DEV_SD=y | |||
429 | # CONFIG_SCSI_SRP_ATTRS is not set | 439 | # CONFIG_SCSI_SRP_ATTRS is not set |
430 | CONFIG_SCSI_LOWLEVEL=y | 440 | CONFIG_SCSI_LOWLEVEL=y |
431 | # CONFIG_ISCSI_TCP is not set | 441 | # CONFIG_ISCSI_TCP is not set |
442 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
432 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 443 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
433 | # CONFIG_SCSI_3W_9XXX is not set | 444 | # CONFIG_SCSI_3W_9XXX is not set |
434 | # CONFIG_SCSI_ACARD is not set | 445 | # CONFIG_SCSI_ACARD is not set |
@@ -445,6 +456,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
445 | # CONFIG_MEGARAID_SAS is not set | 456 | # CONFIG_MEGARAID_SAS is not set |
446 | # CONFIG_SCSI_HPTIOP is not set | 457 | # CONFIG_SCSI_HPTIOP is not set |
447 | # CONFIG_SCSI_BUSLOGIC is not set | 458 | # CONFIG_SCSI_BUSLOGIC is not set |
459 | # CONFIG_LIBFC is not set | ||
460 | # CONFIG_FCOE is not set | ||
448 | # CONFIG_SCSI_DMX3191D is not set | 461 | # CONFIG_SCSI_DMX3191D is not set |
449 | # CONFIG_SCSI_EATA is not set | 462 | # CONFIG_SCSI_EATA is not set |
450 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 463 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -563,6 +576,9 @@ CONFIG_PHYLIB=y | |||
563 | # CONFIG_BROADCOM_PHY is not set | 576 | # CONFIG_BROADCOM_PHY is not set |
564 | # CONFIG_ICPLUS_PHY is not set | 577 | # CONFIG_ICPLUS_PHY is not set |
565 | # CONFIG_REALTEK_PHY is not set | 578 | # CONFIG_REALTEK_PHY is not set |
579 | # CONFIG_NATIONAL_PHY is not set | ||
580 | # CONFIG_STE10XP is not set | ||
581 | # CONFIG_LSI_ET1011C_PHY is not set | ||
566 | # CONFIG_FIXED_PHY is not set | 582 | # CONFIG_FIXED_PHY is not set |
567 | # CONFIG_MDIO_BITBANG is not set | 583 | # CONFIG_MDIO_BITBANG is not set |
568 | CONFIG_NET_ETHERNET=y | 584 | CONFIG_NET_ETHERNET=y |
@@ -586,7 +602,6 @@ CONFIG_NET_PCI=y | |||
586 | # CONFIG_ADAPTEC_STARFIRE is not set | 602 | # CONFIG_ADAPTEC_STARFIRE is not set |
587 | # CONFIG_B44 is not set | 603 | # CONFIG_B44 is not set |
588 | # CONFIG_FORCEDETH is not set | 604 | # CONFIG_FORCEDETH is not set |
589 | # CONFIG_EEPRO100 is not set | ||
590 | CONFIG_E100=y | 605 | CONFIG_E100=y |
591 | # CONFIG_FEALNX is not set | 606 | # CONFIG_FEALNX is not set |
592 | # CONFIG_NATSEMI is not set | 607 | # CONFIG_NATSEMI is not set |
@@ -600,6 +615,7 @@ CONFIG_8139TOO=y | |||
600 | # CONFIG_R6040 is not set | 615 | # CONFIG_R6040 is not set |
601 | # CONFIG_SIS900 is not set | 616 | # CONFIG_SIS900 is not set |
602 | # CONFIG_EPIC100 is not set | 617 | # CONFIG_EPIC100 is not set |
618 | # CONFIG_SMSC9420 is not set | ||
603 | # CONFIG_SUNDANCE is not set | 619 | # CONFIG_SUNDANCE is not set |
604 | # CONFIG_TLAN is not set | 620 | # CONFIG_TLAN is not set |
605 | # CONFIG_VIA_RHINE is not set | 621 | # CONFIG_VIA_RHINE is not set |
@@ -630,6 +646,7 @@ CONFIG_TSI108_ETH=y | |||
630 | # CONFIG_JME is not set | 646 | # CONFIG_JME is not set |
631 | CONFIG_NETDEV_10000=y | 647 | CONFIG_NETDEV_10000=y |
632 | # CONFIG_CHELSIO_T1 is not set | 648 | # CONFIG_CHELSIO_T1 is not set |
649 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
633 | # CONFIG_CHELSIO_T3 is not set | 650 | # CONFIG_CHELSIO_T3 is not set |
634 | # CONFIG_ENIC is not set | 651 | # CONFIG_ENIC is not set |
635 | # CONFIG_IXGBE is not set | 652 | # CONFIG_IXGBE is not set |
@@ -652,6 +669,10 @@ CONFIG_NETDEV_10000=y | |||
652 | # CONFIG_WLAN_PRE80211 is not set | 669 | # CONFIG_WLAN_PRE80211 is not set |
653 | # CONFIG_WLAN_80211 is not set | 670 | # CONFIG_WLAN_80211 is not set |
654 | # CONFIG_IWLWIFI_LEDS is not set | 671 | # CONFIG_IWLWIFI_LEDS is not set |
672 | |||
673 | # | ||
674 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
675 | # | ||
655 | # CONFIG_WAN is not set | 676 | # CONFIG_WAN is not set |
656 | # CONFIG_FDDI is not set | 677 | # CONFIG_FDDI is not set |
657 | # CONFIG_HIPPI is not set | 678 | # CONFIG_HIPPI is not set |
@@ -722,8 +743,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
722 | # CONFIG_SERIAL_JSM is not set | 743 | # CONFIG_SERIAL_JSM is not set |
723 | # CONFIG_SERIAL_OF_PLATFORM is not set | 744 | # CONFIG_SERIAL_OF_PLATFORM is not set |
724 | CONFIG_UNIX98_PTYS=y | 745 | CONFIG_UNIX98_PTYS=y |
746 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
725 | CONFIG_LEGACY_PTYS=y | 747 | CONFIG_LEGACY_PTYS=y |
726 | CONFIG_LEGACY_PTY_COUNT=256 | 748 | CONFIG_LEGACY_PTY_COUNT=256 |
749 | # CONFIG_HVC_UDBG is not set | ||
727 | # CONFIG_IPMI_HANDLER is not set | 750 | # CONFIG_IPMI_HANDLER is not set |
728 | # CONFIG_HW_RANDOM is not set | 751 | # CONFIG_HW_RANDOM is not set |
729 | # CONFIG_NVRAM is not set | 752 | # CONFIG_NVRAM is not set |
@@ -760,11 +783,11 @@ CONFIG_HWMON=y | |||
760 | # CONFIG_THERMAL is not set | 783 | # CONFIG_THERMAL is not set |
761 | # CONFIG_THERMAL_HWMON is not set | 784 | # CONFIG_THERMAL_HWMON is not set |
762 | # CONFIG_WATCHDOG is not set | 785 | # CONFIG_WATCHDOG is not set |
786 | CONFIG_SSB_POSSIBLE=y | ||
763 | 787 | ||
764 | # | 788 | # |
765 | # Sonics Silicon Backplane | 789 | # Sonics Silicon Backplane |
766 | # | 790 | # |
767 | CONFIG_SSB_POSSIBLE=y | ||
768 | # CONFIG_SSB is not set | 791 | # CONFIG_SSB is not set |
769 | 792 | ||
770 | # | 793 | # |
@@ -774,14 +797,7 @@ CONFIG_SSB_POSSIBLE=y | |||
774 | # CONFIG_MFD_SM501 is not set | 797 | # CONFIG_MFD_SM501 is not set |
775 | # CONFIG_HTC_PASIC3 is not set | 798 | # CONFIG_HTC_PASIC3 is not set |
776 | # CONFIG_MFD_TMIO is not set | 799 | # CONFIG_MFD_TMIO is not set |
777 | |||
778 | # | ||
779 | # Voltage and Current regulators | ||
780 | # | ||
781 | # CONFIG_REGULATOR is not set | 800 | # CONFIG_REGULATOR is not set |
782 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
783 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
784 | # CONFIG_REGULATOR_BQ24022 is not set | ||
785 | 801 | ||
786 | # | 802 | # |
787 | # Multimedia devices | 803 | # Multimedia devices |
@@ -837,9 +853,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
837 | # | 853 | # |
838 | 854 | ||
839 | # | 855 | # |
840 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 856 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
841 | # | 857 | # |
842 | # CONFIG_USB_GADGET is not set | 858 | # CONFIG_USB_GADGET is not set |
859 | |||
860 | # | ||
861 | # OTG and related infrastructure | ||
862 | # | ||
843 | # CONFIG_UWB is not set | 863 | # CONFIG_UWB is not set |
844 | # CONFIG_MMC is not set | 864 | # CONFIG_MMC is not set |
845 | # CONFIG_MEMSTICK is not set | 865 | # CONFIG_MEMSTICK is not set |
@@ -870,7 +890,9 @@ CONFIG_FS_MBCACHE=y | |||
870 | # CONFIG_FS_POSIX_ACL is not set | 890 | # CONFIG_FS_POSIX_ACL is not set |
871 | CONFIG_FILE_LOCKING=y | 891 | CONFIG_FILE_LOCKING=y |
872 | # CONFIG_XFS_FS is not set | 892 | # CONFIG_XFS_FS is not set |
893 | # CONFIG_GFS2_FS is not set | ||
873 | # CONFIG_OCFS2_FS is not set | 894 | # CONFIG_OCFS2_FS is not set |
895 | # CONFIG_BTRFS_FS is not set | ||
874 | CONFIG_DNOTIFY=y | 896 | CONFIG_DNOTIFY=y |
875 | CONFIG_INOTIFY=y | 897 | CONFIG_INOTIFY=y |
876 | CONFIG_INOTIFY_USER=y | 898 | CONFIG_INOTIFY_USER=y |
@@ -904,10 +926,7 @@ CONFIG_TMPFS=y | |||
904 | # CONFIG_TMPFS_POSIX_ACL is not set | 926 | # CONFIG_TMPFS_POSIX_ACL is not set |
905 | # CONFIG_HUGETLB_PAGE is not set | 927 | # CONFIG_HUGETLB_PAGE is not set |
906 | # CONFIG_CONFIGFS_FS is not set | 928 | # CONFIG_CONFIGFS_FS is not set |
907 | 929 | CONFIG_MISC_FILESYSTEMS=y | |
908 | # | ||
909 | # Miscellaneous filesystems | ||
910 | # | ||
911 | # CONFIG_ADFS_FS is not set | 930 | # CONFIG_ADFS_FS is not set |
912 | # CONFIG_AFFS_FS is not set | 931 | # CONFIG_AFFS_FS is not set |
913 | # CONFIG_HFS_FS is not set | 932 | # CONFIG_HFS_FS is not set |
@@ -916,6 +935,7 @@ CONFIG_TMPFS=y | |||
916 | # CONFIG_BFS_FS is not set | 935 | # CONFIG_BFS_FS is not set |
917 | # CONFIG_EFS_FS is not set | 936 | # CONFIG_EFS_FS is not set |
918 | # CONFIG_CRAMFS is not set | 937 | # CONFIG_CRAMFS is not set |
938 | # CONFIG_SQUASHFS is not set | ||
919 | # CONFIG_VXFS_FS is not set | 939 | # CONFIG_VXFS_FS is not set |
920 | # CONFIG_MINIX_FS is not set | 940 | # CONFIG_MINIX_FS is not set |
921 | # CONFIG_OMFS_FS is not set | 941 | # CONFIG_OMFS_FS is not set |
@@ -970,6 +990,7 @@ CONFIG_MSDOS_PARTITION=y | |||
970 | # Library routines | 990 | # Library routines |
971 | # | 991 | # |
972 | CONFIG_BITREVERSE=y | 992 | CONFIG_BITREVERSE=y |
993 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
973 | # CONFIG_CRC_CCITT is not set | 994 | # CONFIG_CRC_CCITT is not set |
974 | # CONFIG_CRC16 is not set | 995 | # CONFIG_CRC16 is not set |
975 | CONFIG_CRC_T10DIF=y | 996 | CONFIG_CRC_T10DIF=y |
@@ -1003,6 +1024,8 @@ CONFIG_FRAME_WARN=1024 | |||
1003 | # CONFIG_LATENCYTOP is not set | 1024 | # CONFIG_LATENCYTOP is not set |
1004 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1025 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1005 | CONFIG_HAVE_FUNCTION_TRACER=y | 1026 | CONFIG_HAVE_FUNCTION_TRACER=y |
1027 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1028 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1006 | 1029 | ||
1007 | # | 1030 | # |
1008 | # Tracers | 1031 | # Tracers |
@@ -1010,6 +1033,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1010 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1033 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1011 | # CONFIG_SAMPLES is not set | 1034 | # CONFIG_SAMPLES is not set |
1012 | CONFIG_HAVE_ARCH_KGDB=y | 1035 | CONFIG_HAVE_ARCH_KGDB=y |
1036 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1013 | # CONFIG_IRQSTACKS is not set | 1037 | # CONFIG_IRQSTACKS is not set |
1014 | # CONFIG_BOOTX_TEXT is not set | 1038 | # CONFIG_BOOTX_TEXT is not set |
1015 | # CONFIG_PPC_EARLY_DEBUG is not set | 1039 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1028,6 +1052,7 @@ CONFIG_CRYPTO=y | |||
1028 | # | 1052 | # |
1029 | # CONFIG_CRYPTO_FIPS is not set | 1053 | # CONFIG_CRYPTO_FIPS is not set |
1030 | # CONFIG_CRYPTO_MANAGER is not set | 1054 | # CONFIG_CRYPTO_MANAGER is not set |
1055 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1031 | # CONFIG_CRYPTO_GF128MUL is not set | 1056 | # CONFIG_CRYPTO_GF128MUL is not set |
1032 | # CONFIG_CRYPTO_NULL is not set | 1057 | # CONFIG_CRYPTO_NULL is not set |
1033 | # CONFIG_CRYPTO_CRYPTD is not set | 1058 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mpc8272_ads_defconfig b/arch/powerpc/configs/mpc8272_ads_defconfig index c8f5dec1b696..d85a43cb821f 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:41 2008 | 4 | # Mon Jan 26 15:35:35 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -86,6 +86,7 @@ CONFIG_EMBEDDED=y | |||
86 | CONFIG_SYSCTL_SYSCALL=y | 86 | CONFIG_SYSCTL_SYSCALL=y |
87 | CONFIG_KALLSYMS=y | 87 | CONFIG_KALLSYMS=y |
88 | CONFIG_KALLSYMS_ALL=y | 88 | CONFIG_KALLSYMS_ALL=y |
89 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
89 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
90 | CONFIG_HOTPLUG=y | 91 | CONFIG_HOTPLUG=y |
91 | CONFIG_PRINTK=y | 92 | CONFIG_PRINTK=y |
@@ -108,7 +109,6 @@ CONFIG_SLUB_DEBUG=y | |||
108 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
109 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | 111 | # CONFIG_PROFILING is not set |
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
114 | CONFIG_HAVE_IOREMAP_PROT=y | 114 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -119,13 +119,11 @@ CONFIG_HAVE_CLK=y | |||
119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
120 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
121 | CONFIG_RT_MUTEXES=y | 121 | CONFIG_RT_MUTEXES=y |
122 | # CONFIG_TINY_SHMEM is not set | ||
123 | CONFIG_BASE_SMALL=0 | 122 | CONFIG_BASE_SMALL=0 |
124 | # CONFIG_MODULES is not set | 123 | # CONFIG_MODULES is not set |
125 | CONFIG_BLOCK=y | 124 | CONFIG_BLOCK=y |
126 | # CONFIG_LBD is not set | 125 | # CONFIG_LBD is not set |
127 | # CONFIG_BLK_DEV_IO_TRACE is not set | 126 | # CONFIG_BLK_DEV_IO_TRACE is not set |
128 | # CONFIG_LSF is not set | ||
129 | # CONFIG_BLK_DEV_INTEGRITY is not set | 127 | # CONFIG_BLK_DEV_INTEGRITY is not set |
130 | 128 | ||
131 | # | 129 | # |
@@ -141,6 +139,10 @@ CONFIG_DEFAULT_AS=y | |||
141 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
142 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 140 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
143 | CONFIG_CLASSIC_RCU=y | 141 | CONFIG_CLASSIC_RCU=y |
142 | # CONFIG_TREE_RCU is not set | ||
143 | # CONFIG_PREEMPT_RCU is not set | ||
144 | # CONFIG_TREE_RCU_TRACE is not set | ||
145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
144 | # CONFIG_FREEZER is not set | 146 | # CONFIG_FREEZER is not set |
145 | 147 | ||
146 | # | 148 | # |
@@ -183,6 +185,7 @@ CONFIG_PQ2_ADS_PCI_PIC=y | |||
183 | CONFIG_CPM2=y | 185 | CONFIG_CPM2=y |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
185 | CONFIG_CPM=y | 187 | CONFIG_CPM=y |
188 | # CONFIG_SIMPLE_GPIO is not set | ||
186 | 189 | ||
187 | # | 190 | # |
188 | # Kernel options | 191 | # Kernel options |
@@ -209,6 +212,7 @@ CONFIG_BINFMT_MISC=y | |||
209 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
210 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
211 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
215 | # CONFIG_CRASH_DUMP is not set | ||
212 | CONFIG_ARCH_FLATMEM_ENABLE=y | 216 | CONFIG_ARCH_FLATMEM_ENABLE=y |
213 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 217 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
214 | CONFIG_FLATMEM=y | 218 | CONFIG_FLATMEM=y |
@@ -216,12 +220,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
216 | CONFIG_PAGEFLAGS_EXTENDED=y | 220 | CONFIG_PAGEFLAGS_EXTENDED=y |
217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
218 | CONFIG_MIGRATION=y | 222 | CONFIG_MIGRATION=y |
219 | # CONFIG_RESOURCES_64BIT is not set | ||
220 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 223 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
221 | CONFIG_ZONE_DMA_FLAG=1 | 224 | CONFIG_ZONE_DMA_FLAG=1 |
222 | CONFIG_BOUNCE=y | 225 | CONFIG_BOUNCE=y |
223 | CONFIG_VIRT_TO_BUS=y | 226 | CONFIG_VIRT_TO_BUS=y |
224 | CONFIG_UNEVICTABLE_LRU=y | 227 | CONFIG_UNEVICTABLE_LRU=y |
228 | CONFIG_PPC_4K_PAGES=y | ||
229 | # CONFIG_PPC_16K_PAGES is not set | ||
230 | # CONFIG_PPC_64K_PAGES is not set | ||
225 | CONFIG_FORCE_MAX_ZONEORDER=11 | 231 | CONFIG_FORCE_MAX_ZONEORDER=11 |
226 | CONFIG_PROC_DEVICETREE=y | 232 | CONFIG_PROC_DEVICETREE=y |
227 | # CONFIG_CMDLINE_BOOL is not set | 233 | # CONFIG_CMDLINE_BOOL is not set |
@@ -246,6 +252,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
246 | # CONFIG_PCI_MSI is not set | 252 | # CONFIG_PCI_MSI is not set |
247 | # CONFIG_PCI_LEGACY is not set | 253 | # CONFIG_PCI_LEGACY is not set |
248 | # CONFIG_PCI_DEBUG is not set | 254 | # CONFIG_PCI_DEBUG is not set |
255 | # CONFIG_PCI_STUB is not set | ||
249 | # CONFIG_PCCARD is not set | 256 | # CONFIG_PCCARD is not set |
250 | # CONFIG_HOTPLUG_PCI is not set | 257 | # CONFIG_HOTPLUG_PCI is not set |
251 | # CONFIG_HAS_RAPIDIO is not set | 258 | # CONFIG_HAS_RAPIDIO is not set |
@@ -268,6 +275,7 @@ CONFIG_NET=y | |||
268 | # | 275 | # |
269 | # Networking options | 276 | # Networking options |
270 | # | 277 | # |
278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
271 | CONFIG_PACKET=y | 279 | CONFIG_PACKET=y |
272 | # CONFIG_PACKET_MMAP is not set | 280 | # CONFIG_PACKET_MMAP is not set |
273 | CONFIG_UNIX=y | 281 | CONFIG_UNIX=y |
@@ -349,6 +357,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
349 | # CONFIG_IPX is not set | 357 | # CONFIG_IPX is not set |
350 | # CONFIG_ATALK is not set | 358 | # CONFIG_ATALK is not set |
351 | # CONFIG_NET_SCHED is not set | 359 | # CONFIG_NET_SCHED is not set |
360 | # CONFIG_DCB is not set | ||
352 | 361 | ||
353 | # | 362 | # |
354 | # Network testing | 363 | # Network testing |
@@ -363,8 +372,9 @@ CONFIG_WIRELESS=y | |||
363 | # CONFIG_CFG80211 is not set | 372 | # CONFIG_CFG80211 is not set |
364 | CONFIG_WIRELESS_OLD_REGULATORY=y | 373 | CONFIG_WIRELESS_OLD_REGULATORY=y |
365 | # CONFIG_WIRELESS_EXT is not set | 374 | # CONFIG_WIRELESS_EXT is not set |
375 | # CONFIG_LIB80211 is not set | ||
366 | # CONFIG_MAC80211 is not set | 376 | # CONFIG_MAC80211 is not set |
367 | # CONFIG_IEEE80211 is not set | 377 | # CONFIG_WIMAX is not set |
368 | # CONFIG_RFKILL is not set | 378 | # CONFIG_RFKILL is not set |
369 | 379 | ||
370 | # | 380 | # |
@@ -459,6 +469,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
459 | # CONFIG_MTD_ONENAND is not set | 469 | # CONFIG_MTD_ONENAND is not set |
460 | 470 | ||
461 | # | 471 | # |
472 | # LPDDR flash memory drivers | ||
473 | # | ||
474 | # CONFIG_MTD_LPDDR is not set | ||
475 | # CONFIG_MTD_QINFO_PROBE is not set | ||
476 | |||
477 | # | ||
462 | # UBI - Unsorted block images | 478 | # UBI - Unsorted block images |
463 | # | 479 | # |
464 | # CONFIG_MTD_UBI is not set | 480 | # CONFIG_MTD_UBI is not set |
@@ -526,9 +542,12 @@ CONFIG_DAVICOM_PHY=y | |||
526 | # CONFIG_BROADCOM_PHY is not set | 542 | # CONFIG_BROADCOM_PHY is not set |
527 | # CONFIG_ICPLUS_PHY is not set | 543 | # CONFIG_ICPLUS_PHY is not set |
528 | # CONFIG_REALTEK_PHY is not set | 544 | # CONFIG_REALTEK_PHY is not set |
545 | # CONFIG_NATIONAL_PHY is not set | ||
546 | # CONFIG_STE10XP is not set | ||
547 | # CONFIG_LSI_ET1011C_PHY is not set | ||
529 | # CONFIG_FIXED_PHY is not set | 548 | # CONFIG_FIXED_PHY is not set |
530 | CONFIG_MDIO_BITBANG=y | 549 | CONFIG_MDIO_BITBANG=y |
531 | # CONFIG_MDIO_OF_GPIO is not set | 550 | # CONFIG_MDIO_GPIO is not set |
532 | CONFIG_NET_ETHERNET=y | 551 | CONFIG_NET_ETHERNET=y |
533 | CONFIG_MII=y | 552 | CONFIG_MII=y |
534 | # CONFIG_HAPPYMEAL is not set | 553 | # CONFIG_HAPPYMEAL is not set |
@@ -573,6 +592,7 @@ CONFIG_NETDEV_1000=y | |||
573 | # CONFIG_JME is not set | 592 | # CONFIG_JME is not set |
574 | CONFIG_NETDEV_10000=y | 593 | CONFIG_NETDEV_10000=y |
575 | # CONFIG_CHELSIO_T1 is not set | 594 | # CONFIG_CHELSIO_T1 is not set |
595 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
576 | # CONFIG_CHELSIO_T3 is not set | 596 | # CONFIG_CHELSIO_T3 is not set |
577 | # CONFIG_ENIC is not set | 597 | # CONFIG_ENIC is not set |
578 | # CONFIG_IXGBE is not set | 598 | # CONFIG_IXGBE is not set |
@@ -595,6 +615,10 @@ CONFIG_NETDEV_10000=y | |||
595 | # CONFIG_WLAN_PRE80211 is not set | 615 | # CONFIG_WLAN_PRE80211 is not set |
596 | # CONFIG_WLAN_80211 is not set | 616 | # CONFIG_WLAN_80211 is not set |
597 | # CONFIG_IWLWIFI_LEDS is not set | 617 | # CONFIG_IWLWIFI_LEDS is not set |
618 | |||
619 | # | ||
620 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
621 | # | ||
598 | # CONFIG_WAN is not set | 622 | # CONFIG_WAN is not set |
599 | # CONFIG_FDDI is not set | 623 | # CONFIG_FDDI is not set |
600 | CONFIG_PPP=y | 624 | CONFIG_PPP=y |
@@ -690,6 +714,7 @@ CONFIG_SERIAL_CPM=y | |||
690 | CONFIG_SERIAL_CPM_CONSOLE=y | 714 | CONFIG_SERIAL_CPM_CONSOLE=y |
691 | # CONFIG_SERIAL_JSM is not set | 715 | # CONFIG_SERIAL_JSM is not set |
692 | CONFIG_UNIX98_PTYS=y | 716 | CONFIG_UNIX98_PTYS=y |
717 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
693 | CONFIG_LEGACY_PTYS=y | 718 | CONFIG_LEGACY_PTYS=y |
694 | CONFIG_LEGACY_PTY_COUNT=256 | 719 | CONFIG_LEGACY_PTY_COUNT=256 |
695 | # CONFIG_IPMI_HANDLER is not set | 720 | # CONFIG_IPMI_HANDLER is not set |
@@ -708,6 +733,11 @@ CONFIG_GPIOLIB=y | |||
708 | # CONFIG_DEBUG_GPIO is not set | 733 | # CONFIG_DEBUG_GPIO is not set |
709 | 734 | ||
710 | # | 735 | # |
736 | # Memory mapped GPIO expanders: | ||
737 | # | ||
738 | # CONFIG_GPIO_XILINX is not set | ||
739 | |||
740 | # | ||
711 | # I2C GPIO expanders: | 741 | # I2C GPIO expanders: |
712 | # | 742 | # |
713 | 743 | ||
@@ -725,11 +755,11 @@ CONFIG_GPIOLIB=y | |||
725 | # CONFIG_THERMAL is not set | 755 | # CONFIG_THERMAL is not set |
726 | # CONFIG_THERMAL_HWMON is not set | 756 | # CONFIG_THERMAL_HWMON is not set |
727 | # CONFIG_WATCHDOG is not set | 757 | # CONFIG_WATCHDOG is not set |
758 | CONFIG_SSB_POSSIBLE=y | ||
728 | 759 | ||
729 | # | 760 | # |
730 | # Sonics Silicon Backplane | 761 | # Sonics Silicon Backplane |
731 | # | 762 | # |
732 | CONFIG_SSB_POSSIBLE=y | ||
733 | # CONFIG_SSB is not set | 763 | # CONFIG_SSB is not set |
734 | 764 | ||
735 | # | 765 | # |
@@ -739,14 +769,7 @@ CONFIG_SSB_POSSIBLE=y | |||
739 | # CONFIG_MFD_SM501 is not set | 769 | # CONFIG_MFD_SM501 is not set |
740 | # CONFIG_HTC_PASIC3 is not set | 770 | # CONFIG_HTC_PASIC3 is not set |
741 | # CONFIG_MFD_TMIO is not set | 771 | # CONFIG_MFD_TMIO is not set |
742 | |||
743 | # | ||
744 | # Voltage and Current regulators | ||
745 | # | ||
746 | # CONFIG_REGULATOR is not set | 772 | # CONFIG_REGULATOR is not set |
747 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
748 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
749 | # CONFIG_REGULATOR_BQ24022 is not set | ||
750 | 773 | ||
751 | # | 774 | # |
752 | # Multimedia devices | 775 | # Multimedia devices |
@@ -843,13 +866,11 @@ CONFIG_TMPFS=y | |||
843 | # CONFIG_TMPFS_POSIX_ACL is not set | 866 | # CONFIG_TMPFS_POSIX_ACL is not set |
844 | # CONFIG_HUGETLB_PAGE is not set | 867 | # CONFIG_HUGETLB_PAGE is not set |
845 | # CONFIG_CONFIGFS_FS is not set | 868 | # CONFIG_CONFIGFS_FS is not set |
846 | 869 | CONFIG_MISC_FILESYSTEMS=y | |
847 | # | ||
848 | # Miscellaneous filesystems | ||
849 | # | ||
850 | # CONFIG_HFSPLUS_FS is not set | 870 | # CONFIG_HFSPLUS_FS is not set |
851 | # CONFIG_JFFS2_FS is not set | 871 | # CONFIG_JFFS2_FS is not set |
852 | CONFIG_CRAMFS=y | 872 | CONFIG_CRAMFS=y |
873 | # CONFIG_SQUASHFS is not set | ||
853 | # CONFIG_VXFS_FS is not set | 874 | # CONFIG_VXFS_FS is not set |
854 | # CONFIG_MINIX_FS is not set | 875 | # CONFIG_MINIX_FS is not set |
855 | # CONFIG_OMFS_FS is not set | 876 | # CONFIG_OMFS_FS is not set |
@@ -940,6 +961,7 @@ CONFIG_NLS_UTF8=y | |||
940 | # Library routines | 961 | # Library routines |
941 | # | 962 | # |
942 | CONFIG_BITREVERSE=y | 963 | CONFIG_BITREVERSE=y |
964 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
943 | CONFIG_CRC_CCITT=y | 965 | CONFIG_CRC_CCITT=y |
944 | # CONFIG_CRC16 is not set | 966 | # CONFIG_CRC16 is not set |
945 | # CONFIG_CRC_T10DIF is not set | 967 | # CONFIG_CRC_T10DIF is not set |
@@ -991,6 +1013,7 @@ CONFIG_DEBUG_INFO=y | |||
991 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1013 | # CONFIG_DEBUG_MEMORY_INIT is not set |
992 | # CONFIG_DEBUG_LIST is not set | 1014 | # CONFIG_DEBUG_LIST is not set |
993 | # CONFIG_DEBUG_SG is not set | 1015 | # CONFIG_DEBUG_SG is not set |
1016 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
994 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1017 | # CONFIG_BOOT_PRINTK_DELAY is not set |
995 | # CONFIG_RCU_TORTURE_TEST is not set | 1018 | # CONFIG_RCU_TORTURE_TEST is not set |
996 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1019 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1000,6 +1023,8 @@ CONFIG_DEBUG_INFO=y | |||
1000 | # CONFIG_LATENCYTOP is not set | 1023 | # CONFIG_LATENCYTOP is not set |
1001 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1024 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1002 | CONFIG_HAVE_FUNCTION_TRACER=y | 1025 | CONFIG_HAVE_FUNCTION_TRACER=y |
1026 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1027 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1003 | 1028 | ||
1004 | # | 1029 | # |
1005 | # Tracers | 1030 | # Tracers |
@@ -1008,10 +1033,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1008 | # CONFIG_SCHED_TRACER is not set | 1033 | # CONFIG_SCHED_TRACER is not set |
1009 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1034 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1010 | # CONFIG_BOOT_TRACER is not set | 1035 | # CONFIG_BOOT_TRACER is not set |
1036 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1011 | # CONFIG_STACK_TRACER is not set | 1037 | # CONFIG_STACK_TRACER is not set |
1012 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1038 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1013 | # CONFIG_SAMPLES is not set | 1039 | # CONFIG_SAMPLES is not set |
1014 | CONFIG_HAVE_ARCH_KGDB=y | 1040 | CONFIG_HAVE_ARCH_KGDB=y |
1041 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1015 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1042 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1016 | # CONFIG_DEBUG_STACK_USAGE is not set | 1043 | # CONFIG_DEBUG_STACK_USAGE is not set |
1017 | # CONFIG_DEBUG_PAGEALLOC is not set | 1044 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1038,11 +1065,15 @@ CONFIG_CRYPTO=y | |||
1038 | # | 1065 | # |
1039 | # CONFIG_CRYPTO_FIPS is not set | 1066 | # CONFIG_CRYPTO_FIPS is not set |
1040 | CONFIG_CRYPTO_ALGAPI=y | 1067 | CONFIG_CRYPTO_ALGAPI=y |
1041 | CONFIG_CRYPTO_AEAD=y | 1068 | CONFIG_CRYPTO_ALGAPI2=y |
1069 | CONFIG_CRYPTO_AEAD2=y | ||
1042 | CONFIG_CRYPTO_BLKCIPHER=y | 1070 | CONFIG_CRYPTO_BLKCIPHER=y |
1071 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1043 | CONFIG_CRYPTO_HASH=y | 1072 | CONFIG_CRYPTO_HASH=y |
1044 | CONFIG_CRYPTO_RNG=y | 1073 | CONFIG_CRYPTO_HASH2=y |
1074 | CONFIG_CRYPTO_RNG2=y | ||
1045 | CONFIG_CRYPTO_MANAGER=y | 1075 | CONFIG_CRYPTO_MANAGER=y |
1076 | CONFIG_CRYPTO_MANAGER2=y | ||
1046 | # CONFIG_CRYPTO_NULL is not set | 1077 | # CONFIG_CRYPTO_NULL is not set |
1047 | # CONFIG_CRYPTO_CRYPTD is not set | 1078 | # CONFIG_CRYPTO_CRYPTD is not set |
1048 | # CONFIG_CRYPTO_AUTHENC is not set | 1079 | # CONFIG_CRYPTO_AUTHENC is not set |
diff --git a/arch/powerpc/configs/mpc83xx_defconfig b/arch/powerpc/configs/mpc83xx_defconfig index 3e1272cfdd91..45f03cad8db6 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:42 2008 | 4 | # Mon Jan 26 15:35:36 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_GPIO=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -77,12 +77,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
77 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
78 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
79 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
80 | # CONFIG_CGROUPS is not set | ||
81 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
82 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
83 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
84 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
85 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
86 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
87 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
88 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -115,7 +115,6 @@ CONFIG_SLAB=y | |||
115 | # CONFIG_SLUB is not set | 115 | # CONFIG_SLUB is not set |
116 | # CONFIG_SLOB is not set | 116 | # CONFIG_SLOB is not set |
117 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
118 | # CONFIG_MARKERS is not set | ||
119 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
120 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -126,7 +125,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
127 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
128 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
129 | # CONFIG_TINY_SHMEM is not set | ||
130 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
131 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
132 | # CONFIG_MODULE_FORCE_LOAD is not set | 130 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -134,11 +132,9 @@ CONFIG_MODULE_UNLOAD=y | |||
134 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 132 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
135 | # CONFIG_MODVERSIONS is not set | 133 | # CONFIG_MODVERSIONS is not set |
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_KMOD=y | ||
138 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
139 | # CONFIG_LBD is not set | 136 | # CONFIG_LBD is not set |
140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 137 | # CONFIG_BLK_DEV_IO_TRACE is not set |
141 | # CONFIG_LSF is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 140 | ||
@@ -155,6 +151,10 @@ CONFIG_DEFAULT_AS=y | |||
155 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
157 | CONFIG_CLASSIC_RCU=y | 153 | CONFIG_CLASSIC_RCU=y |
154 | # CONFIG_TREE_RCU is not set | ||
155 | # CONFIG_PREEMPT_RCU is not set | ||
156 | # CONFIG_TREE_RCU_TRACE is not set | ||
157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
158 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
159 | 159 | ||
160 | # | 160 | # |
@@ -205,6 +205,8 @@ CONFIG_QUICC_ENGINE=y | |||
205 | CONFIG_QE_GPIO=y | 205 | CONFIG_QE_GPIO=y |
206 | # CONFIG_FSL_ULI1575 is not set | 206 | # CONFIG_FSL_ULI1575 is not set |
207 | # CONFIG_MPC8xxx_GPIO is not set | 207 | # CONFIG_MPC8xxx_GPIO is not set |
208 | # CONFIG_SIMPLE_GPIO is not set | ||
209 | # CONFIG_MCU_MPC8349EMITX is not set | ||
208 | 210 | ||
209 | # | 211 | # |
210 | # Kernel options | 212 | # Kernel options |
@@ -232,6 +234,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
232 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 234 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
233 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 235 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
234 | # CONFIG_KEXEC is not set | 236 | # CONFIG_KEXEC is not set |
237 | # CONFIG_CRASH_DUMP is not set | ||
235 | CONFIG_ARCH_FLATMEM_ENABLE=y | 238 | CONFIG_ARCH_FLATMEM_ENABLE=y |
236 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 239 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
237 | CONFIG_SELECT_MEMORY_MODEL=y | 240 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -243,12 +246,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
243 | CONFIG_PAGEFLAGS_EXTENDED=y | 246 | CONFIG_PAGEFLAGS_EXTENDED=y |
244 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 247 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
245 | CONFIG_MIGRATION=y | 248 | CONFIG_MIGRATION=y |
246 | # CONFIG_RESOURCES_64BIT is not set | ||
247 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 249 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
248 | CONFIG_ZONE_DMA_FLAG=1 | 250 | CONFIG_ZONE_DMA_FLAG=1 |
249 | CONFIG_BOUNCE=y | 251 | CONFIG_BOUNCE=y |
250 | CONFIG_VIRT_TO_BUS=y | 252 | CONFIG_VIRT_TO_BUS=y |
251 | CONFIG_UNEVICTABLE_LRU=y | 253 | CONFIG_UNEVICTABLE_LRU=y |
254 | CONFIG_PPC_4K_PAGES=y | ||
255 | # CONFIG_PPC_16K_PAGES is not set | ||
256 | # CONFIG_PPC_64K_PAGES is not set | ||
252 | CONFIG_FORCE_MAX_ZONEORDER=11 | 257 | CONFIG_FORCE_MAX_ZONEORDER=11 |
253 | CONFIG_PROC_DEVICETREE=y | 258 | CONFIG_PROC_DEVICETREE=y |
254 | # CONFIG_CMDLINE_BOOL is not set | 259 | # CONFIG_CMDLINE_BOOL is not set |
@@ -275,6 +280,7 @@ CONFIG_PCI_SYSCALL=y | |||
275 | CONFIG_ARCH_SUPPORTS_MSI=y | 280 | CONFIG_ARCH_SUPPORTS_MSI=y |
276 | # CONFIG_PCI_MSI is not set | 281 | # CONFIG_PCI_MSI is not set |
277 | # CONFIG_PCI_LEGACY is not set | 282 | # CONFIG_PCI_LEGACY is not set |
283 | # CONFIG_PCI_STUB is not set | ||
278 | # CONFIG_PCCARD is not set | 284 | # CONFIG_PCCARD is not set |
279 | # CONFIG_HOTPLUG_PCI is not set | 285 | # CONFIG_HOTPLUG_PCI is not set |
280 | # CONFIG_HAS_RAPIDIO is not set | 286 | # CONFIG_HAS_RAPIDIO is not set |
@@ -297,6 +303,7 @@ CONFIG_NET=y | |||
297 | # | 303 | # |
298 | # Networking options | 304 | # Networking options |
299 | # | 305 | # |
306 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
300 | CONFIG_PACKET=y | 307 | CONFIG_PACKET=y |
301 | # CONFIG_PACKET_MMAP is not set | 308 | # CONFIG_PACKET_MMAP is not set |
302 | CONFIG_UNIX=y | 309 | CONFIG_UNIX=y |
@@ -353,6 +360,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
353 | # CONFIG_ECONET is not set | 360 | # CONFIG_ECONET is not set |
354 | # CONFIG_WAN_ROUTER is not set | 361 | # CONFIG_WAN_ROUTER is not set |
355 | # CONFIG_NET_SCHED is not set | 362 | # CONFIG_NET_SCHED is not set |
363 | # CONFIG_DCB is not set | ||
356 | 364 | ||
357 | # | 365 | # |
358 | # Network testing | 366 | # Network testing |
@@ -368,8 +376,9 @@ CONFIG_WIRELESS=y | |||
368 | # CONFIG_CFG80211 is not set | 376 | # CONFIG_CFG80211 is not set |
369 | CONFIG_WIRELESS_OLD_REGULATORY=y | 377 | CONFIG_WIRELESS_OLD_REGULATORY=y |
370 | # CONFIG_WIRELESS_EXT is not set | 378 | # CONFIG_WIRELESS_EXT is not set |
379 | # CONFIG_LIB80211 is not set | ||
371 | # CONFIG_MAC80211 is not set | 380 | # CONFIG_MAC80211 is not set |
372 | # CONFIG_IEEE80211 is not set | 381 | # CONFIG_WIMAX is not set |
373 | # CONFIG_RFKILL is not set | 382 | # CONFIG_RFKILL is not set |
374 | # CONFIG_NET_9P is not set | 383 | # CONFIG_NET_9P is not set |
375 | 384 | ||
@@ -390,6 +399,7 @@ CONFIG_MTD=y | |||
390 | # CONFIG_MTD_DEBUG is not set | 399 | # CONFIG_MTD_DEBUG is not set |
391 | # CONFIG_MTD_CONCAT is not set | 400 | # CONFIG_MTD_CONCAT is not set |
392 | CONFIG_MTD_PARTITIONS=y | 401 | CONFIG_MTD_PARTITIONS=y |
402 | # CONFIG_MTD_TESTS is not set | ||
393 | # CONFIG_MTD_REDBOOT_PARTS is not set | 403 | # CONFIG_MTD_REDBOOT_PARTS is not set |
394 | # CONFIG_MTD_CMDLINE_PARTS is not set | 404 | # CONFIG_MTD_CMDLINE_PARTS is not set |
395 | CONFIG_MTD_OF_PARTS=y | 405 | CONFIG_MTD_OF_PARTS=y |
@@ -472,6 +482,12 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
472 | # CONFIG_MTD_ONENAND is not set | 482 | # CONFIG_MTD_ONENAND is not set |
473 | 483 | ||
474 | # | 484 | # |
485 | # LPDDR flash memory drivers | ||
486 | # | ||
487 | # CONFIG_MTD_LPDDR is not set | ||
488 | # CONFIG_MTD_QINFO_PROBE is not set | ||
489 | |||
490 | # | ||
475 | # UBI - Unsorted block images | 491 | # UBI - Unsorted block images |
476 | # | 492 | # |
477 | # CONFIG_MTD_UBI is not set | 493 | # CONFIG_MTD_UBI is not set |
@@ -503,8 +519,10 @@ CONFIG_MISC_DEVICES=y | |||
503 | # CONFIG_EEPROM_93CX6 is not set | 519 | # CONFIG_EEPROM_93CX6 is not set |
504 | # CONFIG_SGI_IOC4 is not set | 520 | # CONFIG_SGI_IOC4 is not set |
505 | # CONFIG_TIFM_CORE is not set | 521 | # CONFIG_TIFM_CORE is not set |
522 | # CONFIG_ICS932S401 is not set | ||
506 | # CONFIG_ENCLOSURE_SERVICES is not set | 523 | # CONFIG_ENCLOSURE_SERVICES is not set |
507 | # CONFIG_HP_ILO is not set | 524 | # CONFIG_HP_ILO is not set |
525 | # CONFIG_C2PORT is not set | ||
508 | CONFIG_HAVE_IDE=y | 526 | CONFIG_HAVE_IDE=y |
509 | # CONFIG_IDE is not set | 527 | # CONFIG_IDE is not set |
510 | 528 | ||
@@ -547,6 +565,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
547 | # CONFIG_SCSI_SRP_ATTRS is not set | 565 | # CONFIG_SCSI_SRP_ATTRS is not set |
548 | CONFIG_SCSI_LOWLEVEL=y | 566 | CONFIG_SCSI_LOWLEVEL=y |
549 | # CONFIG_ISCSI_TCP is not set | 567 | # CONFIG_ISCSI_TCP is not set |
568 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
550 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 569 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
551 | # CONFIG_SCSI_3W_9XXX is not set | 570 | # CONFIG_SCSI_3W_9XXX is not set |
552 | # CONFIG_SCSI_ACARD is not set | 571 | # CONFIG_SCSI_ACARD is not set |
@@ -563,6 +582,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
563 | # CONFIG_MEGARAID_SAS is not set | 582 | # CONFIG_MEGARAID_SAS is not set |
564 | # CONFIG_SCSI_HPTIOP is not set | 583 | # CONFIG_SCSI_HPTIOP is not set |
565 | # CONFIG_SCSI_BUSLOGIC is not set | 584 | # CONFIG_SCSI_BUSLOGIC is not set |
585 | # CONFIG_LIBFC is not set | ||
586 | # CONFIG_FCOE is not set | ||
566 | # CONFIG_SCSI_DMX3191D is not set | 587 | # CONFIG_SCSI_DMX3191D is not set |
567 | # CONFIG_SCSI_EATA is not set | 588 | # CONFIG_SCSI_EATA is not set |
568 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 589 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -682,6 +703,9 @@ CONFIG_VITESSE_PHY=y | |||
682 | # CONFIG_BROADCOM_PHY is not set | 703 | # CONFIG_BROADCOM_PHY is not set |
683 | CONFIG_ICPLUS_PHY=y | 704 | CONFIG_ICPLUS_PHY=y |
684 | # CONFIG_REALTEK_PHY is not set | 705 | # CONFIG_REALTEK_PHY is not set |
706 | # CONFIG_NATIONAL_PHY is not set | ||
707 | # CONFIG_STE10XP is not set | ||
708 | # CONFIG_LSI_ET1011C_PHY is not set | ||
685 | CONFIG_FIXED_PHY=y | 709 | CONFIG_FIXED_PHY=y |
686 | # CONFIG_MDIO_BITBANG is not set | 710 | # CONFIG_MDIO_BITBANG is not set |
687 | CONFIG_NET_ETHERNET=y | 711 | CONFIG_NET_ETHERNET=y |
@@ -722,7 +746,6 @@ CONFIG_NETDEV_1000=y | |||
722 | CONFIG_GIANFAR=y | 746 | CONFIG_GIANFAR=y |
723 | CONFIG_UCC_GETH=y | 747 | CONFIG_UCC_GETH=y |
724 | # CONFIG_UGETH_MAGIC_PACKET is not set | 748 | # CONFIG_UGETH_MAGIC_PACKET is not set |
725 | # CONFIG_UGETH_FILTERING is not set | ||
726 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 749 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
727 | # CONFIG_MV643XX_ETH is not set | 750 | # CONFIG_MV643XX_ETH is not set |
728 | # CONFIG_QLA3XXX is not set | 751 | # CONFIG_QLA3XXX is not set |
@@ -731,6 +754,7 @@ CONFIG_UCC_GETH=y | |||
731 | # CONFIG_JME is not set | 754 | # CONFIG_JME is not set |
732 | CONFIG_NETDEV_10000=y | 755 | CONFIG_NETDEV_10000=y |
733 | # CONFIG_CHELSIO_T1 is not set | 756 | # CONFIG_CHELSIO_T1 is not set |
757 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
734 | # CONFIG_CHELSIO_T3 is not set | 758 | # CONFIG_CHELSIO_T3 is not set |
735 | # CONFIG_ENIC is not set | 759 | # CONFIG_ENIC is not set |
736 | # CONFIG_IXGBE is not set | 760 | # CONFIG_IXGBE is not set |
@@ -755,6 +779,10 @@ CONFIG_NETDEV_10000=y | |||
755 | # CONFIG_IWLWIFI_LEDS is not set | 779 | # CONFIG_IWLWIFI_LEDS is not set |
756 | 780 | ||
757 | # | 781 | # |
782 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
783 | # | ||
784 | |||
785 | # | ||
758 | # USB Network Adapters | 786 | # USB Network Adapters |
759 | # | 787 | # |
760 | # CONFIG_USB_CATC is not set | 788 | # CONFIG_USB_CATC is not set |
@@ -833,8 +861,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
833 | # CONFIG_SERIAL_OF_PLATFORM is not set | 861 | # CONFIG_SERIAL_OF_PLATFORM is not set |
834 | # CONFIG_SERIAL_QE is not set | 862 | # CONFIG_SERIAL_QE is not set |
835 | CONFIG_UNIX98_PTYS=y | 863 | CONFIG_UNIX98_PTYS=y |
864 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
836 | CONFIG_LEGACY_PTYS=y | 865 | CONFIG_LEGACY_PTYS=y |
837 | CONFIG_LEGACY_PTY_COUNT=256 | 866 | CONFIG_LEGACY_PTY_COUNT=256 |
867 | # CONFIG_HVC_UDBG is not set | ||
838 | # CONFIG_IPMI_HANDLER is not set | 868 | # CONFIG_IPMI_HANDLER is not set |
839 | CONFIG_HW_RANDOM=y | 869 | CONFIG_HW_RANDOM=y |
840 | # CONFIG_NVRAM is not set | 870 | # CONFIG_NVRAM is not set |
@@ -908,10 +938,8 @@ CONFIG_I2C_MPC=y | |||
908 | # CONFIG_PCF8575 is not set | 938 | # CONFIG_PCF8575 is not set |
909 | # CONFIG_SENSORS_PCA9539 is not set | 939 | # CONFIG_SENSORS_PCA9539 is not set |
910 | # CONFIG_SENSORS_PCF8591 is not set | 940 | # CONFIG_SENSORS_PCF8591 is not set |
911 | # CONFIG_TPS65010 is not set | ||
912 | # CONFIG_SENSORS_MAX6875 is not set | 941 | # CONFIG_SENSORS_MAX6875 is not set |
913 | # CONFIG_SENSORS_TSL2550 is not set | 942 | # CONFIG_SENSORS_TSL2550 is not set |
914 | # CONFIG_MCU_MPC8349EMITX is not set | ||
915 | # CONFIG_I2C_DEBUG_CORE is not set | 943 | # CONFIG_I2C_DEBUG_CORE is not set |
916 | # CONFIG_I2C_DEBUG_ALGO is not set | 944 | # CONFIG_I2C_DEBUG_ALGO is not set |
917 | # CONFIG_I2C_DEBUG_BUS is not set | 945 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -923,6 +951,11 @@ CONFIG_GPIOLIB=y | |||
923 | # CONFIG_GPIO_SYSFS is not set | 951 | # CONFIG_GPIO_SYSFS is not set |
924 | 952 | ||
925 | # | 953 | # |
954 | # Memory mapped GPIO expanders: | ||
955 | # | ||
956 | # CONFIG_GPIO_XILINX is not set | ||
957 | |||
958 | # | ||
926 | # I2C GPIO expanders: | 959 | # I2C GPIO expanders: |
927 | # | 960 | # |
928 | # CONFIG_GPIO_MAX732X is not set | 961 | # CONFIG_GPIO_MAX732X is not set |
@@ -949,8 +982,10 @@ CONFIG_HWMON=y | |||
949 | # CONFIG_SENSORS_ADM1029 is not set | 982 | # CONFIG_SENSORS_ADM1029 is not set |
950 | # CONFIG_SENSORS_ADM1031 is not set | 983 | # CONFIG_SENSORS_ADM1031 is not set |
951 | # CONFIG_SENSORS_ADM9240 is not set | 984 | # CONFIG_SENSORS_ADM9240 is not set |
985 | # CONFIG_SENSORS_ADT7462 is not set | ||
952 | # CONFIG_SENSORS_ADT7470 is not set | 986 | # CONFIG_SENSORS_ADT7470 is not set |
953 | # CONFIG_SENSORS_ADT7473 is not set | 987 | # CONFIG_SENSORS_ADT7473 is not set |
988 | # CONFIG_SENSORS_ADT7475 is not set | ||
954 | # CONFIG_SENSORS_ATXP1 is not set | 989 | # CONFIG_SENSORS_ATXP1 is not set |
955 | # CONFIG_SENSORS_DS1621 is not set | 990 | # CONFIG_SENSORS_DS1621 is not set |
956 | # CONFIG_SENSORS_I5K_AMB is not set | 991 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -971,6 +1006,7 @@ CONFIG_HWMON=y | |||
971 | # CONFIG_SENSORS_LM90 is not set | 1006 | # CONFIG_SENSORS_LM90 is not set |
972 | # CONFIG_SENSORS_LM92 is not set | 1007 | # CONFIG_SENSORS_LM92 is not set |
973 | # CONFIG_SENSORS_LM93 is not set | 1008 | # CONFIG_SENSORS_LM93 is not set |
1009 | # CONFIG_SENSORS_LTC4245 is not set | ||
974 | # CONFIG_SENSORS_MAX1619 is not set | 1010 | # CONFIG_SENSORS_MAX1619 is not set |
975 | # CONFIG_SENSORS_MAX6650 is not set | 1011 | # CONFIG_SENSORS_MAX6650 is not set |
976 | # CONFIG_SENSORS_PC87360 is not set | 1012 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1016,11 +1052,11 @@ CONFIG_WATCHDOG=y | |||
1016 | # USB-based Watchdog Cards | 1052 | # USB-based Watchdog Cards |
1017 | # | 1053 | # |
1018 | # CONFIG_USBPCWATCHDOG is not set | 1054 | # CONFIG_USBPCWATCHDOG is not set |
1055 | CONFIG_SSB_POSSIBLE=y | ||
1019 | 1056 | ||
1020 | # | 1057 | # |
1021 | # Sonics Silicon Backplane | 1058 | # Sonics Silicon Backplane |
1022 | # | 1059 | # |
1023 | CONFIG_SSB_POSSIBLE=y | ||
1024 | # CONFIG_SSB is not set | 1060 | # CONFIG_SSB is not set |
1025 | 1061 | ||
1026 | # | 1062 | # |
@@ -1029,18 +1065,14 @@ CONFIG_SSB_POSSIBLE=y | |||
1029 | # CONFIG_MFD_CORE is not set | 1065 | # CONFIG_MFD_CORE is not set |
1030 | # CONFIG_MFD_SM501 is not set | 1066 | # CONFIG_MFD_SM501 is not set |
1031 | # CONFIG_HTC_PASIC3 is not set | 1067 | # CONFIG_HTC_PASIC3 is not set |
1068 | # CONFIG_TPS65010 is not set | ||
1069 | # CONFIG_TWL4030_CORE is not set | ||
1032 | # CONFIG_MFD_TMIO is not set | 1070 | # CONFIG_MFD_TMIO is not set |
1033 | # CONFIG_PMIC_DA903X is not set | 1071 | # CONFIG_PMIC_DA903X is not set |
1034 | # CONFIG_MFD_WM8400 is not set | 1072 | # CONFIG_MFD_WM8400 is not set |
1035 | # CONFIG_MFD_WM8350_I2C is not set | 1073 | # CONFIG_MFD_WM8350_I2C is not set |
1036 | 1074 | # CONFIG_MFD_PCF50633 is not set | |
1037 | # | ||
1038 | # Voltage and Current regulators | ||
1039 | # | ||
1040 | # CONFIG_REGULATOR is not set | 1075 | # CONFIG_REGULATOR is not set |
1041 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1042 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1043 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1044 | 1076 | ||
1045 | # | 1077 | # |
1046 | # Multimedia devices | 1078 | # Multimedia devices |
@@ -1093,11 +1125,9 @@ CONFIG_HID_COMPAT=y | |||
1093 | CONFIG_HID_A4TECH=y | 1125 | CONFIG_HID_A4TECH=y |
1094 | CONFIG_HID_APPLE=y | 1126 | CONFIG_HID_APPLE=y |
1095 | CONFIG_HID_BELKIN=y | 1127 | CONFIG_HID_BELKIN=y |
1096 | CONFIG_HID_BRIGHT=y | ||
1097 | CONFIG_HID_CHERRY=y | 1128 | CONFIG_HID_CHERRY=y |
1098 | CONFIG_HID_CHICONY=y | 1129 | CONFIG_HID_CHICONY=y |
1099 | CONFIG_HID_CYPRESS=y | 1130 | CONFIG_HID_CYPRESS=y |
1100 | CONFIG_HID_DELL=y | ||
1101 | CONFIG_HID_EZKEY=y | 1131 | CONFIG_HID_EZKEY=y |
1102 | CONFIG_HID_GYRATION=y | 1132 | CONFIG_HID_GYRATION=y |
1103 | CONFIG_HID_LOGITECH=y | 1133 | CONFIG_HID_LOGITECH=y |
@@ -1105,12 +1135,15 @@ CONFIG_HID_LOGITECH=y | |||
1105 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1135 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1106 | CONFIG_HID_MICROSOFT=y | 1136 | CONFIG_HID_MICROSOFT=y |
1107 | CONFIG_HID_MONTEREY=y | 1137 | CONFIG_HID_MONTEREY=y |
1138 | # CONFIG_HID_NTRIG is not set | ||
1108 | CONFIG_HID_PANTHERLORD=y | 1139 | CONFIG_HID_PANTHERLORD=y |
1109 | # CONFIG_PANTHERLORD_FF is not set | 1140 | # CONFIG_PANTHERLORD_FF is not set |
1110 | CONFIG_HID_PETALYNX=y | 1141 | CONFIG_HID_PETALYNX=y |
1111 | CONFIG_HID_SAMSUNG=y | 1142 | CONFIG_HID_SAMSUNG=y |
1112 | CONFIG_HID_SONY=y | 1143 | CONFIG_HID_SONY=y |
1113 | CONFIG_HID_SUNPLUS=y | 1144 | CONFIG_HID_SUNPLUS=y |
1145 | # CONFIG_GREENASIA_FF is not set | ||
1146 | # CONFIG_HID_TOPSEED is not set | ||
1114 | CONFIG_THRUSTMASTER_FF=m | 1147 | CONFIG_THRUSTMASTER_FF=m |
1115 | CONFIG_ZEROPLUS_FF=m | 1148 | CONFIG_ZEROPLUS_FF=m |
1116 | CONFIG_USB_SUPPORT=y | 1149 | CONFIG_USB_SUPPORT=y |
@@ -1143,6 +1176,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1143 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1176 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1144 | CONFIG_USB_EHCI_FSL=y | 1177 | CONFIG_USB_EHCI_FSL=y |
1145 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1178 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1179 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1146 | # CONFIG_USB_ISP116X_HCD is not set | 1180 | # CONFIG_USB_ISP116X_HCD is not set |
1147 | # CONFIG_USB_ISP1760_HCD is not set | 1181 | # CONFIG_USB_ISP1760_HCD is not set |
1148 | # CONFIG_USB_OHCI_HCD is not set | 1182 | # CONFIG_USB_OHCI_HCD is not set |
@@ -1161,11 +1195,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
1161 | # CONFIG_USB_TMC is not set | 1195 | # CONFIG_USB_TMC is not set |
1162 | 1196 | ||
1163 | # | 1197 | # |
1164 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1198 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1165 | # | 1199 | # |
1166 | 1200 | ||
1167 | # | 1201 | # |
1168 | # may also be needed; see USB_STORAGE Help for more information | 1202 | # see USB_STORAGE Help for more information |
1169 | # | 1203 | # |
1170 | # CONFIG_USB_STORAGE is not set | 1204 | # CONFIG_USB_STORAGE is not set |
1171 | # CONFIG_USB_LIBUSUAL is not set | 1205 | # CONFIG_USB_LIBUSUAL is not set |
@@ -1206,6 +1240,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
1206 | # CONFIG_USB_ISIGHTFW is not set | 1240 | # CONFIG_USB_ISIGHTFW is not set |
1207 | # CONFIG_USB_VST is not set | 1241 | # CONFIG_USB_VST is not set |
1208 | # CONFIG_USB_GADGET is not set | 1242 | # CONFIG_USB_GADGET is not set |
1243 | |||
1244 | # | ||
1245 | # OTG and related infrastructure | ||
1246 | # | ||
1247 | # CONFIG_USB_GPIO_VBUS is not set | ||
1209 | # CONFIG_UWB is not set | 1248 | # CONFIG_UWB is not set |
1210 | # CONFIG_MMC is not set | 1249 | # CONFIG_MMC is not set |
1211 | # CONFIG_MEMSTICK is not set | 1250 | # CONFIG_MEMSTICK is not set |
@@ -1237,6 +1276,7 @@ CONFIG_FS_MBCACHE=y | |||
1237 | CONFIG_FILE_LOCKING=y | 1276 | CONFIG_FILE_LOCKING=y |
1238 | # CONFIG_XFS_FS is not set | 1277 | # CONFIG_XFS_FS is not set |
1239 | # CONFIG_OCFS2_FS is not set | 1278 | # CONFIG_OCFS2_FS is not set |
1279 | # CONFIG_BTRFS_FS is not set | ||
1240 | CONFIG_DNOTIFY=y | 1280 | CONFIG_DNOTIFY=y |
1241 | CONFIG_INOTIFY=y | 1281 | CONFIG_INOTIFY=y |
1242 | CONFIG_INOTIFY_USER=y | 1282 | CONFIG_INOTIFY_USER=y |
@@ -1270,10 +1310,7 @@ CONFIG_TMPFS=y | |||
1270 | # CONFIG_TMPFS_POSIX_ACL is not set | 1310 | # CONFIG_TMPFS_POSIX_ACL is not set |
1271 | # CONFIG_HUGETLB_PAGE is not set | 1311 | # CONFIG_HUGETLB_PAGE is not set |
1272 | # CONFIG_CONFIGFS_FS is not set | 1312 | # CONFIG_CONFIGFS_FS is not set |
1273 | 1313 | CONFIG_MISC_FILESYSTEMS=y | |
1274 | # | ||
1275 | # Miscellaneous filesystems | ||
1276 | # | ||
1277 | # CONFIG_ADFS_FS is not set | 1314 | # CONFIG_ADFS_FS is not set |
1278 | # CONFIG_AFFS_FS is not set | 1315 | # CONFIG_AFFS_FS is not set |
1279 | # CONFIG_HFS_FS is not set | 1316 | # CONFIG_HFS_FS is not set |
@@ -1283,6 +1320,7 @@ CONFIG_TMPFS=y | |||
1283 | # CONFIG_EFS_FS is not set | 1320 | # CONFIG_EFS_FS is not set |
1284 | # CONFIG_JFFS2_FS is not set | 1321 | # CONFIG_JFFS2_FS is not set |
1285 | # CONFIG_CRAMFS is not set | 1322 | # CONFIG_CRAMFS is not set |
1323 | # CONFIG_SQUASHFS is not set | ||
1286 | # CONFIG_VXFS_FS is not set | 1324 | # CONFIG_VXFS_FS is not set |
1287 | # CONFIG_MINIX_FS is not set | 1325 | # CONFIG_MINIX_FS is not set |
1288 | # CONFIG_OMFS_FS is not set | 1326 | # CONFIG_OMFS_FS is not set |
@@ -1342,6 +1380,7 @@ CONFIG_UCC=y | |||
1342 | # Library routines | 1380 | # Library routines |
1343 | # | 1381 | # |
1344 | CONFIG_BITREVERSE=y | 1382 | CONFIG_BITREVERSE=y |
1383 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1345 | # CONFIG_CRC_CCITT is not set | 1384 | # CONFIG_CRC_CCITT is not set |
1346 | # CONFIG_CRC16 is not set | 1385 | # CONFIG_CRC16 is not set |
1347 | CONFIG_CRC_T10DIF=y | 1386 | CONFIG_CRC_T10DIF=y |
@@ -1373,6 +1412,8 @@ CONFIG_FRAME_WARN=1024 | |||
1373 | # CONFIG_LATENCYTOP is not set | 1412 | # CONFIG_LATENCYTOP is not set |
1374 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1413 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1375 | CONFIG_HAVE_FUNCTION_TRACER=y | 1414 | CONFIG_HAVE_FUNCTION_TRACER=y |
1415 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1416 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1376 | 1417 | ||
1377 | # | 1418 | # |
1378 | # Tracers | 1419 | # Tracers |
@@ -1380,6 +1421,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1380 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1421 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1381 | # CONFIG_SAMPLES is not set | 1422 | # CONFIG_SAMPLES is not set |
1382 | CONFIG_HAVE_ARCH_KGDB=y | 1423 | CONFIG_HAVE_ARCH_KGDB=y |
1424 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1383 | # CONFIG_IRQSTACKS is not set | 1425 | # CONFIG_IRQSTACKS is not set |
1384 | # CONFIG_BOOTX_TEXT is not set | 1426 | # CONFIG_BOOTX_TEXT is not set |
1385 | # CONFIG_PPC_EARLY_DEBUG is not set | 1427 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1398,11 +1440,16 @@ CONFIG_CRYPTO=y | |||
1398 | # | 1440 | # |
1399 | # CONFIG_CRYPTO_FIPS is not set | 1441 | # CONFIG_CRYPTO_FIPS is not set |
1400 | CONFIG_CRYPTO_ALGAPI=y | 1442 | CONFIG_CRYPTO_ALGAPI=y |
1443 | CONFIG_CRYPTO_ALGAPI2=y | ||
1401 | CONFIG_CRYPTO_AEAD=y | 1444 | CONFIG_CRYPTO_AEAD=y |
1445 | CONFIG_CRYPTO_AEAD2=y | ||
1402 | CONFIG_CRYPTO_BLKCIPHER=y | 1446 | CONFIG_CRYPTO_BLKCIPHER=y |
1447 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1403 | CONFIG_CRYPTO_HASH=y | 1448 | CONFIG_CRYPTO_HASH=y |
1404 | CONFIG_CRYPTO_RNG=y | 1449 | CONFIG_CRYPTO_HASH2=y |
1450 | CONFIG_CRYPTO_RNG2=y | ||
1405 | CONFIG_CRYPTO_MANAGER=y | 1451 | CONFIG_CRYPTO_MANAGER=y |
1452 | CONFIG_CRYPTO_MANAGER2=y | ||
1406 | # CONFIG_CRYPTO_GF128MUL is not set | 1453 | # CONFIG_CRYPTO_GF128MUL is not set |
1407 | # CONFIG_CRYPTO_NULL is not set | 1454 | # CONFIG_CRYPTO_NULL is not set |
1408 | # CONFIG_CRYPTO_CRYPTD is not set | 1455 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index 55e5ebd91cd0..fb08819d7cc4 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:43 2008 | 4 | # Mon Jan 26 15:35:37 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -21,7 +21,9 @@ CONFIG_FSL_BOOKE=y | |||
21 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | ||
24 | # CONFIG_PPC_MM_SLICES is not set | 25 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | ||
25 | CONFIG_PPC32=y | 27 | CONFIG_PPC32=y |
26 | CONFIG_WORD_SIZE=32 | 28 | CONFIG_WORD_SIZE=32 |
27 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -46,7 +48,7 @@ CONFIG_GENERIC_GPIO=y | |||
46 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
47 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
48 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
49 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
51 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
52 | CONFIG_OF=y | 54 | CONFIG_OF=y |
@@ -79,12 +81,12 @@ CONFIG_AUDIT=y | |||
79 | CONFIG_IKCONFIG=y | 81 | CONFIG_IKCONFIG=y |
80 | CONFIG_IKCONFIG_PROC=y | 82 | CONFIG_IKCONFIG_PROC=y |
81 | CONFIG_LOG_BUF_SHIFT=14 | 83 | CONFIG_LOG_BUF_SHIFT=14 |
82 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_GROUP_SCHED=y | 84 | CONFIG_GROUP_SCHED=y |
84 | # CONFIG_FAIR_GROUP_SCHED is not set | 85 | # CONFIG_FAIR_GROUP_SCHED is not set |
85 | # CONFIG_RT_GROUP_SCHED is not set | 86 | # CONFIG_RT_GROUP_SCHED is not set |
86 | CONFIG_USER_SCHED=y | 87 | CONFIG_USER_SCHED=y |
87 | # CONFIG_CGROUP_SCHED is not set | 88 | # CONFIG_CGROUP_SCHED is not set |
89 | # CONFIG_CGROUPS is not set | ||
88 | CONFIG_SYSFS_DEPRECATED=y | 90 | CONFIG_SYSFS_DEPRECATED=y |
89 | CONFIG_SYSFS_DEPRECATED_V2=y | 91 | CONFIG_SYSFS_DEPRECATED_V2=y |
90 | # CONFIG_RELAY is not set | 92 | # CONFIG_RELAY is not set |
@@ -97,6 +99,7 @@ CONFIG_EMBEDDED=y | |||
97 | CONFIG_SYSCTL_SYSCALL=y | 99 | CONFIG_SYSCTL_SYSCALL=y |
98 | CONFIG_KALLSYMS=y | 100 | CONFIG_KALLSYMS=y |
99 | CONFIG_KALLSYMS_ALL=y | 101 | CONFIG_KALLSYMS_ALL=y |
102 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
100 | CONFIG_KALLSYMS_EXTRA_PASS=y | 103 | CONFIG_KALLSYMS_EXTRA_PASS=y |
101 | CONFIG_HOTPLUG=y | 104 | CONFIG_HOTPLUG=y |
102 | CONFIG_PRINTK=y | 105 | CONFIG_PRINTK=y |
@@ -119,7 +122,6 @@ CONFIG_SLUB_DEBUG=y | |||
119 | CONFIG_SLUB=y | 122 | CONFIG_SLUB=y |
120 | # CONFIG_SLOB is not set | 123 | # CONFIG_SLOB is not set |
121 | # CONFIG_PROFILING is not set | 124 | # CONFIG_PROFILING is not set |
122 | # CONFIG_MARKERS is not set | ||
123 | CONFIG_HAVE_OPROFILE=y | 125 | CONFIG_HAVE_OPROFILE=y |
124 | # CONFIG_KPROBES is not set | 126 | # CONFIG_KPROBES is not set |
125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -131,7 +133,6 @@ CONFIG_HAVE_CLK=y | |||
131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
132 | CONFIG_SLABINFO=y | 134 | CONFIG_SLABINFO=y |
133 | CONFIG_RT_MUTEXES=y | 135 | CONFIG_RT_MUTEXES=y |
134 | # CONFIG_TINY_SHMEM is not set | ||
135 | CONFIG_BASE_SMALL=0 | 136 | CONFIG_BASE_SMALL=0 |
136 | CONFIG_MODULES=y | 137 | CONFIG_MODULES=y |
137 | # CONFIG_MODULE_FORCE_LOAD is not set | 138 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -139,11 +140,9 @@ CONFIG_MODULE_UNLOAD=y | |||
139 | CONFIG_MODULE_FORCE_UNLOAD=y | 140 | CONFIG_MODULE_FORCE_UNLOAD=y |
140 | CONFIG_MODVERSIONS=y | 141 | CONFIG_MODVERSIONS=y |
141 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 142 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
142 | CONFIG_KMOD=y | ||
143 | CONFIG_BLOCK=y | 143 | CONFIG_BLOCK=y |
144 | CONFIG_LBD=y | 144 | CONFIG_LBD=y |
145 | # CONFIG_BLK_DEV_IO_TRACE is not set | 145 | # CONFIG_BLK_DEV_IO_TRACE is not set |
146 | # CONFIG_LSF is not set | ||
147 | # CONFIG_BLK_DEV_BSG is not set | 146 | # CONFIG_BLK_DEV_BSG is not set |
148 | # CONFIG_BLK_DEV_INTEGRITY is not set | 147 | # CONFIG_BLK_DEV_INTEGRITY is not set |
149 | 148 | ||
@@ -160,6 +159,10 @@ CONFIG_DEFAULT_CFQ=y | |||
160 | # CONFIG_DEFAULT_NOOP is not set | 159 | # CONFIG_DEFAULT_NOOP is not set |
161 | CONFIG_DEFAULT_IOSCHED="cfq" | 160 | CONFIG_DEFAULT_IOSCHED="cfq" |
162 | CONFIG_CLASSIC_RCU=y | 161 | CONFIG_CLASSIC_RCU=y |
162 | # CONFIG_TREE_RCU is not set | ||
163 | # CONFIG_PREEMPT_RCU is not set | ||
164 | # CONFIG_TREE_RCU_TRACE is not set | ||
165 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
163 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
164 | 167 | ||
165 | # | 168 | # |
@@ -202,6 +205,7 @@ CONFIG_CPM2=y | |||
202 | CONFIG_FSL_ULI1575=y | 205 | CONFIG_FSL_ULI1575=y |
203 | CONFIG_CPM=y | 206 | CONFIG_CPM=y |
204 | # CONFIG_MPC8xxx_GPIO is not set | 207 | # CONFIG_MPC8xxx_GPIO is not set |
208 | # CONFIG_SIMPLE_GPIO is not set | ||
205 | 209 | ||
206 | # | 210 | # |
207 | # Kernel options | 211 | # Kernel options |
@@ -240,12 +244,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
240 | CONFIG_PAGEFLAGS_EXTENDED=y | 244 | CONFIG_PAGEFLAGS_EXTENDED=y |
241 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 245 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
242 | CONFIG_MIGRATION=y | 246 | CONFIG_MIGRATION=y |
243 | # CONFIG_RESOURCES_64BIT is not set | ||
244 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 247 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
245 | CONFIG_ZONE_DMA_FLAG=1 | 248 | CONFIG_ZONE_DMA_FLAG=1 |
246 | CONFIG_BOUNCE=y | 249 | CONFIG_BOUNCE=y |
247 | CONFIG_VIRT_TO_BUS=y | 250 | CONFIG_VIRT_TO_BUS=y |
248 | CONFIG_UNEVICTABLE_LRU=y | 251 | CONFIG_UNEVICTABLE_LRU=y |
252 | CONFIG_PPC_4K_PAGES=y | ||
253 | # CONFIG_PPC_16K_PAGES is not set | ||
254 | # CONFIG_PPC_64K_PAGES is not set | ||
249 | CONFIG_FORCE_MAX_ZONEORDER=11 | 255 | CONFIG_FORCE_MAX_ZONEORDER=11 |
250 | CONFIG_PROC_DEVICETREE=y | 256 | CONFIG_PROC_DEVICETREE=y |
251 | # CONFIG_CMDLINE_BOOL is not set | 257 | # CONFIG_CMDLINE_BOOL is not set |
@@ -271,6 +277,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
271 | # CONFIG_PCI_MSI is not set | 277 | # CONFIG_PCI_MSI is not set |
272 | # CONFIG_PCI_LEGACY is not set | 278 | # CONFIG_PCI_LEGACY is not set |
273 | # CONFIG_PCI_DEBUG is not set | 279 | # CONFIG_PCI_DEBUG is not set |
280 | # CONFIG_PCI_STUB is not set | ||
274 | # CONFIG_PCCARD is not set | 281 | # CONFIG_PCCARD is not set |
275 | # CONFIG_HOTPLUG_PCI is not set | 282 | # CONFIG_HOTPLUG_PCI is not set |
276 | # CONFIG_HAS_RAPIDIO is not set | 283 | # CONFIG_HAS_RAPIDIO is not set |
@@ -294,6 +301,7 @@ CONFIG_NET=y | |||
294 | # | 301 | # |
295 | # Networking options | 302 | # Networking options |
296 | # | 303 | # |
304 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
297 | CONFIG_PACKET=y | 305 | CONFIG_PACKET=y |
298 | # CONFIG_PACKET_MMAP is not set | 306 | # CONFIG_PACKET_MMAP is not set |
299 | CONFIG_UNIX=y | 307 | CONFIG_UNIX=y |
@@ -382,6 +390,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
382 | # CONFIG_ECONET is not set | 390 | # CONFIG_ECONET is not set |
383 | # CONFIG_WAN_ROUTER is not set | 391 | # CONFIG_WAN_ROUTER is not set |
384 | # CONFIG_NET_SCHED is not set | 392 | # CONFIG_NET_SCHED is not set |
393 | # CONFIG_DCB is not set | ||
385 | 394 | ||
386 | # | 395 | # |
387 | # Network testing | 396 | # Network testing |
@@ -398,8 +407,9 @@ CONFIG_WIRELESS=y | |||
398 | # CONFIG_CFG80211 is not set | 407 | # CONFIG_CFG80211 is not set |
399 | CONFIG_WIRELESS_OLD_REGULATORY=y | 408 | CONFIG_WIRELESS_OLD_REGULATORY=y |
400 | # CONFIG_WIRELESS_EXT is not set | 409 | # CONFIG_WIRELESS_EXT is not set |
410 | # CONFIG_LIB80211 is not set | ||
401 | # CONFIG_MAC80211 is not set | 411 | # CONFIG_MAC80211 is not set |
402 | # CONFIG_IEEE80211 is not set | 412 | # CONFIG_WIMAX is not set |
403 | # CONFIG_RFKILL is not set | 413 | # CONFIG_RFKILL is not set |
404 | # CONFIG_NET_9P is not set | 414 | # CONFIG_NET_9P is not set |
405 | 415 | ||
@@ -449,8 +459,10 @@ CONFIG_MISC_DEVICES=y | |||
449 | # CONFIG_EEPROM_93CX6 is not set | 459 | # CONFIG_EEPROM_93CX6 is not set |
450 | # CONFIG_SGI_IOC4 is not set | 460 | # CONFIG_SGI_IOC4 is not set |
451 | # CONFIG_TIFM_CORE is not set | 461 | # CONFIG_TIFM_CORE is not set |
462 | # CONFIG_ICS932S401 is not set | ||
452 | # CONFIG_ENCLOSURE_SERVICES is not set | 463 | # CONFIG_ENCLOSURE_SERVICES is not set |
453 | # CONFIG_HP_ILO is not set | 464 | # CONFIG_HP_ILO is not set |
465 | # CONFIG_C2PORT is not set | ||
454 | CONFIG_HAVE_IDE=y | 466 | CONFIG_HAVE_IDE=y |
455 | # CONFIG_IDE is not set | 467 | # CONFIG_IDE is not set |
456 | 468 | ||
@@ -494,6 +506,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
494 | # CONFIG_SCSI_SRP_ATTRS is not set | 506 | # CONFIG_SCSI_SRP_ATTRS is not set |
495 | CONFIG_SCSI_LOWLEVEL=y | 507 | CONFIG_SCSI_LOWLEVEL=y |
496 | # CONFIG_ISCSI_TCP is not set | 508 | # CONFIG_ISCSI_TCP is not set |
509 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
497 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 510 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
498 | # CONFIG_SCSI_3W_9XXX is not set | 511 | # CONFIG_SCSI_3W_9XXX is not set |
499 | # CONFIG_SCSI_ACARD is not set | 512 | # CONFIG_SCSI_ACARD is not set |
@@ -510,6 +523,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
510 | # CONFIG_MEGARAID_SAS is not set | 523 | # CONFIG_MEGARAID_SAS is not set |
511 | # CONFIG_SCSI_HPTIOP is not set | 524 | # CONFIG_SCSI_HPTIOP is not set |
512 | # CONFIG_SCSI_BUSLOGIC is not set | 525 | # CONFIG_SCSI_BUSLOGIC is not set |
526 | # CONFIG_LIBFC is not set | ||
527 | # CONFIG_FCOE is not set | ||
513 | # CONFIG_SCSI_DMX3191D is not set | 528 | # CONFIG_SCSI_DMX3191D is not set |
514 | # CONFIG_SCSI_EATA is not set | 529 | # CONFIG_SCSI_EATA is not set |
515 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 530 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -629,6 +644,9 @@ CONFIG_VITESSE_PHY=y | |||
629 | # CONFIG_BROADCOM_PHY is not set | 644 | # CONFIG_BROADCOM_PHY is not set |
630 | # CONFIG_ICPLUS_PHY is not set | 645 | # CONFIG_ICPLUS_PHY is not set |
631 | # CONFIG_REALTEK_PHY is not set | 646 | # CONFIG_REALTEK_PHY is not set |
647 | # CONFIG_NATIONAL_PHY is not set | ||
648 | # CONFIG_STE10XP is not set | ||
649 | # CONFIG_LSI_ET1011C_PHY is not set | ||
632 | # CONFIG_FIXED_PHY is not set | 650 | # CONFIG_FIXED_PHY is not set |
633 | # CONFIG_MDIO_BITBANG is not set | 651 | # CONFIG_MDIO_BITBANG is not set |
634 | CONFIG_NET_ETHERNET=y | 652 | CONFIG_NET_ETHERNET=y |
@@ -675,6 +693,7 @@ CONFIG_GIANFAR=y | |||
675 | # CONFIG_JME is not set | 693 | # CONFIG_JME is not set |
676 | CONFIG_NETDEV_10000=y | 694 | CONFIG_NETDEV_10000=y |
677 | # CONFIG_CHELSIO_T1 is not set | 695 | # CONFIG_CHELSIO_T1 is not set |
696 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
678 | # CONFIG_CHELSIO_T3 is not set | 697 | # CONFIG_CHELSIO_T3 is not set |
679 | # CONFIG_ENIC is not set | 698 | # CONFIG_ENIC is not set |
680 | # CONFIG_IXGBE is not set | 699 | # CONFIG_IXGBE is not set |
@@ -699,6 +718,10 @@ CONFIG_NETDEV_10000=y | |||
699 | # CONFIG_IWLWIFI_LEDS is not set | 718 | # CONFIG_IWLWIFI_LEDS is not set |
700 | 719 | ||
701 | # | 720 | # |
721 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
722 | # | ||
723 | |||
724 | # | ||
702 | # USB Network Adapters | 725 | # USB Network Adapters |
703 | # | 726 | # |
704 | # CONFIG_USB_CATC is not set | 727 | # CONFIG_USB_CATC is not set |
@@ -792,8 +815,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
792 | # CONFIG_SERIAL_OF_PLATFORM is not set | 815 | # CONFIG_SERIAL_OF_PLATFORM is not set |
793 | # CONFIG_SERIAL_QE is not set | 816 | # CONFIG_SERIAL_QE is not set |
794 | CONFIG_UNIX98_PTYS=y | 817 | CONFIG_UNIX98_PTYS=y |
818 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
795 | CONFIG_LEGACY_PTYS=y | 819 | CONFIG_LEGACY_PTYS=y |
796 | CONFIG_LEGACY_PTY_COUNT=256 | 820 | CONFIG_LEGACY_PTY_COUNT=256 |
821 | # CONFIG_HVC_UDBG is not set | ||
797 | # CONFIG_IPMI_HANDLER is not set | 822 | # CONFIG_IPMI_HANDLER is not set |
798 | # CONFIG_HW_RANDOM is not set | 823 | # CONFIG_HW_RANDOM is not set |
799 | CONFIG_NVRAM=y | 824 | CONFIG_NVRAM=y |
@@ -866,7 +891,6 @@ CONFIG_EEPROM_LEGACY=y | |||
866 | # CONFIG_PCF8575 is not set | 891 | # CONFIG_PCF8575 is not set |
867 | # CONFIG_SENSORS_PCA9539 is not set | 892 | # CONFIG_SENSORS_PCA9539 is not set |
868 | # CONFIG_SENSORS_PCF8591 is not set | 893 | # CONFIG_SENSORS_PCF8591 is not set |
869 | # CONFIG_TPS65010 is not set | ||
870 | # CONFIG_SENSORS_MAX6875 is not set | 894 | # CONFIG_SENSORS_MAX6875 is not set |
871 | # CONFIG_SENSORS_TSL2550 is not set | 895 | # CONFIG_SENSORS_TSL2550 is not set |
872 | # CONFIG_I2C_DEBUG_CORE is not set | 896 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -881,6 +905,11 @@ CONFIG_GPIOLIB=y | |||
881 | # CONFIG_GPIO_SYSFS is not set | 905 | # CONFIG_GPIO_SYSFS is not set |
882 | 906 | ||
883 | # | 907 | # |
908 | # Memory mapped GPIO expanders: | ||
909 | # | ||
910 | # CONFIG_GPIO_XILINX is not set | ||
911 | |||
912 | # | ||
884 | # I2C GPIO expanders: | 913 | # I2C GPIO expanders: |
885 | # | 914 | # |
886 | # CONFIG_GPIO_MAX732X is not set | 915 | # CONFIG_GPIO_MAX732X is not set |
@@ -901,11 +930,11 @@ CONFIG_GPIOLIB=y | |||
901 | # CONFIG_THERMAL is not set | 930 | # CONFIG_THERMAL is not set |
902 | # CONFIG_THERMAL_HWMON is not set | 931 | # CONFIG_THERMAL_HWMON is not set |
903 | # CONFIG_WATCHDOG is not set | 932 | # CONFIG_WATCHDOG is not set |
933 | CONFIG_SSB_POSSIBLE=y | ||
904 | 934 | ||
905 | # | 935 | # |
906 | # Sonics Silicon Backplane | 936 | # Sonics Silicon Backplane |
907 | # | 937 | # |
908 | CONFIG_SSB_POSSIBLE=y | ||
909 | # CONFIG_SSB is not set | 938 | # CONFIG_SSB is not set |
910 | 939 | ||
911 | # | 940 | # |
@@ -915,18 +944,14 @@ CONFIG_SSB_POSSIBLE=y | |||
915 | # CONFIG_MFD_SM501 is not set | 944 | # CONFIG_MFD_SM501 is not set |
916 | # CONFIG_HTC_PASIC3 is not set | 945 | # CONFIG_HTC_PASIC3 is not set |
917 | # CONFIG_UCB1400_CORE is not set | 946 | # CONFIG_UCB1400_CORE is not set |
947 | # CONFIG_TPS65010 is not set | ||
948 | # CONFIG_TWL4030_CORE is not set | ||
918 | # CONFIG_MFD_TMIO is not set | 949 | # CONFIG_MFD_TMIO is not set |
919 | # CONFIG_PMIC_DA903X is not set | 950 | # CONFIG_PMIC_DA903X is not set |
920 | # CONFIG_MFD_WM8400 is not set | 951 | # CONFIG_MFD_WM8400 is not set |
921 | # CONFIG_MFD_WM8350_I2C is not set | 952 | # CONFIG_MFD_WM8350_I2C is not set |
922 | 953 | # CONFIG_MFD_PCF50633 is not set | |
923 | # | ||
924 | # Voltage and Current regulators | ||
925 | # | ||
926 | # CONFIG_REGULATOR is not set | 954 | # CONFIG_REGULATOR is not set |
927 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
928 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
929 | # CONFIG_REGULATOR_BQ24022 is not set | ||
930 | 955 | ||
931 | # | 956 | # |
932 | # Multimedia devices | 957 | # Multimedia devices |
@@ -953,6 +978,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
953 | CONFIG_MEDIA_TUNER_MT20XX=m | 978 | CONFIG_MEDIA_TUNER_MT20XX=m |
954 | CONFIG_MEDIA_TUNER_XC2028=m | 979 | CONFIG_MEDIA_TUNER_XC2028=m |
955 | CONFIG_MEDIA_TUNER_XC5000=m | 980 | CONFIG_MEDIA_TUNER_XC5000=m |
981 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
956 | CONFIG_DVB_CAPTURE_DRIVERS=y | 982 | CONFIG_DVB_CAPTURE_DRIVERS=y |
957 | 983 | ||
958 | # | 984 | # |
@@ -998,6 +1024,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
998 | # CONFIG_DVB_FE_CUSTOMISE is not set | 1024 | # CONFIG_DVB_FE_CUSTOMISE is not set |
999 | 1025 | ||
1000 | # | 1026 | # |
1027 | # Multistandard (satellite) frontends | ||
1028 | # | ||
1029 | # CONFIG_DVB_STB0899 is not set | ||
1030 | # CONFIG_DVB_STB6100 is not set | ||
1031 | |||
1032 | # | ||
1001 | # DVB-S (satellite) frontends | 1033 | # DVB-S (satellite) frontends |
1002 | # | 1034 | # |
1003 | # CONFIG_DVB_CX24110 is not set | 1035 | # CONFIG_DVB_CX24110 is not set |
@@ -1009,8 +1041,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1009 | # CONFIG_DVB_STV0299 is not set | 1041 | # CONFIG_DVB_STV0299 is not set |
1010 | # CONFIG_DVB_TDA8083 is not set | 1042 | # CONFIG_DVB_TDA8083 is not set |
1011 | # CONFIG_DVB_TDA10086 is not set | 1043 | # CONFIG_DVB_TDA10086 is not set |
1044 | # CONFIG_DVB_TDA8261 is not set | ||
1012 | # CONFIG_DVB_VES1X93 is not set | 1045 | # CONFIG_DVB_VES1X93 is not set |
1013 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1046 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1047 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
1014 | # CONFIG_DVB_TDA826X is not set | 1048 | # CONFIG_DVB_TDA826X is not set |
1015 | # CONFIG_DVB_TUA6100 is not set | 1049 | # CONFIG_DVB_TUA6100 is not set |
1016 | # CONFIG_DVB_CX24116 is not set | 1050 | # CONFIG_DVB_CX24116 is not set |
@@ -1051,11 +1085,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1051 | # CONFIG_DVB_OR51132 is not set | 1085 | # CONFIG_DVB_OR51132 is not set |
1052 | # CONFIG_DVB_BCM3510 is not set | 1086 | # CONFIG_DVB_BCM3510 is not set |
1053 | # CONFIG_DVB_LGDT330X is not set | 1087 | # CONFIG_DVB_LGDT330X is not set |
1088 | # CONFIG_DVB_LGDT3304 is not set | ||
1054 | # CONFIG_DVB_S5H1409 is not set | 1089 | # CONFIG_DVB_S5H1409 is not set |
1055 | # CONFIG_DVB_AU8522 is not set | 1090 | # CONFIG_DVB_AU8522 is not set |
1056 | # CONFIG_DVB_S5H1411 is not set | 1091 | # CONFIG_DVB_S5H1411 is not set |
1057 | 1092 | ||
1058 | # | 1093 | # |
1094 | # ISDB-T (terrestrial) frontends | ||
1095 | # | ||
1096 | # CONFIG_DVB_S921 is not set | ||
1097 | |||
1098 | # | ||
1059 | # Digital terrestrial only tuners/PLL | 1099 | # Digital terrestrial only tuners/PLL |
1060 | # | 1100 | # |
1061 | # CONFIG_DVB_PLL is not set | 1101 | # CONFIG_DVB_PLL is not set |
@@ -1108,6 +1148,7 @@ CONFIG_SND_OSSEMUL=y | |||
1108 | CONFIG_SND_MIXER_OSS=y | 1148 | CONFIG_SND_MIXER_OSS=y |
1109 | CONFIG_SND_PCM_OSS=y | 1149 | CONFIG_SND_PCM_OSS=y |
1110 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1150 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1151 | # CONFIG_SND_HRTIMER is not set | ||
1111 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1152 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1112 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1153 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1113 | CONFIG_SND_VERBOSE_PROCFS=y | 1154 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1210,11 +1251,9 @@ CONFIG_HID_COMPAT=y | |||
1210 | CONFIG_HID_A4TECH=y | 1251 | CONFIG_HID_A4TECH=y |
1211 | CONFIG_HID_APPLE=y | 1252 | CONFIG_HID_APPLE=y |
1212 | CONFIG_HID_BELKIN=y | 1253 | CONFIG_HID_BELKIN=y |
1213 | CONFIG_HID_BRIGHT=y | ||
1214 | CONFIG_HID_CHERRY=y | 1254 | CONFIG_HID_CHERRY=y |
1215 | CONFIG_HID_CHICONY=y | 1255 | CONFIG_HID_CHICONY=y |
1216 | CONFIG_HID_CYPRESS=y | 1256 | CONFIG_HID_CYPRESS=y |
1217 | CONFIG_HID_DELL=y | ||
1218 | CONFIG_HID_EZKEY=y | 1257 | CONFIG_HID_EZKEY=y |
1219 | CONFIG_HID_GYRATION=y | 1258 | CONFIG_HID_GYRATION=y |
1220 | CONFIG_HID_LOGITECH=y | 1259 | CONFIG_HID_LOGITECH=y |
@@ -1222,12 +1261,15 @@ CONFIG_HID_LOGITECH=y | |||
1222 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1261 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1223 | CONFIG_HID_MICROSOFT=y | 1262 | CONFIG_HID_MICROSOFT=y |
1224 | CONFIG_HID_MONTEREY=y | 1263 | CONFIG_HID_MONTEREY=y |
1264 | # CONFIG_HID_NTRIG is not set | ||
1225 | CONFIG_HID_PANTHERLORD=y | 1265 | CONFIG_HID_PANTHERLORD=y |
1226 | # CONFIG_PANTHERLORD_FF is not set | 1266 | # CONFIG_PANTHERLORD_FF is not set |
1227 | CONFIG_HID_PETALYNX=y | 1267 | CONFIG_HID_PETALYNX=y |
1228 | CONFIG_HID_SAMSUNG=y | 1268 | CONFIG_HID_SAMSUNG=y |
1229 | CONFIG_HID_SONY=y | 1269 | CONFIG_HID_SONY=y |
1230 | CONFIG_HID_SUNPLUS=y | 1270 | CONFIG_HID_SUNPLUS=y |
1271 | # CONFIG_GREENASIA_FF is not set | ||
1272 | # CONFIG_HID_TOPSEED is not set | ||
1231 | CONFIG_THRUSTMASTER_FF=m | 1273 | CONFIG_THRUSTMASTER_FF=m |
1232 | CONFIG_ZEROPLUS_FF=m | 1274 | CONFIG_ZEROPLUS_FF=m |
1233 | CONFIG_USB_SUPPORT=y | 1275 | CONFIG_USB_SUPPORT=y |
@@ -1260,6 +1302,7 @@ CONFIG_USB_EHCI_ROOT_HUB_TT=y | |||
1260 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1302 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1261 | CONFIG_USB_EHCI_FSL=y | 1303 | CONFIG_USB_EHCI_FSL=y |
1262 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1304 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1305 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1263 | # CONFIG_USB_ISP116X_HCD is not set | 1306 | # CONFIG_USB_ISP116X_HCD is not set |
1264 | # CONFIG_USB_ISP1760_HCD is not set | 1307 | # CONFIG_USB_ISP1760_HCD is not set |
1265 | CONFIG_USB_OHCI_HCD=y | 1308 | CONFIG_USB_OHCI_HCD=y |
@@ -1286,18 +1329,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1286 | # CONFIG_USB_TMC is not set | 1329 | # CONFIG_USB_TMC is not set |
1287 | 1330 | ||
1288 | # | 1331 | # |
1289 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1332 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1290 | # | 1333 | # |
1291 | 1334 | ||
1292 | # | 1335 | # |
1293 | # may also be needed; see USB_STORAGE Help for more information | 1336 | # see USB_STORAGE Help for more information |
1294 | # | 1337 | # |
1295 | CONFIG_USB_STORAGE=y | 1338 | CONFIG_USB_STORAGE=y |
1296 | # CONFIG_USB_STORAGE_DEBUG is not set | 1339 | # CONFIG_USB_STORAGE_DEBUG is not set |
1297 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1340 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1298 | # CONFIG_USB_STORAGE_FREECOM is not set | 1341 | # CONFIG_USB_STORAGE_FREECOM is not set |
1299 | # CONFIG_USB_STORAGE_ISD200 is not set | 1342 | # CONFIG_USB_STORAGE_ISD200 is not set |
1300 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1301 | # CONFIG_USB_STORAGE_USBAT is not set | 1343 | # CONFIG_USB_STORAGE_USBAT is not set |
1302 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1344 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1303 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1345 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1345,6 +1387,11 @@ CONFIG_USB_STORAGE=y | |||
1345 | # CONFIG_USB_ISIGHTFW is not set | 1387 | # CONFIG_USB_ISIGHTFW is not set |
1346 | # CONFIG_USB_VST is not set | 1388 | # CONFIG_USB_VST is not set |
1347 | # CONFIG_USB_GADGET is not set | 1389 | # CONFIG_USB_GADGET is not set |
1390 | |||
1391 | # | ||
1392 | # OTG and related infrastructure | ||
1393 | # | ||
1394 | # CONFIG_USB_GPIO_VBUS is not set | ||
1348 | # CONFIG_UWB is not set | 1395 | # CONFIG_UWB is not set |
1349 | # CONFIG_MMC is not set | 1396 | # CONFIG_MMC is not set |
1350 | # CONFIG_MEMSTICK is not set | 1397 | # CONFIG_MEMSTICK is not set |
@@ -1389,6 +1436,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1389 | # CONFIG_RTC_DRV_M41T80 is not set | 1436 | # CONFIG_RTC_DRV_M41T80 is not set |
1390 | # CONFIG_RTC_DRV_S35390A is not set | 1437 | # CONFIG_RTC_DRV_S35390A is not set |
1391 | # CONFIG_RTC_DRV_FM3130 is not set | 1438 | # CONFIG_RTC_DRV_FM3130 is not set |
1439 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1392 | 1440 | ||
1393 | # | 1441 | # |
1394 | # SPI RTC drivers | 1442 | # SPI RTC drivers |
@@ -1448,7 +1496,9 @@ CONFIG_FS_MBCACHE=y | |||
1448 | # CONFIG_FS_POSIX_ACL is not set | 1496 | # CONFIG_FS_POSIX_ACL is not set |
1449 | CONFIG_FILE_LOCKING=y | 1497 | CONFIG_FILE_LOCKING=y |
1450 | # CONFIG_XFS_FS is not set | 1498 | # CONFIG_XFS_FS is not set |
1499 | # CONFIG_GFS2_FS is not set | ||
1451 | # CONFIG_OCFS2_FS is not set | 1500 | # CONFIG_OCFS2_FS is not set |
1501 | # CONFIG_BTRFS_FS is not set | ||
1452 | CONFIG_DNOTIFY=y | 1502 | CONFIG_DNOTIFY=y |
1453 | CONFIG_INOTIFY=y | 1503 | CONFIG_INOTIFY=y |
1454 | CONFIG_INOTIFY_USER=y | 1504 | CONFIG_INOTIFY_USER=y |
@@ -1490,10 +1540,7 @@ CONFIG_TMPFS=y | |||
1490 | # CONFIG_TMPFS_POSIX_ACL is not set | 1540 | # CONFIG_TMPFS_POSIX_ACL is not set |
1491 | # CONFIG_HUGETLB_PAGE is not set | 1541 | # CONFIG_HUGETLB_PAGE is not set |
1492 | # CONFIG_CONFIGFS_FS is not set | 1542 | # CONFIG_CONFIGFS_FS is not set |
1493 | 1543 | CONFIG_MISC_FILESYSTEMS=y | |
1494 | # | ||
1495 | # Miscellaneous filesystems | ||
1496 | # | ||
1497 | CONFIG_ADFS_FS=m | 1544 | CONFIG_ADFS_FS=m |
1498 | # CONFIG_ADFS_FS_RW is not set | 1545 | # CONFIG_ADFS_FS_RW is not set |
1499 | CONFIG_AFFS_FS=m | 1546 | CONFIG_AFFS_FS=m |
@@ -1504,6 +1551,7 @@ CONFIG_BEFS_FS=m | |||
1504 | CONFIG_BFS_FS=m | 1551 | CONFIG_BFS_FS=m |
1505 | CONFIG_EFS_FS=m | 1552 | CONFIG_EFS_FS=m |
1506 | CONFIG_CRAMFS=y | 1553 | CONFIG_CRAMFS=y |
1554 | # CONFIG_SQUASHFS is not set | ||
1507 | CONFIG_VXFS_FS=m | 1555 | CONFIG_VXFS_FS=m |
1508 | # CONFIG_MINIX_FS is not set | 1556 | # CONFIG_MINIX_FS is not set |
1509 | # CONFIG_OMFS_FS is not set | 1557 | # CONFIG_OMFS_FS is not set |
@@ -1605,6 +1653,7 @@ CONFIG_NLS_UTF8=m | |||
1605 | # Library routines | 1653 | # Library routines |
1606 | # | 1654 | # |
1607 | CONFIG_BITREVERSE=y | 1655 | CONFIG_BITREVERSE=y |
1656 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1608 | # CONFIG_CRC_CCITT is not set | 1657 | # CONFIG_CRC_CCITT is not set |
1609 | # CONFIG_CRC16 is not set | 1658 | # CONFIG_CRC16 is not set |
1610 | CONFIG_CRC_T10DIF=y | 1659 | CONFIG_CRC_T10DIF=y |
@@ -1656,6 +1705,7 @@ CONFIG_DEBUG_INFO=y | |||
1656 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1705 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1657 | # CONFIG_DEBUG_LIST is not set | 1706 | # CONFIG_DEBUG_LIST is not set |
1658 | # CONFIG_DEBUG_SG is not set | 1707 | # CONFIG_DEBUG_SG is not set |
1708 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1659 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1709 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1660 | # CONFIG_RCU_TORTURE_TEST is not set | 1710 | # CONFIG_RCU_TORTURE_TEST is not set |
1661 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1711 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1665,6 +1715,8 @@ CONFIG_DEBUG_INFO=y | |||
1665 | # CONFIG_LATENCYTOP is not set | 1715 | # CONFIG_LATENCYTOP is not set |
1666 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1716 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1667 | CONFIG_HAVE_FUNCTION_TRACER=y | 1717 | CONFIG_HAVE_FUNCTION_TRACER=y |
1718 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1719 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1668 | 1720 | ||
1669 | # | 1721 | # |
1670 | # Tracers | 1722 | # Tracers |
@@ -1673,11 +1725,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1673 | # CONFIG_SCHED_TRACER is not set | 1725 | # CONFIG_SCHED_TRACER is not set |
1674 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1726 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1675 | # CONFIG_BOOT_TRACER is not set | 1727 | # CONFIG_BOOT_TRACER is not set |
1728 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1676 | # CONFIG_STACK_TRACER is not set | 1729 | # CONFIG_STACK_TRACER is not set |
1677 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1730 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1678 | # CONFIG_SAMPLES is not set | 1731 | # CONFIG_SAMPLES is not set |
1679 | CONFIG_HAVE_ARCH_KGDB=y | 1732 | CONFIG_HAVE_ARCH_KGDB=y |
1680 | # CONFIG_KGDB is not set | 1733 | # CONFIG_KGDB is not set |
1734 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1681 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1735 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1682 | # CONFIG_DEBUG_STACK_USAGE is not set | 1736 | # CONFIG_DEBUG_STACK_USAGE is not set |
1683 | # CONFIG_DEBUG_PAGEALLOC is not set | 1737 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1704,11 +1758,15 @@ CONFIG_CRYPTO=y | |||
1704 | # | 1758 | # |
1705 | # CONFIG_CRYPTO_FIPS is not set | 1759 | # CONFIG_CRYPTO_FIPS is not set |
1706 | CONFIG_CRYPTO_ALGAPI=y | 1760 | CONFIG_CRYPTO_ALGAPI=y |
1707 | CONFIG_CRYPTO_AEAD=y | 1761 | CONFIG_CRYPTO_ALGAPI2=y |
1762 | CONFIG_CRYPTO_AEAD2=y | ||
1708 | CONFIG_CRYPTO_BLKCIPHER=y | 1763 | CONFIG_CRYPTO_BLKCIPHER=y |
1764 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1709 | CONFIG_CRYPTO_HASH=y | 1765 | CONFIG_CRYPTO_HASH=y |
1710 | CONFIG_CRYPTO_RNG=y | 1766 | CONFIG_CRYPTO_HASH2=y |
1767 | CONFIG_CRYPTO_RNG2=y | ||
1711 | CONFIG_CRYPTO_MANAGER=y | 1768 | CONFIG_CRYPTO_MANAGER=y |
1769 | CONFIG_CRYPTO_MANAGER2=y | ||
1712 | # CONFIG_CRYPTO_GF128MUL is not set | 1770 | # CONFIG_CRYPTO_GF128MUL is not set |
1713 | # CONFIG_CRYPTO_NULL is not set | 1771 | # CONFIG_CRYPTO_NULL is not set |
1714 | # CONFIG_CRYPTO_CRYPTD is not set | 1772 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1742,7 +1800,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1742 | # | 1800 | # |
1743 | # Digest | 1801 | # Digest |
1744 | # | 1802 | # |
1745 | # CONFIG_CRYPTO_CRC32C is not set | 1803 | CONFIG_CRYPTO_CRC32C=m |
1746 | # CONFIG_CRYPTO_MD4 is not set | 1804 | # CONFIG_CRYPTO_MD4 is not set |
1747 | CONFIG_CRYPTO_MD5=y | 1805 | CONFIG_CRYPTO_MD5=y |
1748 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1806 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/mpc866_ads_defconfig b/arch/powerpc/configs/mpc866_ads_defconfig index 8272b1ac71f9..1793d08e9c01 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:43 2008 | 4 | # Mon Jan 26 15:35:38 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=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_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -69,12 +70,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
69 | # CONFIG_AUDIT is not set | 70 | # CONFIG_AUDIT is not set |
70 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
71 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
72 | # CONFIG_CGROUPS is not set | ||
73 | CONFIG_GROUP_SCHED=y | 73 | CONFIG_GROUP_SCHED=y |
74 | # CONFIG_FAIR_GROUP_SCHED is not set | 74 | # CONFIG_FAIR_GROUP_SCHED is not set |
75 | # CONFIG_RT_GROUP_SCHED is not set | 75 | # CONFIG_RT_GROUP_SCHED is not set |
76 | CONFIG_USER_SCHED=y | 76 | CONFIG_USER_SCHED=y |
77 | # CONFIG_CGROUP_SCHED is not set | 77 | # CONFIG_CGROUP_SCHED is not set |
78 | # CONFIG_CGROUPS is not set | ||
78 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
79 | CONFIG_SYSFS_DEPRECATED_V2=y | 80 | CONFIG_SYSFS_DEPRECATED_V2=y |
80 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
@@ -106,7 +107,6 @@ CONFIG_SLUB_DEBUG=y | |||
106 | CONFIG_SLUB=y | 107 | CONFIG_SLUB=y |
107 | # CONFIG_SLOB is not set | 108 | # CONFIG_SLOB is not set |
108 | # CONFIG_PROFILING is not set | 109 | # CONFIG_PROFILING is not set |
109 | # CONFIG_MARKERS is not set | ||
110 | CONFIG_HAVE_OPROFILE=y | 110 | CONFIG_HAVE_OPROFILE=y |
111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
112 | CONFIG_HAVE_IOREMAP_PROT=y | 112 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -117,13 +117,11 @@ CONFIG_HAVE_CLK=y | |||
117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
118 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
119 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
120 | # CONFIG_TINY_SHMEM is not set | ||
121 | CONFIG_BASE_SMALL=1 | 120 | CONFIG_BASE_SMALL=1 |
122 | # CONFIG_MODULES is not set | 121 | # CONFIG_MODULES is not set |
123 | CONFIG_BLOCK=y | 122 | CONFIG_BLOCK=y |
124 | # CONFIG_LBD is not set | 123 | # CONFIG_LBD is not set |
125 | # CONFIG_BLK_DEV_IO_TRACE is not set | 124 | # CONFIG_BLK_DEV_IO_TRACE is not set |
126 | # CONFIG_LSF is not set | ||
127 | # CONFIG_BLK_DEV_BSG is not set | 125 | # CONFIG_BLK_DEV_BSG is not set |
128 | # CONFIG_BLK_DEV_INTEGRITY is not set | 126 | # CONFIG_BLK_DEV_INTEGRITY is not set |
129 | 127 | ||
@@ -140,6 +138,10 @@ CONFIG_DEFAULT_AS=y | |||
140 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
141 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
142 | CONFIG_CLASSIC_RCU=y | 140 | CONFIG_CLASSIC_RCU=y |
141 | # CONFIG_TREE_RCU is not set | ||
142 | # CONFIG_PREEMPT_RCU is not set | ||
143 | # CONFIG_TREE_RCU_TRACE is not set | ||
144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
143 | # CONFIG_FREEZER is not set | 145 | # CONFIG_FREEZER is not set |
144 | 146 | ||
145 | # | 147 | # |
@@ -185,6 +187,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
185 | # CONFIG_QUICC_ENGINE is not set | 187 | # CONFIG_QUICC_ENGINE is not set |
186 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
187 | CONFIG_CPM=y | 189 | CONFIG_CPM=y |
190 | # CONFIG_SIMPLE_GPIO is not set | ||
188 | 191 | ||
189 | # | 192 | # |
190 | # Kernel options | 193 | # Kernel options |
@@ -209,6 +212,7 @@ CONFIG_BINFMT_ELF=y | |||
209 | # CONFIG_BINFMT_MISC is not set | 212 | # CONFIG_BINFMT_MISC is not set |
210 | CONFIG_MATH_EMULATION=y | 213 | CONFIG_MATH_EMULATION=y |
211 | # CONFIG_IOMMU_HELPER is not set | 214 | # CONFIG_IOMMU_HELPER is not set |
215 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
213 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 217 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -223,12 +227,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
223 | CONFIG_PAGEFLAGS_EXTENDED=y | 227 | CONFIG_PAGEFLAGS_EXTENDED=y |
224 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
225 | CONFIG_MIGRATION=y | 229 | CONFIG_MIGRATION=y |
226 | # CONFIG_RESOURCES_64BIT is not set | ||
227 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 230 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
228 | CONFIG_ZONE_DMA_FLAG=1 | 231 | CONFIG_ZONE_DMA_FLAG=1 |
229 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
230 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
231 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
235 | CONFIG_PPC_4K_PAGES=y | ||
236 | # CONFIG_PPC_16K_PAGES is not set | ||
237 | # CONFIG_PPC_64K_PAGES is not set | ||
232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
233 | # CONFIG_PROC_DEVICETREE is not set | 239 | # CONFIG_PROC_DEVICETREE is not set |
234 | # CONFIG_CMDLINE_BOOL is not set | 240 | # CONFIG_CMDLINE_BOOL is not set |
@@ -269,6 +275,7 @@ CONFIG_NET=y | |||
269 | # | 275 | # |
270 | # Networking options | 276 | # Networking options |
271 | # | 277 | # |
278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
272 | CONFIG_PACKET=y | 279 | CONFIG_PACKET=y |
273 | # CONFIG_PACKET_MMAP is not set | 280 | # CONFIG_PACKET_MMAP is not set |
274 | CONFIG_UNIX=y | 281 | CONFIG_UNIX=y |
@@ -325,6 +332,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
325 | # CONFIG_ECONET is not set | 332 | # CONFIG_ECONET is not set |
326 | # CONFIG_WAN_ROUTER is not set | 333 | # CONFIG_WAN_ROUTER is not set |
327 | # CONFIG_NET_SCHED is not set | 334 | # CONFIG_NET_SCHED is not set |
335 | # CONFIG_DCB is not set | ||
328 | 336 | ||
329 | # | 337 | # |
330 | # Network testing | 338 | # Network testing |
@@ -340,8 +348,9 @@ CONFIG_WIRELESS=y | |||
340 | # CONFIG_CFG80211 is not set | 348 | # CONFIG_CFG80211 is not set |
341 | CONFIG_WIRELESS_OLD_REGULATORY=y | 349 | CONFIG_WIRELESS_OLD_REGULATORY=y |
342 | # CONFIG_WIRELESS_EXT is not set | 350 | # CONFIG_WIRELESS_EXT is not set |
351 | # CONFIG_LIB80211 is not set | ||
343 | # CONFIG_MAC80211 is not set | 352 | # CONFIG_MAC80211 is not set |
344 | # CONFIG_IEEE80211 is not set | 353 | # CONFIG_WIMAX is not set |
345 | # CONFIG_RFKILL is not set | 354 | # CONFIG_RFKILL is not set |
346 | # CONFIG_NET_9P is not set | 355 | # CONFIG_NET_9P is not set |
347 | 356 | ||
@@ -372,6 +381,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
372 | CONFIG_MISC_DEVICES=y | 381 | CONFIG_MISC_DEVICES=y |
373 | # CONFIG_EEPROM_93CX6 is not set | 382 | # CONFIG_EEPROM_93CX6 is not set |
374 | # CONFIG_ENCLOSURE_SERVICES is not set | 383 | # CONFIG_ENCLOSURE_SERVICES is not set |
384 | # CONFIG_C2PORT is not set | ||
375 | CONFIG_HAVE_IDE=y | 385 | CONFIG_HAVE_IDE=y |
376 | # CONFIG_IDE is not set | 386 | # CONFIG_IDE is not set |
377 | 387 | ||
@@ -407,6 +417,9 @@ CONFIG_PHYLIB=y | |||
407 | # CONFIG_BROADCOM_PHY is not set | 417 | # CONFIG_BROADCOM_PHY is not set |
408 | # CONFIG_ICPLUS_PHY is not set | 418 | # CONFIG_ICPLUS_PHY is not set |
409 | # CONFIG_REALTEK_PHY is not set | 419 | # CONFIG_REALTEK_PHY is not set |
420 | # CONFIG_NATIONAL_PHY is not set | ||
421 | # CONFIG_STE10XP is not set | ||
422 | # CONFIG_LSI_ET1011C_PHY is not set | ||
410 | CONFIG_FIXED_PHY=y | 423 | CONFIG_FIXED_PHY=y |
411 | # CONFIG_MDIO_BITBANG is not set | 424 | # CONFIG_MDIO_BITBANG is not set |
412 | CONFIG_NET_ETHERNET=y | 425 | CONFIG_NET_ETHERNET=y |
@@ -433,6 +446,10 @@ CONFIG_NETDEV_10000=y | |||
433 | # CONFIG_WLAN_PRE80211 is not set | 446 | # CONFIG_WLAN_PRE80211 is not set |
434 | # CONFIG_WLAN_80211 is not set | 447 | # CONFIG_WLAN_80211 is not set |
435 | # CONFIG_IWLWIFI_LEDS is not set | 448 | # CONFIG_IWLWIFI_LEDS is not set |
449 | |||
450 | # | ||
451 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
452 | # | ||
436 | # CONFIG_WAN is not set | 453 | # CONFIG_WAN is not set |
437 | # CONFIG_PPP is not set | 454 | # CONFIG_PPP is not set |
438 | # CONFIG_SLIP is not set | 455 | # CONFIG_SLIP is not set |
@@ -518,7 +535,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
518 | CONFIG_SERIAL_CPM=y | 535 | CONFIG_SERIAL_CPM=y |
519 | CONFIG_SERIAL_CPM_CONSOLE=y | 536 | CONFIG_SERIAL_CPM_CONSOLE=y |
520 | CONFIG_UNIX98_PTYS=y | 537 | CONFIG_UNIX98_PTYS=y |
538 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
521 | # CONFIG_LEGACY_PTYS is not set | 539 | # CONFIG_LEGACY_PTYS is not set |
540 | # CONFIG_HVC_UDBG is not set | ||
522 | # CONFIG_IPMI_HANDLER is not set | 541 | # CONFIG_IPMI_HANDLER is not set |
523 | CONFIG_HW_RANDOM=y | 542 | CONFIG_HW_RANDOM=y |
524 | # CONFIG_NVRAM is not set | 543 | # CONFIG_NVRAM is not set |
@@ -549,11 +568,11 @@ CONFIG_HWMON=y | |||
549 | # CONFIG_THERMAL is not set | 568 | # CONFIG_THERMAL is not set |
550 | # CONFIG_THERMAL_HWMON is not set | 569 | # CONFIG_THERMAL_HWMON is not set |
551 | # CONFIG_WATCHDOG is not set | 570 | # CONFIG_WATCHDOG is not set |
571 | CONFIG_SSB_POSSIBLE=y | ||
552 | 572 | ||
553 | # | 573 | # |
554 | # Sonics Silicon Backplane | 574 | # Sonics Silicon Backplane |
555 | # | 575 | # |
556 | CONFIG_SSB_POSSIBLE=y | ||
557 | # CONFIG_SSB is not set | 576 | # CONFIG_SSB is not set |
558 | 577 | ||
559 | # | 578 | # |
@@ -563,14 +582,7 @@ CONFIG_SSB_POSSIBLE=y | |||
563 | # CONFIG_MFD_SM501 is not set | 582 | # CONFIG_MFD_SM501 is not set |
564 | # CONFIG_HTC_PASIC3 is not set | 583 | # CONFIG_HTC_PASIC3 is not set |
565 | # CONFIG_MFD_TMIO is not set | 584 | # CONFIG_MFD_TMIO is not set |
566 | |||
567 | # | ||
568 | # Voltage and Current regulators | ||
569 | # | ||
570 | # CONFIG_REGULATOR is not set | 585 | # CONFIG_REGULATOR is not set |
571 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
572 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
573 | # CONFIG_REGULATOR_BQ24022 is not set | ||
574 | 586 | ||
575 | # | 587 | # |
576 | # Multimedia devices | 588 | # Multimedia devices |
@@ -623,9 +635,13 @@ CONFIG_USB_SUPPORT=y | |||
623 | # | 635 | # |
624 | 636 | ||
625 | # | 637 | # |
626 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 638 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
627 | # | 639 | # |
628 | # CONFIG_USB_GADGET is not set | 640 | # CONFIG_USB_GADGET is not set |
641 | |||
642 | # | ||
643 | # OTG and related infrastructure | ||
644 | # | ||
629 | # CONFIG_MMC is not set | 645 | # CONFIG_MMC is not set |
630 | # CONFIG_MEMSTICK is not set | 646 | # CONFIG_MEMSTICK is not set |
631 | # CONFIG_NEW_LEDS is not set | 647 | # CONFIG_NEW_LEDS is not set |
@@ -657,6 +673,7 @@ CONFIG_FS_MBCACHE=y | |||
657 | CONFIG_FILE_LOCKING=y | 673 | CONFIG_FILE_LOCKING=y |
658 | # CONFIG_XFS_FS is not set | 674 | # CONFIG_XFS_FS is not set |
659 | # CONFIG_OCFS2_FS is not set | 675 | # CONFIG_OCFS2_FS is not set |
676 | # CONFIG_BTRFS_FS is not set | ||
660 | CONFIG_DNOTIFY=y | 677 | CONFIG_DNOTIFY=y |
661 | CONFIG_INOTIFY=y | 678 | CONFIG_INOTIFY=y |
662 | CONFIG_INOTIFY_USER=y | 679 | CONFIG_INOTIFY_USER=y |
@@ -690,10 +707,7 @@ CONFIG_TMPFS=y | |||
690 | # CONFIG_TMPFS_POSIX_ACL is not set | 707 | # CONFIG_TMPFS_POSIX_ACL is not set |
691 | # CONFIG_HUGETLB_PAGE is not set | 708 | # CONFIG_HUGETLB_PAGE is not set |
692 | # CONFIG_CONFIGFS_FS is not set | 709 | # CONFIG_CONFIGFS_FS is not set |
693 | 710 | CONFIG_MISC_FILESYSTEMS=y | |
694 | # | ||
695 | # Miscellaneous filesystems | ||
696 | # | ||
697 | # CONFIG_ADFS_FS is not set | 711 | # CONFIG_ADFS_FS is not set |
698 | # CONFIG_AFFS_FS is not set | 712 | # CONFIG_AFFS_FS is not set |
699 | # CONFIG_HFS_FS is not set | 713 | # CONFIG_HFS_FS is not set |
@@ -702,6 +716,7 @@ CONFIG_TMPFS=y | |||
702 | # CONFIG_BFS_FS is not set | 716 | # CONFIG_BFS_FS is not set |
703 | # CONFIG_EFS_FS is not set | 717 | # CONFIG_EFS_FS is not set |
704 | CONFIG_CRAMFS=y | 718 | CONFIG_CRAMFS=y |
719 | # CONFIG_SQUASHFS is not set | ||
705 | # CONFIG_VXFS_FS is not set | 720 | # CONFIG_VXFS_FS is not set |
706 | # CONFIG_MINIX_FS is not set | 721 | # CONFIG_MINIX_FS is not set |
707 | # CONFIG_OMFS_FS is not set | 722 | # CONFIG_OMFS_FS is not set |
@@ -758,6 +773,7 @@ CONFIG_MSDOS_PARTITION=y | |||
758 | # Library routines | 773 | # Library routines |
759 | # | 774 | # |
760 | CONFIG_BITREVERSE=y | 775 | CONFIG_BITREVERSE=y |
776 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
761 | CONFIG_CRC_CCITT=y | 777 | CONFIG_CRC_CCITT=y |
762 | # CONFIG_CRC16 is not set | 778 | # CONFIG_CRC16 is not set |
763 | # CONFIG_CRC_T10DIF is not set | 779 | # CONFIG_CRC_T10DIF is not set |
@@ -790,6 +806,8 @@ CONFIG_FRAME_WARN=1024 | |||
790 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 806 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
791 | # CONFIG_LATENCYTOP is not set | 807 | # CONFIG_LATENCYTOP is not set |
792 | CONFIG_HAVE_FUNCTION_TRACER=y | 808 | CONFIG_HAVE_FUNCTION_TRACER=y |
809 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
810 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
793 | 811 | ||
794 | # | 812 | # |
795 | # Tracers | 813 | # Tracers |
@@ -797,6 +815,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
797 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 815 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
798 | # CONFIG_SAMPLES is not set | 816 | # CONFIG_SAMPLES is not set |
799 | CONFIG_HAVE_ARCH_KGDB=y | 817 | CONFIG_HAVE_ARCH_KGDB=y |
818 | CONFIG_PRINT_STACK_DEPTH=64 | ||
800 | # CONFIG_IRQSTACKS is not set | 819 | # CONFIG_IRQSTACKS is not set |
801 | # CONFIG_PPC_EARLY_DEBUG is not set | 820 | # CONFIG_PPC_EARLY_DEBUG is not set |
802 | 821 | ||
@@ -814,6 +833,7 @@ CONFIG_CRYPTO=y | |||
814 | # | 833 | # |
815 | # CONFIG_CRYPTO_FIPS is not set | 834 | # CONFIG_CRYPTO_FIPS is not set |
816 | # CONFIG_CRYPTO_MANAGER is not set | 835 | # CONFIG_CRYPTO_MANAGER is not set |
836 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
817 | # CONFIG_CRYPTO_GF128MUL is not set | 837 | # CONFIG_CRYPTO_GF128MUL is not set |
818 | # CONFIG_CRYPTO_NULL is not set | 838 | # CONFIG_CRYPTO_NULL is not set |
819 | # CONFIG_CRYPTO_CRYPTD is not set | 839 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/mpc86xx_defconfig b/arch/powerpc/configs/mpc86xx_defconfig index 21e0ccbd3f5c..adc756e1f252 100644 --- a/arch/powerpc/configs/mpc86xx_defconfig +++ b/arch/powerpc/configs/mpc86xx_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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:44 2008 | 4 | # Mon Jan 26 15:35:39 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -41,11 +41,12 @@ CONFIG_ARCH_HAS_ILOG2_U32=y | |||
41 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
42 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
43 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
44 | CONFIG_GENERIC_GPIO=y | ||
44 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
45 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 48 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 49 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 51 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 52 | CONFIG_OF=y |
@@ -78,12 +79,12 @@ CONFIG_AUDIT=y | |||
78 | CONFIG_IKCONFIG=y | 79 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 80 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 81 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_GROUP_SCHED=y | 82 | CONFIG_GROUP_SCHED=y |
83 | # CONFIG_FAIR_GROUP_SCHED is not set | 83 | # CONFIG_FAIR_GROUP_SCHED is not set |
84 | # CONFIG_RT_GROUP_SCHED is not set | 84 | # CONFIG_RT_GROUP_SCHED is not set |
85 | CONFIG_USER_SCHED=y | 85 | CONFIG_USER_SCHED=y |
86 | # CONFIG_CGROUP_SCHED is not set | 86 | # CONFIG_CGROUP_SCHED is not set |
87 | # CONFIG_CGROUPS is not set | ||
87 | CONFIG_SYSFS_DEPRECATED=y | 88 | CONFIG_SYSFS_DEPRECATED=y |
88 | CONFIG_SYSFS_DEPRECATED_V2=y | 89 | CONFIG_SYSFS_DEPRECATED_V2=y |
89 | # CONFIG_RELAY is not set | 90 | # CONFIG_RELAY is not set |
@@ -96,6 +97,7 @@ CONFIG_EMBEDDED=y | |||
96 | CONFIG_SYSCTL_SYSCALL=y | 97 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 98 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 99 | CONFIG_KALLSYMS_ALL=y |
100 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 101 | CONFIG_KALLSYMS_EXTRA_PASS=y |
100 | CONFIG_HOTPLUG=y | 102 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 103 | CONFIG_PRINTK=y |
@@ -118,7 +120,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 120 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 121 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 122 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 123 | CONFIG_HAVE_OPROFILE=y |
123 | # CONFIG_KPROBES is not set | 124 | # CONFIG_KPROBES is not set |
124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -130,7 +131,6 @@ CONFIG_USE_GENERIC_SMP_HELPERS=y | |||
130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
131 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
132 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
133 | # CONFIG_TINY_SHMEM is not set | ||
134 | CONFIG_BASE_SMALL=0 | 134 | CONFIG_BASE_SMALL=0 |
135 | CONFIG_MODULES=y | 135 | CONFIG_MODULES=y |
136 | # CONFIG_MODULE_FORCE_LOAD is not set | 136 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -138,12 +138,10 @@ CONFIG_MODULE_UNLOAD=y | |||
138 | CONFIG_MODULE_FORCE_UNLOAD=y | 138 | CONFIG_MODULE_FORCE_UNLOAD=y |
139 | CONFIG_MODVERSIONS=y | 139 | CONFIG_MODVERSIONS=y |
140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 140 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
141 | CONFIG_KMOD=y | ||
142 | CONFIG_STOP_MACHINE=y | 141 | CONFIG_STOP_MACHINE=y |
143 | CONFIG_BLOCK=y | 142 | CONFIG_BLOCK=y |
144 | CONFIG_LBD=y | 143 | CONFIG_LBD=y |
145 | # CONFIG_BLK_DEV_IO_TRACE is not set | 144 | # CONFIG_BLK_DEV_IO_TRACE is not set |
146 | # CONFIG_LSF is not set | ||
147 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
148 | # CONFIG_BLK_DEV_INTEGRITY is not set | 146 | # CONFIG_BLK_DEV_INTEGRITY is not set |
149 | 147 | ||
@@ -160,6 +158,10 @@ CONFIG_DEFAULT_CFQ=y | |||
160 | # CONFIG_DEFAULT_NOOP is not set | 158 | # CONFIG_DEFAULT_NOOP is not set |
161 | CONFIG_DEFAULT_IOSCHED="cfq" | 159 | CONFIG_DEFAULT_IOSCHED="cfq" |
162 | CONFIG_CLASSIC_RCU=y | 160 | CONFIG_CLASSIC_RCU=y |
161 | # CONFIG_TREE_RCU is not set | ||
162 | # CONFIG_PREEMPT_RCU is not set | ||
163 | # CONFIG_TREE_RCU_TRACE is not set | ||
164 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
163 | # CONFIG_FREEZER is not set | 165 | # CONFIG_FREEZER is not set |
164 | 166 | ||
165 | # | 167 | # |
@@ -199,6 +201,7 @@ CONFIG_PPC_I8259=y | |||
199 | # CONFIG_QUICC_ENGINE is not set | 201 | # CONFIG_QUICC_ENGINE is not set |
200 | CONFIG_FSL_ULI1575=y | 202 | CONFIG_FSL_ULI1575=y |
201 | # CONFIG_MPC8xxx_GPIO is not set | 203 | # CONFIG_MPC8xxx_GPIO is not set |
204 | # CONFIG_SIMPLE_GPIO is not set | ||
202 | 205 | ||
203 | # | 206 | # |
204 | # Kernel options | 207 | # Kernel options |
@@ -226,6 +229,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
226 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 229 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 230 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
228 | # CONFIG_KEXEC is not set | 231 | # CONFIG_KEXEC is not set |
232 | # CONFIG_CRASH_DUMP is not set | ||
229 | # CONFIG_IRQ_ALL_CPUS is not set | 233 | # CONFIG_IRQ_ALL_CPUS is not set |
230 | CONFIG_ARCH_FLATMEM_ENABLE=y | 234 | CONFIG_ARCH_FLATMEM_ENABLE=y |
231 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 235 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -238,12 +242,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
238 | CONFIG_PAGEFLAGS_EXTENDED=y | 242 | CONFIG_PAGEFLAGS_EXTENDED=y |
239 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 243 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
240 | CONFIG_MIGRATION=y | 244 | CONFIG_MIGRATION=y |
241 | # CONFIG_RESOURCES_64BIT is not set | ||
242 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 245 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
243 | CONFIG_ZONE_DMA_FLAG=1 | 246 | CONFIG_ZONE_DMA_FLAG=1 |
244 | CONFIG_BOUNCE=y | 247 | CONFIG_BOUNCE=y |
245 | CONFIG_VIRT_TO_BUS=y | 248 | CONFIG_VIRT_TO_BUS=y |
246 | CONFIG_UNEVICTABLE_LRU=y | 249 | CONFIG_UNEVICTABLE_LRU=y |
250 | CONFIG_PPC_4K_PAGES=y | ||
251 | # CONFIG_PPC_16K_PAGES is not set | ||
252 | # CONFIG_PPC_64K_PAGES is not set | ||
247 | CONFIG_FORCE_MAX_ZONEORDER=11 | 253 | CONFIG_FORCE_MAX_ZONEORDER=11 |
248 | CONFIG_PROC_DEVICETREE=y | 254 | CONFIG_PROC_DEVICETREE=y |
249 | # CONFIG_CMDLINE_BOOL is not set | 255 | # CONFIG_CMDLINE_BOOL is not set |
@@ -269,6 +275,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
269 | # CONFIG_PCI_MSI is not set | 275 | # CONFIG_PCI_MSI is not set |
270 | # CONFIG_PCI_LEGACY is not set | 276 | # CONFIG_PCI_LEGACY is not set |
271 | # CONFIG_PCI_DEBUG is not set | 277 | # CONFIG_PCI_DEBUG is not set |
278 | # CONFIG_PCI_STUB is not set | ||
272 | # CONFIG_PCCARD is not set | 279 | # CONFIG_PCCARD is not set |
273 | # CONFIG_HOTPLUG_PCI is not set | 280 | # CONFIG_HOTPLUG_PCI is not set |
274 | CONFIG_HAS_RAPIDIO=y | 281 | CONFIG_HAS_RAPIDIO=y |
@@ -292,6 +299,7 @@ CONFIG_NET=y | |||
292 | # | 299 | # |
293 | # Networking options | 300 | # Networking options |
294 | # | 301 | # |
302 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
295 | CONFIG_PACKET=y | 303 | CONFIG_PACKET=y |
296 | # CONFIG_PACKET_MMAP is not set | 304 | # CONFIG_PACKET_MMAP is not set |
297 | CONFIG_UNIX=y | 305 | CONFIG_UNIX=y |
@@ -380,6 +388,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
380 | # CONFIG_ECONET is not set | 388 | # CONFIG_ECONET is not set |
381 | # CONFIG_WAN_ROUTER is not set | 389 | # CONFIG_WAN_ROUTER is not set |
382 | # CONFIG_NET_SCHED is not set | 390 | # CONFIG_NET_SCHED is not set |
391 | # CONFIG_DCB is not set | ||
383 | 392 | ||
384 | # | 393 | # |
385 | # Network testing | 394 | # Network testing |
@@ -396,8 +405,9 @@ CONFIG_WIRELESS=y | |||
396 | # CONFIG_CFG80211 is not set | 405 | # CONFIG_CFG80211 is not set |
397 | CONFIG_WIRELESS_OLD_REGULATORY=y | 406 | CONFIG_WIRELESS_OLD_REGULATORY=y |
398 | # CONFIG_WIRELESS_EXT is not set | 407 | # CONFIG_WIRELESS_EXT is not set |
408 | # CONFIG_LIB80211 is not set | ||
399 | # CONFIG_MAC80211 is not set | 409 | # CONFIG_MAC80211 is not set |
400 | # CONFIG_IEEE80211 is not set | 410 | # CONFIG_WIMAX is not set |
401 | # CONFIG_RFKILL is not set | 411 | # CONFIG_RFKILL is not set |
402 | # CONFIG_NET_9P is not set | 412 | # CONFIG_NET_9P is not set |
403 | 413 | ||
@@ -420,6 +430,7 @@ CONFIG_EXTRA_FIRMWARE="" | |||
420 | # CONFIG_CONNECTOR is not set | 430 | # CONFIG_CONNECTOR is not set |
421 | # CONFIG_MTD is not set | 431 | # CONFIG_MTD is not set |
422 | CONFIG_OF_DEVICE=y | 432 | CONFIG_OF_DEVICE=y |
433 | CONFIG_OF_GPIO=y | ||
423 | CONFIG_OF_I2C=y | 434 | CONFIG_OF_I2C=y |
424 | # CONFIG_PARPORT is not set | 435 | # CONFIG_PARPORT is not set |
425 | CONFIG_BLK_DEV=y | 436 | CONFIG_BLK_DEV=y |
@@ -446,8 +457,10 @@ CONFIG_MISC_DEVICES=y | |||
446 | # CONFIG_EEPROM_93CX6 is not set | 457 | # CONFIG_EEPROM_93CX6 is not set |
447 | # CONFIG_SGI_IOC4 is not set | 458 | # CONFIG_SGI_IOC4 is not set |
448 | # CONFIG_TIFM_CORE is not set | 459 | # CONFIG_TIFM_CORE is not set |
460 | # CONFIG_ICS932S401 is not set | ||
449 | # CONFIG_ENCLOSURE_SERVICES is not set | 461 | # CONFIG_ENCLOSURE_SERVICES is not set |
450 | # CONFIG_HP_ILO is not set | 462 | # CONFIG_HP_ILO is not set |
463 | # CONFIG_C2PORT is not set | ||
451 | CONFIG_HAVE_IDE=y | 464 | CONFIG_HAVE_IDE=y |
452 | # CONFIG_IDE is not set | 465 | # CONFIG_IDE is not set |
453 | 466 | ||
@@ -491,6 +504,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
491 | # CONFIG_SCSI_SRP_ATTRS is not set | 504 | # CONFIG_SCSI_SRP_ATTRS is not set |
492 | CONFIG_SCSI_LOWLEVEL=y | 505 | CONFIG_SCSI_LOWLEVEL=y |
493 | # CONFIG_ISCSI_TCP is not set | 506 | # CONFIG_ISCSI_TCP is not set |
507 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
494 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 508 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
495 | # CONFIG_SCSI_3W_9XXX is not set | 509 | # CONFIG_SCSI_3W_9XXX is not set |
496 | # CONFIG_SCSI_ACARD is not set | 510 | # CONFIG_SCSI_ACARD is not set |
@@ -507,6 +521,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
507 | # CONFIG_MEGARAID_SAS is not set | 521 | # CONFIG_MEGARAID_SAS is not set |
508 | # CONFIG_SCSI_HPTIOP is not set | 522 | # CONFIG_SCSI_HPTIOP is not set |
509 | # CONFIG_SCSI_BUSLOGIC is not set | 523 | # CONFIG_SCSI_BUSLOGIC is not set |
524 | # CONFIG_LIBFC is not set | ||
525 | # CONFIG_FCOE is not set | ||
510 | # CONFIG_SCSI_DMX3191D is not set | 526 | # CONFIG_SCSI_DMX3191D is not set |
511 | # CONFIG_SCSI_EATA is not set | 527 | # CONFIG_SCSI_EATA is not set |
512 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 528 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -626,6 +642,9 @@ CONFIG_VITESSE_PHY=y | |||
626 | # CONFIG_BROADCOM_PHY is not set | 642 | # CONFIG_BROADCOM_PHY is not set |
627 | # CONFIG_ICPLUS_PHY is not set | 643 | # CONFIG_ICPLUS_PHY is not set |
628 | # CONFIG_REALTEK_PHY is not set | 644 | # CONFIG_REALTEK_PHY is not set |
645 | # CONFIG_NATIONAL_PHY is not set | ||
646 | # CONFIG_STE10XP is not set | ||
647 | # CONFIG_LSI_ET1011C_PHY is not set | ||
629 | # CONFIG_FIXED_PHY is not set | 648 | # CONFIG_FIXED_PHY is not set |
630 | # CONFIG_MDIO_BITBANG is not set | 649 | # CONFIG_MDIO_BITBANG is not set |
631 | CONFIG_NET_ETHERNET=y | 650 | CONFIG_NET_ETHERNET=y |
@@ -671,6 +690,7 @@ CONFIG_GIANFAR=y | |||
671 | # CONFIG_JME is not set | 690 | # CONFIG_JME is not set |
672 | CONFIG_NETDEV_10000=y | 691 | CONFIG_NETDEV_10000=y |
673 | # CONFIG_CHELSIO_T1 is not set | 692 | # CONFIG_CHELSIO_T1 is not set |
693 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
674 | # CONFIG_CHELSIO_T3 is not set | 694 | # CONFIG_CHELSIO_T3 is not set |
675 | # CONFIG_ENIC is not set | 695 | # CONFIG_ENIC is not set |
676 | # CONFIG_IXGBE is not set | 696 | # CONFIG_IXGBE is not set |
@@ -695,6 +715,10 @@ CONFIG_NETDEV_10000=y | |||
695 | # CONFIG_IWLWIFI_LEDS is not set | 715 | # CONFIG_IWLWIFI_LEDS is not set |
696 | 716 | ||
697 | # | 717 | # |
718 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
719 | # | ||
720 | |||
721 | # | ||
698 | # USB Network Adapters | 722 | # USB Network Adapters |
699 | # | 723 | # |
700 | # CONFIG_USB_CATC is not set | 724 | # CONFIG_USB_CATC is not set |
@@ -786,8 +810,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
786 | # CONFIG_SERIAL_JSM is not set | 810 | # CONFIG_SERIAL_JSM is not set |
787 | # CONFIG_SERIAL_OF_PLATFORM is not set | 811 | # CONFIG_SERIAL_OF_PLATFORM is not set |
788 | CONFIG_UNIX98_PTYS=y | 812 | CONFIG_UNIX98_PTYS=y |
813 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
789 | CONFIG_LEGACY_PTYS=y | 814 | CONFIG_LEGACY_PTYS=y |
790 | CONFIG_LEGACY_PTY_COUNT=256 | 815 | CONFIG_LEGACY_PTY_COUNT=256 |
816 | # CONFIG_HVC_UDBG is not set | ||
791 | # CONFIG_IPMI_HANDLER is not set | 817 | # CONFIG_IPMI_HANDLER is not set |
792 | # CONFIG_HW_RANDOM is not set | 818 | # CONFIG_HW_RANDOM is not set |
793 | CONFIG_NVRAM=y | 819 | CONFIG_NVRAM=y |
@@ -826,6 +852,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
826 | # | 852 | # |
827 | # I2C system bus drivers (mostly embedded / system-on-chip) | 853 | # I2C system bus drivers (mostly embedded / system-on-chip) |
828 | # | 854 | # |
855 | # CONFIG_I2C_GPIO is not set | ||
829 | CONFIG_I2C_MPC=y | 856 | CONFIG_I2C_MPC=y |
830 | # CONFIG_I2C_OCORES is not set | 857 | # CONFIG_I2C_OCORES is not set |
831 | # CONFIG_I2C_SIMTEC is not set | 858 | # CONFIG_I2C_SIMTEC is not set |
@@ -866,18 +893,42 @@ CONFIG_EEPROM_LEGACY=y | |||
866 | # CONFIG_I2C_DEBUG_CHIP is not set | 893 | # CONFIG_I2C_DEBUG_CHIP is not set |
867 | # CONFIG_SPI is not set | 894 | # CONFIG_SPI is not set |
868 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 895 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
869 | # CONFIG_GPIOLIB is not set | 896 | CONFIG_ARCH_REQUIRE_GPIOLIB=y |
897 | CONFIG_GPIOLIB=y | ||
898 | # CONFIG_DEBUG_GPIO is not set | ||
899 | # CONFIG_GPIO_SYSFS is not set | ||
900 | |||
901 | # | ||
902 | # Memory mapped GPIO expanders: | ||
903 | # | ||
904 | # CONFIG_GPIO_XILINX is not set | ||
905 | |||
906 | # | ||
907 | # I2C GPIO expanders: | ||
908 | # | ||
909 | # CONFIG_GPIO_MAX732X is not set | ||
910 | # CONFIG_GPIO_PCA953X is not set | ||
911 | # CONFIG_GPIO_PCF857X is not set | ||
912 | |||
913 | # | ||
914 | # PCI GPIO expanders: | ||
915 | # | ||
916 | # CONFIG_GPIO_BT8XX is not set | ||
917 | |||
918 | # | ||
919 | # SPI GPIO expanders: | ||
920 | # | ||
870 | # CONFIG_W1 is not set | 921 | # CONFIG_W1 is not set |
871 | # CONFIG_POWER_SUPPLY is not set | 922 | # CONFIG_POWER_SUPPLY is not set |
872 | # CONFIG_HWMON is not set | 923 | # CONFIG_HWMON is not set |
873 | # CONFIG_THERMAL is not set | 924 | # CONFIG_THERMAL is not set |
874 | # CONFIG_THERMAL_HWMON is not set | 925 | # CONFIG_THERMAL_HWMON is not set |
875 | # CONFIG_WATCHDOG is not set | 926 | # CONFIG_WATCHDOG is not set |
927 | CONFIG_SSB_POSSIBLE=y | ||
876 | 928 | ||
877 | # | 929 | # |
878 | # Sonics Silicon Backplane | 930 | # Sonics Silicon Backplane |
879 | # | 931 | # |
880 | CONFIG_SSB_POSSIBLE=y | ||
881 | # CONFIG_SSB is not set | 932 | # CONFIG_SSB is not set |
882 | 933 | ||
883 | # | 934 | # |
@@ -886,18 +937,15 @@ CONFIG_SSB_POSSIBLE=y | |||
886 | # CONFIG_MFD_CORE is not set | 937 | # CONFIG_MFD_CORE is not set |
887 | # CONFIG_MFD_SM501 is not set | 938 | # CONFIG_MFD_SM501 is not set |
888 | # CONFIG_HTC_PASIC3 is not set | 939 | # CONFIG_HTC_PASIC3 is not set |
940 | # CONFIG_UCB1400_CORE is not set | ||
941 | # CONFIG_TPS65010 is not set | ||
942 | # CONFIG_TWL4030_CORE is not set | ||
889 | # CONFIG_MFD_TMIO is not set | 943 | # CONFIG_MFD_TMIO is not set |
890 | # CONFIG_PMIC_DA903X is not set | 944 | # CONFIG_PMIC_DA903X is not set |
891 | # CONFIG_MFD_WM8400 is not set | 945 | # CONFIG_MFD_WM8400 is not set |
892 | # CONFIG_MFD_WM8350_I2C is not set | 946 | # CONFIG_MFD_WM8350_I2C is not set |
893 | 947 | # CONFIG_MFD_PCF50633 is not set | |
894 | # | ||
895 | # Voltage and Current regulators | ||
896 | # | ||
897 | # CONFIG_REGULATOR is not set | 948 | # CONFIG_REGULATOR is not set |
898 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
899 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
900 | # CONFIG_REGULATOR_BQ24022 is not set | ||
901 | 949 | ||
902 | # | 950 | # |
903 | # Multimedia devices | 951 | # Multimedia devices |
@@ -924,6 +972,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
924 | CONFIG_MEDIA_TUNER_MT20XX=m | 972 | CONFIG_MEDIA_TUNER_MT20XX=m |
925 | CONFIG_MEDIA_TUNER_XC2028=m | 973 | CONFIG_MEDIA_TUNER_XC2028=m |
926 | CONFIG_MEDIA_TUNER_XC5000=m | 974 | CONFIG_MEDIA_TUNER_XC5000=m |
975 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
927 | CONFIG_DVB_CAPTURE_DRIVERS=y | 976 | CONFIG_DVB_CAPTURE_DRIVERS=y |
928 | 977 | ||
929 | # | 978 | # |
@@ -969,6 +1018,12 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
969 | # CONFIG_DVB_FE_CUSTOMISE is not set | 1018 | # CONFIG_DVB_FE_CUSTOMISE is not set |
970 | 1019 | ||
971 | # | 1020 | # |
1021 | # Multistandard (satellite) frontends | ||
1022 | # | ||
1023 | # CONFIG_DVB_STB0899 is not set | ||
1024 | # CONFIG_DVB_STB6100 is not set | ||
1025 | |||
1026 | # | ||
972 | # DVB-S (satellite) frontends | 1027 | # DVB-S (satellite) frontends |
973 | # | 1028 | # |
974 | # CONFIG_DVB_CX24110 is not set | 1029 | # CONFIG_DVB_CX24110 is not set |
@@ -980,8 +1035,10 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
980 | # CONFIG_DVB_STV0299 is not set | 1035 | # CONFIG_DVB_STV0299 is not set |
981 | # CONFIG_DVB_TDA8083 is not set | 1036 | # CONFIG_DVB_TDA8083 is not set |
982 | # CONFIG_DVB_TDA10086 is not set | 1037 | # CONFIG_DVB_TDA10086 is not set |
1038 | # CONFIG_DVB_TDA8261 is not set | ||
983 | # CONFIG_DVB_VES1X93 is not set | 1039 | # CONFIG_DVB_VES1X93 is not set |
984 | # CONFIG_DVB_TUNER_ITD1000 is not set | 1040 | # CONFIG_DVB_TUNER_ITD1000 is not set |
1041 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
985 | # CONFIG_DVB_TDA826X is not set | 1042 | # CONFIG_DVB_TDA826X is not set |
986 | # CONFIG_DVB_TUA6100 is not set | 1043 | # CONFIG_DVB_TUA6100 is not set |
987 | # CONFIG_DVB_CX24116 is not set | 1044 | # CONFIG_DVB_CX24116 is not set |
@@ -1022,11 +1079,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1022 | # CONFIG_DVB_OR51132 is not set | 1079 | # CONFIG_DVB_OR51132 is not set |
1023 | # CONFIG_DVB_BCM3510 is not set | 1080 | # CONFIG_DVB_BCM3510 is not set |
1024 | # CONFIG_DVB_LGDT330X is not set | 1081 | # CONFIG_DVB_LGDT330X is not set |
1082 | # CONFIG_DVB_LGDT3304 is not set | ||
1025 | # CONFIG_DVB_S5H1409 is not set | 1083 | # CONFIG_DVB_S5H1409 is not set |
1026 | # CONFIG_DVB_AU8522 is not set | 1084 | # CONFIG_DVB_AU8522 is not set |
1027 | # CONFIG_DVB_S5H1411 is not set | 1085 | # CONFIG_DVB_S5H1411 is not set |
1028 | 1086 | ||
1029 | # | 1087 | # |
1088 | # ISDB-T (terrestrial) frontends | ||
1089 | # | ||
1090 | # CONFIG_DVB_S921 is not set | ||
1091 | |||
1092 | # | ||
1030 | # Digital terrestrial only tuners/PLL | 1093 | # Digital terrestrial only tuners/PLL |
1031 | # | 1094 | # |
1032 | # CONFIG_DVB_PLL is not set | 1095 | # CONFIG_DVB_PLL is not set |
@@ -1079,6 +1142,7 @@ CONFIG_SND_OSSEMUL=y | |||
1079 | CONFIG_SND_MIXER_OSS=y | 1142 | CONFIG_SND_MIXER_OSS=y |
1080 | CONFIG_SND_PCM_OSS=y | 1143 | CONFIG_SND_PCM_OSS=y |
1081 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1144 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1145 | # CONFIG_SND_HRTIMER is not set | ||
1082 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1146 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1083 | # CONFIG_SND_SUPPORT_OLD_API is not set | 1147 | # CONFIG_SND_SUPPORT_OLD_API is not set |
1084 | CONFIG_SND_VERBOSE_PROCFS=y | 1148 | CONFIG_SND_VERBOSE_PROCFS=y |
@@ -1181,11 +1245,9 @@ CONFIG_HID_COMPAT=y | |||
1181 | CONFIG_HID_A4TECH=y | 1245 | CONFIG_HID_A4TECH=y |
1182 | CONFIG_HID_APPLE=y | 1246 | CONFIG_HID_APPLE=y |
1183 | CONFIG_HID_BELKIN=y | 1247 | CONFIG_HID_BELKIN=y |
1184 | CONFIG_HID_BRIGHT=y | ||
1185 | CONFIG_HID_CHERRY=y | 1248 | CONFIG_HID_CHERRY=y |
1186 | CONFIG_HID_CHICONY=y | 1249 | CONFIG_HID_CHICONY=y |
1187 | CONFIG_HID_CYPRESS=y | 1250 | CONFIG_HID_CYPRESS=y |
1188 | CONFIG_HID_DELL=y | ||
1189 | CONFIG_HID_EZKEY=y | 1251 | CONFIG_HID_EZKEY=y |
1190 | CONFIG_HID_GYRATION=y | 1252 | CONFIG_HID_GYRATION=y |
1191 | CONFIG_HID_LOGITECH=y | 1253 | CONFIG_HID_LOGITECH=y |
@@ -1193,12 +1255,15 @@ CONFIG_HID_LOGITECH=y | |||
1193 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1255 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1194 | CONFIG_HID_MICROSOFT=y | 1256 | CONFIG_HID_MICROSOFT=y |
1195 | CONFIG_HID_MONTEREY=y | 1257 | CONFIG_HID_MONTEREY=y |
1258 | # CONFIG_HID_NTRIG is not set | ||
1196 | CONFIG_HID_PANTHERLORD=y | 1259 | CONFIG_HID_PANTHERLORD=y |
1197 | # CONFIG_PANTHERLORD_FF is not set | 1260 | # CONFIG_PANTHERLORD_FF is not set |
1198 | CONFIG_HID_PETALYNX=y | 1261 | CONFIG_HID_PETALYNX=y |
1199 | CONFIG_HID_SAMSUNG=y | 1262 | CONFIG_HID_SAMSUNG=y |
1200 | CONFIG_HID_SONY=y | 1263 | CONFIG_HID_SONY=y |
1201 | CONFIG_HID_SUNPLUS=y | 1264 | CONFIG_HID_SUNPLUS=y |
1265 | # CONFIG_GREENASIA_FF is not set | ||
1266 | # CONFIG_HID_TOPSEED is not set | ||
1202 | CONFIG_THRUSTMASTER_FF=m | 1267 | CONFIG_THRUSTMASTER_FF=m |
1203 | CONFIG_ZEROPLUS_FF=m | 1268 | CONFIG_ZEROPLUS_FF=m |
1204 | CONFIG_USB_SUPPORT=y | 1269 | CONFIG_USB_SUPPORT=y |
@@ -1231,6 +1296,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1231 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1296 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1232 | # CONFIG_USB_EHCI_FSL is not set | 1297 | # CONFIG_USB_EHCI_FSL is not set |
1233 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1298 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1299 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1234 | # CONFIG_USB_ISP116X_HCD is not set | 1300 | # CONFIG_USB_ISP116X_HCD is not set |
1235 | # CONFIG_USB_ISP1760_HCD is not set | 1301 | # CONFIG_USB_ISP1760_HCD is not set |
1236 | CONFIG_USB_OHCI_HCD=y | 1302 | CONFIG_USB_OHCI_HCD=y |
@@ -1256,18 +1322,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1256 | # CONFIG_USB_TMC is not set | 1322 | # CONFIG_USB_TMC is not set |
1257 | 1323 | ||
1258 | # | 1324 | # |
1259 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1325 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1260 | # | 1326 | # |
1261 | 1327 | ||
1262 | # | 1328 | # |
1263 | # may also be needed; see USB_STORAGE Help for more information | 1329 | # see USB_STORAGE Help for more information |
1264 | # | 1330 | # |
1265 | CONFIG_USB_STORAGE=y | 1331 | CONFIG_USB_STORAGE=y |
1266 | # CONFIG_USB_STORAGE_DEBUG is not set | 1332 | # CONFIG_USB_STORAGE_DEBUG is not set |
1267 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1333 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1268 | # CONFIG_USB_STORAGE_FREECOM is not set | 1334 | # CONFIG_USB_STORAGE_FREECOM is not set |
1269 | # CONFIG_USB_STORAGE_ISD200 is not set | 1335 | # CONFIG_USB_STORAGE_ISD200 is not set |
1270 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1271 | # CONFIG_USB_STORAGE_USBAT is not set | 1336 | # CONFIG_USB_STORAGE_USBAT is not set |
1272 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1337 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1273 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1338 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1315,6 +1380,11 @@ CONFIG_USB_STORAGE=y | |||
1315 | # CONFIG_USB_ISIGHTFW is not set | 1380 | # CONFIG_USB_ISIGHTFW is not set |
1316 | # CONFIG_USB_VST is not set | 1381 | # CONFIG_USB_VST is not set |
1317 | # CONFIG_USB_GADGET is not set | 1382 | # CONFIG_USB_GADGET is not set |
1383 | |||
1384 | # | ||
1385 | # OTG and related infrastructure | ||
1386 | # | ||
1387 | # CONFIG_USB_GPIO_VBUS is not set | ||
1318 | # CONFIG_UWB is not set | 1388 | # CONFIG_UWB is not set |
1319 | # CONFIG_MMC is not set | 1389 | # CONFIG_MMC is not set |
1320 | # CONFIG_MEMSTICK is not set | 1390 | # CONFIG_MEMSTICK is not set |
@@ -1352,6 +1422,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1352 | # CONFIG_RTC_DRV_M41T80 is not set | 1422 | # CONFIG_RTC_DRV_M41T80 is not set |
1353 | # CONFIG_RTC_DRV_S35390A is not set | 1423 | # CONFIG_RTC_DRV_S35390A is not set |
1354 | # CONFIG_RTC_DRV_FM3130 is not set | 1424 | # CONFIG_RTC_DRV_FM3130 is not set |
1425 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1355 | 1426 | ||
1356 | # | 1427 | # |
1357 | # SPI RTC drivers | 1428 | # SPI RTC drivers |
@@ -1398,7 +1469,9 @@ CONFIG_FS_MBCACHE=y | |||
1398 | # CONFIG_FS_POSIX_ACL is not set | 1469 | # CONFIG_FS_POSIX_ACL is not set |
1399 | CONFIG_FILE_LOCKING=y | 1470 | CONFIG_FILE_LOCKING=y |
1400 | # CONFIG_XFS_FS is not set | 1471 | # CONFIG_XFS_FS is not set |
1472 | # CONFIG_GFS2_FS is not set | ||
1401 | # CONFIG_OCFS2_FS is not set | 1473 | # CONFIG_OCFS2_FS is not set |
1474 | # CONFIG_BTRFS_FS is not set | ||
1402 | CONFIG_DNOTIFY=y | 1475 | CONFIG_DNOTIFY=y |
1403 | CONFIG_INOTIFY=y | 1476 | CONFIG_INOTIFY=y |
1404 | CONFIG_INOTIFY_USER=y | 1477 | CONFIG_INOTIFY_USER=y |
@@ -1440,10 +1513,7 @@ CONFIG_TMPFS=y | |||
1440 | # CONFIG_TMPFS_POSIX_ACL is not set | 1513 | # CONFIG_TMPFS_POSIX_ACL is not set |
1441 | # CONFIG_HUGETLB_PAGE is not set | 1514 | # CONFIG_HUGETLB_PAGE is not set |
1442 | # CONFIG_CONFIGFS_FS is not set | 1515 | # CONFIG_CONFIGFS_FS is not set |
1443 | 1516 | CONFIG_MISC_FILESYSTEMS=y | |
1444 | # | ||
1445 | # Miscellaneous filesystems | ||
1446 | # | ||
1447 | CONFIG_ADFS_FS=m | 1517 | CONFIG_ADFS_FS=m |
1448 | # CONFIG_ADFS_FS_RW is not set | 1518 | # CONFIG_ADFS_FS_RW is not set |
1449 | CONFIG_AFFS_FS=m | 1519 | CONFIG_AFFS_FS=m |
@@ -1454,6 +1524,7 @@ CONFIG_BEFS_FS=m | |||
1454 | CONFIG_BFS_FS=m | 1524 | CONFIG_BFS_FS=m |
1455 | CONFIG_EFS_FS=m | 1525 | CONFIG_EFS_FS=m |
1456 | CONFIG_CRAMFS=y | 1526 | CONFIG_CRAMFS=y |
1527 | # CONFIG_SQUASHFS is not set | ||
1457 | CONFIG_VXFS_FS=m | 1528 | CONFIG_VXFS_FS=m |
1458 | # CONFIG_MINIX_FS is not set | 1529 | # CONFIG_MINIX_FS is not set |
1459 | # CONFIG_OMFS_FS is not set | 1530 | # CONFIG_OMFS_FS is not set |
@@ -1555,6 +1626,7 @@ CONFIG_NLS_UTF8=m | |||
1555 | # Library routines | 1626 | # Library routines |
1556 | # | 1627 | # |
1557 | CONFIG_BITREVERSE=y | 1628 | CONFIG_BITREVERSE=y |
1629 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1558 | # CONFIG_CRC_CCITT is not set | 1630 | # CONFIG_CRC_CCITT is not set |
1559 | # CONFIG_CRC16 is not set | 1631 | # CONFIG_CRC16 is not set |
1560 | CONFIG_CRC_T10DIF=y | 1632 | CONFIG_CRC_T10DIF=y |
@@ -1606,6 +1678,7 @@ CONFIG_DEBUG_INFO=y | |||
1606 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1678 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1607 | # CONFIG_DEBUG_LIST is not set | 1679 | # CONFIG_DEBUG_LIST is not set |
1608 | # CONFIG_DEBUG_SG is not set | 1680 | # CONFIG_DEBUG_SG is not set |
1681 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1609 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1682 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1610 | # CONFIG_RCU_TORTURE_TEST is not set | 1683 | # CONFIG_RCU_TORTURE_TEST is not set |
1611 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1684 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1615,6 +1688,8 @@ CONFIG_DEBUG_INFO=y | |||
1615 | # CONFIG_LATENCYTOP is not set | 1688 | # CONFIG_LATENCYTOP is not set |
1616 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1689 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1617 | CONFIG_HAVE_FUNCTION_TRACER=y | 1690 | CONFIG_HAVE_FUNCTION_TRACER=y |
1691 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1692 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1618 | 1693 | ||
1619 | # | 1694 | # |
1620 | # Tracers | 1695 | # Tracers |
@@ -1623,11 +1698,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1623 | # CONFIG_SCHED_TRACER is not set | 1698 | # CONFIG_SCHED_TRACER is not set |
1624 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1699 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1625 | # CONFIG_BOOT_TRACER is not set | 1700 | # CONFIG_BOOT_TRACER is not set |
1701 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1626 | # CONFIG_STACK_TRACER is not set | 1702 | # CONFIG_STACK_TRACER is not set |
1627 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1703 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1628 | # CONFIG_SAMPLES is not set | 1704 | # CONFIG_SAMPLES is not set |
1629 | CONFIG_HAVE_ARCH_KGDB=y | 1705 | CONFIG_HAVE_ARCH_KGDB=y |
1630 | # CONFIG_KGDB is not set | 1706 | # CONFIG_KGDB is not set |
1707 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1631 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1708 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1632 | # CONFIG_DEBUG_STACK_USAGE is not set | 1709 | # CONFIG_DEBUG_STACK_USAGE is not set |
1633 | # CONFIG_DEBUG_PAGEALLOC is not set | 1710 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1654,11 +1731,15 @@ CONFIG_CRYPTO=y | |||
1654 | # | 1731 | # |
1655 | # CONFIG_CRYPTO_FIPS is not set | 1732 | # CONFIG_CRYPTO_FIPS is not set |
1656 | CONFIG_CRYPTO_ALGAPI=y | 1733 | CONFIG_CRYPTO_ALGAPI=y |
1657 | CONFIG_CRYPTO_AEAD=y | 1734 | CONFIG_CRYPTO_ALGAPI2=y |
1735 | CONFIG_CRYPTO_AEAD2=y | ||
1658 | CONFIG_CRYPTO_BLKCIPHER=y | 1736 | CONFIG_CRYPTO_BLKCIPHER=y |
1737 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1659 | CONFIG_CRYPTO_HASH=y | 1738 | CONFIG_CRYPTO_HASH=y |
1660 | CONFIG_CRYPTO_RNG=y | 1739 | CONFIG_CRYPTO_HASH2=y |
1740 | CONFIG_CRYPTO_RNG2=y | ||
1661 | CONFIG_CRYPTO_MANAGER=y | 1741 | CONFIG_CRYPTO_MANAGER=y |
1742 | CONFIG_CRYPTO_MANAGER2=y | ||
1662 | # CONFIG_CRYPTO_GF128MUL is not set | 1743 | # CONFIG_CRYPTO_GF128MUL is not set |
1663 | # CONFIG_CRYPTO_NULL is not set | 1744 | # CONFIG_CRYPTO_NULL is not set |
1664 | # CONFIG_CRYPTO_CRYPTD is not set | 1745 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1692,7 +1773,7 @@ CONFIG_CRYPTO_HMAC=y | |||
1692 | # | 1773 | # |
1693 | # Digest | 1774 | # Digest |
1694 | # | 1775 | # |
1695 | # CONFIG_CRYPTO_CRC32C is not set | 1776 | CONFIG_CRYPTO_CRC32C=m |
1696 | # CONFIG_CRYPTO_MD4 is not set | 1777 | # CONFIG_CRYPTO_MD4 is not set |
1697 | CONFIG_CRYPTO_MD5=y | 1778 | CONFIG_CRYPTO_MD5=y |
1698 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1779 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
diff --git a/arch/powerpc/configs/mpc885_ads_defconfig b/arch/powerpc/configs/mpc885_ads_defconfig index a4283b6a43d2..4b76321c0ec4 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:46 2008 | 4 | # Mon Jan 26 15:35:41 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_PPC_8xx=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_8xx=y | 17 | CONFIG_8xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -40,7 +41,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
40 | CONFIG_PPC=y | 41 | CONFIG_PPC=y |
41 | CONFIG_EARLY_PRINTK=y | 42 | CONFIG_EARLY_PRINTK=y |
42 | CONFIG_GENERIC_NVRAM=y | 43 | CONFIG_GENERIC_NVRAM=y |
43 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 44 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
44 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
45 | CONFIG_PPC_OF=y | 46 | CONFIG_PPC_OF=y |
46 | CONFIG_OF=y | 47 | CONFIG_OF=y |
@@ -70,12 +71,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
70 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
71 | # CONFIG_IKCONFIG is not set | 72 | # CONFIG_IKCONFIG is not set |
72 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
73 | # CONFIG_CGROUPS is not set | ||
74 | CONFIG_GROUP_SCHED=y | 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 | 76 | # CONFIG_RT_GROUP_SCHED is not set |
77 | CONFIG_USER_SCHED=y | 77 | CONFIG_USER_SCHED=y |
78 | # CONFIG_CGROUP_SCHED is not set | 78 | # CONFIG_CGROUP_SCHED is not set |
79 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
80 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
81 | # CONFIG_RELAY is not set | 82 | # CONFIG_RELAY is not set |
@@ -108,7 +109,6 @@ CONFIG_SLUB_DEBUG=y | |||
108 | CONFIG_SLUB=y | 109 | CONFIG_SLUB=y |
109 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
110 | # CONFIG_PROFILING is not set | 111 | # CONFIG_PROFILING is not set |
111 | # CONFIG_MARKERS is not set | ||
112 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
114 | CONFIG_HAVE_IOREMAP_PROT=y | 114 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -118,13 +118,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
118 | CONFIG_HAVE_CLK=y | 118 | CONFIG_HAVE_CLK=y |
119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
120 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
121 | # CONFIG_TINY_SHMEM is not set | ||
122 | CONFIG_BASE_SMALL=1 | 121 | CONFIG_BASE_SMALL=1 |
123 | # CONFIG_MODULES is not set | 122 | # CONFIG_MODULES is not set |
124 | CONFIG_BLOCK=y | 123 | CONFIG_BLOCK=y |
125 | # CONFIG_LBD is not set | 124 | # CONFIG_LBD is not set |
126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 125 | # CONFIG_BLK_DEV_IO_TRACE is not set |
127 | # CONFIG_LSF is not set | ||
128 | # CONFIG_BLK_DEV_BSG is not set | 126 | # CONFIG_BLK_DEV_BSG is not set |
129 | # CONFIG_BLK_DEV_INTEGRITY is not set | 127 | # CONFIG_BLK_DEV_INTEGRITY is not set |
130 | 128 | ||
@@ -141,6 +139,10 @@ CONFIG_DEFAULT_DEADLINE=y | |||
141 | # CONFIG_DEFAULT_NOOP is not set | 139 | # CONFIG_DEFAULT_NOOP is not set |
142 | CONFIG_DEFAULT_IOSCHED="deadline" | 140 | CONFIG_DEFAULT_IOSCHED="deadline" |
143 | CONFIG_CLASSIC_RCU=y | 141 | CONFIG_CLASSIC_RCU=y |
142 | # CONFIG_TREE_RCU is not set | ||
143 | # CONFIG_PREEMPT_RCU is not set | ||
144 | # CONFIG_TREE_RCU_TRACE is not set | ||
145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
144 | # CONFIG_FREEZER is not set | 146 | # CONFIG_FREEZER is not set |
145 | 147 | ||
146 | # | 148 | # |
@@ -193,6 +195,7 @@ CONFIG_NO_UCODE_PATCH=y | |||
193 | # CONFIG_QUICC_ENGINE is not set | 195 | # CONFIG_QUICC_ENGINE is not set |
194 | # CONFIG_FSL_ULI1575 is not set | 196 | # CONFIG_FSL_ULI1575 is not set |
195 | CONFIG_CPM=y | 197 | CONFIG_CPM=y |
198 | # CONFIG_SIMPLE_GPIO is not set | ||
196 | 199 | ||
197 | # | 200 | # |
198 | # Kernel options | 201 | # Kernel options |
@@ -212,12 +215,12 @@ CONFIG_PREEMPT_NONE=y | |||
212 | # CONFIG_PREEMPT_VOLUNTARY is not set | 215 | # CONFIG_PREEMPT_VOLUNTARY is not set |
213 | # CONFIG_PREEMPT is not set | 216 | # CONFIG_PREEMPT is not set |
214 | CONFIG_BINFMT_ELF=y | 217 | CONFIG_BINFMT_ELF=y |
215 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
216 | # CONFIG_HAVE_AOUT is not set | 218 | # CONFIG_HAVE_AOUT is not set |
217 | # CONFIG_BINFMT_MISC is not set | 219 | # CONFIG_BINFMT_MISC is not set |
218 | # CONFIG_MATH_EMULATION is not set | 220 | # CONFIG_MATH_EMULATION is not set |
219 | CONFIG_8XX_MINIMAL_FPEMU=y | 221 | CONFIG_8XX_MINIMAL_FPEMU=y |
220 | # CONFIG_IOMMU_HELPER is not set | 222 | # CONFIG_IOMMU_HELPER is not set |
223 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
221 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
222 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 225 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
223 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 226 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -232,12 +235,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
232 | CONFIG_PAGEFLAGS_EXTENDED=y | 235 | CONFIG_PAGEFLAGS_EXTENDED=y |
233 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 236 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
234 | CONFIG_MIGRATION=y | 237 | CONFIG_MIGRATION=y |
235 | # CONFIG_RESOURCES_64BIT is not set | ||
236 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 238 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
237 | CONFIG_ZONE_DMA_FLAG=1 | 239 | CONFIG_ZONE_DMA_FLAG=1 |
238 | CONFIG_BOUNCE=y | 240 | CONFIG_BOUNCE=y |
239 | CONFIG_VIRT_TO_BUS=y | 241 | CONFIG_VIRT_TO_BUS=y |
240 | CONFIG_UNEVICTABLE_LRU=y | 242 | CONFIG_UNEVICTABLE_LRU=y |
243 | CONFIG_PPC_4K_PAGES=y | ||
244 | # CONFIG_PPC_16K_PAGES is not set | ||
245 | # CONFIG_PPC_64K_PAGES is not set | ||
241 | CONFIG_FORCE_MAX_ZONEORDER=11 | 246 | CONFIG_FORCE_MAX_ZONEORDER=11 |
242 | CONFIG_PROC_DEVICETREE=y | 247 | CONFIG_PROC_DEVICETREE=y |
243 | # CONFIG_CMDLINE_BOOL is not set | 248 | # CONFIG_CMDLINE_BOOL is not set |
@@ -279,6 +284,7 @@ CONFIG_NET=y | |||
279 | # | 284 | # |
280 | # Networking options | 285 | # Networking options |
281 | # | 286 | # |
287 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=y | 288 | CONFIG_PACKET=y |
283 | # CONFIG_PACKET_MMAP is not set | 289 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 290 | CONFIG_UNIX=y |
@@ -330,6 +336,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
330 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
331 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
332 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
339 | # CONFIG_DCB is not set | ||
333 | 340 | ||
334 | # | 341 | # |
335 | # Network testing | 342 | # Network testing |
@@ -345,8 +352,9 @@ CONFIG_WIRELESS=y | |||
345 | # CONFIG_CFG80211 is not set | 352 | # CONFIG_CFG80211 is not set |
346 | CONFIG_WIRELESS_OLD_REGULATORY=y | 353 | CONFIG_WIRELESS_OLD_REGULATORY=y |
347 | # CONFIG_WIRELESS_EXT is not set | 354 | # CONFIG_WIRELESS_EXT is not set |
355 | # CONFIG_LIB80211 is not set | ||
348 | # CONFIG_MAC80211 is not set | 356 | # CONFIG_MAC80211 is not set |
349 | # CONFIG_IEEE80211 is not set | 357 | # CONFIG_WIMAX is not set |
350 | # CONFIG_RFKILL is not set | 358 | # CONFIG_RFKILL is not set |
351 | # CONFIG_NET_9P is not set | 359 | # CONFIG_NET_9P is not set |
352 | 360 | ||
@@ -439,6 +447,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
439 | # CONFIG_MTD_ONENAND is not set | 447 | # CONFIG_MTD_ONENAND is not set |
440 | 448 | ||
441 | # | 449 | # |
450 | # LPDDR flash memory drivers | ||
451 | # | ||
452 | # CONFIG_MTD_LPDDR is not set | ||
453 | # CONFIG_MTD_QINFO_PROBE is not set | ||
454 | |||
455 | # | ||
442 | # UBI - Unsorted block images | 456 | # UBI - Unsorted block images |
443 | # | 457 | # |
444 | # CONFIG_MTD_UBI is not set | 458 | # CONFIG_MTD_UBI is not set |
@@ -481,6 +495,9 @@ CONFIG_DAVICOM_PHY=y | |||
481 | # CONFIG_BROADCOM_PHY is not set | 495 | # CONFIG_BROADCOM_PHY is not set |
482 | # CONFIG_ICPLUS_PHY is not set | 496 | # CONFIG_ICPLUS_PHY is not set |
483 | # CONFIG_REALTEK_PHY is not set | 497 | # CONFIG_REALTEK_PHY is not set |
498 | # CONFIG_NATIONAL_PHY is not set | ||
499 | # CONFIG_STE10XP is not set | ||
500 | # CONFIG_LSI_ET1011C_PHY is not set | ||
484 | # CONFIG_FIXED_PHY is not set | 501 | # CONFIG_FIXED_PHY is not set |
485 | # CONFIG_MDIO_BITBANG is not set | 502 | # CONFIG_MDIO_BITBANG is not set |
486 | CONFIG_NET_ETHERNET=y | 503 | CONFIG_NET_ETHERNET=y |
@@ -506,6 +523,10 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
506 | # CONFIG_WLAN_PRE80211 is not set | 523 | # CONFIG_WLAN_PRE80211 is not set |
507 | # CONFIG_WLAN_80211 is not set | 524 | # CONFIG_WLAN_80211 is not set |
508 | # CONFIG_IWLWIFI_LEDS is not set | 525 | # CONFIG_IWLWIFI_LEDS is not set |
526 | |||
527 | # | ||
528 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
529 | # | ||
509 | # CONFIG_WAN is not set | 530 | # CONFIG_WAN is not set |
510 | # CONFIG_PPP is not set | 531 | # CONFIG_PPP is not set |
511 | # CONFIG_SLIP is not set | 532 | # CONFIG_SLIP is not set |
@@ -547,7 +568,9 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
547 | CONFIG_SERIAL_CPM=y | 568 | CONFIG_SERIAL_CPM=y |
548 | CONFIG_SERIAL_CPM_CONSOLE=y | 569 | CONFIG_SERIAL_CPM_CONSOLE=y |
549 | CONFIG_UNIX98_PTYS=y | 570 | CONFIG_UNIX98_PTYS=y |
571 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
550 | # CONFIG_LEGACY_PTYS is not set | 572 | # CONFIG_LEGACY_PTYS is not set |
573 | # CONFIG_HVC_UDBG is not set | ||
551 | # CONFIG_IPMI_HANDLER is not set | 574 | # CONFIG_IPMI_HANDLER is not set |
552 | CONFIG_HW_RANDOM=y | 575 | CONFIG_HW_RANDOM=y |
553 | # CONFIG_NVRAM is not set | 576 | # CONFIG_NVRAM is not set |
@@ -566,11 +589,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
566 | # CONFIG_THERMAL is not set | 589 | # CONFIG_THERMAL is not set |
567 | # CONFIG_THERMAL_HWMON is not set | 590 | # CONFIG_THERMAL_HWMON is not set |
568 | # CONFIG_WATCHDOG is not set | 591 | # CONFIG_WATCHDOG is not set |
592 | CONFIG_SSB_POSSIBLE=y | ||
569 | 593 | ||
570 | # | 594 | # |
571 | # Sonics Silicon Backplane | 595 | # Sonics Silicon Backplane |
572 | # | 596 | # |
573 | CONFIG_SSB_POSSIBLE=y | ||
574 | # CONFIG_SSB is not set | 597 | # CONFIG_SSB is not set |
575 | 598 | ||
576 | # | 599 | # |
@@ -580,14 +603,7 @@ CONFIG_SSB_POSSIBLE=y | |||
580 | # CONFIG_MFD_SM501 is not set | 603 | # CONFIG_MFD_SM501 is not set |
581 | # CONFIG_HTC_PASIC3 is not set | 604 | # CONFIG_HTC_PASIC3 is not set |
582 | # CONFIG_MFD_TMIO is not set | 605 | # CONFIG_MFD_TMIO is not set |
583 | |||
584 | # | ||
585 | # Voltage and Current regulators | ||
586 | # | ||
587 | # CONFIG_REGULATOR is not set | 606 | # CONFIG_REGULATOR is not set |
588 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
589 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
590 | # CONFIG_REGULATOR_BQ24022 is not set | ||
591 | 607 | ||
592 | # | 608 | # |
593 | # Multimedia devices | 609 | # Multimedia devices |
@@ -641,6 +657,7 @@ CONFIG_DAB=y | |||
641 | CONFIG_FILE_LOCKING=y | 657 | CONFIG_FILE_LOCKING=y |
642 | # CONFIG_XFS_FS is not set | 658 | # CONFIG_XFS_FS is not set |
643 | # CONFIG_OCFS2_FS is not set | 659 | # CONFIG_OCFS2_FS is not set |
660 | # CONFIG_BTRFS_FS is not set | ||
644 | # CONFIG_DNOTIFY is not set | 661 | # CONFIG_DNOTIFY is not set |
645 | # CONFIG_INOTIFY is not set | 662 | # CONFIG_INOTIFY is not set |
646 | # CONFIG_QUOTA is not set | 663 | # CONFIG_QUOTA is not set |
@@ -673,10 +690,7 @@ CONFIG_TMPFS=y | |||
673 | # CONFIG_TMPFS_POSIX_ACL is not set | 690 | # CONFIG_TMPFS_POSIX_ACL is not set |
674 | # CONFIG_HUGETLB_PAGE is not set | 691 | # CONFIG_HUGETLB_PAGE is not set |
675 | # CONFIG_CONFIGFS_FS is not set | 692 | # CONFIG_CONFIGFS_FS is not set |
676 | 693 | CONFIG_MISC_FILESYSTEMS=y | |
677 | # | ||
678 | # Miscellaneous filesystems | ||
679 | # | ||
680 | # CONFIG_ADFS_FS is not set | 694 | # CONFIG_ADFS_FS is not set |
681 | # CONFIG_AFFS_FS is not set | 695 | # CONFIG_AFFS_FS is not set |
682 | # CONFIG_HFS_FS is not set | 696 | # CONFIG_HFS_FS is not set |
@@ -686,6 +700,7 @@ CONFIG_TMPFS=y | |||
686 | # CONFIG_EFS_FS is not set | 700 | # CONFIG_EFS_FS is not set |
687 | # CONFIG_JFFS2_FS is not set | 701 | # CONFIG_JFFS2_FS is not set |
688 | CONFIG_CRAMFS=y | 702 | CONFIG_CRAMFS=y |
703 | # CONFIG_SQUASHFS is not set | ||
689 | # CONFIG_VXFS_FS is not set | 704 | # CONFIG_VXFS_FS is not set |
690 | # CONFIG_MINIX_FS is not set | 705 | # CONFIG_MINIX_FS is not set |
691 | # CONFIG_OMFS_FS is not set | 706 | # CONFIG_OMFS_FS is not set |
@@ -741,6 +756,7 @@ CONFIG_MSDOS_PARTITION=y | |||
741 | # | 756 | # |
742 | # Library routines | 757 | # Library routines |
743 | # | 758 | # |
759 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
744 | # CONFIG_CRC_CCITT is not set | 760 | # CONFIG_CRC_CCITT is not set |
745 | # CONFIG_CRC16 is not set | 761 | # CONFIG_CRC16 is not set |
746 | # CONFIG_CRC_T10DIF is not set | 762 | # CONFIG_CRC_T10DIF is not set |
@@ -788,6 +804,7 @@ CONFIG_DEBUG_INFO=y | |||
788 | # CONFIG_DEBUG_MEMORY_INIT is not set | 804 | # CONFIG_DEBUG_MEMORY_INIT is not set |
789 | # CONFIG_DEBUG_LIST is not set | 805 | # CONFIG_DEBUG_LIST is not set |
790 | # CONFIG_DEBUG_SG is not set | 806 | # CONFIG_DEBUG_SG is not set |
807 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
791 | # CONFIG_BOOT_PRINTK_DELAY is not set | 808 | # CONFIG_BOOT_PRINTK_DELAY is not set |
792 | # CONFIG_RCU_TORTURE_TEST is not set | 809 | # CONFIG_RCU_TORTURE_TEST is not set |
793 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 810 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -796,6 +813,8 @@ CONFIG_DEBUG_INFO=y | |||
796 | # CONFIG_FAULT_INJECTION is not set | 813 | # CONFIG_FAULT_INJECTION is not set |
797 | # CONFIG_LATENCYTOP is not set | 814 | # CONFIG_LATENCYTOP is not set |
798 | CONFIG_HAVE_FUNCTION_TRACER=y | 815 | CONFIG_HAVE_FUNCTION_TRACER=y |
816 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
817 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
799 | 818 | ||
800 | # | 819 | # |
801 | # Tracers | 820 | # Tracers |
@@ -804,11 +823,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
804 | # CONFIG_SCHED_TRACER is not set | 823 | # CONFIG_SCHED_TRACER is not set |
805 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 824 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
806 | # CONFIG_BOOT_TRACER is not set | 825 | # CONFIG_BOOT_TRACER is not set |
826 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
807 | # CONFIG_STACK_TRACER is not set | 827 | # CONFIG_STACK_TRACER is not set |
808 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 828 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
809 | # CONFIG_SAMPLES is not set | 829 | # CONFIG_SAMPLES is not set |
810 | CONFIG_HAVE_ARCH_KGDB=y | 830 | CONFIG_HAVE_ARCH_KGDB=y |
811 | # CONFIG_KGDB is not set | 831 | # CONFIG_KGDB is not set |
832 | CONFIG_PRINT_STACK_DEPTH=64 | ||
812 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 833 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
813 | # CONFIG_DEBUG_STACK_USAGE is not set | 834 | # CONFIG_DEBUG_STACK_USAGE is not set |
814 | # CONFIG_DEBUG_PAGEALLOC is not set | 835 | # CONFIG_DEBUG_PAGEALLOC is not set |
diff --git a/arch/powerpc/configs/ppc40x_defconfig b/arch/powerpc/configs/ppc40x_defconfig index 2d72ee7a8d60..326205cabf77 100644 --- a/arch/powerpc/configs/ppc40x_defconfig +++ b/arch/powerpc/configs/ppc40x_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.28-rc4 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Fri Nov 14 09:54:44 2008 | 4 | # Fri Jan 23 08:44:03 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -15,6 +15,7 @@ CONFIG_40x=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_4xx=y | 17 | CONFIG_4xx=y |
18 | CONFIG_PPC_MMU_NOHASH=y | ||
18 | # CONFIG_PPC_MM_SLICES is not set | 19 | # CONFIG_PPC_MM_SLICES is not set |
19 | CONFIG_NOT_COHERENT_CACHE=y | 20 | CONFIG_NOT_COHERENT_CACHE=y |
20 | CONFIG_PPC32=y | 21 | CONFIG_PPC32=y |
@@ -41,7 +42,7 @@ CONFIG_GENERIC_GPIO=y | |||
41 | CONFIG_PPC=y | 42 | CONFIG_PPC=y |
42 | CONFIG_EARLY_PRINTK=y | 43 | CONFIG_EARLY_PRINTK=y |
43 | CONFIG_GENERIC_NVRAM=y | 44 | CONFIG_GENERIC_NVRAM=y |
44 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 45 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 46 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
46 | CONFIG_PPC_OF=y | 47 | CONFIG_PPC_OF=y |
47 | CONFIG_OF=y | 48 | CONFIG_OF=y |
@@ -72,12 +73,12 @@ CONFIG_POSIX_MQUEUE=y | |||
72 | # CONFIG_AUDIT is not set | 73 | # CONFIG_AUDIT is not set |
73 | # CONFIG_IKCONFIG is not set | 74 | # CONFIG_IKCONFIG is not set |
74 | CONFIG_LOG_BUF_SHIFT=14 | 75 | CONFIG_LOG_BUF_SHIFT=14 |
75 | # CONFIG_CGROUPS is not set | ||
76 | CONFIG_GROUP_SCHED=y | 76 | CONFIG_GROUP_SCHED=y |
77 | CONFIG_FAIR_GROUP_SCHED=y | 77 | CONFIG_FAIR_GROUP_SCHED=y |
78 | # CONFIG_RT_GROUP_SCHED is not set | 78 | # CONFIG_RT_GROUP_SCHED is not set |
79 | CONFIG_USER_SCHED=y | 79 | CONFIG_USER_SCHED=y |
80 | # CONFIG_CGROUP_SCHED is not set | 80 | # CONFIG_CGROUP_SCHED is not set |
81 | # CONFIG_CGROUPS is not set | ||
81 | CONFIG_SYSFS_DEPRECATED=y | 82 | CONFIG_SYSFS_DEPRECATED=y |
82 | CONFIG_SYSFS_DEPRECATED_V2=y | 83 | CONFIG_SYSFS_DEPRECATED_V2=y |
83 | # CONFIG_RELAY is not set | 84 | # CONFIG_RELAY is not set |
@@ -90,6 +91,7 @@ CONFIG_EMBEDDED=y | |||
90 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
91 | CONFIG_KALLSYMS=y | 92 | CONFIG_KALLSYMS=y |
92 | CONFIG_KALLSYMS_ALL=y | 93 | CONFIG_KALLSYMS_ALL=y |
94 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
93 | CONFIG_KALLSYMS_EXTRA_PASS=y | 95 | CONFIG_KALLSYMS_EXTRA_PASS=y |
94 | CONFIG_HOTPLUG=y | 96 | CONFIG_HOTPLUG=y |
95 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
@@ -112,7 +114,6 @@ CONFIG_SLUB_DEBUG=y | |||
112 | CONFIG_SLUB=y | 114 | CONFIG_SLUB=y |
113 | # CONFIG_SLOB is not set | 115 | # CONFIG_SLOB is not set |
114 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
115 | # CONFIG_MARKERS is not set | ||
116 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
117 | # CONFIG_KPROBES is not set | 118 | # CONFIG_KPROBES is not set |
118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -123,7 +124,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
124 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
125 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
126 | # CONFIG_TINY_SHMEM is not set | ||
127 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
128 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
129 | # CONFIG_MODULE_FORCE_LOAD is not set | 129 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -131,11 +131,9 @@ CONFIG_MODULE_UNLOAD=y | |||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 131 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
132 | # CONFIG_MODVERSIONS is not set | 132 | # CONFIG_MODVERSIONS is not set |
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 133 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
134 | CONFIG_KMOD=y | ||
135 | CONFIG_BLOCK=y | 134 | CONFIG_BLOCK=y |
136 | CONFIG_LBD=y | 135 | CONFIG_LBD=y |
137 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
138 | # CONFIG_LSF is not set | ||
139 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | 139 | ||
@@ -152,6 +150,10 @@ CONFIG_DEFAULT_AS=y | |||
152 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
154 | CONFIG_CLASSIC_RCU=y | 152 | CONFIG_CLASSIC_RCU=y |
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
155 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
156 | CONFIG_PPC4xx_PCI_EXPRESS=y | 158 | CONFIG_PPC4xx_PCI_EXPRESS=y |
157 | 159 | ||
@@ -192,6 +194,7 @@ CONFIG_IBM405_ERR51=y | |||
192 | # CONFIG_CPU_FREQ is not set | 194 | # CONFIG_CPU_FREQ is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
194 | CONFIG_OF_RTC=y | 196 | CONFIG_OF_RTC=y |
197 | # CONFIG_SIMPLE_GPIO is not set | ||
195 | 198 | ||
196 | # | 199 | # |
197 | # Kernel options | 200 | # Kernel options |
@@ -215,6 +218,7 @@ CONFIG_BINFMT_ELF=y | |||
215 | # CONFIG_BINFMT_MISC is not set | 218 | # CONFIG_BINFMT_MISC is not set |
216 | # CONFIG_MATH_EMULATION is not set | 219 | # CONFIG_MATH_EMULATION is not set |
217 | # CONFIG_IOMMU_HELPER is not set | 220 | # CONFIG_IOMMU_HELPER is not set |
221 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
219 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 223 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
220 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -229,12 +233,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
229 | CONFIG_PAGEFLAGS_EXTENDED=y | 233 | CONFIG_PAGEFLAGS_EXTENDED=y |
230 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 234 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
231 | CONFIG_MIGRATION=y | 235 | CONFIG_MIGRATION=y |
232 | CONFIG_RESOURCES_64BIT=y | ||
233 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 236 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
234 | CONFIG_ZONE_DMA_FLAG=1 | 237 | CONFIG_ZONE_DMA_FLAG=1 |
235 | CONFIG_BOUNCE=y | 238 | CONFIG_BOUNCE=y |
236 | CONFIG_VIRT_TO_BUS=y | 239 | CONFIG_VIRT_TO_BUS=y |
237 | CONFIG_UNEVICTABLE_LRU=y | 240 | CONFIG_UNEVICTABLE_LRU=y |
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
238 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
239 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
240 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
@@ -258,6 +264,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
258 | # CONFIG_PCI_MSI is not set | 264 | # CONFIG_PCI_MSI is not set |
259 | # CONFIG_PCI_LEGACY is not set | 265 | # CONFIG_PCI_LEGACY is not set |
260 | # CONFIG_PCI_DEBUG is not set | 266 | # CONFIG_PCI_DEBUG is not set |
267 | # CONFIG_PCI_STUB is not set | ||
261 | # CONFIG_PCCARD is not set | 268 | # CONFIG_PCCARD is not set |
262 | # CONFIG_HOTPLUG_PCI is not set | 269 | # CONFIG_HOTPLUG_PCI is not set |
263 | # CONFIG_HAS_RAPIDIO is not set | 270 | # CONFIG_HAS_RAPIDIO is not set |
@@ -282,6 +289,7 @@ CONFIG_NET=y | |||
282 | # | 289 | # |
283 | # Networking options | 290 | # Networking options |
284 | # | 291 | # |
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
285 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
286 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
287 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
@@ -355,6 +363,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
355 | # CONFIG_ECONET is not set | 363 | # CONFIG_ECONET is not set |
356 | # CONFIG_WAN_ROUTER is not set | 364 | # CONFIG_WAN_ROUTER is not set |
357 | # CONFIG_NET_SCHED is not set | 365 | # CONFIG_NET_SCHED is not set |
366 | # CONFIG_DCB is not set | ||
358 | 367 | ||
359 | # | 368 | # |
360 | # Network testing | 369 | # Network testing |
@@ -370,8 +379,9 @@ CONFIG_WIRELESS=y | |||
370 | # CONFIG_CFG80211 is not set | 379 | # CONFIG_CFG80211 is not set |
371 | CONFIG_WIRELESS_OLD_REGULATORY=y | 380 | CONFIG_WIRELESS_OLD_REGULATORY=y |
372 | # CONFIG_WIRELESS_EXT is not set | 381 | # CONFIG_WIRELESS_EXT is not set |
382 | # CONFIG_LIB80211 is not set | ||
373 | # CONFIG_MAC80211 is not set | 383 | # CONFIG_MAC80211 is not set |
374 | # CONFIG_IEEE80211 is not set | 384 | # CONFIG_WIMAX is not set |
375 | # CONFIG_RFKILL is not set | 385 | # CONFIG_RFKILL is not set |
376 | # CONFIG_NET_9P is not set | 386 | # CONFIG_NET_9P is not set |
377 | 387 | ||
@@ -397,6 +407,7 @@ CONFIG_MTD=y | |||
397 | # CONFIG_MTD_DEBUG is not set | 407 | # CONFIG_MTD_DEBUG is not set |
398 | # CONFIG_MTD_CONCAT is not set | 408 | # CONFIG_MTD_CONCAT is not set |
399 | CONFIG_MTD_PARTITIONS=y | 409 | CONFIG_MTD_PARTITIONS=y |
410 | # CONFIG_MTD_TESTS is not set | ||
400 | # CONFIG_MTD_REDBOOT_PARTS is not set | 411 | # CONFIG_MTD_REDBOOT_PARTS is not set |
401 | CONFIG_MTD_CMDLINE_PARTS=y | 412 | CONFIG_MTD_CMDLINE_PARTS=y |
402 | CONFIG_MTD_OF_PARTS=y | 413 | CONFIG_MTD_OF_PARTS=y |
@@ -469,6 +480,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
469 | # CONFIG_MTD_ONENAND is not set | 480 | # CONFIG_MTD_ONENAND is not set |
470 | 481 | ||
471 | # | 482 | # |
483 | # LPDDR flash memory drivers | ||
484 | # | ||
485 | # CONFIG_MTD_LPDDR is not set | ||
486 | # CONFIG_MTD_QINFO_PROBE is not set | ||
487 | |||
488 | # | ||
472 | # UBI - Unsorted block images | 489 | # UBI - Unsorted block images |
473 | # | 490 | # |
474 | CONFIG_MTD_UBI=m | 491 | CONFIG_MTD_UBI=m |
@@ -593,6 +610,7 @@ CONFIG_NETDEV_1000=y | |||
593 | # CONFIG_JME is not set | 610 | # CONFIG_JME is not set |
594 | CONFIG_NETDEV_10000=y | 611 | CONFIG_NETDEV_10000=y |
595 | # CONFIG_CHELSIO_T1 is not set | 612 | # CONFIG_CHELSIO_T1 is not set |
613 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
596 | # CONFIG_CHELSIO_T3 is not set | 614 | # CONFIG_CHELSIO_T3 is not set |
597 | # CONFIG_ENIC is not set | 615 | # CONFIG_ENIC is not set |
598 | # CONFIG_IXGBE is not set | 616 | # CONFIG_IXGBE is not set |
@@ -615,6 +633,10 @@ CONFIG_NETDEV_10000=y | |||
615 | # CONFIG_WLAN_PRE80211 is not set | 633 | # CONFIG_WLAN_PRE80211 is not set |
616 | # CONFIG_WLAN_80211 is not set | 634 | # CONFIG_WLAN_80211 is not set |
617 | # CONFIG_IWLWIFI_LEDS is not set | 635 | # CONFIG_IWLWIFI_LEDS is not set |
636 | |||
637 | # | ||
638 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
639 | # | ||
618 | # CONFIG_WAN is not set | 640 | # CONFIG_WAN is not set |
619 | # CONFIG_FDDI is not set | 641 | # CONFIG_FDDI is not set |
620 | # CONFIG_HIPPI is not set | 642 | # CONFIG_HIPPI is not set |
@@ -674,9 +696,12 @@ CONFIG_SERIAL_CORE=y | |||
674 | CONFIG_SERIAL_CORE_CONSOLE=y | 696 | CONFIG_SERIAL_CORE_CONSOLE=y |
675 | # CONFIG_SERIAL_JSM is not set | 697 | # CONFIG_SERIAL_JSM is not set |
676 | CONFIG_SERIAL_OF_PLATFORM=y | 698 | CONFIG_SERIAL_OF_PLATFORM=y |
699 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
677 | CONFIG_UNIX98_PTYS=y | 700 | CONFIG_UNIX98_PTYS=y |
701 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
678 | CONFIG_LEGACY_PTYS=y | 702 | CONFIG_LEGACY_PTYS=y |
679 | CONFIG_LEGACY_PTY_COUNT=256 | 703 | CONFIG_LEGACY_PTY_COUNT=256 |
704 | # CONFIG_HVC_UDBG is not set | ||
680 | # CONFIG_IPMI_HANDLER is not set | 705 | # CONFIG_IPMI_HANDLER is not set |
681 | # CONFIG_HW_RANDOM is not set | 706 | # CONFIG_HW_RANDOM is not set |
682 | # CONFIG_NVRAM is not set | 707 | # CONFIG_NVRAM is not set |
@@ -751,7 +776,6 @@ CONFIG_I2C_IBM_IIC=m | |||
751 | # CONFIG_PCF8575 is not set | 776 | # CONFIG_PCF8575 is not set |
752 | # CONFIG_SENSORS_PCA9539 is not set | 777 | # CONFIG_SENSORS_PCA9539 is not set |
753 | # CONFIG_SENSORS_PCF8591 is not set | 778 | # CONFIG_SENSORS_PCF8591 is not set |
754 | # CONFIG_TPS65010 is not set | ||
755 | # CONFIG_SENSORS_MAX6875 is not set | 779 | # CONFIG_SENSORS_MAX6875 is not set |
756 | # CONFIG_SENSORS_TSL2550 is not set | 780 | # CONFIG_SENSORS_TSL2550 is not set |
757 | # CONFIG_I2C_DEBUG_CORE is not set | 781 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -803,9 +827,11 @@ CONFIG_SSB_POSSIBLE=y | |||
803 | # CONFIG_MFD_CORE is not set | 827 | # CONFIG_MFD_CORE is not set |
804 | # CONFIG_MFD_SM501 is not set | 828 | # CONFIG_MFD_SM501 is not set |
805 | # CONFIG_HTC_PASIC3 is not set | 829 | # CONFIG_HTC_PASIC3 is not set |
830 | # CONFIG_TPS65010 is not set | ||
806 | # CONFIG_MFD_TMIO is not set | 831 | # CONFIG_MFD_TMIO is not set |
807 | # CONFIG_MFD_WM8400 is not set | 832 | # CONFIG_MFD_WM8400 is not set |
808 | # CONFIG_MFD_WM8350_I2C is not set | 833 | # CONFIG_MFD_WM8350_I2C is not set |
834 | # CONFIG_MFD_PCF50633 is not set | ||
809 | # CONFIG_REGULATOR is not set | 835 | # CONFIG_REGULATOR is not set |
810 | 836 | ||
811 | # | 837 | # |
@@ -904,9 +930,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
904 | # | 930 | # |
905 | 931 | ||
906 | # | 932 | # |
907 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 933 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
908 | # | 934 | # |
909 | # CONFIG_USB_GADGET is not set | 935 | # CONFIG_USB_GADGET is not set |
936 | |||
937 | # | ||
938 | # OTG and related infrastructure | ||
939 | # | ||
910 | # CONFIG_UWB is not set | 940 | # CONFIG_UWB is not set |
911 | # CONFIG_MMC is not set | 941 | # CONFIG_MMC is not set |
912 | # CONFIG_MEMSTICK is not set | 942 | # CONFIG_MEMSTICK is not set |
@@ -918,7 +948,6 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
918 | # CONFIG_DMADEVICES is not set | 948 | # CONFIG_DMADEVICES is not set |
919 | # CONFIG_UIO is not set | 949 | # CONFIG_UIO is not set |
920 | # CONFIG_STAGING is not set | 950 | # CONFIG_STAGING is not set |
921 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
922 | 951 | ||
923 | # | 952 | # |
924 | # File systems | 953 | # File systems |
@@ -939,7 +968,9 @@ CONFIG_FS_MBCACHE=m | |||
939 | # CONFIG_FS_POSIX_ACL is not set | 968 | # CONFIG_FS_POSIX_ACL is not set |
940 | CONFIG_FILE_LOCKING=y | 969 | CONFIG_FILE_LOCKING=y |
941 | # CONFIG_XFS_FS is not set | 970 | # CONFIG_XFS_FS is not set |
971 | # CONFIG_GFS2_FS is not set | ||
942 | # CONFIG_OCFS2_FS is not set | 972 | # CONFIG_OCFS2_FS is not set |
973 | # CONFIG_BTRFS_FS is not set | ||
943 | CONFIG_DNOTIFY=y | 974 | CONFIG_DNOTIFY=y |
944 | CONFIG_INOTIFY=y | 975 | CONFIG_INOTIFY=y |
945 | CONFIG_INOTIFY_USER=y | 976 | CONFIG_INOTIFY_USER=y |
@@ -976,10 +1007,7 @@ CONFIG_TMPFS=y | |||
976 | # CONFIG_TMPFS_POSIX_ACL is not set | 1007 | # CONFIG_TMPFS_POSIX_ACL is not set |
977 | # CONFIG_HUGETLB_PAGE is not set | 1008 | # CONFIG_HUGETLB_PAGE is not set |
978 | # CONFIG_CONFIGFS_FS is not set | 1009 | # CONFIG_CONFIGFS_FS is not set |
979 | 1010 | CONFIG_MISC_FILESYSTEMS=y | |
980 | # | ||
981 | # Miscellaneous filesystems | ||
982 | # | ||
983 | # CONFIG_ADFS_FS is not set | 1011 | # CONFIG_ADFS_FS is not set |
984 | # CONFIG_AFFS_FS is not set | 1012 | # CONFIG_AFFS_FS is not set |
985 | # CONFIG_HFS_FS is not set | 1013 | # CONFIG_HFS_FS is not set |
@@ -1005,6 +1033,7 @@ CONFIG_UBIFS_FS_LZO=y | |||
1005 | CONFIG_UBIFS_FS_ZLIB=y | 1033 | CONFIG_UBIFS_FS_ZLIB=y |
1006 | # CONFIG_UBIFS_FS_DEBUG is not set | 1034 | # CONFIG_UBIFS_FS_DEBUG is not set |
1007 | CONFIG_CRAMFS=y | 1035 | CONFIG_CRAMFS=y |
1036 | # CONFIG_SQUASHFS is not set | ||
1008 | # CONFIG_VXFS_FS is not set | 1037 | # CONFIG_VXFS_FS is not set |
1009 | # CONFIG_MINIX_FS is not set | 1038 | # CONFIG_MINIX_FS is not set |
1010 | # CONFIG_OMFS_FS is not set | 1039 | # CONFIG_OMFS_FS is not set |
@@ -1084,6 +1113,7 @@ CONFIG_NLS_ISO8859_1=m | |||
1084 | # Library routines | 1113 | # Library routines |
1085 | # | 1114 | # |
1086 | CONFIG_BITREVERSE=y | 1115 | CONFIG_BITREVERSE=y |
1116 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1087 | # CONFIG_CRC_CCITT is not set | 1117 | # CONFIG_CRC_CCITT is not set |
1088 | CONFIG_CRC16=m | 1118 | CONFIG_CRC16=m |
1089 | # CONFIG_CRC_T10DIF is not set | 1119 | # CONFIG_CRC_T10DIF is not set |
@@ -1137,6 +1167,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1137 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1167 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1138 | # CONFIG_DEBUG_LIST is not set | 1168 | # CONFIG_DEBUG_LIST is not set |
1139 | # CONFIG_DEBUG_SG is not set | 1169 | # CONFIG_DEBUG_SG is not set |
1170 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1140 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1171 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1141 | # CONFIG_RCU_TORTURE_TEST is not set | 1172 | # CONFIG_RCU_TORTURE_TEST is not set |
1142 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1173 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1146,6 +1177,8 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1146 | # CONFIG_LATENCYTOP is not set | 1177 | # CONFIG_LATENCYTOP is not set |
1147 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1178 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1148 | CONFIG_HAVE_FUNCTION_TRACER=y | 1179 | CONFIG_HAVE_FUNCTION_TRACER=y |
1180 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1181 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1149 | 1182 | ||
1150 | # | 1183 | # |
1151 | # Tracers | 1184 | # Tracers |
@@ -1154,11 +1187,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1154 | # CONFIG_SCHED_TRACER is not set | 1187 | # CONFIG_SCHED_TRACER is not set |
1155 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1188 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1156 | # CONFIG_BOOT_TRACER is not set | 1189 | # CONFIG_BOOT_TRACER is not set |
1190 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1157 | # CONFIG_STACK_TRACER is not set | 1191 | # CONFIG_STACK_TRACER is not set |
1158 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1192 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1159 | # CONFIG_SAMPLES is not set | 1193 | # CONFIG_SAMPLES is not set |
1160 | CONFIG_HAVE_ARCH_KGDB=y | 1194 | CONFIG_HAVE_ARCH_KGDB=y |
1161 | # CONFIG_KGDB is not set | 1195 | # CONFIG_KGDB is not set |
1196 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1162 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1197 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1163 | # CONFIG_DEBUG_STACK_USAGE is not set | 1198 | # CONFIG_DEBUG_STACK_USAGE is not set |
1164 | # CONFIG_DEBUG_PAGEALLOC is not set | 1199 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1185,11 +1220,15 @@ CONFIG_CRYPTO=y | |||
1185 | # | 1220 | # |
1186 | # CONFIG_CRYPTO_FIPS is not set | 1221 | # CONFIG_CRYPTO_FIPS is not set |
1187 | CONFIG_CRYPTO_ALGAPI=y | 1222 | CONFIG_CRYPTO_ALGAPI=y |
1188 | CONFIG_CRYPTO_AEAD=y | 1223 | CONFIG_CRYPTO_ALGAPI2=y |
1224 | CONFIG_CRYPTO_AEAD2=y | ||
1189 | CONFIG_CRYPTO_BLKCIPHER=y | 1225 | CONFIG_CRYPTO_BLKCIPHER=y |
1226 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1190 | CONFIG_CRYPTO_HASH=y | 1227 | CONFIG_CRYPTO_HASH=y |
1191 | CONFIG_CRYPTO_RNG=y | 1228 | CONFIG_CRYPTO_HASH2=y |
1229 | CONFIG_CRYPTO_RNG2=y | ||
1192 | CONFIG_CRYPTO_MANAGER=y | 1230 | CONFIG_CRYPTO_MANAGER=y |
1231 | CONFIG_CRYPTO_MANAGER2=y | ||
1193 | # CONFIG_CRYPTO_GF128MUL is not set | 1232 | # CONFIG_CRYPTO_GF128MUL is not set |
1194 | # CONFIG_CRYPTO_NULL is not set | 1233 | # CONFIG_CRYPTO_NULL is not set |
1195 | # CONFIG_CRYPTO_CRYPTD is not set | 1234 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/ppc44x_defconfig b/arch/powerpc/configs/ppc44x_defconfig index 358b85f9270e..5e6d55f006bb 100644 --- a/arch/powerpc/configs/ppc44x_defconfig +++ b/arch/powerpc/configs/ppc44x_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.28-rc4 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Fri Nov 14 10:06:19 2008 | 4 | # Fri Jan 23 08:43:46 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -19,6 +19,7 @@ CONFIG_4xx=y | |||
19 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
20 | CONFIG_PTE_64BIT=y | 20 | CONFIG_PTE_64BIT=y |
21 | CONFIG_PHYS_64BIT=y | 21 | CONFIG_PHYS_64BIT=y |
22 | CONFIG_PPC_MMU_NOHASH=y | ||
22 | # CONFIG_PPC_MM_SLICES is not set | 23 | # CONFIG_PPC_MM_SLICES is not set |
23 | CONFIG_NOT_COHERENT_CACHE=y | 24 | CONFIG_NOT_COHERENT_CACHE=y |
24 | CONFIG_PPC32=y | 25 | CONFIG_PPC32=y |
@@ -45,7 +46,7 @@ CONFIG_GENERIC_GPIO=y | |||
45 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 48 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 49 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 50 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 51 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 52 | CONFIG_OF=y |
@@ -76,12 +77,12 @@ CONFIG_POSIX_MQUEUE=y | |||
76 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
77 | # CONFIG_IKCONFIG is not set | 78 | # CONFIG_IKCONFIG is not set |
78 | CONFIG_LOG_BUF_SHIFT=14 | 79 | CONFIG_LOG_BUF_SHIFT=14 |
79 | # CONFIG_CGROUPS is not set | ||
80 | CONFIG_GROUP_SCHED=y | 80 | CONFIG_GROUP_SCHED=y |
81 | CONFIG_FAIR_GROUP_SCHED=y | 81 | CONFIG_FAIR_GROUP_SCHED=y |
82 | # CONFIG_RT_GROUP_SCHED is not set | 82 | # CONFIG_RT_GROUP_SCHED is not set |
83 | CONFIG_USER_SCHED=y | 83 | CONFIG_USER_SCHED=y |
84 | # CONFIG_CGROUP_SCHED is not set | 84 | # CONFIG_CGROUP_SCHED is not set |
85 | # CONFIG_CGROUPS is not set | ||
85 | CONFIG_SYSFS_DEPRECATED=y | 86 | CONFIG_SYSFS_DEPRECATED=y |
86 | CONFIG_SYSFS_DEPRECATED_V2=y | 87 | CONFIG_SYSFS_DEPRECATED_V2=y |
87 | # CONFIG_RELAY is not set | 88 | # CONFIG_RELAY is not set |
@@ -94,6 +95,7 @@ CONFIG_EMBEDDED=y | |||
94 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
95 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
96 | CONFIG_KALLSYMS_ALL=y | 97 | CONFIG_KALLSYMS_ALL=y |
98 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
97 | CONFIG_KALLSYMS_EXTRA_PASS=y | 99 | CONFIG_KALLSYMS_EXTRA_PASS=y |
98 | CONFIG_HOTPLUG=y | 100 | CONFIG_HOTPLUG=y |
99 | CONFIG_PRINTK=y | 101 | CONFIG_PRINTK=y |
@@ -116,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
116 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
117 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
118 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
119 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
121 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -127,7 +128,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
128 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
129 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
130 | # CONFIG_TINY_SHMEM is not set | ||
131 | CONFIG_BASE_SMALL=0 | 131 | CONFIG_BASE_SMALL=0 |
132 | CONFIG_MODULES=y | 132 | CONFIG_MODULES=y |
133 | # CONFIG_MODULE_FORCE_LOAD is not set | 133 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -135,11 +135,9 @@ CONFIG_MODULE_UNLOAD=y | |||
135 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 135 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
136 | # CONFIG_MODVERSIONS is not set | 136 | # CONFIG_MODVERSIONS is not set |
137 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
138 | CONFIG_KMOD=y | ||
139 | CONFIG_BLOCK=y | 138 | CONFIG_BLOCK=y |
140 | CONFIG_LBD=y | 139 | CONFIG_LBD=y |
141 | # CONFIG_BLK_DEV_IO_TRACE is not set | 140 | # CONFIG_BLK_DEV_IO_TRACE is not set |
142 | # CONFIG_LSF is not set | ||
143 | # CONFIG_BLK_DEV_BSG is not set | 141 | # CONFIG_BLK_DEV_BSG is not set |
144 | # CONFIG_BLK_DEV_INTEGRITY is not set | 142 | # CONFIG_BLK_DEV_INTEGRITY is not set |
145 | 143 | ||
@@ -157,6 +155,10 @@ CONFIG_DEFAULT_AS=y | |||
157 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 155 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
158 | CONFIG_PREEMPT_NOTIFIERS=y | 156 | CONFIG_PREEMPT_NOTIFIERS=y |
159 | CONFIG_CLASSIC_RCU=y | 157 | CONFIG_CLASSIC_RCU=y |
158 | # CONFIG_TREE_RCU is not set | ||
159 | # CONFIG_PREEMPT_RCU is not set | ||
160 | # CONFIG_TREE_RCU_TRACE is not set | ||
161 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
160 | # CONFIG_FREEZER is not set | 162 | # CONFIG_FREEZER is not set |
161 | CONFIG_PPC4xx_PCI_EXPRESS=y | 163 | CONFIG_PPC4xx_PCI_EXPRESS=y |
162 | 164 | ||
@@ -204,6 +206,7 @@ CONFIG_XILINX_VIRTEX_5_FXT=y | |||
204 | # CONFIG_CPU_FREQ is not set | 206 | # CONFIG_CPU_FREQ is not set |
205 | # CONFIG_FSL_ULI1575 is not set | 207 | # CONFIG_FSL_ULI1575 is not set |
206 | CONFIG_OF_RTC=y | 208 | CONFIG_OF_RTC=y |
209 | # CONFIG_SIMPLE_GPIO is not set | ||
207 | 210 | ||
208 | # | 211 | # |
209 | # Kernel options | 212 | # Kernel options |
@@ -227,6 +230,7 @@ CONFIG_BINFMT_ELF=y | |||
227 | # CONFIG_BINFMT_MISC is not set | 230 | # CONFIG_BINFMT_MISC is not set |
228 | CONFIG_MATH_EMULATION=y | 231 | CONFIG_MATH_EMULATION=y |
229 | # CONFIG_IOMMU_HELPER is not set | 232 | # CONFIG_IOMMU_HELPER is not set |
233 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
230 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 234 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
231 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 235 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
232 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 236 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
@@ -241,12 +245,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
241 | CONFIG_PAGEFLAGS_EXTENDED=y | 245 | CONFIG_PAGEFLAGS_EXTENDED=y |
242 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 246 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
243 | CONFIG_MIGRATION=y | 247 | CONFIG_MIGRATION=y |
244 | CONFIG_RESOURCES_64BIT=y | ||
245 | CONFIG_PHYS_ADDR_T_64BIT=y | 248 | CONFIG_PHYS_ADDR_T_64BIT=y |
246 | CONFIG_ZONE_DMA_FLAG=1 | 249 | CONFIG_ZONE_DMA_FLAG=1 |
247 | CONFIG_BOUNCE=y | 250 | CONFIG_BOUNCE=y |
248 | CONFIG_VIRT_TO_BUS=y | 251 | CONFIG_VIRT_TO_BUS=y |
249 | CONFIG_UNEVICTABLE_LRU=y | 252 | CONFIG_UNEVICTABLE_LRU=y |
253 | CONFIG_PPC_4K_PAGES=y | ||
254 | # CONFIG_PPC_16K_PAGES is not set | ||
255 | # CONFIG_PPC_64K_PAGES is not set | ||
250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 256 | CONFIG_FORCE_MAX_ZONEORDER=11 |
251 | CONFIG_PROC_DEVICETREE=y | 257 | CONFIG_PROC_DEVICETREE=y |
252 | # CONFIG_CMDLINE_BOOL is not set | 258 | # CONFIG_CMDLINE_BOOL is not set |
@@ -269,6 +275,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
269 | # CONFIG_PCI_MSI is not set | 275 | # CONFIG_PCI_MSI is not set |
270 | # CONFIG_PCI_LEGACY is not set | 276 | # CONFIG_PCI_LEGACY is not set |
271 | # CONFIG_PCI_DEBUG is not set | 277 | # CONFIG_PCI_DEBUG is not set |
278 | # CONFIG_PCI_STUB is not set | ||
272 | # CONFIG_PCCARD is not set | 279 | # CONFIG_PCCARD is not set |
273 | # CONFIG_HOTPLUG_PCI is not set | 280 | # CONFIG_HOTPLUG_PCI is not set |
274 | # CONFIG_HAS_RAPIDIO is not set | 281 | # CONFIG_HAS_RAPIDIO is not set |
@@ -293,6 +300,7 @@ CONFIG_NET=y | |||
293 | # | 300 | # |
294 | # Networking options | 301 | # Networking options |
295 | # | 302 | # |
303 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
296 | CONFIG_PACKET=y | 304 | CONFIG_PACKET=y |
297 | # CONFIG_PACKET_MMAP is not set | 305 | # CONFIG_PACKET_MMAP is not set |
298 | CONFIG_UNIX=y | 306 | CONFIG_UNIX=y |
@@ -354,10 +362,12 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
354 | # CONFIG_IP_SCTP is not set | 362 | # CONFIG_IP_SCTP is not set |
355 | # CONFIG_TIPC is not set | 363 | # CONFIG_TIPC is not set |
356 | # CONFIG_ATM is not set | 364 | # CONFIG_ATM is not set |
365 | CONFIG_STP=m | ||
357 | CONFIG_BRIDGE=m | 366 | CONFIG_BRIDGE=m |
358 | # CONFIG_NET_DSA is not set | 367 | # CONFIG_NET_DSA is not set |
359 | # CONFIG_VLAN_8021Q is not set | 368 | # CONFIG_VLAN_8021Q is not set |
360 | # CONFIG_DECNET is not set | 369 | # CONFIG_DECNET is not set |
370 | CONFIG_LLC=m | ||
361 | # CONFIG_LLC2 is not set | 371 | # CONFIG_LLC2 is not set |
362 | # CONFIG_IPX is not set | 372 | # CONFIG_IPX is not set |
363 | # CONFIG_ATALK is not set | 373 | # CONFIG_ATALK is not set |
@@ -366,6 +376,7 @@ CONFIG_BRIDGE=m | |||
366 | # CONFIG_ECONET is not set | 376 | # CONFIG_ECONET is not set |
367 | # CONFIG_WAN_ROUTER is not set | 377 | # CONFIG_WAN_ROUTER is not set |
368 | # CONFIG_NET_SCHED is not set | 378 | # CONFIG_NET_SCHED is not set |
379 | # CONFIG_DCB is not set | ||
369 | 380 | ||
370 | # | 381 | # |
371 | # Network testing | 382 | # Network testing |
@@ -378,6 +389,7 @@ CONFIG_BRIDGE=m | |||
378 | # CONFIG_AF_RXRPC is not set | 389 | # CONFIG_AF_RXRPC is not set |
379 | # CONFIG_PHONET is not set | 390 | # CONFIG_PHONET is not set |
380 | # CONFIG_WIRELESS is not set | 391 | # CONFIG_WIRELESS is not set |
392 | # CONFIG_WIMAX is not set | ||
381 | # CONFIG_RFKILL is not set | 393 | # CONFIG_RFKILL is not set |
382 | # CONFIG_NET_9P is not set | 394 | # CONFIG_NET_9P is not set |
383 | 395 | ||
@@ -403,6 +415,7 @@ CONFIG_MTD=y | |||
403 | # CONFIG_MTD_DEBUG is not set | 415 | # CONFIG_MTD_DEBUG is not set |
404 | # CONFIG_MTD_CONCAT is not set | 416 | # CONFIG_MTD_CONCAT is not set |
405 | CONFIG_MTD_PARTITIONS=y | 417 | CONFIG_MTD_PARTITIONS=y |
418 | # CONFIG_MTD_TESTS is not set | ||
406 | # CONFIG_MTD_REDBOOT_PARTS is not set | 419 | # CONFIG_MTD_REDBOOT_PARTS is not set |
407 | # CONFIG_MTD_CMDLINE_PARTS is not set | 420 | # CONFIG_MTD_CMDLINE_PARTS is not set |
408 | CONFIG_MTD_OF_PARTS=y | 421 | CONFIG_MTD_OF_PARTS=y |
@@ -474,6 +487,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
474 | # CONFIG_MTD_ONENAND is not set | 487 | # CONFIG_MTD_ONENAND is not set |
475 | 488 | ||
476 | # | 489 | # |
490 | # LPDDR flash memory drivers | ||
491 | # | ||
492 | # CONFIG_MTD_LPDDR is not set | ||
493 | # CONFIG_MTD_QINFO_PROBE is not set | ||
494 | |||
495 | # | ||
477 | # UBI - Unsorted block images | 496 | # UBI - Unsorted block images |
478 | # | 497 | # |
479 | CONFIG_MTD_UBI=m | 498 | CONFIG_MTD_UBI=m |
@@ -631,6 +650,7 @@ CONFIG_NETDEV_1000=y | |||
631 | # CONFIG_JME is not set | 650 | # CONFIG_JME is not set |
632 | CONFIG_NETDEV_10000=y | 651 | CONFIG_NETDEV_10000=y |
633 | # CONFIG_CHELSIO_T1 is not set | 652 | # CONFIG_CHELSIO_T1 is not set |
653 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
634 | # CONFIG_CHELSIO_T3 is not set | 654 | # CONFIG_CHELSIO_T3 is not set |
635 | # CONFIG_ENIC is not set | 655 | # CONFIG_ENIC is not set |
636 | # CONFIG_IXGBE is not set | 656 | # CONFIG_IXGBE is not set |
@@ -655,6 +675,10 @@ CONFIG_NETDEV_10000=y | |||
655 | # CONFIG_IWLWIFI_LEDS is not set | 675 | # CONFIG_IWLWIFI_LEDS is not set |
656 | 676 | ||
657 | # | 677 | # |
678 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
679 | # | ||
680 | |||
681 | # | ||
658 | # USB Network Adapters | 682 | # USB Network Adapters |
659 | # | 683 | # |
660 | # CONFIG_USB_CATC is not set | 684 | # CONFIG_USB_CATC is not set |
@@ -722,9 +746,12 @@ CONFIG_SERIAL_CORE=y | |||
722 | CONFIG_SERIAL_CORE_CONSOLE=y | 746 | CONFIG_SERIAL_CORE_CONSOLE=y |
723 | # CONFIG_SERIAL_JSM is not set | 747 | # CONFIG_SERIAL_JSM is not set |
724 | CONFIG_SERIAL_OF_PLATFORM=y | 748 | CONFIG_SERIAL_OF_PLATFORM=y |
749 | # CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL is not set | ||
725 | CONFIG_UNIX98_PTYS=y | 750 | CONFIG_UNIX98_PTYS=y |
751 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
726 | CONFIG_LEGACY_PTYS=y | 752 | CONFIG_LEGACY_PTYS=y |
727 | CONFIG_LEGACY_PTY_COUNT=256 | 753 | CONFIG_LEGACY_PTY_COUNT=256 |
754 | # CONFIG_HVC_UDBG is not set | ||
728 | # CONFIG_IPMI_HANDLER is not set | 755 | # CONFIG_IPMI_HANDLER is not set |
729 | # CONFIG_HW_RANDOM is not set | 756 | # CONFIG_HW_RANDOM is not set |
730 | # CONFIG_NVRAM is not set | 757 | # CONFIG_NVRAM is not set |
@@ -800,7 +827,6 @@ CONFIG_I2C_IBM_IIC=m | |||
800 | # CONFIG_PCF8575 is not set | 827 | # CONFIG_PCF8575 is not set |
801 | # CONFIG_SENSORS_PCA9539 is not set | 828 | # CONFIG_SENSORS_PCA9539 is not set |
802 | # CONFIG_SENSORS_PCF8591 is not set | 829 | # CONFIG_SENSORS_PCF8591 is not set |
803 | # CONFIG_TPS65010 is not set | ||
804 | # CONFIG_SENSORS_MAX6875 is not set | 830 | # CONFIG_SENSORS_MAX6875 is not set |
805 | # CONFIG_SENSORS_TSL2550 is not set | 831 | # CONFIG_SENSORS_TSL2550 is not set |
806 | # CONFIG_I2C_DEBUG_CORE is not set | 832 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -853,9 +879,11 @@ CONFIG_SSB_POSSIBLE=y | |||
853 | # CONFIG_MFD_CORE is not set | 879 | # CONFIG_MFD_CORE is not set |
854 | # CONFIG_MFD_SM501 is not set | 880 | # CONFIG_MFD_SM501 is not set |
855 | # CONFIG_HTC_PASIC3 is not set | 881 | # CONFIG_HTC_PASIC3 is not set |
882 | # CONFIG_TPS65010 is not set | ||
856 | # CONFIG_MFD_TMIO is not set | 883 | # CONFIG_MFD_TMIO is not set |
857 | # CONFIG_MFD_WM8400 is not set | 884 | # CONFIG_MFD_WM8400 is not set |
858 | # CONFIG_MFD_WM8350_I2C is not set | 885 | # CONFIG_MFD_WM8350_I2C is not set |
886 | # CONFIG_MFD_PCF50633 is not set | ||
859 | # CONFIG_REGULATOR is not set | 887 | # CONFIG_REGULATOR is not set |
860 | 888 | ||
861 | # | 889 | # |
@@ -972,6 +1000,7 @@ CONFIG_USB_EHCI_HCD=m | |||
972 | CONFIG_USB_EHCI_BIG_ENDIAN_MMIO=y | 1000 | CONFIG_USB_EHCI_BIG_ENDIAN_MMIO=y |
973 | CONFIG_USB_EHCI_BIG_ENDIAN_DESC=y | 1001 | CONFIG_USB_EHCI_BIG_ENDIAN_DESC=y |
974 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1002 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1003 | # CONFIG_USB_OXU210HP_HCD is not set | ||
975 | # CONFIG_USB_ISP116X_HCD is not set | 1004 | # CONFIG_USB_ISP116X_HCD is not set |
976 | # CONFIG_USB_ISP1760_HCD is not set | 1005 | # CONFIG_USB_ISP1760_HCD is not set |
977 | CONFIG_USB_OHCI_HCD=m | 1006 | CONFIG_USB_OHCI_HCD=m |
@@ -1012,7 +1041,6 @@ CONFIG_USB_STORAGE=m | |||
1012 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1041 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1013 | # CONFIG_USB_STORAGE_FREECOM is not set | 1042 | # CONFIG_USB_STORAGE_FREECOM is not set |
1014 | # CONFIG_USB_STORAGE_ISD200 is not set | 1043 | # CONFIG_USB_STORAGE_ISD200 is not set |
1015 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1016 | # CONFIG_USB_STORAGE_USBAT is not set | 1044 | # CONFIG_USB_STORAGE_USBAT is not set |
1017 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1045 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1018 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1046 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1058,6 +1086,11 @@ CONFIG_USB_STORAGE=m | |||
1058 | # CONFIG_USB_ISIGHTFW is not set | 1086 | # CONFIG_USB_ISIGHTFW is not set |
1059 | # CONFIG_USB_VST is not set | 1087 | # CONFIG_USB_VST is not set |
1060 | # CONFIG_USB_GADGET is not set | 1088 | # CONFIG_USB_GADGET is not set |
1089 | |||
1090 | # | ||
1091 | # OTG and related infrastructure | ||
1092 | # | ||
1093 | # CONFIG_USB_GPIO_VBUS is not set | ||
1061 | # CONFIG_UWB is not set | 1094 | # CONFIG_UWB is not set |
1062 | # CONFIG_MMC is not set | 1095 | # CONFIG_MMC is not set |
1063 | # CONFIG_MEMSTICK is not set | 1096 | # CONFIG_MEMSTICK is not set |
@@ -1069,7 +1102,6 @@ CONFIG_USB_STORAGE=m | |||
1069 | # CONFIG_DMADEVICES is not set | 1102 | # CONFIG_DMADEVICES is not set |
1070 | # CONFIG_UIO is not set | 1103 | # CONFIG_UIO is not set |
1071 | # CONFIG_STAGING is not set | 1104 | # CONFIG_STAGING is not set |
1072 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
1073 | 1105 | ||
1074 | # | 1106 | # |
1075 | # File systems | 1107 | # File systems |
@@ -1089,7 +1121,9 @@ CONFIG_FS_MBCACHE=m | |||
1089 | # CONFIG_FS_POSIX_ACL is not set | 1121 | # CONFIG_FS_POSIX_ACL is not set |
1090 | CONFIG_FILE_LOCKING=y | 1122 | CONFIG_FILE_LOCKING=y |
1091 | # CONFIG_XFS_FS is not set | 1123 | # CONFIG_XFS_FS is not set |
1124 | # CONFIG_GFS2_FS is not set | ||
1092 | # CONFIG_OCFS2_FS is not set | 1125 | # CONFIG_OCFS2_FS is not set |
1126 | # CONFIG_BTRFS_FS is not set | ||
1093 | CONFIG_DNOTIFY=y | 1127 | CONFIG_DNOTIFY=y |
1094 | CONFIG_INOTIFY=y | 1128 | CONFIG_INOTIFY=y |
1095 | CONFIG_INOTIFY_USER=y | 1129 | CONFIG_INOTIFY_USER=y |
@@ -1126,10 +1160,7 @@ CONFIG_TMPFS=y | |||
1126 | # CONFIG_TMPFS_POSIX_ACL is not set | 1160 | # CONFIG_TMPFS_POSIX_ACL is not set |
1127 | # CONFIG_HUGETLB_PAGE is not set | 1161 | # CONFIG_HUGETLB_PAGE is not set |
1128 | # CONFIG_CONFIGFS_FS is not set | 1162 | # CONFIG_CONFIGFS_FS is not set |
1129 | 1163 | CONFIG_MISC_FILESYSTEMS=y | |
1130 | # | ||
1131 | # Miscellaneous filesystems | ||
1132 | # | ||
1133 | # CONFIG_ADFS_FS is not set | 1164 | # CONFIG_ADFS_FS is not set |
1134 | # CONFIG_AFFS_FS is not set | 1165 | # CONFIG_AFFS_FS is not set |
1135 | # CONFIG_HFS_FS is not set | 1166 | # CONFIG_HFS_FS is not set |
@@ -1155,6 +1186,7 @@ CONFIG_UBIFS_FS_LZO=y | |||
1155 | CONFIG_UBIFS_FS_ZLIB=y | 1186 | CONFIG_UBIFS_FS_ZLIB=y |
1156 | # CONFIG_UBIFS_FS_DEBUG is not set | 1187 | # CONFIG_UBIFS_FS_DEBUG is not set |
1157 | CONFIG_CRAMFS=y | 1188 | CONFIG_CRAMFS=y |
1189 | # CONFIG_SQUASHFS is not set | ||
1158 | # CONFIG_VXFS_FS is not set | 1190 | # CONFIG_VXFS_FS is not set |
1159 | # CONFIG_MINIX_FS is not set | 1191 | # CONFIG_MINIX_FS is not set |
1160 | # CONFIG_OMFS_FS is not set | 1192 | # CONFIG_OMFS_FS is not set |
@@ -1234,6 +1266,7 @@ CONFIG_NLS_ISO8859_1=m | |||
1234 | # Library routines | 1266 | # Library routines |
1235 | # | 1267 | # |
1236 | CONFIG_BITREVERSE=y | 1268 | CONFIG_BITREVERSE=y |
1269 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1237 | # CONFIG_CRC_CCITT is not set | 1270 | # CONFIG_CRC_CCITT is not set |
1238 | CONFIG_CRC16=m | 1271 | CONFIG_CRC16=m |
1239 | CONFIG_CRC_T10DIF=m | 1272 | CONFIG_CRC_T10DIF=m |
@@ -1287,6 +1320,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1287 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1320 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1288 | # CONFIG_DEBUG_LIST is not set | 1321 | # CONFIG_DEBUG_LIST is not set |
1289 | # CONFIG_DEBUG_SG is not set | 1322 | # CONFIG_DEBUG_SG is not set |
1323 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1290 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1324 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1291 | # CONFIG_RCU_TORTURE_TEST is not set | 1325 | # CONFIG_RCU_TORTURE_TEST is not set |
1292 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1326 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1296,6 +1330,8 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1296 | # CONFIG_LATENCYTOP is not set | 1330 | # CONFIG_LATENCYTOP is not set |
1297 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1331 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1298 | CONFIG_HAVE_FUNCTION_TRACER=y | 1332 | CONFIG_HAVE_FUNCTION_TRACER=y |
1333 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1334 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1299 | 1335 | ||
1300 | # | 1336 | # |
1301 | # Tracers | 1337 | # Tracers |
@@ -1304,11 +1340,13 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1304 | # CONFIG_SCHED_TRACER is not set | 1340 | # CONFIG_SCHED_TRACER is not set |
1305 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1341 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1306 | # CONFIG_BOOT_TRACER is not set | 1342 | # CONFIG_BOOT_TRACER is not set |
1343 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1307 | # CONFIG_STACK_TRACER is not set | 1344 | # CONFIG_STACK_TRACER is not set |
1308 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1345 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1309 | # CONFIG_SAMPLES is not set | 1346 | # CONFIG_SAMPLES is not set |
1310 | CONFIG_HAVE_ARCH_KGDB=y | 1347 | CONFIG_HAVE_ARCH_KGDB=y |
1311 | # CONFIG_KGDB is not set | 1348 | # CONFIG_KGDB is not set |
1349 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1312 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1350 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1313 | # CONFIG_DEBUG_STACK_USAGE is not set | 1351 | # CONFIG_DEBUG_STACK_USAGE is not set |
1314 | # CONFIG_DEBUG_PAGEALLOC is not set | 1352 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1333,11 +1371,15 @@ CONFIG_CRYPTO=y | |||
1333 | # | 1371 | # |
1334 | # CONFIG_CRYPTO_FIPS is not set | 1372 | # CONFIG_CRYPTO_FIPS is not set |
1335 | CONFIG_CRYPTO_ALGAPI=y | 1373 | CONFIG_CRYPTO_ALGAPI=y |
1336 | CONFIG_CRYPTO_AEAD=y | 1374 | CONFIG_CRYPTO_ALGAPI2=y |
1375 | CONFIG_CRYPTO_AEAD2=y | ||
1337 | CONFIG_CRYPTO_BLKCIPHER=y | 1376 | CONFIG_CRYPTO_BLKCIPHER=y |
1377 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1338 | CONFIG_CRYPTO_HASH=y | 1378 | CONFIG_CRYPTO_HASH=y |
1339 | CONFIG_CRYPTO_RNG=y | 1379 | CONFIG_CRYPTO_HASH2=y |
1380 | CONFIG_CRYPTO_RNG2=y | ||
1340 | CONFIG_CRYPTO_MANAGER=y | 1381 | CONFIG_CRYPTO_MANAGER=y |
1382 | CONFIG_CRYPTO_MANAGER2=y | ||
1341 | # CONFIG_CRYPTO_GF128MUL is not set | 1383 | # CONFIG_CRYPTO_GF128MUL is not set |
1342 | # CONFIG_CRYPTO_NULL is not set | 1384 | # CONFIG_CRYPTO_NULL is not set |
1343 | # CONFIG_CRYPTO_CRYPTD is not set | 1385 | # CONFIG_CRYPTO_CRYPTD is not set |
@@ -1419,5 +1461,6 @@ CONFIG_CRYPTO_LZO=m | |||
1419 | CONFIG_VIRTUALIZATION=y | 1461 | CONFIG_VIRTUALIZATION=y |
1420 | CONFIG_KVM=y | 1462 | CONFIG_KVM=y |
1421 | CONFIG_KVM_440=y | 1463 | CONFIG_KVM_440=y |
1464 | # CONFIG_KVM_EXIT_TIMING is not set | ||
1422 | # CONFIG_VIRTIO_PCI is not set | 1465 | # CONFIG_VIRTIO_PCI is not set |
1423 | # CONFIG_VIRTIO_BALLOON is not set | 1466 | # CONFIG_VIRTIO_BALLOON is not set |
diff --git a/arch/powerpc/configs/pq2fads_defconfig b/arch/powerpc/configs/pq2fads_defconfig index 228099d77c3b..fdded96633a1 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:47 2008 | 4 | # Mon Jan 26 15:35:42 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -44,7 +44,7 @@ CONFIG_GENERIC_GPIO=y | |||
44 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
45 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
46 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
47 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
49 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
50 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -87,6 +87,7 @@ CONFIG_EMBEDDED=y | |||
87 | CONFIG_SYSCTL_SYSCALL=y | 87 | CONFIG_SYSCTL_SYSCALL=y |
88 | CONFIG_KALLSYMS=y | 88 | CONFIG_KALLSYMS=y |
89 | CONFIG_KALLSYMS_ALL=y | 89 | CONFIG_KALLSYMS_ALL=y |
90 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
91 | CONFIG_HOTPLUG=y | 92 | CONFIG_HOTPLUG=y |
92 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
@@ -109,7 +110,6 @@ CONFIG_SLUB_DEBUG=y | |||
109 | CONFIG_SLUB=y | 110 | CONFIG_SLUB=y |
110 | # CONFIG_SLOB is not set | 111 | # CONFIG_SLOB is not set |
111 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
112 | # CONFIG_MARKERS is not set | ||
113 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
115 | CONFIG_HAVE_IOREMAP_PROT=y | 115 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -120,13 +120,11 @@ CONFIG_HAVE_CLK=y | |||
120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
121 | CONFIG_SLABINFO=y | 121 | CONFIG_SLABINFO=y |
122 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
123 | # CONFIG_TINY_SHMEM is not set | ||
124 | CONFIG_BASE_SMALL=0 | 123 | CONFIG_BASE_SMALL=0 |
125 | # CONFIG_MODULES is not set | 124 | # CONFIG_MODULES is not set |
126 | CONFIG_BLOCK=y | 125 | CONFIG_BLOCK=y |
127 | # CONFIG_LBD is not set | 126 | # CONFIG_LBD is not set |
128 | # CONFIG_BLK_DEV_IO_TRACE is not set | 127 | # CONFIG_BLK_DEV_IO_TRACE is not set |
129 | # CONFIG_LSF is not set | ||
130 | # CONFIG_BLK_DEV_INTEGRITY is not set | 128 | # CONFIG_BLK_DEV_INTEGRITY is not set |
131 | 129 | ||
132 | # | 130 | # |
@@ -142,6 +140,10 @@ CONFIG_DEFAULT_AS=y | |||
142 | # CONFIG_DEFAULT_NOOP is not set | 140 | # CONFIG_DEFAULT_NOOP is not set |
143 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
144 | CONFIG_CLASSIC_RCU=y | 142 | CONFIG_CLASSIC_RCU=y |
143 | # CONFIG_TREE_RCU is not set | ||
144 | # CONFIG_PREEMPT_RCU is not set | ||
145 | # CONFIG_TREE_RCU_TRACE is not set | ||
146 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
145 | # CONFIG_FREEZER is not set | 147 | # CONFIG_FREEZER is not set |
146 | 148 | ||
147 | # | 149 | # |
@@ -183,6 +185,7 @@ CONFIG_PQ2_ADS_PCI_PIC=y | |||
183 | CONFIG_CPM2=y | 185 | CONFIG_CPM2=y |
184 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
185 | CONFIG_CPM=y | 187 | CONFIG_CPM=y |
188 | # CONFIG_SIMPLE_GPIO is not set | ||
186 | 189 | ||
187 | # | 190 | # |
188 | # Kernel options | 191 | # Kernel options |
@@ -209,6 +212,7 @@ CONFIG_BINFMT_MISC=y | |||
209 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 212 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
210 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 213 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
211 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 214 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
215 | # CONFIG_CRASH_DUMP is not set | ||
212 | CONFIG_ARCH_FLATMEM_ENABLE=y | 216 | CONFIG_ARCH_FLATMEM_ENABLE=y |
213 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 217 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
214 | CONFIG_FLATMEM=y | 218 | CONFIG_FLATMEM=y |
@@ -216,12 +220,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
216 | CONFIG_PAGEFLAGS_EXTENDED=y | 220 | CONFIG_PAGEFLAGS_EXTENDED=y |
217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
218 | CONFIG_MIGRATION=y | 222 | CONFIG_MIGRATION=y |
219 | # CONFIG_RESOURCES_64BIT is not set | ||
220 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 223 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
221 | CONFIG_ZONE_DMA_FLAG=1 | 224 | CONFIG_ZONE_DMA_FLAG=1 |
222 | CONFIG_BOUNCE=y | 225 | CONFIG_BOUNCE=y |
223 | CONFIG_VIRT_TO_BUS=y | 226 | CONFIG_VIRT_TO_BUS=y |
224 | CONFIG_UNEVICTABLE_LRU=y | 227 | CONFIG_UNEVICTABLE_LRU=y |
228 | CONFIG_PPC_4K_PAGES=y | ||
229 | # CONFIG_PPC_16K_PAGES is not set | ||
230 | # CONFIG_PPC_64K_PAGES is not set | ||
225 | CONFIG_FORCE_MAX_ZONEORDER=11 | 231 | CONFIG_FORCE_MAX_ZONEORDER=11 |
226 | CONFIG_PROC_DEVICETREE=y | 232 | CONFIG_PROC_DEVICETREE=y |
227 | # CONFIG_CMDLINE_BOOL is not set | 233 | # CONFIG_CMDLINE_BOOL is not set |
@@ -247,6 +253,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
247 | # CONFIG_PCI_MSI is not set | 253 | # CONFIG_PCI_MSI is not set |
248 | # CONFIG_PCI_LEGACY is not set | 254 | # CONFIG_PCI_LEGACY is not set |
249 | # CONFIG_PCI_DEBUG is not set | 255 | # CONFIG_PCI_DEBUG is not set |
256 | # CONFIG_PCI_STUB is not set | ||
250 | # CONFIG_PCCARD is not set | 257 | # CONFIG_PCCARD is not set |
251 | # CONFIG_HOTPLUG_PCI is not set | 258 | # CONFIG_HOTPLUG_PCI is not set |
252 | # CONFIG_HAS_RAPIDIO is not set | 259 | # CONFIG_HAS_RAPIDIO is not set |
@@ -269,6 +276,7 @@ CONFIG_NET=y | |||
269 | # | 276 | # |
270 | # Networking options | 277 | # Networking options |
271 | # | 278 | # |
279 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
272 | CONFIG_PACKET=y | 280 | CONFIG_PACKET=y |
273 | # CONFIG_PACKET_MMAP is not set | 281 | # CONFIG_PACKET_MMAP is not set |
274 | CONFIG_UNIX=y | 282 | CONFIG_UNIX=y |
@@ -350,6 +358,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
350 | # CONFIG_IPX is not set | 358 | # CONFIG_IPX is not set |
351 | # CONFIG_ATALK is not set | 359 | # CONFIG_ATALK is not set |
352 | # CONFIG_NET_SCHED is not set | 360 | # CONFIG_NET_SCHED is not set |
361 | # CONFIG_DCB is not set | ||
353 | 362 | ||
354 | # | 363 | # |
355 | # Network testing | 364 | # Network testing |
@@ -364,8 +373,9 @@ CONFIG_WIRELESS=y | |||
364 | # CONFIG_CFG80211 is not set | 373 | # CONFIG_CFG80211 is not set |
365 | CONFIG_WIRELESS_OLD_REGULATORY=y | 374 | CONFIG_WIRELESS_OLD_REGULATORY=y |
366 | # CONFIG_WIRELESS_EXT is not set | 375 | # CONFIG_WIRELESS_EXT is not set |
376 | # CONFIG_LIB80211 is not set | ||
367 | # CONFIG_MAC80211 is not set | 377 | # CONFIG_MAC80211 is not set |
368 | # CONFIG_IEEE80211 is not set | 378 | # CONFIG_WIMAX is not set |
369 | # CONFIG_RFKILL is not set | 379 | # CONFIG_RFKILL is not set |
370 | 380 | ||
371 | # | 381 | # |
@@ -460,6 +470,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
460 | # CONFIG_MTD_ONENAND is not set | 470 | # CONFIG_MTD_ONENAND is not set |
461 | 471 | ||
462 | # | 472 | # |
473 | # LPDDR flash memory drivers | ||
474 | # | ||
475 | # CONFIG_MTD_LPDDR is not set | ||
476 | # CONFIG_MTD_QINFO_PROBE is not set | ||
477 | |||
478 | # | ||
463 | # UBI - Unsorted block images | 479 | # UBI - Unsorted block images |
464 | # | 480 | # |
465 | # CONFIG_MTD_UBI is not set | 481 | # CONFIG_MTD_UBI is not set |
@@ -520,6 +536,7 @@ CONFIG_IDE_PROC_FS=y | |||
520 | # CONFIG_BLK_DEV_JMICRON is not set | 536 | # CONFIG_BLK_DEV_JMICRON is not set |
521 | # CONFIG_BLK_DEV_SC1200 is not set | 537 | # CONFIG_BLK_DEV_SC1200 is not set |
522 | # CONFIG_BLK_DEV_PIIX is not set | 538 | # CONFIG_BLK_DEV_PIIX is not set |
539 | # CONFIG_BLK_DEV_IT8172 is not set | ||
523 | # CONFIG_BLK_DEV_IT8213 is not set | 540 | # CONFIG_BLK_DEV_IT8213 is not set |
524 | # CONFIG_BLK_DEV_IT821X is not set | 541 | # CONFIG_BLK_DEV_IT821X is not set |
525 | # CONFIG_BLK_DEV_NS87415 is not set | 542 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -577,9 +594,12 @@ CONFIG_DAVICOM_PHY=y | |||
577 | # CONFIG_BROADCOM_PHY is not set | 594 | # CONFIG_BROADCOM_PHY is not set |
578 | # CONFIG_ICPLUS_PHY is not set | 595 | # CONFIG_ICPLUS_PHY is not set |
579 | # CONFIG_REALTEK_PHY is not set | 596 | # CONFIG_REALTEK_PHY is not set |
597 | # CONFIG_NATIONAL_PHY is not set | ||
598 | # CONFIG_STE10XP is not set | ||
599 | # CONFIG_LSI_ET1011C_PHY is not set | ||
580 | # CONFIG_FIXED_PHY is not set | 600 | # CONFIG_FIXED_PHY is not set |
581 | CONFIG_MDIO_BITBANG=y | 601 | CONFIG_MDIO_BITBANG=y |
582 | # CONFIG_MDIO_OF_GPIO is not set | 602 | # CONFIG_MDIO_GPIO is not set |
583 | CONFIG_NET_ETHERNET=y | 603 | CONFIG_NET_ETHERNET=y |
584 | CONFIG_MII=y | 604 | CONFIG_MII=y |
585 | # CONFIG_HAPPYMEAL is not set | 605 | # CONFIG_HAPPYMEAL is not set |
@@ -624,6 +644,7 @@ CONFIG_NETDEV_1000=y | |||
624 | # CONFIG_JME is not set | 644 | # CONFIG_JME is not set |
625 | CONFIG_NETDEV_10000=y | 645 | CONFIG_NETDEV_10000=y |
626 | # CONFIG_CHELSIO_T1 is not set | 646 | # CONFIG_CHELSIO_T1 is not set |
647 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
627 | # CONFIG_CHELSIO_T3 is not set | 648 | # CONFIG_CHELSIO_T3 is not set |
628 | # CONFIG_ENIC is not set | 649 | # CONFIG_ENIC is not set |
629 | # CONFIG_IXGBE is not set | 650 | # CONFIG_IXGBE is not set |
@@ -646,6 +667,10 @@ CONFIG_NETDEV_10000=y | |||
646 | # CONFIG_WLAN_PRE80211 is not set | 667 | # CONFIG_WLAN_PRE80211 is not set |
647 | # CONFIG_WLAN_80211 is not set | 668 | # CONFIG_WLAN_80211 is not set |
648 | # CONFIG_IWLWIFI_LEDS is not set | 669 | # CONFIG_IWLWIFI_LEDS is not set |
670 | |||
671 | # | ||
672 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
673 | # | ||
649 | # CONFIG_WAN is not set | 674 | # CONFIG_WAN is not set |
650 | # CONFIG_FDDI is not set | 675 | # CONFIG_FDDI is not set |
651 | CONFIG_PPP=y | 676 | CONFIG_PPP=y |
@@ -743,6 +768,7 @@ CONFIG_SERIAL_CPM=y | |||
743 | CONFIG_SERIAL_CPM_CONSOLE=y | 768 | CONFIG_SERIAL_CPM_CONSOLE=y |
744 | # CONFIG_SERIAL_JSM is not set | 769 | # CONFIG_SERIAL_JSM is not set |
745 | CONFIG_UNIX98_PTYS=y | 770 | CONFIG_UNIX98_PTYS=y |
771 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
746 | CONFIG_LEGACY_PTYS=y | 772 | CONFIG_LEGACY_PTYS=y |
747 | CONFIG_LEGACY_PTY_COUNT=256 | 773 | CONFIG_LEGACY_PTY_COUNT=256 |
748 | # CONFIG_IPMI_HANDLER is not set | 774 | # CONFIG_IPMI_HANDLER is not set |
@@ -761,6 +787,11 @@ CONFIG_GPIOLIB=y | |||
761 | # CONFIG_DEBUG_GPIO is not set | 787 | # CONFIG_DEBUG_GPIO is not set |
762 | 788 | ||
763 | # | 789 | # |
790 | # Memory mapped GPIO expanders: | ||
791 | # | ||
792 | # CONFIG_GPIO_XILINX is not set | ||
793 | |||
794 | # | ||
764 | # I2C GPIO expanders: | 795 | # I2C GPIO expanders: |
765 | # | 796 | # |
766 | 797 | ||
@@ -778,11 +809,11 @@ CONFIG_GPIOLIB=y | |||
778 | # CONFIG_THERMAL is not set | 809 | # CONFIG_THERMAL is not set |
779 | # CONFIG_THERMAL_HWMON is not set | 810 | # CONFIG_THERMAL_HWMON is not set |
780 | # CONFIG_WATCHDOG is not set | 811 | # CONFIG_WATCHDOG is not set |
812 | CONFIG_SSB_POSSIBLE=y | ||
781 | 813 | ||
782 | # | 814 | # |
783 | # Sonics Silicon Backplane | 815 | # Sonics Silicon Backplane |
784 | # | 816 | # |
785 | CONFIG_SSB_POSSIBLE=y | ||
786 | # CONFIG_SSB is not set | 817 | # CONFIG_SSB is not set |
787 | 818 | ||
788 | # | 819 | # |
@@ -792,14 +823,7 @@ CONFIG_SSB_POSSIBLE=y | |||
792 | # CONFIG_MFD_SM501 is not set | 823 | # CONFIG_MFD_SM501 is not set |
793 | # CONFIG_HTC_PASIC3 is not set | 824 | # CONFIG_HTC_PASIC3 is not set |
794 | # CONFIG_MFD_TMIO is not set | 825 | # CONFIG_MFD_TMIO is not set |
795 | |||
796 | # | ||
797 | # Voltage and Current regulators | ||
798 | # | ||
799 | # CONFIG_REGULATOR is not set | 826 | # CONFIG_REGULATOR is not set |
800 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
801 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
802 | # CONFIG_REGULATOR_BQ24022 is not set | ||
803 | 827 | ||
804 | # | 828 | # |
805 | # Multimedia devices | 829 | # Multimedia devices |
@@ -844,7 +868,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
844 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | 868 | # CONFIG_USB_GADGET_MUSB_HDRC is not set |
845 | 869 | ||
846 | # | 870 | # |
847 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 871 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
848 | # | 872 | # |
849 | CONFIG_USB_GADGET=y | 873 | CONFIG_USB_GADGET=y |
850 | # CONFIG_USB_GADGET_DEBUG is not set | 874 | # CONFIG_USB_GADGET_DEBUG is not set |
@@ -859,10 +883,12 @@ CONFIG_USB_GADGET_SELECTED=y | |||
859 | # CONFIG_USB_GADGET_PXA25X is not set | 883 | # CONFIG_USB_GADGET_PXA25X is not set |
860 | # CONFIG_USB_GADGET_PXA27X is not set | 884 | # CONFIG_USB_GADGET_PXA27X is not set |
861 | # CONFIG_USB_GADGET_S3C2410 is not set | 885 | # CONFIG_USB_GADGET_S3C2410 is not set |
886 | # CONFIG_USB_GADGET_IMX is not set | ||
862 | CONFIG_USB_GADGET_M66592=y | 887 | CONFIG_USB_GADGET_M66592=y |
863 | CONFIG_USB_M66592=y | 888 | CONFIG_USB_M66592=y |
864 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 889 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
865 | # CONFIG_USB_GADGET_FSL_QE is not set | 890 | # CONFIG_USB_GADGET_FSL_QE is not set |
891 | # CONFIG_USB_GADGET_CI13XXX is not set | ||
866 | # CONFIG_USB_GADGET_NET2280 is not set | 892 | # CONFIG_USB_GADGET_NET2280 is not set |
867 | # CONFIG_USB_GADGET_GOKU is not set | 893 | # CONFIG_USB_GADGET_GOKU is not set |
868 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | 894 | # CONFIG_USB_GADGET_DUMMY_HCD is not set |
@@ -876,6 +902,11 @@ CONFIG_USB_ETH_RNDIS=y | |||
876 | # CONFIG_USB_MIDI_GADGET is not set | 902 | # CONFIG_USB_MIDI_GADGET is not set |
877 | # CONFIG_USB_G_PRINTER is not set | 903 | # CONFIG_USB_G_PRINTER is not set |
878 | # CONFIG_USB_CDC_COMPOSITE is not set | 904 | # CONFIG_USB_CDC_COMPOSITE is not set |
905 | |||
906 | # | ||
907 | # OTG and related infrastructure | ||
908 | # | ||
909 | # CONFIG_USB_GPIO_VBUS is not set | ||
879 | # CONFIG_MMC is not set | 910 | # CONFIG_MMC is not set |
880 | # CONFIG_MEMSTICK is not set | 911 | # CONFIG_MEMSTICK is not set |
881 | # CONFIG_NEW_LEDS is not set | 912 | # CONFIG_NEW_LEDS is not set |
@@ -938,13 +969,11 @@ CONFIG_TMPFS=y | |||
938 | # CONFIG_TMPFS_POSIX_ACL is not set | 969 | # CONFIG_TMPFS_POSIX_ACL is not set |
939 | # CONFIG_HUGETLB_PAGE is not set | 970 | # CONFIG_HUGETLB_PAGE is not set |
940 | # CONFIG_CONFIGFS_FS is not set | 971 | # CONFIG_CONFIGFS_FS is not set |
941 | 972 | CONFIG_MISC_FILESYSTEMS=y | |
942 | # | ||
943 | # Miscellaneous filesystems | ||
944 | # | ||
945 | # CONFIG_HFSPLUS_FS is not set | 973 | # CONFIG_HFSPLUS_FS is not set |
946 | # CONFIG_JFFS2_FS is not set | 974 | # CONFIG_JFFS2_FS is not set |
947 | CONFIG_CRAMFS=y | 975 | CONFIG_CRAMFS=y |
976 | # CONFIG_SQUASHFS is not set | ||
948 | # CONFIG_VXFS_FS is not set | 977 | # CONFIG_VXFS_FS is not set |
949 | # CONFIG_MINIX_FS is not set | 978 | # CONFIG_MINIX_FS is not set |
950 | # CONFIG_OMFS_FS is not set | 979 | # CONFIG_OMFS_FS is not set |
@@ -1035,6 +1064,7 @@ CONFIG_NLS_UTF8=y | |||
1035 | # Library routines | 1064 | # Library routines |
1036 | # | 1065 | # |
1037 | CONFIG_BITREVERSE=y | 1066 | CONFIG_BITREVERSE=y |
1067 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1038 | CONFIG_CRC_CCITT=y | 1068 | CONFIG_CRC_CCITT=y |
1039 | # CONFIG_CRC16 is not set | 1069 | # CONFIG_CRC16 is not set |
1040 | # CONFIG_CRC_T10DIF is not set | 1070 | # CONFIG_CRC_T10DIF is not set |
@@ -1086,6 +1116,7 @@ CONFIG_DEBUG_INFO=y | |||
1086 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1116 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1087 | # CONFIG_DEBUG_LIST is not set | 1117 | # CONFIG_DEBUG_LIST is not set |
1088 | # CONFIG_DEBUG_SG is not set | 1118 | # CONFIG_DEBUG_SG is not set |
1119 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1089 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1120 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1090 | # CONFIG_RCU_TORTURE_TEST is not set | 1121 | # CONFIG_RCU_TORTURE_TEST is not set |
1091 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1122 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -1095,6 +1126,8 @@ CONFIG_DEBUG_INFO=y | |||
1095 | # CONFIG_LATENCYTOP is not set | 1126 | # CONFIG_LATENCYTOP is not set |
1096 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1127 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1097 | CONFIG_HAVE_FUNCTION_TRACER=y | 1128 | CONFIG_HAVE_FUNCTION_TRACER=y |
1129 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1130 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1098 | 1131 | ||
1099 | # | 1132 | # |
1100 | # Tracers | 1133 | # Tracers |
@@ -1103,10 +1136,12 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1103 | # CONFIG_SCHED_TRACER is not set | 1136 | # CONFIG_SCHED_TRACER is not set |
1104 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1137 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1105 | # CONFIG_BOOT_TRACER is not set | 1138 | # CONFIG_BOOT_TRACER is not set |
1139 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1106 | # CONFIG_STACK_TRACER is not set | 1140 | # CONFIG_STACK_TRACER is not set |
1107 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1141 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1108 | # CONFIG_SAMPLES is not set | 1142 | # CONFIG_SAMPLES is not set |
1109 | CONFIG_HAVE_ARCH_KGDB=y | 1143 | CONFIG_HAVE_ARCH_KGDB=y |
1144 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1110 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1145 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1111 | # CONFIG_DEBUG_STACK_USAGE is not set | 1146 | # CONFIG_DEBUG_STACK_USAGE is not set |
1112 | # CONFIG_DEBUG_PAGEALLOC is not set | 1147 | # CONFIG_DEBUG_PAGEALLOC is not set |
@@ -1133,11 +1168,15 @@ CONFIG_CRYPTO=y | |||
1133 | # | 1168 | # |
1134 | # CONFIG_CRYPTO_FIPS is not set | 1169 | # CONFIG_CRYPTO_FIPS is not set |
1135 | CONFIG_CRYPTO_ALGAPI=y | 1170 | CONFIG_CRYPTO_ALGAPI=y |
1136 | CONFIG_CRYPTO_AEAD=y | 1171 | CONFIG_CRYPTO_ALGAPI2=y |
1172 | CONFIG_CRYPTO_AEAD2=y | ||
1137 | CONFIG_CRYPTO_BLKCIPHER=y | 1173 | CONFIG_CRYPTO_BLKCIPHER=y |
1174 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1138 | CONFIG_CRYPTO_HASH=y | 1175 | CONFIG_CRYPTO_HASH=y |
1139 | CONFIG_CRYPTO_RNG=y | 1176 | CONFIG_CRYPTO_HASH2=y |
1177 | CONFIG_CRYPTO_RNG2=y | ||
1140 | CONFIG_CRYPTO_MANAGER=y | 1178 | CONFIG_CRYPTO_MANAGER=y |
1179 | CONFIG_CRYPTO_MANAGER2=y | ||
1141 | # CONFIG_CRYPTO_NULL is not set | 1180 | # CONFIG_CRYPTO_NULL is not set |
1142 | # CONFIG_CRYPTO_CRYPTD is not set | 1181 | # CONFIG_CRYPTO_CRYPTD is not set |
1143 | # CONFIG_CRYPTO_AUTHENC is not set | 1182 | # CONFIG_CRYPTO_AUTHENC is not set |
diff --git a/arch/powerpc/configs/prpmc2800_defconfig b/arch/powerpc/configs/prpmc2800_defconfig index a257da608081..e971db171138 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:48 2008 | 4 | # Mon Jan 26 15:35:44 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -45,7 +45,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
45 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
46 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
47 | CONFIG_GENERIC_NVRAM=y | 47 | CONFIG_GENERIC_NVRAM=y |
48 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 48 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 49 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
50 | CONFIG_PPC_OF=y | 50 | CONFIG_PPC_OF=y |
51 | CONFIG_OF=y | 51 | CONFIG_OF=y |
@@ -75,12 +75,12 @@ CONFIG_POSIX_MQUEUE=y | |||
75 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
76 | # CONFIG_IKCONFIG is not set | 76 | # CONFIG_IKCONFIG is not set |
77 | CONFIG_LOG_BUF_SHIFT=14 | 77 | CONFIG_LOG_BUF_SHIFT=14 |
78 | # CONFIG_CGROUPS is not set | ||
79 | CONFIG_GROUP_SCHED=y | 78 | CONFIG_GROUP_SCHED=y |
80 | # CONFIG_FAIR_GROUP_SCHED is not set | 79 | # CONFIG_FAIR_GROUP_SCHED is not set |
81 | # CONFIG_RT_GROUP_SCHED is not set | 80 | # CONFIG_RT_GROUP_SCHED is not set |
82 | CONFIG_USER_SCHED=y | 81 | CONFIG_USER_SCHED=y |
83 | # CONFIG_CGROUP_SCHED is not set | 82 | # CONFIG_CGROUP_SCHED is not set |
83 | # CONFIG_CGROUPS is not set | ||
84 | CONFIG_SYSFS_DEPRECATED=y | 84 | CONFIG_SYSFS_DEPRECATED=y |
85 | CONFIG_SYSFS_DEPRECATED_V2=y | 85 | CONFIG_SYSFS_DEPRECATED_V2=y |
86 | # CONFIG_RELAY is not set | 86 | # CONFIG_RELAY is not set |
@@ -118,7 +118,6 @@ CONFIG_SLUB_DEBUG=y | |||
118 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
120 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
121 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
124 | CONFIG_HAVE_IOREMAP_PROT=y | 123 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -128,13 +127,11 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
129 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
130 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
131 | # CONFIG_TINY_SHMEM is not set | ||
132 | CONFIG_BASE_SMALL=0 | 130 | CONFIG_BASE_SMALL=0 |
133 | # CONFIG_MODULES is not set | 131 | # CONFIG_MODULES is not set |
134 | CONFIG_BLOCK=y | 132 | CONFIG_BLOCK=y |
135 | CONFIG_LBD=y | 133 | CONFIG_LBD=y |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
137 | # CONFIG_LSF is not set | ||
138 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 136 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | 137 | ||
@@ -151,6 +148,10 @@ CONFIG_DEFAULT_AS=y | |||
151 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
153 | CONFIG_CLASSIC_RCU=y | 150 | CONFIG_CLASSIC_RCU=y |
151 | # CONFIG_TREE_RCU is not set | ||
152 | # CONFIG_PREEMPT_RCU is not set | ||
153 | # CONFIG_TREE_RCU_TRACE is not set | ||
154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
154 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
155 | 156 | ||
156 | # | 157 | # |
@@ -190,6 +191,7 @@ CONFIG_MV64X60=y | |||
190 | # CONFIG_CPU_FREQ is not set | 191 | # CONFIG_CPU_FREQ is not set |
191 | # CONFIG_TAU is not set | 192 | # CONFIG_TAU is not set |
192 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
194 | # CONFIG_SIMPLE_GPIO is not set | ||
193 | 195 | ||
194 | # | 196 | # |
195 | # Kernel options | 197 | # Kernel options |
@@ -213,10 +215,12 @@ CONFIG_BINFMT_ELF=y | |||
213 | # CONFIG_HAVE_AOUT is not set | 215 | # CONFIG_HAVE_AOUT is not set |
214 | CONFIG_BINFMT_MISC=y | 216 | CONFIG_BINFMT_MISC=y |
215 | # CONFIG_IOMMU_HELPER is not set | 217 | # CONFIG_IOMMU_HELPER is not set |
218 | CONFIG_PPC_NEED_DMA_SYNC_OPS=y | ||
216 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
217 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 220 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 221 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
219 | # CONFIG_KEXEC is not set | 222 | # CONFIG_KEXEC is not set |
223 | # CONFIG_CRASH_DUMP is not set | ||
220 | CONFIG_ARCH_FLATMEM_ENABLE=y | 224 | CONFIG_ARCH_FLATMEM_ENABLE=y |
221 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 225 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
222 | CONFIG_SELECT_MEMORY_MODEL=y | 226 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -228,12 +232,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
228 | CONFIG_PAGEFLAGS_EXTENDED=y | 232 | CONFIG_PAGEFLAGS_EXTENDED=y |
229 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 233 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
230 | CONFIG_MIGRATION=y | 234 | CONFIG_MIGRATION=y |
231 | # CONFIG_RESOURCES_64BIT is not set | ||
232 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 235 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
233 | CONFIG_ZONE_DMA_FLAG=1 | 236 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 237 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 238 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_UNEVICTABLE_LRU=y | 239 | CONFIG_UNEVICTABLE_LRU=y |
240 | CONFIG_PPC_4K_PAGES=y | ||
241 | # CONFIG_PPC_16K_PAGES is not set | ||
242 | # CONFIG_PPC_64K_PAGES is not set | ||
237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 243 | CONFIG_FORCE_MAX_ZONEORDER=11 |
238 | CONFIG_PROC_DEVICETREE=y | 244 | CONFIG_PROC_DEVICETREE=y |
239 | # CONFIG_CMDLINE_BOOL is not set | 245 | # CONFIG_CMDLINE_BOOL is not set |
@@ -255,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
255 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
256 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
257 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
258 | # CONFIG_PCCARD is not set | 265 | # CONFIG_PCCARD is not set |
259 | # CONFIG_HOTPLUG_PCI is not set | 266 | # CONFIG_HOTPLUG_PCI is not set |
260 | # CONFIG_HAS_RAPIDIO is not set | 267 | # CONFIG_HAS_RAPIDIO is not set |
@@ -279,6 +286,8 @@ CONFIG_NET=y | |||
279 | # | 286 | # |
280 | # Networking options | 287 | # Networking options |
281 | # | 288 | # |
289 | # CONFIG_NET_NS is not set | ||
290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=y | 291 | CONFIG_PACKET=y |
283 | # CONFIG_PACKET_MMAP is not set | 292 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 293 | CONFIG_UNIX=y |
@@ -335,6 +344,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
335 | # CONFIG_ECONET is not set | 344 | # CONFIG_ECONET is not set |
336 | # CONFIG_WAN_ROUTER is not set | 345 | # CONFIG_WAN_ROUTER is not set |
337 | # CONFIG_NET_SCHED is not set | 346 | # CONFIG_NET_SCHED is not set |
347 | # CONFIG_DCB is not set | ||
338 | 348 | ||
339 | # | 349 | # |
340 | # Network testing | 350 | # Network testing |
@@ -350,8 +360,9 @@ CONFIG_WIRELESS=y | |||
350 | # CONFIG_CFG80211 is not set | 360 | # CONFIG_CFG80211 is not set |
351 | CONFIG_WIRELESS_OLD_REGULATORY=y | 361 | CONFIG_WIRELESS_OLD_REGULATORY=y |
352 | # CONFIG_WIRELESS_EXT is not set | 362 | # CONFIG_WIRELESS_EXT is not set |
363 | # CONFIG_LIB80211 is not set | ||
353 | # CONFIG_MAC80211 is not set | 364 | # CONFIG_MAC80211 is not set |
354 | # CONFIG_IEEE80211 is not set | 365 | # CONFIG_WIMAX is not set |
355 | # CONFIG_RFKILL is not set | 366 | # CONFIG_RFKILL is not set |
356 | # CONFIG_NET_9P is not set | 367 | # CONFIG_NET_9P is not set |
357 | 368 | ||
@@ -445,6 +456,12 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
445 | # CONFIG_MTD_ONENAND is not set | 456 | # CONFIG_MTD_ONENAND is not set |
446 | 457 | ||
447 | # | 458 | # |
459 | # LPDDR flash memory drivers | ||
460 | # | ||
461 | # CONFIG_MTD_LPDDR is not set | ||
462 | # CONFIG_MTD_QINFO_PROBE is not set | ||
463 | |||
464 | # | ||
448 | # UBI - Unsorted block images | 465 | # UBI - Unsorted block images |
449 | # | 466 | # |
450 | # CONFIG_MTD_UBI is not set | 467 | # CONFIG_MTD_UBI is not set |
@@ -475,8 +492,10 @@ CONFIG_MISC_DEVICES=y | |||
475 | # CONFIG_EEPROM_93CX6 is not set | 492 | # CONFIG_EEPROM_93CX6 is not set |
476 | # CONFIG_SGI_IOC4 is not set | 493 | # CONFIG_SGI_IOC4 is not set |
477 | # CONFIG_TIFM_CORE is not set | 494 | # CONFIG_TIFM_CORE is not set |
495 | # CONFIG_ICS932S401 is not set | ||
478 | # CONFIG_ENCLOSURE_SERVICES is not set | 496 | # CONFIG_ENCLOSURE_SERVICES is not set |
479 | # CONFIG_HP_ILO is not set | 497 | # CONFIG_HP_ILO is not set |
498 | # CONFIG_C2PORT is not set | ||
480 | CONFIG_HAVE_IDE=y | 499 | CONFIG_HAVE_IDE=y |
481 | CONFIG_IDE=y | 500 | CONFIG_IDE=y |
482 | 501 | ||
@@ -489,7 +508,6 @@ CONFIG_IDE_GD_ATA=y | |||
489 | # CONFIG_IDE_GD_ATAPI is not set | 508 | # CONFIG_IDE_GD_ATAPI is not set |
490 | # CONFIG_BLK_DEV_IDECD is not set | 509 | # CONFIG_BLK_DEV_IDECD is not set |
491 | # CONFIG_BLK_DEV_IDETAPE is not set | 510 | # CONFIG_BLK_DEV_IDETAPE is not set |
492 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
493 | # CONFIG_IDE_TASK_IOCTL is not set | 511 | # CONFIG_IDE_TASK_IOCTL is not set |
494 | CONFIG_IDE_PROC_FS=y | 512 | CONFIG_IDE_PROC_FS=y |
495 | 513 | ||
@@ -519,6 +537,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
519 | # CONFIG_BLK_DEV_JMICRON is not set | 537 | # CONFIG_BLK_DEV_JMICRON is not set |
520 | # CONFIG_BLK_DEV_SC1200 is not set | 538 | # CONFIG_BLK_DEV_SC1200 is not set |
521 | # CONFIG_BLK_DEV_PIIX is not set | 539 | # CONFIG_BLK_DEV_PIIX is not set |
540 | # CONFIG_BLK_DEV_IT8172 is not set | ||
522 | # CONFIG_BLK_DEV_IT8213 is not set | 541 | # CONFIG_BLK_DEV_IT8213 is not set |
523 | # CONFIG_BLK_DEV_IT821X is not set | 542 | # CONFIG_BLK_DEV_IT821X is not set |
524 | # CONFIG_BLK_DEV_NS87415 is not set | 543 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -571,6 +590,7 @@ CONFIG_BLK_DEV_SD=y | |||
571 | # CONFIG_SCSI_SRP_ATTRS is not set | 590 | # CONFIG_SCSI_SRP_ATTRS is not set |
572 | CONFIG_SCSI_LOWLEVEL=y | 591 | CONFIG_SCSI_LOWLEVEL=y |
573 | # CONFIG_ISCSI_TCP is not set | 592 | # CONFIG_ISCSI_TCP is not set |
593 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
574 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 594 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
575 | # CONFIG_SCSI_3W_9XXX is not set | 595 | # CONFIG_SCSI_3W_9XXX is not set |
576 | # CONFIG_SCSI_ACARD is not set | 596 | # CONFIG_SCSI_ACARD is not set |
@@ -587,6 +607,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
587 | # CONFIG_MEGARAID_SAS is not set | 607 | # CONFIG_MEGARAID_SAS is not set |
588 | # CONFIG_SCSI_HPTIOP is not set | 608 | # CONFIG_SCSI_HPTIOP is not set |
589 | # CONFIG_SCSI_BUSLOGIC is not set | 609 | # CONFIG_SCSI_BUSLOGIC is not set |
610 | # CONFIG_LIBFC is not set | ||
611 | # CONFIG_FCOE is not set | ||
590 | # CONFIG_SCSI_DMX3191D is not set | 612 | # CONFIG_SCSI_DMX3191D is not set |
591 | # CONFIG_SCSI_EATA is not set | 613 | # CONFIG_SCSI_EATA is not set |
592 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 614 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -707,6 +729,9 @@ CONFIG_PHYLIB=y | |||
707 | # CONFIG_BROADCOM_PHY is not set | 729 | # CONFIG_BROADCOM_PHY is not set |
708 | # CONFIG_ICPLUS_PHY is not set | 730 | # CONFIG_ICPLUS_PHY is not set |
709 | # CONFIG_REALTEK_PHY is not set | 731 | # CONFIG_REALTEK_PHY is not set |
732 | # CONFIG_NATIONAL_PHY is not set | ||
733 | # CONFIG_STE10XP is not set | ||
734 | # CONFIG_LSI_ET1011C_PHY is not set | ||
710 | # CONFIG_FIXED_PHY is not set | 735 | # CONFIG_FIXED_PHY is not set |
711 | # CONFIG_MDIO_BITBANG is not set | 736 | # CONFIG_MDIO_BITBANG is not set |
712 | CONFIG_NET_ETHERNET=y | 737 | CONFIG_NET_ETHERNET=y |
@@ -730,7 +755,6 @@ CONFIG_NET_PCI=y | |||
730 | # CONFIG_ADAPTEC_STARFIRE is not set | 755 | # CONFIG_ADAPTEC_STARFIRE is not set |
731 | # CONFIG_B44 is not set | 756 | # CONFIG_B44 is not set |
732 | # CONFIG_FORCEDETH is not set | 757 | # CONFIG_FORCEDETH is not set |
733 | # CONFIG_EEPRO100 is not set | ||
734 | CONFIG_E100=y | 758 | CONFIG_E100=y |
735 | # CONFIG_FEALNX is not set | 759 | # CONFIG_FEALNX is not set |
736 | # CONFIG_NATSEMI is not set | 760 | # CONFIG_NATSEMI is not set |
@@ -744,6 +768,7 @@ CONFIG_8139TOO=y | |||
744 | # CONFIG_R6040 is not set | 768 | # CONFIG_R6040 is not set |
745 | # CONFIG_SIS900 is not set | 769 | # CONFIG_SIS900 is not set |
746 | # CONFIG_EPIC100 is not set | 770 | # CONFIG_EPIC100 is not set |
771 | # CONFIG_SMSC9420 is not set | ||
747 | # CONFIG_SUNDANCE is not set | 772 | # CONFIG_SUNDANCE is not set |
748 | # CONFIG_TLAN is not set | 773 | # CONFIG_TLAN is not set |
749 | # CONFIG_VIA_RHINE is not set | 774 | # CONFIG_VIA_RHINE is not set |
@@ -773,6 +798,7 @@ CONFIG_MV643XX_ETH=y | |||
773 | # CONFIG_JME is not set | 798 | # CONFIG_JME is not set |
774 | CONFIG_NETDEV_10000=y | 799 | CONFIG_NETDEV_10000=y |
775 | # CONFIG_CHELSIO_T1 is not set | 800 | # CONFIG_CHELSIO_T1 is not set |
801 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
776 | # CONFIG_CHELSIO_T3 is not set | 802 | # CONFIG_CHELSIO_T3 is not set |
777 | # CONFIG_ENIC is not set | 803 | # CONFIG_ENIC is not set |
778 | # CONFIG_IXGBE is not set | 804 | # CONFIG_IXGBE is not set |
@@ -797,6 +823,10 @@ CONFIG_NETDEV_10000=y | |||
797 | # CONFIG_IWLWIFI_LEDS is not set | 823 | # CONFIG_IWLWIFI_LEDS is not set |
798 | 824 | ||
799 | # | 825 | # |
826 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
827 | # | ||
828 | |||
829 | # | ||
800 | # USB Network Adapters | 830 | # USB Network Adapters |
801 | # | 831 | # |
802 | # CONFIG_USB_CATC is not set | 832 | # CONFIG_USB_CATC is not set |
@@ -877,8 +907,10 @@ CONFIG_SERIAL_CORE=y | |||
877 | CONFIG_SERIAL_CORE_CONSOLE=y | 907 | CONFIG_SERIAL_CORE_CONSOLE=y |
878 | # CONFIG_SERIAL_JSM is not set | 908 | # CONFIG_SERIAL_JSM is not set |
879 | CONFIG_UNIX98_PTYS=y | 909 | CONFIG_UNIX98_PTYS=y |
910 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
880 | CONFIG_LEGACY_PTYS=y | 911 | CONFIG_LEGACY_PTYS=y |
881 | CONFIG_LEGACY_PTY_COUNT=256 | 912 | CONFIG_LEGACY_PTY_COUNT=256 |
913 | # CONFIG_HVC_UDBG is not set | ||
882 | # CONFIG_IPMI_HANDLER is not set | 914 | # CONFIG_IPMI_HANDLER is not set |
883 | # CONFIG_HW_RANDOM is not set | 915 | # CONFIG_HW_RANDOM is not set |
884 | # CONFIG_NVRAM is not set | 916 | # CONFIG_NVRAM is not set |
@@ -970,8 +1002,10 @@ CONFIG_HWMON=y | |||
970 | # CONFIG_SENSORS_ADM1029 is not set | 1002 | # CONFIG_SENSORS_ADM1029 is not set |
971 | # CONFIG_SENSORS_ADM1031 is not set | 1003 | # CONFIG_SENSORS_ADM1031 is not set |
972 | # CONFIG_SENSORS_ADM9240 is not set | 1004 | # CONFIG_SENSORS_ADM9240 is not set |
1005 | # CONFIG_SENSORS_ADT7462 is not set | ||
973 | # CONFIG_SENSORS_ADT7470 is not set | 1006 | # CONFIG_SENSORS_ADT7470 is not set |
974 | # CONFIG_SENSORS_ADT7473 is not set | 1007 | # CONFIG_SENSORS_ADT7473 is not set |
1008 | # CONFIG_SENSORS_ADT7475 is not set | ||
975 | # CONFIG_SENSORS_ATXP1 is not set | 1009 | # CONFIG_SENSORS_ATXP1 is not set |
976 | # CONFIG_SENSORS_DS1621 is not set | 1010 | # CONFIG_SENSORS_DS1621 is not set |
977 | # CONFIG_SENSORS_I5K_AMB is not set | 1011 | # CONFIG_SENSORS_I5K_AMB is not set |
@@ -992,6 +1026,7 @@ CONFIG_HWMON=y | |||
992 | # CONFIG_SENSORS_LM90 is not set | 1026 | # CONFIG_SENSORS_LM90 is not set |
993 | # CONFIG_SENSORS_LM92 is not set | 1027 | # CONFIG_SENSORS_LM92 is not set |
994 | # CONFIG_SENSORS_LM93 is not set | 1028 | # CONFIG_SENSORS_LM93 is not set |
1029 | # CONFIG_SENSORS_LTC4245 is not set | ||
995 | # CONFIG_SENSORS_MAX1619 is not set | 1030 | # CONFIG_SENSORS_MAX1619 is not set |
996 | # CONFIG_SENSORS_MAX6650 is not set | 1031 | # CONFIG_SENSORS_MAX6650 is not set |
997 | # CONFIG_SENSORS_PC87360 is not set | 1032 | # CONFIG_SENSORS_PC87360 is not set |
@@ -1018,11 +1053,11 @@ CONFIG_HWMON=y | |||
1018 | # CONFIG_THERMAL is not set | 1053 | # CONFIG_THERMAL is not set |
1019 | # CONFIG_THERMAL_HWMON is not set | 1054 | # CONFIG_THERMAL_HWMON is not set |
1020 | # CONFIG_WATCHDOG is not set | 1055 | # CONFIG_WATCHDOG is not set |
1056 | CONFIG_SSB_POSSIBLE=y | ||
1021 | 1057 | ||
1022 | # | 1058 | # |
1023 | # Sonics Silicon Backplane | 1059 | # Sonics Silicon Backplane |
1024 | # | 1060 | # |
1025 | CONFIG_SSB_POSSIBLE=y | ||
1026 | # CONFIG_SSB is not set | 1061 | # CONFIG_SSB is not set |
1027 | 1062 | ||
1028 | # | 1063 | # |
@@ -1031,18 +1066,13 @@ CONFIG_SSB_POSSIBLE=y | |||
1031 | # CONFIG_MFD_CORE is not set | 1066 | # CONFIG_MFD_CORE is not set |
1032 | # CONFIG_MFD_SM501 is not set | 1067 | # CONFIG_MFD_SM501 is not set |
1033 | # CONFIG_HTC_PASIC3 is not set | 1068 | # CONFIG_HTC_PASIC3 is not set |
1069 | # CONFIG_TWL4030_CORE is not set | ||
1034 | # CONFIG_MFD_TMIO is not set | 1070 | # CONFIG_MFD_TMIO is not set |
1035 | # CONFIG_PMIC_DA903X is not set | 1071 | # CONFIG_PMIC_DA903X is not set |
1036 | # CONFIG_MFD_WM8400 is not set | 1072 | # CONFIG_MFD_WM8400 is not set |
1037 | # CONFIG_MFD_WM8350_I2C is not set | 1073 | # CONFIG_MFD_WM8350_I2C is not set |
1038 | 1074 | # CONFIG_MFD_PCF50633 is not set | |
1039 | # | ||
1040 | # Voltage and Current regulators | ||
1041 | # | ||
1042 | # CONFIG_REGULATOR is not set | 1075 | # CONFIG_REGULATOR is not set |
1043 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1044 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1045 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1046 | 1076 | ||
1047 | # | 1077 | # |
1048 | # Multimedia devices | 1078 | # Multimedia devices |
@@ -1101,11 +1131,9 @@ CONFIG_HID_COMPAT=y | |||
1101 | CONFIG_HID_A4TECH=y | 1131 | CONFIG_HID_A4TECH=y |
1102 | CONFIG_HID_APPLE=y | 1132 | CONFIG_HID_APPLE=y |
1103 | CONFIG_HID_BELKIN=y | 1133 | CONFIG_HID_BELKIN=y |
1104 | CONFIG_HID_BRIGHT=y | ||
1105 | CONFIG_HID_CHERRY=y | 1134 | CONFIG_HID_CHERRY=y |
1106 | CONFIG_HID_CHICONY=y | 1135 | CONFIG_HID_CHICONY=y |
1107 | CONFIG_HID_CYPRESS=y | 1136 | CONFIG_HID_CYPRESS=y |
1108 | CONFIG_HID_DELL=y | ||
1109 | CONFIG_HID_EZKEY=y | 1137 | CONFIG_HID_EZKEY=y |
1110 | CONFIG_HID_GYRATION=y | 1138 | CONFIG_HID_GYRATION=y |
1111 | CONFIG_HID_LOGITECH=y | 1139 | CONFIG_HID_LOGITECH=y |
@@ -1113,12 +1141,15 @@ CONFIG_HID_LOGITECH=y | |||
1113 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1141 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1114 | CONFIG_HID_MICROSOFT=y | 1142 | CONFIG_HID_MICROSOFT=y |
1115 | CONFIG_HID_MONTEREY=y | 1143 | CONFIG_HID_MONTEREY=y |
1144 | CONFIG_HID_NTRIG=y | ||
1116 | CONFIG_HID_PANTHERLORD=y | 1145 | CONFIG_HID_PANTHERLORD=y |
1117 | # CONFIG_PANTHERLORD_FF is not set | 1146 | # CONFIG_PANTHERLORD_FF is not set |
1118 | CONFIG_HID_PETALYNX=y | 1147 | CONFIG_HID_PETALYNX=y |
1119 | CONFIG_HID_SAMSUNG=y | 1148 | CONFIG_HID_SAMSUNG=y |
1120 | CONFIG_HID_SONY=y | 1149 | CONFIG_HID_SONY=y |
1121 | CONFIG_HID_SUNPLUS=y | 1150 | CONFIG_HID_SUNPLUS=y |
1151 | # CONFIG_GREENASIA_FF is not set | ||
1152 | CONFIG_HID_TOPSEED=y | ||
1122 | CONFIG_THRUSTMASTER_FF=y | 1153 | CONFIG_THRUSTMASTER_FF=y |
1123 | CONFIG_ZEROPLUS_FF=y | 1154 | CONFIG_ZEROPLUS_FF=y |
1124 | CONFIG_USB_SUPPORT=y | 1155 | CONFIG_USB_SUPPORT=y |
@@ -1148,6 +1179,7 @@ CONFIG_USB_EHCI_HCD=y | |||
1148 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1179 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1149 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1180 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1150 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1181 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1182 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1151 | # CONFIG_USB_ISP116X_HCD is not set | 1183 | # CONFIG_USB_ISP116X_HCD is not set |
1152 | # CONFIG_USB_ISP1760_HCD is not set | 1184 | # CONFIG_USB_ISP1760_HCD is not set |
1153 | CONFIG_USB_OHCI_HCD=y | 1185 | CONFIG_USB_OHCI_HCD=y |
@@ -1170,11 +1202,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1170 | # CONFIG_USB_TMC is not set | 1202 | # CONFIG_USB_TMC is not set |
1171 | 1203 | ||
1172 | # | 1204 | # |
1173 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1205 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
1174 | # | 1206 | # |
1175 | 1207 | ||
1176 | # | 1208 | # |
1177 | # may also be needed; see USB_STORAGE Help for more information | 1209 | # see USB_STORAGE Help for more information |
1178 | # | 1210 | # |
1179 | # CONFIG_USB_STORAGE is not set | 1211 | # CONFIG_USB_STORAGE is not set |
1180 | # CONFIG_USB_LIBUSUAL is not set | 1212 | # CONFIG_USB_LIBUSUAL is not set |
@@ -1216,6 +1248,10 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1216 | # CONFIG_USB_ISIGHTFW is not set | 1248 | # CONFIG_USB_ISIGHTFW is not set |
1217 | # CONFIG_USB_VST is not set | 1249 | # CONFIG_USB_VST is not set |
1218 | # CONFIG_USB_GADGET is not set | 1250 | # CONFIG_USB_GADGET is not set |
1251 | |||
1252 | # | ||
1253 | # OTG and related infrastructure | ||
1254 | # | ||
1219 | # CONFIG_UWB is not set | 1255 | # CONFIG_UWB is not set |
1220 | # CONFIG_MMC is not set | 1256 | # CONFIG_MMC is not set |
1221 | # CONFIG_MEMSTICK is not set | 1257 | # CONFIG_MEMSTICK is not set |
@@ -1253,6 +1289,7 @@ CONFIG_RTC_DRV_MAX6900=y | |||
1253 | # CONFIG_RTC_DRV_M41T80 is not set | 1289 | # CONFIG_RTC_DRV_M41T80 is not set |
1254 | # CONFIG_RTC_DRV_S35390A is not set | 1290 | # CONFIG_RTC_DRV_S35390A is not set |
1255 | # CONFIG_RTC_DRV_FM3130 is not set | 1291 | # CONFIG_RTC_DRV_FM3130 is not set |
1292 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1256 | 1293 | ||
1257 | # | 1294 | # |
1258 | # SPI RTC drivers | 1295 | # SPI RTC drivers |
@@ -1299,7 +1336,9 @@ CONFIG_FS_MBCACHE=y | |||
1299 | # CONFIG_FS_POSIX_ACL is not set | 1336 | # CONFIG_FS_POSIX_ACL is not set |
1300 | CONFIG_FILE_LOCKING=y | 1337 | CONFIG_FILE_LOCKING=y |
1301 | # CONFIG_XFS_FS is not set | 1338 | # CONFIG_XFS_FS is not set |
1339 | # CONFIG_GFS2_FS is not set | ||
1302 | # CONFIG_OCFS2_FS is not set | 1340 | # CONFIG_OCFS2_FS is not set |
1341 | # CONFIG_BTRFS_FS is not set | ||
1303 | CONFIG_DNOTIFY=y | 1342 | CONFIG_DNOTIFY=y |
1304 | CONFIG_INOTIFY=y | 1343 | CONFIG_INOTIFY=y |
1305 | CONFIG_INOTIFY_USER=y | 1344 | CONFIG_INOTIFY_USER=y |
@@ -1333,10 +1372,7 @@ CONFIG_TMPFS=y | |||
1333 | # CONFIG_TMPFS_POSIX_ACL is not set | 1372 | # CONFIG_TMPFS_POSIX_ACL is not set |
1334 | # CONFIG_HUGETLB_PAGE is not set | 1373 | # CONFIG_HUGETLB_PAGE is not set |
1335 | # CONFIG_CONFIGFS_FS is not set | 1374 | # CONFIG_CONFIGFS_FS is not set |
1336 | 1375 | CONFIG_MISC_FILESYSTEMS=y | |
1337 | # | ||
1338 | # Miscellaneous filesystems | ||
1339 | # | ||
1340 | # CONFIG_ADFS_FS is not set | 1376 | # CONFIG_ADFS_FS is not set |
1341 | # CONFIG_AFFS_FS is not set | 1377 | # CONFIG_AFFS_FS is not set |
1342 | # CONFIG_HFS_FS is not set | 1378 | # CONFIG_HFS_FS is not set |
@@ -1346,6 +1382,7 @@ CONFIG_TMPFS=y | |||
1346 | # CONFIG_EFS_FS is not set | 1382 | # CONFIG_EFS_FS is not set |
1347 | # CONFIG_JFFS2_FS is not set | 1383 | # CONFIG_JFFS2_FS is not set |
1348 | # CONFIG_CRAMFS is not set | 1384 | # CONFIG_CRAMFS is not set |
1385 | # CONFIG_SQUASHFS is not set | ||
1349 | # CONFIG_VXFS_FS is not set | 1386 | # CONFIG_VXFS_FS is not set |
1350 | # CONFIG_MINIX_FS is not set | 1387 | # CONFIG_MINIX_FS is not set |
1351 | # CONFIG_OMFS_FS is not set | 1388 | # CONFIG_OMFS_FS is not set |
@@ -1400,6 +1437,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1400 | # Library routines | 1437 | # Library routines |
1401 | # | 1438 | # |
1402 | CONFIG_BITREVERSE=y | 1439 | CONFIG_BITREVERSE=y |
1440 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1403 | # CONFIG_CRC_CCITT is not set | 1441 | # CONFIG_CRC_CCITT is not set |
1404 | # CONFIG_CRC16 is not set | 1442 | # CONFIG_CRC16 is not set |
1405 | CONFIG_CRC_T10DIF=y | 1443 | CONFIG_CRC_T10DIF=y |
@@ -1433,6 +1471,8 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1433 | # CONFIG_LATENCYTOP is not set | 1471 | # CONFIG_LATENCYTOP is not set |
1434 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1472 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1435 | CONFIG_HAVE_FUNCTION_TRACER=y | 1473 | CONFIG_HAVE_FUNCTION_TRACER=y |
1474 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1475 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1436 | 1476 | ||
1437 | # | 1477 | # |
1438 | # Tracers | 1478 | # Tracers |
@@ -1440,6 +1480,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1440 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1480 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1441 | # CONFIG_SAMPLES is not set | 1481 | # CONFIG_SAMPLES is not set |
1442 | CONFIG_HAVE_ARCH_KGDB=y | 1482 | CONFIG_HAVE_ARCH_KGDB=y |
1483 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1443 | # CONFIG_IRQSTACKS is not set | 1484 | # CONFIG_IRQSTACKS is not set |
1444 | # CONFIG_BOOTX_TEXT is not set | 1485 | # CONFIG_BOOTX_TEXT is not set |
1445 | # CONFIG_PPC_EARLY_DEBUG is not set | 1486 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -1458,6 +1499,7 @@ CONFIG_CRYPTO=y | |||
1458 | # | 1499 | # |
1459 | # CONFIG_CRYPTO_FIPS is not set | 1500 | # CONFIG_CRYPTO_FIPS is not set |
1460 | # CONFIG_CRYPTO_MANAGER is not set | 1501 | # CONFIG_CRYPTO_MANAGER is not set |
1502 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
1461 | # CONFIG_CRYPTO_GF128MUL is not set | 1503 | # CONFIG_CRYPTO_GF128MUL is not set |
1462 | # CONFIG_CRYPTO_NULL is not set | 1504 | # CONFIG_CRYPTO_NULL is not set |
1463 | # CONFIG_CRYPTO_CRYPTD is not set | 1505 | # CONFIG_CRYPTO_CRYPTD is not set |
diff --git a/arch/powerpc/configs/storcenter_defconfig b/arch/powerpc/configs/storcenter_defconfig index 7eb16ab7b71b..86512c8790d1 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.28-rc3 | 3 | # Linux kernel version: 2.6.29-rc2 |
4 | # Sat Nov 8 12:39:48 2008 | 4 | # Mon Jan 26 15:35:46 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -43,7 +43,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 43 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 44 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 45 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 46 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 48 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 49 | CONFIG_OF=y |
@@ -73,12 +73,12 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
73 | # CONFIG_AUDIT is not set | 73 | # CONFIG_AUDIT is not set |
74 | # CONFIG_IKCONFIG is not set | 74 | # CONFIG_IKCONFIG is not set |
75 | CONFIG_LOG_BUF_SHIFT=14 | 75 | CONFIG_LOG_BUF_SHIFT=14 |
76 | # CONFIG_CGROUPS is not set | ||
77 | CONFIG_GROUP_SCHED=y | 76 | CONFIG_GROUP_SCHED=y |
78 | CONFIG_FAIR_GROUP_SCHED=y | 77 | CONFIG_FAIR_GROUP_SCHED=y |
79 | # CONFIG_RT_GROUP_SCHED is not set | 78 | # CONFIG_RT_GROUP_SCHED is not set |
80 | CONFIG_USER_SCHED=y | 79 | CONFIG_USER_SCHED=y |
81 | # CONFIG_CGROUP_SCHED is not set | 80 | # CONFIG_CGROUP_SCHED is not set |
81 | # CONFIG_CGROUPS is not set | ||
82 | CONFIG_SYSFS_DEPRECATED=y | 82 | CONFIG_SYSFS_DEPRECATED=y |
83 | CONFIG_SYSFS_DEPRECATED_V2=y | 83 | CONFIG_SYSFS_DEPRECATED_V2=y |
84 | # CONFIG_RELAY is not set | 84 | # CONFIG_RELAY is not set |
@@ -110,7 +110,6 @@ CONFIG_SLUB_DEBUG=y | |||
110 | CONFIG_SLUB=y | 110 | CONFIG_SLUB=y |
111 | # CONFIG_SLOB is not set | 111 | # CONFIG_SLOB is not set |
112 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
113 | # CONFIG_MARKERS is not set | ||
114 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
115 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
116 | CONFIG_HAVE_IOREMAP_PROT=y | 115 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -120,7 +119,6 @@ CONFIG_HAVE_ARCH_TRACEHOOK=y | |||
120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
121 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
122 | CONFIG_RT_MUTEXES=y | 121 | CONFIG_RT_MUTEXES=y |
123 | # CONFIG_TINY_SHMEM is not set | ||
124 | CONFIG_BASE_SMALL=0 | 122 | CONFIG_BASE_SMALL=0 |
125 | CONFIG_MODULES=y | 123 | CONFIG_MODULES=y |
126 | # CONFIG_MODULE_FORCE_LOAD is not set | 124 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -128,11 +126,9 @@ CONFIG_MODULE_UNLOAD=y | |||
128 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
129 | # CONFIG_MODVERSIONS is not set | 127 | # CONFIG_MODVERSIONS is not set |
130 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
131 | CONFIG_KMOD=y | ||
132 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
133 | CONFIG_LBD=y | 130 | CONFIG_LBD=y |
134 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
135 | # CONFIG_LSF is not set | ||
136 | # CONFIG_BLK_DEV_BSG is not set | 132 | # CONFIG_BLK_DEV_BSG is not set |
137 | # CONFIG_BLK_DEV_INTEGRITY is not set | 133 | # CONFIG_BLK_DEV_INTEGRITY is not set |
138 | 134 | ||
@@ -149,6 +145,10 @@ CONFIG_DEFAULT_CFQ=y | |||
149 | # CONFIG_DEFAULT_NOOP is not set | 145 | # CONFIG_DEFAULT_NOOP is not set |
150 | CONFIG_DEFAULT_IOSCHED="cfq" | 146 | CONFIG_DEFAULT_IOSCHED="cfq" |
151 | CONFIG_CLASSIC_RCU=y | 147 | CONFIG_CLASSIC_RCU=y |
148 | # CONFIG_TREE_RCU is not set | ||
149 | # CONFIG_PREEMPT_RCU is not set | ||
150 | # CONFIG_TREE_RCU_TRACE is not set | ||
151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
152 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
153 | 153 | ||
154 | # | 154 | # |
@@ -191,6 +191,7 @@ CONFIG_MPIC=y | |||
191 | # CONFIG_TAU is not set | 191 | # CONFIG_TAU is not set |
192 | # CONFIG_QUICC_ENGINE is not set | 192 | # CONFIG_QUICC_ENGINE is not set |
193 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
194 | # CONFIG_SIMPLE_GPIO is not set | ||
194 | 195 | ||
195 | # | 196 | # |
196 | # Kernel options | 197 | # Kernel options |
@@ -217,6 +218,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
217 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 218 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
218 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 219 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
219 | # CONFIG_KEXEC is not set | 220 | # CONFIG_KEXEC is not set |
221 | # CONFIG_CRASH_DUMP is not set | ||
220 | CONFIG_ARCH_FLATMEM_ENABLE=y | 222 | CONFIG_ARCH_FLATMEM_ENABLE=y |
221 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 223 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
222 | CONFIG_SELECT_MEMORY_MODEL=y | 224 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -228,12 +230,14 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
228 | CONFIG_PAGEFLAGS_EXTENDED=y | 230 | CONFIG_PAGEFLAGS_EXTENDED=y |
229 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
230 | CONFIG_MIGRATION=y | 232 | CONFIG_MIGRATION=y |
231 | # CONFIG_RESOURCES_64BIT is not set | ||
232 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
233 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
238 | CONFIG_PPC_4K_PAGES=y | ||
239 | # CONFIG_PPC_16K_PAGES is not set | ||
240 | # CONFIG_PPC_64K_PAGES is not set | ||
237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
238 | CONFIG_PROC_DEVICETREE=y | 242 | CONFIG_PROC_DEVICETREE=y |
239 | CONFIG_CMDLINE_BOOL=y | 243 | CONFIG_CMDLINE_BOOL=y |
@@ -257,6 +261,7 @@ CONFIG_PCI_SYSCALL=y | |||
257 | CONFIG_ARCH_SUPPORTS_MSI=y | 261 | CONFIG_ARCH_SUPPORTS_MSI=y |
258 | # CONFIG_PCI_MSI is not set | 262 | # CONFIG_PCI_MSI is not set |
259 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
264 | # CONFIG_PCI_STUB is not set | ||
260 | # CONFIG_PCCARD is not set | 265 | # CONFIG_PCCARD is not set |
261 | # CONFIG_HOTPLUG_PCI is not set | 266 | # CONFIG_HOTPLUG_PCI is not set |
262 | # CONFIG_HAS_RAPIDIO is not set | 267 | # CONFIG_HAS_RAPIDIO is not set |
@@ -279,6 +284,7 @@ CONFIG_NET=y | |||
279 | # | 284 | # |
280 | # Networking options | 285 | # Networking options |
281 | # | 286 | # |
287 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
282 | CONFIG_PACKET=m | 288 | CONFIG_PACKET=m |
283 | # CONFIG_PACKET_MMAP is not set | 289 | # CONFIG_PACKET_MMAP is not set |
284 | CONFIG_UNIX=y | 290 | CONFIG_UNIX=y |
@@ -330,6 +336,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
330 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
331 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
332 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
339 | # CONFIG_DCB is not set | ||
333 | 340 | ||
334 | # | 341 | # |
335 | # Network testing | 342 | # Network testing |
@@ -345,8 +352,9 @@ CONFIG_WIRELESS=y | |||
345 | # CONFIG_CFG80211 is not set | 352 | # CONFIG_CFG80211 is not set |
346 | CONFIG_WIRELESS_OLD_REGULATORY=y | 353 | CONFIG_WIRELESS_OLD_REGULATORY=y |
347 | # CONFIG_WIRELESS_EXT is not set | 354 | # CONFIG_WIRELESS_EXT is not set |
355 | # CONFIG_LIB80211 is not set | ||
348 | # CONFIG_MAC80211 is not set | 356 | # CONFIG_MAC80211 is not set |
349 | # CONFIG_IEEE80211 is not set | 357 | # CONFIG_WIMAX is not set |
350 | # CONFIG_RFKILL is not set | 358 | # CONFIG_RFKILL is not set |
351 | # CONFIG_NET_9P is not set | 359 | # CONFIG_NET_9P is not set |
352 | 360 | ||
@@ -367,6 +375,7 @@ CONFIG_MTD=y | |||
367 | # CONFIG_MTD_DEBUG is not set | 375 | # CONFIG_MTD_DEBUG is not set |
368 | # CONFIG_MTD_CONCAT is not set | 376 | # CONFIG_MTD_CONCAT is not set |
369 | CONFIG_MTD_PARTITIONS=y | 377 | CONFIG_MTD_PARTITIONS=y |
378 | # CONFIG_MTD_TESTS is not set | ||
370 | # CONFIG_MTD_REDBOOT_PARTS is not set | 379 | # CONFIG_MTD_REDBOOT_PARTS is not set |
371 | # CONFIG_MTD_CMDLINE_PARTS is not set | 380 | # CONFIG_MTD_CMDLINE_PARTS is not set |
372 | # CONFIG_MTD_OF_PARTS is not set | 381 | # CONFIG_MTD_OF_PARTS is not set |
@@ -416,9 +425,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
416 | # | 425 | # |
417 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 426 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
418 | CONFIG_MTD_PHYSMAP=y | 427 | CONFIG_MTD_PHYSMAP=y |
419 | CONFIG_MTD_PHYSMAP_START=0xFF800000 | 428 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
420 | CONFIG_MTD_PHYSMAP_LEN=0x00800000 | ||
421 | CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | ||
422 | # CONFIG_MTD_PHYSMAP_OF is not set | 429 | # CONFIG_MTD_PHYSMAP_OF is not set |
423 | # CONFIG_MTD_INTEL_VR_NOR is not set | 430 | # CONFIG_MTD_INTEL_VR_NOR is not set |
424 | # CONFIG_MTD_PLATRAM is not set | 431 | # CONFIG_MTD_PLATRAM is not set |
@@ -442,6 +449,12 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | |||
442 | # CONFIG_MTD_ONENAND is not set | 449 | # CONFIG_MTD_ONENAND is not set |
443 | 450 | ||
444 | # | 451 | # |
452 | # LPDDR flash memory drivers | ||
453 | # | ||
454 | # CONFIG_MTD_LPDDR is not set | ||
455 | # CONFIG_MTD_QINFO_PROBE is not set | ||
456 | |||
457 | # | ||
445 | # UBI - Unsorted block images | 458 | # UBI - Unsorted block images |
446 | # | 459 | # |
447 | # CONFIG_MTD_UBI is not set | 460 | # CONFIG_MTD_UBI is not set |
@@ -468,8 +481,10 @@ CONFIG_MISC_DEVICES=y | |||
468 | # CONFIG_EEPROM_93CX6 is not set | 481 | # CONFIG_EEPROM_93CX6 is not set |
469 | # CONFIG_SGI_IOC4 is not set | 482 | # CONFIG_SGI_IOC4 is not set |
470 | # CONFIG_TIFM_CORE is not set | 483 | # CONFIG_TIFM_CORE is not set |
484 | # CONFIG_ICS932S401 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | 485 | # CONFIG_ENCLOSURE_SERVICES is not set |
472 | # CONFIG_HP_ILO is not set | 486 | # CONFIG_HP_ILO is not set |
487 | # CONFIG_C2PORT is not set | ||
473 | CONFIG_HAVE_IDE=y | 488 | CONFIG_HAVE_IDE=y |
474 | CONFIG_IDE=y | 489 | CONFIG_IDE=y |
475 | 490 | ||
@@ -483,7 +498,6 @@ CONFIG_IDE_GD_ATA=y | |||
483 | # CONFIG_IDE_GD_ATAPI is not set | 498 | # CONFIG_IDE_GD_ATAPI is not set |
484 | # CONFIG_BLK_DEV_IDECD is not set | 499 | # CONFIG_BLK_DEV_IDECD is not set |
485 | # CONFIG_BLK_DEV_IDETAPE is not set | 500 | # CONFIG_BLK_DEV_IDETAPE is not set |
486 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
487 | # CONFIG_IDE_TASK_IOCTL is not set | 501 | # CONFIG_IDE_TASK_IOCTL is not set |
488 | CONFIG_IDE_PROC_FS=y | 502 | CONFIG_IDE_PROC_FS=y |
489 | 503 | ||
@@ -512,6 +526,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
512 | # CONFIG_BLK_DEV_JMICRON is not set | 526 | # CONFIG_BLK_DEV_JMICRON is not set |
513 | # CONFIG_BLK_DEV_SC1200 is not set | 527 | # CONFIG_BLK_DEV_SC1200 is not set |
514 | # CONFIG_BLK_DEV_PIIX is not set | 528 | # CONFIG_BLK_DEV_PIIX is not set |
529 | # CONFIG_BLK_DEV_IT8172 is not set | ||
515 | # CONFIG_BLK_DEV_IT8213 is not set | 530 | # CONFIG_BLK_DEV_IT8213 is not set |
516 | # CONFIG_BLK_DEV_IT821X is not set | 531 | # CONFIG_BLK_DEV_IT821X is not set |
517 | # CONFIG_BLK_DEV_NS87415 is not set | 532 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -582,6 +597,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
582 | # CONFIG_MEGARAID_SAS is not set | 597 | # CONFIG_MEGARAID_SAS is not set |
583 | # CONFIG_SCSI_HPTIOP is not set | 598 | # CONFIG_SCSI_HPTIOP is not set |
584 | # CONFIG_SCSI_BUSLOGIC is not set | 599 | # CONFIG_SCSI_BUSLOGIC is not set |
600 | # CONFIG_LIBFC is not set | ||
601 | # CONFIG_FCOE is not set | ||
585 | # CONFIG_SCSI_DMX3191D is not set | 602 | # CONFIG_SCSI_DMX3191D is not set |
586 | # CONFIG_SCSI_EATA is not set | 603 | # CONFIG_SCSI_EATA is not set |
587 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 604 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -672,6 +689,10 @@ CONFIG_R8169=y | |||
672 | # CONFIG_IWLWIFI_LEDS is not set | 689 | # CONFIG_IWLWIFI_LEDS is not set |
673 | 690 | ||
674 | # | 691 | # |
692 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
693 | # | ||
694 | |||
695 | # | ||
675 | # USB Network Adapters | 696 | # USB Network Adapters |
676 | # | 697 | # |
677 | # CONFIG_USB_CATC is not set | 698 | # CONFIG_USB_CATC is not set |
@@ -729,8 +750,10 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
729 | # CONFIG_SERIAL_JSM is not set | 750 | # CONFIG_SERIAL_JSM is not set |
730 | # CONFIG_SERIAL_OF_PLATFORM is not set | 751 | # CONFIG_SERIAL_OF_PLATFORM is not set |
731 | CONFIG_UNIX98_PTYS=y | 752 | CONFIG_UNIX98_PTYS=y |
753 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
732 | CONFIG_LEGACY_PTYS=y | 754 | CONFIG_LEGACY_PTYS=y |
733 | CONFIG_LEGACY_PTY_COUNT=256 | 755 | CONFIG_LEGACY_PTY_COUNT=256 |
756 | # CONFIG_HVC_UDBG is not set | ||
734 | # CONFIG_IPMI_HANDLER is not set | 757 | # CONFIG_IPMI_HANDLER is not set |
735 | CONFIG_HW_RANDOM=m | 758 | CONFIG_HW_RANDOM=m |
736 | CONFIG_NVRAM=y | 759 | CONFIG_NVRAM=y |
@@ -816,11 +839,11 @@ CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | |||
816 | # CONFIG_THERMAL is not set | 839 | # CONFIG_THERMAL is not set |
817 | # CONFIG_THERMAL_HWMON is not set | 840 | # CONFIG_THERMAL_HWMON is not set |
818 | # CONFIG_WATCHDOG is not set | 841 | # CONFIG_WATCHDOG is not set |
842 | CONFIG_SSB_POSSIBLE=y | ||
819 | 843 | ||
820 | # | 844 | # |
821 | # Sonics Silicon Backplane | 845 | # Sonics Silicon Backplane |
822 | # | 846 | # |
823 | CONFIG_SSB_POSSIBLE=y | ||
824 | # CONFIG_SSB is not set | 847 | # CONFIG_SSB is not set |
825 | 848 | ||
826 | # | 849 | # |
@@ -829,18 +852,13 @@ CONFIG_SSB_POSSIBLE=y | |||
829 | # CONFIG_MFD_CORE is not set | 852 | # CONFIG_MFD_CORE is not set |
830 | # CONFIG_MFD_SM501 is not set | 853 | # CONFIG_MFD_SM501 is not set |
831 | # CONFIG_HTC_PASIC3 is not set | 854 | # CONFIG_HTC_PASIC3 is not set |
855 | # CONFIG_TWL4030_CORE is not set | ||
832 | # CONFIG_MFD_TMIO is not set | 856 | # CONFIG_MFD_TMIO is not set |
833 | # CONFIG_PMIC_DA903X is not set | 857 | # CONFIG_PMIC_DA903X is not set |
834 | # CONFIG_MFD_WM8400 is not set | 858 | # CONFIG_MFD_WM8400 is not set |
835 | # CONFIG_MFD_WM8350_I2C is not set | 859 | # CONFIG_MFD_WM8350_I2C is not set |
836 | 860 | # CONFIG_MFD_PCF50633 is not set | |
837 | # | ||
838 | # Voltage and Current regulators | ||
839 | # | ||
840 | # CONFIG_REGULATOR is not set | 861 | # CONFIG_REGULATOR is not set |
841 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
842 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
843 | # CONFIG_REGULATOR_BQ24022 is not set | ||
844 | 862 | ||
845 | # | 863 | # |
846 | # Multimedia devices | 864 | # Multimedia devices |
@@ -903,6 +921,7 @@ CONFIG_USB_EHCI_HCD=y | |||
903 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 921 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
904 | # CONFIG_USB_EHCI_FSL is not set | 922 | # CONFIG_USB_EHCI_FSL is not set |
905 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 923 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
924 | # CONFIG_USB_OXU210HP_HCD is not set | ||
906 | # CONFIG_USB_ISP116X_HCD is not set | 925 | # CONFIG_USB_ISP116X_HCD is not set |
907 | # CONFIG_USB_ISP1760_HCD is not set | 926 | # CONFIG_USB_ISP1760_HCD is not set |
908 | CONFIG_USB_OHCI_HCD=y | 927 | CONFIG_USB_OHCI_HCD=y |
@@ -925,18 +944,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
925 | # CONFIG_USB_TMC is not set | 944 | # CONFIG_USB_TMC is not set |
926 | 945 | ||
927 | # | 946 | # |
928 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 947 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; |
929 | # | 948 | # |
930 | 949 | ||
931 | # | 950 | # |
932 | # may also be needed; see USB_STORAGE Help for more information | 951 | # see USB_STORAGE Help for more information |
933 | # | 952 | # |
934 | CONFIG_USB_STORAGE=y | 953 | CONFIG_USB_STORAGE=y |
935 | # CONFIG_USB_STORAGE_DEBUG is not set | 954 | # CONFIG_USB_STORAGE_DEBUG is not set |
936 | # CONFIG_USB_STORAGE_DATAFAB is not set | 955 | # CONFIG_USB_STORAGE_DATAFAB is not set |
937 | # CONFIG_USB_STORAGE_FREECOM is not set | 956 | # CONFIG_USB_STORAGE_FREECOM is not set |
938 | # CONFIG_USB_STORAGE_ISD200 is not set | 957 | # CONFIG_USB_STORAGE_ISD200 is not set |
939 | # CONFIG_USB_STORAGE_DPCM is not set | ||
940 | # CONFIG_USB_STORAGE_USBAT is not set | 958 | # CONFIG_USB_STORAGE_USBAT is not set |
941 | # CONFIG_USB_STORAGE_SDDR09 is not set | 959 | # CONFIG_USB_STORAGE_SDDR09 is not set |
942 | # CONFIG_USB_STORAGE_SDDR55 is not set | 960 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -983,6 +1001,10 @@ CONFIG_USB_STORAGE=y | |||
983 | # CONFIG_USB_ISIGHTFW is not set | 1001 | # CONFIG_USB_ISIGHTFW is not set |
984 | # CONFIG_USB_VST is not set | 1002 | # CONFIG_USB_VST is not set |
985 | # CONFIG_USB_GADGET is not set | 1003 | # CONFIG_USB_GADGET is not set |
1004 | |||
1005 | # | ||
1006 | # OTG and related infrastructure | ||
1007 | # | ||
986 | # CONFIG_UWB is not set | 1008 | # CONFIG_UWB is not set |
987 | # CONFIG_MMC is not set | 1009 | # CONFIG_MMC is not set |
988 | # CONFIG_MEMSTICK is not set | 1010 | # CONFIG_MEMSTICK is not set |
@@ -1020,6 +1042,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
1020 | # CONFIG_RTC_DRV_M41T80 is not set | 1042 | # CONFIG_RTC_DRV_M41T80 is not set |
1021 | # CONFIG_RTC_DRV_S35390A is not set | 1043 | # CONFIG_RTC_DRV_S35390A is not set |
1022 | # CONFIG_RTC_DRV_FM3130 is not set | 1044 | # CONFIG_RTC_DRV_FM3130 is not set |
1045 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1023 | 1046 | ||
1024 | # | 1047 | # |
1025 | # SPI RTC drivers | 1048 | # SPI RTC drivers |
@@ -1070,7 +1093,9 @@ CONFIG_XFS_FS=m | |||
1070 | # CONFIG_XFS_POSIX_ACL is not set | 1093 | # CONFIG_XFS_POSIX_ACL is not set |
1071 | # CONFIG_XFS_RT is not set | 1094 | # CONFIG_XFS_RT is not set |
1072 | # CONFIG_XFS_DEBUG is not set | 1095 | # CONFIG_XFS_DEBUG is not set |
1096 | # CONFIG_GFS2_FS is not set | ||
1073 | # CONFIG_OCFS2_FS is not set | 1097 | # CONFIG_OCFS2_FS is not set |
1098 | # CONFIG_BTRFS_FS is not set | ||
1074 | CONFIG_DNOTIFY=y | 1099 | CONFIG_DNOTIFY=y |
1075 | CONFIG_INOTIFY=y | 1100 | CONFIG_INOTIFY=y |
1076 | CONFIG_INOTIFY_USER=y | 1101 | CONFIG_INOTIFY_USER=y |
@@ -1104,10 +1129,7 @@ CONFIG_TMPFS=y | |||
1104 | # CONFIG_TMPFS_POSIX_ACL is not set | 1129 | # CONFIG_TMPFS_POSIX_ACL is not set |
1105 | # CONFIG_HUGETLB_PAGE is not set | 1130 | # CONFIG_HUGETLB_PAGE is not set |
1106 | # CONFIG_CONFIGFS_FS is not set | 1131 | # CONFIG_CONFIGFS_FS is not set |
1107 | 1132 | CONFIG_MISC_FILESYSTEMS=y | |
1108 | # | ||
1109 | # Miscellaneous filesystems | ||
1110 | # | ||
1111 | # CONFIG_ADFS_FS is not set | 1133 | # CONFIG_ADFS_FS is not set |
1112 | # CONFIG_AFFS_FS is not set | 1134 | # CONFIG_AFFS_FS is not set |
1113 | # CONFIG_HFS_FS is not set | 1135 | # CONFIG_HFS_FS is not set |
@@ -1127,6 +1149,7 @@ CONFIG_JFFS2_ZLIB=y | |||
1127 | CONFIG_JFFS2_RTIME=y | 1149 | CONFIG_JFFS2_RTIME=y |
1128 | # CONFIG_JFFS2_RUBIN is not set | 1150 | # CONFIG_JFFS2_RUBIN is not set |
1129 | # CONFIG_CRAMFS is not set | 1151 | # CONFIG_CRAMFS is not set |
1152 | # CONFIG_SQUASHFS is not set | ||
1130 | # CONFIG_VXFS_FS is not set | 1153 | # CONFIG_VXFS_FS is not set |
1131 | # CONFIG_MINIX_FS is not set | 1154 | # CONFIG_MINIX_FS is not set |
1132 | # CONFIG_OMFS_FS is not set | 1155 | # CONFIG_OMFS_FS is not set |
@@ -1204,6 +1227,7 @@ CONFIG_NLS_UTF8=y | |||
1204 | # Library routines | 1227 | # Library routines |
1205 | # | 1228 | # |
1206 | CONFIG_BITREVERSE=y | 1229 | CONFIG_BITREVERSE=y |
1230 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1207 | # CONFIG_CRC_CCITT is not set | 1231 | # CONFIG_CRC_CCITT is not set |
1208 | # CONFIG_CRC16 is not set | 1232 | # CONFIG_CRC16 is not set |
1209 | CONFIG_CRC_T10DIF=y | 1233 | CONFIG_CRC_T10DIF=y |
@@ -1239,6 +1263,8 @@ CONFIG_FRAME_WARN=1024 | |||
1239 | # CONFIG_LATENCYTOP is not set | 1263 | # CONFIG_LATENCYTOP is not set |
1240 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1264 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1241 | CONFIG_HAVE_FUNCTION_TRACER=y | 1265 | CONFIG_HAVE_FUNCTION_TRACER=y |
1266 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1267 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1242 | 1268 | ||
1243 | # | 1269 | # |
1244 | # Tracers | 1270 | # Tracers |
@@ -1246,6 +1272,7 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
1246 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1272 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set |
1247 | # CONFIG_SAMPLES is not set | 1273 | # CONFIG_SAMPLES is not set |
1248 | CONFIG_HAVE_ARCH_KGDB=y | 1274 | CONFIG_HAVE_ARCH_KGDB=y |
1275 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1249 | # CONFIG_IRQSTACKS is not set | 1276 | # CONFIG_IRQSTACKS is not set |
1250 | # CONFIG_BOOTX_TEXT is not set | 1277 | # CONFIG_BOOTX_TEXT is not set |
1251 | # CONFIG_PPC_EARLY_DEBUG is not set | 1278 | # CONFIG_PPC_EARLY_DEBUG is not set |
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index 94aa7b011b27..d3694498f3af 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
@@ -492,14 +492,14 @@ static void *vio_dma_iommu_alloc_coherent(struct device *dev, size_t size, | |||
492 | struct vio_dev *viodev = to_vio_dev(dev); | 492 | struct vio_dev *viodev = to_vio_dev(dev); |
493 | void *ret; | 493 | void *ret; |
494 | 494 | ||
495 | if (vio_cmo_alloc(viodev, roundup(size, IOMMU_PAGE_SIZE))) { | 495 | if (vio_cmo_alloc(viodev, roundup(size, PAGE_SIZE))) { |
496 | atomic_inc(&viodev->cmo.allocs_failed); | 496 | atomic_inc(&viodev->cmo.allocs_failed); |
497 | return NULL; | 497 | return NULL; |
498 | } | 498 | } |
499 | 499 | ||
500 | ret = dma_iommu_ops.alloc_coherent(dev, size, dma_handle, flag); | 500 | ret = dma_iommu_ops.alloc_coherent(dev, size, dma_handle, flag); |
501 | if (unlikely(ret == NULL)) { | 501 | if (unlikely(ret == NULL)) { |
502 | vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); | 502 | vio_cmo_dealloc(viodev, roundup(size, PAGE_SIZE)); |
503 | atomic_inc(&viodev->cmo.allocs_failed); | 503 | atomic_inc(&viodev->cmo.allocs_failed); |
504 | } | 504 | } |
505 | 505 | ||
@@ -513,7 +513,7 @@ static void vio_dma_iommu_free_coherent(struct device *dev, size_t size, | |||
513 | 513 | ||
514 | dma_iommu_ops.free_coherent(dev, size, vaddr, dma_handle); | 514 | dma_iommu_ops.free_coherent(dev, size, vaddr, dma_handle); |
515 | 515 | ||
516 | vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); | 516 | vio_cmo_dealloc(viodev, roundup(size, PAGE_SIZE)); |
517 | } | 517 | } |
518 | 518 | ||
519 | static dma_addr_t vio_dma_iommu_map_page(struct device *dev, struct page *page, | 519 | static dma_addr_t vio_dma_iommu_map_page(struct device *dev, struct page *page, |
@@ -572,6 +572,7 @@ static int vio_dma_iommu_map_sg(struct device *dev, struct scatterlist *sglist, | |||
572 | if (unlikely(!ret)) { | 572 | if (unlikely(!ret)) { |
573 | vio_cmo_dealloc(viodev, alloc_size); | 573 | vio_cmo_dealloc(viodev, alloc_size); |
574 | atomic_inc(&viodev->cmo.allocs_failed); | 574 | atomic_inc(&viodev->cmo.allocs_failed); |
575 | return ret; | ||
575 | } | 576 | } |
576 | 577 | ||
577 | for (sgl = sglist, count = 0; count < ret; count++, sgl++) | 578 | for (sgl = sglist, count = 0; count < ret; count++, sgl++) |
diff --git a/arch/powerpc/mm/ppc_mmu_32.c b/arch/powerpc/mm/ppc_mmu_32.c index 45d925360b89..fe65c405412c 100644 --- a/arch/powerpc/mm/ppc_mmu_32.c +++ b/arch/powerpc/mm/ppc_mmu_32.c | |||
@@ -123,9 +123,9 @@ void __init setbat(int index, unsigned long virt, phys_addr_t phys, | |||
123 | int wimgxpp; | 123 | int wimgxpp; |
124 | struct ppc_bat *bat = BATS[index]; | 124 | struct ppc_bat *bat = BATS[index]; |
125 | 125 | ||
126 | if (((flags & _PAGE_NO_CACHE) == 0) && | 126 | if ((flags & _PAGE_NO_CACHE) || |
127 | cpu_has_feature(CPU_FTR_NEED_COHERENT)) | 127 | (cpu_has_feature(CPU_FTR_NEED_COHERENT) == 0)) |
128 | flags |= _PAGE_COHERENT; | 128 | flags &= ~_PAGE_COHERENT; |
129 | 129 | ||
130 | bl = (size >> 17) - 1; | 130 | bl = (size >> 17) - 1; |
131 | if (PVR_VER(mfspr(SPRN_PVR)) != 1) { | 131 | if (PVR_VER(mfspr(SPRN_PVR)) != 1) { |
diff --git a/arch/powerpc/platforms/44x/Makefile b/arch/powerpc/platforms/44x/Makefile index 698133180aee..01f51daace13 100644 --- a/arch/powerpc/platforms/44x/Makefile +++ b/arch/powerpc/platforms/44x/Makefile | |||
@@ -3,5 +3,4 @@ obj-$(CONFIG_PPC44x_SIMPLE) += ppc44x_simple.o | |||
3 | obj-$(CONFIG_EBONY) += ebony.o | 3 | obj-$(CONFIG_EBONY) += ebony.o |
4 | obj-$(CONFIG_SAM440EP) += sam440ep.o | 4 | obj-$(CONFIG_SAM440EP) += sam440ep.o |
5 | obj-$(CONFIG_WARP) += warp.o | 5 | obj-$(CONFIG_WARP) += warp.o |
6 | obj-$(CONFIG_WARP) += warp-nand.o | ||
7 | obj-$(CONFIG_XILINX_VIRTEX_5_FXT) += virtex.o | 6 | obj-$(CONFIG_XILINX_VIRTEX_5_FXT) += virtex.o |
diff --git a/arch/powerpc/platforms/44x/warp-nand.c b/arch/powerpc/platforms/44x/warp-nand.c deleted file mode 100644 index 89ecd76127d8..000000000000 --- a/arch/powerpc/platforms/44x/warp-nand.c +++ /dev/null | |||
@@ -1,135 +0,0 @@ | |||
1 | /* | ||
2 | * PIKA Warp(tm) NAND flash specific routines | ||
3 | * | ||
4 | * Copyright (c) 2008 PIKA Technologies | ||
5 | * Sean MacLennan <smaclennan@pikatech.com> | ||
6 | */ | ||
7 | |||
8 | #include <linux/platform_device.h> | ||
9 | #include <linux/mtd/mtd.h> | ||
10 | #include <linux/mtd/map.h> | ||
11 | #include <linux/mtd/partitions.h> | ||
12 | #include <linux/mtd/nand.h> | ||
13 | #include <linux/mtd/ndfc.h> | ||
14 | #include <linux/of.h> | ||
15 | #include <asm/machdep.h> | ||
16 | |||
17 | |||
18 | #ifdef CONFIG_MTD_NAND_NDFC | ||
19 | |||
20 | #define CS_NAND_0 1 /* use chip select 1 for NAND device 0 */ | ||
21 | |||
22 | #define WARP_NAND_FLASH_REG_ADDR 0xD0000000UL | ||
23 | #define WARP_NAND_FLASH_REG_SIZE 0x2000 | ||
24 | |||
25 | static struct resource warp_ndfc = { | ||
26 | .start = WARP_NAND_FLASH_REG_ADDR, | ||
27 | .end = WARP_NAND_FLASH_REG_ADDR + WARP_NAND_FLASH_REG_SIZE - 1, | ||
28 | .flags = IORESOURCE_MEM, | ||
29 | }; | ||
30 | |||
31 | static struct mtd_partition nand_parts[] = { | ||
32 | { | ||
33 | .name = "kernel", | ||
34 | .offset = 0, | ||
35 | .size = 0x0200000 | ||
36 | }, | ||
37 | { | ||
38 | .name = "root", | ||
39 | .offset = 0x0200000, | ||
40 | .size = 0x3E00000 | ||
41 | }, | ||
42 | { | ||
43 | .name = "persistent", | ||
44 | .offset = 0x4000000, | ||
45 | .size = 0x4000000 | ||
46 | }, | ||
47 | { | ||
48 | .name = "persistent1", | ||
49 | .offset = 0x8000000, | ||
50 | .size = 0x4000000 | ||
51 | }, | ||
52 | { | ||
53 | .name = "persistent2", | ||
54 | .offset = 0xC000000, | ||
55 | .size = 0x4000000 | ||
56 | } | ||
57 | }; | ||
58 | |||
59 | struct ndfc_controller_settings warp_ndfc_settings = { | ||
60 | .ccr_settings = (NDFC_CCR_BS(CS_NAND_0) | NDFC_CCR_ARAC1), | ||
61 | .ndfc_erpn = 0, | ||
62 | }; | ||
63 | |||
64 | static struct ndfc_chip_settings warp_chip0_settings = { | ||
65 | .bank_settings = 0x80002222, | ||
66 | }; | ||
67 | |||
68 | struct platform_nand_ctrl warp_nand_ctrl = { | ||
69 | .priv = &warp_ndfc_settings, | ||
70 | }; | ||
71 | |||
72 | static struct platform_device warp_ndfc_device = { | ||
73 | .name = "ndfc-nand", | ||
74 | .id = 0, | ||
75 | .dev = { | ||
76 | .platform_data = &warp_nand_ctrl, | ||
77 | }, | ||
78 | .num_resources = 1, | ||
79 | .resource = &warp_ndfc, | ||
80 | }; | ||
81 | |||
82 | /* Do NOT set the ecclayout: let it default so it is correct for both | ||
83 | * 64M and 256M flash chips. | ||
84 | */ | ||
85 | static struct platform_nand_chip warp_nand_chip0 = { | ||
86 | .nr_chips = 1, | ||
87 | .chip_offset = CS_NAND_0, | ||
88 | .nr_partitions = ARRAY_SIZE(nand_parts), | ||
89 | .partitions = nand_parts, | ||
90 | .chip_delay = 20, | ||
91 | .priv = &warp_chip0_settings, | ||
92 | }; | ||
93 | |||
94 | static struct platform_device warp_nand_device = { | ||
95 | .name = "ndfc-chip", | ||
96 | .id = 0, | ||
97 | .num_resources = 0, | ||
98 | .dev = { | ||
99 | .platform_data = &warp_nand_chip0, | ||
100 | .parent = &warp_ndfc_device.dev, | ||
101 | } | ||
102 | }; | ||
103 | |||
104 | static int warp_setup_nand_flash(void) | ||
105 | { | ||
106 | struct device_node *np; | ||
107 | |||
108 | /* Try to detect a rev A based on NOR size. */ | ||
109 | np = of_find_compatible_node(NULL, NULL, "cfi-flash"); | ||
110 | if (np) { | ||
111 | struct property *pp; | ||
112 | |||
113 | pp = of_find_property(np, "reg", NULL); | ||
114 | if (pp && (pp->length == 12)) { | ||
115 | u32 *v = pp->value; | ||
116 | if (v[2] == 0x4000000) { | ||
117 | /* Rev A = 64M NAND */ | ||
118 | warp_nand_chip0.nr_partitions = 3; | ||
119 | |||
120 | nand_parts[1].size = 0x3000000; | ||
121 | nand_parts[2].offset = 0x3200000; | ||
122 | nand_parts[2].size = 0x0e00000; | ||
123 | } | ||
124 | } | ||
125 | of_node_put(np); | ||
126 | } | ||
127 | |||
128 | platform_device_register(&warp_ndfc_device); | ||
129 | platform_device_register(&warp_nand_device); | ||
130 | |||
131 | return 0; | ||
132 | } | ||
133 | machine_device_initcall(warp, warp_setup_nand_flash); | ||
134 | |||
135 | #endif | ||
diff --git a/arch/powerpc/platforms/83xx/mpc831x_rdb.c b/arch/powerpc/platforms/83xx/mpc831x_rdb.c index 5177bdd2c62a..91a2c80b9d72 100644 --- a/arch/powerpc/platforms/83xx/mpc831x_rdb.c +++ b/arch/powerpc/platforms/83xx/mpc831x_rdb.c | |||
@@ -71,6 +71,7 @@ static int __init mpc831x_rdb_probe(void) | |||
71 | 71 | ||
72 | static struct of_device_id __initdata of_bus_ids[] = { | 72 | static struct of_device_id __initdata of_bus_ids[] = { |
73 | { .compatible = "simple-bus" }, | 73 | { .compatible = "simple-bus" }, |
74 | { .compatible = "gianfar" }, | ||
74 | {}, | 75 | {}, |
75 | }; | 76 | }; |
76 | 77 | ||
diff --git a/arch/powerpc/platforms/pseries/phyp_dump.c b/arch/powerpc/platforms/pseries/phyp_dump.c index 6cf35cd8d0b5..15eb6107bcd2 100644 --- a/arch/powerpc/platforms/pseries/phyp_dump.c +++ b/arch/powerpc/platforms/pseries/phyp_dump.c | |||
@@ -144,8 +144,8 @@ static void print_dump_header(const struct phyp_dump_header *ph) | |||
144 | ph->first_offset_section); | 144 | ph->first_offset_section); |
145 | printk(KERN_INFO "dump disk sections should be zero\n"); | 145 | printk(KERN_INFO "dump disk sections should be zero\n"); |
146 | printk(KERN_INFO "dump disk section = %d\n", ph->dump_disk_section); | 146 | printk(KERN_INFO "dump disk section = %d\n", ph->dump_disk_section); |
147 | printk(KERN_INFO "block num = %ld\n", ph->block_num_dd); | 147 | printk(KERN_INFO "block num = %lld\n", ph->block_num_dd); |
148 | printk(KERN_INFO "number of blocks = %ld\n", ph->num_of_blocks_dd); | 148 | printk(KERN_INFO "number of blocks = %lld\n", ph->num_of_blocks_dd); |
149 | printk(KERN_INFO "dump disk offset = %d\n", ph->offset_dd); | 149 | printk(KERN_INFO "dump disk offset = %d\n", ph->offset_dd); |
150 | printk(KERN_INFO "Max auto time= %d\n", ph->maxtime_to_auto); | 150 | printk(KERN_INFO "Max auto time= %d\n", ph->maxtime_to_auto); |
151 | 151 | ||
@@ -154,33 +154,33 @@ static void print_dump_header(const struct phyp_dump_header *ph) | |||
154 | printk(KERN_INFO "cpu dump_flags =%d\n", ph->cpu_data.dump_flags); | 154 | printk(KERN_INFO "cpu dump_flags =%d\n", ph->cpu_data.dump_flags); |
155 | printk(KERN_INFO "cpu source_type =%d\n", ph->cpu_data.source_type); | 155 | printk(KERN_INFO "cpu source_type =%d\n", ph->cpu_data.source_type); |
156 | printk(KERN_INFO "cpu error_flags =%d\n", ph->cpu_data.error_flags); | 156 | printk(KERN_INFO "cpu error_flags =%d\n", ph->cpu_data.error_flags); |
157 | printk(KERN_INFO "cpu source_address =%lx\n", | 157 | printk(KERN_INFO "cpu source_address =%llx\n", |
158 | ph->cpu_data.source_address); | 158 | ph->cpu_data.source_address); |
159 | printk(KERN_INFO "cpu source_length =%lx\n", | 159 | printk(KERN_INFO "cpu source_length =%llx\n", |
160 | ph->cpu_data.source_length); | 160 | ph->cpu_data.source_length); |
161 | printk(KERN_INFO "cpu length_copied =%lx\n", | 161 | printk(KERN_INFO "cpu length_copied =%llx\n", |
162 | ph->cpu_data.length_copied); | 162 | ph->cpu_data.length_copied); |
163 | 163 | ||
164 | printk(KERN_INFO " HPTE AREA \n"); | 164 | printk(KERN_INFO " HPTE AREA \n"); |
165 | printk(KERN_INFO "HPTE dump_flags =%d\n", ph->hpte_data.dump_flags); | 165 | printk(KERN_INFO "HPTE dump_flags =%d\n", ph->hpte_data.dump_flags); |
166 | printk(KERN_INFO "HPTE source_type =%d\n", ph->hpte_data.source_type); | 166 | printk(KERN_INFO "HPTE source_type =%d\n", ph->hpte_data.source_type); |
167 | printk(KERN_INFO "HPTE error_flags =%d\n", ph->hpte_data.error_flags); | 167 | printk(KERN_INFO "HPTE error_flags =%d\n", ph->hpte_data.error_flags); |
168 | printk(KERN_INFO "HPTE source_address =%lx\n", | 168 | printk(KERN_INFO "HPTE source_address =%llx\n", |
169 | ph->hpte_data.source_address); | 169 | ph->hpte_data.source_address); |
170 | printk(KERN_INFO "HPTE source_length =%lx\n", | 170 | printk(KERN_INFO "HPTE source_length =%llx\n", |
171 | ph->hpte_data.source_length); | 171 | ph->hpte_data.source_length); |
172 | printk(KERN_INFO "HPTE length_copied =%lx\n", | 172 | printk(KERN_INFO "HPTE length_copied =%llx\n", |
173 | ph->hpte_data.length_copied); | 173 | ph->hpte_data.length_copied); |
174 | 174 | ||
175 | printk(KERN_INFO " SRSD AREA \n"); | 175 | printk(KERN_INFO " SRSD AREA \n"); |
176 | printk(KERN_INFO "SRSD dump_flags =%d\n", ph->kernel_data.dump_flags); | 176 | printk(KERN_INFO "SRSD dump_flags =%d\n", ph->kernel_data.dump_flags); |
177 | printk(KERN_INFO "SRSD source_type =%d\n", ph->kernel_data.source_type); | 177 | printk(KERN_INFO "SRSD source_type =%d\n", ph->kernel_data.source_type); |
178 | printk(KERN_INFO "SRSD error_flags =%d\n", ph->kernel_data.error_flags); | 178 | printk(KERN_INFO "SRSD error_flags =%d\n", ph->kernel_data.error_flags); |
179 | printk(KERN_INFO "SRSD source_address =%lx\n", | 179 | printk(KERN_INFO "SRSD source_address =%llx\n", |
180 | ph->kernel_data.source_address); | 180 | ph->kernel_data.source_address); |
181 | printk(KERN_INFO "SRSD source_length =%lx\n", | 181 | printk(KERN_INFO "SRSD source_length =%llx\n", |
182 | ph->kernel_data.source_length); | 182 | ph->kernel_data.source_length); |
183 | printk(KERN_INFO "SRSD length_copied =%lx\n", | 183 | printk(KERN_INFO "SRSD length_copied =%llx\n", |
184 | ph->kernel_data.length_copied); | 184 | ph->kernel_data.length_copied); |
185 | #endif | 185 | #endif |
186 | } | 186 | } |
@@ -367,8 +367,8 @@ static ssize_t show_release_region(struct kobject *kobj, | |||
367 | /* total reserved size - start of scratch area */ | 367 | /* total reserved size - start of scratch area */ |
368 | second_addr_range = phyp_dump_info->init_reserve_size - | 368 | second_addr_range = phyp_dump_info->init_reserve_size - |
369 | phyp_dump_info->reserved_scratch_size; | 369 | phyp_dump_info->reserved_scratch_size; |
370 | return sprintf(buf, "CPU:0x%lx-0x%lx: HPTE:0x%lx-0x%lx:" | 370 | return sprintf(buf, "CPU:0x%llx-0x%llx: HPTE:0x%llx-0x%llx:" |
371 | " DUMP:0x%lx-0x%lx, 0x%lx-0x%lx:\n", | 371 | " DUMP:0x%llx-0x%llx, 0x%lx-0x%llx:\n", |
372 | phdr.cpu_data.destination_address, | 372 | phdr.cpu_data.destination_address, |
373 | phdr.cpu_data.length_copied, | 373 | phdr.cpu_data.length_copied, |
374 | phdr.hpte_data.destination_address, | 374 | phdr.hpte_data.destination_address, |